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

26348 строки
655 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. }
  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: 2377 / 1972,
  3442. bottom: 75.5/2452
  3443. }
  3444. },
  3445. side: {
  3446. height: math.unit(6, "feet"),
  3447. weight: math.unit(175, "lb"),
  3448. name: "Side",
  3449. image: {
  3450. source: "./media/characters/xera/side.svg",
  3451. extra: 2345/2019,
  3452. bottom: 39.7/2384
  3453. }
  3454. },
  3455. back: {
  3456. height: math.unit(6, "feet"),
  3457. weight: math.unit(175, "lb"),
  3458. name: "Back",
  3459. image: {
  3460. source: "./media/characters/xera/back.svg",
  3461. extra: 2095/1984,
  3462. bottom: 67/2166
  3463. }
  3464. },
  3465. },
  3466. [
  3467. {
  3468. name: "Small",
  3469. height: math.unit(10, "feet")
  3470. },
  3471. {
  3472. name: "Macro",
  3473. height: math.unit(500, "meters"),
  3474. default: true
  3475. },
  3476. {
  3477. name: "Macro+",
  3478. height: math.unit(10, "km")
  3479. },
  3480. {
  3481. name: "Gigamacro",
  3482. height: math.unit(25000, "km")
  3483. },
  3484. {
  3485. name: "Teramacro",
  3486. height: math.unit(3e6, "km")
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3492. {
  3493. front: {
  3494. height: math.unit(6, "feet"),
  3495. weight: math.unit(175, "lb"),
  3496. name: "Front",
  3497. image: {
  3498. source: "./media/characters/nebula/front.svg",
  3499. extra: 2600 / 2450
  3500. }
  3501. }
  3502. },
  3503. [
  3504. {
  3505. name: "Small",
  3506. height: math.unit(4.5, "meters")
  3507. },
  3508. {
  3509. name: "Macro",
  3510. height: math.unit(1500, "meters"),
  3511. default: true
  3512. },
  3513. {
  3514. name: "Megamacro",
  3515. height: math.unit(150, "km")
  3516. },
  3517. {
  3518. name: "Gigamacro",
  3519. height: math.unit(27000, "km")
  3520. }
  3521. ]
  3522. ))
  3523. characterMakers.push(() => makeCharacter(
  3524. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3525. {
  3526. front: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(225, "lb"),
  3529. name: "Front",
  3530. image: {
  3531. source: "./media/characters/abysgar/front.svg"
  3532. }
  3533. }
  3534. },
  3535. [
  3536. {
  3537. name: "Small",
  3538. height: math.unit(4.5, "meters")
  3539. },
  3540. {
  3541. name: "Macro",
  3542. height: math.unit(1250, "meters"),
  3543. default: true
  3544. },
  3545. {
  3546. name: "Megamacro",
  3547. height: math.unit(125, "km")
  3548. },
  3549. {
  3550. name: "Gigamacro",
  3551. height: math.unit(26000, "km")
  3552. }
  3553. ]
  3554. ))
  3555. characterMakers.push(() => makeCharacter(
  3556. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3557. {
  3558. front: {
  3559. height: math.unit(6, "feet"),
  3560. weight: math.unit(180, "lb"),
  3561. name: "Front",
  3562. image: {
  3563. source: "./media/characters/yakuz/front.svg"
  3564. }
  3565. }
  3566. },
  3567. [
  3568. {
  3569. name: "Small",
  3570. height: math.unit(5, "meters")
  3571. },
  3572. {
  3573. name: "Macro",
  3574. height: math.unit(1500, "meters"),
  3575. default: true
  3576. },
  3577. {
  3578. name: "Megamacro",
  3579. height: math.unit(200, "km")
  3580. },
  3581. {
  3582. name: "Gigamacro",
  3583. height: math.unit(100000, "km")
  3584. }
  3585. ]
  3586. ))
  3587. characterMakers.push(() => makeCharacter(
  3588. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3589. {
  3590. front: {
  3591. height: math.unit(6, "feet"),
  3592. weight: math.unit(175, "lb"),
  3593. name: "Front",
  3594. image: {
  3595. source: "./media/characters/mirova/front.svg"
  3596. }
  3597. }
  3598. },
  3599. [
  3600. {
  3601. name: "Small",
  3602. height: math.unit(5, "meters")
  3603. },
  3604. {
  3605. name: "Macro",
  3606. height: math.unit(900, "meters"),
  3607. default: true
  3608. },
  3609. {
  3610. name: "Megamacro",
  3611. height: math.unit(135, "km")
  3612. },
  3613. {
  3614. name: "Gigamacro",
  3615. height: math.unit(20000, "km")
  3616. }
  3617. ]
  3618. ))
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3621. {
  3622. side: {
  3623. height: math.unit(28.35, "feet"),
  3624. weight: math.unit(99.75, "tons"),
  3625. name: "Side",
  3626. image: {
  3627. source: "./media/characters/asana-mech/side.svg",
  3628. extra: 923/699,
  3629. bottom: 50/975
  3630. }
  3631. },
  3632. chaingun: {
  3633. height: math.unit(7, "feet"),
  3634. weight: math.unit(2400, "lb"),
  3635. name: "Chaingun",
  3636. image: {
  3637. source: "./media/characters/asana-mech/chaingun.svg"
  3638. }
  3639. },
  3640. laser: {
  3641. height: math.unit(7.12, "feet"),
  3642. weight: math.unit(2000, "lb"),
  3643. name: "Laser",
  3644. image: {
  3645. source: "./media/characters/asana-mech/laser.svg"
  3646. }
  3647. },
  3648. },
  3649. [
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(28.35, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Macro",
  3657. height: math.unit(2500, "feet")
  3658. },
  3659. {
  3660. name: "Megamacro",
  3661. height: math.unit(25, "miles")
  3662. },
  3663. {
  3664. name: "Examacro",
  3665. height: math.unit(6e8, "lightyears")
  3666. },
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3671. {
  3672. front: {
  3673. height: math.unit(2, "meters"),
  3674. weight: math.unit(70, "kg"),
  3675. name: "Front",
  3676. image: {
  3677. source: "./media/characters/ashtrek/front.svg",
  3678. extra: 560 / 524,
  3679. bottom: 0.01
  3680. }
  3681. },
  3682. frontArmor: {
  3683. height: math.unit(2, "meters"),
  3684. weight: math.unit(76, "kg"),
  3685. name: "Front (Armor)",
  3686. image: {
  3687. source: "./media/characters/ashtrek/front-armor.svg",
  3688. extra: 561 / 527,
  3689. bottom: 0.01
  3690. }
  3691. },
  3692. side: {
  3693. height: math.unit(2, "meters"),
  3694. weight: math.unit(70, "kg"),
  3695. name: "Side",
  3696. image: {
  3697. source: "./media/characters/ashtrek/side.svg",
  3698. extra: 1717 / 1609,
  3699. bottom: 0.005
  3700. }
  3701. },
  3702. back: {
  3703. height: math.unit(2, "meters"),
  3704. weight: math.unit(70, "kg"),
  3705. name: "Back",
  3706. image: {
  3707. source: "./media/characters/ashtrek/back.svg",
  3708. extra: 1570 / 1501
  3709. }
  3710. },
  3711. },
  3712. [
  3713. {
  3714. name: "DEFCON 5",
  3715. height: math.unit(5, "meters")
  3716. },
  3717. {
  3718. name: "DEFCON 4",
  3719. height: math.unit(500, "meters"),
  3720. default: true
  3721. },
  3722. {
  3723. name: "DEFCON 3",
  3724. height: math.unit(5, "km")
  3725. },
  3726. {
  3727. name: "DEFCON 2",
  3728. height: math.unit(500, "km")
  3729. },
  3730. {
  3731. name: "DEFCON 1",
  3732. height: math.unit(500000, "km")
  3733. },
  3734. {
  3735. name: "DEFCON 0",
  3736. height: math.unit(3, "gigaparsecs")
  3737. },
  3738. ]
  3739. ))
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3742. {
  3743. front: {
  3744. height: math.unit(2, "meters"),
  3745. weight: math.unit(76, "kg"),
  3746. name: "Front",
  3747. image: {
  3748. source: "./media/characters/gale/front.svg"
  3749. }
  3750. },
  3751. frontAlt1: {
  3752. height: math.unit(2, "meters"),
  3753. weight: math.unit(76, "kg"),
  3754. name: "Front (Alt 1)",
  3755. image: {
  3756. source: "./media/characters/gale/front-alt-1.svg"
  3757. }
  3758. },
  3759. frontAlt2: {
  3760. height: math.unit(2, "meters"),
  3761. weight: math.unit(76, "kg"),
  3762. name: "Front (Alt 2)",
  3763. image: {
  3764. source: "./media/characters/gale/front-alt-2.svg"
  3765. }
  3766. },
  3767. },
  3768. [
  3769. {
  3770. name: "Normal",
  3771. height: math.unit(7, "feet")
  3772. },
  3773. {
  3774. name: "Macro",
  3775. height: math.unit(150, "feet"),
  3776. default: true
  3777. },
  3778. {
  3779. name: "Macro+",
  3780. height: math.unit(300, "feet")
  3781. },
  3782. ]
  3783. ))
  3784. characterMakers.push(() => makeCharacter(
  3785. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3786. {
  3787. front: {
  3788. height: math.unit(2, "meters"),
  3789. weight: math.unit(76, "kg"),
  3790. name: "Front",
  3791. image: {
  3792. source: "./media/characters/draylen/front.svg"
  3793. }
  3794. }
  3795. },
  3796. [
  3797. {
  3798. name: "Macro",
  3799. height: math.unit(150, "feet"),
  3800. default: true
  3801. }
  3802. ]
  3803. ))
  3804. characterMakers.push(() => makeCharacter(
  3805. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3806. {
  3807. front: {
  3808. height: math.unit(7 + 9 / 12, "feet"),
  3809. weight: math.unit(379, "lbs"),
  3810. name: "Front",
  3811. image: {
  3812. source: "./media/characters/chez/front.svg"
  3813. }
  3814. },
  3815. side: {
  3816. height: math.unit(7 + 9 / 12, "feet"),
  3817. weight: math.unit(379, "lbs"),
  3818. name: "Side",
  3819. image: {
  3820. source: "./media/characters/chez/side.svg"
  3821. }
  3822. }
  3823. },
  3824. [
  3825. {
  3826. name: "Normal",
  3827. height: math.unit(7 + 9 / 12, "feet"),
  3828. default: true
  3829. },
  3830. {
  3831. name: "God King",
  3832. height: math.unit(9750000, "meters")
  3833. }
  3834. ]
  3835. ))
  3836. characterMakers.push(() => makeCharacter(
  3837. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3838. {
  3839. front: {
  3840. height: math.unit(6, "feet"),
  3841. weight: math.unit(275, "lbs"),
  3842. name: "Front",
  3843. image: {
  3844. source: "./media/characters/kaylum/front.svg",
  3845. bottom: 0.01,
  3846. extra: 1166 / 1031
  3847. }
  3848. },
  3849. frontWingless: {
  3850. height: math.unit(6, "feet"),
  3851. weight: math.unit(275, "lbs"),
  3852. name: "Front (Wingless)",
  3853. image: {
  3854. source: "./media/characters/kaylum/front-wingless.svg",
  3855. bottom: 0.01,
  3856. extra: 1117 / 1031
  3857. }
  3858. }
  3859. },
  3860. [
  3861. {
  3862. name: "Normal",
  3863. height: math.unit(3.05, "meters")
  3864. },
  3865. {
  3866. name: "Master",
  3867. height: math.unit(5.5, "meters")
  3868. },
  3869. {
  3870. name: "Rampage",
  3871. height: math.unit(19, "meters")
  3872. },
  3873. {
  3874. name: "Macro Lite",
  3875. height: math.unit(37, "meters")
  3876. },
  3877. {
  3878. name: "Hyper Predator",
  3879. height: math.unit(61, "meters")
  3880. },
  3881. {
  3882. name: "Macro",
  3883. height: math.unit(138, "meters"),
  3884. default: true
  3885. }
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(6, "feet"),
  3893. weight: math.unit(150, "lbs"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/geta/front.svg"
  3897. }
  3898. }
  3899. },
  3900. [
  3901. {
  3902. name: "Micro",
  3903. height: math.unit(3, "inches"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(5 + 5 / 12, "feet")
  3909. }
  3910. ]
  3911. ))
  3912. characterMakers.push(() => makeCharacter(
  3913. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3914. {
  3915. front: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(300, "lbs"),
  3918. name: "Front",
  3919. image: {
  3920. source: "./media/characters/tyrnn/front.svg"
  3921. }
  3922. }
  3923. },
  3924. [
  3925. {
  3926. name: "Main Height",
  3927. height: math.unit(355, "feet"),
  3928. default: true
  3929. },
  3930. {
  3931. name: "Fave. Height",
  3932. height: math.unit(2400, "feet")
  3933. }
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3938. {
  3939. front: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(300, "lbs"),
  3942. name: "Front",
  3943. image: {
  3944. source: "./media/characters/appledectomy/front.svg"
  3945. }
  3946. }
  3947. },
  3948. [
  3949. {
  3950. name: "Macro",
  3951. height: math.unit(2500, "feet")
  3952. },
  3953. {
  3954. name: "Megamacro",
  3955. height: math.unit(50, "miles"),
  3956. default: true
  3957. },
  3958. {
  3959. name: "Gigamacro",
  3960. height: math.unit(5000, "miles")
  3961. },
  3962. {
  3963. name: "Teramacro",
  3964. height: math.unit(250000, "miles")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(200, "lbs"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/vulpes/front.svg",
  3977. extra: 573 / 543,
  3978. bottom: 0.033
  3979. }
  3980. },
  3981. side: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(200, "lbs"),
  3984. name: "Side",
  3985. image: {
  3986. source: "./media/characters/vulpes/side.svg",
  3987. extra: 573 / 543,
  3988. bottom: 0.01
  3989. }
  3990. },
  3991. back: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(200, "lbs"),
  3994. name: "Back",
  3995. image: {
  3996. source: "./media/characters/vulpes/back.svg",
  3997. extra: 573 / 543,
  3998. }
  3999. },
  4000. feet: {
  4001. height: math.unit(1.276, "feet"),
  4002. name: "Feet",
  4003. image: {
  4004. source: "./media/characters/vulpes/feet.svg"
  4005. }
  4006. },
  4007. maw: {
  4008. height: math.unit(1.18, "feet"),
  4009. name: "Maw",
  4010. image: {
  4011. source: "./media/characters/vulpes/maw.svg"
  4012. }
  4013. },
  4014. },
  4015. [
  4016. {
  4017. name: "Micro",
  4018. height: math.unit(2, "inches")
  4019. },
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(6.3, "feet")
  4023. },
  4024. {
  4025. name: "Macro",
  4026. height: math.unit(850, "feet")
  4027. },
  4028. {
  4029. name: "Megamacro",
  4030. height: math.unit(7500, "feet"),
  4031. default: true
  4032. },
  4033. {
  4034. name: "Gigamacro",
  4035. height: math.unit(570000, "miles")
  4036. }
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4041. {
  4042. front: {
  4043. height: math.unit(6, "feet"),
  4044. weight: math.unit(210, "lbs"),
  4045. name: "Front",
  4046. image: {
  4047. source: "./media/characters/rain-fallen/front.svg"
  4048. }
  4049. },
  4050. side: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(210, "lbs"),
  4053. name: "Side",
  4054. image: {
  4055. source: "./media/characters/rain-fallen/side.svg"
  4056. }
  4057. },
  4058. back: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(210, "lbs"),
  4061. name: "Back",
  4062. image: {
  4063. source: "./media/characters/rain-fallen/back.svg"
  4064. }
  4065. },
  4066. feral: {
  4067. height: math.unit(9, "feet"),
  4068. weight: math.unit(700, "lbs"),
  4069. name: "Feral",
  4070. image: {
  4071. source: "./media/characters/rain-fallen/feral.svg"
  4072. }
  4073. },
  4074. },
  4075. [
  4076. {
  4077. name: "Normal",
  4078. height: math.unit(5, "meter")
  4079. },
  4080. {
  4081. name: "Macro",
  4082. height: math.unit(150, "meter"),
  4083. default: true
  4084. },
  4085. {
  4086. name: "Megamacro",
  4087. height: math.unit(278e6, "meter")
  4088. },
  4089. {
  4090. name: "Gigamacro",
  4091. height: math.unit(2e9, "meter")
  4092. },
  4093. {
  4094. name: "Teramacro",
  4095. height: math.unit(8e12, "meter")
  4096. },
  4097. {
  4098. name: "Devourer",
  4099. height: math.unit(14, "zettameters")
  4100. },
  4101. {
  4102. name: "Scarlet King",
  4103. height: math.unit(18, "yottameters")
  4104. },
  4105. {
  4106. name: "Void",
  4107. height: math.unit(6.66e66, "yottameters")
  4108. }
  4109. ]
  4110. ))
  4111. characterMakers.push(() => makeCharacter(
  4112. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4113. {
  4114. standing: {
  4115. height: math.unit(6, "feet"),
  4116. weight: math.unit(180, "lbs"),
  4117. name: "Standing",
  4118. image: {
  4119. source: "./media/characters/zaakira/standing.svg"
  4120. }
  4121. },
  4122. laying: {
  4123. height: math.unit(3, "feet"),
  4124. weight: math.unit(180, "lbs"),
  4125. name: "Laying",
  4126. image: {
  4127. source: "./media/characters/zaakira/laying.svg"
  4128. }
  4129. },
  4130. },
  4131. [
  4132. {
  4133. name: "Normal",
  4134. height: math.unit(12, "feet")
  4135. },
  4136. {
  4137. name: "Macro",
  4138. height: math.unit(279, "feet"),
  4139. default: true
  4140. }
  4141. ]
  4142. ))
  4143. characterMakers.push(() => makeCharacter(
  4144. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4145. {
  4146. front: {
  4147. height: math.unit(6, "feet"),
  4148. weight: math.unit(250, "lbs"),
  4149. name: "Front",
  4150. image: {
  4151. source: "./media/characters/sigvald/front.svg",
  4152. extra: 1000 / 850
  4153. }
  4154. },
  4155. back: {
  4156. height: math.unit(6, "feet"),
  4157. weight: math.unit(250, "lbs"),
  4158. name: "Back",
  4159. image: {
  4160. source: "./media/characters/sigvald/back.svg"
  4161. }
  4162. },
  4163. },
  4164. [
  4165. {
  4166. name: "Normal",
  4167. height: math.unit(8, "feet")
  4168. },
  4169. {
  4170. name: "Large",
  4171. height: math.unit(12, "feet")
  4172. },
  4173. {
  4174. name: "Larger",
  4175. height: math.unit(20, "feet")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(150, "feet")
  4180. },
  4181. {
  4182. name: "Macro+",
  4183. height: math.unit(200, "feet"),
  4184. default: true
  4185. },
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4190. {
  4191. side: {
  4192. height: math.unit(12, "feet"),
  4193. weight: math.unit(2000, "kg"),
  4194. name: "Side",
  4195. image: {
  4196. source: "./media/characters/scott/side.svg",
  4197. extra: 754 / 724,
  4198. bottom: 0.069
  4199. }
  4200. },
  4201. upright: {
  4202. height: math.unit(12, "feet"),
  4203. weight: math.unit(2000, "kg"),
  4204. name: "Upright",
  4205. image: {
  4206. source: "./media/characters/scott/upright.svg",
  4207. extra: 3881 / 3722,
  4208. bottom: 0.05
  4209. }
  4210. },
  4211. },
  4212. [
  4213. {
  4214. name: "Normal",
  4215. height: math.unit(12, "feet"),
  4216. default: true
  4217. },
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4222. {
  4223. side: {
  4224. height: math.unit(8, "meters"),
  4225. weight: math.unit(84755, "lbs"),
  4226. name: "Side",
  4227. image: {
  4228. source: "./media/characters/tobias/side.svg",
  4229. extra: 1474 / 1096,
  4230. bottom: 38.9 / 1513.1235
  4231. }
  4232. },
  4233. },
  4234. [
  4235. {
  4236. name: "Normal",
  4237. height: math.unit(8, "meters"),
  4238. default: true
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4244. {
  4245. front: {
  4246. height: math.unit(5.5, "feet"),
  4247. weight: math.unit(400, "lbs"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/kieran/front.svg",
  4251. extra: 2694 / 2364,
  4252. bottom: 217 / 2908
  4253. }
  4254. },
  4255. side: {
  4256. height: math.unit(5.5, "feet"),
  4257. weight: math.unit(400, "lbs"),
  4258. name: "Side",
  4259. image: {
  4260. source: "./media/characters/kieran/side.svg",
  4261. extra: 875 / 777,
  4262. bottom: 84.6 / 959
  4263. }
  4264. },
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(5.5, "feet"),
  4270. default: true
  4271. },
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4276. {
  4277. side: {
  4278. height: math.unit(2, "meters"),
  4279. weight: math.unit(70, "kg"),
  4280. name: "Side",
  4281. image: {
  4282. source: "./media/characters/sanya/side.svg",
  4283. bottom: 0.02,
  4284. extra: 1.02
  4285. }
  4286. },
  4287. },
  4288. [
  4289. {
  4290. name: "Small",
  4291. height: math.unit(2, "meters")
  4292. },
  4293. {
  4294. name: "Normal",
  4295. height: math.unit(3, "meters")
  4296. },
  4297. {
  4298. name: "Macro",
  4299. height: math.unit(16, "meters"),
  4300. default: true
  4301. },
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4306. {
  4307. front: {
  4308. height: math.unit(2, "meters"),
  4309. weight: math.unit(120, "kg"),
  4310. name: "Front",
  4311. image: {
  4312. source: "./media/characters/miranda/front.svg",
  4313. extra: 195/185,
  4314. bottom: 10.9/206.5
  4315. }
  4316. },
  4317. back: {
  4318. height: math.unit(2, "meters"),
  4319. weight: math.unit(120, "kg"),
  4320. name: "Back",
  4321. image: {
  4322. source: "./media/characters/miranda/back.svg",
  4323. extra: 201/193,
  4324. bottom: 2.3/203.7
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(10, "feet"),
  4332. default: true
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "James", species: ["deer"], tags: ["anthro"] },
  4338. {
  4339. side: {
  4340. height: math.unit(2, "meters"),
  4341. weight: math.unit(100, "kg"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/james/front.svg",
  4345. extra: 10 / 8.5
  4346. }
  4347. },
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(8.5, "feet"),
  4353. default: true
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4359. {
  4360. side: {
  4361. height: math.unit(9.5, "feet"),
  4362. weight: math.unit(2500, "lbs"),
  4363. name: "Side",
  4364. image: {
  4365. source: "./media/characters/heather/side.svg"
  4366. }
  4367. },
  4368. },
  4369. [
  4370. {
  4371. name: "Normal",
  4372. height: math.unit(9.5, "feet"),
  4373. default: true
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4379. {
  4380. side: {
  4381. height: math.unit(6.5, "feet"),
  4382. weight: math.unit(400, "lbs"),
  4383. name: "Side",
  4384. image: {
  4385. source: "./media/characters/lukas/side.svg",
  4386. extra: 7.25 / 6.5
  4387. }
  4388. },
  4389. },
  4390. [
  4391. {
  4392. name: "Normal",
  4393. height: math.unit(6.5, "feet"),
  4394. default: true
  4395. }
  4396. ]
  4397. ))
  4398. characterMakers.push(() => makeCharacter(
  4399. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4400. {
  4401. side: {
  4402. height: math.unit(5, "feet"),
  4403. weight: math.unit(3000, "lbs"),
  4404. name: "Side",
  4405. image: {
  4406. source: "./media/characters/louise/side.svg"
  4407. }
  4408. },
  4409. },
  4410. [
  4411. {
  4412. name: "Normal",
  4413. height: math.unit(5, "feet"),
  4414. default: true
  4415. }
  4416. ]
  4417. ))
  4418. characterMakers.push(() => makeCharacter(
  4419. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4420. {
  4421. side: {
  4422. height: math.unit(6, "feet"),
  4423. weight: math.unit(150, "lbs"),
  4424. name: "Side",
  4425. image: {
  4426. source: "./media/characters/ramona/side.svg"
  4427. }
  4428. },
  4429. },
  4430. [
  4431. {
  4432. name: "Normal",
  4433. height: math.unit(5.3, "meters"),
  4434. default: true
  4435. },
  4436. {
  4437. name: "Macro",
  4438. height: math.unit(20, "stories")
  4439. },
  4440. {
  4441. name: "Macro+",
  4442. height: math.unit(50, "stories")
  4443. },
  4444. ]
  4445. ))
  4446. characterMakers.push(() => makeCharacter(
  4447. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4448. {
  4449. standing: {
  4450. height: math.unit(5.75, "feet"),
  4451. weight: math.unit(160, "lbs"),
  4452. name: "Standing",
  4453. image: {
  4454. source: "./media/characters/deerpuff/standing.svg",
  4455. extra: 682 / 624
  4456. }
  4457. },
  4458. sitting: {
  4459. height: math.unit(5.75 / 1.79, "feet"),
  4460. weight: math.unit(160, "lbs"),
  4461. name: "Sitting",
  4462. image: {
  4463. source: "./media/characters/deerpuff/sitting.svg",
  4464. bottom: 44 / 400,
  4465. extra: 1
  4466. }
  4467. },
  4468. taurLaying: {
  4469. height: math.unit(6, "feet"),
  4470. weight: math.unit(400, "lbs"),
  4471. name: "Taur (Laying)",
  4472. image: {
  4473. source: "./media/characters/deerpuff/taur-laying.svg"
  4474. }
  4475. },
  4476. },
  4477. [
  4478. {
  4479. name: "Puffball",
  4480. height: math.unit(6, "inches")
  4481. },
  4482. {
  4483. name: "Normalpuff",
  4484. height: math.unit(5.75, "feet")
  4485. },
  4486. {
  4487. name: "Macropuff",
  4488. height: math.unit(1500, "feet"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Megapuff",
  4493. height: math.unit(500, "miles")
  4494. },
  4495. {
  4496. name: "Gigapuff",
  4497. height: math.unit(250000, "miles")
  4498. },
  4499. {
  4500. name: "Omegapuff",
  4501. height: math.unit(1000, "lightyears")
  4502. },
  4503. ]
  4504. ))
  4505. characterMakers.push(() => makeCharacter(
  4506. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4507. {
  4508. stomping: {
  4509. height: math.unit(6, "feet"),
  4510. weight: math.unit(170, "lbs"),
  4511. name: "Stomping",
  4512. image: {
  4513. source: "./media/characters/vivian/stomping.svg"
  4514. }
  4515. },
  4516. sitting: {
  4517. height: math.unit(6 / 1.75, "feet"),
  4518. weight: math.unit(170, "lbs"),
  4519. name: "Sitting",
  4520. image: {
  4521. source: "./media/characters/vivian/sitting.svg",
  4522. bottom: 1 / 6.4,
  4523. extra: 1,
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(7, "feet"),
  4531. default: true
  4532. },
  4533. {
  4534. name: "Macro",
  4535. height: math.unit(10, "stories")
  4536. },
  4537. {
  4538. name: "Macro+",
  4539. height: math.unit(30, "stories")
  4540. },
  4541. {
  4542. name: "Megamacro",
  4543. height: math.unit(10, "miles")
  4544. },
  4545. {
  4546. name: "Megamacro+",
  4547. height: math.unit(2750000, "meters")
  4548. },
  4549. ]
  4550. ))
  4551. characterMakers.push(() => makeCharacter(
  4552. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4553. {
  4554. front: {
  4555. height: math.unit(6, "feet"),
  4556. weight: math.unit(160, "lbs"),
  4557. name: "Front",
  4558. image: {
  4559. source: "./media/characters/prince/front.svg",
  4560. extra: 3400 / 3000
  4561. }
  4562. },
  4563. jumping: {
  4564. height: math.unit(6, "feet"),
  4565. weight: math.unit(160, "lbs"),
  4566. name: "Jumping",
  4567. image: {
  4568. source: "./media/characters/prince/jump.svg",
  4569. extra: 2555 / 2134
  4570. }
  4571. },
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(7.75, "feet"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Not cute",
  4581. height: math.unit(17, "feet")
  4582. },
  4583. {
  4584. name: "I said NOT",
  4585. height: math.unit(91, "feet")
  4586. },
  4587. {
  4588. name: "Please stop",
  4589. height: math.unit(560, "feet")
  4590. },
  4591. {
  4592. name: "What have you done",
  4593. height: math.unit(2200, "feet")
  4594. },
  4595. {
  4596. name: "Deer God",
  4597. height: math.unit(3.6, "miles")
  4598. },
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4603. {
  4604. standing: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(300, "lbs"),
  4607. name: "Standing",
  4608. image: {
  4609. source: "./media/characters/psymon/standing.svg",
  4610. extra: 1888 / 1810,
  4611. bottom: 0.05
  4612. }
  4613. },
  4614. slithering: {
  4615. height: math.unit(6, "feet"),
  4616. weight: math.unit(300, "lbs"),
  4617. name: "Slithering",
  4618. image: {
  4619. source: "./media/characters/psymon/slithering.svg",
  4620. extra: 1330 / 1224
  4621. }
  4622. },
  4623. slitheringAlt: {
  4624. height: math.unit(6, "feet"),
  4625. weight: math.unit(300, "lbs"),
  4626. name: "Slithering (Alt)",
  4627. image: {
  4628. source: "./media/characters/psymon/slithering-alt.svg",
  4629. extra: 1330 / 1224
  4630. }
  4631. },
  4632. },
  4633. [
  4634. {
  4635. name: "Normal",
  4636. height: math.unit(11.25, "feet"),
  4637. default: true
  4638. },
  4639. {
  4640. name: "Large",
  4641. height: math.unit(27, "feet")
  4642. },
  4643. {
  4644. name: "Giant",
  4645. height: math.unit(87, "feet")
  4646. },
  4647. {
  4648. name: "Macro",
  4649. height: math.unit(365, "feet")
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(3, "miles")
  4654. },
  4655. {
  4656. name: "World Serpent",
  4657. height: math.unit(8000, "miles")
  4658. },
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4663. {
  4664. front: {
  4665. height: math.unit(6, "feet"),
  4666. weight: math.unit(180, "lbs"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/daimos/front.svg",
  4670. extra: 4160 / 3897,
  4671. bottom: 0.021
  4672. }
  4673. }
  4674. },
  4675. [
  4676. {
  4677. name: "Normal",
  4678. height: math.unit(8, "feet"),
  4679. default: true
  4680. },
  4681. {
  4682. name: "Big Dog",
  4683. height: math.unit(22, "feet")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(127, "feet")
  4688. },
  4689. {
  4690. name: "Megamacro",
  4691. height: math.unit(3600, "feet")
  4692. },
  4693. ]
  4694. ))
  4695. characterMakers.push(() => makeCharacter(
  4696. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4697. {
  4698. side: {
  4699. height: math.unit(6, "feet"),
  4700. weight: math.unit(180, "lbs"),
  4701. name: "Side",
  4702. image: {
  4703. source: "./media/characters/blake/side.svg",
  4704. extra: 1212 / 1120,
  4705. bottom: 0.05
  4706. }
  4707. },
  4708. crouched: {
  4709. height: math.unit(6 * 0.57, "feet"),
  4710. weight: math.unit(180, "lbs"),
  4711. name: "Crouched",
  4712. image: {
  4713. source: "./media/characters/blake/crouched.svg",
  4714. extra: 840 / 587,
  4715. bottom: 0.04
  4716. }
  4717. },
  4718. bent: {
  4719. height: math.unit(6 * 0.75, "feet"),
  4720. weight: math.unit(180, "lbs"),
  4721. name: "Bent",
  4722. image: {
  4723. source: "./media/characters/blake/bent.svg",
  4724. extra: 592 / 544,
  4725. bottom: 0.035
  4726. }
  4727. },
  4728. },
  4729. [
  4730. {
  4731. name: "Normal",
  4732. height: math.unit(8 + 1 / 6, "feet"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Big Backside",
  4737. height: math.unit(37, "feet")
  4738. },
  4739. {
  4740. name: "Subway Shredder",
  4741. height: math.unit(72, "feet")
  4742. },
  4743. {
  4744. name: "City Carver",
  4745. height: math.unit(1675, "feet")
  4746. },
  4747. {
  4748. name: "Tectonic Tweaker",
  4749. height: math.unit(2300, "miles")
  4750. },
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4755. {
  4756. front: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(180, "lbs"),
  4759. name: "Front",
  4760. image: {
  4761. source: "./media/characters/guisetto/front.svg",
  4762. extra: 856 / 817,
  4763. bottom: 0.06
  4764. }
  4765. },
  4766. airborne: {
  4767. height: math.unit(6, "feet"),
  4768. weight: math.unit(180, "lbs"),
  4769. name: "Airborne",
  4770. image: {
  4771. source: "./media/characters/guisetto/airborne.svg",
  4772. extra: 584 / 525
  4773. }
  4774. },
  4775. },
  4776. [
  4777. {
  4778. name: "Normal",
  4779. height: math.unit(10 + 11 / 12, "feet"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Large",
  4784. height: math.unit(35, "feet")
  4785. },
  4786. {
  4787. name: "Macro",
  4788. height: math.unit(475, "feet")
  4789. },
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(180, "lbs"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/luxor/front.svg",
  4801. extra: 2940 / 2152
  4802. }
  4803. },
  4804. back: {
  4805. height: math.unit(6, "feet"),
  4806. weight: math.unit(180, "lbs"),
  4807. name: "Back",
  4808. image: {
  4809. source: "./media/characters/luxor/back.svg",
  4810. extra: 1083 / 960
  4811. }
  4812. },
  4813. },
  4814. [
  4815. {
  4816. name: "Normal",
  4817. height: math.unit(5 + 5 / 6, "feet"),
  4818. default: true
  4819. },
  4820. {
  4821. name: "Lamp",
  4822. height: math.unit(50, "feet")
  4823. },
  4824. {
  4825. name: "Lämp",
  4826. height: math.unit(300, "feet")
  4827. },
  4828. {
  4829. name: "The sun is a lamp",
  4830. height: math.unit(250000, "miles")
  4831. },
  4832. ]
  4833. ))
  4834. characterMakers.push(() => makeCharacter(
  4835. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4836. {
  4837. front: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(50, "lbs"),
  4840. name: "Front",
  4841. image: {
  4842. source: "./media/characters/huoyan/front.svg"
  4843. }
  4844. },
  4845. side: {
  4846. height: math.unit(6, "feet"),
  4847. weight: math.unit(180, "lbs"),
  4848. name: "Side",
  4849. image: {
  4850. source: "./media/characters/huoyan/side.svg"
  4851. }
  4852. },
  4853. },
  4854. [
  4855. {
  4856. name: "Chef",
  4857. height: math.unit(9, "feet")
  4858. },
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(65, "feet"),
  4862. default: true
  4863. },
  4864. {
  4865. name: "Macro",
  4866. height: math.unit(780, "feet")
  4867. },
  4868. {
  4869. name: "Flaming Mountain",
  4870. height: math.unit(4.8, "miles")
  4871. },
  4872. {
  4873. name: "Celestial",
  4874. height: math.unit(765000, "miles")
  4875. },
  4876. ]
  4877. ))
  4878. characterMakers.push(() => makeCharacter(
  4879. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4880. {
  4881. front: {
  4882. height: math.unit(5 + 3 / 4, "feet"),
  4883. weight: math.unit(120, "lbs"),
  4884. name: "Front",
  4885. image: {
  4886. source: "./media/characters/tails/front.svg"
  4887. }
  4888. }
  4889. },
  4890. [
  4891. {
  4892. name: "Normal",
  4893. height: math.unit(5 + 3 / 4, "feet"),
  4894. default: true
  4895. }
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4900. {
  4901. front: {
  4902. height: math.unit(4, "feet"),
  4903. weight: math.unit(50, "lbs"),
  4904. name: "Front",
  4905. image: {
  4906. source: "./media/characters/rainy/front.svg"
  4907. }
  4908. }
  4909. },
  4910. [
  4911. {
  4912. name: "Macro",
  4913. height: math.unit(800, "feet"),
  4914. default: true
  4915. }
  4916. ]
  4917. ))
  4918. characterMakers.push(() => makeCharacter(
  4919. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4920. {
  4921. front: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(150, "lbs"),
  4924. name: "Front",
  4925. image: {
  4926. source: "./media/characters/rainier/front.svg"
  4927. }
  4928. }
  4929. },
  4930. [
  4931. {
  4932. name: "Micro",
  4933. height: math.unit(2, "mm"),
  4934. default: true
  4935. }
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4940. {
  4941. front: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(180, "lbs"),
  4944. name: "Front",
  4945. image: {
  4946. source: "./media/characters/andy/front.svg"
  4947. }
  4948. }
  4949. },
  4950. [
  4951. {
  4952. name: "Normal",
  4953. height: math.unit(8, "feet"),
  4954. default: true
  4955. },
  4956. {
  4957. name: "Macro",
  4958. height: math.unit(1000, "feet")
  4959. },
  4960. {
  4961. name: "Megamacro",
  4962. height: math.unit(5, "miles")
  4963. },
  4964. {
  4965. name: "Gigamacro",
  4966. height: math.unit(5000, "miles")
  4967. },
  4968. ]
  4969. ))
  4970. characterMakers.push(() => makeCharacter(
  4971. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4972. {
  4973. front: {
  4974. height: math.unit(6, "feet"),
  4975. weight: math.unit(210, "lbs"),
  4976. name: "Front",
  4977. image: {
  4978. source: "./media/characters/cimmaron/front-sfw.svg",
  4979. extra: 701 / 676,
  4980. bottom: 0.046
  4981. }
  4982. },
  4983. back: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(210, "lbs"),
  4986. name: "Back",
  4987. image: {
  4988. source: "./media/characters/cimmaron/back-sfw.svg",
  4989. extra: 701 / 676,
  4990. bottom: 0.046
  4991. }
  4992. },
  4993. frontNsfw: {
  4994. height: math.unit(6, "feet"),
  4995. weight: math.unit(210, "lbs"),
  4996. name: "Front (NSFW)",
  4997. image: {
  4998. source: "./media/characters/cimmaron/front-nsfw.svg",
  4999. extra: 701 / 676,
  5000. bottom: 0.046
  5001. }
  5002. },
  5003. backNsfw: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(210, "lbs"),
  5006. name: "Back (NSFW)",
  5007. image: {
  5008. source: "./media/characters/cimmaron/back-nsfw.svg",
  5009. extra: 701 / 676,
  5010. bottom: 0.046
  5011. }
  5012. },
  5013. dick: {
  5014. height: math.unit(1.714, "feet"),
  5015. name: "Dick",
  5016. image: {
  5017. source: "./media/characters/cimmaron/dick.svg"
  5018. }
  5019. },
  5020. },
  5021. [
  5022. {
  5023. name: "Normal",
  5024. height: math.unit(6, "feet"),
  5025. default: true
  5026. },
  5027. {
  5028. name: "Macro Mayor",
  5029. height: math.unit(350, "meters")
  5030. },
  5031. ]
  5032. ))
  5033. characterMakers.push(() => makeCharacter(
  5034. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5035. {
  5036. front: {
  5037. height: math.unit(6, "feet"),
  5038. weight: math.unit(200, "lbs"),
  5039. name: "Front",
  5040. image: {
  5041. source: "./media/characters/akari/front.svg",
  5042. extra: 962 / 901,
  5043. bottom: 0.04
  5044. }
  5045. }
  5046. },
  5047. [
  5048. {
  5049. name: "Micro",
  5050. height: math.unit(5, "inches"),
  5051. default: true
  5052. },
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(7, "feet")
  5056. },
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5061. {
  5062. front: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(140, "lbs"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/cynosura/front.svg",
  5068. extra: 896 / 847
  5069. }
  5070. },
  5071. back: {
  5072. height: math.unit(6, "feet"),
  5073. weight: math.unit(140, "lbs"),
  5074. name: "Back",
  5075. image: {
  5076. source: "./media/characters/cynosura/back.svg",
  5077. extra: 1365 / 1250
  5078. }
  5079. },
  5080. },
  5081. [
  5082. {
  5083. name: "Micro",
  5084. height: math.unit(4, "inches")
  5085. },
  5086. {
  5087. name: "Normal",
  5088. height: math.unit(5.75, "feet"),
  5089. default: true
  5090. },
  5091. {
  5092. name: "Tall",
  5093. height: math.unit(10, "feet")
  5094. },
  5095. {
  5096. name: "Big",
  5097. height: math.unit(20, "feet")
  5098. },
  5099. {
  5100. name: "Macro",
  5101. height: math.unit(50, "feet")
  5102. },
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(6, "feet"),
  5110. weight: math.unit(170, "lbs"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/gin/front.svg",
  5114. extra: 1.053,
  5115. bottom: 0.025
  5116. }
  5117. },
  5118. foot: {
  5119. height: math.unit(6 / 4.25, "feet"),
  5120. name: "Foot",
  5121. image: {
  5122. source: "./media/characters/gin/foot.svg"
  5123. }
  5124. },
  5125. sole: {
  5126. height: math.unit(6 / 4.40, "feet"),
  5127. name: "Sole",
  5128. image: {
  5129. source: "./media/characters/gin/sole.svg"
  5130. }
  5131. },
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(13 + 2 / 12, "feet")
  5137. },
  5138. {
  5139. name: "Macro",
  5140. height: math.unit(1500, "feet")
  5141. },
  5142. {
  5143. name: "Megamacro",
  5144. height: math.unit(200, "miles"),
  5145. default: true
  5146. },
  5147. {
  5148. name: "Gigamacro",
  5149. height: math.unit(500, "megameters")
  5150. },
  5151. {
  5152. name: "Teramacro",
  5153. height: math.unit(15, "lightyears")
  5154. }
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5159. {
  5160. front: {
  5161. height: math.unit(6 + 1 / 6, "feet"),
  5162. weight: math.unit(178, "lbs"),
  5163. name: "Front",
  5164. image: {
  5165. source: "./media/characters/guy/front.svg"
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(6 + 1 / 6, "feet"),
  5173. default: true
  5174. },
  5175. {
  5176. name: "Large",
  5177. height: math.unit(25 + 7 / 12, "feet")
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(60 + 9 / 12, "feet")
  5182. },
  5183. {
  5184. name: "Macro+",
  5185. height: math.unit(246, "feet")
  5186. },
  5187. {
  5188. name: "Macro++",
  5189. height: math.unit(878, "feet")
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5195. {
  5196. front: {
  5197. height: math.unit(9, "feet"),
  5198. weight: math.unit(800, "lbs"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/tiberius/front.svg",
  5202. extra: 2295 / 2071
  5203. }
  5204. },
  5205. back: {
  5206. height: math.unit(9, "feet"),
  5207. weight: math.unit(800, "lbs"),
  5208. name: "Back",
  5209. image: {
  5210. source: "./media/characters/tiberius/back.svg",
  5211. extra: 2373 / 2160
  5212. }
  5213. },
  5214. },
  5215. [
  5216. {
  5217. name: "Normal",
  5218. height: math.unit(9, "feet"),
  5219. default: true
  5220. }
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5225. {
  5226. front: {
  5227. height: math.unit(6, "feet"),
  5228. weight: math.unit(600, "lbs"),
  5229. name: "Front",
  5230. image: {
  5231. source: "./media/characters/surgo/front.svg",
  5232. extra: 3591 / 2227
  5233. }
  5234. },
  5235. back: {
  5236. height: math.unit(6, "feet"),
  5237. weight: math.unit(600, "lbs"),
  5238. name: "Back",
  5239. image: {
  5240. source: "./media/characters/surgo/back.svg",
  5241. extra: 3557 / 2228
  5242. }
  5243. },
  5244. laying: {
  5245. height: math.unit(6 * 0.85, "feet"),
  5246. weight: math.unit(600, "lbs"),
  5247. name: "Laying",
  5248. image: {
  5249. source: "./media/characters/surgo/laying.svg"
  5250. }
  5251. },
  5252. },
  5253. [
  5254. {
  5255. name: "Normal",
  5256. height: math.unit(6, "feet"),
  5257. default: true
  5258. }
  5259. ]
  5260. ))
  5261. characterMakers.push(() => makeCharacter(
  5262. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5263. {
  5264. side: {
  5265. height: math.unit(6, "feet"),
  5266. weight: math.unit(150, "lbs"),
  5267. name: "Side",
  5268. image: {
  5269. source: "./media/characters/cibus/side.svg",
  5270. extra: 800 / 400
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(6, "feet"),
  5278. default: true
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(240, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/nibbles/front.svg"
  5291. }
  5292. },
  5293. side: {
  5294. height: math.unit(6, "feet"),
  5295. weight: math.unit(240, "lbs"),
  5296. name: "Side",
  5297. image: {
  5298. source: "./media/characters/nibbles/side.svg"
  5299. }
  5300. },
  5301. },
  5302. [
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(9, "feet"),
  5306. default: true
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5312. {
  5313. side: {
  5314. height: math.unit(5 + 1 / 6, "feet"),
  5315. weight: math.unit(130, "lbs"),
  5316. name: "Side",
  5317. image: {
  5318. source: "./media/characters/rikky/side.svg"
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(5 + 1 / 6, "feet")
  5326. },
  5327. {
  5328. name: "Macro",
  5329. height: math.unit(152, "feet"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Megamacro",
  5334. height: math.unit(7, "miles")
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5340. {
  5341. side: {
  5342. height: math.unit(370, "cm"),
  5343. weight: math.unit(350, "lbs"),
  5344. name: "Side",
  5345. image: {
  5346. source: "./media/characters/malfressa/side.svg"
  5347. }
  5348. },
  5349. walking: {
  5350. height: math.unit(370, "cm"),
  5351. weight: math.unit(350, "lbs"),
  5352. name: "Walking",
  5353. image: {
  5354. source: "./media/characters/malfressa/walking.svg"
  5355. }
  5356. },
  5357. feral: {
  5358. height: math.unit(2500, "cm"),
  5359. weight: math.unit(100000, "lbs"),
  5360. name: "Feral",
  5361. image: {
  5362. source: "./media/characters/malfressa/feral.svg",
  5363. extra: 2108 / 837,
  5364. bottom: 0.02
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(370, "cm")
  5372. },
  5373. {
  5374. name: "Macro",
  5375. height: math.unit(300, "meters"),
  5376. default: true
  5377. }
  5378. ]
  5379. ))
  5380. characterMakers.push(() => makeCharacter(
  5381. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5382. {
  5383. front: {
  5384. height: math.unit(6, "feet"),
  5385. weight: math.unit(60, "kg"),
  5386. name: "Front",
  5387. image: {
  5388. source: "./media/characters/jaro/front.svg"
  5389. }
  5390. },
  5391. back: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(60, "kg"),
  5394. name: "Back",
  5395. image: {
  5396. source: "./media/characters/jaro/back.svg"
  5397. }
  5398. },
  5399. },
  5400. [
  5401. {
  5402. name: "Micro",
  5403. height: math.unit(7, "inches")
  5404. },
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(5.5, "feet"),
  5408. default: true
  5409. },
  5410. {
  5411. name: "Minimacro",
  5412. height: math.unit(20, "feet")
  5413. },
  5414. {
  5415. name: "Macro",
  5416. height: math.unit(200, "meters")
  5417. }
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5422. {
  5423. front: {
  5424. height: math.unit(6, "feet"),
  5425. weight: math.unit(195, "lb"),
  5426. name: "Front",
  5427. image: {
  5428. source: "./media/characters/rogue/front.svg"
  5429. }
  5430. },
  5431. },
  5432. [
  5433. {
  5434. name: "Macro",
  5435. height: math.unit(90, "feet"),
  5436. default: true
  5437. },
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5442. {
  5443. front: {
  5444. height: math.unit(5 + 8 / 12, "feet"),
  5445. weight: math.unit(140, "lb"),
  5446. name: "Front",
  5447. image: {
  5448. source: "./media/characters/piper/front.svg",
  5449. extra: 3928 / 3681
  5450. }
  5451. },
  5452. },
  5453. [
  5454. {
  5455. name: "Micro",
  5456. height: math.unit(2, "inches")
  5457. },
  5458. {
  5459. name: "Normal",
  5460. height: math.unit(5 + 8 / 12, "feet")
  5461. },
  5462. {
  5463. name: "Macro",
  5464. height: math.unit(250, "feet"),
  5465. default: true
  5466. },
  5467. {
  5468. name: "Megamacro",
  5469. height: math.unit(7, "miles")
  5470. },
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5475. {
  5476. front: {
  5477. height: math.unit(6, "feet"),
  5478. weight: math.unit(220, "lb"),
  5479. name: "Front",
  5480. image: {
  5481. source: "./media/characters/gemini/front.svg"
  5482. }
  5483. },
  5484. back: {
  5485. height: math.unit(6, "feet"),
  5486. weight: math.unit(220, "lb"),
  5487. name: "Back",
  5488. image: {
  5489. source: "./media/characters/gemini/back.svg"
  5490. }
  5491. },
  5492. kneeling: {
  5493. height: math.unit(6 / 1.5, "feet"),
  5494. weight: math.unit(220, "lb"),
  5495. name: "Kneeling",
  5496. image: {
  5497. source: "./media/characters/gemini/kneeling.svg",
  5498. bottom: 0.02
  5499. }
  5500. },
  5501. },
  5502. [
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(300, "meters"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Megamacro",
  5510. height: math.unit(6900, "meters")
  5511. },
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5516. {
  5517. anthro: {
  5518. height: math.unit(2.35, "meters"),
  5519. weight: math.unit(73, "kg"),
  5520. name: "Anthro",
  5521. image: {
  5522. source: "./media/characters/alicia/anthro.svg",
  5523. extra: 2571 / 2385,
  5524. bottom: 75 / 2648
  5525. }
  5526. },
  5527. paw: {
  5528. height: math.unit(1.32, "feet"),
  5529. name: "Paw",
  5530. image: {
  5531. source: "./media/characters/alicia/paw.svg"
  5532. }
  5533. },
  5534. feral: {
  5535. height: math.unit(1.69, "meters"),
  5536. weight: math.unit(73, "kg"),
  5537. name: "Feral",
  5538. image: {
  5539. source: "./media/characters/alicia/feral.svg",
  5540. extra: 2123 / 1715,
  5541. bottom: 222 / 2349
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Normal",
  5548. height: math.unit(2.35, "meters")
  5549. },
  5550. {
  5551. name: "Macro",
  5552. height: math.unit(60, "meters"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Megamacro",
  5557. height: math.unit(10000, "kilometers")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(7, "feet"),
  5566. weight: math.unit(250, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/archy/front.svg"
  5570. }
  5571. }
  5572. },
  5573. [
  5574. {
  5575. name: "Micro",
  5576. height: math.unit(1, "inch")
  5577. },
  5578. {
  5579. name: "Shorty",
  5580. height: math.unit(5, "feet")
  5581. },
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(7, "feet")
  5585. },
  5586. {
  5587. name: "Macro",
  5588. height: math.unit(600, "meters"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Megamacro",
  5593. height: math.unit(1, "mile")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(1.65, "meters"),
  5602. weight: math.unit(74, "kg"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/berri/front.svg",
  5606. extra: 857 / 837,
  5607. bottom: 18 / 877
  5608. }
  5609. },
  5610. bum: {
  5611. height: math.unit(1.46, "feet"),
  5612. name: "Bum",
  5613. image: {
  5614. source: "./media/characters/berri/bum.svg"
  5615. }
  5616. },
  5617. mouth: {
  5618. height: math.unit(0.44, "feet"),
  5619. name: "Mouth",
  5620. image: {
  5621. source: "./media/characters/berri/mouth.svg"
  5622. }
  5623. },
  5624. paw: {
  5625. height: math.unit(0.826, "feet"),
  5626. name: "Paw",
  5627. image: {
  5628. source: "./media/characters/berri/paw.svg"
  5629. }
  5630. },
  5631. },
  5632. [
  5633. {
  5634. name: "Normal",
  5635. height: math.unit(1.65, "meters")
  5636. },
  5637. {
  5638. name: "Macro",
  5639. height: math.unit(60, "m"),
  5640. default: true
  5641. },
  5642. {
  5643. name: "Megamacro",
  5644. height: math.unit(9.213, "km")
  5645. },
  5646. {
  5647. name: "Planet Eater",
  5648. height: math.unit(489, "megameters")
  5649. },
  5650. {
  5651. name: "Teramacro",
  5652. height: math.unit(2471635000000, "meters")
  5653. },
  5654. {
  5655. name: "Examacro",
  5656. height: math.unit(8.0624e+26, "meters")
  5657. }
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5662. {
  5663. front: {
  5664. height: math.unit(1.72, "meters"),
  5665. weight: math.unit(68, "kg"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/lexi/front.svg"
  5669. }
  5670. }
  5671. },
  5672. [
  5673. {
  5674. name: "Very Smol",
  5675. height: math.unit(10, "mm")
  5676. },
  5677. {
  5678. name: "Micro",
  5679. height: math.unit(6.8, "cm"),
  5680. default: true
  5681. },
  5682. {
  5683. name: "Normal",
  5684. height: math.unit(1.72, "m")
  5685. }
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5690. {
  5691. front: {
  5692. height: math.unit(1.69, "meters"),
  5693. weight: math.unit(68, "kg"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/martin/front.svg",
  5697. extra: 596 / 581
  5698. }
  5699. }
  5700. },
  5701. [
  5702. {
  5703. name: "Micro",
  5704. height: math.unit(6.85, "cm"),
  5705. default: true
  5706. },
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(1.69, "m")
  5710. }
  5711. ]
  5712. ))
  5713. characterMakers.push(() => makeCharacter(
  5714. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5715. {
  5716. front: {
  5717. height: math.unit(1.69, "meters"),
  5718. weight: math.unit(68, "kg"),
  5719. name: "Front",
  5720. image: {
  5721. source: "./media/characters/juno/front.svg"
  5722. }
  5723. }
  5724. },
  5725. [
  5726. {
  5727. name: "Micro",
  5728. height: math.unit(7, "cm")
  5729. },
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(1.89, "m")
  5733. },
  5734. {
  5735. name: "Macro",
  5736. height: math.unit(353, "meters"),
  5737. default: true
  5738. }
  5739. ]
  5740. ))
  5741. characterMakers.push(() => makeCharacter(
  5742. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5743. {
  5744. front: {
  5745. height: math.unit(1.93, "meters"),
  5746. weight: math.unit(83, "kg"),
  5747. name: "Front",
  5748. image: {
  5749. source: "./media/characters/samantha/front.svg"
  5750. }
  5751. },
  5752. frontClothed: {
  5753. height: math.unit(1.93, "meters"),
  5754. weight: math.unit(83, "kg"),
  5755. name: "Front (Clothed)",
  5756. image: {
  5757. source: "./media/characters/samantha/front-clothed.svg"
  5758. }
  5759. },
  5760. back: {
  5761. height: math.unit(1.93, "meters"),
  5762. weight: math.unit(83, "kg"),
  5763. name: "Back",
  5764. image: {
  5765. source: "./media/characters/samantha/back.svg"
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(1.93, "m")
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(74, "meters"),
  5777. default: true
  5778. },
  5779. {
  5780. name: "Macro+",
  5781. height: math.unit(223, "meters"),
  5782. },
  5783. {
  5784. name: "Megamacro",
  5785. height: math.unit(8381, "meters"),
  5786. },
  5787. {
  5788. name: "Megamacro+",
  5789. height: math.unit(12000, "kilometers")
  5790. },
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5795. {
  5796. front: {
  5797. height: math.unit(1.92, "meters"),
  5798. weight: math.unit(80, "kg"),
  5799. name: "Front",
  5800. image: {
  5801. source: "./media/characters/dr-clay/front.svg"
  5802. }
  5803. },
  5804. frontClothed: {
  5805. height: math.unit(1.92, "meters"),
  5806. weight: math.unit(80, "kg"),
  5807. name: "Front (Clothed)",
  5808. image: {
  5809. source: "./media/characters/dr-clay/front-clothed.svg"
  5810. }
  5811. }
  5812. },
  5813. [
  5814. {
  5815. name: "Normal",
  5816. height: math.unit(1.92, "m")
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(214, "meters"),
  5821. default: true
  5822. },
  5823. {
  5824. name: "Macro+",
  5825. height: math.unit(12.237, "meters"),
  5826. },
  5827. {
  5828. name: "Megamacro",
  5829. height: math.unit(557, "megameters"),
  5830. },
  5831. {
  5832. name: "Unimaginable",
  5833. height: math.unit(120e9, "lightyears")
  5834. },
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(2, "meters"),
  5842. weight: math.unit(80, "kg"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5846. }
  5847. }
  5848. },
  5849. [
  5850. {
  5851. name: "Teramacro",
  5852. height: math.unit(500000, "lightyears"),
  5853. default: true
  5854. },
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5859. {
  5860. front: {
  5861. height: math.unit(2, "meters"),
  5862. weight: math.unit(150, "kg"),
  5863. name: "Front",
  5864. image: {
  5865. source: "./media/characters/vemus/front.svg",
  5866. extra: 2384 / 2084,
  5867. bottom: 0.0123
  5868. }
  5869. }
  5870. },
  5871. [
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(3.75, "meters"),
  5875. default: true
  5876. },
  5877. {
  5878. name: "Big",
  5879. height: math.unit(8, "meters")
  5880. },
  5881. {
  5882. name: "Macro",
  5883. height: math.unit(100, "meters")
  5884. },
  5885. {
  5886. name: "Macro+",
  5887. height: math.unit(1500, "meters")
  5888. },
  5889. {
  5890. name: "Stellar",
  5891. height: math.unit(14e8, "meters")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(2, "meters"),
  5900. weight: math.unit(70, "kg"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/beherit/front.svg",
  5904. extra: 1408 / 1242
  5905. }
  5906. }
  5907. },
  5908. [
  5909. {
  5910. name: "Normal",
  5911. height: math.unit(6, "feet")
  5912. },
  5913. {
  5914. name: "Lorg",
  5915. height: math.unit(25, "feet"),
  5916. default: true
  5917. },
  5918. {
  5919. name: "Lorger",
  5920. height: math.unit(75, "feet")
  5921. },
  5922. {
  5923. name: "Macro",
  5924. height: math.unit(200, "meters")
  5925. },
  5926. ]
  5927. ))
  5928. characterMakers.push(() => makeCharacter(
  5929. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5930. {
  5931. front: {
  5932. height: math.unit(2, "meters"),
  5933. weight: math.unit(150, "kg"),
  5934. name: "Front",
  5935. image: {
  5936. source: "./media/characters/everett/front.svg",
  5937. extra: 2038 / 1737,
  5938. bottom: 0.03
  5939. }
  5940. },
  5941. paw: {
  5942. height: math.unit(2 / 3.6, "meters"),
  5943. name: "Paw",
  5944. image: {
  5945. source: "./media/characters/everett/paw.svg"
  5946. }
  5947. },
  5948. },
  5949. [
  5950. {
  5951. name: "Normal",
  5952. height: math.unit(15, "feet"),
  5953. default: true
  5954. },
  5955. {
  5956. name: "Lorg",
  5957. height: math.unit(70, "feet"),
  5958. default: true
  5959. },
  5960. {
  5961. name: "Lorger",
  5962. height: math.unit(250, "feet")
  5963. },
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(500, "meters")
  5967. },
  5968. ]
  5969. ))
  5970. characterMakers.push(() => makeCharacter(
  5971. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5972. {
  5973. front: {
  5974. height: math.unit(2, "meters"),
  5975. weight: math.unit(86, "kg"),
  5976. name: "Front",
  5977. image: {
  5978. source: "./media/characters/rose-lion/front.svg"
  5979. }
  5980. },
  5981. bent: {
  5982. height: math.unit(2 / 1.4288, "meters"),
  5983. weight: math.unit(86, "kg"),
  5984. name: "Bent",
  5985. image: {
  5986. source: "./media/characters/rose-lion/bent.svg"
  5987. }
  5988. }
  5989. },
  5990. [
  5991. {
  5992. name: "Mini-Micro",
  5993. height: math.unit(1, "cm")
  5994. },
  5995. {
  5996. name: "Micro",
  5997. height: math.unit(3.5, "inches"),
  5998. default: true
  5999. },
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(6 + 1 / 6, "feet")
  6003. },
  6004. {
  6005. name: "Mini-Macro",
  6006. height: math.unit(9 + 10 / 12, "feet")
  6007. },
  6008. ]
  6009. ))
  6010. characterMakers.push(() => makeCharacter(
  6011. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6012. {
  6013. front: {
  6014. height: math.unit(2, "meters"),
  6015. weight: math.unit(350, "lbs"),
  6016. name: "Front",
  6017. image: {
  6018. source: "./media/characters/regal/front.svg"
  6019. }
  6020. },
  6021. back: {
  6022. height: math.unit(2, "meters"),
  6023. weight: math.unit(350, "lbs"),
  6024. name: "Back",
  6025. image: {
  6026. source: "./media/characters/regal/back.svg"
  6027. }
  6028. },
  6029. },
  6030. [
  6031. {
  6032. name: "Macro",
  6033. height: math.unit(350, "feet"),
  6034. default: true
  6035. }
  6036. ]
  6037. ))
  6038. characterMakers.push(() => makeCharacter(
  6039. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6040. {
  6041. front: {
  6042. height: math.unit(4 + 11 / 12, "feet"),
  6043. weight: math.unit(100, "lbs"),
  6044. name: "Front",
  6045. image: {
  6046. source: "./media/characters/opal/front.svg"
  6047. }
  6048. },
  6049. frontAlt: {
  6050. height: math.unit(4 + 11 / 12, "feet"),
  6051. weight: math.unit(100, "lbs"),
  6052. name: "Front (Alt)",
  6053. image: {
  6054. source: "./media/characters/opal/front-alt.svg"
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Small",
  6061. height: math.unit(4 + 11 / 12, "feet")
  6062. },
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(20, "feet"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Macro",
  6070. height: math.unit(120, "feet")
  6071. },
  6072. {
  6073. name: "Megamacro",
  6074. height: math.unit(80, "miles")
  6075. },
  6076. {
  6077. name: "True Size",
  6078. height: math.unit(100000, "lightyears")
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(200, "lbs"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/vector-wuff/front.svg"
  6091. }
  6092. }
  6093. },
  6094. [
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(2.8, "meters")
  6098. },
  6099. {
  6100. name: "Macro",
  6101. height: math.unit(450, "meters"),
  6102. default: true
  6103. },
  6104. {
  6105. name: "Megamacro",
  6106. height: math.unit(15, "kilometers")
  6107. }
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6112. {
  6113. front: {
  6114. height: math.unit(6, "feet"),
  6115. weight: math.unit(256, "lbs"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/dannik/front.svg"
  6119. }
  6120. }
  6121. },
  6122. [
  6123. {
  6124. name: "Macro",
  6125. height: math.unit(69.57, "meters"),
  6126. default: true
  6127. },
  6128. ]
  6129. ))
  6130. characterMakers.push(() => makeCharacter(
  6131. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6132. {
  6133. front: {
  6134. height: math.unit(6, "feet"),
  6135. weight: math.unit(120, "lbs"),
  6136. name: "Front",
  6137. image: {
  6138. source: "./media/characters/azura-saharah/front.svg"
  6139. }
  6140. },
  6141. back: {
  6142. height: math.unit(6, "feet"),
  6143. weight: math.unit(120, "lbs"),
  6144. name: "Back",
  6145. image: {
  6146. source: "./media/characters/azura-saharah/back.svg"
  6147. }
  6148. },
  6149. },
  6150. [
  6151. {
  6152. name: "Macro",
  6153. height: math.unit(100, "feet"),
  6154. default: true
  6155. },
  6156. ]
  6157. ))
  6158. characterMakers.push(() => makeCharacter(
  6159. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6160. {
  6161. side: {
  6162. height: math.unit(5 + 4 / 12, "feet"),
  6163. weight: math.unit(163, "lbs"),
  6164. name: "Side",
  6165. image: {
  6166. source: "./media/characters/kennedy/side.svg"
  6167. }
  6168. }
  6169. },
  6170. [
  6171. {
  6172. name: "Standard Doggo",
  6173. height: math.unit(5 + 4 / 12, "feet")
  6174. },
  6175. {
  6176. name: "Big Doggo",
  6177. height: math.unit(25 + 3 / 12, "feet"),
  6178. default: true
  6179. },
  6180. ]
  6181. ))
  6182. characterMakers.push(() => makeCharacter(
  6183. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6184. {
  6185. front: {
  6186. height: math.unit(6, "feet"),
  6187. weight: math.unit(90, "lbs"),
  6188. name: "Front",
  6189. image: {
  6190. source: "./media/characters/odi-lunar/front.svg"
  6191. }
  6192. }
  6193. },
  6194. [
  6195. {
  6196. name: "Micro",
  6197. height: math.unit(3, "inches"),
  6198. default: true
  6199. },
  6200. {
  6201. name: "Normal",
  6202. height: math.unit(5.5, "feet")
  6203. }
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6208. {
  6209. back: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(220, "lbs"),
  6212. name: "Back",
  6213. image: {
  6214. source: "./media/characters/mandake/back.svg"
  6215. }
  6216. }
  6217. },
  6218. [
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(7, "feet"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Macro",
  6226. height: math.unit(78, "feet")
  6227. },
  6228. {
  6229. name: "Macro+",
  6230. height: math.unit(300, "meters")
  6231. },
  6232. {
  6233. name: "Macro++",
  6234. height: math.unit(2400, "feet")
  6235. },
  6236. {
  6237. name: "Megamacro",
  6238. height: math.unit(5167, "meters")
  6239. },
  6240. {
  6241. name: "Gigamacro",
  6242. height: math.unit(41769, "miles")
  6243. },
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6248. {
  6249. front: {
  6250. height: math.unit(6, "feet"),
  6251. weight: math.unit(120, "lbs"),
  6252. name: "Front",
  6253. image: {
  6254. source: "./media/characters/yozey/front.svg"
  6255. }
  6256. },
  6257. frontAlt: {
  6258. height: math.unit(6, "feet"),
  6259. weight: math.unit(120, "lbs"),
  6260. name: "Front (Alt)",
  6261. image: {
  6262. source: "./media/characters/yozey/front-alt.svg"
  6263. }
  6264. },
  6265. side: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(120, "lbs"),
  6268. name: "Side",
  6269. image: {
  6270. source: "./media/characters/yozey/side.svg"
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Micro",
  6277. height: math.unit(3, "inches"),
  6278. default: true
  6279. },
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(6, "feet")
  6283. }
  6284. ]
  6285. ))
  6286. characterMakers.push(() => makeCharacter(
  6287. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6288. {
  6289. front: {
  6290. height: math.unit(6, "feet"),
  6291. weight: math.unit(103, "lbs"),
  6292. name: "Front",
  6293. image: {
  6294. source: "./media/characters/valeska-voss/front.svg"
  6295. }
  6296. }
  6297. },
  6298. [
  6299. {
  6300. name: "Mini-Sized Sub",
  6301. height: math.unit(3.1, "inches")
  6302. },
  6303. {
  6304. name: "Mid-Sized Sub",
  6305. height: math.unit(6.2, "inches")
  6306. },
  6307. {
  6308. name: "Full-Sized Sub",
  6309. height: math.unit(9.3, "inches")
  6310. },
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(5 + 2 / 12, "foot"),
  6314. default: true
  6315. },
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(160, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/gene-zeta/front.svg",
  6327. bottom: 0.03,
  6328. extra: 1
  6329. }
  6330. }
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(6.25, "foot"),
  6336. default: true
  6337. },
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6342. {
  6343. front: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(350, "lbs"),
  6346. name: "Front",
  6347. image: {
  6348. source: "./media/characters/razinox/front.svg",
  6349. extra: 1686 / 1548,
  6350. bottom: 28.2 / 1868
  6351. }
  6352. },
  6353. back: {
  6354. height: math.unit(6, "feet"),
  6355. weight: math.unit(350, "lbs"),
  6356. name: "Back",
  6357. image: {
  6358. source: "./media/characters/razinox/back.svg",
  6359. extra: 1660 / 1590,
  6360. bottom: 15 / 1665
  6361. }
  6362. },
  6363. },
  6364. [
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(10 + 8 / 12, "foot")
  6368. },
  6369. {
  6370. name: "Minimacro",
  6371. height: math.unit(15, "foot")
  6372. },
  6373. {
  6374. name: "Macro",
  6375. height: math.unit(60, "foot"),
  6376. default: true
  6377. },
  6378. {
  6379. name: "Megamacro",
  6380. height: math.unit(5, "miles")
  6381. },
  6382. {
  6383. name: "Gigamacro",
  6384. height: math.unit(6000, "miles")
  6385. },
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(6, "feet"),
  6393. weight: math.unit(150, "lbs"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/cobalt/front.svg"
  6397. }
  6398. }
  6399. },
  6400. [
  6401. {
  6402. name: "Normal",
  6403. height: math.unit(8 + 1 / 12, "foot")
  6404. },
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(111, "foot"),
  6408. default: true
  6409. },
  6410. {
  6411. name: "Supracosmic",
  6412. height: math.unit(1e42, "feet")
  6413. },
  6414. ]
  6415. ))
  6416. characterMakers.push(() => makeCharacter(
  6417. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6418. {
  6419. front: {
  6420. height: math.unit(6, "feet"),
  6421. weight: math.unit(140, "lbs"),
  6422. name: "Front",
  6423. image: {
  6424. source: "./media/characters/amanda/front.svg"
  6425. }
  6426. }
  6427. },
  6428. [
  6429. {
  6430. name: "Micro",
  6431. height: math.unit(5, "inches"),
  6432. default: true
  6433. },
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6438. {
  6439. front: {
  6440. height: math.unit(5.59, "feet"),
  6441. weight: math.unit(250, "lbs"),
  6442. name: "Front",
  6443. image: {
  6444. source: "./media/characters/teal/front.svg"
  6445. }
  6446. },
  6447. frontAlt: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(250, "lbs"),
  6450. name: "Front (Alt)",
  6451. image: {
  6452. source: "./media/characters/teal/front-alt.svg",
  6453. bottom: 0.04,
  6454. extra: 1
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(12, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Macro",
  6466. height: math.unit(300, "feet")
  6467. },
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6472. {
  6473. frontCat: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(180, "lbs"),
  6476. name: "Front (Cat)",
  6477. image: {
  6478. source: "./media/characters/ravin-amulet/front-cat.svg"
  6479. }
  6480. },
  6481. frontCatAlt: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(180, "lbs"),
  6484. name: "Front (Alt, Cat)",
  6485. image: {
  6486. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6487. }
  6488. },
  6489. frontWerewolf: {
  6490. height: math.unit(6 * 1.2, "feet"),
  6491. weight: math.unit(225, "lbs"),
  6492. name: "Front (Werewolf)",
  6493. image: {
  6494. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6495. }
  6496. },
  6497. backWerewolf: {
  6498. height: math.unit(6 * 1.2, "feet"),
  6499. weight: math.unit(225, "lbs"),
  6500. name: "Back (Werewolf)",
  6501. image: {
  6502. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Nano",
  6509. height: math.unit(1, "micrometer")
  6510. },
  6511. {
  6512. name: "Micro",
  6513. height: math.unit(1, "inch")
  6514. },
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(6, "feet"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Macro",
  6522. height: math.unit(60, "feet")
  6523. }
  6524. ]
  6525. ))
  6526. characterMakers.push(() => makeCharacter(
  6527. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6528. {
  6529. front: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(165, "lbs"),
  6532. name: "Front",
  6533. image: {
  6534. source: "./media/characters/fluoresce/front.svg"
  6535. }
  6536. }
  6537. },
  6538. [
  6539. {
  6540. name: "Micro",
  6541. height: math.unit(6, "cm")
  6542. },
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(5 + 7 / 12, "feet"),
  6546. default: true
  6547. },
  6548. {
  6549. name: "Macro",
  6550. height: math.unit(56, "feet")
  6551. },
  6552. {
  6553. name: "Megamacro",
  6554. height: math.unit(1.9, "miles")
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(9 + 6 / 12, "feet"),
  6563. weight: math.unit(523, "lbs"),
  6564. name: "Side",
  6565. image: {
  6566. source: "./media/characters/aurora/side.svg"
  6567. }
  6568. }
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(9 + 6 / 12, "feet")
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(96, "feet"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Macro+",
  6582. height: math.unit(243, "feet")
  6583. },
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(194, "cm"),
  6591. weight: math.unit(90, "kg"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/ranek/front.svg"
  6595. }
  6596. },
  6597. side: {
  6598. height: math.unit(194, "cm"),
  6599. weight: math.unit(90, "kg"),
  6600. name: "Side",
  6601. image: {
  6602. source: "./media/characters/ranek/side.svg"
  6603. }
  6604. },
  6605. back: {
  6606. height: math.unit(194, "cm"),
  6607. weight: math.unit(90, "kg"),
  6608. name: "Back",
  6609. image: {
  6610. source: "./media/characters/ranek/back.svg"
  6611. }
  6612. },
  6613. feral: {
  6614. height: math.unit(30, "cm"),
  6615. weight: math.unit(1.6, "lbs"),
  6616. name: "Feral",
  6617. image: {
  6618. source: "./media/characters/ranek/feral.svg"
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(194, "cm"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Macro",
  6630. height: math.unit(100, "meters")
  6631. },
  6632. ]
  6633. ))
  6634. characterMakers.push(() => makeCharacter(
  6635. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6636. {
  6637. front: {
  6638. height: math.unit(5 + 6 / 12, "feet"),
  6639. weight: math.unit(153, "lbs"),
  6640. name: "Front",
  6641. image: {
  6642. source: "./media/characters/andrew-cooper/front.svg"
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Nano",
  6649. height: math.unit(1, "mm")
  6650. },
  6651. {
  6652. name: "Micro",
  6653. height: math.unit(2, "inches")
  6654. },
  6655. {
  6656. name: "Normal",
  6657. height: math.unit(5 + 6 / 12, "feet"),
  6658. default: true
  6659. }
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6664. {
  6665. front: {
  6666. height: math.unit(6, "feet"),
  6667. weight: math.unit(180, "lbs"),
  6668. name: "Front",
  6669. image: {
  6670. source: "./media/characters/akane-sato/front.svg",
  6671. extra: 1219 / 1140
  6672. }
  6673. },
  6674. back: {
  6675. height: math.unit(6, "feet"),
  6676. weight: math.unit(180, "lbs"),
  6677. name: "Back",
  6678. image: {
  6679. source: "./media/characters/akane-sato/back.svg",
  6680. extra: 1219 / 1170
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(2.5, "meters")
  6688. },
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(250, "meters"),
  6692. default: true
  6693. },
  6694. {
  6695. name: "Megamacro",
  6696. height: math.unit(25, "km")
  6697. },
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(65, "kg"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/rook/front.svg",
  6709. extra: 960 / 950
  6710. }
  6711. }
  6712. },
  6713. [
  6714. {
  6715. name: "Normal",
  6716. height: math.unit(8.8, "feet")
  6717. },
  6718. {
  6719. name: "Macro",
  6720. height: math.unit(88, "feet"),
  6721. default: true
  6722. },
  6723. {
  6724. name: "Megamacro",
  6725. height: math.unit(8, "miles")
  6726. },
  6727. ]
  6728. ))
  6729. characterMakers.push(() => makeCharacter(
  6730. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6731. {
  6732. front: {
  6733. height: math.unit(12 + 2 / 12, "feet"),
  6734. weight: math.unit(808, "lbs"),
  6735. name: "Front",
  6736. image: {
  6737. source: "./media/characters/prodigy/front.svg"
  6738. }
  6739. }
  6740. },
  6741. [
  6742. {
  6743. name: "Normal",
  6744. height: math.unit(12 + 2 / 12, "feet"),
  6745. default: true
  6746. },
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(143, "feet")
  6750. },
  6751. {
  6752. name: "Macro+",
  6753. height: math.unit(400, "feet")
  6754. },
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6759. {
  6760. front: {
  6761. height: math.unit(6, "feet"),
  6762. weight: math.unit(225, "lbs"),
  6763. name: "Front",
  6764. image: {
  6765. source: "./media/characters/daniel/front.svg"
  6766. }
  6767. },
  6768. leaning: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(225, "lbs"),
  6771. name: "Leaning",
  6772. image: {
  6773. source: "./media/characters/daniel/leaning.svg"
  6774. }
  6775. },
  6776. },
  6777. [
  6778. {
  6779. name: "Macro",
  6780. height: math.unit(1000, "feet"),
  6781. default: true
  6782. },
  6783. ]
  6784. ))
  6785. characterMakers.push(() => makeCharacter(
  6786. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6787. {
  6788. front: {
  6789. height: math.unit(6, "feet"),
  6790. weight: math.unit(88, "lbs"),
  6791. name: "Front",
  6792. image: {
  6793. source: "./media/characters/chiros/front.svg",
  6794. extra: 306 / 226
  6795. }
  6796. },
  6797. side: {
  6798. height: math.unit(6, "feet"),
  6799. weight: math.unit(88, "lbs"),
  6800. name: "Side",
  6801. image: {
  6802. source: "./media/characters/chiros/side.svg",
  6803. extra: 306 / 226
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Normal",
  6810. height: math.unit(6, "cm"),
  6811. default: true
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6817. {
  6818. front: {
  6819. height: math.unit(6, "feet"),
  6820. weight: math.unit(100, "lbs"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/selka/front.svg",
  6824. extra: 947 / 887
  6825. }
  6826. }
  6827. },
  6828. [
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(5, "cm"),
  6832. default: true
  6833. },
  6834. ]
  6835. ))
  6836. characterMakers.push(() => makeCharacter(
  6837. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6838. {
  6839. front: {
  6840. height: math.unit(8 + 3 / 12, "feet"),
  6841. weight: math.unit(424, "lbs"),
  6842. name: "Front",
  6843. image: {
  6844. source: "./media/characters/verin/front.svg",
  6845. extra: 1845 / 1550
  6846. }
  6847. },
  6848. frontArmored: {
  6849. height: math.unit(8 + 3 / 12, "feet"),
  6850. weight: math.unit(424, "lbs"),
  6851. name: "Front (Armored)",
  6852. image: {
  6853. source: "./media/characters/verin/front-armor.svg",
  6854. extra: 1845 / 1550,
  6855. bottom: 0.01
  6856. }
  6857. },
  6858. back: {
  6859. height: math.unit(8 + 3 / 12, "feet"),
  6860. weight: math.unit(424, "lbs"),
  6861. name: "Back",
  6862. image: {
  6863. source: "./media/characters/verin/back.svg",
  6864. bottom: 0.1,
  6865. extra: 1
  6866. }
  6867. },
  6868. foot: {
  6869. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6870. name: "Foot",
  6871. image: {
  6872. source: "./media/characters/verin/foot.svg"
  6873. }
  6874. },
  6875. },
  6876. [
  6877. {
  6878. name: "Normal",
  6879. height: math.unit(8 + 3 / 12, "feet")
  6880. },
  6881. {
  6882. name: "Minimacro",
  6883. height: math.unit(21, "feet"),
  6884. default: true
  6885. },
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(626, "feet")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(2.718, "meters"),
  6897. weight: math.unit(150, "lbs"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/sovrim-terraquian/front.svg"
  6901. }
  6902. },
  6903. back: {
  6904. height: math.unit(2.718, "meters"),
  6905. weight: math.unit(150, "lbs"),
  6906. name: "Back",
  6907. image: {
  6908. source: "./media/characters/sovrim-terraquian/back.svg"
  6909. }
  6910. }
  6911. },
  6912. [
  6913. {
  6914. name: "Micro",
  6915. height: math.unit(2, "inches")
  6916. },
  6917. {
  6918. name: "Small",
  6919. height: math.unit(1, "meter")
  6920. },
  6921. {
  6922. name: "Normal",
  6923. height: math.unit(Math.E, "meters"),
  6924. default: true
  6925. },
  6926. {
  6927. name: "Macro",
  6928. height: math.unit(20, "meters")
  6929. },
  6930. {
  6931. name: "Macro+",
  6932. height: math.unit(400, "meters")
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6938. {
  6939. front: {
  6940. height: math.unit(7, "feet"),
  6941. weight: math.unit(489, "lbs"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/reece-silvermane/front.svg",
  6945. bottom: 0.02,
  6946. extra: 1
  6947. }
  6948. },
  6949. },
  6950. [
  6951. {
  6952. name: "Macro",
  6953. height: math.unit(1.5, "miles"),
  6954. default: true
  6955. },
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6960. {
  6961. front: {
  6962. height: math.unit(6, "feet"),
  6963. weight: math.unit(78, "kg"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/kane/front.svg",
  6967. extra: 978 / 899
  6968. }
  6969. },
  6970. },
  6971. [
  6972. {
  6973. name: "Normal",
  6974. height: math.unit(2.1, "m"),
  6975. },
  6976. {
  6977. name: "Macro",
  6978. height: math.unit(1, "km"),
  6979. default: true
  6980. },
  6981. ]
  6982. ))
  6983. characterMakers.push(() => makeCharacter(
  6984. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6985. {
  6986. front: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(200, "kg"),
  6989. name: "Front",
  6990. image: {
  6991. source: "./media/characters/tegon/front.svg",
  6992. bottom: 0.01,
  6993. extra: 1
  6994. }
  6995. },
  6996. },
  6997. [
  6998. {
  6999. name: "Micro",
  7000. height: math.unit(1, "inch")
  7001. },
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(6 + 3 / 12, "feet"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(300, "feet")
  7010. },
  7011. {
  7012. name: "Megamacro",
  7013. height: math.unit(69, "miles")
  7014. },
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7019. {
  7020. side: {
  7021. height: math.unit(6, "feet"),
  7022. weight: math.unit(2304, "lbs"),
  7023. name: "Side",
  7024. image: {
  7025. source: "./media/characters/arcturax/side.svg",
  7026. extra: 790 / 376,
  7027. bottom: 0.01
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Micro",
  7034. height: math.unit(2, "inch")
  7035. },
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(6, "feet")
  7039. },
  7040. {
  7041. name: "Macro",
  7042. height: math.unit(39, "feet"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Megamacro",
  7047. height: math.unit(7, "miles")
  7048. },
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(6, "feet"),
  7056. weight: math.unit(50, "lbs"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/sentri/front.svg",
  7060. extra: 1750 / 1570,
  7061. bottom: 0.025
  7062. }
  7063. },
  7064. frontAlt: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(50, "lbs"),
  7067. name: "Front (Alt)",
  7068. image: {
  7069. source: "./media/characters/sentri/front-alt.svg",
  7070. extra: 1750 / 1570,
  7071. bottom: 0.025
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(15, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(2500, "feet")
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(5 + 8 / 12, "feet"),
  7092. weight: math.unit(130, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/corvin/front.svg",
  7096. extra: 1803 / 1629
  7097. }
  7098. },
  7099. frontShirt: {
  7100. height: math.unit(5 + 8 / 12, "feet"),
  7101. weight: math.unit(130, "lbs"),
  7102. name: "Front (Shirt)",
  7103. image: {
  7104. source: "./media/characters/corvin/front-shirt.svg",
  7105. extra: 1803 / 1629
  7106. }
  7107. },
  7108. frontPoncho: {
  7109. height: math.unit(5 + 8 / 12, "feet"),
  7110. weight: math.unit(130, "lbs"),
  7111. name: "Front (Poncho)",
  7112. image: {
  7113. source: "./media/characters/corvin/front-poncho.svg",
  7114. extra: 1803 / 1629
  7115. }
  7116. },
  7117. side: {
  7118. height: math.unit(5 + 8 / 12, "feet"),
  7119. weight: math.unit(130, "lbs"),
  7120. name: "Side",
  7121. image: {
  7122. source: "./media/characters/corvin/side.svg",
  7123. extra: 1012 / 945
  7124. }
  7125. },
  7126. back: {
  7127. height: math.unit(5 + 8 / 12, "feet"),
  7128. weight: math.unit(130, "lbs"),
  7129. name: "Back",
  7130. image: {
  7131. source: "./media/characters/corvin/back.svg",
  7132. extra: 1803 / 1629
  7133. }
  7134. },
  7135. },
  7136. [
  7137. {
  7138. name: "Micro",
  7139. height: math.unit(3, "inches")
  7140. },
  7141. {
  7142. name: "Normal",
  7143. height: math.unit(5 + 8 / 12, "feet")
  7144. },
  7145. {
  7146. name: "Macro",
  7147. height: math.unit(300, "feet"),
  7148. default: true
  7149. },
  7150. {
  7151. name: "Megamacro",
  7152. height: math.unit(500, "miles")
  7153. }
  7154. ]
  7155. ))
  7156. characterMakers.push(() => makeCharacter(
  7157. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7158. {
  7159. front: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(135, "lbs"),
  7162. name: "Front",
  7163. image: {
  7164. source: "./media/characters/q/front.svg",
  7165. extra: 854 / 752,
  7166. bottom: 0.005
  7167. }
  7168. },
  7169. back: {
  7170. height: math.unit(6, "feet"),
  7171. weight: math.unit(130, "lbs"),
  7172. name: "Back",
  7173. image: {
  7174. source: "./media/characters/q/back.svg",
  7175. extra: 854 / 752
  7176. }
  7177. },
  7178. },
  7179. [
  7180. {
  7181. name: "Macro",
  7182. height: math.unit(90, "feet"),
  7183. default: true
  7184. },
  7185. {
  7186. name: "Extra Macro",
  7187. height: math.unit(300, "feet"),
  7188. },
  7189. {
  7190. name: "BIG WALF",
  7191. height: math.unit(750, "feet"),
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7197. {
  7198. front: {
  7199. height: math.unit(6, "feet"),
  7200. weight: math.unit(150, "lbs"),
  7201. name: "Front",
  7202. image: {
  7203. source: "./media/characters/carley/front.svg",
  7204. extra: 3927 / 3540,
  7205. bottom: 0.03
  7206. }
  7207. }
  7208. },
  7209. [
  7210. {
  7211. name: "Normal",
  7212. height: math.unit(6 + 3 / 12, "feet")
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(185, "feet"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Megamacro",
  7221. height: math.unit(8, "miles"),
  7222. },
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7227. {
  7228. front: {
  7229. height: math.unit(3, "feet"),
  7230. weight: math.unit(28, "lbs"),
  7231. name: "Front",
  7232. image: {
  7233. source: "./media/characters/citrine/front.svg"
  7234. }
  7235. }
  7236. },
  7237. [
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(3, "feet"),
  7241. default: true
  7242. }
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7247. {
  7248. front: {
  7249. height: math.unit(14, "feet"),
  7250. weight: math.unit(1450, "kg"),
  7251. capacity: math.unit(15, "people"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/aura-starwind/front.svg",
  7255. extra: 1455 / 1335
  7256. }
  7257. },
  7258. side: {
  7259. height: math.unit(14, "feet"),
  7260. weight: math.unit(1450, "kg"),
  7261. capacity: math.unit(15, "people"),
  7262. name: "Side",
  7263. image: {
  7264. source: "./media/characters/aura-starwind/side.svg",
  7265. extra: 1654 / 1497
  7266. }
  7267. },
  7268. taur: {
  7269. height: math.unit(18, "feet"),
  7270. weight: math.unit(5500, "kg"),
  7271. capacity: math.unit(50, "people"),
  7272. name: "Taur",
  7273. image: {
  7274. source: "./media/characters/aura-starwind/taur.svg",
  7275. extra: 1760 / 1650
  7276. }
  7277. },
  7278. feral: {
  7279. height: math.unit(46, "feet"),
  7280. weight: math.unit(25000, "kg"),
  7281. capacity: math.unit(120, "people"),
  7282. name: "Feral",
  7283. image: {
  7284. source: "./media/characters/aura-starwind/feral.svg"
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(14, "feet"),
  7292. default: true
  7293. },
  7294. {
  7295. name: "Macro",
  7296. height: math.unit(50, "meters")
  7297. },
  7298. {
  7299. name: "Megamacro",
  7300. height: math.unit(5000, "meters")
  7301. },
  7302. {
  7303. name: "Gigamacro",
  7304. height: math.unit(100000, "kilometers")
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(2 + 7 / 12, "feet"),
  7313. weight: math.unit(32, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/rivet/front.svg",
  7317. extra: 1716 / 1658,
  7318. bottom: 0.03
  7319. }
  7320. },
  7321. foot: {
  7322. height: math.unit(0.551, "feet"),
  7323. name: "Rivet's Foot",
  7324. image: {
  7325. source: "./media/characters/rivet/foot.svg"
  7326. },
  7327. rename: true
  7328. }
  7329. },
  7330. [
  7331. {
  7332. name: "Micro",
  7333. height: math.unit(1.5, "inches"),
  7334. },
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(2 + 7 / 12, "feet"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(85, "feet")
  7343. },
  7344. {
  7345. name: "Megamacro",
  7346. height: math.unit(2.2, "km")
  7347. }
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(5 + 9 / 12, "feet"),
  7355. weight: math.unit(150, "lbs"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/coffee/front.svg",
  7359. extra: 3666 / 3032,
  7360. bottom: 0.04
  7361. }
  7362. },
  7363. foot: {
  7364. height: math.unit(1.29, "feet"),
  7365. name: "Foot",
  7366. image: {
  7367. source: "./media/characters/coffee/foot.svg"
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Micro",
  7374. height: math.unit(2, "inches"),
  7375. },
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(5 + 9 / 12, "feet"),
  7379. default: true
  7380. },
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(800, "feet")
  7384. },
  7385. {
  7386. name: "Megamacro",
  7387. height: math.unit(25, "miles")
  7388. }
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7393. {
  7394. front: {
  7395. height: math.unit(6, "feet"),
  7396. weight: math.unit(200, "lbs"),
  7397. name: "Front",
  7398. image: {
  7399. source: "./media/characters/chari-gal/front.svg",
  7400. extra: 1568 / 1385,
  7401. bottom: 0.047
  7402. }
  7403. },
  7404. gigantamax: {
  7405. height: math.unit(6 * 16, "feet"),
  7406. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7407. name: "Gigantamax",
  7408. image: {
  7409. source: "./media/characters/chari-gal/gigantamax.svg",
  7410. extra: 1124 / 888,
  7411. bottom: 0.03
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(5 + 7 / 12, "feet")
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(200, "feet"),
  7423. default: true
  7424. }
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(6, "feet"),
  7432. weight: math.unit(150, "lbs"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/nova/front.svg",
  7436. extra: 5000 / 4722,
  7437. bottom: 0.02
  7438. }
  7439. }
  7440. },
  7441. [
  7442. {
  7443. name: "Micro-",
  7444. height: math.unit(0.8, "inches")
  7445. },
  7446. {
  7447. name: "Micro",
  7448. height: math.unit(2, "inches"),
  7449. default: true
  7450. },
  7451. ]
  7452. ))
  7453. characterMakers.push(() => makeCharacter(
  7454. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7455. {
  7456. front: {
  7457. height: math.unit(3 + 1 / 12, "feet"),
  7458. weight: math.unit(21.7, "lbs"),
  7459. name: "Front",
  7460. image: {
  7461. source: "./media/characters/argent/front.svg",
  7462. extra: 1471 / 1331,
  7463. bottom: 100.8 / 1575.5
  7464. }
  7465. }
  7466. },
  7467. [
  7468. {
  7469. name: "Micro",
  7470. height: math.unit(2, "inches")
  7471. },
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(3 + 1 / 12, "feet"),
  7475. default: true
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(120, "feet")
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7485. {
  7486. lamp: {
  7487. height: math.unit(7 * 1559 / 989, "feet"),
  7488. name: "Magic Lamp",
  7489. image: {
  7490. source: "./media/characters/mira-al-cul/lamp.svg",
  7491. extra: 1617 / 1559
  7492. }
  7493. },
  7494. front: {
  7495. height: math.unit(7, "feet"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/mira-al-cul/front.svg",
  7499. extra: 1044 / 990
  7500. }
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "Heavily Restricted",
  7506. height: math.unit(7 * 1559 / 989, "feet")
  7507. },
  7508. {
  7509. name: "Freshly Freed",
  7510. height: math.unit(50 * 1559 / 989, "feet")
  7511. },
  7512. {
  7513. name: "World Encompassing",
  7514. height: math.unit(10000 * 1559 / 989, "miles")
  7515. },
  7516. {
  7517. name: "Galactic",
  7518. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7519. },
  7520. {
  7521. name: "Palmed Universe",
  7522. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7523. default: true
  7524. },
  7525. {
  7526. name: "Multiversal Matriarch",
  7527. height: math.unit(8.87e10, "yottameters")
  7528. },
  7529. {
  7530. name: "Void Mother",
  7531. height: math.unit(3.14e110, "yottaparsecs")
  7532. },
  7533. ]
  7534. ))
  7535. characterMakers.push(() => makeCharacter(
  7536. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7537. {
  7538. front: {
  7539. height: math.unit(17 + 1 / 12, "feet"),
  7540. weight: math.unit(476.2 * 5, "lbs"),
  7541. name: "Front",
  7542. image: {
  7543. source: "./media/characters/kuro-shi-uchū/front.svg",
  7544. extra: 2329 / 1835,
  7545. bottom: 0.02
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Micro",
  7552. height: math.unit(2, "inches")
  7553. },
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(12, "meters")
  7557. },
  7558. {
  7559. name: "Planetary",
  7560. height: math.unit(0.00929, "AU"),
  7561. default: true
  7562. },
  7563. {
  7564. name: "Universal",
  7565. height: math.unit(20, "gigaparsecs")
  7566. },
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(5 + 2 / 12, "feet"),
  7574. weight: math.unit(120, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/katherine/front.svg",
  7578. extra: 2075 / 1969
  7579. }
  7580. },
  7581. dress: {
  7582. height: math.unit(5 + 2 / 12, "feet"),
  7583. weight: math.unit(120, "lbs"),
  7584. name: "Dress",
  7585. image: {
  7586. source: "./media/characters/katherine/dress.svg",
  7587. extra: 2258 / 2064
  7588. }
  7589. },
  7590. },
  7591. [
  7592. {
  7593. name: "Micro",
  7594. height: math.unit(1, "inches"),
  7595. default: true
  7596. },
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(5 + 2 / 12, "feet")
  7600. },
  7601. {
  7602. name: "Macro",
  7603. height: math.unit(100, "meters")
  7604. },
  7605. {
  7606. name: "Megamacro",
  7607. height: math.unit(80, "miles")
  7608. },
  7609. ]
  7610. ))
  7611. characterMakers.push(() => makeCharacter(
  7612. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7613. {
  7614. front: {
  7615. height: math.unit(7 + 8 / 12, "feet"),
  7616. weight: math.unit(250, "lbs"),
  7617. name: "Front",
  7618. image: {
  7619. source: "./media/characters/yevis/front.svg",
  7620. extra: 1938 / 1755
  7621. }
  7622. }
  7623. },
  7624. [
  7625. {
  7626. name: "Mortal",
  7627. height: math.unit(7 + 8 / 12, "feet")
  7628. },
  7629. {
  7630. name: "Battle",
  7631. height: math.unit(25 + 11 / 12, "feet")
  7632. },
  7633. {
  7634. name: "Wrath",
  7635. height: math.unit(1654 + 11 / 12, "feet")
  7636. },
  7637. {
  7638. name: "Planet Destroyer",
  7639. height: math.unit(12000, "miles")
  7640. },
  7641. {
  7642. name: "Galaxy Conqueror",
  7643. height: math.unit(1.45, "zettameters"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Universal War",
  7648. height: math.unit(184, "gigaparsecs")
  7649. },
  7650. {
  7651. name: "Eternity War",
  7652. height: math.unit(1.98e55, "yottaparsecs")
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(5 + 8 / 12, "feet"),
  7661. weight: math.unit(63, "kg"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/xavier/front.svg",
  7665. extra: 944 / 883
  7666. }
  7667. },
  7668. frontStretch: {
  7669. height: math.unit(5 + 8 / 12, "feet"),
  7670. weight: math.unit(63, "kg"),
  7671. name: "Stretching",
  7672. image: {
  7673. source: "./media/characters/xavier/front-stretch.svg",
  7674. extra: 962 / 820
  7675. }
  7676. },
  7677. },
  7678. [
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(5 + 8 / 12, "feet")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(100, "meters"),
  7686. default: true
  7687. },
  7688. {
  7689. name: "McLargeHuge",
  7690. height: math.unit(10, "miles")
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(5 + 5 / 12, "feet"),
  7699. weight: math.unit(150, "lb"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/joshii/front.svg"
  7703. }
  7704. },
  7705. foot: {
  7706. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7707. name: "Foot",
  7708. image: {
  7709. source: "./media/characters/joshii/foot.svg"
  7710. }
  7711. },
  7712. },
  7713. [
  7714. {
  7715. name: "Micro",
  7716. height: math.unit(2, "inches")
  7717. },
  7718. {
  7719. name: "Normal",
  7720. height: math.unit(5 + 5 / 12, "feet"),
  7721. default: true
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(785, "feet")
  7726. },
  7727. {
  7728. name: "Megamacro",
  7729. height: math.unit(24.5, "miles")
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(150, "lb"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/goddess-elizabeth/front.svg",
  7742. extra: 1800 / 1525,
  7743. bottom: 0.005
  7744. }
  7745. },
  7746. foot: {
  7747. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7748. name: "Foot",
  7749. image: {
  7750. source: "./media/characters/goddess-elizabeth/foot.svg"
  7751. }
  7752. },
  7753. mouth: {
  7754. height: math.unit(6, "feet"),
  7755. name: "Mouth",
  7756. image: {
  7757. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Micro",
  7764. height: math.unit(12, "feet")
  7765. },
  7766. {
  7767. name: "Normal",
  7768. height: math.unit(80, "miles"),
  7769. default: true
  7770. },
  7771. {
  7772. name: "Macro",
  7773. height: math.unit(15000, "parsecs")
  7774. },
  7775. ]
  7776. ))
  7777. characterMakers.push(() => makeCharacter(
  7778. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7779. {
  7780. front: {
  7781. height: math.unit(5 + 9 / 12, "feet"),
  7782. weight: math.unit(144, "lb"),
  7783. name: "Front",
  7784. image: {
  7785. source: "./media/characters/kara/front.svg"
  7786. }
  7787. },
  7788. feet: {
  7789. height: math.unit(6 / 6.765, "feet"),
  7790. name: "Kara's Feet",
  7791. rename: true,
  7792. image: {
  7793. source: "./media/characters/kara/feet.svg"
  7794. }
  7795. },
  7796. },
  7797. [
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(5 + 9 / 12, "feet")
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(174, "feet"),
  7805. default: true
  7806. },
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7811. {
  7812. front: {
  7813. height: math.unit(18, "feet"),
  7814. weight: math.unit(4050, "lb"),
  7815. name: "Front",
  7816. image: {
  7817. source: "./media/characters/tyrone/front.svg",
  7818. extra: 2520 / 2402,
  7819. bottom: 0.025
  7820. }
  7821. },
  7822. },
  7823. [
  7824. {
  7825. name: "Normal",
  7826. height: math.unit(18, "feet"),
  7827. default: true
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(300, "feet")
  7832. },
  7833. ]
  7834. ))
  7835. characterMakers.push(() => makeCharacter(
  7836. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7837. {
  7838. front: {
  7839. height: math.unit(7 + 8 / 12, "feet"),
  7840. weight: math.unit(120, "lb"),
  7841. name: "Front",
  7842. image: {
  7843. source: "./media/characters/danny/front.svg",
  7844. extra: 1490 / 1350
  7845. }
  7846. },
  7847. back: {
  7848. height: math.unit(7 + 8 / 12, "feet"),
  7849. weight: math.unit(120, "lb"),
  7850. name: "Back",
  7851. image: {
  7852. source: "./media/characters/danny/back.svg",
  7853. extra: 1490 / 1350
  7854. }
  7855. },
  7856. },
  7857. [
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(7 + 8 / 12, "feet"),
  7861. default: true
  7862. },
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7867. {
  7868. front: {
  7869. height: math.unit(3.5, "inches"),
  7870. weight: math.unit(19, "grams"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/mallow/front.svg",
  7874. extra: 471 / 431
  7875. }
  7876. },
  7877. back: {
  7878. height: math.unit(3.5, "inches"),
  7879. weight: math.unit(19, "grams"),
  7880. name: "Back",
  7881. image: {
  7882. source: "./media/characters/mallow/back.svg",
  7883. extra: 471 / 431
  7884. }
  7885. },
  7886. },
  7887. [
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(3.5, "inches"),
  7891. default: true
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(9, "feet"),
  7900. weight: math.unit(230, "kg"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/starry-aqua/front.svg"
  7904. }
  7905. },
  7906. back: {
  7907. height: math.unit(9, "feet"),
  7908. weight: math.unit(230, "kg"),
  7909. name: "Back",
  7910. image: {
  7911. source: "./media/characters/starry-aqua/back.svg"
  7912. }
  7913. },
  7914. hand: {
  7915. height: math.unit(9 * 0.1168, "feet"),
  7916. name: "Hand",
  7917. image: {
  7918. source: "./media/characters/starry-aqua/hand.svg"
  7919. }
  7920. },
  7921. foot: {
  7922. height: math.unit(9 * 0.18, "feet"),
  7923. name: "Foot",
  7924. image: {
  7925. source: "./media/characters/starry-aqua/foot.svg"
  7926. }
  7927. }
  7928. },
  7929. [
  7930. {
  7931. name: "Micro",
  7932. height: math.unit(3, "inches")
  7933. },
  7934. {
  7935. name: "Normal",
  7936. height: math.unit(9, "feet")
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(300, "feet"),
  7941. default: true
  7942. },
  7943. {
  7944. name: "Megamacro",
  7945. height: math.unit(3200, "feet")
  7946. }
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7951. {
  7952. front: {
  7953. height: math.unit(6, "feet"),
  7954. weight: math.unit(230, "lb"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/luka/front.svg",
  7958. extra: 1,
  7959. bottom: 0.025
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Normal",
  7966. height: math.unit(12 + 8 / 12, "feet"),
  7967. default: true
  7968. },
  7969. {
  7970. name: "Minimacro",
  7971. height: math.unit(20, "feet")
  7972. },
  7973. {
  7974. name: "Macro",
  7975. height: math.unit(250, "feet")
  7976. },
  7977. {
  7978. name: "Megamacro",
  7979. height: math.unit(5, "miles")
  7980. },
  7981. {
  7982. name: "Gigamacro",
  7983. height: math.unit(8000, "miles")
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(6, "feet"),
  7992. weight: math.unit(150, "lb"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/natalie-nightring/front.svg",
  7996. extra: 1,
  7997. bottom: 0.06
  7998. }
  7999. },
  8000. },
  8001. [
  8002. {
  8003. name: "Uh Oh",
  8004. height: math.unit(0.1, "mm")
  8005. },
  8006. {
  8007. name: "Small",
  8008. height: math.unit(3, "inches")
  8009. },
  8010. {
  8011. name: "Human Scale",
  8012. height: math.unit(6, "feet")
  8013. },
  8014. {
  8015. name: "Librarian",
  8016. height: math.unit(50, "feet"),
  8017. default: true
  8018. },
  8019. {
  8020. name: "Immense",
  8021. height: math.unit(200, "miles")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(6, "feet"),
  8030. weight: math.unit(180, "lbs"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/danni-rosie/front.svg",
  8034. extra: 1260 / 1128,
  8035. bottom: 0.022
  8036. }
  8037. },
  8038. },
  8039. [
  8040. {
  8041. name: "Micro",
  8042. height: math.unit(2, "inches"),
  8043. default: true
  8044. },
  8045. ]
  8046. ))
  8047. characterMakers.push(() => makeCharacter(
  8048. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8049. {
  8050. front: {
  8051. height: math.unit(5 + 9 / 12, "feet"),
  8052. weight: math.unit(220, "lb"),
  8053. name: "Front",
  8054. image: {
  8055. source: "./media/characters/samantha-kruse/front.svg",
  8056. extra: (985 / 935),
  8057. bottom: 0.03
  8058. }
  8059. },
  8060. frontUndressed: {
  8061. height: math.unit(5 + 9 / 12, "feet"),
  8062. weight: math.unit(220, "lb"),
  8063. name: "Front (Undressed)",
  8064. image: {
  8065. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8066. extra: (973 / 923),
  8067. bottom: 0.025
  8068. }
  8069. },
  8070. fat: {
  8071. height: math.unit(5 + 9 / 12, "feet"),
  8072. weight: math.unit(900, "lb"),
  8073. name: "Front (Fat)",
  8074. image: {
  8075. source: "./media/characters/samantha-kruse/fat.svg",
  8076. extra: 2688 / 2561
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(5 + 9 / 12, "feet"),
  8084. default: true
  8085. }
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8090. {
  8091. back: {
  8092. height: math.unit(5 + 4 / 12, "feet"),
  8093. weight: math.unit(4963, "lb"),
  8094. name: "Back",
  8095. image: {
  8096. source: "./media/characters/amelia-rosie/back.svg",
  8097. extra: 1113 / 963,
  8098. bottom: 0.01
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Level 0",
  8105. height: math.unit(5 + 4 / 12, "feet")
  8106. },
  8107. {
  8108. name: "Level 1",
  8109. height: math.unit(164597, "feet"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Level 2",
  8114. height: math.unit(956243, "miles")
  8115. },
  8116. {
  8117. name: "Level 3",
  8118. height: math.unit(29421709423, "miles")
  8119. },
  8120. {
  8121. name: "Level 4",
  8122. height: math.unit(154, "lightyears")
  8123. },
  8124. {
  8125. name: "Level 5",
  8126. height: math.unit(4738272, "lightyears")
  8127. },
  8128. {
  8129. name: "Level 6",
  8130. height: math.unit(145787152896, "lightyears")
  8131. },
  8132. ]
  8133. ))
  8134. characterMakers.push(() => makeCharacter(
  8135. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8136. {
  8137. front: {
  8138. height: math.unit(5 + 11 / 12, "feet"),
  8139. weight: math.unit(65, "kg"),
  8140. name: "Front",
  8141. image: {
  8142. source: "./media/characters/rook-kitara/front.svg",
  8143. extra: 1347 / 1274,
  8144. bottom: 0.005
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Totally Unfair",
  8151. height: math.unit(1.8, "mm")
  8152. },
  8153. {
  8154. name: "Lap Rookie",
  8155. height: math.unit(1.4, "feet")
  8156. },
  8157. {
  8158. name: "Normal",
  8159. height: math.unit(5 + 11 / 12, "feet"),
  8160. default: true
  8161. },
  8162. {
  8163. name: "How Did This Happen",
  8164. height: math.unit(80, "miles")
  8165. }
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8170. {
  8171. front: {
  8172. height: math.unit(7, "feet"),
  8173. weight: math.unit(300, "lb"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/pisces/front.svg",
  8177. extra: 2255 / 2115,
  8178. bottom: 0.03
  8179. }
  8180. },
  8181. back: {
  8182. height: math.unit(7, "feet"),
  8183. weight: math.unit(300, "lb"),
  8184. name: "Back",
  8185. image: {
  8186. source: "./media/characters/pisces/back.svg",
  8187. extra: 2146 / 2055,
  8188. bottom: 0.04
  8189. }
  8190. },
  8191. },
  8192. [
  8193. {
  8194. name: "Normal",
  8195. height: math.unit(7, "feet"),
  8196. default: true
  8197. },
  8198. {
  8199. name: "Swimming Pool",
  8200. height: math.unit(12.2, "meters")
  8201. },
  8202. {
  8203. name: "Olympic Swimming Pool",
  8204. height: math.unit(56.3, "meters")
  8205. },
  8206. {
  8207. name: "Lake Superior",
  8208. height: math.unit(93900, "meters")
  8209. },
  8210. {
  8211. name: "Mediterranean Sea",
  8212. height: math.unit(644457, "meters")
  8213. },
  8214. {
  8215. name: "World's Oceans",
  8216. height: math.unit(4567491, "meters")
  8217. },
  8218. ]
  8219. ))
  8220. characterMakers.push(() => makeCharacter(
  8221. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8222. {
  8223. front: {
  8224. height: math.unit(2.3, "meters"),
  8225. weight: math.unit(120, "kg"),
  8226. name: "Front",
  8227. image: {
  8228. source: "./media/characters/zelas/front.svg"
  8229. }
  8230. },
  8231. side: {
  8232. height: math.unit(2.3, "meters"),
  8233. weight: math.unit(120, "kg"),
  8234. name: "Side",
  8235. image: {
  8236. source: "./media/characters/zelas/side.svg"
  8237. }
  8238. },
  8239. back: {
  8240. height: math.unit(2.3, "meters"),
  8241. weight: math.unit(120, "kg"),
  8242. name: "Back",
  8243. image: {
  8244. source: "./media/characters/zelas/back.svg"
  8245. }
  8246. },
  8247. foot: {
  8248. height: math.unit(1.116, "feet"),
  8249. name: "Foot",
  8250. image: {
  8251. source: "./media/characters/zelas/foot.svg"
  8252. }
  8253. },
  8254. },
  8255. [
  8256. {
  8257. name: "Normal",
  8258. height: math.unit(2.3, "meters")
  8259. },
  8260. {
  8261. name: "Macro",
  8262. height: math.unit(30, "meters"),
  8263. default: true
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(1, "inch"),
  8272. weight: math.unit(0.21, "grams"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/talbot/front.svg",
  8276. extra: 594 / 544
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Micro",
  8283. height: math.unit(1, "inch"),
  8284. default: true
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8290. {
  8291. front: {
  8292. height: math.unit(3 + 3 / 12, "feet"),
  8293. weight: math.unit(51.8, "lb"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/fliss/front.svg",
  8297. extra: 840 / 640
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Teeny Tiny",
  8304. height: math.unit(1, "mm")
  8305. },
  8306. {
  8307. name: "Small",
  8308. height: math.unit(1, "inch"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Standard Sylveon",
  8313. height: math.unit(3 + 3 / 12, "feet")
  8314. },
  8315. {
  8316. name: "Large Nuisance",
  8317. height: math.unit(33, "feet")
  8318. },
  8319. {
  8320. name: "City Filler",
  8321. height: math.unit(3000, "feet")
  8322. },
  8323. {
  8324. name: "New Horizon",
  8325. height: math.unit(6000, "miles")
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(5, "cm"),
  8334. weight: math.unit(1.94, "g"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/fleta/front.svg",
  8338. extra: 835 / 803
  8339. }
  8340. },
  8341. back: {
  8342. height: math.unit(5, "cm"),
  8343. weight: math.unit(1.94, "g"),
  8344. name: "Back",
  8345. image: {
  8346. source: "./media/characters/fleta/back.svg",
  8347. extra: 835 / 803
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(5, "cm"),
  8355. default: true
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(6, "feet"),
  8364. weight: math.unit(225, "lb"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/dominic/front.svg",
  8368. extra: 1770 / 1620,
  8369. bottom: 0.025
  8370. }
  8371. },
  8372. back: {
  8373. height: math.unit(6, "feet"),
  8374. weight: math.unit(225, "lb"),
  8375. name: "Back",
  8376. image: {
  8377. source: "./media/characters/dominic/back.svg",
  8378. extra: 1745 / 1620,
  8379. bottom: 0.065
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Nano",
  8386. height: math.unit(0.1, "mm")
  8387. },
  8388. {
  8389. name: "Micro-",
  8390. height: math.unit(1, "mm")
  8391. },
  8392. {
  8393. name: "Micro",
  8394. height: math.unit(4, "inches")
  8395. },
  8396. {
  8397. name: "Normal",
  8398. height: math.unit(6 + 4 / 12, "feet"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Macro",
  8403. height: math.unit(115, "feet")
  8404. },
  8405. {
  8406. name: "Macro+",
  8407. height: math.unit(955, "feet")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(8990, "feet")
  8412. },
  8413. {
  8414. name: "Gigmacro",
  8415. height: math.unit(9310, "miles")
  8416. },
  8417. {
  8418. name: "Teramacro",
  8419. height: math.unit(1567005010, "miles")
  8420. },
  8421. {
  8422. name: "Examacro",
  8423. height: math.unit(1425, "parsecs")
  8424. },
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8429. {
  8430. front: {
  8431. height: math.unit(400, "feet"),
  8432. weight: math.unit(44444444, "lb"),
  8433. name: "Front",
  8434. image: {
  8435. source: "./media/characters/major-colonel/front.svg"
  8436. }
  8437. },
  8438. back: {
  8439. height: math.unit(400, "feet"),
  8440. weight: math.unit(44444444, "lb"),
  8441. name: "Back",
  8442. image: {
  8443. source: "./media/characters/major-colonel/back.svg"
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(400, "feet"),
  8451. default: true
  8452. },
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8457. {
  8458. catFront: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(120, "lb"),
  8461. name: "Front (Cat Side)",
  8462. image: {
  8463. source: "./media/characters/axel-lycan/cat-front.svg",
  8464. extra: 430 / 402,
  8465. bottom: 43 / 472.35
  8466. }
  8467. },
  8468. catBack: {
  8469. height: math.unit(6, "feet"),
  8470. weight: math.unit(120, "lb"),
  8471. name: "Back (Cat Side)",
  8472. image: {
  8473. source: "./media/characters/axel-lycan/cat-back.svg",
  8474. extra: 447 / 419,
  8475. bottom: 23.3 / 469
  8476. }
  8477. },
  8478. wolfFront: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(120, "lb"),
  8481. name: "Front (Wolf Side)",
  8482. image: {
  8483. source: "./media/characters/axel-lycan/wolf-front.svg",
  8484. extra: 485 / 456,
  8485. bottom: 19 / 504
  8486. }
  8487. },
  8488. wolfBack: {
  8489. height: math.unit(6, "feet"),
  8490. weight: math.unit(120, "lb"),
  8491. name: "Back (Wolf Side)",
  8492. image: {
  8493. source: "./media/characters/axel-lycan/wolf-back.svg",
  8494. extra: 475 / 438,
  8495. bottom: 39.2 / 514
  8496. }
  8497. },
  8498. },
  8499. [
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(1, "km"),
  8503. default: true
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(5 + 9 / 12, "feet"),
  8512. weight: math.unit(175, "lb"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/vanrel-hyena/front.svg",
  8516. extra: 1086 / 1010,
  8517. bottom: 0.04
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(5 + 9 / 12, "feet"),
  8525. default: true
  8526. },
  8527. ]
  8528. ))
  8529. characterMakers.push(() => makeCharacter(
  8530. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8531. {
  8532. front: {
  8533. height: math.unit(6, "feet"),
  8534. weight: math.unit(103, "lb"),
  8535. name: "Front",
  8536. image: {
  8537. source: "./media/characters/abbott-absol/front.svg",
  8538. extra: 2010 / 1842
  8539. }
  8540. },
  8541. },
  8542. [
  8543. {
  8544. name: "Megamicro",
  8545. height: math.unit(0.1, "mm")
  8546. },
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(1, "inch")
  8550. },
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(6, "feet"),
  8554. default: true
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(6, "feet"),
  8563. weight: math.unit(264, "lb"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/hector/front.svg",
  8567. extra: 2280 / 2130,
  8568. bottom: 0.07
  8569. }
  8570. },
  8571. },
  8572. [
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(12.25, "foot"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(160, "feet")
  8581. },
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8586. {
  8587. front: {
  8588. height: math.unit(6, "feet"),
  8589. weight: math.unit(150, "lb"),
  8590. name: "Front",
  8591. image: {
  8592. source: "./media/characters/sal/front.svg",
  8593. extra: 1846 / 1699,
  8594. bottom: 0.04
  8595. }
  8596. },
  8597. },
  8598. [
  8599. {
  8600. name: "Megamacro",
  8601. height: math.unit(10, "miles"),
  8602. default: true
  8603. },
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8608. {
  8609. front: {
  8610. height: math.unit(3, "meters"),
  8611. weight: math.unit(450, "kg"),
  8612. name: "front",
  8613. image: {
  8614. source: "./media/characters/ranger/front.svg",
  8615. extra: 2401 / 2243,
  8616. bottom: 0.05
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(3, "meters"),
  8624. default: true
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8630. {
  8631. front: {
  8632. height: math.unit(14, "feet"),
  8633. weight: math.unit(800, "kg"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/theresa/front.svg",
  8637. extra: 3575 / 3346,
  8638. bottom: 0.03
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(14, "feet"),
  8646. default: true
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8652. {
  8653. front: {
  8654. height: math.unit(6, "feet"),
  8655. weight: math.unit(3, "kg"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/ine/front.svg",
  8659. extra: 678 / 539,
  8660. bottom: 0.023
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Normal",
  8667. height: math.unit(2.265, "feet"),
  8668. default: true
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(5, "feet"),
  8677. weight: math.unit(30, "kg"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/vial/front.svg",
  8681. extra: 1365 / 1277,
  8682. bottom: 0.04
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(5, "feet"),
  8690. default: true
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8696. {
  8697. side: {
  8698. height: math.unit(3.4, "meters"),
  8699. weight: math.unit(1000, "lb"),
  8700. name: "Side",
  8701. image: {
  8702. source: "./media/characters/rovoska/side.svg",
  8703. extra: 4403 / 1515
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(3.4, "meters"),
  8711. default: true
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(8, "feet"),
  8720. weight: math.unit(315, "lb"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/gunner-rotthbauer/front.svg"
  8724. }
  8725. },
  8726. back: {
  8727. height: math.unit(8, "feet"),
  8728. weight: math.unit(315, "lb"),
  8729. name: "Back",
  8730. image: {
  8731. source: "./media/characters/gunner-rotthbauer/back.svg"
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Micro",
  8738. height: math.unit(3.5, "inches")
  8739. },
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(8, "feet"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(250, "feet")
  8748. },
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(1, "AU")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(5 + 5 / 12, "feet"),
  8760. weight: math.unit(140, "lb"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/allatia/front.svg",
  8764. extra: 1227 / 1180,
  8765. bottom: 0.027
  8766. }
  8767. },
  8768. },
  8769. [
  8770. {
  8771. name: "Normal",
  8772. height: math.unit(5 + 5 / 12, "feet")
  8773. },
  8774. {
  8775. name: "Macro",
  8776. height: math.unit(250, "feet"),
  8777. default: true
  8778. },
  8779. {
  8780. name: "Megamacro",
  8781. height: math.unit(8, "miles")
  8782. }
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(6, "feet"),
  8790. weight: math.unit(120, "lb"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/tene/front.svg",
  8794. extra: 1728 / 1578,
  8795. bottom: 0.022
  8796. }
  8797. },
  8798. stomping: {
  8799. height: math.unit(2.025, "meters"),
  8800. weight: math.unit(120, "lb"),
  8801. name: "Stomping",
  8802. image: {
  8803. source: "./media/characters/tene/stomping.svg",
  8804. extra: 938 / 873,
  8805. bottom: 0.01
  8806. }
  8807. },
  8808. sitting: {
  8809. height: math.unit(1, "meter"),
  8810. weight: math.unit(120, "lb"),
  8811. name: "Sitting",
  8812. image: {
  8813. source: "./media/characters/tene/sitting.svg",
  8814. extra: 437 / 415,
  8815. bottom: 0.1
  8816. }
  8817. },
  8818. feral: {
  8819. height: math.unit(3.9, "feet"),
  8820. weight: math.unit(250, "lb"),
  8821. name: "Feral",
  8822. image: {
  8823. source: "./media/characters/tene/feral.svg",
  8824. extra: 717 / 458,
  8825. bottom: 0.179
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Normal",
  8832. height: math.unit(6, "feet")
  8833. },
  8834. {
  8835. name: "Macro",
  8836. height: math.unit(300, "feet"),
  8837. default: true
  8838. },
  8839. {
  8840. name: "Megamacro",
  8841. height: math.unit(5, "miles")
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8847. {
  8848. side: {
  8849. height: math.unit(6, "feet"),
  8850. name: "Side",
  8851. image: {
  8852. source: "./media/characters/evander/side.svg",
  8853. extra: 877 / 477
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(0.83, "meters"),
  8861. default: true
  8862. },
  8863. ]
  8864. ))
  8865. characterMakers.push(() => makeCharacter(
  8866. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8867. {
  8868. front: {
  8869. height: math.unit(12, "feet"),
  8870. weight: math.unit(1000, "lb"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8874. extra: 1762 / 1611
  8875. }
  8876. },
  8877. back: {
  8878. height: math.unit(12, "feet"),
  8879. weight: math.unit(1000, "lb"),
  8880. name: "Back",
  8881. image: {
  8882. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8883. extra: 1762 / 1611
  8884. }
  8885. },
  8886. },
  8887. [
  8888. {
  8889. name: "Normal",
  8890. height: math.unit(12, "feet"),
  8891. default: true
  8892. },
  8893. {
  8894. name: "Kaiju",
  8895. height: math.unit(150, "feet")
  8896. },
  8897. ]
  8898. ))
  8899. characterMakers.push(() => makeCharacter(
  8900. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8901. {
  8902. front: {
  8903. height: math.unit(6, "feet"),
  8904. weight: math.unit(150, "lb"),
  8905. name: "Front",
  8906. image: {
  8907. source: "./media/characters/zero-alurus/front.svg"
  8908. }
  8909. },
  8910. back: {
  8911. height: math.unit(6, "feet"),
  8912. weight: math.unit(150, "lb"),
  8913. name: "Back",
  8914. image: {
  8915. source: "./media/characters/zero-alurus/back.svg"
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Normal",
  8922. height: math.unit(5 + 10 / 12, "feet")
  8923. },
  8924. {
  8925. name: "Macro",
  8926. height: math.unit(60, "feet"),
  8927. default: true
  8928. },
  8929. {
  8930. name: "Macro+",
  8931. height: math.unit(450, "feet")
  8932. },
  8933. ]
  8934. ))
  8935. characterMakers.push(() => makeCharacter(
  8936. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8937. {
  8938. front: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(200, "lb"),
  8941. name: "Front",
  8942. image: {
  8943. source: "./media/characters/mega-shi/front.svg",
  8944. extra: 1279 / 1250,
  8945. bottom: 0.02
  8946. }
  8947. },
  8948. back: {
  8949. height: math.unit(6, "feet"),
  8950. weight: math.unit(200, "lb"),
  8951. name: "Back",
  8952. image: {
  8953. source: "./media/characters/mega-shi/back.svg",
  8954. extra: 1279 / 1250,
  8955. bottom: 0.02
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Micro",
  8962. height: math.unit(16 + 6 / 12, "feet")
  8963. },
  8964. {
  8965. name: "Third Dimension",
  8966. height: math.unit(40, "meters")
  8967. },
  8968. {
  8969. name: "Normal",
  8970. height: math.unit(660, "feet"),
  8971. default: true
  8972. },
  8973. {
  8974. name: "Megamacro",
  8975. height: math.unit(10, "miles")
  8976. },
  8977. {
  8978. name: "Planetary Launch",
  8979. height: math.unit(500, "miles")
  8980. },
  8981. {
  8982. name: "Interstellar",
  8983. height: math.unit(1e9, "miles")
  8984. },
  8985. {
  8986. name: "Leaving the Universe",
  8987. height: math.unit(1, "gigaparsec")
  8988. },
  8989. {
  8990. name: "Travelling Universes",
  8991. height: math.unit(30e15, "parsecs")
  8992. },
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8997. {
  8998. front: {
  8999. height: math.unit(6, "feet"),
  9000. weight: math.unit(150, "lb"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/odyssey/front.svg",
  9004. extra: 1782 / 1582,
  9005. bottom: 0.01
  9006. }
  9007. },
  9008. side: {
  9009. height: math.unit(5.7, "feet"),
  9010. weight: math.unit(140, "lb"),
  9011. name: "Side",
  9012. image: {
  9013. source: "./media/characters/odyssey/side.svg",
  9014. extra: 6462 / 5700
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Normal",
  9021. height: math.unit(5 + 4 / 12, "feet")
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(1, "km")
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(3000, "km")
  9030. },
  9031. {
  9032. name: "Gigamacro",
  9033. height: math.unit(1, "AU"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Omniversal",
  9038. height: math.unit(100e14, "lightyears")
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9044. {
  9045. front: {
  9046. height: math.unit(6, "feet"),
  9047. weight: math.unit(300, "lb"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/mekuto/front.svg",
  9051. extra: 921 / 832,
  9052. bottom: 0.03
  9053. }
  9054. },
  9055. hand: {
  9056. height: math.unit(6 / 10.24, "feet"),
  9057. name: "Hand",
  9058. image: {
  9059. source: "./media/characters/mekuto/hand.svg"
  9060. }
  9061. },
  9062. foot: {
  9063. height: math.unit(6 / 5.05, "feet"),
  9064. name: "Foot",
  9065. image: {
  9066. source: "./media/characters/mekuto/foot.svg"
  9067. }
  9068. },
  9069. },
  9070. [
  9071. {
  9072. name: "Minimicro",
  9073. height: math.unit(0.2, "inches")
  9074. },
  9075. {
  9076. name: "Micro",
  9077. height: math.unit(1.5, "inches")
  9078. },
  9079. {
  9080. name: "Normal",
  9081. height: math.unit(5 + 11 / 12, "feet"),
  9082. default: true
  9083. },
  9084. {
  9085. name: "Minimacro",
  9086. height: math.unit(17 + 9 / 12, "feet")
  9087. },
  9088. {
  9089. name: "Macro",
  9090. height: math.unit(177.5, "feet")
  9091. },
  9092. {
  9093. name: "Megamacro",
  9094. height: math.unit(152, "miles")
  9095. },
  9096. ]
  9097. ))
  9098. characterMakers.push(() => makeCharacter(
  9099. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9100. {
  9101. front: {
  9102. height: math.unit(6.5, "inches"),
  9103. weight: math.unit(13, "oz"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/dafydd-tomos/front.svg",
  9107. extra: 2990 / 2603,
  9108. bottom: 0.03
  9109. }
  9110. },
  9111. },
  9112. [
  9113. {
  9114. name: "Micro",
  9115. height: math.unit(6.5, "inches"),
  9116. default: true
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(150, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/splinter/front.svg",
  9129. extra: 2990 / 2882,
  9130. bottom: 0.04
  9131. }
  9132. },
  9133. back: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(150, "lb"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/splinter/back.svg",
  9139. extra: 2990 / 2882,
  9140. bottom: 0.04
  9141. }
  9142. },
  9143. },
  9144. [
  9145. {
  9146. name: "Normal",
  9147. height: math.unit(6, "feet")
  9148. },
  9149. {
  9150. name: "Macro",
  9151. height: math.unit(230, "meters"),
  9152. default: true
  9153. },
  9154. ]
  9155. ))
  9156. characterMakers.push(() => makeCharacter(
  9157. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9158. {
  9159. front: {
  9160. height: math.unit(4 + 10 / 12, "feet"),
  9161. weight: math.unit(480, "lb"),
  9162. name: "Front",
  9163. image: {
  9164. source: "./media/characters/snow-gabumon/front.svg",
  9165. extra: 1140 / 963,
  9166. bottom: 0.058
  9167. }
  9168. },
  9169. back: {
  9170. height: math.unit(4 + 10 / 12, "feet"),
  9171. weight: math.unit(480, "lb"),
  9172. name: "Back",
  9173. image: {
  9174. source: "./media/characters/snow-gabumon/back.svg",
  9175. extra: 1115 / 962,
  9176. bottom: 0.041
  9177. }
  9178. },
  9179. frontUndresed: {
  9180. height: math.unit(4 + 10 / 12, "feet"),
  9181. weight: math.unit(480, "lb"),
  9182. name: "Front (Undressed)",
  9183. image: {
  9184. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9185. extra: 1061 / 960,
  9186. bottom: 0.045
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Micro",
  9193. height: math.unit(1, "inch")
  9194. },
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(4 + 10 / 12, "feet"),
  9198. default: true
  9199. },
  9200. {
  9201. name: "Macro",
  9202. height: math.unit(200, "feet")
  9203. },
  9204. {
  9205. name: "Megamacro",
  9206. height: math.unit(120, "miles")
  9207. },
  9208. {
  9209. name: "Gigamacro",
  9210. height: math.unit(9800, "miles")
  9211. },
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9216. {
  9217. front: {
  9218. height: math.unit(1.7, "meters"),
  9219. weight: math.unit(140, "lb"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/moody/front.svg",
  9223. extra: 3226 / 3007,
  9224. bottom: 0.087
  9225. }
  9226. },
  9227. },
  9228. [
  9229. {
  9230. name: "Micro",
  9231. height: math.unit(1, "mm")
  9232. },
  9233. {
  9234. name: "Normal",
  9235. height: math.unit(1.7, "meters"),
  9236. default: true
  9237. },
  9238. {
  9239. name: "Macro",
  9240. height: math.unit(80, "meters")
  9241. },
  9242. {
  9243. name: "Macro+",
  9244. height: math.unit(500, "meters")
  9245. },
  9246. ]
  9247. ))
  9248. characterMakers.push(() => makeCharacter(
  9249. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9250. {
  9251. front: {
  9252. height: math.unit(6, "feet"),
  9253. weight: math.unit(150, "lb"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/zyas/front.svg",
  9257. extra: 1180 / 1120,
  9258. bottom: 0.045
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(10, "feet"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(500, "feet")
  9271. },
  9272. {
  9273. name: "Megamacro",
  9274. height: math.unit(5, "miles")
  9275. },
  9276. {
  9277. name: "Teramacro",
  9278. height: math.unit(150000, "miles")
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(6, "feet"),
  9287. weight: math.unit(150, "lb"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/cuon/front.svg",
  9291. extra: 1390 / 1320,
  9292. bottom: 0.008
  9293. }
  9294. },
  9295. },
  9296. [
  9297. {
  9298. name: "Micro",
  9299. height: math.unit(3, "inches")
  9300. },
  9301. {
  9302. name: "Normal",
  9303. height: math.unit(18 + 9 / 12, "feet"),
  9304. default: true
  9305. },
  9306. {
  9307. name: "Macro",
  9308. height: math.unit(360, "feet")
  9309. },
  9310. {
  9311. name: "Megamacro",
  9312. height: math.unit(360, "miles")
  9313. },
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9318. {
  9319. front: {
  9320. height: math.unit(2.4, "meters"),
  9321. weight: math.unit(70, "kg"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/nyanuxk/front.svg",
  9325. extra: 1172 / 1084,
  9326. bottom: 0.065
  9327. }
  9328. },
  9329. side: {
  9330. height: math.unit(2.4, "meters"),
  9331. weight: math.unit(70, "kg"),
  9332. name: "Side",
  9333. image: {
  9334. source: "./media/characters/nyanuxk/side.svg",
  9335. extra: 1190 / 1132,
  9336. bottom: 0.007
  9337. }
  9338. },
  9339. back: {
  9340. height: math.unit(2.4, "meters"),
  9341. weight: math.unit(70, "kg"),
  9342. name: "Back",
  9343. image: {
  9344. source: "./media/characters/nyanuxk/back.svg",
  9345. extra: 1200 / 1141,
  9346. bottom: 0.015
  9347. }
  9348. },
  9349. foot: {
  9350. height: math.unit(0.52, "meters"),
  9351. name: "Foot",
  9352. image: {
  9353. source: "./media/characters/nyanuxk/foot.svg"
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Micro",
  9360. height: math.unit(2, "cm")
  9361. },
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(2.4, "meters"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Smaller Macro",
  9369. height: math.unit(120, "meters")
  9370. },
  9371. {
  9372. name: "Bigger Macro",
  9373. height: math.unit(1.2, "km")
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(15, "kilometers")
  9378. },
  9379. {
  9380. name: "Gigamacro",
  9381. height: math.unit(2000, "km")
  9382. },
  9383. {
  9384. name: "Teramacro",
  9385. height: math.unit(500000, "km")
  9386. },
  9387. ]
  9388. ))
  9389. characterMakers.push(() => makeCharacter(
  9390. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9391. {
  9392. side: {
  9393. height: math.unit(6, "feet"),
  9394. name: "Side",
  9395. image: {
  9396. source: "./media/characters/ailbhe/side.svg",
  9397. extra: 757 / 464,
  9398. bottom: 0.041
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Normal",
  9405. height: math.unit(1.07, "meters"),
  9406. default: true
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(120, "kg"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/zevulfius/front.svg",
  9419. extra: 965 / 903
  9420. }
  9421. },
  9422. side: {
  9423. height: math.unit(6, "feet"),
  9424. weight: math.unit(120, "kg"),
  9425. name: "Side",
  9426. image: {
  9427. source: "./media/characters/zevulfius/side.svg",
  9428. extra: 939 / 900
  9429. }
  9430. },
  9431. back: {
  9432. height: math.unit(6, "feet"),
  9433. weight: math.unit(120, "kg"),
  9434. name: "Back",
  9435. image: {
  9436. source: "./media/characters/zevulfius/back.svg",
  9437. extra: 918 / 854,
  9438. bottom: 0.005
  9439. }
  9440. },
  9441. foot: {
  9442. height: math.unit(6 / 3.72, "feet"),
  9443. name: "Foot",
  9444. image: {
  9445. source: "./media/characters/zevulfius/foot.svg"
  9446. }
  9447. },
  9448. },
  9449. [
  9450. {
  9451. name: "Macro",
  9452. height: math.unit(750, "meters")
  9453. },
  9454. {
  9455. name: "Megamacro",
  9456. height: math.unit(20, "km"),
  9457. default: true
  9458. },
  9459. {
  9460. name: "Gigamacro",
  9461. height: math.unit(2000, "km")
  9462. },
  9463. {
  9464. name: "Teramacro",
  9465. height: math.unit(250000, "km")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(100, "feet"),
  9474. weight: math.unit(350, "kg"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/rikes/front.svg",
  9478. extra: 1565 / 1483,
  9479. bottom: 0.017
  9480. }
  9481. },
  9482. },
  9483. [
  9484. {
  9485. name: "Macro",
  9486. height: math.unit(100, "feet"),
  9487. default: true
  9488. },
  9489. ]
  9490. ))
  9491. characterMakers.push(() => makeCharacter(
  9492. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9493. {
  9494. anthro: {
  9495. height: math.unit(8, "feet"),
  9496. weight: math.unit(120, "kg"),
  9497. name: "Anthro",
  9498. image: {
  9499. source: "./media/characters/adam-silver-mane/anthro.svg",
  9500. extra: 5743 / 5339,
  9501. bottom: 0.07
  9502. }
  9503. },
  9504. taur: {
  9505. height: math.unit(16, "feet"),
  9506. weight: math.unit(1500, "kg"),
  9507. name: "Taur",
  9508. image: {
  9509. source: "./media/characters/adam-silver-mane/taur.svg",
  9510. extra: 1713 / 1571,
  9511. bottom: 0.01
  9512. }
  9513. },
  9514. },
  9515. [
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(8, "feet")
  9519. },
  9520. {
  9521. name: "Minimacro",
  9522. height: math.unit(80, "feet")
  9523. },
  9524. {
  9525. name: "Macro",
  9526. height: math.unit(800, "feet"),
  9527. default: true
  9528. },
  9529. {
  9530. name: "Megamacro",
  9531. height: math.unit(8000, "feet")
  9532. },
  9533. {
  9534. name: "Gigamacro",
  9535. height: math.unit(800, "miles")
  9536. },
  9537. {
  9538. name: "Teramacro",
  9539. height: math.unit(80000, "miles")
  9540. },
  9541. {
  9542. name: "Celestial",
  9543. height: math.unit(8e6, "miles")
  9544. },
  9545. {
  9546. name: "Star Dragon",
  9547. height: math.unit(800000, "parsecs")
  9548. },
  9549. {
  9550. name: "Godly",
  9551. height: math.unit(800, "teraparsecs")
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(6, "feet"),
  9560. weight: math.unit(150, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/ky'owin/front.svg",
  9564. extra: 3888 / 3068,
  9565. bottom: 0.015
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(6 + 8 / 12, "feet")
  9573. },
  9574. {
  9575. name: "Large",
  9576. height: math.unit(68, "feet")
  9577. },
  9578. {
  9579. name: "Macro",
  9580. height: math.unit(132, "feet")
  9581. },
  9582. {
  9583. name: "Macro+",
  9584. height: math.unit(340, "feet")
  9585. },
  9586. {
  9587. name: "Macro++",
  9588. height: math.unit(680, "feet"),
  9589. default: true
  9590. },
  9591. {
  9592. name: "Megamacro",
  9593. height: math.unit(1, "mile")
  9594. },
  9595. {
  9596. name: "Megamacro+",
  9597. height: math.unit(10, "miles")
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9603. {
  9604. front: {
  9605. height: math.unit(4, "feet"),
  9606. weight: math.unit(50, "lb"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/mal/front.svg",
  9610. extra: 785 / 724,
  9611. bottom: 0.07
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Micro",
  9618. height: math.unit(4, "inches")
  9619. },
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(4, "feet"),
  9623. default: true
  9624. },
  9625. {
  9626. name: "Macro",
  9627. height: math.unit(200, "feet")
  9628. },
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9633. {
  9634. front: {
  9635. height: math.unit(6, "feet"),
  9636. weight: math.unit(150, "lb"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/jordan-deware/front.svg",
  9640. extra: 1191 / 1012
  9641. }
  9642. },
  9643. },
  9644. [
  9645. {
  9646. name: "Nano",
  9647. height: math.unit(0.01, "mm")
  9648. },
  9649. {
  9650. name: "Minimicro",
  9651. height: math.unit(1, "mm")
  9652. },
  9653. {
  9654. name: "Micro",
  9655. height: math.unit(0.5, "inches")
  9656. },
  9657. {
  9658. name: "Normal",
  9659. height: math.unit(4, "feet"),
  9660. default: true
  9661. },
  9662. {
  9663. name: "Minimacro",
  9664. height: math.unit(40, "meters")
  9665. },
  9666. {
  9667. name: "Small Macro",
  9668. height: math.unit(400, "meters")
  9669. },
  9670. {
  9671. name: "Macro",
  9672. height: math.unit(4, "miles")
  9673. },
  9674. {
  9675. name: "Megamacro",
  9676. height: math.unit(40, "miles")
  9677. },
  9678. {
  9679. name: "Megamacro+",
  9680. height: math.unit(400, "miles")
  9681. },
  9682. {
  9683. name: "Gigamacro",
  9684. height: math.unit(400000, "miles")
  9685. },
  9686. ]
  9687. ))
  9688. characterMakers.push(() => makeCharacter(
  9689. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9690. {
  9691. side: {
  9692. height: math.unit(6, "feet"),
  9693. weight: math.unit(150, "lb"),
  9694. name: "Side",
  9695. image: {
  9696. source: "./media/characters/kimiko/side.svg",
  9697. extra: 600 / 358
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Normal",
  9704. height: math.unit(15, "feet"),
  9705. default: true
  9706. },
  9707. {
  9708. name: "Macro",
  9709. height: math.unit(220, "feet")
  9710. },
  9711. {
  9712. name: "Macro+",
  9713. height: math.unit(1450, "feet")
  9714. },
  9715. {
  9716. name: "Megamacro",
  9717. height: math.unit(11500, "feet")
  9718. },
  9719. {
  9720. name: "Gigamacro",
  9721. height: math.unit(9500, "miles")
  9722. },
  9723. {
  9724. name: "Teramacro",
  9725. height: math.unit(2208005005, "miles")
  9726. },
  9727. {
  9728. name: "Examacro",
  9729. height: math.unit(2750, "parsecs")
  9730. },
  9731. {
  9732. name: "Zettamacro",
  9733. height: math.unit(101500, "parsecs")
  9734. },
  9735. ]
  9736. ))
  9737. characterMakers.push(() => makeCharacter(
  9738. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9739. {
  9740. front: {
  9741. height: math.unit(6, "feet"),
  9742. weight: math.unit(70, "kg"),
  9743. name: "Front",
  9744. image: {
  9745. source: "./media/characters/andrew-sleepy/front.svg"
  9746. }
  9747. },
  9748. side: {
  9749. height: math.unit(6, "feet"),
  9750. weight: math.unit(70, "kg"),
  9751. name: "Side",
  9752. image: {
  9753. source: "./media/characters/andrew-sleepy/side.svg"
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Micro",
  9760. height: math.unit(1, "mm"),
  9761. default: true
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(150, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/judio/front.svg",
  9774. extra: 1258 / 1110
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(5 + 6 / 12, "feet")
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(1000, "feet"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "Megamacro",
  9790. height: math.unit(10, "miles")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(6, "feet"),
  9799. weight: math.unit(68, "kg"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/nomaxice/front.svg",
  9803. extra: 1498 / 1073,
  9804. bottom: 0.075
  9805. }
  9806. },
  9807. foot: {
  9808. height: math.unit(1.1, "feet"),
  9809. name: "Foot",
  9810. image: {
  9811. source: "./media/characters/nomaxice/foot.svg"
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Micro",
  9818. height: math.unit(8, "cm")
  9819. },
  9820. {
  9821. name: "Norm",
  9822. height: math.unit(1.82, "m")
  9823. },
  9824. {
  9825. name: "Norm+",
  9826. height: math.unit(8.8, "feet")
  9827. },
  9828. {
  9829. name: "Big",
  9830. height: math.unit(8, "meters"),
  9831. default: true
  9832. },
  9833. {
  9834. name: "Macro",
  9835. height: math.unit(18, "meters")
  9836. },
  9837. {
  9838. name: "Macro+",
  9839. height: math.unit(88, "meters")
  9840. },
  9841. ]
  9842. ))
  9843. characterMakers.push(() => makeCharacter(
  9844. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9845. {
  9846. front: {
  9847. height: math.unit(12, "feet"),
  9848. weight: math.unit(1.5, "tons"),
  9849. name: "Front",
  9850. image: {
  9851. source: "./media/characters/dydros/front.svg",
  9852. extra: 863 / 800,
  9853. bottom: 0.015
  9854. }
  9855. },
  9856. back: {
  9857. height: math.unit(12, "feet"),
  9858. weight: math.unit(1.5, "tons"),
  9859. name: "Back",
  9860. image: {
  9861. source: "./media/characters/dydros/back.svg",
  9862. extra: 900 / 843,
  9863. bottom: 0.005
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(12, "feet"),
  9871. default: true
  9872. },
  9873. ]
  9874. ))
  9875. characterMakers.push(() => makeCharacter(
  9876. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9877. {
  9878. front: {
  9879. height: math.unit(6, "feet"),
  9880. weight: math.unit(100, "kg"),
  9881. name: "Front",
  9882. image: {
  9883. source: "./media/characters/riggi/front.svg",
  9884. extra: 5787 / 5303
  9885. }
  9886. },
  9887. hyper: {
  9888. height: math.unit(6 * 5 / 3, "feet"),
  9889. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9890. name: "Hyper",
  9891. image: {
  9892. source: "./media/characters/riggi/hyper.svg",
  9893. extra: 3595 / 3485
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Small Macro",
  9900. height: math.unit(50, "feet")
  9901. },
  9902. {
  9903. name: "Default",
  9904. height: math.unit(200, "feet"),
  9905. default: true
  9906. },
  9907. {
  9908. name: "Loom",
  9909. height: math.unit(10000, "feet")
  9910. },
  9911. {
  9912. name: "Cruising Altitude",
  9913. height: math.unit(30000, "feet")
  9914. },
  9915. {
  9916. name: "Megamacro",
  9917. height: math.unit(100, "miles")
  9918. },
  9919. {
  9920. name: "Continent Sized",
  9921. height: math.unit(2800, "miles")
  9922. },
  9923. {
  9924. name: "Earth Sized",
  9925. height: math.unit(8000, "miles")
  9926. },
  9927. ]
  9928. ))
  9929. characterMakers.push(() => makeCharacter(
  9930. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9931. {
  9932. front: {
  9933. height: math.unit(6, "feet"),
  9934. weight: math.unit(250, "lb"),
  9935. name: "Front",
  9936. image: {
  9937. source: "./media/characters/alexi/front.svg",
  9938. extra: 3483 / 3291,
  9939. bottom: 0.04
  9940. }
  9941. },
  9942. back: {
  9943. height: math.unit(6, "feet"),
  9944. weight: math.unit(250, "lb"),
  9945. name: "Back",
  9946. image: {
  9947. source: "./media/characters/alexi/back.svg",
  9948. extra: 3533 / 3356,
  9949. bottom: 0.021
  9950. }
  9951. },
  9952. frontTransforming: {
  9953. height: math.unit(8.58, "feet"),
  9954. weight: math.unit(1300, "lb"),
  9955. name: "Transforming",
  9956. image: {
  9957. source: "./media/characters/alexi/front-transforming.svg",
  9958. extra: 437 / 409,
  9959. bottom: 19 / 458.66
  9960. }
  9961. },
  9962. frontTransformed: {
  9963. height: math.unit(12.5, "feet"),
  9964. weight: math.unit(4000, "lb"),
  9965. name: "Transformed",
  9966. image: {
  9967. source: "./media/characters/alexi/front-transformed.svg",
  9968. extra: 639 / 614,
  9969. bottom: 30.55 / 671
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(3, "meters"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Minimacro",
  9981. height: math.unit(30, "meters")
  9982. },
  9983. {
  9984. name: "Macro",
  9985. height: math.unit(500, "meters")
  9986. },
  9987. {
  9988. name: "Megamacro",
  9989. height: math.unit(9000, "km")
  9990. },
  9991. {
  9992. name: "Teramacro",
  9993. height: math.unit(384000, "km")
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(6, "feet"),
  10002. weight: math.unit(150, "lb"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/kayroo/front.svg",
  10006. extra: 1153 / 1038,
  10007. bottom: 0.06
  10008. }
  10009. },
  10010. foot: {
  10011. height: math.unit(6, "feet"),
  10012. weight: math.unit(150, "lb"),
  10013. name: "Foot",
  10014. image: {
  10015. source: "./media/characters/kayroo/foot.svg"
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(8, "feet"),
  10023. default: true
  10024. },
  10025. {
  10026. name: "Minimacro",
  10027. height: math.unit(250, "feet")
  10028. },
  10029. {
  10030. name: "Macro",
  10031. height: math.unit(2800, "feet")
  10032. },
  10033. {
  10034. name: "Megamacro",
  10035. height: math.unit(5200, "feet")
  10036. },
  10037. {
  10038. name: "Gigamacro",
  10039. height: math.unit(27000, "feet")
  10040. },
  10041. {
  10042. name: "Omega",
  10043. height: math.unit(45000, "feet")
  10044. },
  10045. ]
  10046. ))
  10047. characterMakers.push(() => makeCharacter(
  10048. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10049. {
  10050. front: {
  10051. height: math.unit(18, "feet"),
  10052. weight: math.unit(5800, "lb"),
  10053. name: "Front",
  10054. image: {
  10055. source: "./media/characters/rhys/front.svg",
  10056. extra: 3386 / 3090,
  10057. bottom: 0.07
  10058. }
  10059. },
  10060. },
  10061. [
  10062. {
  10063. name: "Normal",
  10064. height: math.unit(18, "feet"),
  10065. default: true
  10066. },
  10067. {
  10068. name: "Working Size",
  10069. height: math.unit(200, "feet")
  10070. },
  10071. {
  10072. name: "Demolition Size",
  10073. height: math.unit(2000, "feet")
  10074. },
  10075. {
  10076. name: "Maximum Licensed Size",
  10077. height: math.unit(5, "miles")
  10078. },
  10079. {
  10080. name: "Maximum Observed Size",
  10081. height: math.unit(10, "yottameters")
  10082. },
  10083. ]
  10084. ))
  10085. characterMakers.push(() => makeCharacter(
  10086. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10087. {
  10088. front: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(250, "lb"),
  10091. name: "Front",
  10092. image: {
  10093. source: "./media/characters/toto/front.svg",
  10094. extra: 527 / 479,
  10095. bottom: 0.05
  10096. }
  10097. },
  10098. },
  10099. [
  10100. {
  10101. name: "Micro",
  10102. height: math.unit(3, "feet")
  10103. },
  10104. {
  10105. name: "Normal",
  10106. height: math.unit(10, "feet")
  10107. },
  10108. {
  10109. name: "Macro",
  10110. height: math.unit(150, "feet"),
  10111. default: true
  10112. },
  10113. {
  10114. name: "Megamacro",
  10115. height: math.unit(1200, "feet")
  10116. },
  10117. ]
  10118. ))
  10119. characterMakers.push(() => makeCharacter(
  10120. { name: "King", species: ["lion"], tags: ["anthro"] },
  10121. {
  10122. back: {
  10123. height: math.unit(6, "feet"),
  10124. weight: math.unit(150, "lb"),
  10125. name: "Back",
  10126. image: {
  10127. source: "./media/characters/king/back.svg"
  10128. }
  10129. },
  10130. },
  10131. [
  10132. {
  10133. name: "Micro",
  10134. height: math.unit(2, "inches")
  10135. },
  10136. {
  10137. name: "Normal",
  10138. height: math.unit(8, "feet")
  10139. },
  10140. {
  10141. name: "Macro",
  10142. height: math.unit(200, "feet"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Megamacro",
  10147. height: math.unit(50, "miles")
  10148. },
  10149. ]
  10150. ))
  10151. characterMakers.push(() => makeCharacter(
  10152. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10153. {
  10154. anthro: {
  10155. height: math.unit(6 + 5 / 12, "feet"),
  10156. weight: math.unit(280, "lb"),
  10157. name: "Anthro",
  10158. image: {
  10159. source: "./media/characters/cordite/anthro.svg",
  10160. extra: 1986 / 1905,
  10161. bottom: 0.025
  10162. }
  10163. },
  10164. feral: {
  10165. height: math.unit(2, "feet"),
  10166. weight: math.unit(90, "lb"),
  10167. name: "Feral",
  10168. image: {
  10169. source: "./media/characters/cordite/feral.svg",
  10170. extra: 1260 / 755,
  10171. bottom: 0.05
  10172. }
  10173. },
  10174. },
  10175. [
  10176. {
  10177. name: "Normal",
  10178. height: math.unit(6 + 5 / 12, "feet"),
  10179. default: true
  10180. },
  10181. ]
  10182. ))
  10183. characterMakers.push(() => makeCharacter(
  10184. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10185. {
  10186. front: {
  10187. height: math.unit(6, "feet"),
  10188. weight: math.unit(150, "lb"),
  10189. name: "Front",
  10190. image: {
  10191. source: "./media/characters/pianostrong/front.svg",
  10192. extra: 6577 / 6254,
  10193. bottom: 0.02
  10194. }
  10195. },
  10196. side: {
  10197. height: math.unit(6, "feet"),
  10198. weight: math.unit(150, "lb"),
  10199. name: "Side",
  10200. image: {
  10201. source: "./media/characters/pianostrong/side.svg",
  10202. extra: 6106 / 5730
  10203. }
  10204. },
  10205. back: {
  10206. height: math.unit(6, "feet"),
  10207. weight: math.unit(150, "lb"),
  10208. name: "Back",
  10209. image: {
  10210. source: "./media/characters/pianostrong/back.svg",
  10211. extra: 6085 / 5733,
  10212. bottom: 0.01
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Macro",
  10219. height: math.unit(100, "feet")
  10220. },
  10221. {
  10222. name: "Macro+",
  10223. height: math.unit(300, "feet"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Macro++",
  10228. height: math.unit(1000, "feet")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(150, "lb"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/kona/front.svg",
  10241. extra: 2960 / 2629,
  10242. bottom: 0.005
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Normal",
  10249. height: math.unit(11 + 8 / 12, "feet")
  10250. },
  10251. {
  10252. name: "Macro",
  10253. height: math.unit(850, "feet"),
  10254. default: true
  10255. },
  10256. {
  10257. name: "Macro+",
  10258. height: math.unit(1.5, "km"),
  10259. default: true
  10260. },
  10261. {
  10262. name: "Megamacro",
  10263. height: math.unit(80, "miles")
  10264. },
  10265. {
  10266. name: "Gigamacro",
  10267. height: math.unit(3500, "miles")
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10273. {
  10274. side: {
  10275. height: math.unit(1.9, "meters"),
  10276. weight: math.unit(326, "kg"),
  10277. name: "Side",
  10278. image: {
  10279. source: "./media/characters/levi/side.svg",
  10280. extra: 1704 / 1334,
  10281. bottom: 0.02
  10282. }
  10283. },
  10284. },
  10285. [
  10286. {
  10287. name: "Normal",
  10288. height: math.unit(1.9, "meters"),
  10289. default: true
  10290. },
  10291. {
  10292. name: "Macro",
  10293. height: math.unit(20, "meters")
  10294. },
  10295. {
  10296. name: "Macro+",
  10297. height: math.unit(200, "meters")
  10298. },
  10299. {
  10300. name: "Megamacro",
  10301. height: math.unit(2, "km")
  10302. },
  10303. {
  10304. name: "Megamacro+",
  10305. height: math.unit(20, "km")
  10306. },
  10307. {
  10308. name: "Gigamacro",
  10309. height: math.unit(2500, "km")
  10310. },
  10311. {
  10312. name: "Gigamacro+",
  10313. height: math.unit(120000, "km")
  10314. },
  10315. {
  10316. name: "Teramacro",
  10317. height: math.unit(7.77e6, "km")
  10318. },
  10319. ]
  10320. ))
  10321. characterMakers.push(() => makeCharacter(
  10322. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10323. {
  10324. front: {
  10325. height: math.unit(6 + 4 / 12, "feet"),
  10326. weight: math.unit(188, "lb"),
  10327. name: "Front",
  10328. image: {
  10329. source: "./media/characters/bmc/front.svg",
  10330. extra: 1067 / 1022,
  10331. bottom: 0.047
  10332. }
  10333. },
  10334. },
  10335. [
  10336. {
  10337. name: "Human-sized",
  10338. height: math.unit(6 + 4 / 12, "feet")
  10339. },
  10340. {
  10341. name: "Small",
  10342. height: math.unit(250, "feet")
  10343. },
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(1250, "feet"),
  10347. default: true
  10348. },
  10349. {
  10350. name: "Good Day",
  10351. height: math.unit(88, "miles")
  10352. },
  10353. {
  10354. name: "Largest Measured Size",
  10355. height: math.unit(11.2e6, "lightyears")
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(20, "feet"),
  10364. weight: math.unit(2016, "kg"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/sven-the-kaiju/front.svg",
  10368. extra: 1479 / 1449,
  10369. bottom: 0.05
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Fairy",
  10376. height: math.unit(6, "inches")
  10377. },
  10378. {
  10379. name: "Normal",
  10380. height: math.unit(20, "feet"),
  10381. default: true
  10382. },
  10383. {
  10384. name: "Rampage",
  10385. height: math.unit(200, "feet")
  10386. },
  10387. {
  10388. name: "Archfey Forest Guardian",
  10389. height: math.unit(1, "mile")
  10390. },
  10391. ]
  10392. ))
  10393. characterMakers.push(() => makeCharacter(
  10394. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10395. {
  10396. front: {
  10397. height: math.unit(4, "meters"),
  10398. weight: math.unit(2, "tons"),
  10399. name: "Front",
  10400. image: {
  10401. source: "./media/characters/marik/front.svg",
  10402. extra: 1057 / 1003,
  10403. bottom: 0.08
  10404. }
  10405. },
  10406. },
  10407. [
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(4, "meters"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Macro",
  10415. height: math.unit(20, "meters")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(50, "km")
  10420. },
  10421. {
  10422. name: "Gigamacro",
  10423. height: math.unit(100, "km")
  10424. },
  10425. {
  10426. name: "Alpha Macro",
  10427. height: math.unit(7.88e7, "yottameters")
  10428. },
  10429. ]
  10430. ))
  10431. characterMakers.push(() => makeCharacter(
  10432. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10433. {
  10434. front: {
  10435. height: math.unit(6, "feet"),
  10436. weight: math.unit(110, "lb"),
  10437. name: "Front",
  10438. image: {
  10439. source: "./media/characters/mel/front.svg",
  10440. extra: 736 / 617,
  10441. bottom: 0.017
  10442. }
  10443. },
  10444. },
  10445. [
  10446. {
  10447. name: "Pico",
  10448. height: math.unit(3, "pm")
  10449. },
  10450. {
  10451. name: "Nano",
  10452. height: math.unit(3, "nm")
  10453. },
  10454. {
  10455. name: "Micro",
  10456. height: math.unit(0.3, "mm"),
  10457. default: true
  10458. },
  10459. {
  10460. name: "Micro+",
  10461. height: math.unit(3, "mm")
  10462. },
  10463. {
  10464. name: "Normal",
  10465. height: math.unit(5 + 10.5 / 12, "feet")
  10466. },
  10467. ]
  10468. ))
  10469. characterMakers.push(() => makeCharacter(
  10470. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10471. {
  10472. kaiju: {
  10473. height: math.unit(1.75, "meters"),
  10474. weight: math.unit(55, "kg"),
  10475. name: "Kaiju",
  10476. image: {
  10477. source: "./media/characters/lykonous/kaiju.svg",
  10478. extra: 1055 / 946,
  10479. bottom: 0.135
  10480. }
  10481. },
  10482. },
  10483. [
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(2.5, "meters"),
  10487. default: true
  10488. },
  10489. {
  10490. name: "Kaiju Dragon",
  10491. height: math.unit(60, "meters")
  10492. },
  10493. {
  10494. name: "Mega Kaiju",
  10495. height: math.unit(120, "km")
  10496. },
  10497. {
  10498. name: "Giga Kaiju",
  10499. height: math.unit(200, "megameters")
  10500. },
  10501. {
  10502. name: "Terra Kaiju",
  10503. height: math.unit(400, "gigameters")
  10504. },
  10505. {
  10506. name: "Kaiju Dragon God",
  10507. height: math.unit(13000, "exaparsecs")
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(6, "feet"),
  10516. weight: math.unit(150, "lb"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/blü/front.svg",
  10520. extra: 1883 / 1564,
  10521. bottom: 0.031
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(13, "feet"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Big Boi",
  10533. height: math.unit(150, "meters")
  10534. },
  10535. {
  10536. name: "Mini Stomper",
  10537. height: math.unit(300, "meters")
  10538. },
  10539. {
  10540. name: "Macro",
  10541. height: math.unit(1000, "meters")
  10542. },
  10543. {
  10544. name: "Megamacro",
  10545. height: math.unit(11000, "meters")
  10546. },
  10547. {
  10548. name: "Gigamacro",
  10549. height: math.unit(11000, "km")
  10550. },
  10551. {
  10552. name: "Teramacro",
  10553. height: math.unit(420000, "km")
  10554. },
  10555. {
  10556. name: "Examacro",
  10557. height: math.unit(120, "parsecs")
  10558. },
  10559. {
  10560. name: "God Tho",
  10561. height: math.unit(98000000000, "parsecs")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10567. {
  10568. taurFront: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(200, "lb"),
  10571. name: "Taur (Front)",
  10572. image: {
  10573. source: "./media/characters/scales/taur-front.svg",
  10574. extra: 1,
  10575. bottom: 0.05
  10576. }
  10577. },
  10578. taurBack: {
  10579. height: math.unit(6, "feet"),
  10580. weight: math.unit(200, "lb"),
  10581. name: "Taur (Back)",
  10582. image: {
  10583. source: "./media/characters/scales/taur-back.svg",
  10584. extra: 1,
  10585. bottom: 0.08
  10586. }
  10587. },
  10588. anthro: {
  10589. height: math.unit(6 * 7 / 12, "feet"),
  10590. weight: math.unit(100, "lb"),
  10591. name: "Anthro",
  10592. image: {
  10593. source: "./media/characters/scales/anthro.svg",
  10594. extra: 1,
  10595. bottom: 0.06
  10596. }
  10597. },
  10598. },
  10599. [
  10600. {
  10601. name: "Normal",
  10602. height: math.unit(12, "feet"),
  10603. default: true
  10604. },
  10605. ]
  10606. ))
  10607. characterMakers.push(() => makeCharacter(
  10608. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10609. {
  10610. front: {
  10611. height: math.unit(6, "feet"),
  10612. weight: math.unit(150, "lb"),
  10613. name: "Front",
  10614. image: {
  10615. source: "./media/characters/koragos/front.svg",
  10616. extra: 841 / 794,
  10617. bottom: 0.035
  10618. }
  10619. },
  10620. back: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(150, "lb"),
  10623. name: "Back",
  10624. image: {
  10625. source: "./media/characters/koragos/back.svg",
  10626. extra: 841 / 810,
  10627. bottom: 0.022
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Normal",
  10634. height: math.unit(6 + 11 / 12, "feet"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Macro",
  10639. height: math.unit(490, "feet")
  10640. },
  10641. {
  10642. name: "Megamacro",
  10643. height: math.unit(10, "miles")
  10644. },
  10645. {
  10646. name: "Gigamacro",
  10647. height: math.unit(50, "miles")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(250, "lb"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/xylrem/front.svg",
  10660. extra: 3323 / 3050,
  10661. bottom: 0.065
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Micro",
  10668. height: math.unit(4, "feet")
  10669. },
  10670. {
  10671. name: "Normal",
  10672. height: math.unit(16, "feet"),
  10673. default: true
  10674. },
  10675. {
  10676. name: "Macro",
  10677. height: math.unit(2720, "feet")
  10678. },
  10679. {
  10680. name: "Megamacro",
  10681. height: math.unit(25000, "miles")
  10682. },
  10683. ]
  10684. ))
  10685. characterMakers.push(() => makeCharacter(
  10686. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10687. {
  10688. front: {
  10689. height: math.unit(8, "feet"),
  10690. weight: math.unit(250, "kg"),
  10691. name: "Front",
  10692. image: {
  10693. source: "./media/characters/ikideru/front.svg",
  10694. extra: 930 / 870,
  10695. bottom: 0.087
  10696. }
  10697. },
  10698. back: {
  10699. height: math.unit(8, "feet"),
  10700. weight: math.unit(250, "kg"),
  10701. name: "Back",
  10702. image: {
  10703. source: "./media/characters/ikideru/back.svg",
  10704. extra: 919 / 852,
  10705. bottom: 0.055
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Rare",
  10712. height: math.unit(8, "feet"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Playful Loom",
  10717. height: math.unit(80, "feet")
  10718. },
  10719. {
  10720. name: "City Leaner",
  10721. height: math.unit(230, "feet")
  10722. },
  10723. {
  10724. name: "Megamacro",
  10725. height: math.unit(2500, "feet")
  10726. },
  10727. {
  10728. name: "Gigamacro",
  10729. height: math.unit(26400, "feet")
  10730. },
  10731. {
  10732. name: "Tectonic Shifter",
  10733. height: math.unit(1.7, "megameters")
  10734. },
  10735. {
  10736. name: "Planet Carer",
  10737. height: math.unit(21, "megameters")
  10738. },
  10739. {
  10740. name: "God",
  10741. height: math.unit(11157.22, "parsecs")
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(120, "lb"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/neo/front.svg"
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Micro",
  10760. height: math.unit(2, "inches"),
  10761. default: true
  10762. },
  10763. {
  10764. name: "Human Size",
  10765. height: math.unit(5 + 8 / 12, "feet")
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(13 + 10 / 12, "feet"),
  10774. weight: math.unit(5320, "lb"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/chauncey-chantz/front.svg",
  10778. extra: 1587 / 1435,
  10779. bottom: 0.02
  10780. }
  10781. },
  10782. },
  10783. [
  10784. {
  10785. name: "Normal",
  10786. height: math.unit(13 + 10 / 12, "feet"),
  10787. default: true
  10788. },
  10789. {
  10790. name: "Macro",
  10791. height: math.unit(45, "feet")
  10792. },
  10793. {
  10794. name: "Megamacro",
  10795. height: math.unit(250, "miles")
  10796. },
  10797. {
  10798. name: "Planetary",
  10799. height: math.unit(10000, "miles")
  10800. },
  10801. {
  10802. name: "Galactic",
  10803. height: math.unit(40000, "parsecs")
  10804. },
  10805. {
  10806. name: "Universal",
  10807. height: math.unit(1, "yottameter")
  10808. },
  10809. ]
  10810. ))
  10811. characterMakers.push(() => makeCharacter(
  10812. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10813. {
  10814. front: {
  10815. height: math.unit(6, "feet"),
  10816. weight: math.unit(150, "lb"),
  10817. name: "Front",
  10818. image: {
  10819. source: "./media/characters/epifox/front.svg",
  10820. extra: 1,
  10821. bottom: 0.075
  10822. }
  10823. },
  10824. },
  10825. [
  10826. {
  10827. name: "Micro",
  10828. height: math.unit(6, "inches")
  10829. },
  10830. {
  10831. name: "Normal",
  10832. height: math.unit(12, "feet"),
  10833. default: true
  10834. },
  10835. {
  10836. name: "Macro",
  10837. height: math.unit(3810, "feet")
  10838. },
  10839. {
  10840. name: "Megamacro",
  10841. height: math.unit(500, "miles")
  10842. },
  10843. ]
  10844. ))
  10845. characterMakers.push(() => makeCharacter(
  10846. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10847. {
  10848. front: {
  10849. height: math.unit(1.8796, "m"),
  10850. weight: math.unit(230, "lb"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/colin-t/front.svg",
  10854. extra: 1272 / 1193,
  10855. bottom: 0.07
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Micro",
  10862. height: math.unit(0.571, "meters")
  10863. },
  10864. {
  10865. name: "Normal",
  10866. height: math.unit(1.8796, "meters"),
  10867. default: true
  10868. },
  10869. {
  10870. name: "Tall",
  10871. height: math.unit(4, "meters")
  10872. },
  10873. {
  10874. name: "Macro",
  10875. height: math.unit(67.241, "meters")
  10876. },
  10877. {
  10878. name: "Megamacro",
  10879. height: math.unit(371.856, "meters")
  10880. },
  10881. {
  10882. name: "Planetary",
  10883. height: math.unit(12631.5689, "km")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(1.85, "meters"),
  10892. weight: math.unit(80, "kg"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/matvei/front.svg",
  10896. extra: 614 / 594,
  10897. bottom: 0.01
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Normal",
  10904. height: math.unit(1.85, "meters"),
  10905. default: true
  10906. },
  10907. ]
  10908. ))
  10909. characterMakers.push(() => makeCharacter(
  10910. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10911. {
  10912. front: {
  10913. height: math.unit(5 + 9 / 12, "feet"),
  10914. weight: math.unit(70, "lb"),
  10915. name: "Front",
  10916. image: {
  10917. source: "./media/characters/quincy/front.svg",
  10918. extra: 3041 / 2751
  10919. }
  10920. },
  10921. back: {
  10922. height: math.unit(5 + 9 / 12, "feet"),
  10923. weight: math.unit(70, "lb"),
  10924. name: "Back",
  10925. image: {
  10926. source: "./media/characters/quincy/back.svg",
  10927. extra: 3041 / 2751
  10928. }
  10929. },
  10930. flying: {
  10931. height: math.unit(5 + 4 / 12, "feet"),
  10932. weight: math.unit(70, "lb"),
  10933. name: "Flying",
  10934. image: {
  10935. source: "./media/characters/quincy/flying.svg",
  10936. extra: 1044 / 930
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Micro",
  10943. height: math.unit(3, "cm")
  10944. },
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(5 + 9 / 12, "feet")
  10948. },
  10949. {
  10950. name: "Macro",
  10951. height: math.unit(200, "meters"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Megamacro",
  10956. height: math.unit(1000, "meters")
  10957. },
  10958. ]
  10959. ))
  10960. characterMakers.push(() => makeCharacter(
  10961. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10962. {
  10963. front: {
  10964. height: math.unit(4 + 7 / 12, "feet"),
  10965. weight: math.unit(150, "lb"),
  10966. name: "Front",
  10967. image: {
  10968. source: "./media/characters/vanrel/front.svg",
  10969. extra: 1,
  10970. bottom: 0.02
  10971. }
  10972. },
  10973. elemental: {
  10974. height: math.unit(3, "feet"),
  10975. weight: math.unit(150, "lb"),
  10976. name: "Elemental",
  10977. image: {
  10978. source: "./media/characters/vanrel/elemental.svg",
  10979. extra: 192.3 / 162.8,
  10980. bottom: 1.79 / 194.17
  10981. }
  10982. },
  10983. side: {
  10984. height: math.unit(4 + 7 / 12, "feet"),
  10985. weight: math.unit(150, "lb"),
  10986. name: "Side",
  10987. image: {
  10988. source: "./media/characters/vanrel/side.svg",
  10989. extra: 1,
  10990. bottom: 0.025
  10991. }
  10992. },
  10993. tome: {
  10994. height: math.unit(1.35, "feet"),
  10995. weight: math.unit(10, "lb"),
  10996. name: "Vanrel's Tome",
  10997. rename: true,
  10998. image: {
  10999. source: "./media/characters/vanrel/tome.svg"
  11000. }
  11001. },
  11002. beans: {
  11003. height: math.unit(0.89, "feet"),
  11004. name: "Beans",
  11005. image: {
  11006. source: "./media/characters/vanrel/beans.svg"
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Normal",
  11013. height: math.unit(4 + 7 / 12, "feet"),
  11014. default: true
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(7 + 5 / 12, "feet"),
  11023. weight: math.unit(150, "lb"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/kuiper-vanrel/front.svg",
  11027. extra: 1118 / 1068,
  11028. bottom: 0.09
  11029. }
  11030. },
  11031. foot: {
  11032. height: math.unit(0.55, "meters"),
  11033. name: "Foot",
  11034. image: {
  11035. source: "./media/characters/kuiper-vanrel/foot.svg",
  11036. }
  11037. },
  11038. battle: {
  11039. height: math.unit(6.824, "feet"),
  11040. weight: math.unit(150, "lb"),
  11041. name: "Battle",
  11042. image: {
  11043. source: "./media/characters/kuiper-vanrel/battle.svg",
  11044. extra: 1466 / 1327,
  11045. bottom: 29 / 1492.5
  11046. }
  11047. },
  11048. },
  11049. [
  11050. {
  11051. name: "Normal",
  11052. height: math.unit(7 + 5 / 12, "feet"),
  11053. default: true
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11059. {
  11060. front: {
  11061. height: math.unit(8 + 5 / 12, "feet"),
  11062. weight: math.unit(150, "lb"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/keset-vanrel/front.svg",
  11066. extra: 1150 / 1084,
  11067. bottom: 0.05
  11068. }
  11069. },
  11070. hand: {
  11071. height: math.unit(0.6, "meters"),
  11072. name: "Hand",
  11073. image: {
  11074. source: "./media/characters/keset-vanrel/hand.svg"
  11075. }
  11076. },
  11077. foot: {
  11078. height: math.unit(0.94978, "meters"),
  11079. name: "Foot",
  11080. image: {
  11081. source: "./media/characters/keset-vanrel/foot.svg"
  11082. }
  11083. },
  11084. battle: {
  11085. height: math.unit(7.408, "feet"),
  11086. weight: math.unit(150, "lb"),
  11087. name: "Battle",
  11088. image: {
  11089. source: "./media/characters/keset-vanrel/battle.svg",
  11090. extra: 1890 / 1386,
  11091. bottom: 73.28 / 1970
  11092. }
  11093. },
  11094. },
  11095. [
  11096. {
  11097. name: "Normal",
  11098. height: math.unit(8 + 5 / 12, "feet"),
  11099. default: true
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(150, "lb"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/neos/front.svg",
  11112. extra: 1696 / 992,
  11113. bottom: 0.14
  11114. }
  11115. },
  11116. },
  11117. [
  11118. {
  11119. name: "Normal",
  11120. height: math.unit(54, "cm"),
  11121. default: true
  11122. },
  11123. {
  11124. name: "Macro",
  11125. height: math.unit(100, "m")
  11126. },
  11127. {
  11128. name: "Megamacro",
  11129. height: math.unit(10, "km")
  11130. },
  11131. {
  11132. name: "Megamacro+",
  11133. height: math.unit(100, "km")
  11134. },
  11135. {
  11136. name: "Gigamacro",
  11137. height: math.unit(100, "Mm")
  11138. },
  11139. {
  11140. name: "Teramacro",
  11141. height: math.unit(100, "Gm")
  11142. },
  11143. {
  11144. name: "Examacro",
  11145. height: math.unit(100, "Em")
  11146. },
  11147. {
  11148. name: "Godly",
  11149. height: math.unit(10000, "Ym")
  11150. },
  11151. {
  11152. name: "Beyond Godly",
  11153. height: math.unit(25, "multiverses")
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11159. {
  11160. feminine: {
  11161. height: math.unit(5, "feet"),
  11162. weight: math.unit(100, "lb"),
  11163. name: "Feminine",
  11164. image: {
  11165. source: "./media/characters/sammy-mouse/feminine.svg",
  11166. extra: 2526 / 2425,
  11167. bottom: 0.123
  11168. }
  11169. },
  11170. masculine: {
  11171. height: math.unit(5, "feet"),
  11172. weight: math.unit(100, "lb"),
  11173. name: "Masculine",
  11174. image: {
  11175. source: "./media/characters/sammy-mouse/masculine.svg",
  11176. extra: 2526 / 2425,
  11177. bottom: 0.123
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Micro",
  11184. height: math.unit(5, "inches")
  11185. },
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(5, "feet"),
  11189. default: true
  11190. },
  11191. {
  11192. name: "Macro",
  11193. height: math.unit(60, "feet")
  11194. },
  11195. ]
  11196. ))
  11197. characterMakers.push(() => makeCharacter(
  11198. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11199. {
  11200. front: {
  11201. height: math.unit(4, "feet"),
  11202. weight: math.unit(50, "lb"),
  11203. name: "Front",
  11204. image: {
  11205. source: "./media/characters/kole/front.svg",
  11206. extra: 1423 / 1303,
  11207. bottom: 0.025
  11208. }
  11209. },
  11210. back: {
  11211. height: math.unit(4, "feet"),
  11212. weight: math.unit(50, "lb"),
  11213. name: "Back",
  11214. image: {
  11215. source: "./media/characters/kole/back.svg",
  11216. extra: 1426 / 1280,
  11217. bottom: 0.02
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(4, "feet"),
  11225. default: true
  11226. },
  11227. ]
  11228. ))
  11229. characterMakers.push(() => makeCharacter(
  11230. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11231. {
  11232. front: {
  11233. height: math.unit(2 + 6 / 12, "feet"),
  11234. weight: math.unit(20, "lb"),
  11235. name: "Front",
  11236. image: {
  11237. source: "./media/characters/rufran/front.svg",
  11238. extra: 2041 / 1839,
  11239. bottom: 0.055
  11240. }
  11241. },
  11242. back: {
  11243. height: math.unit(2 + 6 / 12, "feet"),
  11244. weight: math.unit(20, "lb"),
  11245. name: "Back",
  11246. image: {
  11247. source: "./media/characters/rufran/back.svg",
  11248. extra: 2054 / 1839,
  11249. bottom: 0.01
  11250. }
  11251. },
  11252. hand: {
  11253. height: math.unit(0.2166, "meters"),
  11254. name: "Hand",
  11255. image: {
  11256. source: "./media/characters/rufran/hand.svg"
  11257. }
  11258. },
  11259. foot: {
  11260. height: math.unit(0.185, "meters"),
  11261. name: "Foot",
  11262. image: {
  11263. source: "./media/characters/rufran/foot.svg"
  11264. }
  11265. },
  11266. },
  11267. [
  11268. {
  11269. name: "Micro",
  11270. height: math.unit(1, "inch")
  11271. },
  11272. {
  11273. name: "Normal",
  11274. height: math.unit(2 + 6 / 12, "feet"),
  11275. default: true
  11276. },
  11277. {
  11278. name: "Big",
  11279. height: math.unit(60, "feet")
  11280. },
  11281. {
  11282. name: "Macro",
  11283. height: math.unit(325, "feet")
  11284. },
  11285. ]
  11286. ))
  11287. characterMakers.push(() => makeCharacter(
  11288. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11289. {
  11290. front: {
  11291. height: math.unit(0.3, "meters"),
  11292. weight: math.unit(3.5, "kg"),
  11293. name: "Front",
  11294. image: {
  11295. source: "./media/characters/chip/front.svg",
  11296. extra: 748 / 674
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Micro",
  11303. height: math.unit(1, "inch"),
  11304. default: true
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11310. {
  11311. side: {
  11312. height: math.unit(2.3, "meters"),
  11313. weight: math.unit(3500, "lb"),
  11314. name: "Side",
  11315. image: {
  11316. source: "./media/characters/torvid/side.svg",
  11317. extra: 1972 / 722,
  11318. bottom: 0.035
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(2.3, "meters"),
  11326. default: true
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(2, "meters"),
  11335. weight: math.unit(150.5, "kg"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/susan/front.svg",
  11339. extra: 693 / 635,
  11340. bottom: 0.05
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Megamacro",
  11347. height: math.unit(505, "miles"),
  11348. default: true
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(6, "feet"),
  11357. weight: math.unit(150, "lb"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/raindrops/front.svg",
  11361. extra: 2655 / 2461,
  11362. bottom: 0.02
  11363. }
  11364. },
  11365. back: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(150, "lb"),
  11368. name: "Back",
  11369. image: {
  11370. source: "./media/characters/raindrops/back.svg",
  11371. extra: 2574 / 2400,
  11372. bottom: 0.03
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Micro",
  11379. height: math.unit(6, "inches")
  11380. },
  11381. {
  11382. name: "Normal",
  11383. height: math.unit(6 + 2 / 12, "feet")
  11384. },
  11385. {
  11386. name: "Macro",
  11387. height: math.unit(131, "feet"),
  11388. default: true
  11389. },
  11390. {
  11391. name: "Megamacro",
  11392. height: math.unit(15, "miles")
  11393. },
  11394. {
  11395. name: "Gigamacro",
  11396. height: math.unit(4000, "miles")
  11397. },
  11398. {
  11399. name: "Teramacro",
  11400. height: math.unit(315000, "miles")
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11406. {
  11407. front: {
  11408. height: math.unit(2.794, "meters"),
  11409. weight: math.unit(325, "kg"),
  11410. name: "Front",
  11411. image: {
  11412. source: "./media/characters/tezwa/front.svg",
  11413. extra: 2083 / 1906,
  11414. bottom: 0.031
  11415. }
  11416. },
  11417. foot: {
  11418. height: math.unit(0.687, "meters"),
  11419. name: "Foot",
  11420. image: {
  11421. source: "./media/characters/tezwa/foot.svg"
  11422. }
  11423. },
  11424. },
  11425. [
  11426. {
  11427. name: "Normal",
  11428. height: math.unit(9 + 2 / 12, "feet"),
  11429. default: true
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11435. {
  11436. front: {
  11437. height: math.unit(58, "feet"),
  11438. weight: math.unit(89000, "lb"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/typhus/front.svg",
  11442. extra: 816 / 800,
  11443. bottom: 0.065
  11444. }
  11445. },
  11446. },
  11447. [
  11448. {
  11449. name: "Macro",
  11450. height: math.unit(58, "feet"),
  11451. default: true
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(12, "feet"),
  11460. weight: math.unit(6, "tonnes"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/lyra-von-wulf/front.svg",
  11464. extra: 1,
  11465. bottom: 0.10
  11466. }
  11467. },
  11468. frontMecha: {
  11469. height: math.unit(12, "feet"),
  11470. weight: math.unit(12, "tonnes"),
  11471. name: "Front (Mecha)",
  11472. image: {
  11473. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11474. extra: 1,
  11475. bottom: 0.042
  11476. }
  11477. },
  11478. maw: {
  11479. height: math.unit(2.2, "feet"),
  11480. name: "Maw",
  11481. image: {
  11482. source: "./media/characters/lyra-von-wulf/maw.svg"
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(12, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Classic",
  11494. height: math.unit(50, "feet")
  11495. },
  11496. {
  11497. name: "Macro",
  11498. height: math.unit(500, "feet")
  11499. },
  11500. {
  11501. name: "Megamacro",
  11502. height: math.unit(1, "mile")
  11503. },
  11504. {
  11505. name: "Gigamacro",
  11506. height: math.unit(400, "miles")
  11507. },
  11508. {
  11509. name: "Teramacro",
  11510. height: math.unit(22000, "miles")
  11511. },
  11512. {
  11513. name: "Solarmacro",
  11514. height: math.unit(8600000, "miles")
  11515. },
  11516. {
  11517. name: "Galactic",
  11518. height: math.unit(1057000, "lightyears")
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(6 + 10 / 12, "feet"),
  11527. weight: math.unit(150, "lb"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/dixon/front.svg",
  11531. extra: 3361 / 3209,
  11532. bottom: 0.01
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(6 + 10 / 12, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Big",
  11544. height: math.unit(12, "meters")
  11545. },
  11546. {
  11547. name: "Macro",
  11548. height: math.unit(500, "meters")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(2, "km")
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11558. {
  11559. front: {
  11560. height: math.unit(185, "cm"),
  11561. weight: math.unit(68, "kg"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/kauko/front.svg",
  11565. extra: 1455 / 1421,
  11566. bottom: 0.03
  11567. }
  11568. },
  11569. back: {
  11570. height: math.unit(185, "cm"),
  11571. weight: math.unit(68, "kg"),
  11572. name: "Back",
  11573. image: {
  11574. source: "./media/characters/kauko/back.svg",
  11575. extra: 1455 / 1421,
  11576. bottom: 0.004
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(185, "cm"),
  11584. default: true
  11585. },
  11586. ]
  11587. ))
  11588. characterMakers.push(() => makeCharacter(
  11589. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11590. {
  11591. front: {
  11592. height: math.unit(6, "feet"),
  11593. weight: math.unit(150, "kg"),
  11594. name: "Front",
  11595. image: {
  11596. source: "./media/characters/varg/front.svg",
  11597. extra: 1108 / 1018,
  11598. bottom: 0.0375
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(5, "meters")
  11606. },
  11607. {
  11608. name: "Macro",
  11609. height: math.unit(200, "meters")
  11610. },
  11611. {
  11612. name: "Megamacro",
  11613. height: math.unit(20, "kilometers")
  11614. },
  11615. {
  11616. name: "True Size",
  11617. height: math.unit(211, "km"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Gigamacro",
  11622. height: math.unit(1000, "km")
  11623. },
  11624. {
  11625. name: "Gigamacro+",
  11626. height: math.unit(8000, "km")
  11627. },
  11628. {
  11629. name: "Teramacro",
  11630. height: math.unit(1000000, "km")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11636. {
  11637. front: {
  11638. height: math.unit(7 + 7 / 12, "feet"),
  11639. weight: math.unit(267, "lb"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/dayza/front.svg",
  11643. extra: 1262 / 1200,
  11644. bottom: 0.035
  11645. }
  11646. },
  11647. side: {
  11648. height: math.unit(7 + 7 / 12, "feet"),
  11649. weight: math.unit(267, "lb"),
  11650. name: "Side",
  11651. image: {
  11652. source: "./media/characters/dayza/side.svg",
  11653. extra: 1295 / 1245,
  11654. bottom: 0.05
  11655. }
  11656. },
  11657. back: {
  11658. height: math.unit(7 + 7 / 12, "feet"),
  11659. weight: math.unit(267, "lb"),
  11660. name: "Back",
  11661. image: {
  11662. source: "./media/characters/dayza/back.svg",
  11663. extra: 1241 / 1170
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(7 + 7 / 12, "feet"),
  11671. default: true
  11672. },
  11673. {
  11674. name: "Macro",
  11675. height: math.unit(155, "feet")
  11676. },
  11677. ]
  11678. ))
  11679. characterMakers.push(() => makeCharacter(
  11680. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11681. {
  11682. front: {
  11683. height: math.unit(6 + 5 / 12, "feet"),
  11684. weight: math.unit(160, "lb"),
  11685. name: "Front",
  11686. image: {
  11687. source: "./media/characters/xanthos/front.svg",
  11688. extra: 1,
  11689. bottom: 0.04
  11690. }
  11691. },
  11692. back: {
  11693. height: math.unit(6 + 5 / 12, "feet"),
  11694. weight: math.unit(160, "lb"),
  11695. name: "Back",
  11696. image: {
  11697. source: "./media/characters/xanthos/back.svg",
  11698. extra: 1,
  11699. bottom: 0.03
  11700. }
  11701. },
  11702. hand: {
  11703. height: math.unit(0.928, "feet"),
  11704. name: "Hand",
  11705. image: {
  11706. source: "./media/characters/xanthos/hand.svg"
  11707. }
  11708. },
  11709. foot: {
  11710. height: math.unit(1.286, "feet"),
  11711. name: "Foot",
  11712. image: {
  11713. source: "./media/characters/xanthos/foot.svg"
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(6 + 5 / 12, "feet"),
  11721. default: true
  11722. },
  11723. {
  11724. name: "Normal+",
  11725. height: math.unit(6, "meters")
  11726. },
  11727. {
  11728. name: "Macro",
  11729. height: math.unit(40, "feet")
  11730. },
  11731. {
  11732. name: "Macro+",
  11733. height: math.unit(200, "meters")
  11734. },
  11735. {
  11736. name: "Megamacro",
  11737. height: math.unit(20, "km")
  11738. },
  11739. {
  11740. name: "Megamacro+",
  11741. height: math.unit(100, "km")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(6 + 3 / 12, "feet"),
  11750. weight: math.unit(215, "lb"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/grynn/front.svg",
  11754. extra: 4627 / 4209,
  11755. bottom: 0.047
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Micro",
  11762. height: math.unit(6, "inches")
  11763. },
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(6 + 3 / 12, "feet"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Big",
  11771. height: math.unit(104, "feet")
  11772. },
  11773. {
  11774. name: "Macro",
  11775. height: math.unit(944, "feet")
  11776. },
  11777. {
  11778. name: "Macro+",
  11779. height: math.unit(9480, "feet")
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(78752, "feet")
  11784. },
  11785. {
  11786. name: "Megamacro+",
  11787. height: math.unit(630128, "feet")
  11788. },
  11789. {
  11790. name: "Megamacro++",
  11791. height: math.unit(3150695, "feet")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11797. {
  11798. front: {
  11799. height: math.unit(7 + 5 / 12, "feet"),
  11800. weight: math.unit(450, "lb"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/mocha-aura/front.svg",
  11804. extra: 1907 / 1817,
  11805. bottom: 0.04
  11806. }
  11807. },
  11808. back: {
  11809. height: math.unit(7 + 5 / 12, "feet"),
  11810. weight: math.unit(450, "lb"),
  11811. name: "Back",
  11812. image: {
  11813. source: "./media/characters/mocha-aura/back.svg",
  11814. extra: 1900 / 1825,
  11815. bottom: 0.045
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Nano",
  11822. height: math.unit(1, "nm")
  11823. },
  11824. {
  11825. name: "Megamicro",
  11826. height: math.unit(1, "mm")
  11827. },
  11828. {
  11829. name: "Micro",
  11830. height: math.unit(3, "inches")
  11831. },
  11832. {
  11833. name: "Normal",
  11834. height: math.unit(7 + 5 / 12, "feet"),
  11835. default: true
  11836. },
  11837. {
  11838. name: "Macro",
  11839. height: math.unit(30, "feet")
  11840. },
  11841. {
  11842. name: "Megamacro",
  11843. height: math.unit(3500, "feet")
  11844. },
  11845. {
  11846. name: "Teramacro",
  11847. height: math.unit(500000, "miles")
  11848. },
  11849. {
  11850. name: "Petamacro",
  11851. height: math.unit(50000000000000000, "parsecs")
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(150, "lb"),
  11861. name: "Front",
  11862. image: {
  11863. source: "./media/characters/ilisha-devya/front.svg",
  11864. extra: 1,
  11865. bottom: 0.175
  11866. }
  11867. },
  11868. back: {
  11869. height: math.unit(6, "feet"),
  11870. weight: math.unit(150, "lb"),
  11871. name: "Back",
  11872. image: {
  11873. source: "./media/characters/ilisha-devya/back.svg",
  11874. extra: 1,
  11875. bottom: 0.015
  11876. }
  11877. },
  11878. },
  11879. [
  11880. {
  11881. name: "Macro",
  11882. height: math.unit(500, "feet"),
  11883. default: true
  11884. },
  11885. {
  11886. name: "Megamacro",
  11887. height: math.unit(10, "miles")
  11888. },
  11889. {
  11890. name: "Gigamacro",
  11891. height: math.unit(100000, "miles")
  11892. },
  11893. {
  11894. name: "Examacro",
  11895. height: math.unit(1e9, "lightyears")
  11896. },
  11897. {
  11898. name: "Omniversal",
  11899. height: math.unit(1e33, "lightyears")
  11900. },
  11901. {
  11902. name: "Beyond Infinite",
  11903. height: math.unit(1e100, "lightyears")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11909. {
  11910. Side: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(150, "lb"),
  11913. name: "Side",
  11914. image: {
  11915. source: "./media/characters/mira/side.svg",
  11916. extra: 900 / 799,
  11917. bottom: 0.02
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Human Size",
  11924. height: math.unit(6, "feet")
  11925. },
  11926. {
  11927. name: "Macro",
  11928. height: math.unit(100, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Megamacro",
  11933. height: math.unit(10, "miles")
  11934. },
  11935. {
  11936. name: "Gigamacro",
  11937. height: math.unit(25000, "miles")
  11938. },
  11939. {
  11940. name: "Teramacro",
  11941. height: math.unit(300, "AU")
  11942. },
  11943. {
  11944. name: "Full Size",
  11945. height: math.unit(4.5e10, "lightyears")
  11946. },
  11947. ]
  11948. ))
  11949. characterMakers.push(() => makeCharacter(
  11950. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11951. {
  11952. front: {
  11953. height: math.unit(6, "feet"),
  11954. weight: math.unit(150, "lb"),
  11955. name: "Front",
  11956. image: {
  11957. source: "./media/characters/holly/front.svg",
  11958. extra: 639 / 606
  11959. }
  11960. },
  11961. back: {
  11962. height: math.unit(6, "feet"),
  11963. weight: math.unit(150, "lb"),
  11964. name: "Back",
  11965. image: {
  11966. source: "./media/characters/holly/back.svg",
  11967. extra: 623 / 598
  11968. }
  11969. },
  11970. frontWorking: {
  11971. height: math.unit(6, "feet"),
  11972. weight: math.unit(150, "lb"),
  11973. name: "Front (Working)",
  11974. image: {
  11975. source: "./media/characters/holly/front-working.svg",
  11976. extra: 607 / 577,
  11977. bottom: 0.048
  11978. }
  11979. },
  11980. },
  11981. [
  11982. {
  11983. name: "Normal",
  11984. height: math.unit(12 + 3 / 12, "feet"),
  11985. default: true
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11991. {
  11992. front: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(150, "lb"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/porter/front.svg",
  11998. extra: 1,
  11999. bottom: 0.01
  12000. }
  12001. },
  12002. frontRobes: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(150, "lb"),
  12005. name: "Front (Robes)",
  12006. image: {
  12007. source: "./media/characters/porter/front-robes.svg",
  12008. extra: 1.01,
  12009. bottom: 0.01
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Normal",
  12016. height: math.unit(11 + 9 / 12, "feet"),
  12017. default: true
  12018. },
  12019. ]
  12020. ))
  12021. characterMakers.push(() => makeCharacter(
  12022. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12023. {
  12024. legendary: {
  12025. height: math.unit(6, "feet"),
  12026. weight: math.unit(150, "lb"),
  12027. name: "Legendary",
  12028. image: {
  12029. source: "./media/characters/lucy/legendary.svg",
  12030. extra: 1355 / 1100,
  12031. bottom: 0.045
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Legendary",
  12038. height: math.unit(86882 * 2, "miles"),
  12039. default: true
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(150, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/drusilla/front.svg",
  12052. extra: 678 / 635,
  12053. bottom: 0.03
  12054. }
  12055. },
  12056. back: {
  12057. height: math.unit(6, "feet"),
  12058. weight: math.unit(150, "lb"),
  12059. name: "Back",
  12060. image: {
  12061. source: "./media/characters/drusilla/back.svg",
  12062. extra: 678 / 635,
  12063. bottom: 0.005
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Macro",
  12070. height: math.unit(100, "feet")
  12071. },
  12072. {
  12073. name: "Canon Height",
  12074. height: math.unit(2000, "feet"),
  12075. default: true
  12076. },
  12077. ]
  12078. ))
  12079. characterMakers.push(() => makeCharacter(
  12080. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12081. {
  12082. front: {
  12083. height: math.unit(6, "feet"),
  12084. weight: math.unit(180, "lb"),
  12085. name: "Front",
  12086. image: {
  12087. source: "./media/characters/renard-thatch/front.svg",
  12088. extra: 2411 / 2275,
  12089. bottom: 0.01
  12090. }
  12091. },
  12092. frontPosing: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(180, "lb"),
  12095. name: "Front (Posing)",
  12096. image: {
  12097. source: "./media/characters/renard-thatch/front-posing.svg",
  12098. extra: 2381 / 2261,
  12099. bottom: 0.01
  12100. }
  12101. },
  12102. back: {
  12103. height: math.unit(6, "feet"),
  12104. weight: math.unit(180, "lb"),
  12105. name: "Back",
  12106. image: {
  12107. source: "./media/characters/renard-thatch/back.svg",
  12108. extra: 2428 / 2288
  12109. }
  12110. },
  12111. },
  12112. [
  12113. {
  12114. name: "Micro",
  12115. height: math.unit(3, "inches")
  12116. },
  12117. {
  12118. name: "Default",
  12119. height: math.unit(6, "feet"),
  12120. default: true
  12121. },
  12122. {
  12123. name: "Macro",
  12124. height: math.unit(75, "feet")
  12125. },
  12126. ]
  12127. ))
  12128. characterMakers.push(() => makeCharacter(
  12129. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12130. {
  12131. front: {
  12132. height: math.unit(1450, "feet"),
  12133. weight: math.unit(1.21e6, "tons"),
  12134. name: "Front",
  12135. image: {
  12136. source: "./media/characters/sekvra/front.svg",
  12137. extra: 1,
  12138. bottom: 0.03
  12139. }
  12140. },
  12141. frontClothed: {
  12142. height: math.unit(1450, "feet"),
  12143. weight: math.unit(1.21e6, "tons"),
  12144. name: "Front (Clothed)",
  12145. image: {
  12146. source: "./media/characters/sekvra/front-clothed.svg",
  12147. extra: 1,
  12148. bottom: 0.03
  12149. }
  12150. },
  12151. side: {
  12152. height: math.unit(1450, "feet"),
  12153. weight: math.unit(1.21e6, "tons"),
  12154. name: "Side",
  12155. image: {
  12156. source: "./media/characters/sekvra/side.svg",
  12157. extra: 1,
  12158. bottom: 0.025
  12159. }
  12160. },
  12161. back: {
  12162. height: math.unit(1450, "feet"),
  12163. weight: math.unit(1.21e6, "tons"),
  12164. name: "Back",
  12165. image: {
  12166. source: "./media/characters/sekvra/back.svg",
  12167. extra: 1,
  12168. bottom: 0.005
  12169. }
  12170. },
  12171. },
  12172. [
  12173. {
  12174. name: "Macro",
  12175. height: math.unit(1450, "feet"),
  12176. default: true
  12177. },
  12178. {
  12179. name: "Megamacro",
  12180. height: math.unit(15000, "feet")
  12181. },
  12182. ]
  12183. ))
  12184. characterMakers.push(() => makeCharacter(
  12185. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12186. {
  12187. front: {
  12188. height: math.unit(6, "feet"),
  12189. weight: math.unit(150, "lb"),
  12190. name: "Front",
  12191. image: {
  12192. source: "./media/characters/carmine/front.svg",
  12193. extra: 1,
  12194. bottom: 0.035
  12195. }
  12196. },
  12197. frontArmor: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(150, "lb"),
  12200. name: "Front (Armor)",
  12201. image: {
  12202. source: "./media/characters/carmine/front-armor.svg",
  12203. extra: 1,
  12204. bottom: 0.035
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Large",
  12211. height: math.unit(1, "mile")
  12212. },
  12213. {
  12214. name: "Huge",
  12215. height: math.unit(40, "miles"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Colossal",
  12220. height: math.unit(2500, "miles")
  12221. },
  12222. ]
  12223. ))
  12224. characterMakers.push(() => makeCharacter(
  12225. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12226. {
  12227. front: {
  12228. height: math.unit(6, "feet"),
  12229. weight: math.unit(150, "lb"),
  12230. name: "Front",
  12231. image: {
  12232. source: "./media/characters/elyssia/front.svg",
  12233. extra: 2201 / 2035,
  12234. bottom: 0.05
  12235. }
  12236. },
  12237. frontClothed: {
  12238. height: math.unit(6, "feet"),
  12239. weight: math.unit(150, "lb"),
  12240. name: "Front (Clothed)",
  12241. image: {
  12242. source: "./media/characters/elyssia/front-clothed.svg",
  12243. extra: 2201 / 2035,
  12244. bottom: 0.05
  12245. }
  12246. },
  12247. back: {
  12248. height: math.unit(6, "feet"),
  12249. weight: math.unit(150, "lb"),
  12250. name: "Back",
  12251. image: {
  12252. source: "./media/characters/elyssia/back.svg",
  12253. extra: 2201 / 2035,
  12254. bottom: 0.013
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Smaller",
  12261. height: math.unit(150, "feet")
  12262. },
  12263. {
  12264. name: "Standard",
  12265. height: math.unit(1400, "feet"),
  12266. default: true
  12267. },
  12268. {
  12269. name: "Distracted",
  12270. height: math.unit(15000, "feet")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(7 + 4 / 12, "feet"),
  12279. weight: math.unit(500, "lb"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/geno-maxwell/front.svg",
  12283. extra: 2207 / 2040,
  12284. bottom: 0.015
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Micro",
  12291. height: math.unit(3, "inches")
  12292. },
  12293. {
  12294. name: "Normal",
  12295. height: math.unit(7 + 4 / 12, "feet"),
  12296. default: true
  12297. },
  12298. {
  12299. name: "Macro",
  12300. height: math.unit(220, "feet")
  12301. },
  12302. {
  12303. name: "Megamacro",
  12304. height: math.unit(11, "miles")
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12310. {
  12311. front: {
  12312. height: math.unit(7 + 4 / 12, "feet"),
  12313. weight: math.unit(500, "lb"),
  12314. name: "Front",
  12315. image: {
  12316. source: "./media/characters/regena-maxwell/front.svg",
  12317. extra: 3115 / 2770,
  12318. bottom: 0.02
  12319. }
  12320. },
  12321. },
  12322. [
  12323. {
  12324. name: "Normal",
  12325. height: math.unit(7 + 4 / 12, "feet"),
  12326. default: true
  12327. },
  12328. {
  12329. name: "Macro",
  12330. height: math.unit(220, "feet")
  12331. },
  12332. {
  12333. name: "Megamacro",
  12334. height: math.unit(11, "miles")
  12335. },
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12340. {
  12341. front: {
  12342. height: math.unit(6, "feet"),
  12343. weight: math.unit(150, "lb"),
  12344. name: "Front",
  12345. image: {
  12346. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12347. extra: 860 / 690,
  12348. bottom: 0.03
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Normal",
  12355. height: math.unit(1.7, "meters"),
  12356. default: true
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(150, "lb"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/quilly/front.svg",
  12369. extra: 890 / 776
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Gigamacro",
  12376. height: math.unit(404090, "miles"),
  12377. default: true
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12383. {
  12384. front: {
  12385. height: math.unit(7 + 8 / 12, "feet"),
  12386. weight: math.unit(350, "lb"),
  12387. name: "Front",
  12388. image: {
  12389. source: "./media/characters/tempest/front.svg",
  12390. extra: 1175 / 1086,
  12391. bottom: 0.02
  12392. }
  12393. },
  12394. },
  12395. [
  12396. {
  12397. name: "Normal",
  12398. height: math.unit(7 + 8 / 12, "feet"),
  12399. default: true
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12405. {
  12406. side: {
  12407. height: math.unit(4 + 5 / 12, "feet"),
  12408. weight: math.unit(80, "lb"),
  12409. name: "Side",
  12410. image: {
  12411. source: "./media/characters/rodger/side.svg",
  12412. extra: 1235 / 1118
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Micro",
  12419. height: math.unit(1, "inch")
  12420. },
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(4 + 5 / 12, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(120, "feet")
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12434. {
  12435. front: {
  12436. height: math.unit(6, "feet"),
  12437. weight: math.unit(150, "lb"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/danyel/front.svg",
  12441. extra: 1185 / 1123,
  12442. bottom: 0.05
  12443. }
  12444. },
  12445. },
  12446. [
  12447. {
  12448. name: "Shrunken",
  12449. height: math.unit(0.5, "mm")
  12450. },
  12451. {
  12452. name: "Micro",
  12453. height: math.unit(1, "mm"),
  12454. default: true
  12455. },
  12456. {
  12457. name: "Upsized",
  12458. height: math.unit(5 + 5 / 12, "feet")
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(5 + 6 / 12, "feet"),
  12467. weight: math.unit(200, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/vivian-bijoux/front.svg",
  12471. extra: 1,
  12472. bottom: 0.072
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Normal",
  12479. height: math.unit(5 + 6 / 12, "feet"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Bad Dream",
  12484. height: math.unit(500, "feet")
  12485. },
  12486. {
  12487. name: "Nightmare",
  12488. height: math.unit(500, "miles")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(6 + 1 / 12, "feet"),
  12497. weight: math.unit(260, "lb"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/zeta/front.svg",
  12501. extra: 1968 / 1889,
  12502. bottom: 0.06
  12503. }
  12504. },
  12505. back: {
  12506. height: math.unit(6 + 1 / 12, "feet"),
  12507. weight: math.unit(260, "lb"),
  12508. name: "Back",
  12509. image: {
  12510. source: "./media/characters/zeta/back.svg",
  12511. extra: 1944 / 1858,
  12512. bottom: 0.03
  12513. }
  12514. },
  12515. hand: {
  12516. height: math.unit(1.112, "feet"),
  12517. name: "Hand",
  12518. image: {
  12519. source: "./media/characters/zeta/hand.svg"
  12520. }
  12521. },
  12522. foot: {
  12523. height: math.unit(1.48, "feet"),
  12524. name: "Foot",
  12525. image: {
  12526. source: "./media/characters/zeta/foot.svg"
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Micro",
  12533. height: math.unit(6, "inches")
  12534. },
  12535. {
  12536. name: "Normal",
  12537. height: math.unit(6 + 1 / 12, "feet"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Macro",
  12542. height: math.unit(20, "feet")
  12543. },
  12544. ]
  12545. ))
  12546. characterMakers.push(() => makeCharacter(
  12547. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12548. {
  12549. front: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(150, "lb"),
  12552. name: "Front",
  12553. image: {
  12554. source: "./media/characters/jamie-larsen/front.svg",
  12555. extra: 962 / 933,
  12556. bottom: 0.02
  12557. }
  12558. },
  12559. back: {
  12560. height: math.unit(6, "feet"),
  12561. weight: math.unit(150, "lb"),
  12562. name: "Back",
  12563. image: {
  12564. source: "./media/characters/jamie-larsen/back.svg",
  12565. extra: 997 / 946
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Macro",
  12572. height: math.unit(28 + 7 / 12, "feet"),
  12573. default: true
  12574. },
  12575. {
  12576. name: "Macro+",
  12577. height: math.unit(180, "feet")
  12578. },
  12579. {
  12580. name: "Megamacro",
  12581. height: math.unit(10, "miles")
  12582. },
  12583. {
  12584. name: "Gigamacro",
  12585. height: math.unit(200000, "miles")
  12586. },
  12587. ]
  12588. ))
  12589. characterMakers.push(() => makeCharacter(
  12590. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12591. {
  12592. front: {
  12593. height: math.unit(6, "feet"),
  12594. weight: math.unit(120, "lb"),
  12595. name: "Front",
  12596. image: {
  12597. source: "./media/characters/vance/front.svg",
  12598. extra: 1980 / 1890,
  12599. bottom: 0.09
  12600. }
  12601. },
  12602. back: {
  12603. height: math.unit(6, "feet"),
  12604. weight: math.unit(120, "lb"),
  12605. name: "Back",
  12606. image: {
  12607. source: "./media/characters/vance/back.svg",
  12608. extra: 2081 / 1994,
  12609. bottom: 0.014
  12610. }
  12611. },
  12612. hand: {
  12613. height: math.unit(0.88, "feet"),
  12614. name: "Hand",
  12615. image: {
  12616. source: "./media/characters/vance/hand.svg"
  12617. }
  12618. },
  12619. foot: {
  12620. height: math.unit(0.64, "feet"),
  12621. name: "Foot",
  12622. image: {
  12623. source: "./media/characters/vance/foot.svg"
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Small",
  12630. height: math.unit(90, "feet"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Macro",
  12635. height: math.unit(100, "meters")
  12636. },
  12637. {
  12638. name: "Megamacro",
  12639. height: math.unit(15, "miles")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(6, "feet"),
  12648. weight: math.unit(180, "lb"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/xochitl/front.svg",
  12652. extra: 2297 / 2261,
  12653. bottom: 0.065
  12654. }
  12655. },
  12656. back: {
  12657. height: math.unit(6, "feet"),
  12658. weight: math.unit(180, "lb"),
  12659. name: "Back",
  12660. image: {
  12661. source: "./media/characters/xochitl/back.svg",
  12662. extra: 2386 / 2354,
  12663. bottom: 0.01
  12664. }
  12665. },
  12666. foot: {
  12667. height: math.unit(6 / 5 * 1.15, "feet"),
  12668. weight: math.unit(150, "lb"),
  12669. name: "Foot",
  12670. image: {
  12671. source: "./media/characters/xochitl/foot.svg"
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Macro",
  12678. height: math.unit(80, "feet")
  12679. },
  12680. {
  12681. name: "Macro+",
  12682. height: math.unit(400, "feet"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Gigamacro",
  12687. height: math.unit(80000, "miles")
  12688. },
  12689. {
  12690. name: "Gigamacro+",
  12691. height: math.unit(400000, "miles")
  12692. },
  12693. {
  12694. name: "Teramacro",
  12695. height: math.unit(300, "AU")
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(6, "feet"),
  12704. weight: math.unit(150, "lb"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/vincent/front.svg",
  12708. extra: 1130 / 1080,
  12709. bottom: 0.055
  12710. }
  12711. },
  12712. beak: {
  12713. height: math.unit(6 * 0.1, "feet"),
  12714. name: "Beak",
  12715. image: {
  12716. source: "./media/characters/vincent/beak.svg"
  12717. }
  12718. },
  12719. hand: {
  12720. height: math.unit(6 * 0.85, "feet"),
  12721. weight: math.unit(150, "lb"),
  12722. name: "Hand",
  12723. image: {
  12724. source: "./media/characters/vincent/hand.svg"
  12725. }
  12726. },
  12727. foot: {
  12728. height: math.unit(6 * 0.19, "feet"),
  12729. weight: math.unit(150, "lb"),
  12730. name: "Foot",
  12731. image: {
  12732. source: "./media/characters/vincent/foot.svg"
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Base",
  12739. height: math.unit(6 + 5 / 12, "feet"),
  12740. default: true
  12741. },
  12742. {
  12743. name: "Macro",
  12744. height: math.unit(300, "feet")
  12745. },
  12746. {
  12747. name: "Megamacro",
  12748. height: math.unit(2, "miles")
  12749. },
  12750. {
  12751. name: "Gigamacro",
  12752. height: math.unit(1000, "miles")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(6 + 2 / 12, "feet"),
  12761. weight: math.unit(265, "lb"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/jay/front.svg",
  12765. extra: 1510 / 1430,
  12766. bottom: 0.042
  12767. }
  12768. },
  12769. back: {
  12770. height: math.unit(6 + 2 / 12, "feet"),
  12771. weight: math.unit(265, "lb"),
  12772. name: "Back",
  12773. image: {
  12774. source: "./media/characters/jay/back.svg",
  12775. extra: 1510 / 1430,
  12776. bottom: 0.025
  12777. }
  12778. },
  12779. clothed: {
  12780. height: math.unit(6 + 2 / 12, "feet"),
  12781. weight: math.unit(265, "lb"),
  12782. name: "Front (Clothed)",
  12783. image: {
  12784. source: "./media/characters/jay/clothed.svg",
  12785. extra: 744 / 699,
  12786. bottom: 0.043
  12787. }
  12788. },
  12789. head: {
  12790. height: math.unit(1.772, "feet"),
  12791. name: "Head",
  12792. image: {
  12793. source: "./media/characters/jay/head.svg"
  12794. }
  12795. },
  12796. sizeRay: {
  12797. height: math.unit(1.331, "feet"),
  12798. name: "Size Ray",
  12799. image: {
  12800. source: "./media/characters/jay/size-ray.svg"
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Micro",
  12807. height: math.unit(1, "inch")
  12808. },
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(6 + 2 / 12, "feet"),
  12812. default: true
  12813. },
  12814. {
  12815. name: "Macro",
  12816. height: math.unit(1, "mile")
  12817. },
  12818. {
  12819. name: "Megamacro",
  12820. height: math.unit(100, "miles")
  12821. },
  12822. ]
  12823. ))
  12824. characterMakers.push(() => makeCharacter(
  12825. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12826. {
  12827. front: {
  12828. height: math.unit(2, "meters"),
  12829. weight: math.unit(500, "kg"),
  12830. name: "Front",
  12831. image: {
  12832. source: "./media/characters/coatl/front.svg",
  12833. extra: 3948 / 3500,
  12834. bottom: 0.082
  12835. }
  12836. },
  12837. },
  12838. [
  12839. {
  12840. name: "Normal",
  12841. height: math.unit(4, "meters")
  12842. },
  12843. {
  12844. name: "Macro",
  12845. height: math.unit(100, "meters"),
  12846. default: true
  12847. },
  12848. {
  12849. name: "Macro+",
  12850. height: math.unit(300, "meters")
  12851. },
  12852. {
  12853. name: "Megamacro",
  12854. height: math.unit(3, "gigameters")
  12855. },
  12856. {
  12857. name: "Megamacro+",
  12858. height: math.unit(300, "terameters")
  12859. },
  12860. {
  12861. name: "Megamacro++",
  12862. height: math.unit(3, "lightyears")
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(6, "feet"),
  12871. weight: math.unit(50, "kg"),
  12872. name: "front",
  12873. image: {
  12874. source: "./media/characters/shiroryu/front.svg",
  12875. extra: 1990 / 1935
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Mortal Mingling",
  12882. height: math.unit(3, "meters")
  12883. },
  12884. {
  12885. name: "Kaiju-ish",
  12886. height: math.unit(250, "meters")
  12887. },
  12888. {
  12889. name: "Somewhat Godly",
  12890. height: math.unit(400, "km"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Planetary",
  12895. height: math.unit(300, "megameters")
  12896. },
  12897. {
  12898. name: "Galaxy-dwarfing",
  12899. height: math.unit(450, "kiloparsecs")
  12900. },
  12901. {
  12902. name: "Universe Eater",
  12903. height: math.unit(150, "gigaparsecs")
  12904. },
  12905. {
  12906. name: "Almost Immeasurable",
  12907. height: math.unit(1.3e266, "yottaparsecs")
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(6, "feet"),
  12916. weight: math.unit(150, "lb"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/umeko/front.svg",
  12920. extra: 1,
  12921. bottom: 0.019
  12922. }
  12923. },
  12924. frontArmored: {
  12925. height: math.unit(6, "feet"),
  12926. weight: math.unit(150, "lb"),
  12927. name: "Front (Armored)",
  12928. image: {
  12929. source: "./media/characters/umeko/front-armored.svg",
  12930. extra: 1,
  12931. bottom: 0.021
  12932. }
  12933. },
  12934. },
  12935. [
  12936. {
  12937. name: "Macro",
  12938. height: math.unit(220, "feet"),
  12939. default: true
  12940. },
  12941. {
  12942. name: "Guardian Dragon",
  12943. height: math.unit(50, "miles")
  12944. },
  12945. {
  12946. name: "Cosmic",
  12947. height: math.unit(800000, "miles")
  12948. },
  12949. ]
  12950. ))
  12951. characterMakers.push(() => makeCharacter(
  12952. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12953. {
  12954. front: {
  12955. height: math.unit(6, "feet"),
  12956. weight: math.unit(150, "lb"),
  12957. name: "Front",
  12958. image: {
  12959. source: "./media/characters/cassidy/front.svg",
  12960. extra: 1,
  12961. bottom: 0.043
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Canon Height",
  12968. height: math.unit(120, "feet"),
  12969. default: true
  12970. },
  12971. {
  12972. name: "Macro+",
  12973. height: math.unit(400, "feet")
  12974. },
  12975. {
  12976. name: "Macro++",
  12977. height: math.unit(4000, "feet")
  12978. },
  12979. {
  12980. name: "Megamacro",
  12981. height: math.unit(3, "miles")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(150, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/isaac/front.svg",
  12994. extra: 896 / 815,
  12995. bottom: 0.11
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Human Size",
  13002. height: math.unit(8, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(400, "feet")
  13008. },
  13009. {
  13010. name: "Megamacro",
  13011. height: math.unit(50, "miles")
  13012. },
  13013. {
  13014. name: "Canon Height",
  13015. height: math.unit(200, "AU")
  13016. },
  13017. ]
  13018. ))
  13019. characterMakers.push(() => makeCharacter(
  13020. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13021. {
  13022. front: {
  13023. height: math.unit(6, "feet"),
  13024. weight: math.unit(72, "kg"),
  13025. name: "Front",
  13026. image: {
  13027. source: "./media/characters/sleekit/front.svg",
  13028. extra: 4693 / 4487,
  13029. bottom: 0.012
  13030. }
  13031. },
  13032. },
  13033. [
  13034. {
  13035. name: "Minimum Height",
  13036. height: math.unit(10, "meters")
  13037. },
  13038. {
  13039. name: "Smaller",
  13040. height: math.unit(25, "meters")
  13041. },
  13042. {
  13043. name: "Larger",
  13044. height: math.unit(38, "meters"),
  13045. default: true
  13046. },
  13047. {
  13048. name: "Maximum height",
  13049. height: math.unit(100, "meters")
  13050. },
  13051. ]
  13052. ))
  13053. characterMakers.push(() => makeCharacter(
  13054. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13055. {
  13056. front: {
  13057. height: math.unit(6, "feet"),
  13058. weight: math.unit(150, "lb"),
  13059. name: "Front",
  13060. image: {
  13061. source: "./media/characters/nillia/front.svg",
  13062. extra: 2195 / 2037,
  13063. bottom: 0.005
  13064. }
  13065. },
  13066. back: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Back",
  13070. image: {
  13071. source: "./media/characters/nillia/back.svg",
  13072. extra: 2195 / 2037,
  13073. bottom: 0.005
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Canon Height",
  13080. height: math.unit(489, "feet"),
  13081. default: true
  13082. }
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(6, "feet"),
  13090. weight: math.unit(150, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/mesmyriza/front.svg",
  13094. extra: 2067 / 1784,
  13095. bottom: 0.035
  13096. }
  13097. },
  13098. foot: {
  13099. height: math.unit(6 / (250 / 35), "feet"),
  13100. name: "Foot",
  13101. image: {
  13102. source: "./media/characters/mesmyriza/foot.svg"
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Macro",
  13109. height: math.unit(457, "meters"),
  13110. default: true
  13111. },
  13112. {
  13113. name: "Megamacro",
  13114. height: math.unit(8, "megameters")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(250, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/saudade/front.svg",
  13127. extra: 1172 / 1139,
  13128. bottom: 0.035
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Micro",
  13135. height: math.unit(3, "inches")
  13136. },
  13137. {
  13138. name: "Normal",
  13139. height: math.unit(6, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Macro",
  13144. height: math.unit(50, "feet")
  13145. },
  13146. {
  13147. name: "Megamacro",
  13148. height: math.unit(2800, "feet")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(5 + 4 / 12, "feet"),
  13157. weight: math.unit(100, "lb"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/keireer/front.svg",
  13161. extra: 716 / 666,
  13162. bottom: 0.05
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Normal",
  13169. height: math.unit(5 + 4 / 12, "feet"),
  13170. default: true
  13171. },
  13172. ]
  13173. ))
  13174. characterMakers.push(() => makeCharacter(
  13175. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13176. {
  13177. front: {
  13178. height: math.unit(6, "feet"),
  13179. weight: math.unit(90, "kg"),
  13180. name: "Front",
  13181. image: {
  13182. source: "./media/characters/mirja/front.svg",
  13183. extra: 1789 / 1683,
  13184. bottom: 0.05
  13185. }
  13186. },
  13187. frontDressed: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(90, "lb"),
  13190. name: "Front (Dressed)",
  13191. image: {
  13192. source: "./media/characters/mirja/front-dressed.svg",
  13193. extra: 1789 / 1683,
  13194. bottom: 0.05
  13195. }
  13196. },
  13197. back: {
  13198. height: math.unit(6, "feet"),
  13199. weight: math.unit(90, "lb"),
  13200. name: "Back",
  13201. image: {
  13202. source: "./media/characters/mirja/back.svg",
  13203. extra: 953 / 917,
  13204. bottom: 0.017
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "\"Incognito\"",
  13211. height: math.unit(3, "meters")
  13212. },
  13213. {
  13214. name: "Strolling Size",
  13215. height: math.unit(15, "km")
  13216. },
  13217. {
  13218. name: "Larger Strolling Size",
  13219. height: math.unit(400, "km")
  13220. },
  13221. {
  13222. name: "Preferred Size",
  13223. height: math.unit(5000, "km")
  13224. },
  13225. {
  13226. name: "True Size",
  13227. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13228. default: true
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(15, "feet"),
  13237. weight: math.unit(880, "kg"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/nightraver/front.svg",
  13241. extra: 2444 / 2160,
  13242. bottom: 0.027
  13243. }
  13244. },
  13245. back: {
  13246. height: math.unit(15, "feet"),
  13247. weight: math.unit(880, "kg"),
  13248. name: "Back",
  13249. image: {
  13250. source: "./media/characters/nightraver/back.svg",
  13251. extra: 2309 / 2180,
  13252. bottom: 0.005
  13253. }
  13254. },
  13255. sole: {
  13256. height: math.unit(2.878, "feet"),
  13257. name: "Sole",
  13258. image: {
  13259. source: "./media/characters/nightraver/sole.svg"
  13260. }
  13261. },
  13262. foot: {
  13263. height: math.unit(2.285, "feet"),
  13264. name: "Foot",
  13265. image: {
  13266. source: "./media/characters/nightraver/foot.svg"
  13267. }
  13268. },
  13269. maw: {
  13270. height: math.unit(2.67, "feet"),
  13271. name: "Maw",
  13272. image: {
  13273. source: "./media/characters/nightraver/maw.svg"
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Micro",
  13280. height: math.unit(1, "cm")
  13281. },
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(15, "feet"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(300, "feet")
  13290. },
  13291. {
  13292. name: "Megamacro",
  13293. height: math.unit(300, "miles")
  13294. },
  13295. {
  13296. name: "Gigamacro",
  13297. height: math.unit(10000, "miles")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13303. {
  13304. side: {
  13305. height: math.unit(2, "inches"),
  13306. weight: math.unit(5, "grams"),
  13307. name: "Side",
  13308. image: {
  13309. source: "./media/characters/arc/side.svg"
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Micro",
  13316. height: math.unit(2, "inches"),
  13317. default: true
  13318. },
  13319. ]
  13320. ))
  13321. characterMakers.push(() => makeCharacter(
  13322. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13323. {
  13324. front: {
  13325. height: math.unit(1.1938, "meters"),
  13326. weight: math.unit(54, "kg"),
  13327. name: "Front",
  13328. image: {
  13329. source: "./media/characters/nebula-shahar/front.svg",
  13330. extra: 1642 / 1436,
  13331. bottom: 0.06
  13332. }
  13333. },
  13334. },
  13335. [
  13336. {
  13337. name: "Megamicro",
  13338. height: math.unit(0.3, "mm")
  13339. },
  13340. {
  13341. name: "Micro",
  13342. height: math.unit(3, "cm")
  13343. },
  13344. {
  13345. name: "Normal",
  13346. height: math.unit(138, "cm"),
  13347. default: true
  13348. },
  13349. {
  13350. name: "Macro",
  13351. height: math.unit(30, "m")
  13352. },
  13353. ]
  13354. ))
  13355. characterMakers.push(() => makeCharacter(
  13356. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13357. {
  13358. front: {
  13359. height: math.unit(5.24, "feet"),
  13360. weight: math.unit(150, "lb"),
  13361. name: "Front",
  13362. image: {
  13363. source: "./media/characters/shayla/front.svg",
  13364. extra: 1512 / 1414,
  13365. bottom: 0.01
  13366. }
  13367. },
  13368. back: {
  13369. height: math.unit(5.24, "feet"),
  13370. weight: math.unit(150, "lb"),
  13371. name: "Back",
  13372. image: {
  13373. source: "./media/characters/shayla/back.svg",
  13374. extra: 1512 / 1414
  13375. }
  13376. },
  13377. hand: {
  13378. height: math.unit(0.7781496062992126, "feet"),
  13379. name: "Hand",
  13380. image: {
  13381. source: "./media/characters/shayla/hand.svg"
  13382. }
  13383. },
  13384. foot: {
  13385. height: math.unit(1.4206036745406823, "feet"),
  13386. name: "Foot",
  13387. image: {
  13388. source: "./media/characters/shayla/foot.svg"
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Micro",
  13395. height: math.unit(0.32, "feet")
  13396. },
  13397. {
  13398. name: "Normal",
  13399. height: math.unit(5.24, "feet"),
  13400. default: true
  13401. },
  13402. {
  13403. name: "Macro",
  13404. height: math.unit(492.12, "feet")
  13405. },
  13406. {
  13407. name: "Megamacro",
  13408. height: math.unit(186.41, "miles")
  13409. },
  13410. ]
  13411. ))
  13412. characterMakers.push(() => makeCharacter(
  13413. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13414. {
  13415. front: {
  13416. height: math.unit(2.2, "m"),
  13417. weight: math.unit(120, "kg"),
  13418. name: "Front",
  13419. image: {
  13420. source: "./media/characters/pia-jr/front.svg",
  13421. extra: 1000 / 970,
  13422. bottom: 0.035
  13423. }
  13424. },
  13425. hand: {
  13426. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13427. name: "Hand",
  13428. image: {
  13429. source: "./media/characters/pia-jr/hand.svg"
  13430. }
  13431. },
  13432. paw: {
  13433. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13434. name: "Paw",
  13435. image: {
  13436. source: "./media/characters/pia-jr/paw.svg"
  13437. }
  13438. },
  13439. },
  13440. [
  13441. {
  13442. name: "Micro",
  13443. height: math.unit(1.2, "cm")
  13444. },
  13445. {
  13446. name: "Normal",
  13447. height: math.unit(2.2, "m"),
  13448. default: true
  13449. },
  13450. {
  13451. name: "Macro",
  13452. height: math.unit(180, "m")
  13453. },
  13454. {
  13455. name: "Megamacro",
  13456. height: math.unit(420, "km")
  13457. },
  13458. ]
  13459. ))
  13460. characterMakers.push(() => makeCharacter(
  13461. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13462. {
  13463. front: {
  13464. height: math.unit(2, "m"),
  13465. weight: math.unit(115, "kg"),
  13466. name: "Front",
  13467. image: {
  13468. source: "./media/characters/pia-sr/front.svg",
  13469. extra: 760 / 730,
  13470. bottom: 0.015
  13471. }
  13472. },
  13473. back: {
  13474. height: math.unit(2, "m"),
  13475. weight: math.unit(115, "kg"),
  13476. name: "Back",
  13477. image: {
  13478. source: "./media/characters/pia-sr/back.svg",
  13479. extra: 760 / 730,
  13480. bottom: 0.01
  13481. }
  13482. },
  13483. hand: {
  13484. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13485. name: "Hand",
  13486. image: {
  13487. source: "./media/characters/pia-sr/hand.svg"
  13488. }
  13489. },
  13490. foot: {
  13491. height: math.unit(1.83, "feet"),
  13492. name: "Foot",
  13493. image: {
  13494. source: "./media/characters/pia-sr/foot.svg"
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Micro",
  13501. height: math.unit(88, "mm")
  13502. },
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(2, "m"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(200, "m")
  13511. },
  13512. {
  13513. name: "Megamacro",
  13514. height: math.unit(420, "km")
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(8 + 2 / 12, "feet"),
  13523. weight: math.unit(300, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/kibibyte/front.svg",
  13527. extra: 2221 / 2098,
  13528. bottom: 0.04
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Normal",
  13535. height: math.unit(8 + 2 / 12, "feet"),
  13536. default: true
  13537. },
  13538. {
  13539. name: "Socialable Macro",
  13540. height: math.unit(50, "feet")
  13541. },
  13542. {
  13543. name: "Macro",
  13544. height: math.unit(300, "feet")
  13545. },
  13546. {
  13547. name: "Megamacro",
  13548. height: math.unit(500, "miles")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(6, "feet"),
  13557. weight: math.unit(150, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/felix/front.svg",
  13561. extra: 762 / 722,
  13562. bottom: 0.02
  13563. }
  13564. },
  13565. frontClothed: {
  13566. height: math.unit(6, "feet"),
  13567. weight: math.unit(150, "lb"),
  13568. name: "Front (Clothed)",
  13569. image: {
  13570. source: "./media/characters/felix/front-clothed.svg",
  13571. extra: 762 / 722,
  13572. bottom: 0.02
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Normal",
  13579. height: math.unit(6 + 8 / 12, "feet"),
  13580. default: true
  13581. },
  13582. {
  13583. name: "Macro",
  13584. height: math.unit(2600, "feet")
  13585. },
  13586. {
  13587. name: "Megamacro",
  13588. height: math.unit(450, "miles")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(6 + 1 / 12, "feet"),
  13597. weight: math.unit(250, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/tobo/front.svg",
  13601. extra: 608 / 586,
  13602. bottom: 0.023
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(6 + 1 / 12, "feet"),
  13607. weight: math.unit(250, "lb"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/tobo/back.svg",
  13611. extra: 608 / 586
  13612. }
  13613. },
  13614. },
  13615. [
  13616. {
  13617. name: "Nano",
  13618. height: math.unit(2, "nm")
  13619. },
  13620. {
  13621. name: "Megamicro",
  13622. height: math.unit(0.1, "mm")
  13623. },
  13624. {
  13625. name: "Micro",
  13626. height: math.unit(1, "inch"),
  13627. default: true
  13628. },
  13629. {
  13630. name: "Human-sized",
  13631. height: math.unit(6 + 1 / 12, "feet")
  13632. },
  13633. {
  13634. name: "Macro",
  13635. height: math.unit(250, "feet")
  13636. },
  13637. {
  13638. name: "Megamacro",
  13639. height: math.unit(75, "miles")
  13640. },
  13641. {
  13642. name: "Texas-sized",
  13643. height: math.unit(750, "miles")
  13644. },
  13645. {
  13646. name: "Teramacro",
  13647. height: math.unit(50000, "miles")
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13653. {
  13654. front: {
  13655. height: math.unit(6, "feet"),
  13656. weight: math.unit(269, "lb"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/danny-kapowsky/front.svg",
  13660. extra: 766 / 736,
  13661. bottom: 0.044
  13662. }
  13663. },
  13664. back: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(269, "lb"),
  13667. name: "Back",
  13668. image: {
  13669. source: "./media/characters/danny-kapowsky/back.svg",
  13670. extra: 797 / 760,
  13671. bottom: 0.025
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Macro",
  13678. height: math.unit(150, "feet"),
  13679. default: true
  13680. },
  13681. {
  13682. name: "Macro+",
  13683. height: math.unit(200, "feet")
  13684. },
  13685. {
  13686. name: "Macro++",
  13687. height: math.unit(300, "feet")
  13688. },
  13689. {
  13690. name: "Macro+++",
  13691. height: math.unit(400, "feet")
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13697. {
  13698. side: {
  13699. height: math.unit(6, "feet"),
  13700. weight: math.unit(170, "lb"),
  13701. name: "Side",
  13702. image: {
  13703. source: "./media/characters/finn/side.svg",
  13704. extra: 1953 / 1807,
  13705. bottom: 0.057
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Megamacro",
  13712. height: math.unit(14445, "feet"),
  13713. default: true
  13714. },
  13715. ]
  13716. ))
  13717. characterMakers.push(() => makeCharacter(
  13718. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13719. {
  13720. front: {
  13721. height: math.unit(5 + 6 / 12, "feet"),
  13722. weight: math.unit(125, "lb"),
  13723. name: "Front",
  13724. image: {
  13725. source: "./media/characters/roy/front.svg",
  13726. extra: 1,
  13727. bottom: 0.11
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Micro",
  13734. height: math.unit(3, "inches"),
  13735. default: true
  13736. },
  13737. {
  13738. name: "Normal",
  13739. height: math.unit(5 + 6 / 12, "feet")
  13740. },
  13741. {
  13742. name: "Lesser Macro",
  13743. height: math.unit(60, "feet")
  13744. },
  13745. {
  13746. name: "Greater Macro",
  13747. height: math.unit(120, "feet")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(6, "feet"),
  13756. weight: math.unit(100, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/aevsivs/front.svg",
  13760. extra: 1,
  13761. bottom: 0.03
  13762. }
  13763. },
  13764. back: {
  13765. height: math.unit(6, "feet"),
  13766. weight: math.unit(100, "lb"),
  13767. name: "Back",
  13768. image: {
  13769. source: "./media/characters/aevsivs/back.svg"
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Micro",
  13776. height: math.unit(2, "inches"),
  13777. default: true
  13778. },
  13779. {
  13780. name: "Normal",
  13781. height: math.unit(5, "feet")
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13787. {
  13788. front: {
  13789. height: math.unit(5 + 7 / 12, "feet"),
  13790. weight: math.unit(159, "lb"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/hildegard/front.svg",
  13794. extra: 289 / 269,
  13795. bottom: 7.63/297.8
  13796. }
  13797. },
  13798. back: {
  13799. height: math.unit(5 + 7 / 12, "feet"),
  13800. weight: math.unit(159, "lb"),
  13801. name: "Back",
  13802. image: {
  13803. source: "./media/characters/hildegard/back.svg",
  13804. extra: 280/260,
  13805. bottom: 2.3/282
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Normal",
  13812. height: math.unit(5 + 7 / 12, "feet"),
  13813. default: true
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13819. {
  13820. bernard: {
  13821. height: math.unit(2 + 7 / 12, "feet"),
  13822. weight: math.unit(66, "lb"),
  13823. name: "Bernard",
  13824. rename: true,
  13825. image: {
  13826. source: "./media/characters/bernard-wilder/bernard.svg",
  13827. extra: 192 / 128,
  13828. bottom: 0.05
  13829. }
  13830. },
  13831. wilder: {
  13832. height: math.unit(5 + 8 / 12, "feet"),
  13833. weight: math.unit(143, "lb"),
  13834. name: "Wilder",
  13835. rename: true,
  13836. image: {
  13837. source: "./media/characters/bernard-wilder/wilder.svg",
  13838. extra: 361 / 312,
  13839. bottom: 0.02
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(2 + 7 / 12, "feet"),
  13847. default: true
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13853. {
  13854. anthro: {
  13855. height: math.unit(6 + 1 / 12, "feet"),
  13856. weight: math.unit(155, "lb"),
  13857. name: "Anthro",
  13858. image: {
  13859. source: "./media/characters/hearth/anthro.svg",
  13860. extra: 260 / 250,
  13861. bottom: 0.02
  13862. }
  13863. },
  13864. feral: {
  13865. height: math.unit(3.78, "feet"),
  13866. weight: math.unit(35, "kg"),
  13867. name: "Feral",
  13868. image: {
  13869. source: "./media/characters/hearth/feral.svg",
  13870. extra: 153 / 135,
  13871. bottom: 0.03
  13872. }
  13873. },
  13874. },
  13875. [
  13876. {
  13877. name: "Normal",
  13878. height: math.unit(6 + 1 / 12, "feet"),
  13879. default: true
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(6, "feet"),
  13888. weight: math.unit(182, "lb"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/ingrid/front.svg",
  13892. extra: 294 / 268,
  13893. bottom: 0.027
  13894. }
  13895. },
  13896. },
  13897. [
  13898. {
  13899. name: "Normal",
  13900. height: math.unit(6, "feet"),
  13901. default: true
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13907. {
  13908. eevee: {
  13909. height: math.unit(2 + 10 / 12, "feet"),
  13910. weight: math.unit(86, "lb"),
  13911. name: "Malgam",
  13912. image: {
  13913. source: "./media/characters/malgam/eevee.svg",
  13914. extra: 218 / 180,
  13915. bottom: 0.2
  13916. }
  13917. },
  13918. sylveon: {
  13919. height: math.unit(4, "feet"),
  13920. weight: math.unit(101, "lb"),
  13921. name: "Future Malgam",
  13922. rename: true,
  13923. image: {
  13924. source: "./media/characters/malgam/sylveon.svg",
  13925. extra: 371 / 325,
  13926. bottom: 0.015
  13927. }
  13928. },
  13929. gigantamax: {
  13930. height: math.unit(50, "feet"),
  13931. name: "Gigantamax Malgam",
  13932. rename: true,
  13933. image: {
  13934. source: "./media/characters/malgam/gigantamax.svg"
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(2 + 10 / 12, "feet"),
  13942. default: true
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13948. {
  13949. front: {
  13950. height: math.unit(5 + 11 / 12, "feet"),
  13951. weight: math.unit(188, "lb"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/fleur/front.svg",
  13955. extra: 309 / 283,
  13956. bottom: 0.007
  13957. }
  13958. },
  13959. },
  13960. [
  13961. {
  13962. name: "Normal",
  13963. height: math.unit(5 + 11 / 12, "feet"),
  13964. default: true
  13965. },
  13966. ]
  13967. ))
  13968. characterMakers.push(() => makeCharacter(
  13969. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13970. {
  13971. front: {
  13972. height: math.unit(5 + 4 / 12, "feet"),
  13973. weight: math.unit(122, "lb"),
  13974. name: "Front",
  13975. image: {
  13976. source: "./media/characters/jude/front.svg",
  13977. extra: 288 / 273,
  13978. bottom: 0.03
  13979. }
  13980. },
  13981. },
  13982. [
  13983. {
  13984. name: "Normal",
  13985. height: math.unit(5 + 4 / 12, "feet"),
  13986. default: true
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(5 + 11 / 12, "feet"),
  13995. weight: math.unit(190, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/seara/front.svg",
  13999. extra: 1,
  14000. bottom: 0.05
  14001. }
  14002. },
  14003. },
  14004. [
  14005. {
  14006. name: "Normal",
  14007. height: math.unit(5 + 11 / 12, "feet"),
  14008. default: true
  14009. },
  14010. ]
  14011. ))
  14012. characterMakers.push(() => makeCharacter(
  14013. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14014. {
  14015. front: {
  14016. height: math.unit(16 + 5 / 12, "feet"),
  14017. weight: math.unit(524, "lb"),
  14018. name: "Front",
  14019. image: {
  14020. source: "./media/characters/caspian/front.svg",
  14021. extra: 1,
  14022. bottom: 0.04
  14023. }
  14024. },
  14025. },
  14026. [
  14027. {
  14028. name: "Normal",
  14029. height: math.unit(16 + 5 / 12, "feet"),
  14030. default: true
  14031. },
  14032. ]
  14033. ))
  14034. characterMakers.push(() => makeCharacter(
  14035. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14036. {
  14037. front: {
  14038. height: math.unit(5 + 7 / 12, "feet"),
  14039. weight: math.unit(170, "lb"),
  14040. name: "Front",
  14041. image: {
  14042. source: "./media/characters/mika/front.svg",
  14043. extra: 1,
  14044. bottom: 0.016
  14045. }
  14046. },
  14047. },
  14048. [
  14049. {
  14050. name: "Normal",
  14051. height: math.unit(5 + 7 / 12, "feet"),
  14052. default: true
  14053. },
  14054. ]
  14055. ))
  14056. characterMakers.push(() => makeCharacter(
  14057. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14058. {
  14059. front: {
  14060. height: math.unit(6 + 2 / 12, "feet"),
  14061. weight: math.unit(268, "lb"),
  14062. name: "Front",
  14063. image: {
  14064. source: "./media/characters/sol/front.svg",
  14065. extra: 247 / 231,
  14066. bottom: 0.05
  14067. }
  14068. },
  14069. },
  14070. [
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(6 + 2 / 12, "feet"),
  14074. default: true
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14080. {
  14081. buizel: {
  14082. height: math.unit(2 + 5 / 12, "feet"),
  14083. weight: math.unit(87, "lb"),
  14084. name: "Buizel",
  14085. image: {
  14086. source: "./media/characters/umiko/buizel.svg",
  14087. extra: 172 / 157,
  14088. bottom: 0.01
  14089. }
  14090. },
  14091. floatzel: {
  14092. height: math.unit(5 + 9 / 12, "feet"),
  14093. weight: math.unit(250, "lb"),
  14094. name: "Floatzel",
  14095. image: {
  14096. source: "./media/characters/umiko/floatzel.svg",
  14097. extra: 262 / 248
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Normal",
  14104. height: math.unit(2 + 5 / 12, "feet"),
  14105. default: true
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(6 + 2 / 12, "feet"),
  14114. weight: math.unit(146, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/iliac/front.svg",
  14118. extra: 389 / 365,
  14119. bottom: 0.035
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Normal",
  14126. height: math.unit(6 + 2 / 12, "feet"),
  14127. default: true
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(6, "feet"),
  14136. weight: math.unit(170, "lb"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/topaz/front.svg",
  14140. extra: 317 / 303,
  14141. bottom: 0.055
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Normal",
  14148. height: math.unit(6, "feet"),
  14149. default: true
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14155. {
  14156. front: {
  14157. height: math.unit(5 + 11 / 12, "feet"),
  14158. weight: math.unit(144, "lb"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/gabriel/front.svg",
  14162. extra: 285 / 262,
  14163. bottom: 0.004
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(5 + 11 / 12, "feet"),
  14171. default: true
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14177. {
  14178. side: {
  14179. height: math.unit(6 + 5 / 12, "feet"),
  14180. weight: math.unit(300, "lb"),
  14181. name: "Side",
  14182. image: {
  14183. source: "./media/characters/tempest-suicune/side.svg",
  14184. extra: 195 / 154,
  14185. bottom: 0.04
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(6 + 5 / 12, "feet"),
  14193. default: true
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14199. {
  14200. front: {
  14201. height: math.unit(7 + 2 / 12, "feet"),
  14202. weight: math.unit(322, "lb"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/vulcan/front.svg",
  14206. extra: 154 / 147,
  14207. bottom: 0.04
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Normal",
  14214. height: math.unit(7 + 2 / 12, "feet"),
  14215. default: true
  14216. },
  14217. ]
  14218. ))
  14219. characterMakers.push(() => makeCharacter(
  14220. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14221. {
  14222. front: {
  14223. height: math.unit(5 + 10 / 12, "feet"),
  14224. weight: math.unit(264, "lb"),
  14225. name: "Front",
  14226. image: {
  14227. source: "./media/characters/gault/front.svg",
  14228. extra: 161 / 140,
  14229. bottom: 0.028
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Normal",
  14236. height: math.unit(5 + 10 / 12, "feet"),
  14237. default: true
  14238. },
  14239. ]
  14240. ))
  14241. characterMakers.push(() => makeCharacter(
  14242. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14243. {
  14244. front: {
  14245. height: math.unit(6, "feet"),
  14246. weight: math.unit(150, "lb"),
  14247. name: "Front",
  14248. image: {
  14249. source: "./media/characters/shard/front.svg",
  14250. extra: 273 / 238,
  14251. bottom: 0.02
  14252. }
  14253. },
  14254. },
  14255. [
  14256. {
  14257. name: "Normal",
  14258. height: math.unit(3 + 6 / 12, "feet"),
  14259. default: true
  14260. },
  14261. ]
  14262. ))
  14263. characterMakers.push(() => makeCharacter(
  14264. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14265. {
  14266. front: {
  14267. height: math.unit(5 + 11 / 12, "feet"),
  14268. weight: math.unit(146, "lb"),
  14269. name: "Front",
  14270. image: {
  14271. source: "./media/characters/ashe/front.svg",
  14272. extra: 400 / 373,
  14273. bottom: 0.01
  14274. }
  14275. },
  14276. },
  14277. [
  14278. {
  14279. name: "Normal",
  14280. height: math.unit(5 + 11 / 12, "feet"),
  14281. default: true
  14282. },
  14283. ]
  14284. ))
  14285. characterMakers.push(() => makeCharacter(
  14286. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14287. {
  14288. front: {
  14289. height: math.unit(5 + 5 / 12, "feet"),
  14290. weight: math.unit(135, "lb"),
  14291. name: "Front",
  14292. image: {
  14293. source: "./media/characters/beatrix/front.svg",
  14294. extra: 392 / 379,
  14295. bottom: 0.01
  14296. }
  14297. },
  14298. },
  14299. [
  14300. {
  14301. name: "Normal",
  14302. height: math.unit(6, "feet"),
  14303. default: true
  14304. },
  14305. ]
  14306. ))
  14307. characterMakers.push(() => makeCharacter(
  14308. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14309. {
  14310. front: {
  14311. height: math.unit(6, "feet"),
  14312. weight: math.unit(150, "lb"),
  14313. name: "Front",
  14314. image: {
  14315. source: "./media/characters/ignatius/front.svg",
  14316. extra: 245 / 222,
  14317. bottom: 0.01
  14318. }
  14319. },
  14320. },
  14321. [
  14322. {
  14323. name: "Normal",
  14324. height: math.unit(5 + 5 / 12, "feet"),
  14325. default: true
  14326. },
  14327. ]
  14328. ))
  14329. characterMakers.push(() => makeCharacter(
  14330. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14331. {
  14332. front: {
  14333. height: math.unit(6 + 2 / 12, "feet"),
  14334. weight: math.unit(138, "lb"),
  14335. name: "Front",
  14336. image: {
  14337. source: "./media/characters/mei-li/front.svg",
  14338. extra: 237 / 229,
  14339. bottom: 0.03
  14340. }
  14341. },
  14342. },
  14343. [
  14344. {
  14345. name: "Normal",
  14346. height: math.unit(6 + 2 / 12, "feet"),
  14347. default: true
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14353. {
  14354. front: {
  14355. height: math.unit(2 + 4 / 12, "feet"),
  14356. weight: math.unit(62, "lb"),
  14357. name: "Front",
  14358. image: {
  14359. source: "./media/characters/puru/front.svg",
  14360. extra: 206 / 149,
  14361. bottom: 0.06
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Normal",
  14368. height: math.unit(2 + 4 / 12, "feet"),
  14369. default: true
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14375. {
  14376. taur: {
  14377. height: math.unit(11, "feet"),
  14378. weight: math.unit(500, "lb"),
  14379. name: "Taur",
  14380. image: {
  14381. source: "./media/characters/kee/taur.svg",
  14382. extra: 1,
  14383. bottom: 0.04
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Normal",
  14390. height: math.unit(11, "feet"),
  14391. default: true
  14392. },
  14393. ]
  14394. ))
  14395. characterMakers.push(() => makeCharacter(
  14396. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14397. {
  14398. anthro: {
  14399. height: math.unit(7, "feet"),
  14400. weight: math.unit(190, "lb"),
  14401. name: "Anthro",
  14402. image: {
  14403. source: "./media/characters/cobalt-dracha/anthro.svg",
  14404. extra: 231 / 225,
  14405. bottom: 0.04
  14406. }
  14407. },
  14408. feral: {
  14409. height: math.unit(9 + 7 / 12, "feet"),
  14410. weight: math.unit(294, "lb"),
  14411. name: "Feral",
  14412. image: {
  14413. source: "./media/characters/cobalt-dracha/feral.svg",
  14414. extra: 692 / 633,
  14415. bottom: 0.05
  14416. }
  14417. },
  14418. },
  14419. [
  14420. {
  14421. name: "Normal",
  14422. height: math.unit(7, "feet"),
  14423. default: true
  14424. },
  14425. ]
  14426. ))
  14427. characterMakers.push(() => makeCharacter(
  14428. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14429. {
  14430. fallen: {
  14431. height: math.unit(11 + 8 / 12, "feet"),
  14432. weight: math.unit(485, "lb"),
  14433. name: "Java (Fallen)",
  14434. rename: true,
  14435. image: {
  14436. source: "./media/characters/java/fallen.svg",
  14437. extra: 226 / 208,
  14438. bottom: 0.005
  14439. }
  14440. },
  14441. godkin: {
  14442. height: math.unit(10 + 6 / 12, "feet"),
  14443. weight: math.unit(328, "lb"),
  14444. name: "Java (Godkin)",
  14445. rename: true,
  14446. image: {
  14447. source: "./media/characters/java/godkin.svg",
  14448. extra: 270 / 262,
  14449. bottom: 0.02
  14450. }
  14451. },
  14452. },
  14453. [
  14454. {
  14455. name: "Normal",
  14456. height: math.unit(11 + 8 / 12, "feet"),
  14457. default: true
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14463. {
  14464. front: {
  14465. height: math.unit(7 + 8 / 12, "feet"),
  14466. weight: math.unit(320, "lb"),
  14467. name: "Front",
  14468. image: {
  14469. source: "./media/characters/skoll/front.svg",
  14470. extra: 232 / 220,
  14471. bottom: 0.02
  14472. }
  14473. },
  14474. },
  14475. [
  14476. {
  14477. name: "Normal",
  14478. height: math.unit(7 + 8 / 12, "feet"),
  14479. default: true
  14480. },
  14481. ]
  14482. ))
  14483. characterMakers.push(() => makeCharacter(
  14484. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14485. {
  14486. front: {
  14487. height: math.unit(5 + 9 / 12, "feet"),
  14488. weight: math.unit(170, "lb"),
  14489. name: "Front",
  14490. image: {
  14491. source: "./media/characters/purna/front.svg",
  14492. extra: 239 / 229,
  14493. bottom: 0.01
  14494. }
  14495. },
  14496. },
  14497. [
  14498. {
  14499. name: "Normal",
  14500. height: math.unit(5 + 9 / 12, "feet"),
  14501. default: true
  14502. },
  14503. ]
  14504. ))
  14505. characterMakers.push(() => makeCharacter(
  14506. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14507. {
  14508. front: {
  14509. height: math.unit(5 + 9 / 12, "feet"),
  14510. weight: math.unit(142, "lb"),
  14511. name: "Front",
  14512. image: {
  14513. source: "./media/characters/kuva/front.svg",
  14514. extra: 281 / 271,
  14515. bottom: 0.006
  14516. }
  14517. },
  14518. },
  14519. [
  14520. {
  14521. name: "Normal",
  14522. height: math.unit(5 + 9 / 12, "feet"),
  14523. default: true
  14524. },
  14525. ]
  14526. ))
  14527. characterMakers.push(() => makeCharacter(
  14528. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14529. {
  14530. anthro: {
  14531. height: math.unit(9 + 2 / 12, "feet"),
  14532. weight: math.unit(270, "lb"),
  14533. name: "Anthro",
  14534. image: {
  14535. source: "./media/characters/embra/anthro.svg",
  14536. extra: 200 / 187,
  14537. bottom: 0.02
  14538. }
  14539. },
  14540. feral: {
  14541. height: math.unit(18 + 8 / 12, "feet"),
  14542. weight: math.unit(576, "lb"),
  14543. name: "Feral",
  14544. image: {
  14545. source: "./media/characters/embra/feral.svg",
  14546. extra: 152 / 137,
  14547. bottom: 0.037
  14548. }
  14549. },
  14550. },
  14551. [
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(9 + 2 / 12, "feet"),
  14555. default: true
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14561. {
  14562. anthro: {
  14563. height: math.unit(10 + 9 / 12, "feet"),
  14564. weight: math.unit(224, "lb"),
  14565. name: "Anthro",
  14566. image: {
  14567. source: "./media/characters/grottos/anthro.svg",
  14568. extra: 350 / 332,
  14569. bottom: 0.045
  14570. }
  14571. },
  14572. feral: {
  14573. height: math.unit(20 + 7 / 12, "feet"),
  14574. weight: math.unit(629, "lb"),
  14575. name: "Feral",
  14576. image: {
  14577. source: "./media/characters/grottos/feral.svg",
  14578. extra: 207 / 190,
  14579. bottom: 0.05
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Normal",
  14586. height: math.unit(10 + 9 / 12, "feet"),
  14587. default: true
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14593. {
  14594. anthro: {
  14595. height: math.unit(9 + 6 / 12, "feet"),
  14596. weight: math.unit(298, "lb"),
  14597. name: "Anthro",
  14598. image: {
  14599. source: "./media/characters/frifna/anthro.svg",
  14600. extra: 282 / 269,
  14601. bottom: 0.015
  14602. }
  14603. },
  14604. feral: {
  14605. height: math.unit(16 + 2 / 12, "feet"),
  14606. weight: math.unit(624, "lb"),
  14607. name: "Feral",
  14608. image: {
  14609. source: "./media/characters/frifna/feral.svg"
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(9 + 6 / 12, "feet"),
  14617. default: true
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14623. {
  14624. front: {
  14625. height: math.unit(6 + 2 / 12, "feet"),
  14626. weight: math.unit(168, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/elise/front.svg",
  14630. extra: 276 / 271
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Normal",
  14637. height: math.unit(6 + 2 / 12, "feet"),
  14638. default: true
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(5 + 10 / 12, "feet"),
  14647. weight: math.unit(210, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/glade/front.svg",
  14651. extra: 258 / 247,
  14652. bottom: 0.008
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Normal",
  14659. height: math.unit(5 + 10 / 12, "feet"),
  14660. default: true
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14666. {
  14667. front: {
  14668. height: math.unit(5 + 10 / 12, "feet"),
  14669. weight: math.unit(129, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/rina/front.svg",
  14673. extra: 266 / 255,
  14674. bottom: 0.005
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(5 + 10 / 12, "feet"),
  14682. default: true
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14688. {
  14689. front: {
  14690. height: math.unit(6 + 1 / 12, "feet"),
  14691. weight: math.unit(192, "lb"),
  14692. name: "Front",
  14693. image: {
  14694. source: "./media/characters/veronica/front.svg",
  14695. extra: 319 / 309,
  14696. bottom: 0.005
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(6 + 1 / 12, "feet"),
  14704. default: true
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14710. {
  14711. front: {
  14712. height: math.unit(9 + 3 / 12, "feet"),
  14713. weight: math.unit(1100, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/braxton/front.svg",
  14717. extra: 1057 / 984,
  14718. bottom: 0.05
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(9 + 3 / 12, "feet")
  14726. },
  14727. {
  14728. name: "Giant",
  14729. height: math.unit(300, "feet"),
  14730. default: true
  14731. },
  14732. {
  14733. name: "Macro",
  14734. height: math.unit(700, "feet")
  14735. },
  14736. {
  14737. name: "Megamacro",
  14738. height: math.unit(6000, "feet")
  14739. },
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14744. {
  14745. front: {
  14746. height: math.unit(6 + 7 / 12, "feet"),
  14747. weight: math.unit(150, "lb"),
  14748. name: "Front",
  14749. image: {
  14750. source: "./media/characters/blue-feyonics/front.svg",
  14751. extra: 1403 / 1306,
  14752. bottom: 0.047
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(6 + 7 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(1.8, "meters"),
  14769. weight: math.unit(60, "kg"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/maxwell/front.svg",
  14773. extra: 2060 / 1873
  14774. }
  14775. },
  14776. },
  14777. [
  14778. {
  14779. name: "Micro",
  14780. height: math.unit(1, "mm")
  14781. },
  14782. {
  14783. name: "Normal",
  14784. height: math.unit(1.8, "meter"),
  14785. default: true
  14786. },
  14787. {
  14788. name: "Macro",
  14789. height: math.unit(30, "meters")
  14790. },
  14791. {
  14792. name: "Megamacro",
  14793. height: math.unit(10, "km")
  14794. },
  14795. ]
  14796. ))
  14797. characterMakers.push(() => makeCharacter(
  14798. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14799. {
  14800. front: {
  14801. height: math.unit(6, "feet"),
  14802. weight: math.unit(150, "lb"),
  14803. name: "Front",
  14804. image: {
  14805. source: "./media/characters/jack/front.svg",
  14806. extra: 1754 / 1640,
  14807. bottom: 0.01
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(80000, "feet"),
  14815. default: true
  14816. },
  14817. {
  14818. name: "Max size",
  14819. height: math.unit(10, "lightyears")
  14820. },
  14821. ]
  14822. ))
  14823. characterMakers.push(() => makeCharacter(
  14824. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14825. {
  14826. upright: {
  14827. height: math.unit(7, "feet"),
  14828. weight: math.unit(170, "lb"),
  14829. name: "Upright",
  14830. image: {
  14831. source: "./media/characters/cafat/upright.svg",
  14832. bottom: 0.01
  14833. }
  14834. },
  14835. uprightFull: {
  14836. height: math.unit(7, "feet"),
  14837. weight: math.unit(170, "lb"),
  14838. name: "Upright (Full)",
  14839. image: {
  14840. source: "./media/characters/cafat/upright-full.svg",
  14841. bottom: 0.01
  14842. }
  14843. },
  14844. side: {
  14845. height: math.unit(5, "feet"),
  14846. weight: math.unit(150, "lb"),
  14847. name: "Side",
  14848. image: {
  14849. source: "./media/characters/cafat/side.svg"
  14850. }
  14851. },
  14852. },
  14853. [
  14854. {
  14855. name: "Small",
  14856. height: math.unit(7, "feet"),
  14857. default: true
  14858. },
  14859. {
  14860. name: "Large",
  14861. height: math.unit(15.5, "feet")
  14862. },
  14863. ]
  14864. ))
  14865. characterMakers.push(() => makeCharacter(
  14866. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14867. {
  14868. front: {
  14869. height: math.unit(6, "feet"),
  14870. weight: math.unit(150, "lb"),
  14871. name: "Front",
  14872. image: {
  14873. source: "./media/characters/verin-raharra/front.svg",
  14874. extra: 5019 / 4835,
  14875. bottom: 0.023
  14876. }
  14877. },
  14878. },
  14879. [
  14880. {
  14881. name: "Normal",
  14882. height: math.unit(7 + 5 / 12, "feet"),
  14883. default: true
  14884. },
  14885. {
  14886. name: "Upsized",
  14887. height: math.unit(20, "feet")
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(7, "feet"),
  14896. weight: math.unit(230, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/nakata/front.svg",
  14900. extra: 1.005,
  14901. bottom: 0.01
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(7, "feet"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Big",
  14913. height: math.unit(14, "feet")
  14914. },
  14915. {
  14916. name: "Macro",
  14917. height: math.unit(400, "feet")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(4.91, "feet"),
  14926. weight: math.unit(100, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/lily/front.svg",
  14930. extra: 1585 / 1415,
  14931. bottom: 0.02
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(4.91, "feet"),
  14939. default: true
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14945. {
  14946. laying: {
  14947. height: math.unit(4 + 4 / 12, "feet"),
  14948. weight: math.unit(600, "lb"),
  14949. name: "Laying",
  14950. image: {
  14951. source: "./media/characters/sheila/laying.svg",
  14952. extra: 1333 / 1265,
  14953. bottom: 0.16
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Normal",
  14960. height: math.unit(4 + 4 / 12, "feet"),
  14961. default: true
  14962. },
  14963. ]
  14964. ))
  14965. characterMakers.push(() => makeCharacter(
  14966. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14967. {
  14968. front: {
  14969. height: math.unit(6, "feet"),
  14970. weight: math.unit(190, "lb"),
  14971. name: "Front",
  14972. image: {
  14973. source: "./media/characters/sax/front.svg",
  14974. extra: 1187 / 973,
  14975. bottom: 0.042
  14976. }
  14977. },
  14978. },
  14979. [
  14980. {
  14981. name: "Micro",
  14982. height: math.unit(4, "inches"),
  14983. default: true
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14989. {
  14990. front: {
  14991. height: math.unit(6, "feet"),
  14992. weight: math.unit(150, "lb"),
  14993. name: "Front",
  14994. image: {
  14995. source: "./media/characters/pandora/front.svg",
  14996. extra: 2720 / 2556,
  14997. bottom: 0.015
  14998. }
  14999. },
  15000. back: {
  15001. height: math.unit(6, "feet"),
  15002. weight: math.unit(150, "lb"),
  15003. name: "Back",
  15004. image: {
  15005. source: "./media/characters/pandora/back.svg",
  15006. extra: 2720 / 2556,
  15007. bottom: 0.01
  15008. }
  15009. },
  15010. beans: {
  15011. height: math.unit(6 / 8, "feet"),
  15012. name: "Beans",
  15013. image: {
  15014. source: "./media/characters/pandora/beans.svg"
  15015. }
  15016. },
  15017. skirt: {
  15018. height: math.unit(6, "feet"),
  15019. weight: math.unit(150, "lb"),
  15020. name: "Skirt",
  15021. image: {
  15022. source: "./media/characters/pandora/skirt.svg",
  15023. extra: 1622 / 1525,
  15024. bottom: 0.015
  15025. }
  15026. },
  15027. hoodie: {
  15028. height: math.unit(6, "feet"),
  15029. weight: math.unit(150, "lb"),
  15030. name: "Hoodie",
  15031. image: {
  15032. source: "./media/characters/pandora/hoodie.svg",
  15033. extra: 1622 / 1525,
  15034. bottom: 0.015
  15035. }
  15036. },
  15037. casual: {
  15038. height: math.unit(6, "feet"),
  15039. weight: math.unit(150, "lb"),
  15040. name: "Casual",
  15041. image: {
  15042. source: "./media/characters/pandora/casual.svg",
  15043. extra: 1622 / 1525,
  15044. bottom: 0.015
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(6, "feet")
  15052. },
  15053. {
  15054. name: "Big Steppy",
  15055. height: math.unit(1, "km"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15062. {
  15063. side: {
  15064. height: math.unit(10, "feet"),
  15065. weight: math.unit(800, "kg"),
  15066. name: "Side",
  15067. image: {
  15068. source: "./media/characters/venio-darcony/side.svg",
  15069. extra: 1373 / 1003,
  15070. bottom: 0.037
  15071. }
  15072. },
  15073. front: {
  15074. height: math.unit(19, "feet"),
  15075. weight: math.unit(800, "kg"),
  15076. name: "Front",
  15077. image: {
  15078. source: "./media/characters/venio-darcony/front.svg"
  15079. }
  15080. },
  15081. back: {
  15082. height: math.unit(19, "feet"),
  15083. weight: math.unit(800, "kg"),
  15084. name: "Back",
  15085. image: {
  15086. source: "./media/characters/venio-darcony/back.svg"
  15087. }
  15088. },
  15089. sideNsfw: {
  15090. height: math.unit(10, "feet"),
  15091. weight: math.unit(800, "kg"),
  15092. name: "Side (NSFW)",
  15093. image: {
  15094. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15095. extra: 1373 / 1003,
  15096. bottom: 0.037
  15097. }
  15098. },
  15099. frontNsfw: {
  15100. height: math.unit(19, "feet"),
  15101. weight: math.unit(800, "kg"),
  15102. name: "Front (NSFW)",
  15103. image: {
  15104. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15105. }
  15106. },
  15107. backNsfw: {
  15108. height: math.unit(19, "feet"),
  15109. weight: math.unit(800, "kg"),
  15110. name: "Back (NSFW)",
  15111. image: {
  15112. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15113. }
  15114. },
  15115. sideArmored: {
  15116. height: math.unit(10, "feet"),
  15117. weight: math.unit(800, "kg"),
  15118. name: "Side (Armored)",
  15119. image: {
  15120. source: "./media/characters/venio-darcony/side-armored.svg",
  15121. extra: 1373 / 1003,
  15122. bottom: 0.037
  15123. }
  15124. },
  15125. frontArmored: {
  15126. height: math.unit(19, "feet"),
  15127. weight: math.unit(900, "kg"),
  15128. name: "Front (Armored)",
  15129. image: {
  15130. source: "./media/characters/venio-darcony/front-armored.svg"
  15131. }
  15132. },
  15133. backArmored: {
  15134. height: math.unit(19, "feet"),
  15135. weight: math.unit(900, "kg"),
  15136. name: "Back (Armored)",
  15137. image: {
  15138. source: "./media/characters/venio-darcony/back-armored.svg"
  15139. }
  15140. },
  15141. sword: {
  15142. height: math.unit(10, "feet"),
  15143. weight: math.unit(50, "lb"),
  15144. name: "Sword",
  15145. image: {
  15146. source: "./media/characters/venio-darcony/sword.svg"
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(10, "feet")
  15154. },
  15155. {
  15156. name: "Macro",
  15157. height: math.unit(130, "feet"),
  15158. default: true
  15159. },
  15160. {
  15161. name: "Macro+",
  15162. height: math.unit(240, "feet")
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(6, "feet"),
  15171. weight: math.unit(150, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/veski/front.svg",
  15175. extra: 1299 / 1225,
  15176. bottom: 0.04
  15177. }
  15178. },
  15179. back: {
  15180. height: math.unit(6, "feet"),
  15181. weight: math.unit(150, "lb"),
  15182. name: "Back",
  15183. image: {
  15184. source: "./media/characters/veski/back.svg",
  15185. extra: 1299 / 1225,
  15186. bottom: 0.008
  15187. }
  15188. },
  15189. maw: {
  15190. height: math.unit(1.5 * 1.21, "feet"),
  15191. name: "Maw",
  15192. image: {
  15193. source: "./media/characters/veski/maw.svg"
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Macro",
  15200. height: math.unit(2, "km"),
  15201. default: true
  15202. },
  15203. ]
  15204. ))
  15205. characterMakers.push(() => makeCharacter(
  15206. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15207. {
  15208. front: {
  15209. height: math.unit(5 + 7 / 12, "feet"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/isabelle/front.svg",
  15213. extra: 2130 / 1976,
  15214. bottom: 0.05
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Supermicro",
  15221. height: math.unit(10, "micrometers")
  15222. },
  15223. {
  15224. name: "Micro",
  15225. height: math.unit(1, "inch")
  15226. },
  15227. {
  15228. name: "Tiny",
  15229. height: math.unit(5, "inches")
  15230. },
  15231. {
  15232. name: "Standard",
  15233. height: math.unit(5 + 7 / 12, "inches")
  15234. },
  15235. {
  15236. name: "Macro",
  15237. height: math.unit(80, "meters"),
  15238. default: true
  15239. },
  15240. {
  15241. name: "Megamacro",
  15242. height: math.unit(250, "meters")
  15243. },
  15244. {
  15245. name: "Gigamacro",
  15246. height: math.unit(5, "km")
  15247. },
  15248. {
  15249. name: "Cosmic",
  15250. height: math.unit(2.5e6, "miles")
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15256. {
  15257. front: {
  15258. height: math.unit(6, "feet"),
  15259. weight: math.unit(150, "lb"),
  15260. name: "Front",
  15261. image: {
  15262. source: "./media/characters/hanzo/front.svg",
  15263. extra: 374 / 344,
  15264. bottom: 0.02
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(8, "feet"),
  15272. default: true
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15278. {
  15279. front: {
  15280. height: math.unit(7, "feet"),
  15281. weight: math.unit(130, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/anna/front.svg",
  15285. extra: 169 / 145,
  15286. bottom: 0.06
  15287. }
  15288. },
  15289. full: {
  15290. height: math.unit(4.96, "feet"),
  15291. weight: math.unit(220, "lb"),
  15292. name: "Full",
  15293. image: {
  15294. source: "./media/characters/anna/full.svg",
  15295. extra: 138 / 114,
  15296. bottom: 0.15
  15297. }
  15298. },
  15299. tongue: {
  15300. height: math.unit(2.53, "feet"),
  15301. name: "Tongue",
  15302. image: {
  15303. source: "./media/characters/anna/tongue.svg"
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(7, "feet"),
  15311. default: true
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(7, "feet"),
  15320. weight: math.unit(150, "lb"),
  15321. name: "Front",
  15322. image: {
  15323. source: "./media/characters/ian-corvid/front.svg",
  15324. extra: 150 / 142,
  15325. bottom: 0.02
  15326. }
  15327. },
  15328. back: {
  15329. height: math.unit(7, "feet"),
  15330. weight: math.unit(150, "lb"),
  15331. name: "Back",
  15332. image: {
  15333. source: "./media/characters/ian-corvid/back.svg",
  15334. extra: 150 / 143,
  15335. bottom: 0.01
  15336. }
  15337. },
  15338. stomping: {
  15339. height: math.unit(7, "feet"),
  15340. weight: math.unit(150, "lb"),
  15341. name: "Stomping",
  15342. image: {
  15343. source: "./media/characters/ian-corvid/stomping.svg",
  15344. extra: 76 / 72
  15345. }
  15346. },
  15347. sitting: {
  15348. height: math.unit(7 / 1.8, "feet"),
  15349. weight: math.unit(150, "lb"),
  15350. name: "Sitting",
  15351. image: {
  15352. source: "./media/characters/ian-corvid/sitting.svg",
  15353. extra: 1400 / 1269,
  15354. bottom: 0.15
  15355. }
  15356. },
  15357. },
  15358. [
  15359. {
  15360. name: "Tiny Microw",
  15361. height: math.unit(1, "inch")
  15362. },
  15363. {
  15364. name: "Microw",
  15365. height: math.unit(6, "inches")
  15366. },
  15367. {
  15368. name: "Crow",
  15369. height: math.unit(7 + 1 / 12, "feet"),
  15370. default: true
  15371. },
  15372. {
  15373. name: "Macrow",
  15374. height: math.unit(176, "feet")
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15380. {
  15381. front: {
  15382. height: math.unit(5 + 7 / 12, "feet"),
  15383. weight: math.unit(147, "lb"),
  15384. name: "Front",
  15385. image: {
  15386. source: "./media/characters/natalie-kellon/front.svg",
  15387. extra: 1214 / 1141,
  15388. bottom: 0.02
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Micro",
  15395. height: math.unit(1 / 16, "inch")
  15396. },
  15397. {
  15398. name: "Tiny",
  15399. height: math.unit(4, "inches")
  15400. },
  15401. {
  15402. name: "Normal",
  15403. height: math.unit(5 + 7 / 12, "feet"),
  15404. default: true
  15405. },
  15406. {
  15407. name: "Amazon",
  15408. height: math.unit(12, "feet")
  15409. },
  15410. {
  15411. name: "Giantess",
  15412. height: math.unit(160, "meters")
  15413. },
  15414. {
  15415. name: "Titaness",
  15416. height: math.unit(800, "meters")
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(150, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/alluria/front.svg",
  15429. extra: 806 / 738,
  15430. bottom: 0.01
  15431. }
  15432. },
  15433. side: {
  15434. height: math.unit(6, "feet"),
  15435. weight: math.unit(150, "lb"),
  15436. name: "Side",
  15437. image: {
  15438. source: "./media/characters/alluria/side.svg",
  15439. extra: 800 / 750,
  15440. }
  15441. },
  15442. back: {
  15443. height: math.unit(6, "feet"),
  15444. weight: math.unit(150, "lb"),
  15445. name: "Back",
  15446. image: {
  15447. source: "./media/characters/alluria/back.svg",
  15448. extra: 806 / 738,
  15449. }
  15450. },
  15451. frontMaid: {
  15452. height: math.unit(6, "feet"),
  15453. weight: math.unit(150, "lb"),
  15454. name: "Front (Maid)",
  15455. image: {
  15456. source: "./media/characters/alluria/front-maid.svg",
  15457. extra: 806 / 738,
  15458. bottom: 0.01
  15459. }
  15460. },
  15461. sideMaid: {
  15462. height: math.unit(6, "feet"),
  15463. weight: math.unit(150, "lb"),
  15464. name: "Side (Maid)",
  15465. image: {
  15466. source: "./media/characters/alluria/side-maid.svg",
  15467. extra: 800 / 750,
  15468. bottom: 0.005
  15469. }
  15470. },
  15471. backMaid: {
  15472. height: math.unit(6, "feet"),
  15473. weight: math.unit(150, "lb"),
  15474. name: "Back (Maid)",
  15475. image: {
  15476. source: "./media/characters/alluria/back-maid.svg",
  15477. extra: 806 / 738,
  15478. }
  15479. },
  15480. },
  15481. [
  15482. {
  15483. name: "Micro",
  15484. height: math.unit(6, "inches"),
  15485. default: true
  15486. },
  15487. ]
  15488. ))
  15489. characterMakers.push(() => makeCharacter(
  15490. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15491. {
  15492. front: {
  15493. height: math.unit(6, "feet"),
  15494. weight: math.unit(150, "lb"),
  15495. name: "Front",
  15496. image: {
  15497. source: "./media/characters/kyle/front.svg",
  15498. extra: 1069 / 962,
  15499. bottom: 77.228 / 1727.45
  15500. }
  15501. },
  15502. },
  15503. [
  15504. {
  15505. name: "Macro",
  15506. height: math.unit(150, "feet"),
  15507. default: true
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15513. {
  15514. front: {
  15515. height: math.unit(6, "feet"),
  15516. weight: math.unit(300, "lb"),
  15517. name: "Front",
  15518. image: {
  15519. source: "./media/characters/duncan/front.svg",
  15520. extra: 1650 / 1482,
  15521. bottom: 0.05
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Macro",
  15528. height: math.unit(100, "feet"),
  15529. default: true
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(5 + 4 / 12, "feet"),
  15538. weight: math.unit(220, "lb"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/memory/front.svg",
  15542. extra: 3641 / 3545,
  15543. bottom: 0.03
  15544. }
  15545. },
  15546. back: {
  15547. height: math.unit(5 + 4 / 12, "feet"),
  15548. weight: math.unit(220, "lb"),
  15549. name: "Back",
  15550. image: {
  15551. source: "./media/characters/memory/back.svg",
  15552. extra: 3641 / 3545,
  15553. bottom: 0.025
  15554. }
  15555. },
  15556. frontSkirt: {
  15557. height: math.unit(5 + 4 / 12, "feet"),
  15558. weight: math.unit(220, "lb"),
  15559. name: "Front (Skirt)",
  15560. image: {
  15561. source: "./media/characters/memory/front-skirt.svg",
  15562. extra: 3641 / 3545,
  15563. bottom: 0.03
  15564. }
  15565. },
  15566. frontDress: {
  15567. height: math.unit(5 + 4 / 12, "feet"),
  15568. weight: math.unit(220, "lb"),
  15569. name: "Front (Dress)",
  15570. image: {
  15571. source: "./media/characters/memory/front-dress.svg",
  15572. extra: 3641 / 3545,
  15573. bottom: 0.03
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Micro",
  15580. height: math.unit(6, "inches"),
  15581. default: true
  15582. },
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(5 + 4 / 12, "feet")
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(4 + 11 / 12, "feet"),
  15594. weight: math.unit(100, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/luno/front.svg",
  15598. extra: 1535 / 1487,
  15599. bottom: 0.03
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Micro",
  15606. height: math.unit(3, "inches")
  15607. },
  15608. {
  15609. name: "Normal",
  15610. height: math.unit(4 + 11 / 12, "feet"),
  15611. default: true
  15612. },
  15613. {
  15614. name: "Macro",
  15615. height: math.unit(300, "feet")
  15616. },
  15617. {
  15618. name: "Megamacro",
  15619. height: math.unit(700, "miles")
  15620. },
  15621. ]
  15622. ))
  15623. characterMakers.push(() => makeCharacter(
  15624. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15625. {
  15626. front: {
  15627. height: math.unit(6 + 2 / 12, "feet"),
  15628. weight: math.unit(170, "lb"),
  15629. name: "Front",
  15630. image: {
  15631. source: "./media/characters/jamesy/front.svg",
  15632. extra: 440 / 382,
  15633. bottom: 0.005
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "Micro",
  15640. height: math.unit(3, "inches")
  15641. },
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(6 + 2 / 12, "feet"),
  15645. default: true
  15646. },
  15647. {
  15648. name: "Macro",
  15649. height: math.unit(300, "feet")
  15650. },
  15651. {
  15652. name: "Megamacro",
  15653. height: math.unit(700, "miles")
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(6, "feet"),
  15662. weight: math.unit(160, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/mark/front.svg",
  15666. extra: 3300 / 3100,
  15667. bottom: 136.42 / 3440.47
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Macro",
  15674. height: math.unit(120, "meters")
  15675. },
  15676. {
  15677. name: "Bigger Macro",
  15678. height: math.unit(350, "meters")
  15679. },
  15680. {
  15681. name: "Megamacro",
  15682. height: math.unit(8, "km"),
  15683. default: true
  15684. },
  15685. {
  15686. name: "Continental",
  15687. height: math.unit(4550, "km")
  15688. },
  15689. {
  15690. name: "Planetary",
  15691. height: math.unit(65000, "km")
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(6, "feet"),
  15700. weight: math.unit(400, "lb"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/mac/front.svg",
  15704. extra: 1048 / 987.7,
  15705. bottom: 60 / 1107.6,
  15706. }
  15707. },
  15708. },
  15709. [
  15710. {
  15711. name: "Macro",
  15712. height: math.unit(500, "feet"),
  15713. default: true
  15714. },
  15715. ]
  15716. ))
  15717. characterMakers.push(() => makeCharacter(
  15718. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15719. {
  15720. front: {
  15721. height: math.unit(5 + 2 / 12, "feet"),
  15722. weight: math.unit(190, "lb"),
  15723. name: "Front",
  15724. image: {
  15725. source: "./media/characters/bari/front.svg",
  15726. extra: 3156 / 2880,
  15727. bottom: 0.03
  15728. }
  15729. },
  15730. back: {
  15731. height: math.unit(5 + 2 / 12, "feet"),
  15732. weight: math.unit(190, "lb"),
  15733. name: "Back",
  15734. image: {
  15735. source: "./media/characters/bari/back.svg",
  15736. extra: 3260 / 2834,
  15737. bottom: 0.025
  15738. }
  15739. },
  15740. frontPlush: {
  15741. height: math.unit(5 + 2 / 12, "feet"),
  15742. weight: math.unit(190, "lb"),
  15743. name: "Front (Plush)",
  15744. image: {
  15745. source: "./media/characters/bari/front-plush.svg",
  15746. extra: 1112 / 1061,
  15747. bottom: 0.002
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Micro",
  15754. height: math.unit(3, "inches")
  15755. },
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(5 + 2 / 12, "feet"),
  15759. default: true
  15760. },
  15761. {
  15762. name: "Macro",
  15763. height: math.unit(20, "feet")
  15764. },
  15765. ]
  15766. ))
  15767. characterMakers.push(() => makeCharacter(
  15768. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15769. {
  15770. front: {
  15771. height: math.unit(6 + 1 / 12, "feet"),
  15772. weight: math.unit(275, "lb"),
  15773. name: "Front",
  15774. image: {
  15775. source: "./media/characters/hunter-misha-raven/front.svg"
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Mortal",
  15782. height: math.unit(6 + 1 / 12, "feet")
  15783. },
  15784. {
  15785. name: "Divine",
  15786. height: math.unit(1.12134e34, "parsecs"),
  15787. default: true
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15793. {
  15794. front: {
  15795. height: math.unit(6 + 3 / 12, "feet"),
  15796. weight: math.unit(220, "lb"),
  15797. name: "Front",
  15798. image: {
  15799. source: "./media/characters/max-calore/front.svg",
  15800. extra: 1700 / 1648,
  15801. bottom: 0.01
  15802. }
  15803. },
  15804. back: {
  15805. height: math.unit(6 + 3 / 12, "feet"),
  15806. weight: math.unit(220, "lb"),
  15807. name: "Back",
  15808. image: {
  15809. source: "./media/characters/max-calore/back.svg",
  15810. extra: 1700 / 1648,
  15811. bottom: 0.01
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(6 + 3 / 12, "feet"),
  15819. default: true
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15825. {
  15826. side: {
  15827. height: math.unit(2 + 8 / 12, "feet"),
  15828. weight: math.unit(99, "lb"),
  15829. name: "Side",
  15830. image: {
  15831. source: "./media/characters/aspen/side.svg",
  15832. extra: 152 / 138,
  15833. bottom: 0.032
  15834. }
  15835. },
  15836. },
  15837. [
  15838. {
  15839. name: "Normal",
  15840. height: math.unit(2 + 8 / 12, "feet"),
  15841. default: true
  15842. },
  15843. ]
  15844. ))
  15845. characterMakers.push(() => makeCharacter(
  15846. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15847. {
  15848. side: {
  15849. height: math.unit(3 + 2 / 12, "feet"),
  15850. weight: math.unit(224, "lb"),
  15851. name: "Side",
  15852. image: {
  15853. source: "./media/characters/sheila-feral-wolf/side.svg",
  15854. extra: 179 / 166,
  15855. bottom: 0.03
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Normal",
  15862. height: math.unit(3 + 2 / 12, "feet"),
  15863. default: true
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15869. {
  15870. side: {
  15871. height: math.unit(1 + 9 / 12, "feet"),
  15872. weight: math.unit(38, "lb"),
  15873. name: "Side",
  15874. image: {
  15875. source: "./media/characters/michelle/side.svg",
  15876. extra: 147 / 136.7,
  15877. bottom: 0.03
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(1 + 9 / 12, "feet"),
  15885. default: true
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(1 + 1 / 12, "feet"),
  15894. weight: math.unit(18, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/nino/front.svg"
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(1 + 1 / 12, "feet"),
  15905. default: true
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(1, "feet"),
  15914. weight: math.unit(16, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/viola/front.svg"
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(1, "feet"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15931. {
  15932. front: {
  15933. height: math.unit(6 + 5 / 12, "feet"),
  15934. weight: math.unit(580, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/atlas/front.svg",
  15938. extra: 298.5 / 290,
  15939. bottom: 0.015
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Normal",
  15946. height: math.unit(6 + 5 / 12, "feet"),
  15947. default: true
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15953. {
  15954. side: {
  15955. height: math.unit(1 + 10 / 12, "feet"),
  15956. weight: math.unit(25, "lb"),
  15957. name: "Side",
  15958. image: {
  15959. source: "./media/characters/davy/side.svg",
  15960. extra: 200 / 170,
  15961. bottom: 0.01
  15962. }
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(1 + 10 / 12, "feet"),
  15969. default: true
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15975. {
  15976. side: {
  15977. height: math.unit(4 + 8 / 12, "feet"),
  15978. weight: math.unit(166, "lb"),
  15979. name: "Side",
  15980. image: {
  15981. source: "./media/characters/fiona/side.svg",
  15982. extra: 232 / 220,
  15983. bottom: 0.03
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(4 + 8 / 12, "feet"),
  15991. default: true
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15997. {
  15998. front: {
  15999. height: math.unit(2, "feet"),
  16000. weight: math.unit(62, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/lyla/front.svg",
  16004. bottom: 0.1
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(2, "feet"),
  16012. default: true
  16013. },
  16014. ]
  16015. ))
  16016. characterMakers.push(() => makeCharacter(
  16017. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16018. {
  16019. side: {
  16020. height: math.unit(1.8, "feet"),
  16021. weight: math.unit(44, "lb"),
  16022. name: "Side",
  16023. image: {
  16024. source: "./media/characters/perseus/side.svg",
  16025. bottom: 0.21
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Normal",
  16032. height: math.unit(1.8, "feet"),
  16033. default: true
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16039. {
  16040. side: {
  16041. height: math.unit(4 + 2 / 12, "feet"),
  16042. weight: math.unit(20, "lb"),
  16043. name: "Side",
  16044. image: {
  16045. source: "./media/characters/remus/side.svg"
  16046. }
  16047. },
  16048. },
  16049. [
  16050. {
  16051. name: "Normal",
  16052. height: math.unit(4 + 2 / 12, "feet"),
  16053. default: true
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16059. {
  16060. front: {
  16061. height: math.unit(4 + 11 / 12, "feet"),
  16062. weight: math.unit(114, "lb"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/raf/front.svg",
  16066. bottom: 0.01
  16067. }
  16068. },
  16069. side: {
  16070. height: math.unit(4 + 11 / 12, "feet"),
  16071. weight: math.unit(114, "lb"),
  16072. name: "Side",
  16073. image: {
  16074. source: "./media/characters/raf/side.svg",
  16075. bottom: 0.005
  16076. }
  16077. },
  16078. },
  16079. [
  16080. {
  16081. name: "Micro",
  16082. height: math.unit(2, "inches")
  16083. },
  16084. {
  16085. name: "Normal",
  16086. height: math.unit(4 + 11 / 12, "feet"),
  16087. default: true
  16088. },
  16089. {
  16090. name: "Macro",
  16091. height: math.unit(70, "feet")
  16092. },
  16093. ]
  16094. ))
  16095. characterMakers.push(() => makeCharacter(
  16096. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16097. {
  16098. front: {
  16099. height: math.unit(1.5, "meters"),
  16100. weight: math.unit(68, "kg"),
  16101. name: "Front",
  16102. image: {
  16103. source: "./media/characters/liam-einarr/front.svg",
  16104. extra: 2822 / 2666
  16105. }
  16106. },
  16107. back: {
  16108. height: math.unit(1.5, "meters"),
  16109. weight: math.unit(68, "kg"),
  16110. name: "Back",
  16111. image: {
  16112. source: "./media/characters/liam-einarr/back.svg",
  16113. extra: 2822 / 2666,
  16114. bottom: 0.015
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(1.5, "meters"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Macro",
  16126. height: math.unit(150, "meters")
  16127. },
  16128. {
  16129. name: "Megamacro",
  16130. height: math.unit(35, "km")
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16136. {
  16137. front: {
  16138. height: math.unit(6, "feet"),
  16139. weight: math.unit(75, "kg"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/linda/front.svg",
  16143. extra: 930 / 874,
  16144. bottom: 0.004
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Normal",
  16151. height: math.unit(6, "feet"),
  16152. default: true
  16153. },
  16154. ]
  16155. ))
  16156. characterMakers.push(() => makeCharacter(
  16157. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16158. {
  16159. front: {
  16160. height: math.unit(6 + 8 / 12, "feet"),
  16161. weight: math.unit(220, "lb"),
  16162. name: "Front",
  16163. image: {
  16164. source: "./media/characters/caylex/front.svg",
  16165. extra: 821 / 772,
  16166. bottom: 0.07
  16167. }
  16168. },
  16169. back: {
  16170. height: math.unit(6 + 8 / 12, "feet"),
  16171. weight: math.unit(220, "lb"),
  16172. name: "Back",
  16173. image: {
  16174. source: "./media/characters/caylex/back.svg",
  16175. extra: 821 / 772,
  16176. bottom: 0.022
  16177. }
  16178. },
  16179. hand: {
  16180. height: math.unit(1.25, "feet"),
  16181. name: "Hand",
  16182. image: {
  16183. source: "./media/characters/caylex/hand.svg"
  16184. }
  16185. },
  16186. foot: {
  16187. height: math.unit(1.6, "feet"),
  16188. name: "Foot",
  16189. image: {
  16190. source: "./media/characters/caylex/foot.svg"
  16191. }
  16192. },
  16193. armored: {
  16194. height: math.unit(6 + 8 / 12, "feet"),
  16195. weight: math.unit(250, "lb"),
  16196. name: "Armored",
  16197. image: {
  16198. source: "./media/characters/caylex/armored.svg",
  16199. extra: 1420 / 1310,
  16200. bottom: 0.045
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Normal",
  16207. height: math.unit(6 + 8 / 12, "feet"),
  16208. default: true
  16209. },
  16210. {
  16211. name: "Normal+",
  16212. height: math.unit(12, "feet")
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16218. {
  16219. front: {
  16220. height: math.unit(7 + 6 / 12, "feet"),
  16221. weight: math.unit(288, "lb"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/alana/front.svg",
  16225. extra: 679 / 653,
  16226. bottom: 22.5 / 701
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(7 + 6 / 12, "feet")
  16234. },
  16235. {
  16236. name: "Large",
  16237. height: math.unit(50, "feet")
  16238. },
  16239. {
  16240. name: "Macro",
  16241. height: math.unit(100, "feet"),
  16242. default: true
  16243. },
  16244. {
  16245. name: "Macro+",
  16246. height: math.unit(200, "feet")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(6 + 1 / 12, "feet"),
  16255. weight: math.unit(210, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/hasani/front.svg",
  16259. extra: 244 / 232,
  16260. bottom: 0.01
  16261. }
  16262. },
  16263. back: {
  16264. height: math.unit(6 + 1 / 12, "feet"),
  16265. weight: math.unit(210, "lb"),
  16266. name: "Back",
  16267. image: {
  16268. source: "./media/characters/hasani/back.svg",
  16269. extra: 244 / 232,
  16270. bottom: 0.01
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Normal",
  16277. height: math.unit(6 + 1 / 12, "feet")
  16278. },
  16279. {
  16280. name: "Macro",
  16281. height: math.unit(175, "feet"),
  16282. default: true
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16288. {
  16289. front: {
  16290. height: math.unit(1.82, "meters"),
  16291. weight: math.unit(140, "lb"),
  16292. name: "Front",
  16293. image: {
  16294. source: "./media/characters/nita/front.svg",
  16295. extra: 2473 / 2363,
  16296. bottom: 0.01
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Normal",
  16303. height: math.unit(1.82, "m")
  16304. },
  16305. {
  16306. name: "Macro",
  16307. height: math.unit(300, "m")
  16308. },
  16309. {
  16310. name: "Mistake Canon",
  16311. height: math.unit(0.5, "miles"),
  16312. default: true
  16313. },
  16314. {
  16315. name: "Big Mistake",
  16316. height: math.unit(13, "miles")
  16317. },
  16318. {
  16319. name: "Playing God",
  16320. height: math.unit(2450, "miles")
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(4, "feet"),
  16329. weight: math.unit(120, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/shiriko/front.svg",
  16333. extra: 195 / 188
  16334. }
  16335. },
  16336. },
  16337. [
  16338. {
  16339. name: "Normal",
  16340. height: math.unit(4, "feet"),
  16341. default: true
  16342. },
  16343. ]
  16344. ))
  16345. characterMakers.push(() => makeCharacter(
  16346. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16347. {
  16348. front: {
  16349. height: math.unit(6, "feet"),
  16350. name: "front",
  16351. image: {
  16352. source: "./media/characters/deja/front.svg",
  16353. extra: 926 / 840,
  16354. bottom: 0.07
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Planck Length",
  16361. height: math.unit(1.6e-35, "meters")
  16362. },
  16363. {
  16364. name: "Normal",
  16365. height: math.unit(30.48, "meters"),
  16366. default: true
  16367. },
  16368. {
  16369. name: "Universal",
  16370. height: math.unit(8.8e26, "meters")
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16376. {
  16377. side: {
  16378. height: math.unit(8, "feet"),
  16379. weight: math.unit(6300, "lb"),
  16380. name: "Side",
  16381. image: {
  16382. source: "./media/characters/anima/side.svg",
  16383. bottom: 0.035
  16384. }
  16385. },
  16386. },
  16387. [
  16388. {
  16389. name: "Normal",
  16390. height: math.unit(8, "feet"),
  16391. default: true
  16392. },
  16393. ]
  16394. ))
  16395. characterMakers.push(() => makeCharacter(
  16396. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16397. {
  16398. front: {
  16399. height: math.unit(8, "feet"),
  16400. weight: math.unit(350, "lb"),
  16401. name: "Front",
  16402. image: {
  16403. source: "./media/characters/bianca/front.svg",
  16404. extra: 234 / 225,
  16405. bottom: 0.03
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(8, "feet"),
  16413. default: true
  16414. },
  16415. ]
  16416. ))
  16417. characterMakers.push(() => makeCharacter(
  16418. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16419. {
  16420. front: {
  16421. height: math.unit(6, "feet"),
  16422. weight: math.unit(150, "lb"),
  16423. name: "Front",
  16424. image: {
  16425. source: "./media/characters/adinia/front.svg",
  16426. extra: 1845 / 1672,
  16427. bottom: 0.02
  16428. }
  16429. },
  16430. back: {
  16431. height: math.unit(6, "feet"),
  16432. weight: math.unit(150, "lb"),
  16433. name: "Back",
  16434. image: {
  16435. source: "./media/characters/adinia/back.svg",
  16436. extra: 1845 / 1672,
  16437. bottom: 0.002
  16438. }
  16439. },
  16440. },
  16441. [
  16442. {
  16443. name: "Normal",
  16444. height: math.unit(11 + 5 / 12, "feet"),
  16445. default: true
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(3, "meters"),
  16454. weight: math.unit(200, "kg"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/lykasa/front.svg",
  16458. extra: 1076 / 976,
  16459. bottom: 0.06
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(3, "meters")
  16467. },
  16468. {
  16469. name: "Kaiju",
  16470. height: math.unit(120, "meters"),
  16471. default: true
  16472. },
  16473. {
  16474. name: "Mega Kaiju",
  16475. height: math.unit(240, "km")
  16476. },
  16477. {
  16478. name: "Giga Kaiju",
  16479. height: math.unit(400, "megameters")
  16480. },
  16481. {
  16482. name: "Tera Kaiju",
  16483. height: math.unit(800, "gigameters")
  16484. },
  16485. {
  16486. name: "Kaiju Dragon Goddess",
  16487. height: math.unit(26, "zettaparsecs")
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16493. {
  16494. side: {
  16495. height: math.unit(283 / 124 * 6, "feet"),
  16496. weight: math.unit(35000, "lb"),
  16497. name: "Side",
  16498. image: {
  16499. source: "./media/characters/malfaren/side.svg",
  16500. extra: 2500 / 1010,
  16501. bottom: 0.01
  16502. }
  16503. },
  16504. front: {
  16505. height: math.unit(22.36, "feet"),
  16506. weight: math.unit(35000, "lb"),
  16507. name: "Front",
  16508. image: {
  16509. source: "./media/characters/malfaren/front.svg",
  16510. extra: 1631 / 1476,
  16511. bottom: 0.01
  16512. }
  16513. },
  16514. maw: {
  16515. height: math.unit(6.9, "feet"),
  16516. name: "Maw",
  16517. image: {
  16518. source: "./media/characters/malfaren/maw.svg"
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Big",
  16525. height: math.unit(283 / 162 * 6, "feet"),
  16526. },
  16527. {
  16528. name: "Bigger",
  16529. height: math.unit(283 / 124 * 6, "feet")
  16530. },
  16531. {
  16532. name: "Massive",
  16533. height: math.unit(283 / 92 * 6, "feet"),
  16534. default: true
  16535. },
  16536. {
  16537. name: "👀💦",
  16538. height: math.unit(283 / 73 * 6, "feet"),
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16544. {
  16545. front: {
  16546. height: math.unit(1.7, "m"),
  16547. weight: math.unit(70, "kg"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/kernel/front.svg",
  16551. extra: 222 / 210,
  16552. bottom: 0.007
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Nano",
  16559. height: math.unit(17, "micrometers")
  16560. },
  16561. {
  16562. name: "Micro",
  16563. height: math.unit(1.7, "mm")
  16564. },
  16565. {
  16566. name: "Small",
  16567. height: math.unit(1.7, "cm")
  16568. },
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(1.7, "m"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(1.75, "meters"),
  16581. weight: math.unit(65, "kg"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/jayne-folest/front.svg",
  16585. extra: 2115 / 2007,
  16586. bottom: 0.02
  16587. }
  16588. },
  16589. back: {
  16590. height: math.unit(1.75, "meters"),
  16591. weight: math.unit(65, "kg"),
  16592. name: "Back",
  16593. image: {
  16594. source: "./media/characters/jayne-folest/back.svg",
  16595. extra: 2115 / 2007,
  16596. bottom: 0.005
  16597. }
  16598. },
  16599. frontClothed: {
  16600. height: math.unit(1.75, "meters"),
  16601. weight: math.unit(65, "kg"),
  16602. name: "Front (Clothed)",
  16603. image: {
  16604. source: "./media/characters/jayne-folest/front-clothed.svg",
  16605. extra: 2115 / 2007,
  16606. bottom: 0.035
  16607. }
  16608. },
  16609. hand: {
  16610. height: math.unit(1 / 1.260, "feet"),
  16611. name: "Hand",
  16612. image: {
  16613. source: "./media/characters/jayne-folest/hand.svg"
  16614. }
  16615. },
  16616. foot: {
  16617. height: math.unit(1 / 0.918, "feet"),
  16618. name: "Foot",
  16619. image: {
  16620. source: "./media/characters/jayne-folest/foot.svg"
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Micro",
  16627. height: math.unit(4, "cm")
  16628. },
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(1.75, "meters")
  16632. },
  16633. {
  16634. name: "Macro",
  16635. height: math.unit(47.5, "meters"),
  16636. default: true
  16637. },
  16638. ]
  16639. ))
  16640. characterMakers.push(() => makeCharacter(
  16641. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16642. {
  16643. front: {
  16644. height: math.unit(180, "cm"),
  16645. weight: math.unit(70, "kg"),
  16646. name: "Front",
  16647. image: {
  16648. source: "./media/characters/algier/front.svg",
  16649. extra: 596 / 572,
  16650. bottom: 0.04
  16651. }
  16652. },
  16653. back: {
  16654. height: math.unit(180, "cm"),
  16655. weight: math.unit(70, "kg"),
  16656. name: "Back",
  16657. image: {
  16658. source: "./media/characters/algier/back.svg",
  16659. extra: 596 / 572,
  16660. bottom: 0.025
  16661. }
  16662. },
  16663. frontdressed: {
  16664. height: math.unit(180, "cm"),
  16665. weight: math.unit(150, "kg"),
  16666. name: "Front-dressed",
  16667. image: {
  16668. source: "./media/characters/algier/front-dressed.svg",
  16669. extra: 596 / 572,
  16670. bottom: 0.038
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Micro",
  16677. height: math.unit(5, "cm")
  16678. },
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(180, "cm"),
  16682. default: true
  16683. },
  16684. {
  16685. name: "Macro",
  16686. height: math.unit(64, "m")
  16687. },
  16688. ]
  16689. ))
  16690. characterMakers.push(() => makeCharacter(
  16691. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16692. {
  16693. upright: {
  16694. height: math.unit(7, "feet"),
  16695. weight: math.unit(300, "lb"),
  16696. name: "Upright",
  16697. image: {
  16698. source: "./media/characters/pretzel/upright.svg",
  16699. extra: 534 / 522,
  16700. bottom: 0.065
  16701. }
  16702. },
  16703. sprawling: {
  16704. height: math.unit(3.75, "feet"),
  16705. weight: math.unit(300, "lb"),
  16706. name: "Sprawling",
  16707. image: {
  16708. source: "./media/characters/pretzel/sprawling.svg",
  16709. extra: 314 / 281,
  16710. bottom: 0.1
  16711. }
  16712. },
  16713. tongue: {
  16714. height: math.unit(2, "feet"),
  16715. name: "Tongue",
  16716. image: {
  16717. source: "./media/characters/pretzel/tongue.svg"
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(7, "feet"),
  16725. default: true
  16726. },
  16727. {
  16728. name: "Oversized",
  16729. height: math.unit(15, "feet")
  16730. },
  16731. {
  16732. name: "Huge",
  16733. height: math.unit(30, "feet")
  16734. },
  16735. {
  16736. name: "Macro",
  16737. height: math.unit(250, "feet")
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16743. {
  16744. sideFront: {
  16745. height: math.unit(5 + 2 / 12, "feet"),
  16746. weight: math.unit(120, "lb"),
  16747. name: "Front Side",
  16748. image: {
  16749. source: "./media/characters/roxi/side-front.svg",
  16750. extra: 2924 / 2717,
  16751. bottom: 0.08
  16752. }
  16753. },
  16754. sideBack: {
  16755. height: math.unit(5 + 2 / 12, "feet"),
  16756. weight: math.unit(120, "lb"),
  16757. name: "Back Side",
  16758. image: {
  16759. source: "./media/characters/roxi/side-back.svg",
  16760. extra: 2904 / 2693,
  16761. bottom: 0.06
  16762. }
  16763. },
  16764. front: {
  16765. height: math.unit(5 + 2 / 12, "feet"),
  16766. weight: math.unit(120, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/roxi/front.svg",
  16770. extra: 2028 / 1907,
  16771. bottom: 0.01
  16772. }
  16773. },
  16774. frontAlt: {
  16775. height: math.unit(5 + 2 / 12, "feet"),
  16776. weight: math.unit(120, "lb"),
  16777. name: "Front (Alt)",
  16778. image: {
  16779. source: "./media/characters/roxi/front-alt.svg",
  16780. extra: 1828 / 1798,
  16781. bottom: 0.01
  16782. }
  16783. },
  16784. sitting: {
  16785. height: math.unit(2.8, "feet"),
  16786. weight: math.unit(120, "lb"),
  16787. name: "Sitting",
  16788. image: {
  16789. source: "./media/characters/roxi/sitting.svg",
  16790. extra: 2660 / 2462,
  16791. bottom: 0.1
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(5 + 2 / 12, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16805. {
  16806. side: {
  16807. height: math.unit(55, "feet"),
  16808. weight: math.unit(153, "tons"),
  16809. name: "Side",
  16810. image: {
  16811. source: "./media/characters/shadow/side.svg",
  16812. extra: 701 / 628,
  16813. bottom: 0.02
  16814. }
  16815. },
  16816. flying: {
  16817. height: math.unit(145, "feet"),
  16818. weight: math.unit(153, "tons"),
  16819. name: "Flying",
  16820. image: {
  16821. source: "./media/characters/shadow/flying.svg"
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(55, "feet"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(6, "feet"),
  16838. weight: math.unit(200, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/marcie/front.svg",
  16842. extra: 960 / 876,
  16843. bottom: 58 / 1017.87
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Macro",
  16850. height: math.unit(1, "mile"),
  16851. default: true
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16857. {
  16858. front: {
  16859. height: math.unit(7, "feet"),
  16860. weight: math.unit(200, "lb"),
  16861. name: "Front",
  16862. image: {
  16863. source: "./media/characters/kachina/front.svg",
  16864. extra: 1290.68 / 1119,
  16865. bottom: 36.5 / 1327.18
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(7, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16879. {
  16880. looking: {
  16881. height: math.unit(2, "meters"),
  16882. weight: math.unit(300, "kg"),
  16883. name: "Looking",
  16884. image: {
  16885. source: "./media/characters/kash/looking.svg",
  16886. extra: 474 / 344,
  16887. bottom: 0.03
  16888. }
  16889. },
  16890. side: {
  16891. height: math.unit(2, "meters"),
  16892. weight: math.unit(300, "kg"),
  16893. name: "Side",
  16894. image: {
  16895. source: "./media/characters/kash/side.svg",
  16896. extra: 302 / 251,
  16897. bottom: 0.03
  16898. }
  16899. },
  16900. front: {
  16901. height: math.unit(2, "meters"),
  16902. weight: math.unit(300, "kg"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/kash/front.svg",
  16906. extra: 495 / 360,
  16907. bottom: 0.015
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(2, "meters"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Big",
  16919. height: math.unit(3, "meters")
  16920. },
  16921. {
  16922. name: "Large",
  16923. height: math.unit(5, "meters")
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16929. {
  16930. feeding: {
  16931. height: math.unit(6.7, "feet"),
  16932. weight: math.unit(350, "lb"),
  16933. name: "Feeding",
  16934. image: {
  16935. source: "./media/characters/lalim/feeding.svg",
  16936. }
  16937. },
  16938. },
  16939. [
  16940. {
  16941. name: "Normal",
  16942. height: math.unit(6.7, "feet"),
  16943. default: true
  16944. },
  16945. ]
  16946. ))
  16947. characterMakers.push(() => makeCharacter(
  16948. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16949. {
  16950. front: {
  16951. height: math.unit(9.5, "feet"),
  16952. weight: math.unit(600, "lb"),
  16953. name: "Front",
  16954. image: {
  16955. source: "./media/characters/de'vout/front.svg",
  16956. extra: 1443 / 1328,
  16957. bottom: 0.025
  16958. }
  16959. },
  16960. back: {
  16961. height: math.unit(9.5, "feet"),
  16962. weight: math.unit(600, "lb"),
  16963. name: "Back",
  16964. image: {
  16965. source: "./media/characters/de'vout/back.svg",
  16966. extra: 1443 / 1328
  16967. }
  16968. },
  16969. frontDressed: {
  16970. height: math.unit(9.5, "feet"),
  16971. weight: math.unit(600, "lb"),
  16972. name: "Front (Dressed",
  16973. image: {
  16974. source: "./media/characters/de'vout/front-dressed.svg",
  16975. extra: 1443 / 1328,
  16976. bottom: 0.025
  16977. }
  16978. },
  16979. backDressed: {
  16980. height: math.unit(9.5, "feet"),
  16981. weight: math.unit(600, "lb"),
  16982. name: "Back (Dressed",
  16983. image: {
  16984. source: "./media/characters/de'vout/back-dressed.svg",
  16985. extra: 1443 / 1328
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(9.5, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(8, "feet"),
  17002. weight: math.unit(225, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/talana/front.svg",
  17006. extra: 1410 / 1300,
  17007. bottom: 0.015
  17008. }
  17009. },
  17010. frontDressed: {
  17011. height: math.unit(8, "feet"),
  17012. weight: math.unit(225, "lb"),
  17013. name: "Front (Dressed",
  17014. image: {
  17015. source: "./media/characters/talana/front-dressed.svg",
  17016. extra: 1410 / 1300,
  17017. bottom: 0.015
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(8, "feet"),
  17025. default: true
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17031. {
  17032. side: {
  17033. height: math.unit(7.2, "feet"),
  17034. weight: math.unit(150, "lb"),
  17035. name: "Side",
  17036. image: {
  17037. source: "./media/characters/xeauvok/side.svg",
  17038. extra: 1975 / 1523,
  17039. bottom: 0.07
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Normal",
  17046. height: math.unit(7.2, "feet"),
  17047. default: true
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17053. {
  17054. side: {
  17055. height: math.unit(10, "feet"),
  17056. weight: math.unit(900, "kg"),
  17057. name: "Side",
  17058. image: {
  17059. source: "./media/characters/zara/side.svg",
  17060. extra: 504 / 498
  17061. }
  17062. },
  17063. },
  17064. [
  17065. {
  17066. name: "Normal",
  17067. height: math.unit(10, "feet"),
  17068. default: true
  17069. },
  17070. ]
  17071. ))
  17072. characterMakers.push(() => makeCharacter(
  17073. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17074. {
  17075. side: {
  17076. height: math.unit(6, "feet"),
  17077. weight: math.unit(150, "lb"),
  17078. name: "Side",
  17079. image: {
  17080. source: "./media/characters/richard-dragon/side.svg",
  17081. extra: 845 / 340,
  17082. bottom: 0.017
  17083. }
  17084. },
  17085. maw: {
  17086. height: math.unit(2.97, "feet"),
  17087. name: "Maw",
  17088. image: {
  17089. source: "./media/characters/richard-dragon/maw.svg"
  17090. }
  17091. },
  17092. },
  17093. [
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17098. {
  17099. front: {
  17100. height: math.unit(4, "feet"),
  17101. weight: math.unit(100, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/richard-smeargle/front.svg",
  17105. extra: 2952 / 2820,
  17106. bottom: 0.028
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(4, "feet"),
  17114. default: true
  17115. },
  17116. {
  17117. name: "Dynamax",
  17118. height: math.unit(20, "meters")
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17124. {
  17125. front: {
  17126. height: math.unit(6, "feet"),
  17127. weight: math.unit(110, "lb"),
  17128. name: "Front",
  17129. image: {
  17130. source: "./media/characters/klay/front.svg",
  17131. extra: 962 / 883,
  17132. bottom: 0.04
  17133. }
  17134. },
  17135. back: {
  17136. height: math.unit(6, "feet"),
  17137. weight: math.unit(110, "lb"),
  17138. name: "Back",
  17139. image: {
  17140. source: "./media/characters/klay/back.svg",
  17141. extra: 962 / 883
  17142. }
  17143. },
  17144. beans: {
  17145. height: math.unit(1.15, "feet"),
  17146. name: "Beans",
  17147. image: {
  17148. source: "./media/characters/klay/beans.svg"
  17149. }
  17150. },
  17151. },
  17152. [
  17153. {
  17154. name: "Micro",
  17155. height: math.unit(6, "inches")
  17156. },
  17157. {
  17158. name: "Mini",
  17159. height: math.unit(3, "feet")
  17160. },
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(6, "feet"),
  17164. default: true
  17165. },
  17166. {
  17167. name: "Big",
  17168. height: math.unit(25, "feet")
  17169. },
  17170. {
  17171. name: "Macro",
  17172. height: math.unit(100, "feet")
  17173. },
  17174. {
  17175. name: "Megamacro",
  17176. height: math.unit(400, "feet")
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(6, "feet"),
  17185. weight: math.unit(160, "lb"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/marcus/front.svg",
  17189. extra: 734 / 676,
  17190. bottom: 0.03
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Little",
  17197. height: math.unit(6, "feet")
  17198. },
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(110, "feet"),
  17202. default: true
  17203. },
  17204. {
  17205. name: "Macro",
  17206. height: math.unit(250, "feet")
  17207. },
  17208. {
  17209. name: "Megamacro",
  17210. height: math.unit(1000, "feet")
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(7, "feet"),
  17219. weight: math.unit(275, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/claude-delroute/front.svg",
  17223. extra: 230 / 214,
  17224. bottom: 0.007
  17225. }
  17226. },
  17227. side: {
  17228. height: math.unit(7, "feet"),
  17229. weight: math.unit(275, "lb"),
  17230. name: "Side",
  17231. image: {
  17232. source: "./media/characters/claude-delroute/side.svg",
  17233. extra: 222 / 214,
  17234. bottom: 0.01
  17235. }
  17236. },
  17237. back: {
  17238. height: math.unit(7, "feet"),
  17239. weight: math.unit(275, "lb"),
  17240. name: "Back",
  17241. image: {
  17242. source: "./media/characters/claude-delroute/back.svg",
  17243. extra: 230 / 214,
  17244. bottom: 0.015
  17245. }
  17246. },
  17247. maw: {
  17248. height: math.unit(0.6407, "meters"),
  17249. name: "Maw",
  17250. image: {
  17251. source: "./media/characters/claude-delroute/maw.svg"
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Normal",
  17258. height: math.unit(7, "feet"),
  17259. default: true
  17260. },
  17261. {
  17262. name: "Lorge",
  17263. height: math.unit(20, "feet")
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17269. {
  17270. front: {
  17271. height: math.unit(8 + 4 / 12, "feet"),
  17272. weight: math.unit(600, "lb"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/dragonien/front.svg",
  17276. extra: 100 / 94,
  17277. bottom: 3.3 / 103.3445
  17278. }
  17279. },
  17280. back: {
  17281. height: math.unit(8 + 4 / 12, "feet"),
  17282. weight: math.unit(600, "lb"),
  17283. name: "Back",
  17284. image: {
  17285. source: "./media/characters/dragonien/back.svg",
  17286. extra: 776 / 746,
  17287. bottom: 6.4 / 782.0616
  17288. }
  17289. },
  17290. foot: {
  17291. height: math.unit(1.54, "feet"),
  17292. name: "Foot",
  17293. image: {
  17294. source: "./media/characters/dragonien/foot.svg",
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(8 + 4 / 12, "feet"),
  17302. default: true
  17303. },
  17304. {
  17305. name: "Macro",
  17306. height: math.unit(200, "feet")
  17307. },
  17308. {
  17309. name: "Megamacro",
  17310. height: math.unit(1, "mile")
  17311. },
  17312. {
  17313. name: "Gigamacro",
  17314. height: math.unit(1000, "miles")
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(5 + 2 / 12, "feet"),
  17323. weight: math.unit(110, "lb"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/desta/front.svg",
  17327. extra: 767/726,
  17328. bottom: 11.7/779
  17329. }
  17330. },
  17331. back: {
  17332. height: math.unit(5 + 2 / 12, "feet"),
  17333. weight: math.unit(110, "lb"),
  17334. name: "Back",
  17335. image: {
  17336. source: "./media/characters/desta/back.svg",
  17337. extra: 777/728,
  17338. bottom: 6/784
  17339. }
  17340. },
  17341. frontAlt: {
  17342. height: math.unit(5 + 2 / 12, "feet"),
  17343. weight: math.unit(110, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/desta/front-alt.svg",
  17347. extra: 1482 / 1417
  17348. }
  17349. },
  17350. side: {
  17351. height: math.unit(5 + 2 / 12, "feet"),
  17352. weight: math.unit(110, "lb"),
  17353. name: "Side",
  17354. image: {
  17355. source: "./media/characters/desta/side.svg",
  17356. extra: 2579 / 2491,
  17357. bottom: 0.053
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Micro",
  17364. height: math.unit(6, "inches")
  17365. },
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(5 + 2 / 12, "feet"),
  17369. default: true
  17370. },
  17371. {
  17372. name: "Macro",
  17373. height: math.unit(62, "feet")
  17374. },
  17375. {
  17376. name: "Megamacro",
  17377. height: math.unit(1800, "feet")
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17383. {
  17384. front: {
  17385. height: math.unit(10, "feet"),
  17386. weight: math.unit(700, "lb"),
  17387. name: "Front",
  17388. image: {
  17389. source: "./media/characters/storm-alystar/front.svg",
  17390. extra: 2112 / 1898,
  17391. bottom: 0.034
  17392. }
  17393. },
  17394. },
  17395. [
  17396. {
  17397. name: "Micro",
  17398. height: math.unit(3.5, "inches")
  17399. },
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(10, "feet"),
  17403. default: true
  17404. },
  17405. {
  17406. name: "Macro",
  17407. height: math.unit(400, "feet")
  17408. },
  17409. {
  17410. name: "Deific",
  17411. height: math.unit(60, "miles")
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17417. {
  17418. front: {
  17419. height: math.unit(2.35, "meters"),
  17420. weight: math.unit(119, "kg"),
  17421. name: "Front",
  17422. image: {
  17423. source: "./media/characters/ilia/front.svg",
  17424. extra: 1285 / 1255,
  17425. bottom: 0.06
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(2.35, "meters")
  17433. },
  17434. {
  17435. name: "Macro",
  17436. height: math.unit(140, "meters"),
  17437. default: true
  17438. },
  17439. {
  17440. name: "Megamacro",
  17441. height: math.unit(100, "miles")
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17447. {
  17448. front: {
  17449. height: math.unit(6 + 5 / 12, "feet"),
  17450. weight: math.unit(190, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/kingdead/front.svg",
  17454. extra: 1228 / 1177
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Micro",
  17461. height: math.unit(7, "inches")
  17462. },
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(6 + 5 / 12, "feet")
  17466. },
  17467. {
  17468. name: "Macro",
  17469. height: math.unit(150, "feet"),
  17470. default: true
  17471. },
  17472. {
  17473. name: "Megamacro",
  17474. height: math.unit(200, "miles")
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17480. {
  17481. front: {
  17482. height: math.unit(8, "feet"),
  17483. weight: math.unit(600, "lb"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/kyrehx/front.svg",
  17487. extra: 1195 / 1095,
  17488. bottom: 0.034
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Micro",
  17495. height: math.unit(2, "inches")
  17496. },
  17497. {
  17498. name: "Normal",
  17499. height: math.unit(8, "feet"),
  17500. default: true
  17501. },
  17502. {
  17503. name: "Macro",
  17504. height: math.unit(255, "feet")
  17505. },
  17506. ]
  17507. ))
  17508. characterMakers.push(() => makeCharacter(
  17509. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17510. {
  17511. front: {
  17512. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17513. weight: math.unit(184, "lb"),
  17514. name: "Front",
  17515. image: {
  17516. source: "./media/characters/xang/front.svg",
  17517. extra: 845 / 755
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17525. default: true
  17526. },
  17527. {
  17528. name: "Macro",
  17529. height: math.unit(0.935 * 146, "feet")
  17530. },
  17531. {
  17532. name: "Megamacro",
  17533. height: math.unit(0.935 * 3, "miles")
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17539. {
  17540. frontDressed: {
  17541. height: math.unit(5 + 7 / 12, "feet"),
  17542. weight: math.unit(140, "lb"),
  17543. name: "Front (Dressed)",
  17544. image: {
  17545. source: "./media/characters/doc-weardno/front-dressed.svg",
  17546. extra: 263 / 234
  17547. }
  17548. },
  17549. backDressed: {
  17550. height: math.unit(5 + 7 / 12, "feet"),
  17551. weight: math.unit(140, "lb"),
  17552. name: "Back (Dressed)",
  17553. image: {
  17554. source: "./media/characters/doc-weardno/back-dressed.svg",
  17555. extra: 266 / 238
  17556. }
  17557. },
  17558. front: {
  17559. height: math.unit(5 + 7 / 12, "feet"),
  17560. weight: math.unit(140, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/doc-weardno/front.svg",
  17564. extra: 254 / 233
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Micro",
  17571. height: math.unit(3, "inches")
  17572. },
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(5 + 7 / 12, "feet"),
  17576. default: true
  17577. },
  17578. {
  17579. name: "Macro",
  17580. height: math.unit(25, "feet")
  17581. },
  17582. {
  17583. name: "Megamacro",
  17584. height: math.unit(2, "miles")
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(6 + 2 / 12, "feet"),
  17593. weight: math.unit(153, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/seth-whilst/front.svg",
  17597. bottom: 0.07
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Micro",
  17604. height: math.unit(5, "inches")
  17605. },
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(6 + 2 / 12, "feet"),
  17609. default: true
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17615. {
  17616. front: {
  17617. height: math.unit(3, "inches"),
  17618. weight: math.unit(8, "grams"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/pocket-jabari/front.svg",
  17622. extra: 1024 / 974,
  17623. bottom: 0.039
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Minimicro",
  17630. height: math.unit(8, "mm")
  17631. },
  17632. {
  17633. name: "Micro",
  17634. height: math.unit(3, "inches"),
  17635. default: true
  17636. },
  17637. {
  17638. name: "Normal",
  17639. height: math.unit(3, "feet")
  17640. },
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17645. {
  17646. front: {
  17647. height: math.unit(15, "feet"),
  17648. weight: math.unit(3280, "lb"),
  17649. name: "Front",
  17650. image: {
  17651. source: "./media/characters/sapphy/front.svg",
  17652. extra: 671 / 577,
  17653. bottom: 0.085
  17654. }
  17655. },
  17656. back: {
  17657. height: math.unit(15, "feet"),
  17658. weight: math.unit(3280, "lb"),
  17659. name: "Back",
  17660. image: {
  17661. source: "./media/characters/sapphy/back.svg",
  17662. extra: 631 / 607,
  17663. bottom: 0.045
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(15, "feet")
  17671. },
  17672. {
  17673. name: "Casual Macro",
  17674. height: math.unit(120, "feet")
  17675. },
  17676. {
  17677. name: "Macro",
  17678. height: math.unit(2150, "feet"),
  17679. default: true
  17680. },
  17681. {
  17682. name: "Megamacro",
  17683. height: math.unit(8, "miles")
  17684. },
  17685. {
  17686. name: "Galaxy Mom",
  17687. height: math.unit(6, "megalightyears")
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17693. {
  17694. front: {
  17695. height: math.unit(6, "feet"),
  17696. weight: math.unit(170, "lb"),
  17697. name: "Front",
  17698. image: {
  17699. source: "./media/characters/kiro/front.svg",
  17700. extra: 1064 / 1012,
  17701. bottom: 0.052
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Micro",
  17708. height: math.unit(6, "inches")
  17709. },
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(6, "feet"),
  17713. default: true
  17714. },
  17715. {
  17716. name: "Macro",
  17717. height: math.unit(72, "feet")
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17723. {
  17724. front: {
  17725. height: math.unit(5 + 9 / 12, "feet"),
  17726. weight: math.unit(175, "lb"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/irishfox/front.svg",
  17730. extra: 1912 / 1680,
  17731. bottom: 0.02
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Nano",
  17738. height: math.unit(1, "mm")
  17739. },
  17740. {
  17741. name: "Micro",
  17742. height: math.unit(2, "inches")
  17743. },
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(5 + 9 / 12, "feet"),
  17747. default: true
  17748. },
  17749. {
  17750. name: "Macro",
  17751. height: math.unit(45, "feet")
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(6 + 1 / 12, "feet"),
  17760. weight: math.unit(150, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/aronai-sieyes/front.svg",
  17764. extra: 1556 / 1480,
  17765. bottom: 0.015
  17766. }
  17767. },
  17768. side: {
  17769. height: math.unit(6 + 1 / 12, "feet"),
  17770. weight: math.unit(150, "lb"),
  17771. name: "Side",
  17772. image: {
  17773. source: "./media/characters/aronai-sieyes/side.svg",
  17774. extra: 1433 / 1390,
  17775. bottom: 0.0393
  17776. }
  17777. },
  17778. back: {
  17779. height: math.unit(6 + 1 / 12, "feet"),
  17780. weight: math.unit(150, "lb"),
  17781. name: "Back",
  17782. image: {
  17783. source: "./media/characters/aronai-sieyes/back.svg",
  17784. extra: 1544 / 1494,
  17785. bottom: 0.02
  17786. }
  17787. },
  17788. frontClothed: {
  17789. height: math.unit(6 + 1 / 12, "feet"),
  17790. weight: math.unit(150, "lb"),
  17791. name: "Front (Clothed)",
  17792. image: {
  17793. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17794. extra: 1582 / 1527
  17795. }
  17796. },
  17797. feral: {
  17798. height: math.unit(18, "feet"),
  17799. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17800. name: "Feral",
  17801. image: {
  17802. source: "./media/characters/aronai-sieyes/feral.svg",
  17803. extra: 1530 / 1240,
  17804. bottom: 0.035
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Micro",
  17811. height: math.unit(2, "inches")
  17812. },
  17813. {
  17814. name: "Normal",
  17815. height: math.unit(6 + 1 / 12, "feet"),
  17816. default: true
  17817. }
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17822. {
  17823. front: {
  17824. height: math.unit(12, "feet"),
  17825. weight: math.unit(410, "kg"),
  17826. name: "Front",
  17827. image: {
  17828. source: "./media/characters/xuna/front.svg",
  17829. extra: 2184 / 1980
  17830. }
  17831. },
  17832. side: {
  17833. height: math.unit(12, "feet"),
  17834. weight: math.unit(410, "kg"),
  17835. name: "Side",
  17836. image: {
  17837. source: "./media/characters/xuna/side.svg",
  17838. extra: 2184 / 1980
  17839. }
  17840. },
  17841. back: {
  17842. height: math.unit(12, "feet"),
  17843. weight: math.unit(410, "kg"),
  17844. name: "Back",
  17845. image: {
  17846. source: "./media/characters/xuna/back.svg",
  17847. extra: 2184 / 1980
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Nano glow",
  17854. height: math.unit(10, "nm")
  17855. },
  17856. {
  17857. name: "Micro floof",
  17858. height: math.unit(0.3, "m")
  17859. },
  17860. {
  17861. name: "Huggable softy boi",
  17862. height: math.unit(3.6576, "m"),
  17863. default: true
  17864. },
  17865. {
  17866. name: "Admirable floof",
  17867. height: math.unit(80, "meters")
  17868. },
  17869. {
  17870. name: "Gentle macro",
  17871. height: math.unit(300, "meters")
  17872. },
  17873. {
  17874. name: "Very careful floof",
  17875. height: math.unit(3200, "meters")
  17876. },
  17877. {
  17878. name: "The mega floof",
  17879. height: math.unit(36000, "meters")
  17880. },
  17881. {
  17882. name: "Giga-fur-Wicker",
  17883. height: math.unit(4800000, "meters")
  17884. },
  17885. {
  17886. name: "Licky world",
  17887. height: math.unit(20000000, "meters")
  17888. },
  17889. {
  17890. name: "Floofy cyan sun",
  17891. height: math.unit(1500000000, "meters")
  17892. },
  17893. {
  17894. name: "Milky Wicker",
  17895. height: math.unit(1000000000000000000000, "meters")
  17896. },
  17897. {
  17898. name: "The observing Wicker",
  17899. height: math.unit(999999999999999999999999999, "meters")
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17905. {
  17906. front: {
  17907. height: math.unit(5 + 9 / 12, "feet"),
  17908. weight: math.unit(150, "lb"),
  17909. name: "Front",
  17910. image: {
  17911. source: "./media/characters/arokha-sieyes/front.svg",
  17912. extra: 1425 / 1284,
  17913. bottom: 0.05
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Normal",
  17920. height: math.unit(5 + 9 / 12, "feet")
  17921. },
  17922. {
  17923. name: "Macro",
  17924. height: math.unit(30, "meters"),
  17925. default: true
  17926. },
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17931. {
  17932. front: {
  17933. height: math.unit(6, "feet"),
  17934. weight: math.unit(180, "lb"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/arokh-sieyes/front.svg",
  17938. extra: 1830 / 1769,
  17939. bottom: 0.01
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Normal",
  17946. height: math.unit(6, "feet")
  17947. },
  17948. {
  17949. name: "Macro",
  17950. height: math.unit(30, "meters"),
  17951. default: true
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17957. {
  17958. side: {
  17959. height: math.unit(13 + 1 / 12, "feet"),
  17960. weight: math.unit(8.5, "tonnes"),
  17961. name: "Side",
  17962. image: {
  17963. source: "./media/characters/goldeneye/side.svg",
  17964. extra: 1182 / 778,
  17965. bottom: 0.067
  17966. }
  17967. },
  17968. paw: {
  17969. height: math.unit(3.4, "feet"),
  17970. name: "Paw",
  17971. image: {
  17972. source: "./media/characters/goldeneye/paw.svg"
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(13 + 1 / 12, "feet"),
  17980. default: true
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17986. {
  17987. front: {
  17988. height: math.unit(6 + 1 / 12, "feet"),
  17989. weight: math.unit(210, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/leonardo-lycheborne/front.svg",
  17993. extra: 390 / 365,
  17994. bottom: 0.032
  17995. }
  17996. },
  17997. side: {
  17998. height: math.unit(6 + 1 / 12, "feet"),
  17999. weight: math.unit(210, "lb"),
  18000. name: "Side",
  18001. image: {
  18002. source: "./media/characters/leonardo-lycheborne/side.svg",
  18003. extra: 390 / 365,
  18004. bottom: 0.005
  18005. }
  18006. },
  18007. back: {
  18008. height: math.unit(6 + 1 / 12, "feet"),
  18009. weight: math.unit(210, "lb"),
  18010. name: "Back",
  18011. image: {
  18012. source: "./media/characters/leonardo-lycheborne/back.svg",
  18013. extra: 392 / 366,
  18014. bottom: 0.01
  18015. }
  18016. },
  18017. hand: {
  18018. height: math.unit(1.08, "feet"),
  18019. name: "Hand",
  18020. image: {
  18021. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18022. }
  18023. },
  18024. foot: {
  18025. height: math.unit(1.32, "feet"),
  18026. name: "Foot",
  18027. image: {
  18028. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18029. }
  18030. },
  18031. were: {
  18032. height: math.unit(20, "feet"),
  18033. weight: math.unit(7800, "lb"),
  18034. name: "Were",
  18035. image: {
  18036. source: "./media/characters/leonardo-lycheborne/were.svg",
  18037. extra: 308 / 294,
  18038. bottom: 0.048
  18039. }
  18040. },
  18041. feral: {
  18042. height: math.unit(7.5, "feet"),
  18043. weight: math.unit(600, "lb"),
  18044. name: "Feral",
  18045. image: {
  18046. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18047. extra: 210 / 186,
  18048. bottom: 0.108
  18049. }
  18050. },
  18051. taur: {
  18052. height: math.unit(11, "feet"),
  18053. weight: math.unit(3300, "lb"),
  18054. name: "Taur",
  18055. image: {
  18056. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18057. extra: 320 / 303,
  18058. bottom: 0.025
  18059. }
  18060. },
  18061. barghest: {
  18062. height: math.unit(11, "feet"),
  18063. weight: math.unit(1300, "lb"),
  18064. name: "Barghest",
  18065. image: {
  18066. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18067. extra: 323 / 302,
  18068. bottom: 0.027
  18069. }
  18070. },
  18071. dick: {
  18072. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18073. name: "Dick",
  18074. image: {
  18075. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18076. }
  18077. },
  18078. dickWere: {
  18079. height: math.unit((20) / 3.8, "feet"),
  18080. name: "Dick (Were)",
  18081. image: {
  18082. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(6 + 1 / 12, "feet"),
  18090. default: true
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18096. {
  18097. front: {
  18098. height: math.unit(10, "feet"),
  18099. weight: math.unit(350, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/jet/front.svg",
  18103. extra: 2050 / 1980,
  18104. bottom: 0.013
  18105. }
  18106. },
  18107. back: {
  18108. height: math.unit(10, "feet"),
  18109. weight: math.unit(350, "lb"),
  18110. name: "Back",
  18111. image: {
  18112. source: "./media/characters/jet/back.svg",
  18113. extra: 2050 / 1980,
  18114. bottom: 0.013
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Micro",
  18121. height: math.unit(6, "inches")
  18122. },
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(10, "feet"),
  18126. default: true
  18127. },
  18128. {
  18129. name: "Macro",
  18130. height: math.unit(100, "feet")
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(15, "feet"),
  18139. weight: math.unit(2800, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/tanarath/front.svg",
  18143. extra: 2392 / 2220,
  18144. bottom: 0.03
  18145. }
  18146. },
  18147. back: {
  18148. height: math.unit(15, "feet"),
  18149. weight: math.unit(2800, "lb"),
  18150. name: "Back",
  18151. image: {
  18152. source: "./media/characters/tanarath/back.svg",
  18153. extra: 2392 / 2220,
  18154. bottom: 0.03
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Normal",
  18161. height: math.unit(15, "feet"),
  18162. default: true
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18168. {
  18169. front: {
  18170. height: math.unit(7 + 1 / 12, "feet"),
  18171. weight: math.unit(175, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/patty-cattybatty/front.svg",
  18175. extra: 908 / 874,
  18176. bottom: 0.025
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Micro",
  18183. height: math.unit(1, "inch")
  18184. },
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(7 + 1 / 12, "feet")
  18188. },
  18189. {
  18190. name: "Mini Macro",
  18191. height: math.unit(155, "feet")
  18192. },
  18193. {
  18194. name: "Macro",
  18195. height: math.unit(1077, "feet")
  18196. },
  18197. {
  18198. name: "Mega Macro",
  18199. height: math.unit(47650, "feet"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Giga Macro",
  18204. height: math.unit(440, "miles")
  18205. },
  18206. {
  18207. name: "Tera Macro",
  18208. height: math.unit(8700, "miles")
  18209. },
  18210. {
  18211. name: "Planetary Macro",
  18212. height: math.unit(32700, "miles")
  18213. },
  18214. {
  18215. name: "Solar Macro",
  18216. height: math.unit(550000, "miles")
  18217. },
  18218. {
  18219. name: "Celestial Macro",
  18220. height: math.unit(2.5, "AU")
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(4 + 5 / 12, "feet"),
  18229. weight: math.unit(90, "lb"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/cappu/front.svg",
  18233. extra: 1247 / 1152,
  18234. bottom: 0.012
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(4 + 5 / 12, "feet"),
  18242. default: true
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18248. {
  18249. frontDressed: {
  18250. height: math.unit(70, "cm"),
  18251. weight: math.unit(6, "kg"),
  18252. name: "Front (Dressed)",
  18253. image: {
  18254. source: "./media/characters/sebi/front-dressed.svg",
  18255. extra: 713.5 / 686.5,
  18256. bottom: 0.003
  18257. }
  18258. },
  18259. front: {
  18260. height: math.unit(70, "cm"),
  18261. weight: math.unit(5, "kg"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/sebi/front.svg",
  18265. extra: 713.5 / 686.5,
  18266. bottom: 0.003
  18267. }
  18268. }
  18269. },
  18270. [
  18271. {
  18272. name: "Normal",
  18273. height: math.unit(70, "cm"),
  18274. default: true
  18275. },
  18276. {
  18277. name: "Macro",
  18278. height: math.unit(8, "meters")
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(6, "feet"),
  18287. weight: math.unit(150, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/typhek/front.svg",
  18291. extra: 1948 / 1929,
  18292. bottom: 0.025
  18293. }
  18294. },
  18295. side: {
  18296. height: math.unit(6, "feet"),
  18297. weight: math.unit(150, "lb"),
  18298. name: "Side",
  18299. image: {
  18300. source: "./media/characters/typhek/side.svg",
  18301. extra: 2034 / 2010,
  18302. bottom: 0.003
  18303. }
  18304. },
  18305. back: {
  18306. height: math.unit(6, "feet"),
  18307. weight: math.unit(150, "lb"),
  18308. name: "Back",
  18309. image: {
  18310. source: "./media/characters/typhek/back.svg",
  18311. extra: 2005 / 1978,
  18312. bottom: 0.004
  18313. }
  18314. },
  18315. palm: {
  18316. height: math.unit(1.2, "feet"),
  18317. name: "Palm",
  18318. image: {
  18319. source: "./media/characters/typhek/palm.svg"
  18320. }
  18321. },
  18322. fist: {
  18323. height: math.unit(1.1, "feet"),
  18324. name: "Fist",
  18325. image: {
  18326. source: "./media/characters/typhek/fist.svg"
  18327. }
  18328. },
  18329. foot: {
  18330. height: math.unit(1.57, "feet"),
  18331. name: "Foot",
  18332. image: {
  18333. source: "./media/characters/typhek/foot.svg"
  18334. }
  18335. },
  18336. sole: {
  18337. height: math.unit(2.05, "feet"),
  18338. name: "Sole",
  18339. image: {
  18340. source: "./media/characters/typhek/sole.svg"
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Macro",
  18347. height: math.unit(40, "stories"),
  18348. default: true
  18349. },
  18350. {
  18351. name: "Megamacro",
  18352. height: math.unit(1, "mile")
  18353. },
  18354. {
  18355. name: "Gigamacro",
  18356. height: math.unit(4000, "solarradii")
  18357. },
  18358. {
  18359. name: "Universal",
  18360. height: math.unit(1.1, "universes")
  18361. }
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18366. {
  18367. side: {
  18368. height: math.unit(5 + 7 / 12, "feet"),
  18369. weight: math.unit(150, "lb"),
  18370. name: "Side",
  18371. image: {
  18372. source: "./media/characters/kassy/side.svg",
  18373. extra: 1280 / 1225,
  18374. bottom: 0.002
  18375. }
  18376. },
  18377. front: {
  18378. height: math.unit(5 + 7 / 12, "feet"),
  18379. weight: math.unit(150, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/kassy/front.svg",
  18383. extra: 1280 / 1225,
  18384. bottom: 0.025
  18385. }
  18386. },
  18387. back: {
  18388. height: math.unit(5 + 7 / 12, "feet"),
  18389. weight: math.unit(150, "lb"),
  18390. name: "Back",
  18391. image: {
  18392. source: "./media/characters/kassy/back.svg",
  18393. extra: 1280 / 1225,
  18394. bottom: 0.002
  18395. }
  18396. },
  18397. foot: {
  18398. height: math.unit(1.266, "feet"),
  18399. name: "Foot",
  18400. image: {
  18401. source: "./media/characters/kassy/foot.svg"
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Normal",
  18408. height: math.unit(5 + 7 / 12, "feet")
  18409. },
  18410. {
  18411. name: "Macro",
  18412. height: math.unit(137, "feet"),
  18413. default: true
  18414. },
  18415. {
  18416. name: "Megamacro",
  18417. height: math.unit(1, "mile")
  18418. },
  18419. ]
  18420. ))
  18421. characterMakers.push(() => makeCharacter(
  18422. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18423. {
  18424. front: {
  18425. height: math.unit(6 + 1 / 12, "feet"),
  18426. weight: math.unit(200, "lb"),
  18427. name: "Front",
  18428. image: {
  18429. source: "./media/characters/neil/front.svg",
  18430. extra: 1326 / 1250,
  18431. bottom: 0.023
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(6 + 1 / 12, "feet"),
  18439. default: true
  18440. },
  18441. {
  18442. name: "Macro",
  18443. height: math.unit(200, "feet")
  18444. },
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18449. {
  18450. front: {
  18451. height: math.unit(5 + 9 / 12, "feet"),
  18452. weight: math.unit(190, "lb"),
  18453. name: "Front",
  18454. image: {
  18455. source: "./media/characters/atticus/front.svg",
  18456. extra: 2934 / 2785,
  18457. bottom: 0.025
  18458. }
  18459. },
  18460. },
  18461. [
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(5 + 9 / 12, "feet"),
  18465. default: true
  18466. },
  18467. {
  18468. name: "Macro",
  18469. height: math.unit(180, "feet")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18475. {
  18476. side: {
  18477. height: math.unit(9, "feet"),
  18478. weight: math.unit(650, "lb"),
  18479. name: "Side",
  18480. image: {
  18481. source: "./media/characters/milo/side.svg",
  18482. extra: 2644 / 2310,
  18483. bottom: 0.032
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Normal",
  18490. height: math.unit(9, "feet"),
  18491. default: true
  18492. },
  18493. {
  18494. name: "Macro",
  18495. height: math.unit(300, "feet")
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18501. {
  18502. side: {
  18503. height: math.unit(8, "meters"),
  18504. weight: math.unit(90000, "kg"),
  18505. name: "Side",
  18506. image: {
  18507. source: "./media/characters/ijzer/side.svg",
  18508. extra: 2756 / 1600,
  18509. bottom: 0.01
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Small",
  18516. height: math.unit(3, "meters")
  18517. },
  18518. {
  18519. name: "Normal",
  18520. height: math.unit(8, "meters"),
  18521. default: true
  18522. },
  18523. {
  18524. name: "Normal+",
  18525. height: math.unit(10, "meters")
  18526. },
  18527. {
  18528. name: "Bigger",
  18529. height: math.unit(24, "meters")
  18530. },
  18531. {
  18532. name: "Huge",
  18533. height: math.unit(80, "meters")
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18539. {
  18540. front: {
  18541. height: math.unit(6 + 2 / 12, "feet"),
  18542. weight: math.unit(153, "lb"),
  18543. name: "Front",
  18544. image: {
  18545. source: "./media/characters/luca-cervicum/front.svg",
  18546. extra: 370 / 327,
  18547. bottom: 0.015
  18548. }
  18549. },
  18550. back: {
  18551. height: math.unit(6 + 2 / 12, "feet"),
  18552. weight: math.unit(153, "lb"),
  18553. name: "Back",
  18554. image: {
  18555. source: "./media/characters/luca-cervicum/back.svg",
  18556. extra: 367 / 333,
  18557. bottom: 0.005
  18558. }
  18559. },
  18560. frontGear: {
  18561. height: math.unit(6 + 2 / 12, "feet"),
  18562. weight: math.unit(173, "lb"),
  18563. name: "Front (Gear)",
  18564. image: {
  18565. source: "./media/characters/luca-cervicum/front-gear.svg",
  18566. extra: 377 / 333,
  18567. bottom: 0.006
  18568. }
  18569. },
  18570. },
  18571. [
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(6 + 2 / 12, "feet"),
  18575. default: true
  18576. },
  18577. ]
  18578. ))
  18579. characterMakers.push(() => makeCharacter(
  18580. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18581. {
  18582. front: {
  18583. height: math.unit(6 + 1 / 12, "feet"),
  18584. weight: math.unit(304, "lb"),
  18585. name: "Front",
  18586. image: {
  18587. source: "./media/characters/oliver/front.svg",
  18588. extra: 157 / 143,
  18589. bottom: 0.08
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(6 + 1 / 12, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18603. {
  18604. front: {
  18605. height: math.unit(5 + 7 / 12, "feet"),
  18606. weight: math.unit(140, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/shane/front.svg",
  18610. extra: 304 / 289,
  18611. bottom: 0.005
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(5 + 7 / 12, "feet"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(5 + 9 / 12, "feet"),
  18628. weight: math.unit(178, "lb"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/shin/front.svg",
  18632. extra: 159 / 151,
  18633. bottom: 0.015
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(5 + 9 / 12, "feet"),
  18641. default: true
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(5 + 10 / 12, "feet"),
  18650. weight: math.unit(168, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/xerxes/front.svg",
  18654. extra: 282 / 260,
  18655. bottom: 0.045
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(5 + 10 / 12, "feet"),
  18663. default: true
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(6 + 7 / 12, "feet"),
  18672. weight: math.unit(208, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/chaska/front.svg",
  18676. extra: 332 / 319,
  18677. bottom: 0.015
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(6 + 7 / 12, "feet"),
  18685. default: true
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18691. {
  18692. front: {
  18693. height: math.unit(5 + 8 / 12, "feet"),
  18694. weight: math.unit(208, "lb"),
  18695. name: "Front",
  18696. image: {
  18697. source: "./media/characters/enuk/front.svg",
  18698. extra: 437 / 406,
  18699. bottom: 0.02
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(5 + 8 / 12, "feet"),
  18707. default: true
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18713. {
  18714. front: {
  18715. height: math.unit(5 + 10 / 12, "feet"),
  18716. weight: math.unit(252, "lb"),
  18717. name: "Front",
  18718. image: {
  18719. source: "./media/characters/bruun/front.svg",
  18720. extra: 197 / 187,
  18721. bottom: 0.012
  18722. }
  18723. },
  18724. },
  18725. [
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(5 + 10 / 12, "feet"),
  18729. default: true
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(6 + 10 / 12, "feet"),
  18738. weight: math.unit(255, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/alexeev/front.svg",
  18742. extra: 213 / 200,
  18743. bottom: 0.05
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(6 + 10 / 12, "feet"),
  18751. default: true
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18757. {
  18758. front: {
  18759. height: math.unit(2 + 8 / 12, "feet"),
  18760. weight: math.unit(22, "lb"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/evelyn/front.svg",
  18764. extra: 208 / 180
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Normal",
  18771. height: math.unit(2 + 8 / 12, "feet"),
  18772. default: true
  18773. },
  18774. ]
  18775. ))
  18776. characterMakers.push(() => makeCharacter(
  18777. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18778. {
  18779. front: {
  18780. height: math.unit(5 + 9 / 12, "feet"),
  18781. weight: math.unit(139, "lb"),
  18782. name: "Front",
  18783. image: {
  18784. source: "./media/characters/inca/front.svg",
  18785. extra: 294 / 291,
  18786. bottom: 0.03
  18787. }
  18788. },
  18789. },
  18790. [
  18791. {
  18792. name: "Normal",
  18793. height: math.unit(5 + 9 / 12, "feet"),
  18794. default: true
  18795. },
  18796. ]
  18797. ))
  18798. characterMakers.push(() => makeCharacter(
  18799. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18800. {
  18801. front: {
  18802. height: math.unit(5 + 1 / 12, "feet"),
  18803. weight: math.unit(84, "lb"),
  18804. name: "Front",
  18805. image: {
  18806. source: "./media/characters/magdalene/front.svg",
  18807. extra: 293 / 273
  18808. }
  18809. },
  18810. },
  18811. [
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(5 + 1 / 12, "feet"),
  18815. default: true
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18821. {
  18822. front: {
  18823. height: math.unit(6 + 3 / 12, "feet"),
  18824. weight: math.unit(185, "lb"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/mera/front.svg",
  18828. extra: 291 / 277,
  18829. bottom: 0.03
  18830. }
  18831. },
  18832. },
  18833. [
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(6 + 3 / 12, "feet"),
  18837. default: true
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(6 + 7 / 12, "feet"),
  18846. weight: math.unit(160, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/ceres/front.svg",
  18850. extra: 1023 / 950,
  18851. bottom: 0.027
  18852. }
  18853. },
  18854. back: {
  18855. height: math.unit(6 + 7 / 12, "feet"),
  18856. weight: math.unit(160, "lb"),
  18857. name: "Back",
  18858. image: {
  18859. source: "./media/characters/ceres/back.svg",
  18860. extra: 1023 / 950
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(6 + 7 / 12, "feet"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(5 + 10 / 12, "feet"),
  18877. weight: math.unit(150, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/kris/front.svg",
  18881. extra: 885 / 803,
  18882. bottom: 0.03
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(5 + 10 / 12, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18896. {
  18897. front: {
  18898. height: math.unit(7, "feet"),
  18899. weight: math.unit(120, "kg"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/taluthus/front.svg",
  18903. extra: 903 / 833,
  18904. bottom: 0.015
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(7, "feet"),
  18912. default: true
  18913. },
  18914. {
  18915. name: "Macro",
  18916. height: math.unit(300, "feet")
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(5 + 9 / 12, "feet"),
  18925. weight: math.unit(145, "lb"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/dawn/front.svg",
  18929. extra: 2094 / 2016,
  18930. bottom: 0.025
  18931. }
  18932. },
  18933. back: {
  18934. height: math.unit(5 + 9 / 12, "feet"),
  18935. weight: math.unit(160, "lb"),
  18936. name: "Back",
  18937. image: {
  18938. source: "./media/characters/dawn/back.svg",
  18939. extra: 2112 / 2080,
  18940. bottom: 0.005
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(6 + 7 / 12, "feet"),
  18948. default: true
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18954. {
  18955. anthro: {
  18956. height: math.unit(8 + 3 / 12, "feet"),
  18957. weight: math.unit(450, "lb"),
  18958. name: "Anthro",
  18959. image: {
  18960. source: "./media/characters/arador/anthro.svg",
  18961. extra: 1835 / 1718,
  18962. bottom: 0.025
  18963. }
  18964. },
  18965. feral: {
  18966. height: math.unit(4, "feet"),
  18967. weight: math.unit(200, "lb"),
  18968. name: "Feral",
  18969. image: {
  18970. source: "./media/characters/arador/feral.svg",
  18971. extra: 1683 / 1514,
  18972. bottom: 0.07
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Normal",
  18979. height: math.unit(8 + 3 / 12, "feet")
  18980. },
  18981. {
  18982. name: "Macro",
  18983. height: math.unit(82.5, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(5 + 10 / 12, "feet"),
  18993. weight: math.unit(125, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/dharsi/front.svg",
  18997. extra: 716 / 630,
  18998. bottom: 0.035
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Nano",
  19005. height: math.unit(100, "nm")
  19006. },
  19007. {
  19008. name: "Micro",
  19009. height: math.unit(2, "inches")
  19010. },
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(5 + 10 / 12, "feet"),
  19014. default: true
  19015. },
  19016. {
  19017. name: "Macro",
  19018. height: math.unit(1000, "feet")
  19019. },
  19020. {
  19021. name: "Megamacro",
  19022. height: math.unit(10, "miles")
  19023. },
  19024. {
  19025. name: "Gigamacro",
  19026. height: math.unit(3000, "miles")
  19027. },
  19028. {
  19029. name: "Teramacro",
  19030. height: math.unit(500000, "miles")
  19031. },
  19032. {
  19033. name: "Teramacro+",
  19034. height: math.unit(30, "galaxies")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19040. {
  19041. front: {
  19042. height: math.unit(6, "feet"),
  19043. weight: math.unit(150, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/deathy/front.svg",
  19047. extra: 1552 / 1463,
  19048. bottom: 0.025
  19049. }
  19050. },
  19051. side: {
  19052. height: math.unit(6, "feet"),
  19053. weight: math.unit(150, "lb"),
  19054. name: "Side",
  19055. image: {
  19056. source: "./media/characters/deathy/side.svg",
  19057. extra: 1604 / 1455,
  19058. bottom: 0.025
  19059. }
  19060. },
  19061. back: {
  19062. height: math.unit(6, "feet"),
  19063. weight: math.unit(150, "lb"),
  19064. name: "Back",
  19065. image: {
  19066. source: "./media/characters/deathy/back.svg",
  19067. extra: 1580 / 1463,
  19068. bottom: 0.005
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Micro",
  19075. height: math.unit(5, "millimeters")
  19076. },
  19077. {
  19078. name: "Normal",
  19079. height: math.unit(6 + 5 / 12, "feet"),
  19080. default: true
  19081. },
  19082. ]
  19083. ))
  19084. characterMakers.push(() => makeCharacter(
  19085. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19086. {
  19087. front: {
  19088. height: math.unit(16, "feet"),
  19089. weight: math.unit(4000, "lb"),
  19090. name: "Front",
  19091. image: {
  19092. source: "./media/characters/juniper/front.svg",
  19093. bottom: 0.04
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(16, "feet"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19107. {
  19108. front: {
  19109. height: math.unit(6, "feet"),
  19110. weight: math.unit(150, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/hipster/front.svg",
  19114. extra: 1312 / 1209,
  19115. bottom: 0.025
  19116. }
  19117. },
  19118. back: {
  19119. height: math.unit(6, "feet"),
  19120. weight: math.unit(150, "lb"),
  19121. name: "Back",
  19122. image: {
  19123. source: "./media/characters/hipster/back.svg",
  19124. extra: 1281 / 1196,
  19125. bottom: 0.01
  19126. }
  19127. },
  19128. },
  19129. [
  19130. {
  19131. name: "Micro",
  19132. height: math.unit(1, "mm")
  19133. },
  19134. {
  19135. name: "Normal",
  19136. height: math.unit(4, "inches"),
  19137. default: true
  19138. },
  19139. {
  19140. name: "Macro",
  19141. height: math.unit(500, "feet")
  19142. },
  19143. {
  19144. name: "Megamacro",
  19145. height: math.unit(1000, "miles")
  19146. },
  19147. ]
  19148. ))
  19149. characterMakers.push(() => makeCharacter(
  19150. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19151. {
  19152. front: {
  19153. height: math.unit(6, "feet"),
  19154. weight: math.unit(150, "lb"),
  19155. name: "Front",
  19156. image: {
  19157. source: "./media/characters/tendirmuldr/front.svg",
  19158. extra: 1878 / 1772,
  19159. bottom: 0.015
  19160. }
  19161. },
  19162. },
  19163. [
  19164. {
  19165. name: "Megamacro",
  19166. height: math.unit(1500, "miles"),
  19167. default: true
  19168. },
  19169. ]
  19170. ))
  19171. characterMakers.push(() => makeCharacter(
  19172. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19173. {
  19174. front: {
  19175. height: math.unit(14, "feet"),
  19176. weight: math.unit(12000, "lb"),
  19177. name: "Front",
  19178. image: {
  19179. source: "./media/characters/mort/front.svg",
  19180. extra: 365 / 318,
  19181. bottom: 0.01
  19182. }
  19183. },
  19184. side: {
  19185. height: math.unit(14, "feet"),
  19186. weight: math.unit(12000, "lb"),
  19187. name: "Side",
  19188. image: {
  19189. source: "./media/characters/mort/side.svg",
  19190. extra: 365 / 318,
  19191. bottom: 0.052
  19192. },
  19193. default: true
  19194. },
  19195. back: {
  19196. height: math.unit(14, "feet"),
  19197. weight: math.unit(12000, "lb"),
  19198. name: "Back",
  19199. image: {
  19200. source: "./media/characters/mort/back.svg",
  19201. extra: 371 / 332,
  19202. bottom: 0.18
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(14, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19216. {
  19217. front: {
  19218. height: math.unit(8, "feet"),
  19219. weight: math.unit(1, "ton"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/lycoa/front.svg",
  19223. extra: 1875 / 1789,
  19224. bottom: 0.022
  19225. }
  19226. },
  19227. back: {
  19228. height: math.unit(8, "feet"),
  19229. weight: math.unit(1, "ton"),
  19230. name: "Back",
  19231. image: {
  19232. source: "./media/characters/lycoa/back.svg",
  19233. extra: 1835 / 1781,
  19234. bottom: 0.03
  19235. }
  19236. },
  19237. head: {
  19238. height: math.unit(2.1, "feet"),
  19239. name: "Head",
  19240. image: {
  19241. source: "./media/characters/lycoa/head.svg"
  19242. }
  19243. },
  19244. tailmaw: {
  19245. height: math.unit(1.9, "feet"),
  19246. name: "Tailmaw",
  19247. image: {
  19248. source: "./media/characters/lycoa/tailmaw.svg"
  19249. }
  19250. },
  19251. tentacles: {
  19252. height: math.unit(2.1, "feet"),
  19253. name: "Tentacles",
  19254. image: {
  19255. source: "./media/characters/lycoa/tentacles.svg"
  19256. }
  19257. },
  19258. dick: {
  19259. height: math.unit(1.73, "feet"),
  19260. name: "Dick",
  19261. image: {
  19262. source: "./media/characters/lycoa/dick.svg"
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Normal",
  19269. height: math.unit(8, "feet"),
  19270. default: true
  19271. },
  19272. {
  19273. name: "Macro",
  19274. height: math.unit(30, "feet")
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19280. {
  19281. front: {
  19282. height: math.unit(4 + 2 / 12, "feet"),
  19283. weight: math.unit(70, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/naldara/front.svg",
  19287. extra: 841 / 720,
  19288. bottom: 0.04
  19289. }
  19290. },
  19291. naga: {
  19292. height: math.unit(23, "feet"),
  19293. weight: math.unit(15000, "kg"),
  19294. name: "Naga",
  19295. image: {
  19296. source: "./media/characters/naldara/naga.svg",
  19297. extra: 3290/2959,
  19298. bottom: 124/3432
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Normal",
  19305. height: math.unit(4 + 2 / 12, "feet"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(13 + 7 / 12, "feet"),
  19315. weight: math.unit(1500, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/briar/front.svg",
  19319. extra: 626 / 596,
  19320. bottom: 0.08
  19321. }
  19322. },
  19323. },
  19324. [
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(13 + 7 / 12, "feet"),
  19328. default: true
  19329. },
  19330. ]
  19331. ))
  19332. characterMakers.push(() => makeCharacter(
  19333. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19334. {
  19335. side: {
  19336. height: math.unit(10, "feet"),
  19337. weight: math.unit(500, "lb"),
  19338. name: "Side",
  19339. image: {
  19340. source: "./media/characters/vanguard/side.svg",
  19341. extra: 502 / 425,
  19342. bottom: 0.087
  19343. }
  19344. },
  19345. },
  19346. [
  19347. {
  19348. name: "Normal",
  19349. height: math.unit(10, "feet"),
  19350. default: true
  19351. },
  19352. ]
  19353. ))
  19354. characterMakers.push(() => makeCharacter(
  19355. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19356. {
  19357. front: {
  19358. height: math.unit(7.5, "feet"),
  19359. weight: math.unit(2, "lb"),
  19360. name: "Front",
  19361. image: {
  19362. source: "./media/characters/artemis/front.svg",
  19363. extra: 1192 / 1075,
  19364. bottom: 0.07
  19365. }
  19366. },
  19367. frontNsfw: {
  19368. height: math.unit(7.5, "feet"),
  19369. weight: math.unit(2, "lb"),
  19370. name: "Front (NSFW)",
  19371. image: {
  19372. source: "./media/characters/artemis/front-nsfw.svg",
  19373. extra: 1192 / 1075,
  19374. bottom: 0.07
  19375. }
  19376. },
  19377. frontNsfwer: {
  19378. height: math.unit(7.5, "feet"),
  19379. weight: math.unit(2, "lb"),
  19380. name: "Front (NSFW-er)",
  19381. image: {
  19382. source: "./media/characters/artemis/front-nsfwer.svg",
  19383. extra: 1192 / 1075,
  19384. bottom: 0.07
  19385. }
  19386. },
  19387. side: {
  19388. height: math.unit(7.5, "feet"),
  19389. weight: math.unit(2, "lb"),
  19390. name: "Side",
  19391. image: {
  19392. source: "./media/characters/artemis/side.svg",
  19393. extra: 1192 / 1075,
  19394. bottom: 0.07
  19395. }
  19396. },
  19397. sideNsfw: {
  19398. height: math.unit(7.5, "feet"),
  19399. weight: math.unit(2, "lb"),
  19400. name: "Side (NSFW)",
  19401. image: {
  19402. source: "./media/characters/artemis/side-nsfw.svg",
  19403. extra: 1192 / 1075,
  19404. bottom: 0.07
  19405. }
  19406. },
  19407. sideNsfwer: {
  19408. height: math.unit(7.5, "feet"),
  19409. weight: math.unit(2, "lb"),
  19410. name: "Side (NSFW-er)",
  19411. image: {
  19412. source: "./media/characters/artemis/side-nsfwer.svg",
  19413. extra: 1192 / 1075,
  19414. bottom: 0.07
  19415. }
  19416. },
  19417. maw: {
  19418. height: math.unit(1.1, "feet"),
  19419. name: "Maw",
  19420. image: {
  19421. source: "./media/characters/artemis/maw.svg"
  19422. }
  19423. },
  19424. stomach: {
  19425. height: math.unit(0.95, "feet"),
  19426. name: "Stomach",
  19427. image: {
  19428. source: "./media/characters/artemis/stomach.svg"
  19429. }
  19430. },
  19431. dickCanine: {
  19432. height: math.unit(1, "feet"),
  19433. name: "Dick (Canine)",
  19434. image: {
  19435. source: "./media/characters/artemis/dick-canine.svg"
  19436. }
  19437. },
  19438. dickEquine: {
  19439. height: math.unit(0.85, "feet"),
  19440. name: "Dick (Equine)",
  19441. image: {
  19442. source: "./media/characters/artemis/dick-equine.svg"
  19443. }
  19444. },
  19445. dickExotic: {
  19446. height: math.unit(0.85, "feet"),
  19447. name: "Dick (Exotic)",
  19448. image: {
  19449. source: "./media/characters/artemis/dick-exotic.svg"
  19450. }
  19451. },
  19452. },
  19453. [
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(7.5, "feet"),
  19457. default: true
  19458. },
  19459. {
  19460. name: "Enlarged",
  19461. height: math.unit(12, "feet")
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19467. {
  19468. front: {
  19469. height: math.unit(5 + 3 / 12, "feet"),
  19470. weight: math.unit(160, "lb"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/kira/front.svg",
  19474. extra: 906 / 786,
  19475. bottom: 0.01
  19476. }
  19477. },
  19478. back: {
  19479. height: math.unit(5 + 3 / 12, "feet"),
  19480. weight: math.unit(160, "lb"),
  19481. name: "Back",
  19482. image: {
  19483. source: "./media/characters/kira/back.svg",
  19484. extra: 882 / 757,
  19485. bottom: 0.005
  19486. }
  19487. },
  19488. frontDressed: {
  19489. height: math.unit(5 + 3 / 12, "feet"),
  19490. weight: math.unit(160, "lb"),
  19491. name: "Front (Dressed)",
  19492. image: {
  19493. source: "./media/characters/kira/front-dressed.svg",
  19494. extra: 906 / 786,
  19495. bottom: 0.01
  19496. }
  19497. },
  19498. beans: {
  19499. height: math.unit(0.92, "feet"),
  19500. name: "Beans",
  19501. image: {
  19502. source: "./media/characters/kira/beans.svg"
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(5 + 3 / 12, "feet"),
  19510. default: true
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(5 + 4 / 12, "feet"),
  19519. weight: math.unit(145, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/scramble/front.svg",
  19523. extra: 763 / 727,
  19524. bottom: 0.05
  19525. }
  19526. },
  19527. back: {
  19528. height: math.unit(5 + 4 / 12, "feet"),
  19529. weight: math.unit(145, "lb"),
  19530. name: "Back",
  19531. image: {
  19532. source: "./media/characters/scramble/back.svg",
  19533. extra: 826 / 737,
  19534. bottom: 0.002
  19535. }
  19536. },
  19537. },
  19538. [
  19539. {
  19540. name: "Normal",
  19541. height: math.unit(5 + 4 / 12, "feet"),
  19542. default: true
  19543. },
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19548. {
  19549. side: {
  19550. height: math.unit(6 + 2 / 12, "feet"),
  19551. weight: math.unit(190, "lb"),
  19552. name: "Side",
  19553. image: {
  19554. source: "./media/characters/biscuit/side.svg",
  19555. extra: 858 / 791,
  19556. bottom: 0.044
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(6 + 2 / 12, "feet"),
  19564. default: true
  19565. },
  19566. ]
  19567. ))
  19568. characterMakers.push(() => makeCharacter(
  19569. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19570. {
  19571. front: {
  19572. height: math.unit(5 + 2 / 12, "feet"),
  19573. weight: math.unit(120, "lb"),
  19574. name: "Front",
  19575. image: {
  19576. source: "./media/characters/poffin/front.svg",
  19577. extra: 786 / 680,
  19578. bottom: 0.005
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(5 + 2 / 12, "feet"),
  19586. default: true
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19592. {
  19593. front: {
  19594. height: math.unit(6 + 3 / 12, "feet"),
  19595. weight: math.unit(519, "lb"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/dhari/front.svg",
  19599. extra: 1048 / 946,
  19600. bottom: 0.015
  19601. }
  19602. },
  19603. back: {
  19604. height: math.unit(6 + 3 / 12, "feet"),
  19605. weight: math.unit(519, "lb"),
  19606. name: "Back",
  19607. image: {
  19608. source: "./media/characters/dhari/back.svg",
  19609. extra: 1048 / 931,
  19610. bottom: 0.005
  19611. }
  19612. },
  19613. frontDressed: {
  19614. height: math.unit(6 + 3 / 12, "feet"),
  19615. weight: math.unit(519, "lb"),
  19616. name: "Front (Dressed)",
  19617. image: {
  19618. source: "./media/characters/dhari/front-dressed.svg",
  19619. extra: 1713 / 1546,
  19620. bottom: 0.02
  19621. }
  19622. },
  19623. backDressed: {
  19624. height: math.unit(6 + 3 / 12, "feet"),
  19625. weight: math.unit(519, "lb"),
  19626. name: "Back (Dressed)",
  19627. image: {
  19628. source: "./media/characters/dhari/back-dressed.svg",
  19629. extra: 1699 / 1537,
  19630. bottom: 0.01
  19631. }
  19632. },
  19633. maw: {
  19634. height: math.unit(0.95, "feet"),
  19635. name: "Maw",
  19636. image: {
  19637. source: "./media/characters/dhari/maw.svg"
  19638. }
  19639. },
  19640. wereFront: {
  19641. height: math.unit(12 + 8 / 12, "feet"),
  19642. weight: math.unit(4000, "lb"),
  19643. name: "Front (Were)",
  19644. image: {
  19645. source: "./media/characters/dhari/were-front.svg",
  19646. extra: 1065 / 969,
  19647. bottom: 0.015
  19648. }
  19649. },
  19650. wereBack: {
  19651. height: math.unit(12 + 8 / 12, "feet"),
  19652. weight: math.unit(4000, "lb"),
  19653. name: "Back (Were)",
  19654. image: {
  19655. source: "./media/characters/dhari/were-back.svg",
  19656. extra: 1065 / 969,
  19657. bottom: 0.012
  19658. }
  19659. },
  19660. wereMaw: {
  19661. height: math.unit(0.625, "meters"),
  19662. name: "Maw (Were)",
  19663. image: {
  19664. source: "./media/characters/dhari/were-maw.svg"
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(6 + 3 / 12, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19678. {
  19679. anthro: {
  19680. height: math.unit(5 + 7 / 12, "feet"),
  19681. weight: math.unit(175, "lb"),
  19682. name: "Anthro",
  19683. image: {
  19684. source: "./media/characters/rena-dyne/anthro.svg",
  19685. extra: 1849 / 1785,
  19686. bottom: 0.005
  19687. }
  19688. },
  19689. taur: {
  19690. height: math.unit(15 + 6 / 12, "feet"),
  19691. weight: math.unit(8000, "lb"),
  19692. name: "Taur",
  19693. image: {
  19694. source: "./media/characters/rena-dyne/taur.svg",
  19695. extra: 2315 / 2234,
  19696. bottom: 0.033
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Normal",
  19703. height: math.unit(5 + 7 / 12, "feet"),
  19704. default: true
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(8, "feet"),
  19713. weight: math.unit(600, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/weremeep/front.svg",
  19717. extra: 967 / 862,
  19718. bottom: 0.01
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Normal",
  19725. height: math.unit(8, "feet"),
  19726. default: true
  19727. },
  19728. {
  19729. name: "Lorg",
  19730. height: math.unit(12, "feet")
  19731. },
  19732. {
  19733. name: "Oh Lawd She Comin'",
  19734. height: math.unit(20, "feet")
  19735. },
  19736. ]
  19737. ))
  19738. characterMakers.push(() => makeCharacter(
  19739. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19740. {
  19741. front: {
  19742. height: math.unit(4, "feet"),
  19743. weight: math.unit(90, "lb"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/reza/front.svg",
  19747. extra: 1183 / 1111,
  19748. bottom: 0.017
  19749. }
  19750. },
  19751. back: {
  19752. height: math.unit(4, "feet"),
  19753. weight: math.unit(90, "lb"),
  19754. name: "Back",
  19755. image: {
  19756. source: "./media/characters/reza/back.svg",
  19757. extra: 1183 / 1111,
  19758. bottom: 0.01
  19759. }
  19760. },
  19761. drake: {
  19762. height: math.unit(30, "feet"),
  19763. weight: math.unit(246960, "lb"),
  19764. name: "Drake",
  19765. image: {
  19766. source: "./media/characters/reza/drake.svg",
  19767. extra: 2350 / 2024,
  19768. bottom: 60.7 / 2403
  19769. }
  19770. },
  19771. },
  19772. [
  19773. {
  19774. name: "Normal",
  19775. height: math.unit(4, "feet"),
  19776. default: true
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19782. {
  19783. side: {
  19784. height: math.unit(15, "feet"),
  19785. weight: math.unit(14, "tons"),
  19786. name: "Side",
  19787. image: {
  19788. source: "./media/characters/athea/side.svg",
  19789. extra: 960 / 540,
  19790. bottom: 0.003
  19791. }
  19792. },
  19793. sitting: {
  19794. height: math.unit(6 * 2.85, "feet"),
  19795. weight: math.unit(14, "tons"),
  19796. name: "Sitting",
  19797. image: {
  19798. source: "./media/characters/athea/sitting.svg",
  19799. extra: 621 / 581,
  19800. bottom: 0.075
  19801. }
  19802. },
  19803. maw: {
  19804. height: math.unit(7.59498031496063, "feet"),
  19805. name: "Maw",
  19806. image: {
  19807. source: "./media/characters/athea/maw.svg"
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Lap Cat",
  19814. height: math.unit(2.5, "feet")
  19815. },
  19816. {
  19817. name: "Minimacro",
  19818. height: math.unit(15, "feet"),
  19819. default: true
  19820. },
  19821. {
  19822. name: "Macro",
  19823. height: math.unit(120, "feet")
  19824. },
  19825. {
  19826. name: "Macro+",
  19827. height: math.unit(640, "feet")
  19828. },
  19829. {
  19830. name: "Colossus",
  19831. height: math.unit(2.2, "miles")
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19837. {
  19838. front: {
  19839. height: math.unit(8 + 8 / 12, "feet"),
  19840. weight: math.unit(130, "kg"),
  19841. name: "Front",
  19842. image: {
  19843. source: "./media/characters/seroko/front.svg",
  19844. extra: 1385 / 1280,
  19845. bottom: 0.025
  19846. }
  19847. },
  19848. back: {
  19849. height: math.unit(8 + 8 / 12, "feet"),
  19850. weight: math.unit(130, "kg"),
  19851. name: "Back",
  19852. image: {
  19853. source: "./media/characters/seroko/back.svg",
  19854. extra: 1369 / 1238,
  19855. bottom: 0.018
  19856. }
  19857. },
  19858. frontDressed: {
  19859. height: math.unit(8 + 8 / 12, "feet"),
  19860. weight: math.unit(130, "kg"),
  19861. name: "Front (Dressed)",
  19862. image: {
  19863. source: "./media/characters/seroko/front-dressed.svg",
  19864. extra: 1366 / 1275,
  19865. bottom: 0.03
  19866. }
  19867. },
  19868. },
  19869. [
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(8 + 8 / 12, "feet"),
  19873. default: true
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19879. {
  19880. front: {
  19881. height: math.unit(5.5, "feet"),
  19882. weight: math.unit(160, "lb"),
  19883. name: "Front",
  19884. image: {
  19885. source: "./media/characters/quatzi/front.svg",
  19886. extra: 2346 / 2242,
  19887. bottom: 0.015
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(5.5, "feet"),
  19895. default: true
  19896. },
  19897. {
  19898. name: "Big",
  19899. height: math.unit(7.7, "feet")
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(5 + 11 / 12, "feet"),
  19908. weight: math.unit(180, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/sen/front.svg",
  19912. extra: 1321 / 1254,
  19913. bottom: 0.015
  19914. }
  19915. },
  19916. side: {
  19917. height: math.unit(5 + 11 / 12, "feet"),
  19918. weight: math.unit(180, "lb"),
  19919. name: "Side",
  19920. image: {
  19921. source: "./media/characters/sen/side.svg",
  19922. extra: 1321 / 1254,
  19923. bottom: 0.007
  19924. }
  19925. },
  19926. back: {
  19927. height: math.unit(5 + 11 / 12, "feet"),
  19928. weight: math.unit(180, "lb"),
  19929. name: "Back",
  19930. image: {
  19931. source: "./media/characters/sen/back.svg",
  19932. extra: 1321 / 1254
  19933. }
  19934. },
  19935. },
  19936. [
  19937. {
  19938. name: "Normal",
  19939. height: math.unit(5 + 11 / 12, "feet"),
  19940. default: true
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19946. {
  19947. front: {
  19948. height: math.unit(166.6, "cm"),
  19949. weight: math.unit(66.6, "kg"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/fruity/front.svg",
  19953. extra: 1510 / 1386,
  19954. bottom: 0.04
  19955. }
  19956. },
  19957. back: {
  19958. height: math.unit(166.6, "cm"),
  19959. weight: math.unit(66.6, "lb"),
  19960. name: "Back",
  19961. image: {
  19962. source: "./media/characters/fruity/back.svg",
  19963. extra: 1563 / 1435,
  19964. bottom: 0.005
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(166.6, "cm"),
  19972. default: true
  19973. },
  19974. {
  19975. name: "Demonic",
  19976. height: math.unit(166.6, "feet")
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19982. {
  19983. side: {
  19984. height: math.unit(10, "feet"),
  19985. weight: math.unit(500, "lb"),
  19986. name: "Side",
  19987. image: {
  19988. source: "./media/characters/zost/side.svg",
  19989. extra: 966 / 880,
  19990. bottom: 0.075
  19991. }
  19992. },
  19993. mawFront: {
  19994. height: math.unit(1.08, "meters"),
  19995. name: "Maw (Front)",
  19996. image: {
  19997. source: "./media/characters/zost/maw-front.svg"
  19998. }
  19999. },
  20000. mawSide: {
  20001. height: math.unit(2.66, "feet"),
  20002. name: "Maw (Side)",
  20003. image: {
  20004. source: "./media/characters/zost/maw-side.svg"
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(10, "feet"),
  20012. default: true
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(5 + 4 / 12, "feet"),
  20021. weight: math.unit(120, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/luci/front.svg",
  20025. extra: 1985 / 1884,
  20026. bottom: 0.04
  20027. }
  20028. },
  20029. back: {
  20030. height: math.unit(5 + 4 / 12, "feet"),
  20031. weight: math.unit(120, "lb"),
  20032. name: "Back",
  20033. image: {
  20034. source: "./media/characters/luci/back.svg",
  20035. extra: 1892 / 1791,
  20036. bottom: 0.002
  20037. }
  20038. },
  20039. },
  20040. [
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(5 + 4 / 12, "feet"),
  20044. default: true
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20050. {
  20051. front: {
  20052. height: math.unit(1500, "feet"),
  20053. weight: math.unit(3.8e6, "tons"),
  20054. name: "Front",
  20055. image: {
  20056. source: "./media/characters/2th/front.svg",
  20057. extra: 3489 / 3350,
  20058. bottom: 0.1
  20059. }
  20060. },
  20061. foot: {
  20062. height: math.unit(461, "feet"),
  20063. name: "Foot",
  20064. image: {
  20065. source: "./media/characters/2th/foot.svg"
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "\"Micro\"",
  20072. height: math.unit(15 + 7 / 12, "feet")
  20073. },
  20074. {
  20075. name: "Normal",
  20076. height: math.unit(1500, "feet"),
  20077. default: true
  20078. },
  20079. {
  20080. name: "Macro",
  20081. height: math.unit(5000, "feet")
  20082. },
  20083. {
  20084. name: "Megamacro",
  20085. height: math.unit(15, "miles")
  20086. },
  20087. {
  20088. name: "Gigamacro",
  20089. height: math.unit(4000, "miles")
  20090. },
  20091. {
  20092. name: "Galactic",
  20093. height: math.unit(50, "AU")
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(5 + 6 / 12, "feet"),
  20102. weight: math.unit(220, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/amethyst/front.svg",
  20106. extra: 2078 / 2040,
  20107. bottom: 0.045
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(5 + 6 / 12, "feet"),
  20112. weight: math.unit(220, "lb"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/amethyst/back.svg",
  20116. extra: 2021 / 1989,
  20117. bottom: 0.02
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(5 + 6 / 12, "feet"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(4 + 11 / 12, "feet"),
  20134. weight: math.unit(120, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/yumi-akiyama/front.svg",
  20138. extra: 1327 / 1235,
  20139. bottom: 0.02
  20140. }
  20141. },
  20142. back: {
  20143. height: math.unit(4 + 11 / 12, "feet"),
  20144. weight: math.unit(120, "lb"),
  20145. name: "Back",
  20146. image: {
  20147. source: "./media/characters/yumi-akiyama/back.svg",
  20148. extra: 1287 / 1245,
  20149. bottom: 0.002
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Galactic",
  20156. height: math.unit(50, "galaxies"),
  20157. default: true
  20158. },
  20159. {
  20160. name: "Universal",
  20161. height: math.unit(100, "universes")
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20167. {
  20168. front: {
  20169. height: math.unit(8, "feet"),
  20170. weight: math.unit(500, "lb"),
  20171. name: "Front",
  20172. image: {
  20173. source: "./media/characters/rifter-yrmori/front.svg",
  20174. extra: 1180 / 1125,
  20175. bottom: 0.02
  20176. }
  20177. },
  20178. back: {
  20179. height: math.unit(8, "feet"),
  20180. weight: math.unit(500, "lb"),
  20181. name: "Back",
  20182. image: {
  20183. source: "./media/characters/rifter-yrmori/back.svg",
  20184. extra: 1190 / 1145,
  20185. bottom: 0.001
  20186. }
  20187. },
  20188. wings: {
  20189. height: math.unit(7.75, "feet"),
  20190. weight: math.unit(500, "lb"),
  20191. name: "Wings",
  20192. image: {
  20193. source: "./media/characters/rifter-yrmori/wings.svg",
  20194. extra: 1357 / 1285
  20195. }
  20196. },
  20197. maw: {
  20198. height: math.unit(0.8, "feet"),
  20199. name: "Maw",
  20200. image: {
  20201. source: "./media/characters/rifter-yrmori/maw.svg"
  20202. }
  20203. },
  20204. },
  20205. [
  20206. {
  20207. name: "Normal",
  20208. height: math.unit(8, "feet"),
  20209. default: true
  20210. },
  20211. {
  20212. name: "Macro",
  20213. height: math.unit(42, "meters")
  20214. },
  20215. ]
  20216. ))
  20217. characterMakers.push(() => makeCharacter(
  20218. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20219. {
  20220. were: {
  20221. height: math.unit(25 + 6 / 12, "feet"),
  20222. weight: math.unit(10000, "lb"),
  20223. name: "Were",
  20224. image: {
  20225. source: "./media/characters/tahajin/were.svg",
  20226. extra: 801 / 770,
  20227. bottom: 0.042
  20228. }
  20229. },
  20230. aquatic: {
  20231. height: math.unit(6 + 4 / 12, "feet"),
  20232. weight: math.unit(160, "lb"),
  20233. name: "Aquatic",
  20234. image: {
  20235. source: "./media/characters/tahajin/aquatic.svg",
  20236. extra: 572 / 542,
  20237. bottom: 0.04
  20238. }
  20239. },
  20240. chow: {
  20241. height: math.unit(8 + 11 / 12, "feet"),
  20242. weight: math.unit(450, "lb"),
  20243. name: "Chow",
  20244. image: {
  20245. source: "./media/characters/tahajin/chow.svg",
  20246. extra: 660 / 640,
  20247. bottom: 0.015
  20248. }
  20249. },
  20250. demiNaga: {
  20251. height: math.unit(6 + 8 / 12, "feet"),
  20252. weight: math.unit(300, "lb"),
  20253. name: "Demi Naga",
  20254. image: {
  20255. source: "./media/characters/tahajin/demi-naga.svg",
  20256. extra: 643 / 615,
  20257. bottom: 0.1
  20258. }
  20259. },
  20260. data: {
  20261. height: math.unit(5, "inches"),
  20262. weight: math.unit(0.1, "lb"),
  20263. name: "Data",
  20264. image: {
  20265. source: "./media/characters/tahajin/data.svg"
  20266. }
  20267. },
  20268. fluu: {
  20269. height: math.unit(5 + 7 / 12, "feet"),
  20270. weight: math.unit(140, "lb"),
  20271. name: "Fluu",
  20272. image: {
  20273. source: "./media/characters/tahajin/fluu.svg",
  20274. extra: 628 / 592,
  20275. bottom: 0.02
  20276. }
  20277. },
  20278. starWarrior: {
  20279. height: math.unit(4 + 5 / 12, "feet"),
  20280. weight: math.unit(50, "lb"),
  20281. name: "Star Warrior",
  20282. image: {
  20283. source: "./media/characters/tahajin/star-warrior.svg"
  20284. }
  20285. },
  20286. },
  20287. [
  20288. {
  20289. name: "Normal",
  20290. height: math.unit(25 + 6 / 12, "feet"),
  20291. default: true
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20297. {
  20298. front: {
  20299. height: math.unit(8, "feet"),
  20300. weight: math.unit(350, "lb"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/gabira/front.svg",
  20304. extra: 608 / 580,
  20305. bottom: 0.03
  20306. }
  20307. },
  20308. back: {
  20309. height: math.unit(8, "feet"),
  20310. weight: math.unit(350, "lb"),
  20311. name: "Back",
  20312. image: {
  20313. source: "./media/characters/gabira/back.svg",
  20314. extra: 608 / 580,
  20315. bottom: 0.03
  20316. }
  20317. },
  20318. },
  20319. [
  20320. {
  20321. name: "Normal",
  20322. height: math.unit(8, "feet"),
  20323. default: true
  20324. },
  20325. ]
  20326. ))
  20327. characterMakers.push(() => makeCharacter(
  20328. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20329. {
  20330. front: {
  20331. height: math.unit(5 + 3 / 12, "feet"),
  20332. weight: math.unit(137, "lb"),
  20333. name: "Front",
  20334. image: {
  20335. source: "./media/characters/sasha-katraine/front.svg",
  20336. bottom: 0.045
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "Micro",
  20343. height: math.unit(5, "inches")
  20344. },
  20345. {
  20346. name: "Normal",
  20347. height: math.unit(5 + 3 / 12, "feet"),
  20348. default: true
  20349. },
  20350. ]
  20351. ))
  20352. characterMakers.push(() => makeCharacter(
  20353. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20354. {
  20355. side: {
  20356. height: math.unit(4, "inches"),
  20357. weight: math.unit(200, "grams"),
  20358. name: "Side",
  20359. image: {
  20360. source: "./media/characters/der/side.svg",
  20361. extra: 719 / 400,
  20362. bottom: 30.6 / 749.9187
  20363. }
  20364. },
  20365. },
  20366. [
  20367. {
  20368. name: "Micro",
  20369. height: math.unit(4, "inches"),
  20370. default: true
  20371. },
  20372. ]
  20373. ))
  20374. characterMakers.push(() => makeCharacter(
  20375. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20376. {
  20377. side: {
  20378. height: math.unit(30, "meters"),
  20379. weight: math.unit(700, "tonnes"),
  20380. name: "Side",
  20381. image: {
  20382. source: "./media/characters/fixerdragon/side.svg",
  20383. extra: (1293.0514 - 116.03) / 1106.86,
  20384. bottom: 116.03 / 1293.0514
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Planck",
  20391. height: math.unit(1.6e-35, "meters")
  20392. },
  20393. {
  20394. name: "Micro",
  20395. height: math.unit(0.4, "meters")
  20396. },
  20397. {
  20398. name: "Normal",
  20399. height: math.unit(30, "meters"),
  20400. default: true
  20401. },
  20402. {
  20403. name: "Megamacro",
  20404. height: math.unit(1.2, "megameters")
  20405. },
  20406. {
  20407. name: "Teramacro",
  20408. height: math.unit(130, "terameters")
  20409. },
  20410. {
  20411. name: "Yottamacro",
  20412. height: math.unit(6200, "yottameters")
  20413. },
  20414. ]
  20415. ));
  20416. characterMakers.push(() => makeCharacter(
  20417. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20418. {
  20419. front: {
  20420. height: math.unit(8, "feet"),
  20421. weight: math.unit(250, "lb"),
  20422. name: "Front",
  20423. image: {
  20424. source: "./media/characters/kite/front.svg",
  20425. extra: 2796 / 2659,
  20426. bottom: 0.002
  20427. }
  20428. },
  20429. },
  20430. [
  20431. {
  20432. name: "Normal",
  20433. height: math.unit(8, "feet"),
  20434. default: true
  20435. },
  20436. {
  20437. name: "Macro",
  20438. height: math.unit(360, "feet")
  20439. },
  20440. {
  20441. name: "Megamacro",
  20442. height: math.unit(1500, "feet")
  20443. },
  20444. ]
  20445. ))
  20446. characterMakers.push(() => makeCharacter(
  20447. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20448. {
  20449. front: {
  20450. height: math.unit(5 + 10 / 12, "feet"),
  20451. weight: math.unit(150, "lb"),
  20452. name: "Front",
  20453. image: {
  20454. source: "./media/characters/poojawa-vynar/front.svg",
  20455. extra: (1506.1547 - 55) / 1356.6,
  20456. bottom: 55 / 1506.1547
  20457. }
  20458. },
  20459. frontTailless: {
  20460. height: math.unit(5 + 10 / 12, "feet"),
  20461. weight: math.unit(150, "lb"),
  20462. name: "Front (Tailless)",
  20463. image: {
  20464. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20465. extra: (1506.1547 - 55) / 1356.6,
  20466. bottom: 55 / 1506.1547
  20467. }
  20468. },
  20469. },
  20470. [
  20471. {
  20472. name: "Normal",
  20473. height: math.unit(5 + 10 / 12, "feet"),
  20474. default: true
  20475. },
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20480. {
  20481. front: {
  20482. height: math.unit(293, "meters"),
  20483. weight: math.unit(70400, "tons"),
  20484. name: "Front",
  20485. image: {
  20486. source: "./media/characters/violette/front.svg",
  20487. extra: 1227 / 1180,
  20488. bottom: 0.005
  20489. }
  20490. },
  20491. back: {
  20492. height: math.unit(293, "meters"),
  20493. weight: math.unit(70400, "tons"),
  20494. name: "Back",
  20495. image: {
  20496. source: "./media/characters/violette/back.svg",
  20497. extra: 1227 / 1180,
  20498. bottom: 0.005
  20499. }
  20500. },
  20501. },
  20502. [
  20503. {
  20504. name: "Macro",
  20505. height: math.unit(293, "meters"),
  20506. default: true
  20507. },
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20512. {
  20513. front: {
  20514. height: math.unit(1050, "feet"),
  20515. weight: math.unit(200000, "tons"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/alessandra/front.svg",
  20519. extra: 960 / 912,
  20520. bottom: 0.06
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Macro",
  20527. height: math.unit(1050, "feet")
  20528. },
  20529. {
  20530. name: "Macro+",
  20531. height: math.unit(900, "meters"),
  20532. default: true
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20538. {
  20539. front: {
  20540. height: math.unit(5, "feet"),
  20541. weight: math.unit(187, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/person/front.svg",
  20545. extra: 3087 / 2945,
  20546. bottom: 91 / 3181
  20547. }
  20548. },
  20549. },
  20550. [
  20551. {
  20552. name: "Micro",
  20553. height: math.unit(3, "inches")
  20554. },
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(5, "feet"),
  20558. default: true
  20559. },
  20560. {
  20561. name: "Macro",
  20562. height: math.unit(90, "feet")
  20563. },
  20564. {
  20565. name: "Max Size",
  20566. height: math.unit(280, "feet")
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20572. {
  20573. front: {
  20574. height: math.unit(4.5, "meters"),
  20575. weight: math.unit(3200, "lb"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/ty/front.svg",
  20579. extra: 1038 / 960,
  20580. bottom: 31.156 / 1068
  20581. }
  20582. },
  20583. back: {
  20584. height: math.unit(4.5, "meters"),
  20585. weight: math.unit(3200, "lb"),
  20586. name: "Back",
  20587. image: {
  20588. source: "./media/characters/ty/back.svg",
  20589. extra: 1044 / 966,
  20590. bottom: 7.48 / 1049
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Normal",
  20597. height: math.unit(4.5, "meters"),
  20598. default: true
  20599. },
  20600. ]
  20601. ))
  20602. characterMakers.push(() => makeCharacter(
  20603. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20604. {
  20605. front: {
  20606. height: math.unit(5 + 4 / 12, "feet"),
  20607. weight: math.unit(115, "lb"),
  20608. name: "Front",
  20609. image: {
  20610. source: "./media/characters/rocky/front.svg",
  20611. extra: 1012 / 975,
  20612. bottom: 54 / 1066
  20613. }
  20614. },
  20615. },
  20616. [
  20617. {
  20618. name: "Normal",
  20619. height: math.unit(5 + 4 / 12, "feet"),
  20620. default: true
  20621. },
  20622. ]
  20623. ))
  20624. characterMakers.push(() => makeCharacter(
  20625. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20626. {
  20627. upright: {
  20628. height: math.unit(6, "meters"),
  20629. weight: math.unit(4000, "kg"),
  20630. name: "Upright",
  20631. image: {
  20632. source: "./media/characters/ruin/upright.svg",
  20633. extra: 668 / 661,
  20634. bottom: 42 / 799.8396
  20635. }
  20636. },
  20637. },
  20638. [
  20639. {
  20640. name: "Normal",
  20641. height: math.unit(6, "meters"),
  20642. default: true
  20643. },
  20644. ]
  20645. ))
  20646. characterMakers.push(() => makeCharacter(
  20647. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20648. {
  20649. front: {
  20650. height: math.unit(5, "feet"),
  20651. weight: math.unit(106, "lb"),
  20652. name: "Front",
  20653. image: {
  20654. source: "./media/characters/robin/front.svg",
  20655. extra: 862 / 799,
  20656. bottom: 42.4 / 914.8856
  20657. }
  20658. },
  20659. },
  20660. [
  20661. {
  20662. name: "Normal",
  20663. height: math.unit(5, "feet"),
  20664. default: true
  20665. },
  20666. ]
  20667. ))
  20668. characterMakers.push(() => makeCharacter(
  20669. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20670. {
  20671. side: {
  20672. height: math.unit(3, "feet"),
  20673. weight: math.unit(225, "lb"),
  20674. name: "Side",
  20675. image: {
  20676. source: "./media/characters/saian/side.svg",
  20677. extra: 566 / 356,
  20678. bottom: 79.7 / 643
  20679. }
  20680. },
  20681. maw: {
  20682. height: math.unit(2.85, "feet"),
  20683. name: "Maw",
  20684. image: {
  20685. source: "./media/characters/saian/maw.svg"
  20686. }
  20687. },
  20688. },
  20689. [
  20690. {
  20691. name: "Normal",
  20692. height: math.unit(3, "feet"),
  20693. default: true
  20694. },
  20695. ]
  20696. ))
  20697. characterMakers.push(() => makeCharacter(
  20698. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20699. {
  20700. side: {
  20701. height: math.unit(8, "feet"),
  20702. weight: math.unit(300, "lb"),
  20703. name: "Side",
  20704. image: {
  20705. source: "./media/characters/equus-silvermane/side.svg",
  20706. extra: 2176 / 2050,
  20707. bottom: 65.7 / 2245
  20708. }
  20709. },
  20710. front: {
  20711. height: math.unit(8, "feet"),
  20712. weight: math.unit(300, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/equus-silvermane/front.svg",
  20716. extra: 4633 / 4400,
  20717. bottom: 71.3 / 4706.915
  20718. }
  20719. },
  20720. sideStepping: {
  20721. height: math.unit(8, "feet"),
  20722. weight: math.unit(300, "lb"),
  20723. name: "Side (Stepping)",
  20724. image: {
  20725. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20726. extra: 1968 / 1860,
  20727. bottom: 16.4 / 1989
  20728. }
  20729. },
  20730. },
  20731. [
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(8, "feet")
  20735. },
  20736. {
  20737. name: "Minimacro",
  20738. height: math.unit(75, "feet"),
  20739. default: true
  20740. },
  20741. {
  20742. name: "Macro",
  20743. height: math.unit(150, "feet")
  20744. },
  20745. {
  20746. name: "Macro+",
  20747. height: math.unit(1000, "feet")
  20748. },
  20749. {
  20750. name: "Megamacro",
  20751. height: math.unit(1, "mile")
  20752. },
  20753. ]
  20754. ))
  20755. characterMakers.push(() => makeCharacter(
  20756. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20757. {
  20758. side: {
  20759. height: math.unit(20, "feet"),
  20760. weight: math.unit(30000, "kg"),
  20761. name: "Side",
  20762. image: {
  20763. source: "./media/characters/windar/side.svg",
  20764. extra: 1491 / 1248,
  20765. bottom: 82.56 / 1568
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(20, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20779. {
  20780. side: {
  20781. height: math.unit(15.66, "feet"),
  20782. weight: math.unit(150, "lb"),
  20783. name: "Side",
  20784. image: {
  20785. source: "./media/characters/melody/side.svg",
  20786. extra: 1097 / 944,
  20787. bottom: 11.8 / 1109
  20788. }
  20789. },
  20790. sideOutfit: {
  20791. height: math.unit(15.66, "feet"),
  20792. weight: math.unit(150, "lb"),
  20793. name: "Side (Outfit)",
  20794. image: {
  20795. source: "./media/characters/melody/side-outfit.svg",
  20796. extra: 1097 / 944,
  20797. bottom: 11.8 / 1109
  20798. }
  20799. },
  20800. },
  20801. [
  20802. {
  20803. name: "Normal",
  20804. height: math.unit(15.66, "feet"),
  20805. default: true
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20811. {
  20812. front: {
  20813. height: math.unit(8, "feet"),
  20814. weight: math.unit(325, "lb"),
  20815. name: "Front",
  20816. image: {
  20817. source: "./media/characters/windera/front.svg",
  20818. extra: 3180 / 2845,
  20819. bottom: 178 / 3365
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(8, "feet"),
  20827. default: true
  20828. },
  20829. ]
  20830. ))
  20831. characterMakers.push(() => makeCharacter(
  20832. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20833. {
  20834. front: {
  20835. height: math.unit(28.75, "feet"),
  20836. weight: math.unit(2000, "kg"),
  20837. name: "Front",
  20838. image: {
  20839. source: "./media/characters/sonear/front.svg",
  20840. extra: 1041.1 / 964.9,
  20841. bottom: 53.7 / 1096.6
  20842. }
  20843. },
  20844. },
  20845. [
  20846. {
  20847. name: "Normal",
  20848. height: math.unit(28.75, "feet"),
  20849. default: true
  20850. },
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20855. {
  20856. side: {
  20857. height: math.unit(25.5, "feet"),
  20858. weight: math.unit(23000, "kg"),
  20859. name: "Side",
  20860. image: {
  20861. source: "./media/characters/kanara/side.svg"
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(25.5, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20875. {
  20876. side: {
  20877. height: math.unit(10, "feet"),
  20878. weight: math.unit(1000, "kg"),
  20879. name: "Side",
  20880. image: {
  20881. source: "./media/characters/ereus/side.svg",
  20882. extra: 1157 / 959,
  20883. bottom: 153 / 1312.5
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(10, "feet"),
  20891. default: true
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20897. {
  20898. side: {
  20899. height: math.unit(4.5, "feet"),
  20900. weight: math.unit(500, "lb"),
  20901. name: "Side",
  20902. image: {
  20903. source: "./media/characters/e-ter/side.svg",
  20904. extra: 1550 / 1248,
  20905. bottom: 146 / 1694
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(4.5, "feet"),
  20913. default: true
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20919. {
  20920. side: {
  20921. height: math.unit(9.7, "feet"),
  20922. weight: math.unit(4000, "kg"),
  20923. name: "Side",
  20924. image: {
  20925. source: "./media/characters/yamie/side.svg"
  20926. }
  20927. },
  20928. },
  20929. [
  20930. {
  20931. name: "Normal",
  20932. height: math.unit(9.7, "feet"),
  20933. default: true
  20934. },
  20935. ]
  20936. ))
  20937. characterMakers.push(() => makeCharacter(
  20938. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20939. {
  20940. front: {
  20941. height: math.unit(50, "feet"),
  20942. weight: math.unit(50000, "kg"),
  20943. name: "Front",
  20944. image: {
  20945. source: "./media/characters/anders/front.svg",
  20946. extra: 570 / 539,
  20947. bottom: 14.7 / 586.7
  20948. }
  20949. },
  20950. },
  20951. [
  20952. {
  20953. name: "Large",
  20954. height: math.unit(50, "feet")
  20955. },
  20956. {
  20957. name: "Macro",
  20958. height: math.unit(2000, "feet"),
  20959. default: true
  20960. },
  20961. {
  20962. name: "Megamacro",
  20963. height: math.unit(12, "miles")
  20964. },
  20965. ]
  20966. ))
  20967. characterMakers.push(() => makeCharacter(
  20968. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20969. {
  20970. front: {
  20971. height: math.unit(7 + 2 / 12, "feet"),
  20972. weight: math.unit(300, "lb"),
  20973. name: "Front",
  20974. image: {
  20975. source: "./media/characters/reban/front.svg",
  20976. extra: 516 / 487,
  20977. bottom: 42.82 / 558.356
  20978. }
  20979. },
  20980. dick: {
  20981. height: math.unit(7 / 5, "feet"),
  20982. name: "Dick",
  20983. image: {
  20984. source: "./media/characters/reban/dick.svg"
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Natural Height",
  20991. height: math.unit(7 + 2 / 12, "feet")
  20992. },
  20993. {
  20994. name: "Macro",
  20995. height: math.unit(500, "feet"),
  20996. default: true
  20997. },
  20998. {
  20999. name: "Canon Height",
  21000. height: math.unit(50, "AU")
  21001. },
  21002. ]
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21006. {
  21007. front: {
  21008. height: math.unit(6, "feet"),
  21009. weight: math.unit(150, "lb"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/terrance-keayes/front.svg",
  21013. extra: 1.005,
  21014. bottom: 151 / 1615
  21015. }
  21016. },
  21017. side: {
  21018. height: math.unit(6, "feet"),
  21019. weight: math.unit(150, "lb"),
  21020. name: "Side",
  21021. image: {
  21022. source: "./media/characters/terrance-keayes/side.svg",
  21023. extra: 1.005,
  21024. bottom: 129.4 / 1544
  21025. }
  21026. },
  21027. back: {
  21028. height: math.unit(6, "feet"),
  21029. weight: math.unit(150, "lb"),
  21030. name: "Back",
  21031. image: {
  21032. source: "./media/characters/terrance-keayes/back.svg",
  21033. extra: 1.005,
  21034. bottom: 58.4 / 1557.3
  21035. }
  21036. },
  21037. dick: {
  21038. height: math.unit(6 * 0.208, "feet"),
  21039. name: "Dick",
  21040. image: {
  21041. source: "./media/characters/terrance-keayes/dick.svg"
  21042. }
  21043. },
  21044. },
  21045. [
  21046. {
  21047. name: "Canon Height",
  21048. height: math.unit(35, "miles"),
  21049. default: true
  21050. },
  21051. ]
  21052. ))
  21053. characterMakers.push(() => makeCharacter(
  21054. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21055. {
  21056. front: {
  21057. height: math.unit(6, "feet"),
  21058. weight: math.unit(150, "lb"),
  21059. name: "Front",
  21060. image: {
  21061. source: "./media/characters/ofelia/front.svg",
  21062. extra: 546 / 541,
  21063. bottom: 39 / 583
  21064. }
  21065. },
  21066. back: {
  21067. height: math.unit(6, "feet"),
  21068. weight: math.unit(150, "lb"),
  21069. name: "Back",
  21070. image: {
  21071. source: "./media/characters/ofelia/back.svg",
  21072. extra: 564 / 559.5,
  21073. bottom: 8.69 / 573.02
  21074. }
  21075. },
  21076. maw: {
  21077. height: math.unit(1, "feet"),
  21078. name: "Maw",
  21079. image: {
  21080. source: "./media/characters/ofelia/maw.svg"
  21081. }
  21082. },
  21083. foot: {
  21084. height: math.unit(1.949, "feet"),
  21085. name: "Foot",
  21086. image: {
  21087. source: "./media/characters/ofelia/foot.svg"
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Canon Height",
  21094. height: math.unit(2000, "miles"),
  21095. default: true
  21096. },
  21097. ]
  21098. ))
  21099. characterMakers.push(() => makeCharacter(
  21100. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21101. {
  21102. front: {
  21103. height: math.unit(6, "feet"),
  21104. weight: math.unit(150, "lb"),
  21105. name: "Front",
  21106. image: {
  21107. source: "./media/characters/samuel/front.svg",
  21108. extra: 265 / 258,
  21109. bottom: 2 / 266.1566
  21110. }
  21111. },
  21112. },
  21113. [
  21114. {
  21115. name: "Macro",
  21116. height: math.unit(100, "feet"),
  21117. default: true
  21118. },
  21119. {
  21120. name: "Full Size",
  21121. height: math.unit(1000, "miles")
  21122. },
  21123. ]
  21124. ))
  21125. characterMakers.push(() => makeCharacter(
  21126. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21127. {
  21128. front: {
  21129. height: math.unit(6, "feet"),
  21130. weight: math.unit(300, "lb"),
  21131. name: "Front",
  21132. image: {
  21133. source: "./media/characters/beishir-kiel/front.svg",
  21134. extra: 569 / 547,
  21135. bottom: 41.9 / 609
  21136. }
  21137. },
  21138. maw: {
  21139. height: math.unit(6 * 0.202, "feet"),
  21140. name: "Maw",
  21141. image: {
  21142. source: "./media/characters/beishir-kiel/maw.svg"
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Macro",
  21149. height: math.unit(300, "feet"),
  21150. default: true
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21156. {
  21157. front: {
  21158. height: math.unit(5 + 8 / 12, "feet"),
  21159. weight: math.unit(120, "lb"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/logan-grey/front.svg",
  21163. extra: 2539 / 2393,
  21164. bottom: 97.6 / 2636.37
  21165. }
  21166. },
  21167. frontAlt: {
  21168. height: math.unit(5 + 8 / 12, "feet"),
  21169. weight: math.unit(120, "lb"),
  21170. name: "Front (Alt)",
  21171. image: {
  21172. source: "./media/characters/logan-grey/front-alt.svg",
  21173. extra: 958 / 893,
  21174. bottom: 15 / 970.768
  21175. }
  21176. },
  21177. back: {
  21178. height: math.unit(5 + 8 / 12, "feet"),
  21179. weight: math.unit(120, "lb"),
  21180. name: "Back",
  21181. image: {
  21182. source: "./media/characters/logan-grey/back.svg",
  21183. extra: 958 / 893,
  21184. bottom: 2.1881 / 970.9788
  21185. }
  21186. },
  21187. dick: {
  21188. height: math.unit(1.437, "feet"),
  21189. name: "Dick",
  21190. image: {
  21191. source: "./media/characters/logan-grey/dick.svg"
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Normal",
  21198. height: math.unit(5 + 8 / 12, "feet")
  21199. },
  21200. {
  21201. name: "The 500 Foot Femboy",
  21202. height: math.unit(500, "feet"),
  21203. default: true
  21204. },
  21205. {
  21206. name: "Megmacro",
  21207. height: math.unit(20, "miles")
  21208. },
  21209. ]
  21210. ))
  21211. characterMakers.push(() => makeCharacter(
  21212. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21213. {
  21214. front: {
  21215. height: math.unit(8 + 2 / 12, "feet"),
  21216. weight: math.unit(275, "lb"),
  21217. name: "Front",
  21218. image: {
  21219. source: "./media/characters/draganta/front.svg",
  21220. extra: 1177 / 1135,
  21221. bottom: 33.46 / 1212.1
  21222. }
  21223. },
  21224. },
  21225. [
  21226. {
  21227. name: "Normal",
  21228. height: math.unit(8 + 6 / 12, "feet"),
  21229. default: true
  21230. },
  21231. {
  21232. name: "Macro",
  21233. height: math.unit(150, "feet")
  21234. },
  21235. {
  21236. name: "Megamacro",
  21237. height: math.unit(1000, "miles")
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21243. {
  21244. front: {
  21245. height: math.unit(1.72, "m"),
  21246. weight: math.unit(80, "lb"),
  21247. name: "Front",
  21248. image: {
  21249. source: "./media/characters/voski/front.svg",
  21250. extra: 2076.22 / 2022.4,
  21251. bottom: 102.7 / 2177.3866
  21252. }
  21253. },
  21254. frontNsfw: {
  21255. height: math.unit(1.72, "m"),
  21256. weight: math.unit(80, "lb"),
  21257. name: "Front (NSFW)",
  21258. image: {
  21259. source: "./media/characters/voski/front-nsfw.svg",
  21260. extra: 2076.22 / 2022.4,
  21261. bottom: 102.7 / 2177.3866
  21262. }
  21263. },
  21264. back: {
  21265. height: math.unit(1.72, "m"),
  21266. weight: math.unit(80, "lb"),
  21267. name: "Back",
  21268. image: {
  21269. source: "./media/characters/voski/back.svg",
  21270. extra: 2104 / 2051,
  21271. bottom: 10.45 / 2113.63
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(1.72, "m")
  21279. },
  21280. {
  21281. name: "Macro",
  21282. height: math.unit(55, "m"),
  21283. default: true
  21284. },
  21285. {
  21286. name: "Macro+",
  21287. height: math.unit(300, "m")
  21288. },
  21289. {
  21290. name: "Macro++",
  21291. height: math.unit(700, "m")
  21292. },
  21293. {
  21294. name: "Macro+++",
  21295. height: math.unit(4500, "m")
  21296. },
  21297. {
  21298. name: "Macro++++",
  21299. height: math.unit(45, "km")
  21300. },
  21301. {
  21302. name: "Macro+++++",
  21303. height: math.unit(1220, "km")
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(2.3, "m"),
  21312. weight: math.unit(304, "kg"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/icowom-lee/front.svg",
  21316. extra: 985 / 955,
  21317. bottom: 25.4 / 1012
  21318. }
  21319. },
  21320. fronttentacles: {
  21321. height: math.unit(2.3, "m"),
  21322. weight: math.unit(304, "kg"),
  21323. name: "Front-tentacles",
  21324. image: {
  21325. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21326. extra: 985 / 955,
  21327. bottom: 25.4 / 1012
  21328. }
  21329. },
  21330. back: {
  21331. height: math.unit(2.3, "m"),
  21332. weight: math.unit(304, "kg"),
  21333. name: "Back",
  21334. image: {
  21335. source: "./media/characters/icowom-lee/back.svg",
  21336. extra: 975 / 954,
  21337. bottom: 9.5 / 985
  21338. }
  21339. },
  21340. backtentacles: {
  21341. height: math.unit(2.3, "m"),
  21342. weight: math.unit(304, "kg"),
  21343. name: "Back-tentacles",
  21344. image: {
  21345. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21346. extra: 975 / 954,
  21347. bottom: 9.5 / 985
  21348. }
  21349. },
  21350. frontDressed: {
  21351. height: math.unit(2.3, "m"),
  21352. weight: math.unit(304, "kg"),
  21353. name: "Front (Dressed)",
  21354. image: {
  21355. source: "./media/characters/icowom-lee/front-dressed.svg",
  21356. extra: 3076 / 2933,
  21357. bottom: 51.4 / 3125.1889
  21358. }
  21359. },
  21360. rump: {
  21361. height: math.unit(0.776, "meters"),
  21362. name: "Rump",
  21363. image: {
  21364. source: "./media/characters/icowom-lee/rump.svg"
  21365. }
  21366. },
  21367. genitals: {
  21368. height: math.unit(0.78, "meters"),
  21369. name: "Genitals",
  21370. image: {
  21371. source: "./media/characters/icowom-lee/genitals.svg"
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(2.3, "meters"),
  21379. default: true
  21380. },
  21381. {
  21382. name: "Macro",
  21383. height: math.unit(94, "meters"),
  21384. default: true
  21385. },
  21386. ]
  21387. ))
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21390. {
  21391. front: {
  21392. height: math.unit(22, "meters"),
  21393. weight: math.unit(21000, "kg"),
  21394. name: "Front",
  21395. image: {
  21396. source: "./media/characters/shock-diamond/front.svg",
  21397. extra: 2204 / 2053,
  21398. bottom: 65 / 2239.47
  21399. }
  21400. },
  21401. frontNude: {
  21402. height: math.unit(22, "meters"),
  21403. weight: math.unit(21000, "kg"),
  21404. name: "Front (Nude)",
  21405. image: {
  21406. source: "./media/characters/shock-diamond/front-nude.svg",
  21407. extra: 2514 / 2285,
  21408. bottom: 13 / 2527.56
  21409. }
  21410. },
  21411. },
  21412. [
  21413. {
  21414. name: "Normal",
  21415. height: math.unit(3, "meters")
  21416. },
  21417. {
  21418. name: "Macro",
  21419. height: math.unit(22, "meters"),
  21420. default: true
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21426. {
  21427. front: {
  21428. height: math.unit(5 + 4 / 12, "feet"),
  21429. weight: math.unit(120, "lb"),
  21430. name: "Front",
  21431. image: {
  21432. source: "./media/characters/rory/front.svg",
  21433. extra: 589 / 556,
  21434. bottom: 45.7 / 635.76
  21435. }
  21436. },
  21437. frontNude: {
  21438. height: math.unit(5 + 4 / 12, "feet"),
  21439. weight: math.unit(120, "lb"),
  21440. name: "Front (Nude)",
  21441. image: {
  21442. source: "./media/characters/rory/front-nude.svg",
  21443. extra: 589 / 556,
  21444. bottom: 45.7 / 635.76
  21445. }
  21446. },
  21447. side: {
  21448. height: math.unit(5 + 4 / 12, "feet"),
  21449. weight: math.unit(120, "lb"),
  21450. name: "Side",
  21451. image: {
  21452. source: "./media/characters/rory/side.svg",
  21453. extra: 597 / 564,
  21454. bottom: 55 / 653
  21455. }
  21456. },
  21457. back: {
  21458. height: math.unit(5 + 4 / 12, "feet"),
  21459. weight: math.unit(120, "lb"),
  21460. name: "Back",
  21461. image: {
  21462. source: "./media/characters/rory/back.svg",
  21463. extra: 620 / 585,
  21464. bottom: 8.86 / 630.43
  21465. }
  21466. },
  21467. dick: {
  21468. height: math.unit(0.86, "feet"),
  21469. name: "Dick",
  21470. image: {
  21471. source: "./media/characters/rory/dick.svg"
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(5 + 4 / 12, "feet"),
  21479. default: true
  21480. },
  21481. {
  21482. name: "Macro",
  21483. height: math.unit(100, "feet")
  21484. },
  21485. {
  21486. name: "Macro+",
  21487. height: math.unit(140, "feet")
  21488. },
  21489. {
  21490. name: "Macro++",
  21491. height: math.unit(300, "feet")
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(5 + 9 / 12, "feet"),
  21500. weight: math.unit(190, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/sprisk/front.svg",
  21504. extra: 1225 / 1180,
  21505. bottom: 42.7 / 1266.4
  21506. }
  21507. },
  21508. frontNsfw: {
  21509. height: math.unit(5 + 9 / 12, "feet"),
  21510. weight: math.unit(190, "lb"),
  21511. name: "Front (NSFW)",
  21512. image: {
  21513. source: "./media/characters/sprisk/front-nsfw.svg",
  21514. extra: 1225 / 1180,
  21515. bottom: 42.7 / 1266.4
  21516. }
  21517. },
  21518. back: {
  21519. height: math.unit(5 + 9 / 12, "feet"),
  21520. weight: math.unit(190, "lb"),
  21521. name: "Back",
  21522. image: {
  21523. source: "./media/characters/sprisk/back.svg",
  21524. extra: 1247 / 1200,
  21525. bottom: 5.6 / 1253.04
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Tiny",
  21532. height: math.unit(2, "inches")
  21533. },
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(5 + 9 / 12, "feet"),
  21537. default: true
  21538. },
  21539. {
  21540. name: "Mini Macro",
  21541. height: math.unit(18, "feet")
  21542. },
  21543. {
  21544. name: "Macro",
  21545. height: math.unit(100, "feet")
  21546. },
  21547. {
  21548. name: "MACRO",
  21549. height: math.unit(50, "miles")
  21550. },
  21551. {
  21552. name: "M A C R O",
  21553. height: math.unit(300, "miles")
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21559. {
  21560. side: {
  21561. height: math.unit(15.6, "meters"),
  21562. weight: math.unit(700000, "kg"),
  21563. name: "Side",
  21564. image: {
  21565. source: "./media/characters/bunsen/side.svg",
  21566. extra: 1644 / 358
  21567. }
  21568. },
  21569. foot: {
  21570. height: math.unit(1.611 * 1644 / 358, "meter"),
  21571. name: "Foot",
  21572. image: {
  21573. source: "./media/characters/bunsen/foot.svg"
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Small",
  21580. height: math.unit(10, "feet")
  21581. },
  21582. {
  21583. name: "Normal",
  21584. height: math.unit(15.6, "meters"),
  21585. default: true
  21586. },
  21587. ]
  21588. ))
  21589. characterMakers.push(() => makeCharacter(
  21590. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21591. {
  21592. front: {
  21593. height: math.unit(4 + 11 / 12, "feet"),
  21594. weight: math.unit(140, "lb"),
  21595. name: "Front",
  21596. image: {
  21597. source: "./media/characters/sesh/front.svg",
  21598. extra: 3420 / 3231,
  21599. bottom: 72 / 3949.5
  21600. }
  21601. },
  21602. },
  21603. [
  21604. {
  21605. name: "Normal",
  21606. height: math.unit(4 + 11 / 12, "feet")
  21607. },
  21608. {
  21609. name: "Grown",
  21610. height: math.unit(15, "feet"),
  21611. default: true
  21612. },
  21613. {
  21614. name: "Macro",
  21615. height: math.unit(1500, "feet")
  21616. },
  21617. {
  21618. name: "Megamacro",
  21619. height: math.unit(30, "miles")
  21620. },
  21621. {
  21622. name: "Continental",
  21623. height: math.unit(3000, "miles")
  21624. },
  21625. {
  21626. name: "Gravity Mass",
  21627. height: math.unit(300000, "miles")
  21628. },
  21629. {
  21630. name: "Planet Buster",
  21631. height: math.unit(30000000, "miles")
  21632. },
  21633. {
  21634. name: "Big",
  21635. height: math.unit(3000000000, "miles")
  21636. },
  21637. ]
  21638. ))
  21639. characterMakers.push(() => makeCharacter(
  21640. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21641. {
  21642. front: {
  21643. height: math.unit(9, "feet"),
  21644. weight: math.unit(350, "lb"),
  21645. name: "Front",
  21646. image: {
  21647. source: "./media/characters/pepper/front.svg",
  21648. extra: 1448 / 1312,
  21649. bottom: 9.4 / 1457.88
  21650. }
  21651. },
  21652. back: {
  21653. height: math.unit(9, "feet"),
  21654. weight: math.unit(350, "lb"),
  21655. name: "Back",
  21656. image: {
  21657. source: "./media/characters/pepper/back.svg",
  21658. extra: 1423 / 1300,
  21659. bottom: 4.6 / 1429
  21660. }
  21661. },
  21662. maw: {
  21663. height: math.unit(0.932, "feet"),
  21664. name: "Maw",
  21665. image: {
  21666. source: "./media/characters/pepper/maw.svg"
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(9, "feet"),
  21674. default: true
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21680. {
  21681. front: {
  21682. height: math.unit(6, "feet"),
  21683. weight: math.unit(150, "lb"),
  21684. name: "Front",
  21685. image: {
  21686. source: "./media/characters/maelstrom/front.svg",
  21687. extra: 2100 / 1883,
  21688. bottom: 94 / 2196.7
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Less Kaiju",
  21695. height: math.unit(200, "feet")
  21696. },
  21697. {
  21698. name: "Kaiju",
  21699. height: math.unit(400, "feet"),
  21700. default: true
  21701. },
  21702. {
  21703. name: "Kaiju-er",
  21704. height: math.unit(600, "feet")
  21705. },
  21706. ]
  21707. ))
  21708. characterMakers.push(() => makeCharacter(
  21709. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21710. {
  21711. front: {
  21712. height: math.unit(6 + 5 / 12, "feet"),
  21713. weight: math.unit(180, "lb"),
  21714. name: "Front",
  21715. image: {
  21716. source: "./media/characters/lexir/front.svg",
  21717. extra: 180 / 172,
  21718. bottom: 12 / 192
  21719. }
  21720. },
  21721. back: {
  21722. height: math.unit(6 + 5 / 12, "feet"),
  21723. weight: math.unit(180, "lb"),
  21724. name: "Back",
  21725. image: {
  21726. source: "./media/characters/lexir/back.svg",
  21727. extra: 183.84 / 175.5,
  21728. bottom: 3.1 / 187
  21729. }
  21730. },
  21731. },
  21732. [
  21733. {
  21734. name: "Very Smal",
  21735. height: math.unit(1, "nm")
  21736. },
  21737. {
  21738. name: "Normal",
  21739. height: math.unit(6 + 5 / 12, "feet"),
  21740. default: true
  21741. },
  21742. {
  21743. name: "Macro",
  21744. height: math.unit(1, "mile")
  21745. },
  21746. {
  21747. name: "Megamacro",
  21748. height: math.unit(50, "miles")
  21749. },
  21750. ]
  21751. ))
  21752. characterMakers.push(() => makeCharacter(
  21753. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21754. {
  21755. front: {
  21756. height: math.unit(1.5, "meters"),
  21757. weight: math.unit(100, "lb"),
  21758. name: "Front",
  21759. image: {
  21760. source: "./media/characters/maksio/front.svg",
  21761. extra: 1549 / 1531,
  21762. bottom: 123.7 / 1674.5429
  21763. }
  21764. },
  21765. back: {
  21766. height: math.unit(1.5, "meters"),
  21767. weight: math.unit(100, "lb"),
  21768. name: "Back",
  21769. image: {
  21770. source: "./media/characters/maksio/back.svg",
  21771. extra: 1541 / 1509,
  21772. bottom: 97 / 1639
  21773. }
  21774. },
  21775. hand: {
  21776. height: math.unit(0.621, "feet"),
  21777. name: "Hand",
  21778. image: {
  21779. source: "./media/characters/maksio/hand.svg"
  21780. }
  21781. },
  21782. foot: {
  21783. height: math.unit(1.611, "feet"),
  21784. name: "Foot",
  21785. image: {
  21786. source: "./media/characters/maksio/foot.svg"
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Shrunken",
  21793. height: math.unit(10, "cm")
  21794. },
  21795. {
  21796. name: "Normal",
  21797. height: math.unit(150, "cm"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(100, "feet"),
  21807. name: "Front",
  21808. image: {
  21809. source: "./media/characters/erza-bear/front.svg",
  21810. extra: 2449 / 2390,
  21811. bottom: 46 / 2494
  21812. }
  21813. },
  21814. back: {
  21815. height: math.unit(100, "feet"),
  21816. name: "Back",
  21817. image: {
  21818. source: "./media/characters/erza-bear/back.svg",
  21819. extra: 2489 / 2430,
  21820. bottom: 85.4 / 2480
  21821. }
  21822. },
  21823. tail: {
  21824. height: math.unit(42, "feet"),
  21825. name: "Tail",
  21826. image: {
  21827. source: "./media/characters/erza-bear/tail.svg"
  21828. }
  21829. },
  21830. tongue: {
  21831. height: math.unit(8, "feet"),
  21832. name: "Tongue",
  21833. image: {
  21834. source: "./media/characters/erza-bear/tongue.svg"
  21835. }
  21836. },
  21837. dick: {
  21838. height: math.unit(10.5, "feet"),
  21839. name: "Dick",
  21840. image: {
  21841. source: "./media/characters/erza-bear/dick.svg"
  21842. }
  21843. },
  21844. dickVertical: {
  21845. height: math.unit(16.9, "feet"),
  21846. name: "Dick (Vertical)",
  21847. image: {
  21848. source: "./media/characters/erza-bear/dick-vertical.svg"
  21849. }
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Macro",
  21855. height: math.unit(100, "feet"),
  21856. default: true
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21862. {
  21863. front: {
  21864. height: math.unit(172, "cm"),
  21865. weight: math.unit(73, "kg"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/violet-flor/front.svg",
  21869. extra: 1530 / 1442,
  21870. bottom: 61.9 / 1588.8
  21871. }
  21872. },
  21873. back: {
  21874. height: math.unit(180, "cm"),
  21875. weight: math.unit(73, "kg"),
  21876. name: "Back",
  21877. image: {
  21878. source: "./media/characters/violet-flor/back.svg",
  21879. extra: 1692 / 1630,
  21880. bottom: 20 / 1712
  21881. }
  21882. },
  21883. },
  21884. [
  21885. {
  21886. name: "Normal",
  21887. height: math.unit(172, "cm"),
  21888. default: true
  21889. },
  21890. ]
  21891. ))
  21892. characterMakers.push(() => makeCharacter(
  21893. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21894. {
  21895. front: {
  21896. height: math.unit(6, "feet"),
  21897. weight: math.unit(220, "lb"),
  21898. name: "Front",
  21899. image: {
  21900. source: "./media/characters/lynn-rhea/front.svg",
  21901. extra: 310 / 273
  21902. }
  21903. },
  21904. back: {
  21905. height: math.unit(6, "feet"),
  21906. weight: math.unit(220, "lb"),
  21907. name: "Back",
  21908. image: {
  21909. source: "./media/characters/lynn-rhea/back.svg",
  21910. extra: 310 / 273
  21911. }
  21912. },
  21913. dicks: {
  21914. height: math.unit(0.9, "feet"),
  21915. name: "Dicks",
  21916. image: {
  21917. source: "./media/characters/lynn-rhea/dicks.svg"
  21918. }
  21919. },
  21920. slit: {
  21921. height: math.unit(0.4, "feet"),
  21922. name: "Slit",
  21923. image: {
  21924. source: "./media/characters/lynn-rhea/slit.svg"
  21925. }
  21926. },
  21927. },
  21928. [
  21929. {
  21930. name: "Micro",
  21931. height: math.unit(1, "inch")
  21932. },
  21933. {
  21934. name: "Macro",
  21935. height: math.unit(60, "feet"),
  21936. default: true
  21937. },
  21938. {
  21939. name: "Megamacro",
  21940. height: math.unit(2, "miles")
  21941. },
  21942. {
  21943. name: "Gigamacro",
  21944. height: math.unit(3, "earths")
  21945. },
  21946. {
  21947. name: "Galactic",
  21948. height: math.unit(0.8, "galaxies")
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21954. {
  21955. front: {
  21956. height: math.unit(1600, "feet"),
  21957. weight: math.unit(85758785169, "kg"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/valathos/front.svg",
  21961. extra: 1451 / 1339
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Macro",
  21968. height: math.unit(1600, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(7 + 5 / 12, "feet"),
  21978. weight: math.unit(300, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/azula/front.svg",
  21982. extra: 3208 / 2880,
  21983. bottom: 80.2 / 3277
  21984. }
  21985. },
  21986. back: {
  21987. height: math.unit(7 + 5 / 12, "feet"),
  21988. weight: math.unit(300, "lb"),
  21989. name: "Back",
  21990. image: {
  21991. source: "./media/characters/azula/back.svg",
  21992. extra: 3169 / 2822,
  21993. bottom: 150.6 / 3321
  21994. }
  21995. },
  21996. },
  21997. [
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(7 + 5 / 12, "feet"),
  22001. default: true
  22002. },
  22003. {
  22004. name: "Big",
  22005. height: math.unit(20, "feet")
  22006. },
  22007. ]
  22008. ))
  22009. characterMakers.push(() => makeCharacter(
  22010. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22011. {
  22012. front: {
  22013. height: math.unit(5 + 1 / 12, "feet"),
  22014. weight: math.unit(110, "lb"),
  22015. name: "Front",
  22016. image: {
  22017. source: "./media/characters/rupert/front.svg",
  22018. extra: 1549 / 1495,
  22019. bottom: 54.2 / 1604.4
  22020. }
  22021. },
  22022. },
  22023. [
  22024. {
  22025. name: "Normal",
  22026. height: math.unit(5 + 1 / 12, "feet"),
  22027. default: true
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22033. {
  22034. front: {
  22035. height: math.unit(8 + 4 / 12, "feet"),
  22036. weight: math.unit(350, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/sheera-castellar/front.svg",
  22040. extra: 1957 / 1894,
  22041. bottom: 26.97 / 1975.017
  22042. }
  22043. },
  22044. side: {
  22045. height: math.unit(8 + 4 / 12, "feet"),
  22046. weight: math.unit(350, "lb"),
  22047. name: "Side",
  22048. image: {
  22049. source: "./media/characters/sheera-castellar/side.svg",
  22050. extra: 1957 / 1894
  22051. }
  22052. },
  22053. back: {
  22054. height: math.unit(8 + 4 / 12, "feet"),
  22055. weight: math.unit(350, "lb"),
  22056. name: "Back",
  22057. image: {
  22058. source: "./media/characters/sheera-castellar/back.svg",
  22059. extra: 1957 / 1894
  22060. }
  22061. },
  22062. angled: {
  22063. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22064. weight: math.unit(350, "lb"),
  22065. name: "Angled",
  22066. image: {
  22067. source: "./media/characters/sheera-castellar/angled.svg",
  22068. extra: 1807 / 1707,
  22069. bottom: 68 / 1875
  22070. }
  22071. },
  22072. genitals: {
  22073. height: math.unit(2.2, "feet"),
  22074. name: "Genitals",
  22075. image: {
  22076. source: "./media/characters/sheera-castellar/genitals.svg"
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(8 + 4 / 12, "feet")
  22084. },
  22085. {
  22086. name: "Macro",
  22087. height: math.unit(150, "feet"),
  22088. default: true
  22089. },
  22090. {
  22091. name: "Macro+",
  22092. height: math.unit(800, "feet")
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22098. {
  22099. front: {
  22100. height: math.unit(6, "feet"),
  22101. weight: math.unit(150, "lb"),
  22102. name: "Front",
  22103. image: {
  22104. source: "./media/characters/jaipur/front.svg",
  22105. extra: 3860 / 3731,
  22106. bottom: 287 / 4140
  22107. }
  22108. },
  22109. back: {
  22110. height: math.unit(6, "feet"),
  22111. weight: math.unit(150, "lb"),
  22112. name: "Back",
  22113. image: {
  22114. source: "./media/characters/jaipur/back.svg",
  22115. extra: 4060 / 3930,
  22116. bottom: 151 / 4200
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(1.85, "meters"),
  22124. default: true
  22125. },
  22126. {
  22127. name: "Macro",
  22128. height: math.unit(150, "meters")
  22129. },
  22130. {
  22131. name: "Macro+",
  22132. height: math.unit(0.5, "miles")
  22133. },
  22134. {
  22135. name: "Macro++",
  22136. height: math.unit(2.5, "miles")
  22137. },
  22138. {
  22139. name: "Macro+++",
  22140. height: math.unit(12, "miles")
  22141. },
  22142. {
  22143. name: "Macro++++",
  22144. height: math.unit(120, "miles")
  22145. },
  22146. {
  22147. name: "Macro+++++",
  22148. height: math.unit(1200, "miles")
  22149. },
  22150. ]
  22151. ))
  22152. characterMakers.push(() => makeCharacter(
  22153. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22154. {
  22155. front: {
  22156. height: math.unit(6, "feet"),
  22157. weight: math.unit(150, "lb"),
  22158. name: "Front",
  22159. image: {
  22160. source: "./media/characters/sheila-wolf/front.svg",
  22161. extra: 1931 / 1808,
  22162. bottom: 29.5 / 1960
  22163. }
  22164. },
  22165. dick: {
  22166. height: math.unit(1.464, "feet"),
  22167. name: "Dick",
  22168. image: {
  22169. source: "./media/characters/sheila-wolf/dick.svg"
  22170. }
  22171. },
  22172. muzzle: {
  22173. height: math.unit(0.513, "feet"),
  22174. name: "Muzzle",
  22175. image: {
  22176. source: "./media/characters/sheila-wolf/muzzle.svg"
  22177. }
  22178. },
  22179. },
  22180. [
  22181. {
  22182. name: "Macro",
  22183. height: math.unit(70, "feet"),
  22184. default: true
  22185. },
  22186. ]
  22187. ))
  22188. characterMakers.push(() => makeCharacter(
  22189. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22190. {
  22191. front: {
  22192. height: math.unit(32, "meters"),
  22193. weight: math.unit(300000, "kg"),
  22194. name: "Front",
  22195. image: {
  22196. source: "./media/characters/almor/front.svg",
  22197. extra: 1408 / 1322,
  22198. bottom: 94.6 / 1506.5
  22199. }
  22200. },
  22201. },
  22202. [
  22203. {
  22204. name: "Macro",
  22205. height: math.unit(32, "meters"),
  22206. default: true
  22207. },
  22208. ]
  22209. ))
  22210. characterMakers.push(() => makeCharacter(
  22211. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22212. {
  22213. front: {
  22214. height: math.unit(7, "feet"),
  22215. weight: math.unit(200, "lb"),
  22216. name: "Front",
  22217. image: {
  22218. source: "./media/characters/silver/front.svg",
  22219. extra: 472.1 / 450.5,
  22220. bottom: 26.5 / 499.424
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Normal",
  22227. height: math.unit(7, "feet"),
  22228. default: true
  22229. },
  22230. {
  22231. name: "Macro",
  22232. height: math.unit(800, "feet")
  22233. },
  22234. {
  22235. name: "Megamacro",
  22236. height: math.unit(250, "miles")
  22237. },
  22238. ]
  22239. ))
  22240. characterMakers.push(() => makeCharacter(
  22241. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22242. {
  22243. front: {
  22244. height: math.unit(6, "feet"),
  22245. weight: math.unit(150, "lb"),
  22246. name: "Front",
  22247. image: {
  22248. source: "./media/characters/pliskin/front.svg",
  22249. extra: 1469 / 1359,
  22250. bottom: 70 / 1540
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Micro",
  22257. height: math.unit(3, "inches")
  22258. },
  22259. {
  22260. name: "Normal",
  22261. height: math.unit(5 + 11 / 12, "feet"),
  22262. default: true
  22263. },
  22264. {
  22265. name: "Macro",
  22266. height: math.unit(120, "feet")
  22267. },
  22268. ]
  22269. ))
  22270. characterMakers.push(() => makeCharacter(
  22271. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22272. {
  22273. front: {
  22274. height: math.unit(6, "feet"),
  22275. weight: math.unit(150, "lb"),
  22276. name: "Front",
  22277. image: {
  22278. source: "./media/characters/sammy/front.svg",
  22279. extra: 1193 / 1089,
  22280. bottom: 30.5 / 1226
  22281. }
  22282. },
  22283. },
  22284. [
  22285. {
  22286. name: "Macro",
  22287. height: math.unit(1700, "feet"),
  22288. default: true
  22289. },
  22290. {
  22291. name: "Examacro",
  22292. height: math.unit(2.5e9, "lightyears")
  22293. },
  22294. ]
  22295. ))
  22296. characterMakers.push(() => makeCharacter(
  22297. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22298. {
  22299. front: {
  22300. height: math.unit(21, "meters"),
  22301. weight: math.unit(12, "tonnes"),
  22302. name: "Front",
  22303. image: {
  22304. source: "./media/characters/kuru/front.svg",
  22305. extra: 4301 / 3785,
  22306. bottom: 371.3 / 4691
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Macro",
  22313. height: math.unit(21, "meters"),
  22314. default: true
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22320. {
  22321. front: {
  22322. height: math.unit(23, "meters"),
  22323. weight: math.unit(12.2, "tonnes"),
  22324. name: "Front",
  22325. image: {
  22326. source: "./media/characters/rakka/front.svg",
  22327. extra: 4670 / 4169,
  22328. bottom: 301 / 4968.7
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Macro",
  22335. height: math.unit(23, "meters"),
  22336. default: true
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22342. {
  22343. front: {
  22344. height: math.unit(6, "feet"),
  22345. weight: math.unit(150, "lb"),
  22346. name: "Front",
  22347. image: {
  22348. source: "./media/characters/rhys-feline/front.svg",
  22349. extra: 2488 / 2308,
  22350. bottom: 35.67 / 2519.19
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Really Small",
  22357. height: math.unit(1, "nm")
  22358. },
  22359. {
  22360. name: "Micro",
  22361. height: math.unit(4, "inches")
  22362. },
  22363. {
  22364. name: "Normal",
  22365. height: math.unit(4 + 10 / 12, "feet"),
  22366. default: true
  22367. },
  22368. {
  22369. name: "Macro",
  22370. height: math.unit(100, "feet")
  22371. },
  22372. {
  22373. name: "Megamacto",
  22374. height: math.unit(50, "miles")
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22380. {
  22381. side: {
  22382. height: math.unit(30, "feet"),
  22383. weight: math.unit(35000, "kg"),
  22384. name: "Side",
  22385. image: {
  22386. source: "./media/characters/alydar/side.svg",
  22387. extra: 234 / 222,
  22388. bottom: 6.5 / 241
  22389. }
  22390. },
  22391. front: {
  22392. height: math.unit(30, "feet"),
  22393. weight: math.unit(35000, "kg"),
  22394. name: "Front",
  22395. image: {
  22396. source: "./media/characters/alydar/front.svg",
  22397. extra: 223.37 / 210.2,
  22398. bottom: 22.3 / 246.76
  22399. }
  22400. },
  22401. top: {
  22402. height: math.unit(64.54, "feet"),
  22403. weight: math.unit(35000, "kg"),
  22404. name: "Top",
  22405. image: {
  22406. source: "./media/characters/alydar/top.svg"
  22407. }
  22408. },
  22409. anthro: {
  22410. height: math.unit(30, "feet"),
  22411. weight: math.unit(9000, "kg"),
  22412. name: "Anthro",
  22413. image: {
  22414. source: "./media/characters/alydar/anthro.svg",
  22415. extra: 432 / 421,
  22416. bottom: 7.18 / 440
  22417. }
  22418. },
  22419. maw: {
  22420. height: math.unit(11.693, "feet"),
  22421. name: "Maw",
  22422. image: {
  22423. source: "./media/characters/alydar/maw.svg"
  22424. }
  22425. },
  22426. head: {
  22427. height: math.unit(11.693, "feet"),
  22428. name: "Head",
  22429. image: {
  22430. source: "./media/characters/alydar/head.svg"
  22431. }
  22432. },
  22433. headAlt: {
  22434. height: math.unit(12.861, "feet"),
  22435. name: "Head (Alt)",
  22436. image: {
  22437. source: "./media/characters/alydar/head-alt.svg"
  22438. }
  22439. },
  22440. wing: {
  22441. height: math.unit(20.712, "feet"),
  22442. name: "Wing",
  22443. image: {
  22444. source: "./media/characters/alydar/wing.svg"
  22445. }
  22446. },
  22447. wingFeather: {
  22448. height: math.unit(9.662, "feet"),
  22449. name: "Wing Feather",
  22450. image: {
  22451. source: "./media/characters/alydar/wing-feather.svg"
  22452. }
  22453. },
  22454. countourFeather: {
  22455. height: math.unit(4.154, "feet"),
  22456. name: "Contour Feather",
  22457. image: {
  22458. source: "./media/characters/alydar/contour-feather.svg"
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Diplomatic",
  22465. height: math.unit(13, "feet"),
  22466. default: true
  22467. },
  22468. {
  22469. name: "Small",
  22470. height: math.unit(30, "feet")
  22471. },
  22472. {
  22473. name: "Normal",
  22474. height: math.unit(95, "feet"),
  22475. default: true
  22476. },
  22477. {
  22478. name: "Large",
  22479. height: math.unit(285, "feet")
  22480. },
  22481. {
  22482. name: "Incomprehensible",
  22483. height: math.unit(450, "megameters")
  22484. },
  22485. ]
  22486. ))
  22487. characterMakers.push(() => makeCharacter(
  22488. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22489. {
  22490. side: {
  22491. height: math.unit(11, "feet"),
  22492. weight: math.unit(1750, "kg"),
  22493. name: "Side",
  22494. image: {
  22495. source: "./media/characters/selicia/side.svg",
  22496. extra: 440 / 396,
  22497. bottom: 24.8 / 465.979
  22498. }
  22499. },
  22500. maw: {
  22501. height: math.unit(4.665, "feet"),
  22502. name: "Maw",
  22503. image: {
  22504. source: "./media/characters/selicia/maw.svg"
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Normal",
  22511. height: math.unit(11, "feet"),
  22512. default: true
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22518. {
  22519. side: {
  22520. height: math.unit(2 + 6 / 12, "feet"),
  22521. weight: math.unit(30, "lb"),
  22522. name: "Side",
  22523. image: {
  22524. source: "./media/characters/layla/side.svg",
  22525. extra: 244 / 188,
  22526. bottom: 18.2 / 262.1
  22527. }
  22528. },
  22529. back: {
  22530. height: math.unit(2 + 6 / 12, "feet"),
  22531. weight: math.unit(30, "lb"),
  22532. name: "Back",
  22533. image: {
  22534. source: "./media/characters/layla/back.svg",
  22535. extra: 308 / 241.5,
  22536. bottom: 8.9 / 316.8
  22537. }
  22538. },
  22539. cumming: {
  22540. height: math.unit(2 + 6 / 12, "feet"),
  22541. weight: math.unit(30, "lb"),
  22542. name: "Cumming",
  22543. image: {
  22544. source: "./media/characters/layla/cumming.svg",
  22545. extra: 342 / 279,
  22546. bottom: 595 / 938
  22547. }
  22548. },
  22549. dickFlaccid: {
  22550. height: math.unit(2.595, "feet"),
  22551. name: "Flaccid Genitals",
  22552. image: {
  22553. source: "./media/characters/layla/dick-flaccid.svg"
  22554. }
  22555. },
  22556. dickErect: {
  22557. height: math.unit(2.359, "feet"),
  22558. name: "Erect Genitals",
  22559. image: {
  22560. source: "./media/characters/layla/dick-erect.svg"
  22561. }
  22562. },
  22563. },
  22564. [
  22565. {
  22566. name: "Micro",
  22567. height: math.unit(1, "inch")
  22568. },
  22569. {
  22570. name: "Small",
  22571. height: math.unit(1, "foot")
  22572. },
  22573. {
  22574. name: "Normal",
  22575. height: math.unit(2 + 6 / 12, "feet"),
  22576. default: true
  22577. },
  22578. {
  22579. name: "Macro",
  22580. height: math.unit(200, "feet")
  22581. },
  22582. {
  22583. name: "Megamacro",
  22584. height: math.unit(1000, "miles")
  22585. },
  22586. {
  22587. name: "Planetary",
  22588. height: math.unit(8000, "miles")
  22589. },
  22590. {
  22591. name: "True Layla",
  22592. height: math.unit(200000 * 7, "multiverses")
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22598. {
  22599. back: {
  22600. height: math.unit(10.5, "feet"),
  22601. weight: math.unit(800, "lb"),
  22602. name: "Back",
  22603. image: {
  22604. source: "./media/characters/knox/back.svg",
  22605. extra: 1486 / 1089,
  22606. bottom: 107 / 1601.4
  22607. }
  22608. },
  22609. side: {
  22610. height: math.unit(10.5, "feet"),
  22611. weight: math.unit(800, "lb"),
  22612. name: "Side",
  22613. image: {
  22614. source: "./media/characters/knox/side.svg",
  22615. extra: 244 / 218,
  22616. bottom: 14 / 260
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Compact",
  22623. height: math.unit(10.5, "feet"),
  22624. default: true
  22625. },
  22626. {
  22627. name: "Dynamax",
  22628. height: math.unit(210, "feet")
  22629. },
  22630. {
  22631. name: "Full Macro",
  22632. height: math.unit(850, "feet")
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22638. {
  22639. front: {
  22640. height: math.unit(6, "feet"),
  22641. weight: math.unit(152, "lb"),
  22642. name: "Front",
  22643. image: {
  22644. source: "./media/characters/shin-pikachu/front.svg",
  22645. extra: 1574 / 1480,
  22646. bottom: 53.3 / 1626
  22647. }
  22648. },
  22649. hand: {
  22650. height: math.unit(1.055, "feet"),
  22651. name: "Hand",
  22652. image: {
  22653. source: "./media/characters/shin-pikachu/hand.svg"
  22654. }
  22655. },
  22656. foot: {
  22657. height: math.unit(1.1, "feet"),
  22658. name: "Foot",
  22659. image: {
  22660. source: "./media/characters/shin-pikachu/foot.svg"
  22661. }
  22662. },
  22663. collar: {
  22664. height: math.unit(0.386, "feet"),
  22665. name: "Collar",
  22666. image: {
  22667. source: "./media/characters/shin-pikachu/collar.svg"
  22668. }
  22669. },
  22670. },
  22671. [
  22672. {
  22673. name: "Smallest",
  22674. height: math.unit(0.5, "inches")
  22675. },
  22676. {
  22677. name: "Micro",
  22678. height: math.unit(6, "inches")
  22679. },
  22680. {
  22681. name: "Normal",
  22682. height: math.unit(6, "feet"),
  22683. default: true
  22684. },
  22685. {
  22686. name: "Macro",
  22687. height: math.unit(150, "feet")
  22688. },
  22689. ]
  22690. ))
  22691. characterMakers.push(() => makeCharacter(
  22692. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22693. {
  22694. front: {
  22695. height: math.unit(28, "feet"),
  22696. weight: math.unit(10500, "lb"),
  22697. name: "Front",
  22698. image: {
  22699. source: "./media/characters/kayda/front.svg",
  22700. extra: 1536 / 1428,
  22701. bottom: 68.7 / 1603
  22702. }
  22703. },
  22704. back: {
  22705. height: math.unit(28, "feet"),
  22706. weight: math.unit(10500, "lb"),
  22707. name: "Back",
  22708. image: {
  22709. source: "./media/characters/kayda/back.svg",
  22710. extra: 1557 / 1464,
  22711. bottom: 39.5 / 1597.49
  22712. }
  22713. },
  22714. dick: {
  22715. height: math.unit(3.858, "feet"),
  22716. name: "Dick",
  22717. image: {
  22718. source: "./media/characters/kayda/dick.svg"
  22719. }
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Macro",
  22725. height: math.unit(28, "feet"),
  22726. default: true
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22732. {
  22733. front: {
  22734. height: math.unit(10 + 11 / 12, "feet"),
  22735. weight: math.unit(1400, "lb"),
  22736. name: "Front",
  22737. image: {
  22738. source: "./media/characters/brian/front.svg",
  22739. extra: 737 / 692,
  22740. bottom: 55.4 / 785
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Normal",
  22747. height: math.unit(10 + 11 / 12, "feet"),
  22748. default: true
  22749. },
  22750. ]
  22751. ))
  22752. characterMakers.push(() => makeCharacter(
  22753. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22754. {
  22755. front: {
  22756. height: math.unit(5 + 8 / 12, "feet"),
  22757. weight: math.unit(140, "lb"),
  22758. name: "Front",
  22759. image: {
  22760. source: "./media/characters/khemri/front.svg",
  22761. extra: 4780 / 4059,
  22762. bottom: 80.1 / 4859.25
  22763. }
  22764. },
  22765. },
  22766. [
  22767. {
  22768. name: "Micro",
  22769. height: math.unit(6, "inches")
  22770. },
  22771. {
  22772. name: "Normal",
  22773. height: math.unit(5 + 8 / 12, "feet"),
  22774. default: true
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22780. {
  22781. front: {
  22782. height: math.unit(13, "feet"),
  22783. weight: math.unit(1700, "lb"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/felix-braveheart/front.svg",
  22787. extra: 1222 / 1157,
  22788. bottom: 53.2 / 1280
  22789. }
  22790. },
  22791. back: {
  22792. height: math.unit(13, "feet"),
  22793. weight: math.unit(1700, "lb"),
  22794. name: "Back",
  22795. image: {
  22796. source: "./media/characters/felix-braveheart/back.svg",
  22797. extra: 1277 / 1203,
  22798. bottom: 50.2 / 1327
  22799. }
  22800. },
  22801. feral: {
  22802. height: math.unit(6, "feet"),
  22803. weight: math.unit(400, "lb"),
  22804. name: "Feral",
  22805. image: {
  22806. source: "./media/characters/felix-braveheart/feral.svg",
  22807. extra: 682 / 625,
  22808. bottom: 6.9 / 688
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(13, "feet"),
  22816. default: true
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22822. {
  22823. side: {
  22824. height: math.unit(5 + 11 / 12, "feet"),
  22825. weight: math.unit(1400, "lb"),
  22826. name: "Side",
  22827. image: {
  22828. source: "./media/characters/shadow-blade/side.svg",
  22829. extra: 1726 / 1267,
  22830. bottom: 58.4 / 1785
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Normal",
  22837. height: math.unit(5 + 11 / 12, "feet"),
  22838. default: true
  22839. },
  22840. ]
  22841. ))
  22842. characterMakers.push(() => makeCharacter(
  22843. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22844. {
  22845. front: {
  22846. height: math.unit(1 + 6 / 12, "feet"),
  22847. weight: math.unit(25, "lb"),
  22848. name: "Front",
  22849. image: {
  22850. source: "./media/characters/karla-halldor/front.svg",
  22851. extra: 1459 / 1383,
  22852. bottom: 12 / 1472
  22853. }
  22854. },
  22855. },
  22856. [
  22857. {
  22858. name: "Normal",
  22859. height: math.unit(1 + 6 / 12, "feet"),
  22860. default: true
  22861. },
  22862. ]
  22863. ))
  22864. characterMakers.push(() => makeCharacter(
  22865. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22866. {
  22867. front: {
  22868. height: math.unit(6 + 2 / 12, "feet"),
  22869. weight: math.unit(160, "lb"),
  22870. name: "Front",
  22871. image: {
  22872. source: "./media/characters/ariam/front.svg",
  22873. extra: 714 / 617,
  22874. bottom: 23.4 / 737,
  22875. }
  22876. },
  22877. squatting: {
  22878. height: math.unit(4.1, "feet"),
  22879. weight: math.unit(160, "lb"),
  22880. name: "Squatting",
  22881. image: {
  22882. source: "./media/characters/ariam/squatting.svg",
  22883. extra: 2617 / 2112,
  22884. bottom: 61.2 / 2681,
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Normal",
  22891. height: math.unit(6 + 2 / 12, "feet"),
  22892. default: true
  22893. },
  22894. {
  22895. name: "Normal+",
  22896. height: math.unit(4, "meters")
  22897. },
  22898. {
  22899. name: "Macro",
  22900. height: math.unit(50, "meters")
  22901. },
  22902. {
  22903. name: "Macro+",
  22904. height: math.unit(100, "meters")
  22905. },
  22906. {
  22907. name: "Megamacro",
  22908. height: math.unit(20, "km")
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22914. {
  22915. front: {
  22916. height: math.unit(1.67, "meters"),
  22917. weight: math.unit(140, "lb"),
  22918. name: "Front",
  22919. image: {
  22920. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22921. extra: 438 / 410,
  22922. bottom: 0.75 / 439
  22923. }
  22924. },
  22925. },
  22926. [
  22927. {
  22928. name: "Shrunken",
  22929. height: math.unit(7.6, "cm")
  22930. },
  22931. {
  22932. name: "Human Scale",
  22933. height: math.unit(1.67, "meters")
  22934. },
  22935. {
  22936. name: "Wolxi Scale",
  22937. height: math.unit(36.7, "meters"),
  22938. default: true
  22939. },
  22940. ]
  22941. ))
  22942. characterMakers.push(() => makeCharacter(
  22943. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22944. {
  22945. front: {
  22946. height: math.unit(1.73, "meters"),
  22947. weight: math.unit(240, "lb"),
  22948. name: "Front",
  22949. image: {
  22950. source: "./media/characters/izue-two-mothers/front.svg",
  22951. extra: 469 / 437,
  22952. bottom: 1.24 / 470.6
  22953. }
  22954. },
  22955. },
  22956. [
  22957. {
  22958. name: "Shrunken",
  22959. height: math.unit(7.86, "cm")
  22960. },
  22961. {
  22962. name: "Human Scale",
  22963. height: math.unit(1.73, "meters")
  22964. },
  22965. {
  22966. name: "Wolxi Scale",
  22967. height: math.unit(38, "meters"),
  22968. default: true
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22974. {
  22975. front: {
  22976. height: math.unit(1.55, "meters"),
  22977. weight: math.unit(120, "lb"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/teeku-love-shack/front.svg",
  22981. extra: 387 / 362,
  22982. bottom: 1.51 / 388
  22983. }
  22984. },
  22985. },
  22986. [
  22987. {
  22988. name: "Shrunken",
  22989. height: math.unit(7, "cm")
  22990. },
  22991. {
  22992. name: "Human Scale",
  22993. height: math.unit(1.55, "meters")
  22994. },
  22995. {
  22996. name: "Wolxi Scale",
  22997. height: math.unit(34.1, "meters"),
  22998. default: true
  22999. },
  23000. ]
  23001. ))
  23002. characterMakers.push(() => makeCharacter(
  23003. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23004. {
  23005. front: {
  23006. height: math.unit(1.83, "meters"),
  23007. weight: math.unit(135, "lb"),
  23008. name: "Front",
  23009. image: {
  23010. source: "./media/characters/dejma-the-red/front.svg",
  23011. extra: 480 / 458,
  23012. bottom: 1.8 / 482
  23013. }
  23014. },
  23015. },
  23016. [
  23017. {
  23018. name: "Shrunken",
  23019. height: math.unit(8.3, "cm")
  23020. },
  23021. {
  23022. name: "Human Scale",
  23023. height: math.unit(1.83, "meters")
  23024. },
  23025. {
  23026. name: "Wolxi Scale",
  23027. height: math.unit(40, "meters"),
  23028. default: true
  23029. },
  23030. ]
  23031. ))
  23032. characterMakers.push(() => makeCharacter(
  23033. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23034. {
  23035. front: {
  23036. height: math.unit(1.78, "meters"),
  23037. weight: math.unit(65, "kg"),
  23038. name: "Front",
  23039. image: {
  23040. source: "./media/characters/aki/front.svg",
  23041. extra: 452 / 415
  23042. }
  23043. },
  23044. frontNsfw: {
  23045. height: math.unit(1.78, "meters"),
  23046. weight: math.unit(65, "kg"),
  23047. name: "Front (NSFW)",
  23048. image: {
  23049. source: "./media/characters/aki/front-nsfw.svg",
  23050. extra: 452 / 415
  23051. }
  23052. },
  23053. back: {
  23054. height: math.unit(1.78, "meters"),
  23055. weight: math.unit(65, "kg"),
  23056. name: "Back",
  23057. image: {
  23058. source: "./media/characters/aki/back.svg",
  23059. extra: 452 / 415
  23060. }
  23061. },
  23062. rump: {
  23063. height: math.unit(2.05, "feet"),
  23064. name: "Rump",
  23065. image: {
  23066. source: "./media/characters/aki/rump.svg"
  23067. }
  23068. },
  23069. dick: {
  23070. height: math.unit(0.95, "feet"),
  23071. name: "Dick",
  23072. image: {
  23073. source: "./media/characters/aki/dick.svg"
  23074. }
  23075. },
  23076. },
  23077. [
  23078. {
  23079. name: "Micro",
  23080. height: math.unit(15, "cm")
  23081. },
  23082. {
  23083. name: "Normal",
  23084. height: math.unit(178, "cm"),
  23085. default: true
  23086. },
  23087. {
  23088. name: "Macro",
  23089. height: math.unit(214, "m")
  23090. },
  23091. {
  23092. name: "Macro+",
  23093. height: math.unit(534, "m")
  23094. },
  23095. ]
  23096. ))
  23097. characterMakers.push(() => makeCharacter(
  23098. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23099. {
  23100. front: {
  23101. height: math.unit(5 + 5 / 12, "feet"),
  23102. weight: math.unit(120, "lb"),
  23103. name: "Front",
  23104. image: {
  23105. source: "./media/characters/ari/front.svg",
  23106. extra: 714.5 / 682,
  23107. bottom: 8 / 722.5
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Normal",
  23114. height: math.unit(5 + 5 / 12, "feet")
  23115. },
  23116. {
  23117. name: "Macro",
  23118. height: math.unit(100, "feet"),
  23119. default: true
  23120. },
  23121. {
  23122. name: "Megamacro",
  23123. height: math.unit(100, "miles")
  23124. },
  23125. {
  23126. name: "Gigamacro",
  23127. height: math.unit(80000, "miles")
  23128. },
  23129. ]
  23130. ))
  23131. characterMakers.push(() => makeCharacter(
  23132. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23133. {
  23134. side: {
  23135. height: math.unit(9, "feet"),
  23136. weight: math.unit(400, "kg"),
  23137. name: "Side",
  23138. image: {
  23139. source: "./media/characters/bolt/side.svg",
  23140. extra: 1126 / 896,
  23141. bottom: 60 / 1187.3,
  23142. }
  23143. },
  23144. },
  23145. [
  23146. {
  23147. name: "Micro",
  23148. height: math.unit(5, "inches")
  23149. },
  23150. {
  23151. name: "Normal",
  23152. height: math.unit(9, "feet"),
  23153. default: true
  23154. },
  23155. {
  23156. name: "Macro",
  23157. height: math.unit(700, "feet")
  23158. },
  23159. {
  23160. name: "Max Size",
  23161. height: math.unit(1.52e22, "yottameters")
  23162. },
  23163. ]
  23164. ))
  23165. characterMakers.push(() => makeCharacter(
  23166. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23167. {
  23168. front: {
  23169. height: math.unit(4.53, "meters"),
  23170. weight: math.unit(3, "tons"),
  23171. name: "Front",
  23172. image: {
  23173. source: "./media/characters/draekon-sylviar/front.svg",
  23174. extra: 1228 / 1068,
  23175. bottom: 41 / 1270
  23176. }
  23177. },
  23178. tail: {
  23179. height: math.unit(1.772, "meter"),
  23180. name: "Tail",
  23181. image: {
  23182. source: "./media/characters/draekon-sylviar/tail.svg"
  23183. }
  23184. },
  23185. head: {
  23186. height: math.unit(1.331, "meter"),
  23187. name: "Head",
  23188. image: {
  23189. source: "./media/characters/draekon-sylviar/head.svg"
  23190. }
  23191. },
  23192. hand: {
  23193. height: math.unit(0.564, "meter"),
  23194. name: "Hand",
  23195. image: {
  23196. source: "./media/characters/draekon-sylviar/hand.svg"
  23197. }
  23198. },
  23199. foot: {
  23200. height: math.unit(0.621, "meter"),
  23201. name: "Foot",
  23202. image: {
  23203. source: "./media/characters/draekon-sylviar/foot.svg",
  23204. bottom: 32 / 324
  23205. }
  23206. },
  23207. dick: {
  23208. height: math.unit(61, "cm"),
  23209. name: "Dick",
  23210. image: {
  23211. source: "./media/characters/draekon-sylviar/dick.svg"
  23212. }
  23213. },
  23214. dickseparated: {
  23215. height: math.unit(61, "cm"),
  23216. name: "Dick-separated",
  23217. image: {
  23218. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23219. }
  23220. },
  23221. },
  23222. [
  23223. {
  23224. name: "Small",
  23225. height: math.unit(4.53 / 2, "meters"),
  23226. default: true
  23227. },
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(4.53, "meters"),
  23231. default: true
  23232. },
  23233. {
  23234. name: "Large",
  23235. height: math.unit(4.53 * 2, "meters"),
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23241. {
  23242. front: {
  23243. height: math.unit(6 + 2 / 12, "feet"),
  23244. weight: math.unit(180, "lb"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/brawler/front.svg",
  23248. extra: 3301 / 3027,
  23249. bottom: 138 / 3439
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(6 + 2 / 12, "feet"),
  23257. default: true
  23258. },
  23259. ]
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23263. {
  23264. front: {
  23265. height: math.unit(11, "feet"),
  23266. weight: math.unit(1000, "lb"),
  23267. name: "Front",
  23268. image: {
  23269. source: "./media/characters/alex/front.svg",
  23270. bottom: 44.5 / 620
  23271. }
  23272. },
  23273. },
  23274. [
  23275. {
  23276. name: "Micro",
  23277. height: math.unit(5, "inches")
  23278. },
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(11, "feet"),
  23282. default: true
  23283. },
  23284. {
  23285. name: "Macro",
  23286. height: math.unit(9.5e9, "feet")
  23287. },
  23288. {
  23289. name: "Max Size",
  23290. height: math.unit(1.4e283, "yottameters")
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23296. {
  23297. female: {
  23298. height: math.unit(29.9, "m"),
  23299. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23300. name: "Female",
  23301. image: {
  23302. source: "./media/characters/zenari/female.svg",
  23303. extra: 3281.6 / 3217,
  23304. bottom: 72.2 / 3353
  23305. }
  23306. },
  23307. male: {
  23308. height: math.unit(27.7, "m"),
  23309. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23310. name: "Male",
  23311. image: {
  23312. source: "./media/characters/zenari/male.svg",
  23313. extra: 3008 / 2991,
  23314. bottom: 54.6 / 3069
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Macro",
  23321. height: math.unit(29.7, "meters"),
  23322. default: true
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23328. {
  23329. female: {
  23330. height: math.unit(23.8, "m"),
  23331. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23332. name: "Female",
  23333. image: {
  23334. source: "./media/characters/mactarian/female.svg",
  23335. extra: 2662 / 2569,
  23336. bottom: 73 / 2736
  23337. }
  23338. },
  23339. male: {
  23340. height: math.unit(23.8, "m"),
  23341. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23342. name: "Male",
  23343. image: {
  23344. source: "./media/characters/mactarian/male.svg",
  23345. extra: 2673 / 2600,
  23346. bottom: 76 / 2750
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Macro",
  23353. height: math.unit(23.8, "meters"),
  23354. default: true
  23355. },
  23356. ]
  23357. ))
  23358. characterMakers.push(() => makeCharacter(
  23359. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23360. {
  23361. female: {
  23362. height: math.unit(19.3, "m"),
  23363. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23364. name: "Female",
  23365. image: {
  23366. source: "./media/characters/umok/female.svg",
  23367. extra: 2186 / 2078,
  23368. bottom: 87 / 2277
  23369. }
  23370. },
  23371. male: {
  23372. height: math.unit(19.5, "m"),
  23373. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23374. name: "Male",
  23375. image: {
  23376. source: "./media/characters/umok/male.svg",
  23377. extra: 2233 / 2140,
  23378. bottom: 24.4 / 2258
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Macro",
  23385. height: math.unit(19.3, "meters"),
  23386. default: true
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23392. {
  23393. female: {
  23394. height: math.unit(26.15, "m"),
  23395. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23396. name: "Female",
  23397. image: {
  23398. source: "./media/characters/joraxian/female.svg",
  23399. extra: 2912 / 2824,
  23400. bottom: 36 / 2956
  23401. }
  23402. },
  23403. male: {
  23404. height: math.unit(25.4, "m"),
  23405. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23406. name: "Male",
  23407. image: {
  23408. source: "./media/characters/joraxian/male.svg",
  23409. extra: 2877 / 2721,
  23410. bottom: 82 / 2967
  23411. }
  23412. },
  23413. },
  23414. [
  23415. {
  23416. name: "Macro",
  23417. height: math.unit(26.15, "meters"),
  23418. default: true
  23419. },
  23420. ]
  23421. ))
  23422. characterMakers.push(() => makeCharacter(
  23423. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23424. {
  23425. female: {
  23426. height: math.unit(21.6, "m"),
  23427. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23428. name: "Female",
  23429. image: {
  23430. source: "./media/characters/sthara/female.svg",
  23431. extra: 2516 / 2347,
  23432. bottom: 21.5 / 2537
  23433. }
  23434. },
  23435. male: {
  23436. height: math.unit(24, "m"),
  23437. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23438. name: "Male",
  23439. image: {
  23440. source: "./media/characters/sthara/male.svg",
  23441. extra: 2732 / 2607,
  23442. bottom: 23 / 2732
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Macro",
  23449. height: math.unit(21.6, "meters"),
  23450. default: true
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23456. {
  23457. front: {
  23458. height: math.unit(6 + 4 / 12, "feet"),
  23459. weight: math.unit(175, "lb"),
  23460. name: "Front",
  23461. image: {
  23462. source: "./media/characters/luka-bryzant/front.svg",
  23463. extra: 311 / 289,
  23464. bottom: 4 / 315
  23465. }
  23466. },
  23467. back: {
  23468. height: math.unit(6 + 4 / 12, "feet"),
  23469. weight: math.unit(175, "lb"),
  23470. name: "Back",
  23471. image: {
  23472. source: "./media/characters/luka-bryzant/back.svg",
  23473. extra: 311 / 289,
  23474. bottom: 3.8 / 313.7
  23475. }
  23476. },
  23477. },
  23478. [
  23479. {
  23480. name: "Micro",
  23481. height: math.unit(10, "inches")
  23482. },
  23483. {
  23484. name: "Normal",
  23485. height: math.unit(6 + 4 / 12, "feet"),
  23486. default: true
  23487. },
  23488. {
  23489. name: "Large",
  23490. height: math.unit(12, "feet")
  23491. },
  23492. ]
  23493. ))
  23494. characterMakers.push(() => makeCharacter(
  23495. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23496. {
  23497. front: {
  23498. height: math.unit(5 + 7 / 12, "feet"),
  23499. weight: math.unit(185, "lb"),
  23500. name: "Front",
  23501. image: {
  23502. source: "./media/characters/aman-aquila/front.svg",
  23503. extra: 1013 / 976,
  23504. bottom: 45.6 / 1057
  23505. }
  23506. },
  23507. side: {
  23508. height: math.unit(5 + 7 / 12, "feet"),
  23509. weight: math.unit(185, "lb"),
  23510. name: "Side",
  23511. image: {
  23512. source: "./media/characters/aman-aquila/side.svg",
  23513. extra: 1054 / 1011,
  23514. bottom: 15 / 1070
  23515. }
  23516. },
  23517. back: {
  23518. height: math.unit(5 + 7 / 12, "feet"),
  23519. weight: math.unit(185, "lb"),
  23520. name: "Back",
  23521. image: {
  23522. source: "./media/characters/aman-aquila/back.svg",
  23523. extra: 1026 / 970,
  23524. bottom: 12 / 1039
  23525. }
  23526. },
  23527. head: {
  23528. height: math.unit(1.211, "feet"),
  23529. name: "Head",
  23530. image: {
  23531. source: "./media/characters/aman-aquila/head.svg",
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Minimicro",
  23538. height: math.unit(0.057, "inches")
  23539. },
  23540. {
  23541. name: "Micro",
  23542. height: math.unit(7, "inches")
  23543. },
  23544. {
  23545. name: "Mini",
  23546. height: math.unit(3 + 7 / 12, "feet")
  23547. },
  23548. {
  23549. name: "Normal",
  23550. height: math.unit(5 + 7 / 12, "feet"),
  23551. default: true
  23552. },
  23553. {
  23554. name: "Macro",
  23555. height: math.unit(157 + 7 / 12, "feet")
  23556. },
  23557. {
  23558. name: "Megamacro",
  23559. height: math.unit(1557 + 7 / 12, "feet")
  23560. },
  23561. {
  23562. name: "Gigamacro",
  23563. height: math.unit(15557 + 7 / 12, "feet")
  23564. },
  23565. ]
  23566. ))
  23567. characterMakers.push(() => makeCharacter(
  23568. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23569. {
  23570. front: {
  23571. height: math.unit(3 + 2 / 12, "inches"),
  23572. weight: math.unit(0.3, "ounces"),
  23573. name: "Front",
  23574. image: {
  23575. source: "./media/characters/hiphae/front.svg",
  23576. extra: 1931 / 1683,
  23577. bottom: 24 / 1955
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Normal",
  23584. height: math.unit(3 + 1 / 2, "inches"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23591. {
  23592. front: {
  23593. height: math.unit(5 + 10 / 12, "feet"),
  23594. weight: math.unit(165, "lb"),
  23595. name: "Front",
  23596. image: {
  23597. source: "./media/characters/nicky/front.svg",
  23598. extra: 3144 / 2886,
  23599. bottom: 45.6 / 3192
  23600. }
  23601. },
  23602. back: {
  23603. height: math.unit(5 + 10 / 12, "feet"),
  23604. weight: math.unit(165, "lb"),
  23605. name: "Back",
  23606. image: {
  23607. source: "./media/characters/nicky/back.svg",
  23608. extra: 3055 / 2804,
  23609. bottom: 28.4 / 3087
  23610. }
  23611. },
  23612. frontclothed: {
  23613. height: math.unit(5 + 10 / 12, "feet"),
  23614. weight: math.unit(165, "lb"),
  23615. name: "Front-clothed",
  23616. image: {
  23617. source: "./media/characters/nicky/front-clothed.svg",
  23618. extra: 3184.9 / 2926.9,
  23619. bottom: 86.5 / 3239.9
  23620. }
  23621. },
  23622. foot: {
  23623. height: math.unit(1.16, "feet"),
  23624. name: "Foot",
  23625. image: {
  23626. source: "./media/characters/nicky/foot.svg"
  23627. }
  23628. },
  23629. feet: {
  23630. height: math.unit(1.34, "feet"),
  23631. name: "Feet",
  23632. image: {
  23633. source: "./media/characters/nicky/feet.svg"
  23634. }
  23635. },
  23636. maw: {
  23637. height: math.unit(0.9, "feet"),
  23638. name: "Maw",
  23639. image: {
  23640. source: "./media/characters/nicky/maw.svg"
  23641. }
  23642. },
  23643. },
  23644. [
  23645. {
  23646. name: "Normal",
  23647. height: math.unit(5 + 10 / 12, "feet"),
  23648. default: true
  23649. },
  23650. {
  23651. name: "Macro",
  23652. height: math.unit(60, "feet")
  23653. },
  23654. {
  23655. name: "Megamacro",
  23656. height: math.unit(1, "mile")
  23657. },
  23658. ]
  23659. ))
  23660. characterMakers.push(() => makeCharacter(
  23661. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23662. {
  23663. side: {
  23664. height: math.unit(10, "feet"),
  23665. weight: math.unit(600, "lb"),
  23666. name: "Side",
  23667. image: {
  23668. source: "./media/characters/blair/side.svg",
  23669. bottom: 16.6 / 475,
  23670. extra: 458 / 431
  23671. }
  23672. },
  23673. },
  23674. [
  23675. {
  23676. name: "Micro",
  23677. height: math.unit(8, "inches")
  23678. },
  23679. {
  23680. name: "Normal",
  23681. height: math.unit(10, "feet"),
  23682. default: true
  23683. },
  23684. {
  23685. name: "Macro",
  23686. height: math.unit(180, "feet")
  23687. },
  23688. ]
  23689. ))
  23690. characterMakers.push(() => makeCharacter(
  23691. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23692. {
  23693. front: {
  23694. height: math.unit(5 + 4 / 12, "feet"),
  23695. weight: math.unit(125, "lb"),
  23696. name: "Front",
  23697. image: {
  23698. source: "./media/characters/fisher/front.svg",
  23699. extra: 444 / 390,
  23700. bottom: 2 / 444.8
  23701. }
  23702. },
  23703. },
  23704. [
  23705. {
  23706. name: "Micro",
  23707. height: math.unit(4, "inches")
  23708. },
  23709. {
  23710. name: "Normal",
  23711. height: math.unit(5 + 4 / 12, "feet"),
  23712. default: true
  23713. },
  23714. {
  23715. name: "Macro",
  23716. height: math.unit(100, "feet")
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23722. {
  23723. front: {
  23724. height: math.unit(6.71, "feet"),
  23725. weight: math.unit(200, "lb"),
  23726. capacity: math.unit(1000000, "people"),
  23727. name: "Front",
  23728. image: {
  23729. source: "./media/characters/gliss/front.svg",
  23730. extra: 2347 / 2231,
  23731. bottom: 113 / 2462
  23732. }
  23733. },
  23734. hammerspaceSize: {
  23735. height: math.unit(6.71 * 717, "feet"),
  23736. weight: math.unit(200, "lb"),
  23737. capacity: math.unit(1000000, "people"),
  23738. name: "Hammerspace Size",
  23739. image: {
  23740. source: "./media/characters/gliss/front.svg",
  23741. extra: 2347 / 2231,
  23742. bottom: 113 / 2462
  23743. }
  23744. },
  23745. },
  23746. [
  23747. {
  23748. name: "Normal",
  23749. height: math.unit(6.71, "feet"),
  23750. default: true
  23751. },
  23752. ]
  23753. ))
  23754. characterMakers.push(() => makeCharacter(
  23755. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23756. {
  23757. side: {
  23758. height: math.unit(1.44, "m"),
  23759. weight: math.unit(80, "kg"),
  23760. name: "Side",
  23761. image: {
  23762. source: "./media/characters/dune-anderson/side.svg",
  23763. bottom: 49 / 1426
  23764. }
  23765. },
  23766. },
  23767. [
  23768. {
  23769. name: "Wolf-sized",
  23770. height: math.unit(1.44, "meters")
  23771. },
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(5.05, "meters"),
  23775. default: true
  23776. },
  23777. {
  23778. name: "Big",
  23779. height: math.unit(14.4, "meters")
  23780. },
  23781. {
  23782. name: "Huge",
  23783. height: math.unit(144, "meters")
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23789. {
  23790. front: {
  23791. height: math.unit(7, "feet"),
  23792. weight: math.unit(425, "lb"),
  23793. name: "Front",
  23794. image: {
  23795. source: "./media/characters/hind/front.svg",
  23796. extra: 2091 / 1860,
  23797. bottom: 129 / 2220
  23798. }
  23799. },
  23800. back: {
  23801. height: math.unit(7, "feet"),
  23802. weight: math.unit(425, "lb"),
  23803. name: "Back",
  23804. image: {
  23805. source: "./media/characters/hind/back.svg",
  23806. extra: 2091 / 1860,
  23807. bottom: 24.6 / 2309
  23808. }
  23809. },
  23810. tail: {
  23811. height: math.unit(2.8, "feet"),
  23812. name: "Tail",
  23813. image: {
  23814. source: "./media/characters/hind/tail.svg"
  23815. }
  23816. },
  23817. head: {
  23818. height: math.unit(2.55, "feet"),
  23819. name: "Head",
  23820. image: {
  23821. source: "./media/characters/hind/head.svg"
  23822. }
  23823. },
  23824. },
  23825. [
  23826. {
  23827. name: "XS",
  23828. height: math.unit(0.7, "feet")
  23829. },
  23830. {
  23831. name: "Normal",
  23832. height: math.unit(7, "feet"),
  23833. default: true
  23834. },
  23835. {
  23836. name: "XL",
  23837. height: math.unit(70, "feet")
  23838. },
  23839. ]
  23840. ))
  23841. characterMakers.push(() => makeCharacter(
  23842. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23843. {
  23844. front: {
  23845. height: math.unit(6, "feet"),
  23846. weight: math.unit(150, "lb"),
  23847. name: "Front",
  23848. image: {
  23849. source: "./media/characters/dylan-skaven/front.svg",
  23850. extra: 2318 / 2063,
  23851. bottom: 93.4 / 2410
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Nano",
  23858. height: math.unit(1, "mm")
  23859. },
  23860. {
  23861. name: "Micro",
  23862. height: math.unit(1, "cm")
  23863. },
  23864. {
  23865. name: "Normal",
  23866. height: math.unit(2.1, "meters"),
  23867. default: true
  23868. },
  23869. ]
  23870. ))
  23871. characterMakers.push(() => makeCharacter(
  23872. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23873. {
  23874. front: {
  23875. height: math.unit(7 + 5 / 12, "feet"),
  23876. weight: math.unit(357, "lb"),
  23877. name: "Front",
  23878. image: {
  23879. source: "./media/characters/solex-draconov/front.svg",
  23880. extra: 1993 / 1865,
  23881. bottom: 117 / 2111
  23882. }
  23883. },
  23884. },
  23885. [
  23886. {
  23887. name: "Natural Height",
  23888. height: math.unit(7 + 5 / 12, "feet"),
  23889. default: true
  23890. },
  23891. {
  23892. name: "Macro",
  23893. height: math.unit(350, "feet")
  23894. },
  23895. {
  23896. name: "Macro+",
  23897. height: math.unit(1000, "feet")
  23898. },
  23899. {
  23900. name: "Megamacro",
  23901. height: math.unit(20, "km")
  23902. },
  23903. {
  23904. name: "Megamacro+",
  23905. height: math.unit(1000, "km")
  23906. },
  23907. {
  23908. name: "Gigamacro",
  23909. height: math.unit(2.5, "Gm")
  23910. },
  23911. {
  23912. name: "Teramacro",
  23913. height: math.unit(15, "Tm")
  23914. },
  23915. {
  23916. name: "Galactic",
  23917. height: math.unit(30, "Zm")
  23918. },
  23919. {
  23920. name: "Universal",
  23921. height: math.unit(21000, "Ym")
  23922. },
  23923. {
  23924. name: "Omniversal",
  23925. height: math.unit(9.861e50, "Ym")
  23926. },
  23927. {
  23928. name: "Existential",
  23929. height: math.unit(1e300, "meters")
  23930. },
  23931. ]
  23932. ))
  23933. characterMakers.push(() => makeCharacter(
  23934. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23935. {
  23936. side: {
  23937. height: math.unit(25, "feet"),
  23938. weight: math.unit(90000, "lb"),
  23939. name: "Side",
  23940. image: {
  23941. source: "./media/characters/mandarax/side.svg",
  23942. extra: 614 / 332,
  23943. bottom: 55 / 630
  23944. }
  23945. },
  23946. head: {
  23947. height: math.unit(11.4, "feet"),
  23948. name: "Head",
  23949. image: {
  23950. source: "./media/characters/mandarax/head.svg"
  23951. }
  23952. },
  23953. belly: {
  23954. height: math.unit(33, "feet"),
  23955. name: "Belly",
  23956. capacity: math.unit(500, "people"),
  23957. image: {
  23958. source: "./media/characters/mandarax/belly.svg"
  23959. }
  23960. },
  23961. dick: {
  23962. height: math.unit(8.46, "feet"),
  23963. name: "Dick",
  23964. image: {
  23965. source: "./media/characters/mandarax/dick.svg"
  23966. }
  23967. },
  23968. top: {
  23969. height: math.unit(28, "meters"),
  23970. name: "Top",
  23971. image: {
  23972. source: "./media/characters/mandarax/top.svg"
  23973. }
  23974. },
  23975. },
  23976. [
  23977. {
  23978. name: "Normal",
  23979. height: math.unit(25, "feet"),
  23980. default: true
  23981. },
  23982. ]
  23983. ))
  23984. characterMakers.push(() => makeCharacter(
  23985. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23986. {
  23987. front: {
  23988. height: math.unit(5, "feet"),
  23989. weight: math.unit(90, "lb"),
  23990. name: "Front",
  23991. image: {
  23992. source: "./media/characters/pixil/front.svg",
  23993. extra: 2000 / 1618,
  23994. bottom: 12.3 / 2011
  23995. }
  23996. },
  23997. },
  23998. [
  23999. {
  24000. name: "Normal",
  24001. height: math.unit(5, "feet"),
  24002. default: true
  24003. },
  24004. {
  24005. name: "Megamacro",
  24006. height: math.unit(10, "miles"),
  24007. },
  24008. ]
  24009. ))
  24010. characterMakers.push(() => makeCharacter(
  24011. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24012. {
  24013. front: {
  24014. height: math.unit(7 + 2 / 12, "feet"),
  24015. weight: math.unit(200, "lb"),
  24016. name: "Front",
  24017. image: {
  24018. source: "./media/characters/angel/front.svg",
  24019. extra: 1830 / 1737,
  24020. bottom: 22.6 / 1854,
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(7 + 2 / 12, "feet"),
  24028. default: true
  24029. },
  24030. {
  24031. name: "Macro",
  24032. height: math.unit(1000, "feet")
  24033. },
  24034. {
  24035. name: "Megamacro",
  24036. height: math.unit(2, "miles")
  24037. },
  24038. {
  24039. name: "Gigamacro",
  24040. height: math.unit(20, "earths")
  24041. },
  24042. ]
  24043. ))
  24044. characterMakers.push(() => makeCharacter(
  24045. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24046. {
  24047. front: {
  24048. height: math.unit(5, "feet"),
  24049. weight: math.unit(180, "lb"),
  24050. name: "Front",
  24051. image: {
  24052. source: "./media/characters/mekana/front.svg",
  24053. extra: 1671 / 1605,
  24054. bottom: 3.5 / 1691
  24055. }
  24056. },
  24057. side: {
  24058. height: math.unit(5, "feet"),
  24059. weight: math.unit(180, "lb"),
  24060. name: "Side",
  24061. image: {
  24062. source: "./media/characters/mekana/side.svg",
  24063. extra: 1671 / 1605,
  24064. bottom: 3.5 / 1691
  24065. }
  24066. },
  24067. back: {
  24068. height: math.unit(5, "feet"),
  24069. weight: math.unit(180, "lb"),
  24070. name: "Back",
  24071. image: {
  24072. source: "./media/characters/mekana/back.svg",
  24073. extra: 1671 / 1605,
  24074. bottom: 3.5 / 1691
  24075. }
  24076. },
  24077. },
  24078. [
  24079. {
  24080. name: "Normal",
  24081. height: math.unit(5, "feet"),
  24082. default: true
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24088. {
  24089. front: {
  24090. height: math.unit(4 + 6 / 12, "feet"),
  24091. weight: math.unit(80, "lb"),
  24092. name: "Front",
  24093. image: {
  24094. source: "./media/characters/pixie/front.svg",
  24095. extra: 1924 / 1825,
  24096. bottom: 22.4 / 1946
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(4 + 6 / 12, "feet"),
  24104. default: true
  24105. },
  24106. {
  24107. name: "Macro",
  24108. height: math.unit(40, "feet")
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24114. {
  24115. front: {
  24116. height: math.unit(2.1, "meters"),
  24117. weight: math.unit(200, "lb"),
  24118. name: "Front",
  24119. image: {
  24120. source: "./media/characters/the-lascivious/front.svg",
  24121. extra: 1 / 0.893,
  24122. bottom: 3.5 / 573.7
  24123. }
  24124. },
  24125. },
  24126. [
  24127. {
  24128. name: "Human Scale",
  24129. height: math.unit(2.1, "meters")
  24130. },
  24131. {
  24132. name: "Wolxi Scale",
  24133. height: math.unit(46.2, "m"),
  24134. default: true
  24135. },
  24136. {
  24137. name: "Boinker of Buildings",
  24138. height: math.unit(10, "km")
  24139. },
  24140. {
  24141. name: "Shagger of Skyscrapers",
  24142. height: math.unit(40, "km")
  24143. },
  24144. {
  24145. name: "Banger of Boroughs",
  24146. height: math.unit(4000, "km")
  24147. },
  24148. {
  24149. name: "Screwer of States",
  24150. height: math.unit(100000, "km")
  24151. },
  24152. {
  24153. name: "Pounder of Planets",
  24154. height: math.unit(2000000, "km")
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(6, "feet"),
  24163. weight: math.unit(150, "lb"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/aj/front.svg",
  24167. extra: 2039 / 1562,
  24168. bottom: 40 / 2079
  24169. }
  24170. },
  24171. },
  24172. [
  24173. {
  24174. name: "Normal",
  24175. height: math.unit(11 + 6 / 12, "feet"),
  24176. default: true
  24177. },
  24178. {
  24179. name: "Megamacro",
  24180. height: math.unit(60, "megameters")
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24186. {
  24187. side: {
  24188. height: math.unit(31 + 8/12, "feet"),
  24189. weight: math.unit(75000, "kg"),
  24190. name: "Side",
  24191. image: {
  24192. source: "./media/characters/koros/side.svg",
  24193. extra: 1442/1297,
  24194. bottom: 122.7/1562
  24195. }
  24196. },
  24197. dicksKingsCrown: {
  24198. height: math.unit(6, "feet"),
  24199. name: "Dicks (King's Crown)",
  24200. image: {
  24201. source: "./media/characters/koros/dicks-kings-crown.svg"
  24202. }
  24203. },
  24204. dicksTailSet: {
  24205. height: math.unit(3, "feet"),
  24206. name: "Dicks (Tail Set)",
  24207. image: {
  24208. source: "./media/characters/koros/dicks-tail-set.svg"
  24209. }
  24210. },
  24211. dickCumming: {
  24212. height: math.unit(7.98, "feet"),
  24213. name: "Dick (Cumming)",
  24214. image: {
  24215. source: "./media/characters/koros/dick-cumming.svg"
  24216. }
  24217. },
  24218. dicksBack: {
  24219. height: math.unit(5.9, "feet"),
  24220. name: "Dicks (Back)",
  24221. image: {
  24222. source: "./media/characters/koros/dicks-back.svg"
  24223. }
  24224. },
  24225. dicksFront: {
  24226. height: math.unit(3.72, "feet"),
  24227. name: "Dicks (Front)",
  24228. image: {
  24229. source: "./media/characters/koros/dicks-front.svg"
  24230. }
  24231. },
  24232. dicksPeeking: {
  24233. height: math.unit(3.0, "feet"),
  24234. name: "Dicks (Peeking)",
  24235. image: {
  24236. source: "./media/characters/koros/dicks-peeking.svg"
  24237. }
  24238. },
  24239. eye: {
  24240. height: math.unit(1.7, "feet"),
  24241. name: "Eye",
  24242. image: {
  24243. source: "./media/characters/koros/eye.svg"
  24244. }
  24245. },
  24246. headFront: {
  24247. height: math.unit(11.69, "feet"),
  24248. name: "Head (Front)",
  24249. image: {
  24250. source: "./media/characters/koros/head-front.svg"
  24251. }
  24252. },
  24253. headSide: {
  24254. height: math.unit(14, "feet"),
  24255. name: "Head (Side)",
  24256. image: {
  24257. source: "./media/characters/koros/head-side.svg"
  24258. }
  24259. },
  24260. leg: {
  24261. height: math.unit(17, "feet"),
  24262. name: "Leg",
  24263. image: {
  24264. source: "./media/characters/koros/leg.svg"
  24265. }
  24266. },
  24267. mawSide: {
  24268. height: math.unit(12.8, "feet"),
  24269. name: "Maw (Side)",
  24270. image: {
  24271. source: "./media/characters/koros/maw-side.svg"
  24272. }
  24273. },
  24274. mawSpitting: {
  24275. height: math.unit(17, "feet"),
  24276. name: "Maw (Spitting)",
  24277. image: {
  24278. source: "./media/characters/koros/maw-spitting.svg"
  24279. }
  24280. },
  24281. slit: {
  24282. height: math.unit(2.8, "feet"),
  24283. name: "Slit",
  24284. image: {
  24285. source: "./media/characters/koros/slit.svg"
  24286. }
  24287. },
  24288. stomach: {
  24289. height: math.unit(6.8, "feet"),
  24290. capacity: math.unit(20, "people"),
  24291. name: "Stomach",
  24292. image: {
  24293. source: "./media/characters/koros/stomach.svg"
  24294. }
  24295. },
  24296. wingspanBottom: {
  24297. height: math.unit(114, "feet"),
  24298. name: "Wingspan (Bottom)",
  24299. image: {
  24300. source: "./media/characters/koros/wingspan-bottom.svg"
  24301. }
  24302. },
  24303. wingspanTop: {
  24304. height: math.unit(104, "feet"),
  24305. name: "Wingspan (Top)",
  24306. image: {
  24307. source: "./media/characters/koros/wingspan-top.svg"
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(31 + 8/12, "feet"),
  24315. default: true
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24321. {
  24322. front: {
  24323. height: math.unit(18 + 5/12, "feet"),
  24324. weight: math.unit(3750, "kg"),
  24325. name: "Front",
  24326. image: {
  24327. source: "./media/characters/vexx/front.svg",
  24328. extra: 426/396,
  24329. bottom: 31.5/458
  24330. }
  24331. },
  24332. maw: {
  24333. height: math.unit(6, "feet"),
  24334. name: "Maw",
  24335. image: {
  24336. source: "./media/characters/vexx/maw.svg"
  24337. }
  24338. },
  24339. },
  24340. [
  24341. {
  24342. name: "Normal",
  24343. height: math.unit(18 + 5/12, "feet"),
  24344. default: true
  24345. },
  24346. ]
  24347. ))
  24348. characterMakers.push(() => makeCharacter(
  24349. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24350. {
  24351. front: {
  24352. height: math.unit(17 + 6/12, "feet"),
  24353. weight: math.unit(150, "lb"),
  24354. name: "Front",
  24355. image: {
  24356. source: "./media/characters/baadra/front.svg",
  24357. extra: 3137/2890,
  24358. bottom: 168.4/3305
  24359. }
  24360. },
  24361. back: {
  24362. height: math.unit(17 + 6/12, "feet"),
  24363. weight: math.unit(150, "lb"),
  24364. name: "Back",
  24365. image: {
  24366. source: "./media/characters/baadra/back.svg",
  24367. extra: 3142/2890,
  24368. bottom: 220/3371
  24369. }
  24370. },
  24371. head: {
  24372. height: math.unit(5.45, "feet"),
  24373. name: "Head",
  24374. image: {
  24375. source: "./media/characters/baadra/head.svg"
  24376. }
  24377. },
  24378. headAngry: {
  24379. height: math.unit(4.95, "feet"),
  24380. name: "Head (Angry)",
  24381. image: {
  24382. source: "./media/characters/baadra/head-angry.svg"
  24383. }
  24384. },
  24385. headOpen: {
  24386. height: math.unit(6, "feet"),
  24387. name: "Head (Open)",
  24388. image: {
  24389. source: "./media/characters/baadra/head-open.svg"
  24390. }
  24391. },
  24392. },
  24393. [
  24394. {
  24395. name: "Normal",
  24396. height: math.unit(17 + 6/12, "feet"),
  24397. default: true
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24403. {
  24404. front: {
  24405. height: math.unit(7 + 3/12, "feet"),
  24406. weight: math.unit(180, "lb"),
  24407. name: "Front",
  24408. image: {
  24409. source: "./media/characters/juri/front.svg",
  24410. extra: 1401/1237,
  24411. bottom: 18.5/1418
  24412. }
  24413. },
  24414. side: {
  24415. height: math.unit(7 + 3/12, "feet"),
  24416. weight: math.unit(180, "lb"),
  24417. name: "Side",
  24418. image: {
  24419. source: "./media/characters/juri/side.svg",
  24420. extra: 1424/1242,
  24421. bottom: 18.5/1447
  24422. }
  24423. },
  24424. sitting: {
  24425. height: math.unit(6, "feet"),
  24426. weight: math.unit(180, "lb"),
  24427. name: "Sitting",
  24428. image: {
  24429. source: "./media/characters/juri/sitting.svg",
  24430. extra: 1270/1143,
  24431. bottom: 100/1343
  24432. }
  24433. },
  24434. back: {
  24435. height: math.unit(7 + 3/12, "feet"),
  24436. weight: math.unit(180, "lb"),
  24437. name: "Back",
  24438. image: {
  24439. source: "./media/characters/juri/back.svg",
  24440. extra: 1377/1240,
  24441. bottom: 23.7/1405
  24442. }
  24443. },
  24444. maw: {
  24445. height: math.unit(2.8, "feet"),
  24446. name: "Maw",
  24447. image: {
  24448. source: "./media/characters/juri/maw.svg"
  24449. }
  24450. },
  24451. stomach: {
  24452. height: math.unit(0.89, "feet"),
  24453. capacity: math.unit(4, "liters"),
  24454. name: "Stomach",
  24455. image: {
  24456. source: "./media/characters/juri/stomach.svg"
  24457. }
  24458. },
  24459. },
  24460. [
  24461. {
  24462. name: "Normal",
  24463. height: math.unit(7 + 3/12, "feet"),
  24464. default: true
  24465. },
  24466. ]
  24467. ))
  24468. characterMakers.push(() => makeCharacter(
  24469. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24470. {
  24471. fox: {
  24472. height: math.unit(5 + 6/12, "feet"),
  24473. weight: math.unit(140, "lb"),
  24474. name: "Fox",
  24475. image: {
  24476. source: "./media/characters/maxene-sita/fox.svg",
  24477. extra: 146/138,
  24478. bottom: 2.1/148.19
  24479. }
  24480. },
  24481. kitsune: {
  24482. height: math.unit(10, "feet"),
  24483. weight: math.unit(800, "lb"),
  24484. name: "Kitsune",
  24485. image: {
  24486. source: "./media/characters/maxene-sita/kitsune.svg",
  24487. extra: 185/176,
  24488. bottom: 4.7/189.9
  24489. }
  24490. },
  24491. },
  24492. [
  24493. {
  24494. name: "Normal",
  24495. height: math.unit(5 + 6/12, "feet"),
  24496. default: true
  24497. },
  24498. ]
  24499. ))
  24500. characterMakers.push(() => makeCharacter(
  24501. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24502. {
  24503. front: {
  24504. height: math.unit(3 + 4/12, "feet"),
  24505. weight: math.unit(70, "lb"),
  24506. name: "Front",
  24507. image: {
  24508. source: "./media/characters/maia/front.svg",
  24509. extra: 227/219.5,
  24510. bottom: 40 / 267
  24511. }
  24512. },
  24513. back: {
  24514. height: math.unit(3 + 4/12, "feet"),
  24515. weight: math.unit(70, "lb"),
  24516. name: "Back",
  24517. image: {
  24518. source: "./media/characters/maia/back.svg",
  24519. extra: 237/225
  24520. }
  24521. },
  24522. },
  24523. [
  24524. {
  24525. name: "Normal",
  24526. height: math.unit(3 + 4/12, "feet"),
  24527. default: true
  24528. },
  24529. ]
  24530. ))
  24531. characterMakers.push(() => makeCharacter(
  24532. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24533. {
  24534. front: {
  24535. height: math.unit(5 + 10/12, "feet"),
  24536. weight: math.unit(197, "lb"),
  24537. name: "Front",
  24538. image: {
  24539. source: "./media/characters/jabaro/front.svg",
  24540. extra: 225/216,
  24541. bottom: 5.06/230
  24542. }
  24543. },
  24544. back: {
  24545. height: math.unit(5 + 10/12, "feet"),
  24546. weight: math.unit(197, "lb"),
  24547. name: "Back",
  24548. image: {
  24549. source: "./media/characters/jabaro/back.svg",
  24550. extra: 225/219,
  24551. bottom: 1.9/227
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Normal",
  24558. height: math.unit(5 + 10/12, "feet"),
  24559. default: true
  24560. },
  24561. ]
  24562. ))
  24563. characterMakers.push(() => makeCharacter(
  24564. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24565. {
  24566. front: {
  24567. height: math.unit(5 + 8/12, "feet"),
  24568. weight: math.unit(139, "lb"),
  24569. name: "Front",
  24570. image: {
  24571. source: "./media/characters/risa/front.svg",
  24572. extra: 270/260,
  24573. bottom: 11.2/282
  24574. }
  24575. },
  24576. back: {
  24577. height: math.unit(5 + 8/12, "feet"),
  24578. weight: math.unit(139, "lb"),
  24579. name: "Back",
  24580. image: {
  24581. source: "./media/characters/risa/back.svg",
  24582. extra: 264/255,
  24583. bottom: 4/268
  24584. }
  24585. },
  24586. },
  24587. [
  24588. {
  24589. name: "Normal",
  24590. height: math.unit(5 + 8/12, "feet"),
  24591. default: true
  24592. },
  24593. ]
  24594. ))
  24595. characterMakers.push(() => makeCharacter(
  24596. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24597. {
  24598. front: {
  24599. height: math.unit(2 + 11/12, "feet"),
  24600. weight: math.unit(30, "lb"),
  24601. name: "Front",
  24602. image: {
  24603. source: "./media/characters/weatley/front.svg",
  24604. bottom: 10.7/414,
  24605. extra: 403.5/362
  24606. }
  24607. },
  24608. back: {
  24609. height: math.unit(2 + 11/12, "feet"),
  24610. weight: math.unit(30, "lb"),
  24611. name: "Back",
  24612. image: {
  24613. source: "./media/characters/weatley/back.svg",
  24614. bottom: 10.7/414,
  24615. extra: 403.5/362
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(2 + 11/12, "feet"),
  24623. default: true
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24629. {
  24630. front: {
  24631. height: math.unit(5 + 2/12, "feet"),
  24632. weight: math.unit(50, "kg"),
  24633. name: "Front",
  24634. image: {
  24635. source: "./media/characters/mercury-crescent/front.svg",
  24636. extra: 1088/1033,
  24637. bottom: 18.9/1109
  24638. }
  24639. },
  24640. },
  24641. [
  24642. {
  24643. name: "Normal",
  24644. height: math.unit(5 + 2/12, "feet"),
  24645. default: true
  24646. },
  24647. ]
  24648. ))
  24649. characterMakers.push(() => makeCharacter(
  24650. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24651. {
  24652. front: {
  24653. height: math.unit(2, "feet"),
  24654. weight: math.unit(15, "kg"),
  24655. name: "Front",
  24656. image: {
  24657. source: "./media/characters/diamond-jones/front.svg",
  24658. bottom: 16/568
  24659. }
  24660. },
  24661. },
  24662. [
  24663. {
  24664. name: "Normal",
  24665. height: math.unit(2, "feet"),
  24666. default: true
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24672. {
  24673. front: {
  24674. height: math.unit(3, "feet"),
  24675. weight: math.unit(30, "kg"),
  24676. name: "Front",
  24677. image: {
  24678. source: "./media/characters/sweet-bit/front.svg",
  24679. extra: 675/567,
  24680. bottom: 27.7/703
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Normal",
  24687. height: math.unit(3, "feet"),
  24688. default: true
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24694. {
  24695. side: {
  24696. height: math.unit(9.178, "feet"),
  24697. weight: math.unit(500, "lb"),
  24698. name: "Side",
  24699. image: {
  24700. source: "./media/characters/umbrazen/side.svg",
  24701. extra: 1730/1473,
  24702. bottom: 34.6/1765
  24703. }
  24704. },
  24705. },
  24706. [
  24707. {
  24708. name: "Normal",
  24709. height: math.unit(9.178, "feet"),
  24710. default: true
  24711. },
  24712. ]
  24713. ))
  24714. characterMakers.push(() => makeCharacter(
  24715. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24716. {
  24717. front: {
  24718. height: math.unit(10, "feet"),
  24719. weight: math.unit(750, "lb"),
  24720. name: "Front",
  24721. image: {
  24722. source: "./media/characters/arlist/front.svg",
  24723. extra: 961/778,
  24724. bottom: 6.2/986
  24725. }
  24726. },
  24727. },
  24728. [
  24729. {
  24730. name: "Normal",
  24731. height: math.unit(10, "feet"),
  24732. default: true
  24733. },
  24734. ]
  24735. ))
  24736. characterMakers.push(() => makeCharacter(
  24737. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24738. {
  24739. front: {
  24740. height: math.unit(5 + 1/12, "feet"),
  24741. weight: math.unit(110, "lb"),
  24742. name: "Front",
  24743. image: {
  24744. source: "./media/characters/aradel/front.svg",
  24745. extra: 324/303,
  24746. bottom: 3.6/329.4
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(5 + 1/12, "feet"),
  24754. default: true
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24760. {
  24761. front: {
  24762. height: math.unit(3 + 8/12, "feet"),
  24763. weight: math.unit(50, "lb"),
  24764. name: "Front",
  24765. image: {
  24766. source: "./media/characters/serryn/front.svg",
  24767. extra: 1792/1656,
  24768. bottom: 43.5/1840
  24769. }
  24770. },
  24771. },
  24772. [
  24773. {
  24774. name: "Normal",
  24775. height: math.unit(3 + 8/12, "feet"),
  24776. default: true
  24777. },
  24778. ]
  24779. ))
  24780. characterMakers.push(() => makeCharacter(
  24781. { name: "Xavier Thyme" },
  24782. {
  24783. front: {
  24784. height: math.unit(7 + 10/12, "feet"),
  24785. weight: math.unit(255, "lb"),
  24786. name: "Front",
  24787. image: {
  24788. source: "./media/characters/xavier-thyme/front.svg",
  24789. extra: 3733/3642,
  24790. bottom: 131/3869
  24791. }
  24792. },
  24793. frontRaven: {
  24794. height: math.unit(7 + 10/12, "feet"),
  24795. weight: math.unit(255, "lb"),
  24796. name: "Front (Raven)",
  24797. image: {
  24798. source: "./media/characters/xavier-thyme/front-raven.svg",
  24799. extra: 4385/3642,
  24800. bottom: 131/4517
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Normal",
  24807. height: math.unit(7 + 10/12, "feet"),
  24808. default: true
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(1.6, "m"),
  24817. weight: math.unit(50, "kg"),
  24818. name: "Front",
  24819. image: {
  24820. source: "./media/characters/kiki/front.svg",
  24821. extra: 4682/3610,
  24822. bottom: 115/4777
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Normal",
  24829. height: math.unit(1.6, "meters"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(50, "m"),
  24839. weight: math.unit(500, "tonnes"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/ryoko/front.svg",
  24843. extra: 4632/3926,
  24844. bottom: 193/4823
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(50, "meters"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(30, "m"),
  24861. weight: math.unit(22, "tonnes"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/elio/front.svg",
  24865. extra: 4582/3720,
  24866. bottom: 236/4828
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Normal",
  24873. height: math.unit(30, "meters"),
  24874. default: true
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24880. {
  24881. front: {
  24882. height: math.unit(6 + 3/12, "feet"),
  24883. weight: math.unit(120, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/azura/front.svg",
  24887. extra: 1149/1135,
  24888. bottom: 45/1194
  24889. }
  24890. },
  24891. frontClothed: {
  24892. height: math.unit(6 + 3/12, "feet"),
  24893. weight: math.unit(120, "lb"),
  24894. name: "Front (Clothed)",
  24895. image: {
  24896. source: "./media/characters/azura/front-clothed.svg",
  24897. extra: 1149/1135,
  24898. bottom: 45/1194
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Normal",
  24905. height: math.unit(6 + 3/12, "feet"),
  24906. default: true
  24907. },
  24908. {
  24909. name: "Macro",
  24910. height: math.unit(20 + 6/12, "feet")
  24911. },
  24912. {
  24913. name: "Megamacro",
  24914. height: math.unit(12, "miles")
  24915. },
  24916. {
  24917. name: "Gigamacro",
  24918. height: math.unit(10000, "miles")
  24919. },
  24920. {
  24921. name: "Teramacro",
  24922. height: math.unit(900000, "miles")
  24923. },
  24924. ]
  24925. ))
  24926. characterMakers.push(() => makeCharacter(
  24927. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24928. {
  24929. front: {
  24930. height: math.unit(12, "feet"),
  24931. weight: math.unit(1, "ton"),
  24932. capacity: math.unit(660000, "gallons"),
  24933. name: "Front",
  24934. image: {
  24935. source: "./media/characters/zeus/front.svg",
  24936. extra: 5005/4717,
  24937. bottom: 363/5388
  24938. }
  24939. },
  24940. },
  24941. [
  24942. {
  24943. name: "Normal",
  24944. height: math.unit(12, "feet")
  24945. },
  24946. {
  24947. name: "Preferred Size",
  24948. height: math.unit(0.5, "miles"),
  24949. default: true
  24950. },
  24951. {
  24952. name: "Giga Horse",
  24953. height: math.unit(300, "miles")
  24954. },
  24955. {
  24956. name: "Riding Planets",
  24957. height: math.unit(30, "megameters")
  24958. },
  24959. {
  24960. name: "Cosmic Giant",
  24961. height: math.unit(3, "zettameters")
  24962. },
  24963. {
  24964. name: "Breeding God",
  24965. height: math.unit(9.92e22, "yottameters")
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Fang", species: ["monster"], tags: ["feral"] },
  24971. {
  24972. side: {
  24973. height: math.unit(9, "feet"),
  24974. weight: math.unit(1500, "kg"),
  24975. name: "Side",
  24976. image: {
  24977. source: "./media/characters/fang/side.svg",
  24978. extra: 924/866,
  24979. bottom: 47.5/972.3
  24980. }
  24981. },
  24982. },
  24983. [
  24984. {
  24985. name: "Normal",
  24986. height: math.unit(9, "feet"),
  24987. default: true
  24988. },
  24989. {
  24990. name: "Macro",
  24991. height: math.unit(75 + 6/12, "feet")
  24992. },
  24993. {
  24994. name: "Teramacro",
  24995. height: math.unit(50000, "miles")
  24996. },
  24997. ]
  24998. ))
  24999. characterMakers.push(() => makeCharacter(
  25000. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25001. {
  25002. front: {
  25003. height: math.unit(10, "feet"),
  25004. weight: math.unit(2, "tons"),
  25005. name: "Front",
  25006. image: {
  25007. source: "./media/characters/rekhit/front.svg",
  25008. extra: 2796/2590,
  25009. bottom: 225/3022
  25010. }
  25011. },
  25012. },
  25013. [
  25014. {
  25015. name: "Normal",
  25016. height: math.unit(10, "feet"),
  25017. default: true
  25018. },
  25019. {
  25020. name: "Macro",
  25021. height: math.unit(500, "feet")
  25022. },
  25023. ]
  25024. ))
  25025. characterMakers.push(() => makeCharacter(
  25026. { name: "Dahlia Verrick" },
  25027. {
  25028. front: {
  25029. height: math.unit(7 + 6.451/12, "feet"),
  25030. weight: math.unit(310, "lb"),
  25031. name: "Front",
  25032. image: {
  25033. source: "./media/characters/dahlia-verrick/front.svg",
  25034. extra: 1488/1365,
  25035. bottom: 6.2/1495
  25036. }
  25037. },
  25038. back: {
  25039. height: math.unit(7 + 6.451/12, "feet"),
  25040. weight: math.unit(310, "lb"),
  25041. name: "Back",
  25042. image: {
  25043. source: "./media/characters/dahlia-verrick/back.svg",
  25044. extra: 1472/1351,
  25045. bottom: 5.28/1477
  25046. }
  25047. },
  25048. frontBusiness: {
  25049. height: math.unit(7 + 6.451/12, "feet"),
  25050. weight: math.unit(200, "lb"),
  25051. name: "Front (Business)",
  25052. image: {
  25053. source: "./media/characters/dahlia-verrick/front-business.svg",
  25054. extra: 1478/1381,
  25055. bottom: 5.5/1484
  25056. }
  25057. },
  25058. frontCasual: {
  25059. height: math.unit(7 + 6.451/12, "feet"),
  25060. weight: math.unit(200, "lb"),
  25061. name: "Front (Casual)",
  25062. image: {
  25063. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25064. extra: 1478/1381,
  25065. bottom: 5.5/1484
  25066. }
  25067. },
  25068. },
  25069. [
  25070. {
  25071. name: "Travel-Sized",
  25072. height: math.unit(7.45, "inches")
  25073. },
  25074. {
  25075. name: "Normal",
  25076. height: math.unit(7 + 6.451/12, "feet"),
  25077. default: true
  25078. },
  25079. {
  25080. name: "Hitting the Town",
  25081. height: math.unit(37 + 8/12, "feet")
  25082. },
  25083. {
  25084. name: "Stomp in the Suburbs",
  25085. height: math.unit(964 + 9.728/12, "feet")
  25086. },
  25087. {
  25088. name: "Sit on the City",
  25089. height: math.unit(61747 + 10.592/12, "feet")
  25090. },
  25091. {
  25092. name: "Glomp the Globe",
  25093. height: math.unit(252919327 + 4.832/12, "feet")
  25094. },
  25095. ]
  25096. ))
  25097. characterMakers.push(() => makeCharacter(
  25098. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25099. {
  25100. front: {
  25101. height: math.unit(6 + 4/12, "feet"),
  25102. weight: math.unit(320, "lb"),
  25103. name: "Front",
  25104. image: {
  25105. source: "./media/characters/balina-mahigan/front.svg",
  25106. extra: 447/428,
  25107. bottom: 18/466
  25108. }
  25109. },
  25110. back: {
  25111. height: math.unit(6 + 4/12, "feet"),
  25112. weight: math.unit(320, "lb"),
  25113. name: "Back",
  25114. image: {
  25115. source: "./media/characters/balina-mahigan/back.svg",
  25116. extra: 445/428,
  25117. bottom: 4.07/448
  25118. }
  25119. },
  25120. arm: {
  25121. height: math.unit(1.88, "feet"),
  25122. name: "Arm",
  25123. image: {
  25124. source: "./media/characters/balina-mahigan/arm.svg"
  25125. }
  25126. },
  25127. backPort: {
  25128. height: math.unit(0.685, "feet"),
  25129. name: "Back Port",
  25130. image: {
  25131. source: "./media/characters/balina-mahigan/back-port.svg"
  25132. }
  25133. },
  25134. hoofpaw: {
  25135. height: math.unit(1.41, "feet"),
  25136. name: "Hoofpaw",
  25137. image: {
  25138. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25139. }
  25140. },
  25141. leftHandBack: {
  25142. height: math.unit(0.938, "feet"),
  25143. name: "Left Hand (Back)",
  25144. image: {
  25145. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25146. }
  25147. },
  25148. leftHandFront: {
  25149. height: math.unit(0.938, "feet"),
  25150. name: "Left Hand (Front)",
  25151. image: {
  25152. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25153. }
  25154. },
  25155. rightHandBack: {
  25156. height: math.unit(0.95, "feet"),
  25157. name: "Right Hand (Back)",
  25158. image: {
  25159. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25160. }
  25161. },
  25162. rightHandFront: {
  25163. height: math.unit(0.95, "feet"),
  25164. name: "Right Hand (Front)",
  25165. image: {
  25166. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25167. }
  25168. },
  25169. },
  25170. [
  25171. {
  25172. name: "Normal",
  25173. height: math.unit(6 + 4/12, "feet"),
  25174. default: true
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25180. {
  25181. front: {
  25182. height: math.unit(6, "feet"),
  25183. weight: math.unit(320, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/balina-mejeri/front.svg",
  25187. extra: 517/488,
  25188. bottom: 44.2/561
  25189. }
  25190. },
  25191. },
  25192. [
  25193. {
  25194. name: "Normal",
  25195. height: math.unit(6 + 4/12, "feet")
  25196. },
  25197. {
  25198. name: "Business",
  25199. height: math.unit(155, "feet"),
  25200. default: true
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25206. {
  25207. kneeling: {
  25208. height: math.unit(6 + 4/12, "feet"),
  25209. weight: math.unit(300*20, "lb"),
  25210. name: "Kneeling",
  25211. image: {
  25212. source: "./media/characters/balbarian/kneeling.svg",
  25213. extra: 922/862,
  25214. bottom: 42.4/965
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(6 + 4/12, "feet")
  25222. },
  25223. {
  25224. name: "Treasured",
  25225. height: math.unit(18 + 9/12, "feet"),
  25226. default: true
  25227. },
  25228. {
  25229. name: "Macro",
  25230. height: math.unit(900, "feet")
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(6 + 4/12, "feet"),
  25239. weight: math.unit(325, "lb"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/balina-amarini/front.svg",
  25243. extra: 415/403,
  25244. bottom: 19/433.4
  25245. }
  25246. },
  25247. back: {
  25248. height: math.unit(6 + 4/12, "feet"),
  25249. weight: math.unit(325, "lb"),
  25250. name: "Back",
  25251. image: {
  25252. source: "./media/characters/balina-amarini/back.svg",
  25253. extra: 415/403,
  25254. bottom: 13.5/432
  25255. }
  25256. },
  25257. overdrive: {
  25258. height: math.unit(6 + 4/12, "feet"),
  25259. weight: math.unit(400, "lb"),
  25260. name: "Overdrive",
  25261. image: {
  25262. source: "./media/characters/balina-amarini/overdrive.svg",
  25263. extra: 269/259,
  25264. bottom: 12/282
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Boom",
  25271. height: math.unit(9 + 10/12, "feet"),
  25272. default: true
  25273. },
  25274. {
  25275. name: "Macro",
  25276. height: math.unit(280, "feet")
  25277. },
  25278. ]
  25279. ))
  25280. characterMakers.push(() => makeCharacter(
  25281. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25282. {
  25283. goddess: {
  25284. height: math.unit(600, "feet"),
  25285. weight: math.unit(2000000, "tons"),
  25286. name: "Goddess",
  25287. image: {
  25288. source: "./media/characters/lady-kubwa/goddess.svg",
  25289. extra: 1240.5/1223,
  25290. bottom: 22/1263
  25291. }
  25292. },
  25293. goddesser: {
  25294. height: math.unit(900, "feet"),
  25295. weight: math.unit(20000000, "lb"),
  25296. name: "Goddess-er",
  25297. image: {
  25298. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25299. extra: 899/888,
  25300. bottom: 12.6/912
  25301. }
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Macro",
  25307. height: math.unit(600, "feet"),
  25308. default: true
  25309. },
  25310. {
  25311. name: "Megamacro",
  25312. height: math.unit(250, "miles")
  25313. },
  25314. ]
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25318. {
  25319. front: {
  25320. height: math.unit(7 + 7/12, "feet"),
  25321. weight: math.unit(250, "lb"),
  25322. name: "Front",
  25323. image: {
  25324. source: "./media/characters/tala-grovehorn/front.svg",
  25325. extra: 2636/2525,
  25326. bottom: 147/2781
  25327. }
  25328. },
  25329. back: {
  25330. height: math.unit(7 + 7/12, "feet"),
  25331. weight: math.unit(250, "lb"),
  25332. name: "Back",
  25333. image: {
  25334. source: "./media/characters/tala-grovehorn/back.svg",
  25335. extra: 2635/2539,
  25336. bottom: 100/2732.8
  25337. }
  25338. },
  25339. mouth: {
  25340. height: math.unit(1.15, "feet"),
  25341. name: "Mouth",
  25342. image: {
  25343. source: "./media/characters/tala-grovehorn/mouth.svg"
  25344. }
  25345. },
  25346. dick: {
  25347. height: math.unit(2.36, "feet"),
  25348. name: "Dick",
  25349. image: {
  25350. source: "./media/characters/tala-grovehorn/dick.svg"
  25351. }
  25352. },
  25353. slit: {
  25354. height: math.unit(0.61, "feet"),
  25355. name: "Slit",
  25356. image: {
  25357. source: "./media/characters/tala-grovehorn/slit.svg"
  25358. }
  25359. },
  25360. },
  25361. [
  25362. ]
  25363. ))
  25364. characterMakers.push(() => makeCharacter(
  25365. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25366. {
  25367. front: {
  25368. height: math.unit(7 + 7/12, "feet"),
  25369. weight: math.unit(225, "lb"),
  25370. name: "Front",
  25371. image: {
  25372. source: "./media/characters/epona/front.svg",
  25373. extra: 2445/2290,
  25374. bottom: 251/2696
  25375. }
  25376. },
  25377. back: {
  25378. height: math.unit(7 + 7/12, "feet"),
  25379. weight: math.unit(225, "lb"),
  25380. name: "Back",
  25381. image: {
  25382. source: "./media/characters/epona/back.svg",
  25383. extra: 2546/2408,
  25384. bottom: 44/2589
  25385. }
  25386. },
  25387. genitals: {
  25388. height: math.unit(1.5, "feet"),
  25389. name: "Genitals",
  25390. image: {
  25391. source: "./media/characters/epona/genitals.svg"
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(7 + 7/12, "feet")
  25399. },
  25400. ]
  25401. ))
  25402. characterMakers.push(() => makeCharacter(
  25403. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25404. {
  25405. front: {
  25406. height: math.unit(7, "feet"),
  25407. weight: math.unit(518, "lb"),
  25408. name: "Front",
  25409. image: {
  25410. source: "./media/characters/avia-bloodbourn/front.svg",
  25411. extra: 1466/1350,
  25412. bottom: 65/1527
  25413. }
  25414. },
  25415. },
  25416. [
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(9.35, "feet"),
  25424. weight: math.unit(600, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/amera/front.svg",
  25428. extra: 891/818,
  25429. bottom: 30/922.7
  25430. }
  25431. },
  25432. back: {
  25433. height: math.unit(9.35, "feet"),
  25434. weight: math.unit(600, "lb"),
  25435. name: "Back",
  25436. image: {
  25437. source: "./media/characters/amera/back.svg",
  25438. extra: 876/824,
  25439. bottom: 6.8/884
  25440. }
  25441. },
  25442. dick: {
  25443. height: math.unit(2.14, "feet"),
  25444. name: "Dick",
  25445. image: {
  25446. source: "./media/characters/amera/dick.svg"
  25447. }
  25448. },
  25449. },
  25450. [
  25451. {
  25452. name: "Normal",
  25453. height: math.unit(9.35, "feet"),
  25454. default: true
  25455. },
  25456. ]
  25457. ))
  25458. characterMakers.push(() => makeCharacter(
  25459. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25460. {
  25461. kneeling: {
  25462. height: math.unit(3 + 4/12, "feet"),
  25463. weight: math.unit(90, "lb"),
  25464. name: "Kneeling",
  25465. image: {
  25466. source: "./media/characters/rosewen/kneeling.svg",
  25467. extra: 1835/1571,
  25468. bottom: 27.7/1862
  25469. }
  25470. },
  25471. },
  25472. [
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(3 + 4/12, "feet"),
  25476. default: true
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(5 + 10/12, "feet"),
  25485. weight: math.unit(200, "lb"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/sabah/front.svg",
  25489. extra: 849/763,
  25490. bottom: 33.9/881
  25491. }
  25492. },
  25493. },
  25494. [
  25495. {
  25496. name: "Normal",
  25497. height: math.unit(5 + 10/12, "feet"),
  25498. default: true
  25499. },
  25500. ]
  25501. ))
  25502. characterMakers.push(() => makeCharacter(
  25503. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25504. {
  25505. front: {
  25506. height: math.unit(3 + 5/12, "feet"),
  25507. weight: math.unit(40, "kg"),
  25508. name: "Front",
  25509. image: {
  25510. source: "./media/characters/purple-flame/front.svg",
  25511. extra: 1577/1412,
  25512. bottom: 97/1694
  25513. }
  25514. },
  25515. frontDressed: {
  25516. height: math.unit(3 + 5/12, "feet"),
  25517. weight: math.unit(40, "kg"),
  25518. name: "Front (Dressed)",
  25519. image: {
  25520. source: "./media/characters/purple-flame/front-dressed.svg",
  25521. extra: 1577/1412,
  25522. bottom: 97/1694
  25523. }
  25524. },
  25525. headphones: {
  25526. height: math.unit(0.85, "feet"),
  25527. name: "Headphones",
  25528. image: {
  25529. source: "./media/characters/purple-flame/headphones.svg"
  25530. }
  25531. },
  25532. },
  25533. [
  25534. {
  25535. name: "Really Small",
  25536. height: math.unit(5, "cm")
  25537. },
  25538. {
  25539. name: "Micro",
  25540. height: math.unit(1 + 5/12, "feet")
  25541. },
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(3 + 5/12, "feet"),
  25545. default: true
  25546. },
  25547. {
  25548. name: "Minimacro",
  25549. height: math.unit(125, "feet")
  25550. },
  25551. {
  25552. name: "Macro",
  25553. height: math.unit(0.5, "miles")
  25554. },
  25555. {
  25556. name: "Megamacro",
  25557. height: math.unit(50, "miles")
  25558. },
  25559. {
  25560. name: "Gigantic",
  25561. height: math.unit(750, "miles")
  25562. },
  25563. {
  25564. name: "Planetary",
  25565. height: math.unit(15000, "miles")
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25571. {
  25572. front: {
  25573. height: math.unit(14, "feet"),
  25574. weight: math.unit(959, "lb"),
  25575. name: "Front",
  25576. image: {
  25577. source: "./media/characters/arsenal/front.svg",
  25578. extra: 2357/2157,
  25579. bottom: 93/2458
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(14, "feet"),
  25587. default: true
  25588. },
  25589. ]
  25590. ))
  25591. characterMakers.push(() => makeCharacter(
  25592. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25593. {
  25594. front: {
  25595. height: math.unit(6, "feet"),
  25596. weight: math.unit(150, "lb"),
  25597. name: "Front",
  25598. image: {
  25599. source: "./media/characters/adira/front.svg",
  25600. extra: 1078/1029,
  25601. bottom: 87/1166
  25602. }
  25603. },
  25604. },
  25605. [
  25606. {
  25607. name: "Micro",
  25608. height: math.unit(4, "inches"),
  25609. default: true
  25610. },
  25611. {
  25612. name: "Macro",
  25613. height: math.unit(50, "feet")
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25619. {
  25620. front: {
  25621. height: math.unit(16, "feet"),
  25622. weight: math.unit(1000, "lb"),
  25623. name: "Front",
  25624. image: {
  25625. source: "./media/characters/grim/front.svg",
  25626. extra: 622/614,
  25627. bottom: 18.1/642
  25628. }
  25629. },
  25630. back: {
  25631. height: math.unit(16, "feet"),
  25632. weight: math.unit(1000, "lb"),
  25633. name: "Back",
  25634. image: {
  25635. source: "./media/characters/grim/back.svg",
  25636. extra: 610.6/602,
  25637. bottom: 40.8/652
  25638. }
  25639. },
  25640. hunched: {
  25641. height: math.unit(9.75, "feet"),
  25642. weight: math.unit(1000, "lb"),
  25643. name: "Hunched",
  25644. image: {
  25645. source: "./media/characters/grim/hunched.svg",
  25646. extra: 304/297,
  25647. bottom: 35.4/394
  25648. }
  25649. },
  25650. },
  25651. [
  25652. {
  25653. name: "Normal",
  25654. height: math.unit(16, "feet"),
  25655. default: true
  25656. },
  25657. ]
  25658. ))
  25659. //characters
  25660. function makeCharacters() {
  25661. const results = [];
  25662. characterMakers.forEach(character => {
  25663. results.push(character());
  25664. });
  25665. return results;
  25666. }