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

35946 líneas
903 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.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. "vulture": {
  1500. name: "Vulture",
  1501. parents: ["avian"]
  1502. },
  1503. "eastern-dragon": {
  1504. name: "Eastern Dragon",
  1505. parents: ["dragon"]
  1506. },
  1507. "gryffon": {
  1508. name: "Gryffon",
  1509. parents: ["phoenix", "red-panda"]
  1510. },
  1511. "amtsvane": {
  1512. name: "Amtsvane",
  1513. parents: ["reptile"]
  1514. },
  1515. "kigavi": {
  1516. name: "Kigavi",
  1517. parents: ["avian"]
  1518. },
  1519. "turian": {
  1520. name: "Turian",
  1521. parents: ["avian"]
  1522. },
  1523. "zeraora": {
  1524. name: "Zeraora",
  1525. parents: ["pokemon"]
  1526. },
  1527. "sandshrew": {
  1528. name: "Sandshrew",
  1529. parents: ["pokemon", "pangolin"]
  1530. },
  1531. "valais-blacknose-sheep": {
  1532. name: "Valais Blacknose Sheep",
  1533. parents: ["sheep"]
  1534. },
  1535. "novaleit": {
  1536. name: "Novaleit",
  1537. parents: ["mammal"]
  1538. },
  1539. "dunnoh": {
  1540. name: "Dunnoh",
  1541. parents: ["mammal"]
  1542. },
  1543. "lunaral-dragon": {
  1544. name: "Lunaral Dragon",
  1545. parents: ["dragon"]
  1546. },
  1547. "arctic-wolf": {
  1548. name: "Arctic Wolf",
  1549. parents: ["wolf"]
  1550. },
  1551. "donkey": {
  1552. name: "Donkey",
  1553. parents: ["horse"]
  1554. },
  1555. }
  1556. //species
  1557. function getSpeciesInfo(speciesList) {
  1558. let result = new Set();
  1559. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1560. result.add(entry)
  1561. });
  1562. return Array.from(result);
  1563. };
  1564. function getSpeciesInfoHelper(species) {
  1565. if (!speciesData[species]) {
  1566. console.warn(species + " doesn't exist");
  1567. return [];
  1568. }
  1569. if (speciesData[species].parents) {
  1570. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1571. } else {
  1572. return [species];
  1573. }
  1574. }
  1575. characterMakers.push(() => makeCharacter(
  1576. {
  1577. name: "Fen",
  1578. species: ["crux"],
  1579. description: {
  1580. title: "Bio",
  1581. text: "Very furry. Sheds on everything."
  1582. },
  1583. tags: [
  1584. "anthro",
  1585. "goo"
  1586. ]
  1587. },
  1588. {
  1589. back: {
  1590. height: math.unit(2.2428, "meter"),
  1591. weight: math.unit(124.738, "kg"),
  1592. name: "Back",
  1593. image: {
  1594. source: "./media/characters/fen/back.svg",
  1595. extra: 2024 / 1867,
  1596. bottom: 13 / 2037
  1597. },
  1598. info: {
  1599. description: {
  1600. mode: "append",
  1601. text: "\n\nHe is not currently looking at you."
  1602. }
  1603. }
  1604. },
  1605. full: {
  1606. height: math.unit(1.34, "meter"),
  1607. weight: math.unit(225, "kg"),
  1608. name: "Full",
  1609. image: {
  1610. source: "./media/characters/fen/full.svg"
  1611. },
  1612. info: {
  1613. description: {
  1614. mode: "append",
  1615. text: "\n\nMunch."
  1616. }
  1617. }
  1618. },
  1619. kneeling: {
  1620. height: math.unit(5.4, "feet"),
  1621. weight: math.unit(124.738, "kg"),
  1622. name: "Kneeling",
  1623. image: {
  1624. source: "./media/characters/fen/kneeling.svg",
  1625. extra: 563 / 507
  1626. }
  1627. },
  1628. goo: {
  1629. height: math.unit(2.8, "feet"),
  1630. weight: math.unit(125, "kg"),
  1631. capacity: math.unit(1, "people"),
  1632. name: "Goo",
  1633. image: {
  1634. source: "./media/characters/fen/goo.svg",
  1635. bottom: 116 / 613
  1636. }
  1637. },
  1638. lounging: {
  1639. height: math.unit(6.5, "feet"),
  1640. weight: math.unit(125, "kg"),
  1641. name: "Lounging",
  1642. image: {
  1643. source: "./media/characters/fen/lounging.svg"
  1644. }
  1645. },
  1646. },
  1647. [
  1648. {
  1649. name: "Normal",
  1650. height: math.unit(2.2428, "meter")
  1651. },
  1652. {
  1653. name: "Big",
  1654. height: math.unit(12, "feet")
  1655. },
  1656. {
  1657. name: "Minimacro",
  1658. height: math.unit(40, "feet"),
  1659. default: true,
  1660. info: {
  1661. description: {
  1662. mode: "append",
  1663. text: "\n\nTOO DAMN BIG"
  1664. }
  1665. }
  1666. },
  1667. {
  1668. name: "Macro",
  1669. height: math.unit(100, "feet"),
  1670. info: {
  1671. description: {
  1672. mode: "append",
  1673. text: "\n\nTOO DAMN BIG"
  1674. }
  1675. }
  1676. },
  1677. {
  1678. name: "Macro+",
  1679. height: math.unit(300, "feet")
  1680. },
  1681. {
  1682. name: "Megamacro",
  1683. height: math.unit(2, "miles")
  1684. }
  1685. ]
  1686. ))
  1687. characterMakers.push(() => makeCharacter(
  1688. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1689. {
  1690. front: {
  1691. height: math.unit(183, "cm"),
  1692. weight: math.unit(80, "kg"),
  1693. name: "Front",
  1694. image: {
  1695. source: "./media/characters/sofia-fluttertail/front.svg",
  1696. bottom: 0.01,
  1697. extra: 2154 / 2081
  1698. }
  1699. },
  1700. frontAlt: {
  1701. height: math.unit(183, "cm"),
  1702. weight: math.unit(80, "kg"),
  1703. name: "Front (alt)",
  1704. image: {
  1705. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1706. }
  1707. },
  1708. back: {
  1709. height: math.unit(183, "cm"),
  1710. weight: math.unit(80, "kg"),
  1711. name: "Back",
  1712. image: {
  1713. source: "./media/characters/sofia-fluttertail/back.svg"
  1714. }
  1715. },
  1716. kneeling: {
  1717. height: math.unit(125, "cm"),
  1718. weight: math.unit(80, "kg"),
  1719. name: "Kneeling",
  1720. image: {
  1721. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1722. extra: 1033 / 977,
  1723. bottom: 23.7 / 1057
  1724. }
  1725. },
  1726. maw: {
  1727. height: math.unit(183 / 5, "cm"),
  1728. name: "Maw",
  1729. image: {
  1730. source: "./media/characters/sofia-fluttertail/maw.svg"
  1731. }
  1732. },
  1733. mawcloseup: {
  1734. height: math.unit(183 / 5 * 0.41, "cm"),
  1735. name: "Maw (Closeup)",
  1736. image: {
  1737. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1738. }
  1739. },
  1740. paws: {
  1741. height: math.unit(1.17, "feet"),
  1742. name: "Paws",
  1743. image: {
  1744. source: "./media/characters/sofia-fluttertail/paws.svg",
  1745. extra: 851 / 851,
  1746. bottom: 17 / 868
  1747. }
  1748. },
  1749. },
  1750. [
  1751. {
  1752. name: "Normal",
  1753. height: math.unit(1.83, "meter")
  1754. },
  1755. {
  1756. name: "Size Thief",
  1757. height: math.unit(18, "feet")
  1758. },
  1759. {
  1760. name: "50 Foot Collie",
  1761. height: math.unit(50, "feet")
  1762. },
  1763. {
  1764. name: "Macro",
  1765. height: math.unit(96, "feet"),
  1766. default: true
  1767. },
  1768. {
  1769. name: "Megamerger",
  1770. height: math.unit(650, "feet")
  1771. },
  1772. ]
  1773. ))
  1774. characterMakers.push(() => makeCharacter(
  1775. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1776. {
  1777. front: {
  1778. height: math.unit(7, "feet"),
  1779. weight: math.unit(100, "kg"),
  1780. name: "Front",
  1781. image: {
  1782. source: "./media/characters/march/front.svg",
  1783. extra: 1,
  1784. bottom: 0.015
  1785. }
  1786. },
  1787. foot: {
  1788. height: math.unit(0.9, "feet"),
  1789. name: "Foot",
  1790. image: {
  1791. source: "./media/characters/march/foot.svg"
  1792. }
  1793. },
  1794. },
  1795. [
  1796. {
  1797. name: "Normal",
  1798. height: math.unit(7.9, "feet")
  1799. },
  1800. {
  1801. name: "Macro",
  1802. height: math.unit(220, "meters")
  1803. },
  1804. {
  1805. name: "Megamacro",
  1806. height: math.unit(2.98, "km"),
  1807. default: true
  1808. },
  1809. {
  1810. name: "Gigamacro",
  1811. height: math.unit(15963, "km")
  1812. },
  1813. {
  1814. name: "Teramacro",
  1815. height: math.unit(2980000000, "km")
  1816. },
  1817. {
  1818. name: "Examacro",
  1819. height: math.unit(250, "parsecs")
  1820. },
  1821. ]
  1822. ))
  1823. characterMakers.push(() => makeCharacter(
  1824. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1825. {
  1826. front: {
  1827. height: math.unit(6, "feet"),
  1828. weight: math.unit(60, "kg"),
  1829. name: "Front",
  1830. image: {
  1831. source: "./media/characters/noir/front.svg",
  1832. extra: 1,
  1833. bottom: 0.032
  1834. }
  1835. },
  1836. },
  1837. [
  1838. {
  1839. name: "Normal",
  1840. height: math.unit(6.6, "feet")
  1841. },
  1842. {
  1843. name: "Macro",
  1844. height: math.unit(500, "feet")
  1845. },
  1846. {
  1847. name: "Megamacro",
  1848. height: math.unit(2.5, "km"),
  1849. default: true
  1850. },
  1851. {
  1852. name: "Gigamacro",
  1853. height: math.unit(22500, "km")
  1854. },
  1855. {
  1856. name: "Teramacro",
  1857. height: math.unit(2500000000, "km")
  1858. },
  1859. {
  1860. name: "Examacro",
  1861. height: math.unit(200, "parsecs")
  1862. },
  1863. ]
  1864. ))
  1865. characterMakers.push(() => makeCharacter(
  1866. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1867. {
  1868. front: {
  1869. height: math.unit(7, "feet"),
  1870. weight: math.unit(100, "kg"),
  1871. name: "Front",
  1872. image: {
  1873. source: "./media/characters/okuri/front.svg",
  1874. extra: 1,
  1875. bottom: 0.037
  1876. }
  1877. },
  1878. back: {
  1879. height: math.unit(7, "feet"),
  1880. weight: math.unit(100, "kg"),
  1881. name: "Back",
  1882. image: {
  1883. source: "./media/characters/okuri/back.svg",
  1884. extra: 1,
  1885. bottom: 0.007
  1886. }
  1887. },
  1888. },
  1889. [
  1890. {
  1891. name: "Megamacro",
  1892. height: math.unit(100, "miles"),
  1893. default: true
  1894. },
  1895. ]
  1896. ))
  1897. characterMakers.push(() => makeCharacter(
  1898. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1899. {
  1900. front: {
  1901. height: math.unit(7, "feet"),
  1902. weight: math.unit(100, "kg"),
  1903. name: "Front",
  1904. image: {
  1905. source: "./media/characters/manny/front.svg",
  1906. extra: 1,
  1907. bottom: 0.06
  1908. }
  1909. },
  1910. back: {
  1911. height: math.unit(7, "feet"),
  1912. weight: math.unit(100, "kg"),
  1913. name: "Back",
  1914. image: {
  1915. source: "./media/characters/manny/back.svg",
  1916. extra: 1,
  1917. bottom: 0.014
  1918. }
  1919. },
  1920. },
  1921. [
  1922. {
  1923. name: "Normal",
  1924. height: math.unit(7, "feet"),
  1925. },
  1926. {
  1927. name: "Macro",
  1928. height: math.unit(78, "feet"),
  1929. default: true
  1930. },
  1931. {
  1932. name: "Macro+",
  1933. height: math.unit(300, "meters")
  1934. },
  1935. {
  1936. name: "Macro++",
  1937. height: math.unit(2400, "meters")
  1938. },
  1939. {
  1940. name: "Megamacro",
  1941. height: math.unit(5167, "meters")
  1942. },
  1943. {
  1944. name: "Gigamacro",
  1945. height: math.unit(41769, "miles")
  1946. },
  1947. ]
  1948. ))
  1949. characterMakers.push(() => makeCharacter(
  1950. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1951. {
  1952. front: {
  1953. height: math.unit(7, "feet"),
  1954. weight: math.unit(100, "kg"),
  1955. name: "Front",
  1956. image: {
  1957. source: "./media/characters/adake/front-1.svg"
  1958. }
  1959. },
  1960. frontAlt: {
  1961. height: math.unit(7, "feet"),
  1962. weight: math.unit(100, "kg"),
  1963. name: "Front (Alt)",
  1964. image: {
  1965. source: "./media/characters/adake/front-2.svg",
  1966. extra: 1,
  1967. bottom: 0.01
  1968. }
  1969. },
  1970. back: {
  1971. height: math.unit(7, "feet"),
  1972. weight: math.unit(100, "kg"),
  1973. name: "Back",
  1974. image: {
  1975. source: "./media/characters/adake/back.svg",
  1976. }
  1977. },
  1978. kneel: {
  1979. height: math.unit(5.385, "feet"),
  1980. weight: math.unit(100, "kg"),
  1981. name: "Kneeling",
  1982. image: {
  1983. source: "./media/characters/adake/kneel.svg",
  1984. bottom: 0.052
  1985. }
  1986. },
  1987. },
  1988. [
  1989. {
  1990. name: "Normal",
  1991. height: math.unit(7, "feet"),
  1992. },
  1993. {
  1994. name: "Macro",
  1995. height: math.unit(78, "feet"),
  1996. default: true
  1997. },
  1998. {
  1999. name: "Macro+",
  2000. height: math.unit(300, "meters")
  2001. },
  2002. {
  2003. name: "Macro++",
  2004. height: math.unit(2400, "meters")
  2005. },
  2006. {
  2007. name: "Megamacro",
  2008. height: math.unit(5167, "meters")
  2009. },
  2010. {
  2011. name: "Gigamacro",
  2012. height: math.unit(41769, "miles")
  2013. },
  2014. ]
  2015. ))
  2016. characterMakers.push(() => makeCharacter(
  2017. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2018. {
  2019. front: {
  2020. height: math.unit(1.65, "meters"),
  2021. weight: math.unit(50, "kg"),
  2022. name: "Front",
  2023. image: {
  2024. source: "./media/characters/elijah/front.svg",
  2025. extra: 858 / 830,
  2026. bottom: 95.5 / 953.8559
  2027. }
  2028. },
  2029. back: {
  2030. height: math.unit(1.65, "meters"),
  2031. weight: math.unit(50, "kg"),
  2032. name: "Back",
  2033. image: {
  2034. source: "./media/characters/elijah/back.svg",
  2035. extra: 895 / 850,
  2036. bottom: 5.3 / 897.956
  2037. }
  2038. },
  2039. frontNsfw: {
  2040. height: math.unit(1.65, "meters"),
  2041. weight: math.unit(50, "kg"),
  2042. name: "Front (NSFW)",
  2043. image: {
  2044. source: "./media/characters/elijah/front-nsfw.svg",
  2045. extra: 858 / 830,
  2046. bottom: 95.5 / 953.8559
  2047. }
  2048. },
  2049. backNsfw: {
  2050. height: math.unit(1.65, "meters"),
  2051. weight: math.unit(50, "kg"),
  2052. name: "Back (NSFW)",
  2053. image: {
  2054. source: "./media/characters/elijah/back-nsfw.svg",
  2055. extra: 895 / 850,
  2056. bottom: 5.3 / 897.956
  2057. }
  2058. },
  2059. dick: {
  2060. height: math.unit(1, "feet"),
  2061. name: "Dick",
  2062. image: {
  2063. source: "./media/characters/elijah/dick.svg"
  2064. }
  2065. },
  2066. beakOpen: {
  2067. height: math.unit(1.25, "feet"),
  2068. name: "Beak (Open)",
  2069. image: {
  2070. source: "./media/characters/elijah/beak-open.svg"
  2071. }
  2072. },
  2073. beakShut: {
  2074. height: math.unit(1.25, "feet"),
  2075. name: "Beak (Shut)",
  2076. image: {
  2077. source: "./media/characters/elijah/beak-shut.svg"
  2078. }
  2079. },
  2080. footFlexing: {
  2081. height: math.unit(1.61, "feet"),
  2082. name: "Foot (Flexing)",
  2083. image: {
  2084. source: "./media/characters/elijah/foot-flexing.svg"
  2085. }
  2086. },
  2087. footStepping: {
  2088. height: math.unit(1.44, "feet"),
  2089. name: "Foot (Stepping)",
  2090. image: {
  2091. source: "./media/characters/elijah/foot-stepping.svg"
  2092. }
  2093. },
  2094. plantigradeLeg: {
  2095. height: math.unit(2.34, "feet"),
  2096. name: "Plantigrade Leg",
  2097. image: {
  2098. source: "./media/characters/elijah/plantigrade-leg.svg"
  2099. }
  2100. },
  2101. plantigradeFootLeft: {
  2102. height: math.unit(0.9, "feet"),
  2103. name: "Plantigrade Foot (Left)",
  2104. image: {
  2105. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2106. }
  2107. },
  2108. plantigradeFootRight: {
  2109. height: math.unit(0.9, "feet"),
  2110. name: "Plantigrade Foot (Right)",
  2111. image: {
  2112. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2113. }
  2114. },
  2115. },
  2116. [
  2117. {
  2118. name: "Normal",
  2119. height: math.unit(1.65, "meters")
  2120. },
  2121. {
  2122. name: "Macro",
  2123. height: math.unit(55, "meters"),
  2124. default: true
  2125. },
  2126. {
  2127. name: "Macro+",
  2128. height: math.unit(105, "meters")
  2129. },
  2130. ]
  2131. ))
  2132. characterMakers.push(() => makeCharacter(
  2133. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2134. {
  2135. front: {
  2136. height: math.unit(11, "feet"),
  2137. weight: math.unit(80, "kg"),
  2138. name: "Front",
  2139. image: {
  2140. source: "./media/characters/rai/front.svg",
  2141. extra: 1,
  2142. bottom: 0.03
  2143. }
  2144. },
  2145. side: {
  2146. height: math.unit(11, "feet"),
  2147. weight: math.unit(80, "kg"),
  2148. name: "Side",
  2149. image: {
  2150. source: "./media/characters/rai/side.svg"
  2151. }
  2152. },
  2153. back: {
  2154. height: math.unit(11, "feet"),
  2155. weight: math.unit(80, "lb"),
  2156. name: "Back",
  2157. image: {
  2158. source: "./media/characters/rai/back.svg",
  2159. extra: 1,
  2160. bottom: 0.01
  2161. }
  2162. },
  2163. feral: {
  2164. height: math.unit(11, "feet"),
  2165. weight: math.unit(800, "lb"),
  2166. name: "Feral",
  2167. image: {
  2168. source: "./media/characters/rai/feral.svg",
  2169. extra: 1050 / 659,
  2170. bottom: 0.07
  2171. }
  2172. },
  2173. dragon: {
  2174. height: math.unit(23, "feet"),
  2175. weight: math.unit(50000, "lb"),
  2176. name: "Dragon",
  2177. image: {
  2178. source: "./media/characters/rai/dragon.svg",
  2179. extra: 2498 / 2030,
  2180. bottom: 85.2 / 2584
  2181. }
  2182. },
  2183. maw: {
  2184. height: math.unit(6 / 3.81416, "feet"),
  2185. name: "Maw",
  2186. image: {
  2187. source: "./media/characters/rai/maw.svg"
  2188. }
  2189. },
  2190. },
  2191. [
  2192. {
  2193. name: "Normal",
  2194. height: math.unit(11, "feet")
  2195. },
  2196. {
  2197. name: "Macro",
  2198. height: math.unit(302, "feet"),
  2199. default: true
  2200. },
  2201. ]
  2202. ))
  2203. characterMakers.push(() => makeCharacter(
  2204. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2205. {
  2206. frontDressed: {
  2207. height: math.unit(216, "feet"),
  2208. weight: math.unit(7000000, "lb"),
  2209. name: "Front (Dressed)",
  2210. image: {
  2211. source: "./media/characters/jazzy/front-dressed.svg",
  2212. extra: 2738 / 2651,
  2213. bottom: 41.8 / 2786
  2214. }
  2215. },
  2216. backDressed: {
  2217. height: math.unit(216, "feet"),
  2218. weight: math.unit(7000000, "lb"),
  2219. name: "Back (Dressed)",
  2220. image: {
  2221. source: "./media/characters/jazzy/back-dressed.svg",
  2222. extra: 2775 / 2673,
  2223. bottom: 36.8 / 2817
  2224. }
  2225. },
  2226. front: {
  2227. height: math.unit(216, "feet"),
  2228. weight: math.unit(7000000, "lb"),
  2229. name: "Front",
  2230. image: {
  2231. source: "./media/characters/jazzy/front.svg",
  2232. extra: 2738 / 2651,
  2233. bottom: 41.8 / 2786
  2234. }
  2235. },
  2236. back: {
  2237. height: math.unit(216, "feet"),
  2238. weight: math.unit(7000000, "lb"),
  2239. name: "Back",
  2240. image: {
  2241. source: "./media/characters/jazzy/back.svg",
  2242. extra: 2775 / 2673,
  2243. bottom: 36.8 / 2817
  2244. }
  2245. },
  2246. maw: {
  2247. height: math.unit(20, "feet"),
  2248. name: "Maw",
  2249. image: {
  2250. source: "./media/characters/jazzy/maw.svg"
  2251. }
  2252. },
  2253. paws: {
  2254. height: math.unit(27.5, "feet"),
  2255. name: "Paws",
  2256. image: {
  2257. source: "./media/characters/jazzy/paws.svg"
  2258. }
  2259. },
  2260. eye: {
  2261. height: math.unit(4.4, "feet"),
  2262. name: "Eye",
  2263. image: {
  2264. source: "./media/characters/jazzy/eye.svg"
  2265. }
  2266. },
  2267. droneOffense: {
  2268. height: math.unit(9.5, "inches"),
  2269. name: "Drone (Offense)",
  2270. image: {
  2271. source: "./media/characters/jazzy/drone-offense.svg"
  2272. }
  2273. },
  2274. droneRecon: {
  2275. height: math.unit(9.5, "inches"),
  2276. name: "Drone (Recon)",
  2277. image: {
  2278. source: "./media/characters/jazzy/drone-recon.svg"
  2279. }
  2280. },
  2281. droneDefense: {
  2282. height: math.unit(9.5, "inches"),
  2283. name: "Drone (Defense)",
  2284. image: {
  2285. source: "./media/characters/jazzy/drone-defense.svg"
  2286. }
  2287. },
  2288. },
  2289. [
  2290. {
  2291. name: "Macro",
  2292. height: math.unit(216, "feet"),
  2293. default: true
  2294. },
  2295. ]
  2296. ))
  2297. characterMakers.push(() => makeCharacter(
  2298. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2299. {
  2300. front: {
  2301. height: math.unit(7, "feet"),
  2302. weight: math.unit(80, "kg"),
  2303. name: "Front",
  2304. image: {
  2305. source: "./media/characters/flamm/front.svg",
  2306. extra: 1794 / 1677,
  2307. bottom: 31.7 / 1828.5
  2308. }
  2309. },
  2310. },
  2311. [
  2312. {
  2313. name: "Normal",
  2314. height: math.unit(9.5, "feet")
  2315. },
  2316. {
  2317. name: "Macro",
  2318. height: math.unit(200, "feet"),
  2319. default: true
  2320. },
  2321. ]
  2322. ))
  2323. characterMakers.push(() => makeCharacter(
  2324. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2325. {
  2326. front: {
  2327. height: math.unit(5 + 3/12, "feet"),
  2328. weight: math.unit(60, "kg"),
  2329. name: "Front",
  2330. image: {
  2331. source: "./media/characters/zephiro/front.svg",
  2332. extra: 2309 / 2162,
  2333. bottom: 0.069
  2334. }
  2335. },
  2336. side: {
  2337. height: math.unit(5 + 3/12, "feet"),
  2338. weight: math.unit(60, "kg"),
  2339. name: "Side",
  2340. image: {
  2341. source: "./media/characters/zephiro/side.svg",
  2342. extra: 2403 / 2279,
  2343. bottom: 0.015
  2344. }
  2345. },
  2346. back: {
  2347. height: math.unit(5 + 3/12, "feet"),
  2348. weight: math.unit(60, "kg"),
  2349. name: "Back",
  2350. image: {
  2351. source: "./media/characters/zephiro/back.svg",
  2352. extra: 2373 / 2244,
  2353. bottom: 0.013
  2354. }
  2355. },
  2356. hand: {
  2357. height: math.unit(0.68, "feet"),
  2358. name: "Hand",
  2359. image: {
  2360. source: "./media/characters/zephiro/hand.svg"
  2361. }
  2362. },
  2363. paw: {
  2364. height: math.unit(1, "feet"),
  2365. name: "Paw",
  2366. image: {
  2367. source: "./media/characters/zephiro/paw.svg"
  2368. }
  2369. },
  2370. beans: {
  2371. height: math.unit(0.93, "feet"),
  2372. name: "Beans",
  2373. image: {
  2374. source: "./media/characters/zephiro/beans.svg"
  2375. }
  2376. },
  2377. },
  2378. [
  2379. {
  2380. name: "Micro",
  2381. height: math.unit(3, "inches")
  2382. },
  2383. {
  2384. name: "Normal",
  2385. height: math.unit(5 + 3 / 12, "feet"),
  2386. default: true
  2387. },
  2388. {
  2389. name: "Macro",
  2390. height: math.unit(118, "feet")
  2391. },
  2392. ]
  2393. ))
  2394. characterMakers.push(() => makeCharacter(
  2395. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2396. {
  2397. front: {
  2398. height: math.unit(5, "feet"),
  2399. weight: math.unit(90, "kg"),
  2400. name: "Front",
  2401. image: {
  2402. source: "./media/characters/fory/front.svg",
  2403. extra: 2862 / 2674,
  2404. bottom: 180 / 3043.8
  2405. }
  2406. },
  2407. back: {
  2408. height: math.unit(5, "feet"),
  2409. weight: math.unit(90, "kg"),
  2410. name: "Back",
  2411. image: {
  2412. source: "./media/characters/fory/back.svg",
  2413. extra: 2962 / 2791,
  2414. bottom: 106 / 3071.8
  2415. }
  2416. },
  2417. foot: {
  2418. height: math.unit(2.14, "feet"),
  2419. name: "Foot",
  2420. image: {
  2421. source: "./media/characters/fory/foot.svg"
  2422. }
  2423. },
  2424. },
  2425. [
  2426. {
  2427. name: "Normal",
  2428. height: math.unit(5, "feet")
  2429. },
  2430. {
  2431. name: "Macro",
  2432. height: math.unit(50, "feet"),
  2433. default: true
  2434. },
  2435. {
  2436. name: "Megamacro",
  2437. height: math.unit(10, "miles")
  2438. },
  2439. {
  2440. name: "Gigamacro",
  2441. height: math.unit(5, "earths")
  2442. },
  2443. ]
  2444. ))
  2445. characterMakers.push(() => makeCharacter(
  2446. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2447. {
  2448. front: {
  2449. height: math.unit(7, "feet"),
  2450. weight: math.unit(90, "kg"),
  2451. name: "Front",
  2452. image: {
  2453. source: "./media/characters/kurrikage/front.svg",
  2454. extra: 1,
  2455. bottom: 0.035
  2456. }
  2457. },
  2458. back: {
  2459. height: math.unit(7, "feet"),
  2460. weight: math.unit(90, "lb"),
  2461. name: "Back",
  2462. image: {
  2463. source: "./media/characters/kurrikage/back.svg"
  2464. }
  2465. },
  2466. paw: {
  2467. height: math.unit(1.5, "feet"),
  2468. name: "Paw",
  2469. image: {
  2470. source: "./media/characters/kurrikage/paw.svg"
  2471. }
  2472. },
  2473. staff: {
  2474. height: math.unit(6.7, "feet"),
  2475. name: "Staff",
  2476. image: {
  2477. source: "./media/characters/kurrikage/staff.svg"
  2478. }
  2479. },
  2480. peek: {
  2481. height: math.unit(1.05, "feet"),
  2482. name: "Peeking",
  2483. image: {
  2484. source: "./media/characters/kurrikage/peek.svg",
  2485. bottom: 0.08
  2486. }
  2487. },
  2488. },
  2489. [
  2490. {
  2491. name: "Normal",
  2492. height: math.unit(12, "feet"),
  2493. default: true
  2494. },
  2495. {
  2496. name: "Big",
  2497. height: math.unit(20, "feet")
  2498. },
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(500, "feet")
  2502. },
  2503. {
  2504. name: "Megamacro",
  2505. height: math.unit(20, "miles")
  2506. },
  2507. ]
  2508. ))
  2509. characterMakers.push(() => makeCharacter(
  2510. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2511. {
  2512. front: {
  2513. height: math.unit(6, "feet"),
  2514. weight: math.unit(75, "kg"),
  2515. name: "Front",
  2516. image: {
  2517. source: "./media/characters/shingo/front.svg",
  2518. extra: 706/681,
  2519. bottom: 11/717
  2520. }
  2521. },
  2522. frontAlt: {
  2523. height: math.unit(6, "feet"),
  2524. weight: math.unit(75, "kg"),
  2525. name: "Front (Alt)",
  2526. image: {
  2527. source: "./media/characters/shingo/front-alt.svg",
  2528. extra: 3511 / 3338,
  2529. bottom: 0.005
  2530. }
  2531. },
  2532. paw: {
  2533. height: math.unit(1, "feet"),
  2534. name: "Paw",
  2535. image: {
  2536. source: "./media/characters/shingo/paw.svg"
  2537. }
  2538. },
  2539. },
  2540. [
  2541. {
  2542. name: "Micro",
  2543. height: math.unit(4, "inches")
  2544. },
  2545. {
  2546. name: "Normal",
  2547. height: math.unit(6, "feet"),
  2548. default: true
  2549. },
  2550. {
  2551. name: "Macro",
  2552. height: math.unit(108, "feet")
  2553. },
  2554. {
  2555. name: "Macro+",
  2556. height: math.unit(1500, "feet")
  2557. },
  2558. ]
  2559. ))
  2560. characterMakers.push(() => makeCharacter(
  2561. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2562. {
  2563. side: {
  2564. height: math.unit(6, "feet"),
  2565. weight: math.unit(75, "kg"),
  2566. name: "Side",
  2567. image: {
  2568. source: "./media/characters/aigey/side.svg"
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Macro",
  2575. height: math.unit(200, "feet"),
  2576. default: true
  2577. },
  2578. {
  2579. name: "Megamacro",
  2580. height: math.unit(100, "miles")
  2581. },
  2582. ]
  2583. )
  2584. )
  2585. characterMakers.push(() => makeCharacter(
  2586. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2587. {
  2588. front: {
  2589. height: math.unit(5 + 5 / 12, "feet"),
  2590. weight: math.unit(75, "kg"),
  2591. name: "Front",
  2592. image: {
  2593. source: "./media/characters/natasha/front.svg",
  2594. extra: 859 / 824,
  2595. bottom: 23 / 879.6
  2596. }
  2597. },
  2598. frontNsfw: {
  2599. height: math.unit(5 + 5 / 12, "feet"),
  2600. weight: math.unit(75, "kg"),
  2601. name: "Front (NSFW)",
  2602. image: {
  2603. source: "./media/characters/natasha/front-nsfw.svg",
  2604. extra: 859 / 824,
  2605. bottom: 23 / 879.6
  2606. }
  2607. },
  2608. frontErect: {
  2609. height: math.unit(5 + 5 / 12, "feet"),
  2610. weight: math.unit(75, "kg"),
  2611. name: "Front (Erect)",
  2612. image: {
  2613. source: "./media/characters/natasha/front-erect.svg",
  2614. extra: 859 / 824,
  2615. bottom: 23 / 879.6
  2616. }
  2617. },
  2618. back: {
  2619. height: math.unit(5 + 5 / 12, "feet"),
  2620. weight: math.unit(75, "kg"),
  2621. name: "Back",
  2622. image: {
  2623. source: "./media/characters/natasha/back.svg",
  2624. extra: 887.9 / 852.6,
  2625. bottom: 9.7 / 896.4
  2626. }
  2627. },
  2628. backAlt: {
  2629. height: math.unit(5 + 5 / 12, "feet"),
  2630. weight: math.unit(75, "kg"),
  2631. name: "Back (Alt)",
  2632. image: {
  2633. source: "./media/characters/natasha/back-alt.svg",
  2634. extra: 1236.7 / 1192,
  2635. bottom: 22.3 / 1258.2
  2636. }
  2637. },
  2638. dick: {
  2639. height: math.unit(1.772, "feet"),
  2640. name: "Dick",
  2641. image: {
  2642. source: "./media/characters/natasha/dick.svg"
  2643. }
  2644. },
  2645. paw: {
  2646. height: math.unit(0.250, "meters"),
  2647. name: "Paw",
  2648. image: {
  2649. source: "./media/characters/natasha/paw.svg"
  2650. }
  2651. },
  2652. },
  2653. [
  2654. {
  2655. name: "Normal",
  2656. height: math.unit(5 + 5 / 12, "feet")
  2657. },
  2658. {
  2659. name: "Large",
  2660. height: math.unit(12, "feet")
  2661. },
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(100, "feet"),
  2665. default: true
  2666. },
  2667. {
  2668. name: "Macro+",
  2669. height: math.unit(260, "feet")
  2670. },
  2671. {
  2672. name: "Macro++",
  2673. height: math.unit(1, "mile")
  2674. },
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2679. {
  2680. front: {
  2681. height: math.unit(6, "feet"),
  2682. weight: math.unit(75, "kg"),
  2683. name: "Front",
  2684. image: {
  2685. source: "./media/characters/malik/front.svg"
  2686. }
  2687. },
  2688. side: {
  2689. height: math.unit(6, "feet"),
  2690. weight: math.unit(75, "kg"),
  2691. name: "Side",
  2692. image: {
  2693. source: "./media/characters/malik/side.svg",
  2694. extra: 1.1539
  2695. }
  2696. },
  2697. back: {
  2698. height: math.unit(6, "feet"),
  2699. weight: math.unit(75, "kg"),
  2700. name: "Back",
  2701. image: {
  2702. source: "./media/characters/malik/back.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Macro",
  2709. height: math.unit(156, "feet"),
  2710. default: true
  2711. },
  2712. {
  2713. name: "Macro+",
  2714. height: math.unit(1188, "feet")
  2715. },
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2720. {
  2721. front: {
  2722. height: math.unit(6, "feet"),
  2723. weight: math.unit(75, "kg"),
  2724. name: "Front",
  2725. image: {
  2726. source: "./media/characters/sefer/front.svg",
  2727. extra: 848 / 659,
  2728. bottom: 28.3 / 876.442
  2729. }
  2730. },
  2731. back: {
  2732. height: math.unit(6, "feet"),
  2733. weight: math.unit(75, "kg"),
  2734. name: "Back",
  2735. image: {
  2736. source: "./media/characters/sefer/back.svg",
  2737. extra: 864 / 695,
  2738. bottom: 10 / 871
  2739. }
  2740. },
  2741. frontDressed: {
  2742. height: math.unit(6, "feet"),
  2743. weight: math.unit(75, "kg"),
  2744. name: "Front (Dressed)",
  2745. image: {
  2746. source: "./media/characters/sefer/front-dressed.svg",
  2747. extra: 839 / 653,
  2748. bottom: 37.6 / 878
  2749. }
  2750. },
  2751. },
  2752. [
  2753. {
  2754. name: "Normal",
  2755. height: math.unit(6, "feet"),
  2756. default: true
  2757. },
  2758. ]
  2759. ))
  2760. characterMakers.push(() => makeCharacter(
  2761. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2762. {
  2763. body: {
  2764. height: math.unit(2.2428, "meter"),
  2765. weight: math.unit(124.738, "kg"),
  2766. name: "Body",
  2767. image: {
  2768. extra: 1225 / 1050,
  2769. source: "./media/characters/north/front.svg"
  2770. }
  2771. }
  2772. },
  2773. [
  2774. {
  2775. name: "Micro",
  2776. height: math.unit(4, "inches")
  2777. },
  2778. {
  2779. name: "Macro",
  2780. height: math.unit(63, "meters")
  2781. },
  2782. {
  2783. name: "Megamacro",
  2784. height: math.unit(101, "miles"),
  2785. default: true
  2786. }
  2787. ]
  2788. ))
  2789. characterMakers.push(() => makeCharacter(
  2790. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2791. {
  2792. angled: {
  2793. height: math.unit(4, "meter"),
  2794. weight: math.unit(150, "kg"),
  2795. name: "Angled",
  2796. image: {
  2797. source: "./media/characters/talan/angled-sfw.svg",
  2798. bottom: 29 / 3734
  2799. }
  2800. },
  2801. angledNsfw: {
  2802. height: math.unit(4, "meter"),
  2803. weight: math.unit(150, "kg"),
  2804. name: "Angled (NSFW)",
  2805. image: {
  2806. source: "./media/characters/talan/angled-nsfw.svg",
  2807. bottom: 29 / 3734
  2808. }
  2809. },
  2810. frontNsfw: {
  2811. height: math.unit(4, "meter"),
  2812. weight: math.unit(150, "kg"),
  2813. name: "Front (NSFW)",
  2814. image: {
  2815. source: "./media/characters/talan/front-nsfw.svg",
  2816. bottom: 29 / 3734
  2817. }
  2818. },
  2819. sideNsfw: {
  2820. height: math.unit(4, "meter"),
  2821. weight: math.unit(150, "kg"),
  2822. name: "Side (NSFW)",
  2823. image: {
  2824. source: "./media/characters/talan/side-nsfw.svg",
  2825. bottom: 29 / 3734
  2826. }
  2827. },
  2828. back: {
  2829. height: math.unit(4, "meter"),
  2830. weight: math.unit(150, "kg"),
  2831. name: "Back",
  2832. image: {
  2833. source: "./media/characters/talan/back.svg"
  2834. }
  2835. },
  2836. dickBottom: {
  2837. height: math.unit(0.621, "meter"),
  2838. name: "Dick (Bottom)",
  2839. image: {
  2840. source: "./media/characters/talan/dick-bottom.svg"
  2841. }
  2842. },
  2843. dickTop: {
  2844. height: math.unit(0.621, "meter"),
  2845. name: "Dick (Top)",
  2846. image: {
  2847. source: "./media/characters/talan/dick-top.svg"
  2848. }
  2849. },
  2850. dickSide: {
  2851. height: math.unit(0.305, "meter"),
  2852. name: "Dick (Side)",
  2853. image: {
  2854. source: "./media/characters/talan/dick-side.svg"
  2855. }
  2856. },
  2857. dickFront: {
  2858. height: math.unit(0.305, "meter"),
  2859. name: "Dick (Front)",
  2860. image: {
  2861. source: "./media/characters/talan/dick-front.svg"
  2862. }
  2863. },
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(4, "meters")
  2869. },
  2870. {
  2871. name: "Macro",
  2872. height: math.unit(100, "meters")
  2873. },
  2874. {
  2875. name: "Megamacro",
  2876. height: math.unit(2, "miles"),
  2877. default: true
  2878. },
  2879. {
  2880. name: "Gigamacro",
  2881. height: math.unit(5000, "miles")
  2882. },
  2883. {
  2884. name: "Teramacro",
  2885. height: math.unit(100, "parsecs")
  2886. }
  2887. ]
  2888. ))
  2889. characterMakers.push(() => makeCharacter(
  2890. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2891. {
  2892. front: {
  2893. height: math.unit(2, "meter"),
  2894. weight: math.unit(90, "kg"),
  2895. name: "Front",
  2896. image: {
  2897. source: "./media/characters/gael'rathus/front.svg"
  2898. }
  2899. },
  2900. frontAlt: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(90, "kg"),
  2903. name: "Front (alt)",
  2904. image: {
  2905. source: "./media/characters/gael'rathus/front-alt.svg"
  2906. }
  2907. },
  2908. frontAlt2: {
  2909. height: math.unit(2, "meter"),
  2910. weight: math.unit(90, "kg"),
  2911. name: "Front (alt 2)",
  2912. image: {
  2913. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2914. }
  2915. }
  2916. },
  2917. [
  2918. {
  2919. name: "Normal",
  2920. height: math.unit(9, "feet"),
  2921. default: true
  2922. },
  2923. {
  2924. name: "Large",
  2925. height: math.unit(25, "feet")
  2926. },
  2927. {
  2928. name: "Macro",
  2929. height: math.unit(0.25, "miles")
  2930. },
  2931. {
  2932. name: "Megamacro",
  2933. height: math.unit(10, "miles")
  2934. }
  2935. ]
  2936. ))
  2937. characterMakers.push(() => makeCharacter(
  2938. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2939. {
  2940. side: {
  2941. height: math.unit(2, "meter"),
  2942. weight: math.unit(140, "kg"),
  2943. name: "Side",
  2944. image: {
  2945. source: "./media/characters/sosha/side.svg",
  2946. bottom: 0.042
  2947. }
  2948. },
  2949. },
  2950. [
  2951. {
  2952. name: "Normal",
  2953. height: math.unit(12, "feet"),
  2954. default: true
  2955. }
  2956. ]
  2957. ))
  2958. characterMakers.push(() => makeCharacter(
  2959. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2960. {
  2961. side: {
  2962. height: math.unit(5 + 5 / 12, "feet"),
  2963. weight: math.unit(170, "kg"),
  2964. name: "Side",
  2965. image: {
  2966. source: "./media/characters/runnola/side.svg",
  2967. extra: 741 / 448,
  2968. bottom: 0.05
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Small",
  2975. height: math.unit(3, "feet")
  2976. },
  2977. {
  2978. name: "Normal",
  2979. height: math.unit(5 + 5 / 12, "feet"),
  2980. default: true
  2981. },
  2982. {
  2983. name: "Big",
  2984. height: math.unit(10, "feet")
  2985. },
  2986. ]
  2987. ))
  2988. characterMakers.push(() => makeCharacter(
  2989. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2990. {
  2991. front: {
  2992. height: math.unit(2, "meter"),
  2993. weight: math.unit(50, "kg"),
  2994. name: "Front",
  2995. image: {
  2996. source: "./media/characters/kurribird/front.svg",
  2997. bottom: 0.015
  2998. }
  2999. },
  3000. frontAlt: {
  3001. height: math.unit(1.5, "meter"),
  3002. weight: math.unit(50, "kg"),
  3003. name: "Front (Alt)",
  3004. image: {
  3005. source: "./media/characters/kurribird/front-alt.svg",
  3006. extra: 1.45
  3007. }
  3008. },
  3009. },
  3010. [
  3011. {
  3012. name: "Normal",
  3013. height: math.unit(7, "feet")
  3014. },
  3015. {
  3016. name: "Big",
  3017. height: math.unit(12, "feet"),
  3018. default: true
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(1500, "feet")
  3023. },
  3024. {
  3025. name: "Megamacro",
  3026. height: math.unit(2, "miles")
  3027. }
  3028. ]
  3029. ))
  3030. characterMakers.push(() => makeCharacter(
  3031. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3032. {
  3033. front: {
  3034. height: math.unit(2, "meter"),
  3035. weight: math.unit(80, "kg"),
  3036. name: "Front",
  3037. image: {
  3038. source: "./media/characters/elbial/front.svg",
  3039. extra: 1643 / 1556,
  3040. bottom: 60.2 / 1696
  3041. }
  3042. },
  3043. side: {
  3044. height: math.unit(2, "meter"),
  3045. weight: math.unit(80, "kg"),
  3046. name: "Side",
  3047. image: {
  3048. source: "./media/characters/elbial/side.svg",
  3049. extra: 1630 / 1565,
  3050. bottom: 71.5 / 1697
  3051. }
  3052. },
  3053. back: {
  3054. height: math.unit(2, "meter"),
  3055. weight: math.unit(80, "kg"),
  3056. name: "Back",
  3057. image: {
  3058. source: "./media/characters/elbial/back.svg",
  3059. extra: 1668 / 1595,
  3060. bottom: 5.6 / 1672
  3061. }
  3062. },
  3063. frontDressed: {
  3064. height: math.unit(2, "meter"),
  3065. weight: math.unit(80, "kg"),
  3066. name: "Front (Dressed)",
  3067. image: {
  3068. source: "./media/characters/elbial/front-dressed.svg",
  3069. extra: 1653 / 1584,
  3070. bottom: 57 / 1708
  3071. }
  3072. },
  3073. genitals: {
  3074. height: math.unit(2 / 3.367, "meter"),
  3075. name: "Genitals",
  3076. image: {
  3077. source: "./media/characters/elbial/genitals.svg"
  3078. }
  3079. },
  3080. },
  3081. [
  3082. {
  3083. name: "Large",
  3084. height: math.unit(100, "feet")
  3085. },
  3086. {
  3087. name: "Macro",
  3088. height: math.unit(500, "feet"),
  3089. default: true
  3090. },
  3091. {
  3092. name: "Megamacro",
  3093. height: math.unit(10, "miles")
  3094. },
  3095. {
  3096. name: "Gigamacro",
  3097. height: math.unit(25000, "miles")
  3098. },
  3099. {
  3100. name: "Full-Size",
  3101. height: math.unit(8000000, "gigaparsecs")
  3102. }
  3103. ]
  3104. ))
  3105. characterMakers.push(() => makeCharacter(
  3106. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3107. {
  3108. front: {
  3109. height: math.unit(2, "meter"),
  3110. weight: math.unit(60, "kg"),
  3111. name: "Front",
  3112. image: {
  3113. source: "./media/characters/noah/front.svg"
  3114. }
  3115. },
  3116. talons: {
  3117. height: math.unit(0.315, "meter"),
  3118. name: "Talons",
  3119. image: {
  3120. source: "./media/characters/noah/talons.svg"
  3121. }
  3122. }
  3123. },
  3124. [
  3125. {
  3126. name: "Large",
  3127. height: math.unit(50, "feet")
  3128. },
  3129. {
  3130. name: "Macro",
  3131. height: math.unit(750, "feet"),
  3132. default: true
  3133. },
  3134. {
  3135. name: "Megamacro",
  3136. height: math.unit(50, "miles")
  3137. },
  3138. {
  3139. name: "Gigamacro",
  3140. height: math.unit(100000, "miles")
  3141. },
  3142. {
  3143. name: "Full-Size",
  3144. height: math.unit(3000000000, "miles")
  3145. }
  3146. ]
  3147. ))
  3148. characterMakers.push(() => makeCharacter(
  3149. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3150. {
  3151. front: {
  3152. height: math.unit(2, "meter"),
  3153. weight: math.unit(80, "kg"),
  3154. name: "Front",
  3155. image: {
  3156. source: "./media/characters/natalya/front.svg"
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(2, "meter"),
  3161. weight: math.unit(80, "kg"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/natalya/back.svg"
  3165. }
  3166. }
  3167. },
  3168. [
  3169. {
  3170. name: "Normal",
  3171. height: math.unit(150, "feet"),
  3172. default: true
  3173. },
  3174. {
  3175. name: "Megamacro",
  3176. height: math.unit(5, "miles")
  3177. },
  3178. {
  3179. name: "Full-Size",
  3180. height: math.unit(600, "kiloparsecs")
  3181. }
  3182. ]
  3183. ))
  3184. characterMakers.push(() => makeCharacter(
  3185. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3186. {
  3187. front: {
  3188. height: math.unit(2, "meter"),
  3189. weight: math.unit(50, "kg"),
  3190. name: "Front",
  3191. image: {
  3192. source: "./media/characters/erestrebah/front.svg",
  3193. extra: 208 / 193,
  3194. bottom: 0.055
  3195. }
  3196. },
  3197. back: {
  3198. height: math.unit(2, "meter"),
  3199. weight: math.unit(50, "kg"),
  3200. name: "Back",
  3201. image: {
  3202. source: "./media/characters/erestrebah/back.svg",
  3203. extra: 1.3
  3204. }
  3205. }
  3206. },
  3207. [
  3208. {
  3209. name: "Normal",
  3210. height: math.unit(10, "feet")
  3211. },
  3212. {
  3213. name: "Large",
  3214. height: math.unit(50, "feet"),
  3215. default: true
  3216. },
  3217. {
  3218. name: "Macro",
  3219. height: math.unit(300, "feet")
  3220. },
  3221. {
  3222. name: "Macro+",
  3223. height: math.unit(750, "feet")
  3224. },
  3225. {
  3226. name: "Megamacro",
  3227. height: math.unit(3, "miles")
  3228. }
  3229. ]
  3230. ))
  3231. characterMakers.push(() => makeCharacter(
  3232. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3233. {
  3234. front: {
  3235. height: math.unit(2, "meter"),
  3236. weight: math.unit(80, "kg"),
  3237. name: "Front",
  3238. image: {
  3239. source: "./media/characters/jennifer/front.svg",
  3240. bottom: 0.11,
  3241. extra: 1.16
  3242. }
  3243. },
  3244. frontAlt: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(80, "kg"),
  3247. name: "Front (Alt)",
  3248. image: {
  3249. source: "./media/characters/jennifer/front-alt.svg"
  3250. }
  3251. }
  3252. },
  3253. [
  3254. {
  3255. name: "Canon Height",
  3256. height: math.unit(120, "feet"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Macro+",
  3261. height: math.unit(300, "feet")
  3262. },
  3263. {
  3264. name: "Megamacro",
  3265. height: math.unit(20000, "feet")
  3266. }
  3267. ]
  3268. ))
  3269. characterMakers.push(() => makeCharacter(
  3270. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3271. {
  3272. front: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(50, "kg"),
  3275. name: "Front",
  3276. image: {
  3277. source: "./media/characters/kalista/front.svg",
  3278. extra: 1947 / 1700,
  3279. bottom: 76.6 / 1412.98
  3280. }
  3281. },
  3282. back: {
  3283. height: math.unit(2, "meter"),
  3284. weight: math.unit(50, "kg"),
  3285. name: "Back",
  3286. image: {
  3287. source: "./media/characters/kalista/back.svg",
  3288. extra: 1366 / 1156,
  3289. bottom: 33.9 / 1362.78
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Uncomfortably Small",
  3296. height: math.unit(10, "feet")
  3297. },
  3298. {
  3299. name: "Small",
  3300. height: math.unit(30, "feet")
  3301. },
  3302. {
  3303. name: "Macro",
  3304. height: math.unit(100, "feet"),
  3305. default: true
  3306. },
  3307. {
  3308. name: "Macro+",
  3309. height: math.unit(2000, "feet")
  3310. },
  3311. {
  3312. name: "True Form",
  3313. height: math.unit(8924, "miles")
  3314. }
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3319. {
  3320. front: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(120, "kg"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/ggv/front.svg"
  3326. }
  3327. },
  3328. side: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(120, "kg"),
  3331. name: "Side",
  3332. image: {
  3333. source: "./media/characters/ggv/side.svg"
  3334. }
  3335. }
  3336. },
  3337. [
  3338. {
  3339. name: "Extremely Puny",
  3340. height: math.unit(9 + 5 / 12, "feet")
  3341. },
  3342. {
  3343. name: "Horribly Small",
  3344. height: math.unit(47.7, "miles"),
  3345. default: true
  3346. },
  3347. {
  3348. name: "Reasonably Sized",
  3349. height: math.unit(25000, "parsecs")
  3350. },
  3351. {
  3352. name: "Slightly Uncompressed",
  3353. height: math.unit(7.77e31, "parsecs")
  3354. },
  3355. {
  3356. name: "Omniversal",
  3357. height: math.unit(1e300, "meters")
  3358. },
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3363. {
  3364. front: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(75, "lb"),
  3367. name: "Front",
  3368. image: {
  3369. source: "./media/characters/napalm/front.svg"
  3370. }
  3371. },
  3372. back: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(75, "lb"),
  3375. name: "Back",
  3376. image: {
  3377. source: "./media/characters/napalm/back.svg"
  3378. }
  3379. }
  3380. },
  3381. [
  3382. {
  3383. name: "Standard",
  3384. height: math.unit(55, "feet"),
  3385. default: true
  3386. }
  3387. ]
  3388. ))
  3389. characterMakers.push(() => makeCharacter(
  3390. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3391. {
  3392. front: {
  3393. height: math.unit(7 + 5 / 6, "feet"),
  3394. weight: math.unit(325, "lb"),
  3395. name: "Front",
  3396. image: {
  3397. source: "./media/characters/asana/front.svg",
  3398. extra: 1133 / 1060,
  3399. bottom: 15.2 / 1148.6
  3400. }
  3401. },
  3402. back: {
  3403. height: math.unit(7 + 5 / 6, "feet"),
  3404. weight: math.unit(325, "lb"),
  3405. name: "Back",
  3406. image: {
  3407. source: "./media/characters/asana/back.svg",
  3408. extra: 1114 / 1043,
  3409. bottom: 5 / 1120
  3410. }
  3411. },
  3412. dressedDark: {
  3413. height: math.unit(7 + 5 / 6, "feet"),
  3414. weight: math.unit(325, "lb"),
  3415. name: "Dressed (Dark)",
  3416. image: {
  3417. source: "./media/characters/asana/dressed-dark.svg",
  3418. extra: 1133 / 1060,
  3419. bottom: 15.2 / 1148.6
  3420. }
  3421. },
  3422. dressedLight: {
  3423. height: math.unit(7 + 5 / 6, "feet"),
  3424. weight: math.unit(325, "lb"),
  3425. name: "Dressed (Light)",
  3426. image: {
  3427. source: "./media/characters/asana/dressed-light.svg",
  3428. extra: 1133 / 1060,
  3429. bottom: 15.2 / 1148.6
  3430. }
  3431. },
  3432. },
  3433. [
  3434. {
  3435. name: "Standard",
  3436. height: math.unit(7 + 5 / 6, "feet"),
  3437. default: true
  3438. },
  3439. {
  3440. name: "Large",
  3441. height: math.unit(10, "meters")
  3442. },
  3443. {
  3444. name: "Macro",
  3445. height: math.unit(2500, "meters")
  3446. },
  3447. {
  3448. name: "Megamacro",
  3449. height: math.unit(5e6, "meters")
  3450. },
  3451. {
  3452. name: "Examacro",
  3453. height: math.unit(5e12, "lightyears")
  3454. },
  3455. {
  3456. name: "Max Size",
  3457. height: math.unit(1e31, "lightyears")
  3458. }
  3459. ]
  3460. ))
  3461. characterMakers.push(() => makeCharacter(
  3462. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3463. {
  3464. front: {
  3465. height: math.unit(2, "meter"),
  3466. weight: math.unit(60, "kg"),
  3467. name: "Front",
  3468. image: {
  3469. source: "./media/characters/ebony/front.svg",
  3470. bottom: 0.03,
  3471. extra: 1045 / 810 + 0.03
  3472. }
  3473. },
  3474. side: {
  3475. height: math.unit(2, "meter"),
  3476. weight: math.unit(60, "kg"),
  3477. name: "Side",
  3478. image: {
  3479. source: "./media/characters/ebony/side.svg",
  3480. bottom: 0.03,
  3481. extra: 1045 / 810 + 0.03
  3482. }
  3483. },
  3484. back: {
  3485. height: math.unit(2, "meter"),
  3486. weight: math.unit(60, "kg"),
  3487. name: "Back",
  3488. image: {
  3489. source: "./media/characters/ebony/back.svg",
  3490. bottom: 0.01,
  3491. extra: 1045 / 810 + 0.01
  3492. }
  3493. },
  3494. },
  3495. [
  3496. // TODO check why I did this lol
  3497. {
  3498. name: "Standard",
  3499. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3500. default: true
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(200, "feet")
  3505. },
  3506. {
  3507. name: "Gigamacro",
  3508. height: math.unit(13000, "km")
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(6, "feet"),
  3517. weight: math.unit(175, "lb"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/mountain/front.svg",
  3521. extra: 972 / 955,
  3522. bottom: 64 / 1036.6
  3523. }
  3524. },
  3525. back: {
  3526. height: math.unit(6, "feet"),
  3527. weight: math.unit(175, "lb"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/mountain/back.svg",
  3531. extra: 970 / 950,
  3532. bottom: 28.25 / 999
  3533. }
  3534. },
  3535. },
  3536. [
  3537. {
  3538. name: "Large",
  3539. height: math.unit(20, "meters")
  3540. },
  3541. {
  3542. name: "Macro",
  3543. height: math.unit(300, "meters")
  3544. },
  3545. {
  3546. name: "Gigamacro",
  3547. height: math.unit(10000, "km"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Examacro",
  3552. height: math.unit(10e9, "lightyears")
  3553. }
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(8, "feet"),
  3561. weight: math.unit(500, "lb"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/rick/front.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Normal",
  3571. height: math.unit(8, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Macro",
  3576. height: math.unit(5, "km")
  3577. }
  3578. ]
  3579. ))
  3580. characterMakers.push(() => makeCharacter(
  3581. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3582. {
  3583. front: {
  3584. height: math.unit(8, "feet"),
  3585. weight: math.unit(120, "lb"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/ona/front.svg"
  3589. }
  3590. },
  3591. frontAlt: {
  3592. height: math.unit(8, "feet"),
  3593. weight: math.unit(120, "lb"),
  3594. name: "Front (Alt)",
  3595. image: {
  3596. source: "./media/characters/ona/front-alt.svg"
  3597. }
  3598. },
  3599. back: {
  3600. height: math.unit(8, "feet"),
  3601. weight: math.unit(120, "lb"),
  3602. name: "Back",
  3603. image: {
  3604. source: "./media/characters/ona/back.svg"
  3605. }
  3606. },
  3607. foot: {
  3608. height: math.unit(1.1, "feet"),
  3609. name: "Foot",
  3610. image: {
  3611. source: "./media/characters/ona/foot.svg"
  3612. }
  3613. }
  3614. },
  3615. [
  3616. {
  3617. name: "Megamacro",
  3618. height: math.unit(70, "km"),
  3619. default: true
  3620. },
  3621. {
  3622. name: "Gigamacro",
  3623. height: math.unit(681818, "miles")
  3624. },
  3625. {
  3626. name: "Examacro",
  3627. height: math.unit(3800000, "lightyears")
  3628. },
  3629. ]
  3630. ))
  3631. characterMakers.push(() => makeCharacter(
  3632. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3633. {
  3634. front: {
  3635. height: math.unit(12, "feet"),
  3636. weight: math.unit(3000, "lb"),
  3637. name: "Front",
  3638. image: {
  3639. source: "./media/characters/mech/front.svg",
  3640. extra: 2900 / 2770,
  3641. bottom: 110 / 3010
  3642. }
  3643. },
  3644. back: {
  3645. height: math.unit(12, "feet"),
  3646. weight: math.unit(3000, "lb"),
  3647. name: "Back",
  3648. image: {
  3649. source: "./media/characters/mech/back.svg",
  3650. extra: 3011 / 2890,
  3651. bottom: 94 / 3105
  3652. }
  3653. },
  3654. maw: {
  3655. height: math.unit(3.07, "feet"),
  3656. name: "Maw",
  3657. image: {
  3658. source: "./media/characters/mech/maw.svg"
  3659. }
  3660. },
  3661. head: {
  3662. height: math.unit(2.82, "feet"),
  3663. name: "Head",
  3664. image: {
  3665. source: "./media/characters/mech/head.svg"
  3666. }
  3667. },
  3668. dick: {
  3669. height: math.unit(1.43, "feet"),
  3670. name: "Dick",
  3671. image: {
  3672. source: "./media/characters/mech/dick.svg"
  3673. }
  3674. },
  3675. },
  3676. [
  3677. {
  3678. name: "Normal",
  3679. height: math.unit(12, "feet")
  3680. },
  3681. {
  3682. name: "Macro",
  3683. height: math.unit(300, "feet"),
  3684. default: true
  3685. },
  3686. {
  3687. name: "Macro+",
  3688. height: math.unit(1500, "feet")
  3689. },
  3690. ]
  3691. ))
  3692. characterMakers.push(() => makeCharacter(
  3693. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3694. {
  3695. front: {
  3696. height: math.unit(1.3, "meter"),
  3697. weight: math.unit(30, "kg"),
  3698. name: "Front",
  3699. image: {
  3700. source: "./media/characters/gregory/front.svg",
  3701. }
  3702. }
  3703. },
  3704. [
  3705. {
  3706. name: "Normal",
  3707. height: math.unit(1.3, "meter"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Macro",
  3712. height: math.unit(20, "meter")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(2.8, "meter"),
  3721. weight: math.unit(200, "kg"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/elory/front.svg",
  3725. }
  3726. }
  3727. },
  3728. [
  3729. {
  3730. name: "Normal",
  3731. height: math.unit(2.8, "meter"),
  3732. default: true
  3733. },
  3734. {
  3735. name: "Macro",
  3736. height: math.unit(38, "meter")
  3737. }
  3738. ]
  3739. ))
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3742. {
  3743. front: {
  3744. height: math.unit(470, "feet"),
  3745. weight: math.unit(924, "tons"),
  3746. name: "Front",
  3747. image: {
  3748. source: "./media/characters/angelpatamon/front.svg",
  3749. }
  3750. }
  3751. },
  3752. [
  3753. {
  3754. name: "Normal",
  3755. height: math.unit(470, "feet"),
  3756. default: true
  3757. },
  3758. {
  3759. name: "Deity Size I",
  3760. height: math.unit(28651.2, "km")
  3761. },
  3762. {
  3763. name: "Deity Size II",
  3764. height: math.unit(171907.2, "km")
  3765. }
  3766. ]
  3767. ))
  3768. characterMakers.push(() => makeCharacter(
  3769. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3770. {
  3771. side: {
  3772. height: math.unit(7.2, "meter"),
  3773. weight: math.unit(8.2, "tons"),
  3774. name: "Side",
  3775. image: {
  3776. source: "./media/characters/cryae/side.svg",
  3777. extra: 3500 / 1500
  3778. }
  3779. }
  3780. },
  3781. [
  3782. {
  3783. name: "Normal",
  3784. height: math.unit(7.2, "meter"),
  3785. default: true
  3786. }
  3787. ]
  3788. ))
  3789. characterMakers.push(() => makeCharacter(
  3790. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3791. {
  3792. front: {
  3793. height: math.unit(6, "feet"),
  3794. weight: math.unit(175, "lb"),
  3795. name: "Front",
  3796. image: {
  3797. source: "./media/characters/xera/front.svg",
  3798. extra: 2377 / 1972,
  3799. bottom: 75.5 / 2452
  3800. }
  3801. },
  3802. side: {
  3803. height: math.unit(6, "feet"),
  3804. weight: math.unit(175, "lb"),
  3805. name: "Side",
  3806. image: {
  3807. source: "./media/characters/xera/side.svg",
  3808. extra: 2345 / 2019,
  3809. bottom: 39.7 / 2384
  3810. }
  3811. },
  3812. back: {
  3813. height: math.unit(6, "feet"),
  3814. weight: math.unit(175, "lb"),
  3815. name: "Back",
  3816. image: {
  3817. source: "./media/characters/xera/back.svg",
  3818. extra: 2095 / 1984,
  3819. bottom: 67 / 2166
  3820. }
  3821. },
  3822. },
  3823. [
  3824. {
  3825. name: "Small",
  3826. height: math.unit(10, "feet")
  3827. },
  3828. {
  3829. name: "Macro",
  3830. height: math.unit(500, "meters"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Macro+",
  3835. height: math.unit(10, "km")
  3836. },
  3837. {
  3838. name: "Gigamacro",
  3839. height: math.unit(25000, "km")
  3840. },
  3841. {
  3842. name: "Teramacro",
  3843. height: math.unit(3e6, "km")
  3844. }
  3845. ]
  3846. ))
  3847. characterMakers.push(() => makeCharacter(
  3848. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3849. {
  3850. front: {
  3851. height: math.unit(6, "feet"),
  3852. weight: math.unit(175, "lb"),
  3853. name: "Front",
  3854. image: {
  3855. source: "./media/characters/nebula/front.svg",
  3856. extra: 2566 / 2362,
  3857. bottom: 81 / 2644
  3858. }
  3859. }
  3860. },
  3861. [
  3862. {
  3863. name: "Small",
  3864. height: math.unit(4.5, "meters")
  3865. },
  3866. {
  3867. name: "Macro",
  3868. height: math.unit(1500, "meters"),
  3869. default: true
  3870. },
  3871. {
  3872. name: "Megamacro",
  3873. height: math.unit(150, "km")
  3874. },
  3875. {
  3876. name: "Gigamacro",
  3877. height: math.unit(27000, "km")
  3878. }
  3879. ]
  3880. ))
  3881. characterMakers.push(() => makeCharacter(
  3882. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3883. {
  3884. front: {
  3885. height: math.unit(6, "feet"),
  3886. weight: math.unit(225, "lb"),
  3887. name: "Front",
  3888. image: {
  3889. source: "./media/characters/abysgar/front.svg"
  3890. }
  3891. }
  3892. },
  3893. [
  3894. {
  3895. name: "Small",
  3896. height: math.unit(4.5, "meters")
  3897. },
  3898. {
  3899. name: "Macro",
  3900. height: math.unit(1250, "meters"),
  3901. default: true
  3902. },
  3903. {
  3904. name: "Megamacro",
  3905. height: math.unit(125, "km")
  3906. },
  3907. {
  3908. name: "Gigamacro",
  3909. height: math.unit(26000, "km")
  3910. }
  3911. ]
  3912. ))
  3913. characterMakers.push(() => makeCharacter(
  3914. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3915. {
  3916. front: {
  3917. height: math.unit(6, "feet"),
  3918. weight: math.unit(180, "lb"),
  3919. name: "Front",
  3920. image: {
  3921. source: "./media/characters/yakuz/front.svg"
  3922. }
  3923. }
  3924. },
  3925. [
  3926. {
  3927. name: "Small",
  3928. height: math.unit(5, "meters")
  3929. },
  3930. {
  3931. name: "Macro",
  3932. height: math.unit(1500, "meters"),
  3933. default: true
  3934. },
  3935. {
  3936. name: "Megamacro",
  3937. height: math.unit(200, "km")
  3938. },
  3939. {
  3940. name: "Gigamacro",
  3941. height: math.unit(100000, "km")
  3942. }
  3943. ]
  3944. ))
  3945. characterMakers.push(() => makeCharacter(
  3946. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3947. {
  3948. front: {
  3949. height: math.unit(6, "feet"),
  3950. weight: math.unit(175, "lb"),
  3951. name: "Front",
  3952. image: {
  3953. source: "./media/characters/mirova/front.svg",
  3954. extra: 3334 / 3071,
  3955. bottom: 42 / 3375.6
  3956. }
  3957. }
  3958. },
  3959. [
  3960. {
  3961. name: "Small",
  3962. height: math.unit(5, "meters")
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(900, "meters"),
  3967. default: true
  3968. },
  3969. {
  3970. name: "Megamacro",
  3971. height: math.unit(135, "km")
  3972. },
  3973. {
  3974. name: "Gigamacro",
  3975. height: math.unit(20000, "km")
  3976. }
  3977. ]
  3978. ))
  3979. characterMakers.push(() => makeCharacter(
  3980. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3981. {
  3982. side: {
  3983. height: math.unit(28.35, "feet"),
  3984. weight: math.unit(99.75, "tons"),
  3985. name: "Side",
  3986. image: {
  3987. source: "./media/characters/asana-mech/side.svg",
  3988. extra: 923 / 699,
  3989. bottom: 50 / 975
  3990. }
  3991. },
  3992. chaingun: {
  3993. height: math.unit(7, "feet"),
  3994. weight: math.unit(2400, "lb"),
  3995. name: "Chaingun",
  3996. image: {
  3997. source: "./media/characters/asana-mech/chaingun.svg"
  3998. }
  3999. },
  4000. laser: {
  4001. height: math.unit(7.12, "feet"),
  4002. weight: math.unit(2000, "lb"),
  4003. name: "Laser",
  4004. image: {
  4005. source: "./media/characters/asana-mech/laser.svg"
  4006. }
  4007. },
  4008. },
  4009. [
  4010. {
  4011. name: "Normal",
  4012. height: math.unit(28.35, "feet"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(2500, "feet")
  4018. },
  4019. {
  4020. name: "Megamacro",
  4021. height: math.unit(25, "miles")
  4022. },
  4023. {
  4024. name: "Examacro",
  4025. height: math.unit(6e8, "lightyears")
  4026. },
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4031. {
  4032. front: {
  4033. height: math.unit(5, "meters"),
  4034. weight: math.unit(1000, "kg"),
  4035. name: "Front",
  4036. image: {
  4037. source: "./media/characters/asche/front.svg",
  4038. extra: 1258 / 1190,
  4039. bottom: 47 / 1305
  4040. }
  4041. },
  4042. frontUnderwear: {
  4043. height: math.unit(5, "meters"),
  4044. weight: math.unit(1000, "kg"),
  4045. name: "Front (Underwear)",
  4046. image: {
  4047. source: "./media/characters/asche/front-underwear.svg",
  4048. extra: 1258 / 1190,
  4049. bottom: 47 / 1305
  4050. }
  4051. },
  4052. frontDressed: {
  4053. height: math.unit(5, "meters"),
  4054. weight: math.unit(1000, "kg"),
  4055. name: "Front (Dressed)",
  4056. image: {
  4057. source: "./media/characters/asche/front-dressed.svg",
  4058. extra: 1258 / 1190,
  4059. bottom: 47 / 1305
  4060. }
  4061. },
  4062. frontArmor: {
  4063. height: math.unit(5, "meters"),
  4064. weight: math.unit(1000, "kg"),
  4065. name: "Front (Armored)",
  4066. image: {
  4067. source: "./media/characters/asche/front-armored.svg",
  4068. extra: 1374 / 1308,
  4069. bottom: 23 / 1397
  4070. }
  4071. },
  4072. mp724: {
  4073. height: math.unit(0.96, "meters"),
  4074. weight: math.unit(38, "kg"),
  4075. name: "H&K MP724",
  4076. image: {
  4077. source: "./media/characters/asche/h&k-mp724.svg"
  4078. }
  4079. },
  4080. side: {
  4081. height: math.unit(5, "meters"),
  4082. weight: math.unit(1000, "kg"),
  4083. name: "Side",
  4084. image: {
  4085. source: "./media/characters/asche/side.svg",
  4086. extra: 1717 / 1609,
  4087. bottom: 0.005
  4088. }
  4089. },
  4090. back: {
  4091. height: math.unit(5, "meters"),
  4092. weight: math.unit(1000, "kg"),
  4093. name: "Back",
  4094. image: {
  4095. source: "./media/characters/asche/back.svg",
  4096. extra: 1570 / 1501
  4097. }
  4098. },
  4099. },
  4100. [
  4101. {
  4102. name: "DEFCON 5",
  4103. height: math.unit(5, "meters")
  4104. },
  4105. {
  4106. name: "DEFCON 4",
  4107. height: math.unit(500, "meters"),
  4108. default: true
  4109. },
  4110. {
  4111. name: "DEFCON 3",
  4112. height: math.unit(5, "km")
  4113. },
  4114. {
  4115. name: "DEFCON 2",
  4116. height: math.unit(500, "km")
  4117. },
  4118. {
  4119. name: "DEFCON 1",
  4120. height: math.unit(500000, "km")
  4121. },
  4122. {
  4123. name: "DEFCON 0",
  4124. height: math.unit(3, "gigaparsecs")
  4125. },
  4126. ]
  4127. ))
  4128. characterMakers.push(() => makeCharacter(
  4129. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4130. {
  4131. front: {
  4132. height: math.unit(2, "meters"),
  4133. weight: math.unit(76, "kg"),
  4134. name: "Front",
  4135. image: {
  4136. source: "./media/characters/gale/front.svg"
  4137. }
  4138. },
  4139. frontAlt1: {
  4140. height: math.unit(2, "meters"),
  4141. weight: math.unit(76, "kg"),
  4142. name: "Front (Alt 1)",
  4143. image: {
  4144. source: "./media/characters/gale/front-alt-1.svg"
  4145. }
  4146. },
  4147. frontAlt2: {
  4148. height: math.unit(2, "meters"),
  4149. weight: math.unit(76, "kg"),
  4150. name: "Front (Alt 2)",
  4151. image: {
  4152. source: "./media/characters/gale/front-alt-2.svg"
  4153. }
  4154. },
  4155. },
  4156. [
  4157. {
  4158. name: "Normal",
  4159. height: math.unit(7, "feet")
  4160. },
  4161. {
  4162. name: "Macro",
  4163. height: math.unit(150, "feet"),
  4164. default: true
  4165. },
  4166. {
  4167. name: "Macro+",
  4168. height: math.unit(300, "feet")
  4169. },
  4170. ]
  4171. ))
  4172. characterMakers.push(() => makeCharacter(
  4173. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4174. {
  4175. front: {
  4176. height: math.unit(2, "meters"),
  4177. weight: math.unit(76, "kg"),
  4178. name: "Front",
  4179. image: {
  4180. source: "./media/characters/draylen/front.svg"
  4181. }
  4182. }
  4183. },
  4184. [
  4185. {
  4186. name: "Macro",
  4187. height: math.unit(150, "feet"),
  4188. default: true
  4189. }
  4190. ]
  4191. ))
  4192. characterMakers.push(() => makeCharacter(
  4193. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4194. {
  4195. front: {
  4196. height: math.unit(7 + 9 / 12, "feet"),
  4197. weight: math.unit(379, "lbs"),
  4198. name: "Front",
  4199. image: {
  4200. source: "./media/characters/chez/front.svg"
  4201. }
  4202. },
  4203. side: {
  4204. height: math.unit(7 + 9 / 12, "feet"),
  4205. weight: math.unit(379, "lbs"),
  4206. name: "Side",
  4207. image: {
  4208. source: "./media/characters/chez/side.svg"
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Normal",
  4215. height: math.unit(7 + 9 / 12, "feet"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "God King",
  4220. height: math.unit(9750000, "meters")
  4221. }
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4226. {
  4227. front: {
  4228. height: math.unit(6, "feet"),
  4229. weight: math.unit(275, "lbs"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/kaylum/front.svg",
  4233. bottom: 0.01,
  4234. extra: 1166 / 1031
  4235. }
  4236. },
  4237. frontWingless: {
  4238. height: math.unit(6, "feet"),
  4239. weight: math.unit(275, "lbs"),
  4240. name: "Front (Wingless)",
  4241. image: {
  4242. source: "./media/characters/kaylum/front-wingless.svg",
  4243. bottom: 0.01,
  4244. extra: 1117 / 1031
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Normal",
  4251. height: math.unit(3.05, "meters")
  4252. },
  4253. {
  4254. name: "Master",
  4255. height: math.unit(5.5, "meters")
  4256. },
  4257. {
  4258. name: "Rampage",
  4259. height: math.unit(19, "meters")
  4260. },
  4261. {
  4262. name: "Macro Lite",
  4263. height: math.unit(37, "meters")
  4264. },
  4265. {
  4266. name: "Hyper Predator",
  4267. height: math.unit(61, "meters")
  4268. },
  4269. {
  4270. name: "Macro",
  4271. height: math.unit(138, "meters"),
  4272. default: true
  4273. }
  4274. ]
  4275. ))
  4276. characterMakers.push(() => makeCharacter(
  4277. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4278. {
  4279. front: {
  4280. height: math.unit(6, "feet"),
  4281. weight: math.unit(150, "lbs"),
  4282. name: "Front",
  4283. image: {
  4284. source: "./media/characters/geta/front.svg"
  4285. }
  4286. }
  4287. },
  4288. [
  4289. {
  4290. name: "Micro",
  4291. height: math.unit(3, "inches"),
  4292. default: true
  4293. },
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(5 + 5 / 12, "feet")
  4297. }
  4298. ]
  4299. ))
  4300. characterMakers.push(() => makeCharacter(
  4301. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4302. {
  4303. front: {
  4304. height: math.unit(6, "feet"),
  4305. weight: math.unit(300, "lbs"),
  4306. name: "Front",
  4307. image: {
  4308. source: "./media/characters/tyrnn/front.svg"
  4309. }
  4310. }
  4311. },
  4312. [
  4313. {
  4314. name: "Main Height",
  4315. height: math.unit(355, "feet"),
  4316. default: true
  4317. },
  4318. {
  4319. name: "Fave. Height",
  4320. height: math.unit(2400, "feet")
  4321. }
  4322. ]
  4323. ))
  4324. characterMakers.push(() => makeCharacter(
  4325. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4326. {
  4327. front: {
  4328. height: math.unit(6, "feet"),
  4329. weight: math.unit(300, "lbs"),
  4330. name: "Front",
  4331. image: {
  4332. source: "./media/characters/appledectomy/front.svg"
  4333. }
  4334. }
  4335. },
  4336. [
  4337. {
  4338. name: "Macro",
  4339. height: math.unit(2500, "feet")
  4340. },
  4341. {
  4342. name: "Megamacro",
  4343. height: math.unit(50, "miles"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Gigamacro",
  4348. height: math.unit(5000, "miles")
  4349. },
  4350. {
  4351. name: "Teramacro",
  4352. height: math.unit(250000, "miles")
  4353. },
  4354. ]
  4355. ))
  4356. characterMakers.push(() => makeCharacter(
  4357. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4358. {
  4359. front: {
  4360. height: math.unit(6, "feet"),
  4361. weight: math.unit(200, "lbs"),
  4362. name: "Front",
  4363. image: {
  4364. source: "./media/characters/vulpes/front.svg",
  4365. extra: 573 / 543,
  4366. bottom: 0.033
  4367. }
  4368. },
  4369. side: {
  4370. height: math.unit(6, "feet"),
  4371. weight: math.unit(200, "lbs"),
  4372. name: "Side",
  4373. image: {
  4374. source: "./media/characters/vulpes/side.svg",
  4375. extra: 577 / 549,
  4376. bottom: 11 / 588
  4377. }
  4378. },
  4379. back: {
  4380. height: math.unit(6, "feet"),
  4381. weight: math.unit(200, "lbs"),
  4382. name: "Back",
  4383. image: {
  4384. source: "./media/characters/vulpes/back.svg",
  4385. extra: 573 / 549,
  4386. bottom: 20 / 593
  4387. }
  4388. },
  4389. feet: {
  4390. height: math.unit(1.276, "feet"),
  4391. name: "Feet",
  4392. image: {
  4393. source: "./media/characters/vulpes/feet.svg"
  4394. }
  4395. },
  4396. maw: {
  4397. height: math.unit(1.18, "feet"),
  4398. name: "Maw",
  4399. image: {
  4400. source: "./media/characters/vulpes/maw.svg"
  4401. }
  4402. },
  4403. },
  4404. [
  4405. {
  4406. name: "Micro",
  4407. height: math.unit(2, "inches")
  4408. },
  4409. {
  4410. name: "Normal",
  4411. height: math.unit(6.3, "feet")
  4412. },
  4413. {
  4414. name: "Macro",
  4415. height: math.unit(850, "feet")
  4416. },
  4417. {
  4418. name: "Megamacro",
  4419. height: math.unit(7500, "feet"),
  4420. default: true
  4421. },
  4422. {
  4423. name: "Gigamacro",
  4424. height: math.unit(570000, "miles")
  4425. }
  4426. ]
  4427. ))
  4428. characterMakers.push(() => makeCharacter(
  4429. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4430. {
  4431. front: {
  4432. height: math.unit(6, "feet"),
  4433. weight: math.unit(210, "lbs"),
  4434. name: "Front",
  4435. image: {
  4436. source: "./media/characters/rain-fallen/front.svg"
  4437. }
  4438. },
  4439. side: {
  4440. height: math.unit(6, "feet"),
  4441. weight: math.unit(210, "lbs"),
  4442. name: "Side",
  4443. image: {
  4444. source: "./media/characters/rain-fallen/side.svg"
  4445. }
  4446. },
  4447. back: {
  4448. height: math.unit(6, "feet"),
  4449. weight: math.unit(210, "lbs"),
  4450. name: "Back",
  4451. image: {
  4452. source: "./media/characters/rain-fallen/back.svg"
  4453. }
  4454. },
  4455. feral: {
  4456. height: math.unit(9, "feet"),
  4457. weight: math.unit(700, "lbs"),
  4458. name: "Feral",
  4459. image: {
  4460. source: "./media/characters/rain-fallen/feral.svg"
  4461. }
  4462. },
  4463. },
  4464. [
  4465. {
  4466. name: "Meddling with Mortals",
  4467. height: math.unit(8 + 8/12, "feet")
  4468. },
  4469. {
  4470. name: "Normal",
  4471. height: math.unit(5, "meter")
  4472. },
  4473. {
  4474. name: "Macro",
  4475. height: math.unit(150, "meter"),
  4476. default: true
  4477. },
  4478. {
  4479. name: "Megamacro",
  4480. height: math.unit(278e6, "meter")
  4481. },
  4482. {
  4483. name: "Gigamacro",
  4484. height: math.unit(2e9, "meter")
  4485. },
  4486. {
  4487. name: "Teramacro",
  4488. height: math.unit(8e12, "meter")
  4489. },
  4490. {
  4491. name: "Devourer",
  4492. height: math.unit(14, "zettameters")
  4493. },
  4494. {
  4495. name: "Scarlet King",
  4496. height: math.unit(18, "yottameters")
  4497. },
  4498. {
  4499. name: "Void",
  4500. height: math.unit(1e88, "yottameters")
  4501. }
  4502. ]
  4503. ))
  4504. characterMakers.push(() => makeCharacter(
  4505. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4506. {
  4507. standing: {
  4508. height: math.unit(6, "feet"),
  4509. weight: math.unit(180, "lbs"),
  4510. name: "Standing",
  4511. image: {
  4512. source: "./media/characters/zaakira/standing.svg"
  4513. }
  4514. },
  4515. laying: {
  4516. height: math.unit(3, "feet"),
  4517. weight: math.unit(180, "lbs"),
  4518. name: "Laying",
  4519. image: {
  4520. source: "./media/characters/zaakira/laying.svg"
  4521. }
  4522. },
  4523. },
  4524. [
  4525. {
  4526. name: "Normal",
  4527. height: math.unit(12, "feet")
  4528. },
  4529. {
  4530. name: "Macro",
  4531. height: math.unit(279, "feet"),
  4532. default: true
  4533. }
  4534. ]
  4535. ))
  4536. characterMakers.push(() => makeCharacter(
  4537. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4538. {
  4539. femSfw: {
  4540. height: math.unit(8, "feet"),
  4541. weight: math.unit(350, "lb"),
  4542. name: "Fem",
  4543. image: {
  4544. source: "./media/characters/sigvald/fem-sfw.svg",
  4545. extra: 182 / 164,
  4546. bottom: 8.7 / 190.5
  4547. }
  4548. },
  4549. femNsfw: {
  4550. height: math.unit(8, "feet"),
  4551. weight: math.unit(350, "lb"),
  4552. name: "Fem (NSFW)",
  4553. image: {
  4554. source: "./media/characters/sigvald/fem-nsfw.svg",
  4555. extra: 182 / 164,
  4556. bottom: 8.7 / 190.5
  4557. }
  4558. },
  4559. maleNsfw: {
  4560. height: math.unit(8, "feet"),
  4561. weight: math.unit(350, "lb"),
  4562. name: "Male (NSFW)",
  4563. image: {
  4564. source: "./media/characters/sigvald/male-nsfw.svg",
  4565. extra: 182 / 164,
  4566. bottom: 8.7 / 190.5
  4567. }
  4568. },
  4569. hermNsfw: {
  4570. height: math.unit(8, "feet"),
  4571. weight: math.unit(350, "lb"),
  4572. name: "Herm (NSFW)",
  4573. image: {
  4574. source: "./media/characters/sigvald/herm-nsfw.svg",
  4575. extra: 182 / 164,
  4576. bottom: 8.7 / 190.5
  4577. }
  4578. },
  4579. dick: {
  4580. height: math.unit(2.36, "feet"),
  4581. name: "Dick",
  4582. image: {
  4583. source: "./media/characters/sigvald/dick.svg"
  4584. }
  4585. },
  4586. eye: {
  4587. height: math.unit(0.31, "feet"),
  4588. name: "Eye",
  4589. image: {
  4590. source: "./media/characters/sigvald/eye.svg"
  4591. }
  4592. },
  4593. mouth: {
  4594. height: math.unit(0.92, "feet"),
  4595. name: "Mouth",
  4596. image: {
  4597. source: "./media/characters/sigvald/mouth.svg"
  4598. }
  4599. },
  4600. paws: {
  4601. height: math.unit(2.2, "feet"),
  4602. name: "Paws",
  4603. image: {
  4604. source: "./media/characters/sigvald/paws.svg"
  4605. }
  4606. }
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(8, "feet")
  4612. },
  4613. {
  4614. name: "Large",
  4615. height: math.unit(12, "feet")
  4616. },
  4617. {
  4618. name: "Larger",
  4619. height: math.unit(20, "feet")
  4620. },
  4621. {
  4622. name: "Macro",
  4623. height: math.unit(150, "feet")
  4624. },
  4625. {
  4626. name: "Macro+",
  4627. height: math.unit(200, "feet"),
  4628. default: true
  4629. },
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4634. {
  4635. side: {
  4636. height: math.unit(12, "feet"),
  4637. weight: math.unit(2000, "kg"),
  4638. name: "Side",
  4639. image: {
  4640. source: "./media/characters/scott/side.svg",
  4641. extra: 754 / 724,
  4642. bottom: 0.069
  4643. }
  4644. },
  4645. upright: {
  4646. height: math.unit(12, "feet"),
  4647. weight: math.unit(2000, "kg"),
  4648. name: "Upright",
  4649. image: {
  4650. source: "./media/characters/scott/upright.svg",
  4651. extra: 3881 / 3722,
  4652. bottom: 0.05
  4653. }
  4654. },
  4655. },
  4656. [
  4657. {
  4658. name: "Normal",
  4659. height: math.unit(12, "feet"),
  4660. default: true
  4661. },
  4662. ]
  4663. ))
  4664. characterMakers.push(() => makeCharacter(
  4665. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4666. {
  4667. side: {
  4668. height: math.unit(8, "meters"),
  4669. weight: math.unit(84755, "lbs"),
  4670. name: "Side",
  4671. image: {
  4672. source: "./media/characters/tobias/side.svg",
  4673. extra: 1474 / 1096,
  4674. bottom: 38.9 / 1513.1235
  4675. }
  4676. },
  4677. },
  4678. [
  4679. {
  4680. name: "Normal",
  4681. height: math.unit(8, "meters"),
  4682. default: true
  4683. },
  4684. ]
  4685. ))
  4686. characterMakers.push(() => makeCharacter(
  4687. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4688. {
  4689. front: {
  4690. height: math.unit(5.5, "feet"),
  4691. weight: math.unit(400, "lbs"),
  4692. name: "Front",
  4693. image: {
  4694. source: "./media/characters/kieran/front.svg",
  4695. extra: 2694 / 2364,
  4696. bottom: 217 / 2908
  4697. }
  4698. },
  4699. side: {
  4700. height: math.unit(5.5, "feet"),
  4701. weight: math.unit(400, "lbs"),
  4702. name: "Side",
  4703. image: {
  4704. source: "./media/characters/kieran/side.svg",
  4705. extra: 875 / 777,
  4706. bottom: 84.6 / 959
  4707. }
  4708. },
  4709. },
  4710. [
  4711. {
  4712. name: "Normal",
  4713. height: math.unit(5.5, "feet"),
  4714. default: true
  4715. },
  4716. ]
  4717. ))
  4718. characterMakers.push(() => makeCharacter(
  4719. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4720. {
  4721. side: {
  4722. height: math.unit(2, "meters"),
  4723. weight: math.unit(70, "kg"),
  4724. name: "Side",
  4725. image: {
  4726. source: "./media/characters/sanya/side.svg",
  4727. bottom: 0.02,
  4728. extra: 1.02
  4729. }
  4730. },
  4731. },
  4732. [
  4733. {
  4734. name: "Small",
  4735. height: math.unit(2, "meters")
  4736. },
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(3, "meters")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(16, "meters"),
  4744. default: true
  4745. },
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(2, "meters"),
  4753. weight: math.unit(120, "kg"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/miranda/front.svg",
  4757. extra: 195 / 185,
  4758. bottom: 10.9 / 206.5
  4759. }
  4760. },
  4761. back: {
  4762. height: math.unit(2, "meters"),
  4763. weight: math.unit(120, "kg"),
  4764. name: "Back",
  4765. image: {
  4766. source: "./media/characters/miranda/back.svg",
  4767. extra: 201 / 193,
  4768. bottom: 2.3 / 203.7
  4769. }
  4770. },
  4771. },
  4772. [
  4773. {
  4774. name: "Normal",
  4775. height: math.unit(10, "feet"),
  4776. default: true
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "James", species: ["deer"], tags: ["anthro"] },
  4782. {
  4783. side: {
  4784. height: math.unit(2, "meters"),
  4785. weight: math.unit(100, "kg"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/james/front.svg",
  4789. extra: 10 / 8.5
  4790. }
  4791. },
  4792. },
  4793. [
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(8.5, "feet"),
  4797. default: true
  4798. }
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4803. {
  4804. side: {
  4805. height: math.unit(9.5, "feet"),
  4806. weight: math.unit(2500, "lbs"),
  4807. name: "Side",
  4808. image: {
  4809. source: "./media/characters/heather/side.svg"
  4810. }
  4811. },
  4812. },
  4813. [
  4814. {
  4815. name: "Normal",
  4816. height: math.unit(9.5, "feet"),
  4817. default: true
  4818. }
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4823. {
  4824. side: {
  4825. height: math.unit(6.5, "feet"),
  4826. weight: math.unit(400, "lbs"),
  4827. name: "Side",
  4828. image: {
  4829. source: "./media/characters/lukas/side.svg",
  4830. extra: 7.25 / 6.5
  4831. }
  4832. },
  4833. },
  4834. [
  4835. {
  4836. name: "Normal",
  4837. height: math.unit(6.5, "feet"),
  4838. default: true
  4839. }
  4840. ]
  4841. ))
  4842. characterMakers.push(() => makeCharacter(
  4843. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4844. {
  4845. side: {
  4846. height: math.unit(5, "feet"),
  4847. weight: math.unit(3000, "lbs"),
  4848. name: "Side",
  4849. image: {
  4850. source: "./media/characters/louise/side.svg"
  4851. }
  4852. },
  4853. },
  4854. [
  4855. {
  4856. name: "Normal",
  4857. height: math.unit(5, "feet"),
  4858. default: true
  4859. }
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4864. {
  4865. side: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(150, "lbs"),
  4868. name: "Side",
  4869. image: {
  4870. source: "./media/characters/ramona/side.svg"
  4871. }
  4872. },
  4873. },
  4874. [
  4875. {
  4876. name: "Normal",
  4877. height: math.unit(5.3, "meters"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "Macro",
  4882. height: math.unit(20, "stories")
  4883. },
  4884. {
  4885. name: "Macro+",
  4886. height: math.unit(50, "stories")
  4887. },
  4888. ]
  4889. ))
  4890. characterMakers.push(() => makeCharacter(
  4891. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4892. {
  4893. standing: {
  4894. height: math.unit(5.75, "feet"),
  4895. weight: math.unit(160, "lbs"),
  4896. name: "Standing",
  4897. image: {
  4898. source: "./media/characters/deerpuff/standing.svg",
  4899. extra: 682 / 624
  4900. }
  4901. },
  4902. sitting: {
  4903. height: math.unit(5.75 / 1.79, "feet"),
  4904. weight: math.unit(160, "lbs"),
  4905. name: "Sitting",
  4906. image: {
  4907. source: "./media/characters/deerpuff/sitting.svg",
  4908. bottom: 44 / 400,
  4909. extra: 1
  4910. }
  4911. },
  4912. taurLaying: {
  4913. height: math.unit(6, "feet"),
  4914. weight: math.unit(400, "lbs"),
  4915. name: "Taur (Laying)",
  4916. image: {
  4917. source: "./media/characters/deerpuff/taur-laying.svg"
  4918. }
  4919. },
  4920. },
  4921. [
  4922. {
  4923. name: "Puffball",
  4924. height: math.unit(6, "inches")
  4925. },
  4926. {
  4927. name: "Normalpuff",
  4928. height: math.unit(5.75, "feet")
  4929. },
  4930. {
  4931. name: "Macropuff",
  4932. height: math.unit(1500, "feet"),
  4933. default: true
  4934. },
  4935. {
  4936. name: "Megapuff",
  4937. height: math.unit(500, "miles")
  4938. },
  4939. {
  4940. name: "Gigapuff",
  4941. height: math.unit(250000, "miles")
  4942. },
  4943. {
  4944. name: "Omegapuff",
  4945. height: math.unit(1000, "lightyears")
  4946. },
  4947. ]
  4948. ))
  4949. characterMakers.push(() => makeCharacter(
  4950. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4951. {
  4952. stomping: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(170, "lbs"),
  4955. name: "Stomping",
  4956. image: {
  4957. source: "./media/characters/vivian/stomping.svg"
  4958. }
  4959. },
  4960. sitting: {
  4961. height: math.unit(6 / 1.75, "feet"),
  4962. weight: math.unit(170, "lbs"),
  4963. name: "Sitting",
  4964. image: {
  4965. source: "./media/characters/vivian/sitting.svg",
  4966. bottom: 1 / 6.4,
  4967. extra: 1,
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "Normal",
  4974. height: math.unit(7, "feet"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro",
  4979. height: math.unit(10, "stories")
  4980. },
  4981. {
  4982. name: "Macro+",
  4983. height: math.unit(30, "stories")
  4984. },
  4985. {
  4986. name: "Megamacro",
  4987. height: math.unit(10, "miles")
  4988. },
  4989. {
  4990. name: "Megamacro+",
  4991. height: math.unit(2750000, "meters")
  4992. },
  4993. ]
  4994. ))
  4995. characterMakers.push(() => makeCharacter(
  4996. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4997. {
  4998. front: {
  4999. height: math.unit(6, "feet"),
  5000. weight: math.unit(160, "lbs"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/prince/front.svg",
  5004. extra: 3400 / 3000
  5005. }
  5006. },
  5007. jumping: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(160, "lbs"),
  5010. name: "Jumping",
  5011. image: {
  5012. source: "./media/characters/prince/jump.svg",
  5013. extra: 2555 / 2134
  5014. }
  5015. },
  5016. },
  5017. [
  5018. {
  5019. name: "Normal",
  5020. height: math.unit(7.75, "feet"),
  5021. default: true
  5022. },
  5023. {
  5024. name: "Not cute",
  5025. height: math.unit(17, "feet")
  5026. },
  5027. {
  5028. name: "I said NOT",
  5029. height: math.unit(91, "feet")
  5030. },
  5031. {
  5032. name: "Please stop",
  5033. height: math.unit(560, "feet")
  5034. },
  5035. {
  5036. name: "What have you done",
  5037. height: math.unit(2200, "feet")
  5038. },
  5039. {
  5040. name: "Deer God",
  5041. height: math.unit(3.6, "miles")
  5042. },
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5047. {
  5048. standing: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(300, "lbs"),
  5051. name: "Standing",
  5052. image: {
  5053. source: "./media/characters/psymon/standing.svg",
  5054. extra: 1888 / 1810,
  5055. bottom: 0.05
  5056. }
  5057. },
  5058. slithering: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(300, "lbs"),
  5061. name: "Slithering",
  5062. image: {
  5063. source: "./media/characters/psymon/slithering.svg",
  5064. extra: 1330 / 1224
  5065. }
  5066. },
  5067. slitheringAlt: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(300, "lbs"),
  5070. name: "Slithering (Alt)",
  5071. image: {
  5072. source: "./media/characters/psymon/slithering-alt.svg",
  5073. extra: 1330 / 1224
  5074. }
  5075. },
  5076. },
  5077. [
  5078. {
  5079. name: "Normal",
  5080. height: math.unit(11.25, "feet"),
  5081. default: true
  5082. },
  5083. {
  5084. name: "Large",
  5085. height: math.unit(27, "feet")
  5086. },
  5087. {
  5088. name: "Giant",
  5089. height: math.unit(87, "feet")
  5090. },
  5091. {
  5092. name: "Macro",
  5093. height: math.unit(365, "feet")
  5094. },
  5095. {
  5096. name: "Megamacro",
  5097. height: math.unit(3, "miles")
  5098. },
  5099. {
  5100. name: "World Serpent",
  5101. height: math.unit(8000, "miles")
  5102. },
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(6, "feet"),
  5110. weight: math.unit(180, "lbs"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/daimos/front.svg",
  5114. extra: 4160 / 3897,
  5115. bottom: 0.021
  5116. }
  5117. }
  5118. },
  5119. [
  5120. {
  5121. name: "Normal",
  5122. height: math.unit(8, "feet"),
  5123. default: true
  5124. },
  5125. {
  5126. name: "Big Dog",
  5127. height: math.unit(22, "feet")
  5128. },
  5129. {
  5130. name: "Macro",
  5131. height: math.unit(127, "feet")
  5132. },
  5133. {
  5134. name: "Megamacro",
  5135. height: math.unit(3600, "feet")
  5136. },
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5141. {
  5142. side: {
  5143. height: math.unit(6, "feet"),
  5144. weight: math.unit(180, "lbs"),
  5145. name: "Side",
  5146. image: {
  5147. source: "./media/characters/blake/side.svg",
  5148. extra: 1212 / 1120,
  5149. bottom: 0.05
  5150. }
  5151. },
  5152. crouched: {
  5153. height: math.unit(6 * 0.57, "feet"),
  5154. weight: math.unit(180, "lbs"),
  5155. name: "Crouched",
  5156. image: {
  5157. source: "./media/characters/blake/crouched.svg",
  5158. extra: 840 / 587,
  5159. bottom: 0.04
  5160. }
  5161. },
  5162. bent: {
  5163. height: math.unit(6 * 0.75, "feet"),
  5164. weight: math.unit(180, "lbs"),
  5165. name: "Bent",
  5166. image: {
  5167. source: "./media/characters/blake/bent.svg",
  5168. extra: 592 / 544,
  5169. bottom: 0.035
  5170. }
  5171. },
  5172. },
  5173. [
  5174. {
  5175. name: "Normal",
  5176. height: math.unit(8 + 1 / 6, "feet"),
  5177. default: true
  5178. },
  5179. {
  5180. name: "Big Backside",
  5181. height: math.unit(37, "feet")
  5182. },
  5183. {
  5184. name: "Subway Shredder",
  5185. height: math.unit(72, "feet")
  5186. },
  5187. {
  5188. name: "City Carver",
  5189. height: math.unit(1675, "feet")
  5190. },
  5191. {
  5192. name: "Tectonic Tweaker",
  5193. height: math.unit(2300, "miles")
  5194. },
  5195. ]
  5196. ))
  5197. characterMakers.push(() => makeCharacter(
  5198. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5199. {
  5200. front: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(180, "lbs"),
  5203. name: "Front",
  5204. image: {
  5205. source: "./media/characters/guisetto/front.svg",
  5206. extra: 856 / 817,
  5207. bottom: 0.06
  5208. }
  5209. },
  5210. airborne: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(180, "lbs"),
  5213. name: "Airborne",
  5214. image: {
  5215. source: "./media/characters/guisetto/airborne.svg",
  5216. extra: 584 / 525
  5217. }
  5218. },
  5219. },
  5220. [
  5221. {
  5222. name: "Normal",
  5223. height: math.unit(10 + 11 / 12, "feet"),
  5224. default: true
  5225. },
  5226. {
  5227. name: "Large",
  5228. height: math.unit(35, "feet")
  5229. },
  5230. {
  5231. name: "Macro",
  5232. height: math.unit(475, "feet")
  5233. },
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5238. {
  5239. front: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(180, "lbs"),
  5242. name: "Front",
  5243. image: {
  5244. source: "./media/characters/luxor/front.svg",
  5245. extra: 2940 / 2152
  5246. }
  5247. },
  5248. back: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(180, "lbs"),
  5251. name: "Back",
  5252. image: {
  5253. source: "./media/characters/luxor/back.svg",
  5254. extra: 1083 / 960
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(5 + 5 / 6, "feet"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Lamp",
  5266. height: math.unit(50, "feet")
  5267. },
  5268. {
  5269. name: "Lämp",
  5270. height: math.unit(300, "feet")
  5271. },
  5272. {
  5273. name: "The sun is a lamp",
  5274. height: math.unit(250000, "miles")
  5275. },
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5280. {
  5281. front: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(50, "lbs"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/huoyan/front.svg"
  5287. }
  5288. },
  5289. side: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(180, "lbs"),
  5292. name: "Side",
  5293. image: {
  5294. source: "./media/characters/huoyan/side.svg"
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Chef",
  5301. height: math.unit(9, "feet")
  5302. },
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(65, "feet"),
  5306. default: true
  5307. },
  5308. {
  5309. name: "Macro",
  5310. height: math.unit(780, "feet")
  5311. },
  5312. {
  5313. name: "Flaming Mountain",
  5314. height: math.unit(4.8, "miles")
  5315. },
  5316. {
  5317. name: "Celestial",
  5318. height: math.unit(765000, "miles")
  5319. },
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(5 + 3 / 4, "feet"),
  5327. weight: math.unit(120, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/tails/front.svg"
  5331. }
  5332. }
  5333. },
  5334. [
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(5 + 3 / 4, "feet"),
  5338. default: true
  5339. }
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5344. {
  5345. front: {
  5346. height: math.unit(4, "feet"),
  5347. weight: math.unit(50, "lbs"),
  5348. name: "Front",
  5349. image: {
  5350. source: "./media/characters/rainy/front.svg"
  5351. }
  5352. }
  5353. },
  5354. [
  5355. {
  5356. name: "Macro",
  5357. height: math.unit(800, "feet"),
  5358. default: true
  5359. }
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(150, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/rainier/front.svg"
  5371. }
  5372. }
  5373. },
  5374. [
  5375. {
  5376. name: "Micro",
  5377. height: math.unit(2, "mm"),
  5378. default: true
  5379. }
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5384. {
  5385. front: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(180, "lbs"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/andy/front.svg"
  5391. }
  5392. }
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(8, "feet"),
  5398. default: true
  5399. },
  5400. {
  5401. name: "Macro",
  5402. height: math.unit(1000, "feet")
  5403. },
  5404. {
  5405. name: "Megamacro",
  5406. height: math.unit(5, "miles")
  5407. },
  5408. {
  5409. name: "Gigamacro",
  5410. height: math.unit(5000, "miles")
  5411. },
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5416. {
  5417. front: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(210, "lbs"),
  5420. name: "Front",
  5421. image: {
  5422. source: "./media/characters/cimmaron/front-sfw.svg",
  5423. extra: 701 / 676,
  5424. bottom: 0.046
  5425. }
  5426. },
  5427. back: {
  5428. height: math.unit(6, "feet"),
  5429. weight: math.unit(210, "lbs"),
  5430. name: "Back",
  5431. image: {
  5432. source: "./media/characters/cimmaron/back-sfw.svg",
  5433. extra: 701 / 676,
  5434. bottom: 0.046
  5435. }
  5436. },
  5437. frontNsfw: {
  5438. height: math.unit(6, "feet"),
  5439. weight: math.unit(210, "lbs"),
  5440. name: "Front (NSFW)",
  5441. image: {
  5442. source: "./media/characters/cimmaron/front-nsfw.svg",
  5443. extra: 701 / 676,
  5444. bottom: 0.046
  5445. }
  5446. },
  5447. backNsfw: {
  5448. height: math.unit(6, "feet"),
  5449. weight: math.unit(210, "lbs"),
  5450. name: "Back (NSFW)",
  5451. image: {
  5452. source: "./media/characters/cimmaron/back-nsfw.svg",
  5453. extra: 701 / 676,
  5454. bottom: 0.046
  5455. }
  5456. },
  5457. dick: {
  5458. height: math.unit(1.714, "feet"),
  5459. name: "Dick",
  5460. image: {
  5461. source: "./media/characters/cimmaron/dick.svg"
  5462. }
  5463. },
  5464. },
  5465. [
  5466. {
  5467. name: "Normal",
  5468. height: math.unit(6, "feet"),
  5469. default: true
  5470. },
  5471. {
  5472. name: "Macro Mayor",
  5473. height: math.unit(350, "meters")
  5474. },
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5479. {
  5480. front: {
  5481. height: math.unit(6, "feet"),
  5482. weight: math.unit(200, "lbs"),
  5483. name: "Front",
  5484. image: {
  5485. source: "./media/characters/akari/front.svg",
  5486. extra: 962 / 901,
  5487. bottom: 0.04
  5488. }
  5489. }
  5490. },
  5491. [
  5492. {
  5493. name: "Micro",
  5494. height: math.unit(5, "inches"),
  5495. default: true
  5496. },
  5497. {
  5498. name: "Normal",
  5499. height: math.unit(7, "feet")
  5500. },
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5505. {
  5506. front: {
  5507. height: math.unit(6, "feet"),
  5508. weight: math.unit(140, "lbs"),
  5509. name: "Front",
  5510. image: {
  5511. source: "./media/characters/cynosura/front.svg",
  5512. extra: 896 / 847
  5513. }
  5514. },
  5515. back: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(140, "lbs"),
  5518. name: "Back",
  5519. image: {
  5520. source: "./media/characters/cynosura/back.svg",
  5521. extra: 1365 / 1250
  5522. }
  5523. },
  5524. },
  5525. [
  5526. {
  5527. name: "Micro",
  5528. height: math.unit(4, "inches")
  5529. },
  5530. {
  5531. name: "Normal",
  5532. height: math.unit(5.75, "feet"),
  5533. default: true
  5534. },
  5535. {
  5536. name: "Tall",
  5537. height: math.unit(10, "feet")
  5538. },
  5539. {
  5540. name: "Big",
  5541. height: math.unit(20, "feet")
  5542. },
  5543. {
  5544. name: "Macro",
  5545. height: math.unit(50, "feet")
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5551. {
  5552. front: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(170, "lbs"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/gin/front.svg",
  5558. extra: 1.053,
  5559. bottom: 0.025
  5560. }
  5561. },
  5562. foot: {
  5563. height: math.unit(6 / 4.25, "feet"),
  5564. name: "Foot",
  5565. image: {
  5566. source: "./media/characters/gin/foot.svg"
  5567. }
  5568. },
  5569. sole: {
  5570. height: math.unit(6 / 4.40, "feet"),
  5571. name: "Sole",
  5572. image: {
  5573. source: "./media/characters/gin/sole.svg"
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(13 + 2 / 12, "feet")
  5581. },
  5582. {
  5583. name: "Macro",
  5584. height: math.unit(1500, "feet")
  5585. },
  5586. {
  5587. name: "Megamacro",
  5588. height: math.unit(200, "miles"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Gigamacro",
  5593. height: math.unit(500, "megameters")
  5594. },
  5595. {
  5596. name: "Teramacro",
  5597. height: math.unit(15, "lightyears")
  5598. }
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6 + 1 / 6, "feet"),
  5606. weight: math.unit(178, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/guy/front.svg"
  5610. }
  5611. }
  5612. },
  5613. [
  5614. {
  5615. name: "Normal",
  5616. height: math.unit(6 + 1 / 6, "feet"),
  5617. default: true
  5618. },
  5619. {
  5620. name: "Large",
  5621. height: math.unit(25 + 7 / 12, "feet")
  5622. },
  5623. {
  5624. name: "Macro",
  5625. height: math.unit(60 + 9 / 12, "feet")
  5626. },
  5627. {
  5628. name: "Macro+",
  5629. height: math.unit(246, "feet")
  5630. },
  5631. {
  5632. name: "Macro++",
  5633. height: math.unit(878, "feet")
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(9, "feet"),
  5642. weight: math.unit(800, "lbs"),
  5643. name: "Front",
  5644. image: {
  5645. source: "./media/characters/tiberius/front.svg",
  5646. extra: 2295 / 2071
  5647. }
  5648. },
  5649. back: {
  5650. height: math.unit(9, "feet"),
  5651. weight: math.unit(800, "lbs"),
  5652. name: "Back",
  5653. image: {
  5654. source: "./media/characters/tiberius/back.svg",
  5655. extra: 2373 / 2160
  5656. }
  5657. },
  5658. },
  5659. [
  5660. {
  5661. name: "Normal",
  5662. height: math.unit(9, "feet"),
  5663. default: true
  5664. }
  5665. ]
  5666. ))
  5667. characterMakers.push(() => makeCharacter(
  5668. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5669. {
  5670. front: {
  5671. height: math.unit(6, "feet"),
  5672. weight: math.unit(600, "lbs"),
  5673. name: "Front",
  5674. image: {
  5675. source: "./media/characters/surgo/front.svg",
  5676. extra: 3591 / 2227
  5677. }
  5678. },
  5679. back: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(600, "lbs"),
  5682. name: "Back",
  5683. image: {
  5684. source: "./media/characters/surgo/back.svg",
  5685. extra: 3557 / 2228
  5686. }
  5687. },
  5688. laying: {
  5689. height: math.unit(6 * 0.85, "feet"),
  5690. weight: math.unit(600, "lbs"),
  5691. name: "Laying",
  5692. image: {
  5693. source: "./media/characters/surgo/laying.svg"
  5694. }
  5695. },
  5696. },
  5697. [
  5698. {
  5699. name: "Normal",
  5700. height: math.unit(6, "feet"),
  5701. default: true
  5702. }
  5703. ]
  5704. ))
  5705. characterMakers.push(() => makeCharacter(
  5706. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5707. {
  5708. side: {
  5709. height: math.unit(6, "feet"),
  5710. weight: math.unit(150, "lbs"),
  5711. name: "Side",
  5712. image: {
  5713. source: "./media/characters/cibus/side.svg",
  5714. extra: 800 / 400
  5715. }
  5716. },
  5717. },
  5718. [
  5719. {
  5720. name: "Normal",
  5721. height: math.unit(6, "feet"),
  5722. default: true
  5723. }
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5728. {
  5729. front: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(240, "lbs"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/nibbles/front.svg"
  5735. }
  5736. },
  5737. side: {
  5738. height: math.unit(6, "feet"),
  5739. weight: math.unit(240, "lbs"),
  5740. name: "Side",
  5741. image: {
  5742. source: "./media/characters/nibbles/side.svg"
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(9, "feet"),
  5750. default: true
  5751. }
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5756. {
  5757. side: {
  5758. height: math.unit(5 + 1 / 6, "feet"),
  5759. weight: math.unit(130, "lbs"),
  5760. name: "Side",
  5761. image: {
  5762. source: "./media/characters/rikky/side.svg",
  5763. extra: 851 / 801
  5764. }
  5765. },
  5766. },
  5767. [
  5768. {
  5769. name: "Normal",
  5770. height: math.unit(5 + 1 / 6, "feet")
  5771. },
  5772. {
  5773. name: "Macro",
  5774. height: math.unit(152, "feet"),
  5775. default: true
  5776. },
  5777. {
  5778. name: "Megamacro",
  5779. height: math.unit(7, "miles")
  5780. }
  5781. ]
  5782. ))
  5783. characterMakers.push(() => makeCharacter(
  5784. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5785. {
  5786. side: {
  5787. height: math.unit(370, "cm"),
  5788. weight: math.unit(350, "lbs"),
  5789. name: "Side",
  5790. image: {
  5791. source: "./media/characters/malfressa/side.svg"
  5792. }
  5793. },
  5794. walking: {
  5795. height: math.unit(370, "cm"),
  5796. weight: math.unit(350, "lbs"),
  5797. name: "Walking",
  5798. image: {
  5799. source: "./media/characters/malfressa/walking.svg"
  5800. }
  5801. },
  5802. feral: {
  5803. height: math.unit(2500, "cm"),
  5804. weight: math.unit(100000, "lbs"),
  5805. name: "Feral",
  5806. image: {
  5807. source: "./media/characters/malfressa/feral.svg",
  5808. extra: 2108 / 837,
  5809. bottom: 0.02
  5810. }
  5811. },
  5812. },
  5813. [
  5814. {
  5815. name: "Normal",
  5816. height: math.unit(370, "cm")
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(300, "meters"),
  5821. default: true
  5822. }
  5823. ]
  5824. ))
  5825. characterMakers.push(() => makeCharacter(
  5826. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5827. {
  5828. front: {
  5829. height: math.unit(6, "feet"),
  5830. weight: math.unit(60, "kg"),
  5831. name: "Front",
  5832. image: {
  5833. source: "./media/characters/jaro/front.svg"
  5834. }
  5835. },
  5836. back: {
  5837. height: math.unit(6, "feet"),
  5838. weight: math.unit(60, "kg"),
  5839. name: "Back",
  5840. image: {
  5841. source: "./media/characters/jaro/back.svg"
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Micro",
  5848. height: math.unit(7, "inches")
  5849. },
  5850. {
  5851. name: "Normal",
  5852. height: math.unit(5.5, "feet"),
  5853. default: true
  5854. },
  5855. {
  5856. name: "Minimacro",
  5857. height: math.unit(20, "feet")
  5858. },
  5859. {
  5860. name: "Macro",
  5861. height: math.unit(200, "meters")
  5862. }
  5863. ]
  5864. ))
  5865. characterMakers.push(() => makeCharacter(
  5866. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5867. {
  5868. front: {
  5869. height: math.unit(6, "feet"),
  5870. weight: math.unit(195, "lb"),
  5871. name: "Front",
  5872. image: {
  5873. source: "./media/characters/rogue/front.svg"
  5874. }
  5875. },
  5876. },
  5877. [
  5878. {
  5879. name: "Macro",
  5880. height: math.unit(90, "feet"),
  5881. default: true
  5882. },
  5883. ]
  5884. ))
  5885. characterMakers.push(() => makeCharacter(
  5886. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5887. {
  5888. front: {
  5889. height: math.unit(5 + 8 / 12, "feet"),
  5890. weight: math.unit(140, "lb"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/piper/front.svg",
  5894. extra: 3948/3655,
  5895. bottom: 0/3948
  5896. }
  5897. },
  5898. },
  5899. [
  5900. {
  5901. name: "Micro",
  5902. height: math.unit(2, "inches")
  5903. },
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(5 + 8 / 12, "feet")
  5907. },
  5908. {
  5909. name: "Macro",
  5910. height: math.unit(250, "feet"),
  5911. default: true
  5912. },
  5913. {
  5914. name: "Megamacro",
  5915. height: math.unit(7, "miles")
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(220, "lb"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/gemini/front.svg"
  5928. }
  5929. },
  5930. back: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(220, "lb"),
  5933. name: "Back",
  5934. image: {
  5935. source: "./media/characters/gemini/back.svg"
  5936. }
  5937. },
  5938. kneeling: {
  5939. height: math.unit(6 / 1.5, "feet"),
  5940. weight: math.unit(220, "lb"),
  5941. name: "Kneeling",
  5942. image: {
  5943. source: "./media/characters/gemini/kneeling.svg",
  5944. bottom: 0.02
  5945. }
  5946. },
  5947. },
  5948. [
  5949. {
  5950. name: "Macro",
  5951. height: math.unit(300, "meters"),
  5952. default: true
  5953. },
  5954. {
  5955. name: "Megamacro",
  5956. height: math.unit(6900, "meters")
  5957. },
  5958. ]
  5959. ))
  5960. characterMakers.push(() => makeCharacter(
  5961. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5962. {
  5963. anthro: {
  5964. height: math.unit(2.35, "meters"),
  5965. weight: math.unit(73, "kg"),
  5966. name: "Anthro",
  5967. image: {
  5968. source: "./media/characters/alicia/anthro.svg",
  5969. extra: 2571 / 2385,
  5970. bottom: 75 / 2648
  5971. }
  5972. },
  5973. paw: {
  5974. height: math.unit(1.32, "feet"),
  5975. name: "Paw",
  5976. image: {
  5977. source: "./media/characters/alicia/paw.svg"
  5978. }
  5979. },
  5980. feral: {
  5981. height: math.unit(1.69, "meters"),
  5982. weight: math.unit(73, "kg"),
  5983. name: "Feral",
  5984. image: {
  5985. source: "./media/characters/alicia/feral.svg",
  5986. extra: 2123 / 1715,
  5987. bottom: 222 / 2349
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(2.35, "meters")
  5995. },
  5996. {
  5997. name: "Macro",
  5998. height: math.unit(60, "meters"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Megamacro",
  6003. height: math.unit(10000, "kilometers")
  6004. },
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6009. {
  6010. front: {
  6011. height: math.unit(7, "feet"),
  6012. weight: math.unit(250, "lbs"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/archy/front.svg"
  6016. }
  6017. }
  6018. },
  6019. [
  6020. {
  6021. name: "Micro",
  6022. height: math.unit(1, "inch")
  6023. },
  6024. {
  6025. name: "Shorty",
  6026. height: math.unit(5, "feet")
  6027. },
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(7, "feet")
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(600, "meters"),
  6035. default: true
  6036. },
  6037. {
  6038. name: "Megamacro",
  6039. height: math.unit(1, "mile")
  6040. },
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6045. {
  6046. front: {
  6047. height: math.unit(1.65, "meters"),
  6048. weight: math.unit(74, "kg"),
  6049. name: "Front",
  6050. image: {
  6051. source: "./media/characters/berri/front.svg",
  6052. extra: 857 / 837,
  6053. bottom: 18 / 877
  6054. }
  6055. },
  6056. bum: {
  6057. height: math.unit(1.46, "feet"),
  6058. name: "Bum",
  6059. image: {
  6060. source: "./media/characters/berri/bum.svg"
  6061. }
  6062. },
  6063. mouth: {
  6064. height: math.unit(0.44, "feet"),
  6065. name: "Mouth",
  6066. image: {
  6067. source: "./media/characters/berri/mouth.svg"
  6068. }
  6069. },
  6070. paw: {
  6071. height: math.unit(0.826, "feet"),
  6072. name: "Paw",
  6073. image: {
  6074. source: "./media/characters/berri/paw.svg"
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(1.65, "meters")
  6082. },
  6083. {
  6084. name: "Macro",
  6085. height: math.unit(60, "m"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Megamacro",
  6090. height: math.unit(9.213, "km")
  6091. },
  6092. {
  6093. name: "Planet Eater",
  6094. height: math.unit(489, "megameters")
  6095. },
  6096. {
  6097. name: "Teramacro",
  6098. height: math.unit(2471635000000, "meters")
  6099. },
  6100. {
  6101. name: "Examacro",
  6102. height: math.unit(8.0624e+26, "meters")
  6103. }
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(1.72, "meters"),
  6111. weight: math.unit(68, "kg"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/lexi/front.svg"
  6115. }
  6116. }
  6117. },
  6118. [
  6119. {
  6120. name: "Very Smol",
  6121. height: math.unit(10, "mm")
  6122. },
  6123. {
  6124. name: "Micro",
  6125. height: math.unit(6.8, "cm"),
  6126. default: true
  6127. },
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(1.72, "m")
  6131. }
  6132. ]
  6133. ))
  6134. characterMakers.push(() => makeCharacter(
  6135. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6136. {
  6137. front: {
  6138. height: math.unit(1.69, "meters"),
  6139. weight: math.unit(68, "kg"),
  6140. name: "Front",
  6141. image: {
  6142. source: "./media/characters/martin/front.svg",
  6143. extra: 596 / 581
  6144. }
  6145. }
  6146. },
  6147. [
  6148. {
  6149. name: "Micro",
  6150. height: math.unit(6.85, "cm"),
  6151. default: true
  6152. },
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(1.69, "m")
  6156. }
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6161. {
  6162. front: {
  6163. height: math.unit(1.69, "meters"),
  6164. weight: math.unit(68, "kg"),
  6165. name: "Front",
  6166. image: {
  6167. source: "./media/characters/juno/front.svg"
  6168. }
  6169. }
  6170. },
  6171. [
  6172. {
  6173. name: "Micro",
  6174. height: math.unit(7, "cm")
  6175. },
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(1.89, "m")
  6179. },
  6180. {
  6181. name: "Macro",
  6182. height: math.unit(353, "meters"),
  6183. default: true
  6184. }
  6185. ]
  6186. ))
  6187. characterMakers.push(() => makeCharacter(
  6188. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6189. {
  6190. front: {
  6191. height: math.unit(1.93, "meters"),
  6192. weight: math.unit(83, "kg"),
  6193. name: "Front",
  6194. image: {
  6195. source: "./media/characters/samantha/front.svg"
  6196. }
  6197. },
  6198. frontClothed: {
  6199. height: math.unit(1.93, "meters"),
  6200. weight: math.unit(83, "kg"),
  6201. name: "Front (Clothed)",
  6202. image: {
  6203. source: "./media/characters/samantha/front-clothed.svg"
  6204. }
  6205. },
  6206. back: {
  6207. height: math.unit(1.93, "meters"),
  6208. weight: math.unit(83, "kg"),
  6209. name: "Back",
  6210. image: {
  6211. source: "./media/characters/samantha/back.svg"
  6212. }
  6213. },
  6214. },
  6215. [
  6216. {
  6217. name: "Normal",
  6218. height: math.unit(1.93, "m")
  6219. },
  6220. {
  6221. name: "Macro",
  6222. height: math.unit(74, "meters"),
  6223. default: true
  6224. },
  6225. {
  6226. name: "Macro+",
  6227. height: math.unit(223, "meters"),
  6228. },
  6229. {
  6230. name: "Megamacro",
  6231. height: math.unit(8381, "meters"),
  6232. },
  6233. {
  6234. name: "Megamacro+",
  6235. height: math.unit(12000, "kilometers")
  6236. },
  6237. ]
  6238. ))
  6239. characterMakers.push(() => makeCharacter(
  6240. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6241. {
  6242. front: {
  6243. height: math.unit(1.92, "meters"),
  6244. weight: math.unit(80, "kg"),
  6245. name: "Front",
  6246. image: {
  6247. source: "./media/characters/dr-clay/front.svg"
  6248. }
  6249. },
  6250. frontClothed: {
  6251. height: math.unit(1.92, "meters"),
  6252. weight: math.unit(80, "kg"),
  6253. name: "Front (Clothed)",
  6254. image: {
  6255. source: "./media/characters/dr-clay/front-clothed.svg"
  6256. }
  6257. }
  6258. },
  6259. [
  6260. {
  6261. name: "Normal",
  6262. height: math.unit(1.92, "m")
  6263. },
  6264. {
  6265. name: "Macro",
  6266. height: math.unit(214, "meters"),
  6267. default: true
  6268. },
  6269. {
  6270. name: "Macro+",
  6271. height: math.unit(12.237, "meters"),
  6272. },
  6273. {
  6274. name: "Megamacro",
  6275. height: math.unit(557, "megameters"),
  6276. },
  6277. {
  6278. name: "Unimaginable",
  6279. height: math.unit(120e9, "lightyears")
  6280. },
  6281. ]
  6282. ))
  6283. characterMakers.push(() => makeCharacter(
  6284. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6285. {
  6286. front: {
  6287. height: math.unit(2, "meters"),
  6288. weight: math.unit(80, "kg"),
  6289. name: "Front",
  6290. image: {
  6291. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6292. }
  6293. }
  6294. },
  6295. [
  6296. {
  6297. name: "Teramacro",
  6298. height: math.unit(500000, "lightyears"),
  6299. default: true
  6300. },
  6301. ]
  6302. ))
  6303. characterMakers.push(() => makeCharacter(
  6304. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6305. {
  6306. front: {
  6307. height: math.unit(2, "meters"),
  6308. weight: math.unit(150, "kg"),
  6309. name: "Front",
  6310. image: {
  6311. source: "./media/characters/vemus/front.svg",
  6312. extra: 2384 / 2084,
  6313. bottom: 0.0123
  6314. }
  6315. }
  6316. },
  6317. [
  6318. {
  6319. name: "Normal",
  6320. height: math.unit(3.75, "meters"),
  6321. default: true
  6322. },
  6323. {
  6324. name: "Big",
  6325. height: math.unit(8, "meters")
  6326. },
  6327. {
  6328. name: "Macro",
  6329. height: math.unit(100, "meters")
  6330. },
  6331. {
  6332. name: "Macro+",
  6333. height: math.unit(1500, "meters")
  6334. },
  6335. {
  6336. name: "Stellar",
  6337. height: math.unit(14e8, "meters")
  6338. },
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6343. {
  6344. front: {
  6345. height: math.unit(2, "meters"),
  6346. weight: math.unit(70, "kg"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/beherit/front.svg",
  6350. extra: 1408 / 1242
  6351. }
  6352. }
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(6, "feet")
  6358. },
  6359. {
  6360. name: "Lorg",
  6361. height: math.unit(25, "feet"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Lorger",
  6366. height: math.unit(75, "feet")
  6367. },
  6368. {
  6369. name: "Macro",
  6370. height: math.unit(200, "meters")
  6371. },
  6372. ]
  6373. ))
  6374. characterMakers.push(() => makeCharacter(
  6375. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6376. {
  6377. front: {
  6378. height: math.unit(2, "meters"),
  6379. weight: math.unit(150, "kg"),
  6380. name: "Front",
  6381. image: {
  6382. source: "./media/characters/everett/front.svg",
  6383. extra: 2038 / 1737,
  6384. bottom: 0.03
  6385. }
  6386. },
  6387. paw: {
  6388. height: math.unit(2 / 3.6, "meters"),
  6389. name: "Paw",
  6390. image: {
  6391. source: "./media/characters/everett/paw.svg"
  6392. }
  6393. },
  6394. },
  6395. [
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(15, "feet"),
  6399. default: true
  6400. },
  6401. {
  6402. name: "Lorg",
  6403. height: math.unit(70, "feet"),
  6404. default: true
  6405. },
  6406. {
  6407. name: "Lorger",
  6408. height: math.unit(250, "feet")
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(500, "meters")
  6413. },
  6414. ]
  6415. ))
  6416. characterMakers.push(() => makeCharacter(
  6417. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6418. {
  6419. front: {
  6420. height: math.unit(2, "meters"),
  6421. weight: math.unit(86, "kg"),
  6422. name: "Front",
  6423. image: {
  6424. source: "./media/characters/rose/front.svg",
  6425. extra: 350/335,
  6426. bottom: 10/360
  6427. }
  6428. },
  6429. frontAlt: {
  6430. height: math.unit(1.6, "meters"),
  6431. weight: math.unit(86, "kg"),
  6432. name: "Front (Alt)",
  6433. image: {
  6434. source: "./media/characters/rose/front-alt.svg",
  6435. extra: 299/283,
  6436. bottom: 3/302
  6437. }
  6438. },
  6439. plush: {
  6440. height: math.unit(2, "meters"),
  6441. weight: math.unit(86/3, "kg"),
  6442. name: "Plush",
  6443. image: {
  6444. source: "./media/characters/rose/plush.svg",
  6445. extra: 361/337,
  6446. bottom: 11/372
  6447. }
  6448. },
  6449. },
  6450. [
  6451. {
  6452. name: "Mini-Micro",
  6453. height: math.unit(1, "cm")
  6454. },
  6455. {
  6456. name: "Micro",
  6457. height: math.unit(3.5, "inches"),
  6458. default: true
  6459. },
  6460. {
  6461. name: "Normal",
  6462. height: math.unit(6 + 1 / 6, "feet")
  6463. },
  6464. {
  6465. name: "Mini-Macro",
  6466. height: math.unit(9 + 10 / 12, "feet")
  6467. },
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6472. {
  6473. front: {
  6474. height: math.unit(2, "meters"),
  6475. weight: math.unit(350, "lbs"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/regal/front.svg"
  6479. }
  6480. },
  6481. back: {
  6482. height: math.unit(2, "meters"),
  6483. weight: math.unit(350, "lbs"),
  6484. name: "Back",
  6485. image: {
  6486. source: "./media/characters/regal/back.svg"
  6487. }
  6488. },
  6489. },
  6490. [
  6491. {
  6492. name: "Macro",
  6493. height: math.unit(350, "feet"),
  6494. default: true
  6495. }
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6500. {
  6501. front: {
  6502. height: math.unit(4 + 11 / 12, "feet"),
  6503. weight: math.unit(100, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/opal/front.svg"
  6507. }
  6508. },
  6509. frontAlt: {
  6510. height: math.unit(4 + 11 / 12, "feet"),
  6511. weight: math.unit(100, "lbs"),
  6512. name: "Front (Alt)",
  6513. image: {
  6514. source: "./media/characters/opal/front-alt.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Small",
  6521. height: math.unit(4 + 11 / 12, "feet")
  6522. },
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(20, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(120, "feet")
  6531. },
  6532. {
  6533. name: "Megamacro",
  6534. height: math.unit(80, "miles")
  6535. },
  6536. {
  6537. name: "True Size",
  6538. height: math.unit(100000, "lightyears")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(200, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/vector-wuff/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(2.8, "meters")
  6558. },
  6559. {
  6560. name: "Macro",
  6561. height: math.unit(450, "meters"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Megamacro",
  6566. height: math.unit(15, "kilometers")
  6567. }
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6572. {
  6573. front: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(256, "lbs"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/dannik/front.svg"
  6579. }
  6580. }
  6581. },
  6582. [
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(69.57, "meters"),
  6586. default: true
  6587. },
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(120, "lbs"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/azura-saharah/front.svg"
  6599. }
  6600. },
  6601. back: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(120, "lbs"),
  6604. name: "Back",
  6605. image: {
  6606. source: "./media/characters/azura-saharah/back.svg"
  6607. }
  6608. },
  6609. },
  6610. [
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(100, "feet"),
  6614. default: true
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6620. {
  6621. side: {
  6622. height: math.unit(5 + 4 / 12, "feet"),
  6623. weight: math.unit(163, "lbs"),
  6624. name: "Side",
  6625. image: {
  6626. source: "./media/characters/kennedy/side.svg"
  6627. }
  6628. }
  6629. },
  6630. [
  6631. {
  6632. name: "Standard Doggo",
  6633. height: math.unit(5 + 4 / 12, "feet")
  6634. },
  6635. {
  6636. name: "Big Doggo",
  6637. height: math.unit(25 + 3 / 12, "feet"),
  6638. default: true
  6639. },
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(6, "feet"),
  6647. weight: math.unit(90, "lbs"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/odi-lunar/front.svg"
  6651. }
  6652. }
  6653. },
  6654. [
  6655. {
  6656. name: "Micro",
  6657. height: math.unit(3, "inches"),
  6658. default: true
  6659. },
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(5.5, "feet")
  6663. }
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6668. {
  6669. back: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(220, "lbs"),
  6672. name: "Back",
  6673. image: {
  6674. source: "./media/characters/mandake/back.svg"
  6675. }
  6676. }
  6677. },
  6678. [
  6679. {
  6680. name: "Normal",
  6681. height: math.unit(7, "feet"),
  6682. default: true
  6683. },
  6684. {
  6685. name: "Macro",
  6686. height: math.unit(78, "feet")
  6687. },
  6688. {
  6689. name: "Macro+",
  6690. height: math.unit(300, "meters")
  6691. },
  6692. {
  6693. name: "Macro++",
  6694. height: math.unit(2400, "feet")
  6695. },
  6696. {
  6697. name: "Megamacro",
  6698. height: math.unit(5167, "meters")
  6699. },
  6700. {
  6701. name: "Gigamacro",
  6702. height: math.unit(41769, "miles")
  6703. },
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(120, "lbs"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/yozey/front.svg"
  6715. }
  6716. },
  6717. frontAlt: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(120, "lbs"),
  6720. name: "Front (Alt)",
  6721. image: {
  6722. source: "./media/characters/yozey/front-alt.svg"
  6723. }
  6724. },
  6725. side: {
  6726. height: math.unit(6, "feet"),
  6727. weight: math.unit(120, "lbs"),
  6728. name: "Side",
  6729. image: {
  6730. source: "./media/characters/yozey/side.svg"
  6731. }
  6732. },
  6733. },
  6734. [
  6735. {
  6736. name: "Micro",
  6737. height: math.unit(3, "inches"),
  6738. default: true
  6739. },
  6740. {
  6741. name: "Normal",
  6742. height: math.unit(6, "feet")
  6743. }
  6744. ]
  6745. ))
  6746. characterMakers.push(() => makeCharacter(
  6747. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6748. {
  6749. front: {
  6750. height: math.unit(6, "feet"),
  6751. weight: math.unit(103, "lbs"),
  6752. name: "Front",
  6753. image: {
  6754. source: "./media/characters/valeska-voss/front.svg"
  6755. }
  6756. }
  6757. },
  6758. [
  6759. {
  6760. name: "Mini-Sized Sub",
  6761. height: math.unit(3.1, "inches")
  6762. },
  6763. {
  6764. name: "Mid-Sized Sub",
  6765. height: math.unit(6.2, "inches")
  6766. },
  6767. {
  6768. name: "Full-Sized Sub",
  6769. height: math.unit(9.3, "inches")
  6770. },
  6771. {
  6772. name: "Normal",
  6773. height: math.unit(5 + 2 / 12, "foot"),
  6774. default: true
  6775. },
  6776. ]
  6777. ))
  6778. characterMakers.push(() => makeCharacter(
  6779. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6780. {
  6781. front: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(160, "lbs"),
  6784. name: "Front",
  6785. image: {
  6786. source: "./media/characters/gene-zeta/front.svg",
  6787. extra: 3006 / 2826,
  6788. bottom: 182 / 3188
  6789. }
  6790. }
  6791. },
  6792. [
  6793. {
  6794. name: "Micro",
  6795. height: math.unit(6, "inches")
  6796. },
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(5 + 11 / 12, "foot"),
  6800. default: true
  6801. },
  6802. {
  6803. name: "Macro",
  6804. height: math.unit(140, "feet")
  6805. },
  6806. {
  6807. name: "Supercharged",
  6808. height: math.unit(2500, "feet")
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(6, "feet"),
  6817. weight: math.unit(350, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/razinox/front.svg",
  6821. extra: 1686 / 1548,
  6822. bottom: 28.2 / 1868
  6823. }
  6824. },
  6825. back: {
  6826. height: math.unit(6, "feet"),
  6827. weight: math.unit(350, "lbs"),
  6828. name: "Back",
  6829. image: {
  6830. source: "./media/characters/razinox/back.svg",
  6831. extra: 1660 / 1590,
  6832. bottom: 15 / 1665
  6833. }
  6834. },
  6835. },
  6836. [
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(10 + 8 / 12, "foot")
  6840. },
  6841. {
  6842. name: "Minimacro",
  6843. height: math.unit(15, "foot")
  6844. },
  6845. {
  6846. name: "Macro",
  6847. height: math.unit(60, "foot"),
  6848. default: true
  6849. },
  6850. {
  6851. name: "Megamacro",
  6852. height: math.unit(5, "miles")
  6853. },
  6854. {
  6855. name: "Gigamacro",
  6856. height: math.unit(6000, "miles")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(6, "feet"),
  6865. weight: math.unit(150, "lbs"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/cobalt/front.svg"
  6869. }
  6870. }
  6871. },
  6872. [
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(8 + 1 / 12, "foot")
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(111, "foot"),
  6880. default: true
  6881. },
  6882. {
  6883. name: "Supracosmic",
  6884. height: math.unit(1e42, "feet")
  6885. },
  6886. ]
  6887. ))
  6888. characterMakers.push(() => makeCharacter(
  6889. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6890. {
  6891. front: {
  6892. height: math.unit(6, "feet"),
  6893. weight: math.unit(140, "lbs"),
  6894. name: "Front",
  6895. image: {
  6896. source: "./media/characters/amanda/front.svg"
  6897. }
  6898. }
  6899. },
  6900. [
  6901. {
  6902. name: "Micro",
  6903. height: math.unit(5, "inches"),
  6904. default: true
  6905. },
  6906. ]
  6907. ))
  6908. characterMakers.push(() => makeCharacter(
  6909. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6910. {
  6911. front: {
  6912. height: math.unit(2.75, "meters"),
  6913. weight: math.unit(1200, "lb"),
  6914. name: "Front",
  6915. image: {
  6916. source: "./media/characters/teal/front.svg",
  6917. extra: 2463 / 2320,
  6918. bottom: 166 / 2629
  6919. }
  6920. },
  6921. back: {
  6922. height: math.unit(2.75, "meters"),
  6923. weight: math.unit(1200, "lb"),
  6924. name: "Back",
  6925. image: {
  6926. source: "./media/characters/teal/back.svg",
  6927. extra: 2580 / 2489,
  6928. bottom: 151 / 2731
  6929. }
  6930. },
  6931. sitting: {
  6932. height: math.unit(1.9, "meters"),
  6933. weight: math.unit(1200, "lb"),
  6934. name: "Sitting",
  6935. image: {
  6936. source: "./media/characters/teal/sitting.svg",
  6937. extra: 623 / 590,
  6938. bottom: 121 / 744
  6939. }
  6940. },
  6941. standing: {
  6942. height: math.unit(2.75, "meters"),
  6943. weight: math.unit(1200, "lb"),
  6944. name: "Standing",
  6945. image: {
  6946. source: "./media/characters/teal/standing.svg",
  6947. extra: 923 / 893,
  6948. bottom: 60 / 983
  6949. }
  6950. },
  6951. stretching: {
  6952. height: math.unit(3.65, "meters"),
  6953. weight: math.unit(1200, "lb"),
  6954. name: "Stretching",
  6955. image: {
  6956. source: "./media/characters/teal/stretching.svg",
  6957. extra: 1276 / 1244,
  6958. bottom: 0 / 1276
  6959. }
  6960. },
  6961. legged: {
  6962. height: math.unit(1.3, "meters"),
  6963. weight: math.unit(100, "lb"),
  6964. name: "Legged",
  6965. image: {
  6966. source: "./media/characters/teal/legged.svg",
  6967. extra: 462 / 437,
  6968. bottom: 24 / 486
  6969. }
  6970. },
  6971. naga: {
  6972. height: math.unit(5.4, "meters"),
  6973. weight: math.unit(4000, "lb"),
  6974. name: "Naga",
  6975. image: {
  6976. source: "./media/characters/teal/naga.svg",
  6977. extra: 1902 / 1858,
  6978. bottom: 0 / 1902
  6979. }
  6980. },
  6981. hand: {
  6982. height: math.unit(0.52, "meters"),
  6983. name: "Hand",
  6984. image: {
  6985. source: "./media/characters/teal/hand.svg"
  6986. }
  6987. },
  6988. maw: {
  6989. height: math.unit(0.43, "meters"),
  6990. name: "Maw",
  6991. image: {
  6992. source: "./media/characters/teal/maw.svg"
  6993. }
  6994. },
  6995. slit: {
  6996. height: math.unit(0.25, "meters"),
  6997. name: "Slit",
  6998. image: {
  6999. source: "./media/characters/teal/slit.svg"
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(2.75, "meters"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(300, "feet")
  7012. },
  7013. {
  7014. name: "Macro+",
  7015. height: math.unit(2000, "feet")
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7021. {
  7022. frontCat: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(180, "lbs"),
  7025. name: "Front (Cat)",
  7026. image: {
  7027. source: "./media/characters/ravin-amulet/front-cat.svg"
  7028. }
  7029. },
  7030. frontCatAlt: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(180, "lbs"),
  7033. name: "Front (Alt, Cat)",
  7034. image: {
  7035. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7036. }
  7037. },
  7038. frontWerewolf: {
  7039. height: math.unit(6 * 1.2, "feet"),
  7040. weight: math.unit(225, "lbs"),
  7041. name: "Front (Werewolf)",
  7042. image: {
  7043. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7044. }
  7045. },
  7046. backWerewolf: {
  7047. height: math.unit(6 * 1.2, "feet"),
  7048. weight: math.unit(225, "lbs"),
  7049. name: "Back (Werewolf)",
  7050. image: {
  7051. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Nano",
  7058. height: math.unit(1, "micrometer")
  7059. },
  7060. {
  7061. name: "Micro",
  7062. height: math.unit(1, "inch")
  7063. },
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(6, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(60, "feet")
  7072. }
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(6, "feet"),
  7080. weight: math.unit(165, "lbs"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/fluoresce/front.svg"
  7084. }
  7085. }
  7086. },
  7087. [
  7088. {
  7089. name: "Micro",
  7090. height: math.unit(6, "cm")
  7091. },
  7092. {
  7093. name: "Normal",
  7094. height: math.unit(5 + 7 / 12, "feet"),
  7095. default: true
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(56, "feet")
  7100. },
  7101. {
  7102. name: "Megamacro",
  7103. height: math.unit(1.9, "miles")
  7104. },
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7109. {
  7110. front: {
  7111. height: math.unit(9 + 6 / 12, "feet"),
  7112. weight: math.unit(523, "lbs"),
  7113. name: "Side",
  7114. image: {
  7115. source: "./media/characters/aurora/side.svg"
  7116. }
  7117. }
  7118. },
  7119. [
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(9 + 6 / 12, "feet")
  7123. },
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(96, "feet"),
  7127. default: true
  7128. },
  7129. {
  7130. name: "Macro+",
  7131. height: math.unit(243, "feet")
  7132. },
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(194, "cm"),
  7140. weight: math.unit(90, "kg"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/ranek/front.svg"
  7144. }
  7145. },
  7146. side: {
  7147. height: math.unit(194, "cm"),
  7148. weight: math.unit(90, "kg"),
  7149. name: "Side",
  7150. image: {
  7151. source: "./media/characters/ranek/side.svg"
  7152. }
  7153. },
  7154. back: {
  7155. height: math.unit(194, "cm"),
  7156. weight: math.unit(90, "kg"),
  7157. name: "Back",
  7158. image: {
  7159. source: "./media/characters/ranek/back.svg"
  7160. }
  7161. },
  7162. feral: {
  7163. height: math.unit(30, "cm"),
  7164. weight: math.unit(1.6, "lbs"),
  7165. name: "Feral",
  7166. image: {
  7167. source: "./media/characters/ranek/feral.svg"
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Normal",
  7174. height: math.unit(194, "cm"),
  7175. default: true
  7176. },
  7177. {
  7178. name: "Macro",
  7179. height: math.unit(100, "meters")
  7180. },
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7185. {
  7186. front: {
  7187. height: math.unit(5 + 6 / 12, "feet"),
  7188. weight: math.unit(153, "lbs"),
  7189. name: "Front",
  7190. image: {
  7191. source: "./media/characters/andrew-cooper/front.svg"
  7192. }
  7193. },
  7194. },
  7195. [
  7196. {
  7197. name: "Nano",
  7198. height: math.unit(1, "mm")
  7199. },
  7200. {
  7201. name: "Micro",
  7202. height: math.unit(2, "inches")
  7203. },
  7204. {
  7205. name: "Normal",
  7206. height: math.unit(5 + 6 / 12, "feet"),
  7207. default: true
  7208. }
  7209. ]
  7210. ))
  7211. characterMakers.push(() => makeCharacter(
  7212. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7213. {
  7214. front: {
  7215. height: math.unit(6, "feet"),
  7216. weight: math.unit(180, "lbs"),
  7217. name: "Front",
  7218. image: {
  7219. source: "./media/characters/akane-sato/front.svg",
  7220. extra: 1219 / 1140
  7221. }
  7222. },
  7223. back: {
  7224. height: math.unit(6, "feet"),
  7225. weight: math.unit(180, "lbs"),
  7226. name: "Back",
  7227. image: {
  7228. source: "./media/characters/akane-sato/back.svg",
  7229. extra: 1219 / 1170
  7230. }
  7231. },
  7232. },
  7233. [
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(2.5, "meters")
  7237. },
  7238. {
  7239. name: "Macro",
  7240. height: math.unit(250, "meters"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Megamacro",
  7245. height: math.unit(25, "km")
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7251. {
  7252. front: {
  7253. height: math.unit(6, "feet"),
  7254. weight: math.unit(65, "kg"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/rook/front.svg",
  7258. extra: 960 / 950
  7259. }
  7260. }
  7261. },
  7262. [
  7263. {
  7264. name: "Normal",
  7265. height: math.unit(8.8, "feet")
  7266. },
  7267. {
  7268. name: "Macro",
  7269. height: math.unit(88, "feet"),
  7270. default: true
  7271. },
  7272. {
  7273. name: "Megamacro",
  7274. height: math.unit(8, "miles")
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(12 + 2 / 12, "feet"),
  7283. weight: math.unit(808, "lbs"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/prodigy/front.svg"
  7287. }
  7288. }
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(12 + 2 / 12, "feet"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Macro",
  7298. height: math.unit(143, "feet")
  7299. },
  7300. {
  7301. name: "Macro+",
  7302. height: math.unit(400, "feet")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(6, "feet"),
  7311. weight: math.unit(225, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/daniel/front.svg"
  7315. }
  7316. },
  7317. leaning: {
  7318. height: math.unit(6, "feet"),
  7319. weight: math.unit(225, "lbs"),
  7320. name: "Leaning",
  7321. image: {
  7322. source: "./media/characters/daniel/leaning.svg"
  7323. }
  7324. },
  7325. },
  7326. [
  7327. {
  7328. name: "Macro",
  7329. height: math.unit(1000, "feet"),
  7330. default: true
  7331. },
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(6, "feet"),
  7339. weight: math.unit(88, "lbs"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/chiros/front.svg",
  7343. extra: 306 / 226
  7344. }
  7345. },
  7346. side: {
  7347. height: math.unit(6, "feet"),
  7348. weight: math.unit(88, "lbs"),
  7349. name: "Side",
  7350. image: {
  7351. source: "./media/characters/chiros/side.svg",
  7352. extra: 306 / 226
  7353. }
  7354. },
  7355. },
  7356. [
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(6, "cm"),
  7360. default: true
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7366. {
  7367. front: {
  7368. height: math.unit(6, "feet"),
  7369. weight: math.unit(100, "lbs"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/selka/front.svg",
  7373. extra: 947 / 887
  7374. }
  7375. }
  7376. },
  7377. [
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(5, "cm"),
  7381. default: true
  7382. },
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(8 + 3 / 12, "feet"),
  7390. weight: math.unit(424, "lbs"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/verin/front.svg",
  7394. extra: 1845 / 1550
  7395. }
  7396. },
  7397. frontArmored: {
  7398. height: math.unit(8 + 3 / 12, "feet"),
  7399. weight: math.unit(424, "lbs"),
  7400. name: "Front (Armored)",
  7401. image: {
  7402. source: "./media/characters/verin/front-armor.svg",
  7403. extra: 1845 / 1550,
  7404. bottom: 0.01
  7405. }
  7406. },
  7407. back: {
  7408. height: math.unit(8 + 3 / 12, "feet"),
  7409. weight: math.unit(424, "lbs"),
  7410. name: "Back",
  7411. image: {
  7412. source: "./media/characters/verin/back.svg",
  7413. bottom: 0.1,
  7414. extra: 1
  7415. }
  7416. },
  7417. foot: {
  7418. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7419. name: "Foot",
  7420. image: {
  7421. source: "./media/characters/verin/foot.svg"
  7422. }
  7423. },
  7424. },
  7425. [
  7426. {
  7427. name: "Normal",
  7428. height: math.unit(8 + 3 / 12, "feet")
  7429. },
  7430. {
  7431. name: "Minimacro",
  7432. height: math.unit(21, "feet"),
  7433. default: true
  7434. },
  7435. {
  7436. name: "Macro",
  7437. height: math.unit(626, "feet")
  7438. },
  7439. ]
  7440. ))
  7441. characterMakers.push(() => makeCharacter(
  7442. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7443. {
  7444. front: {
  7445. height: math.unit(2.718, "meters"),
  7446. weight: math.unit(150, "lbs"),
  7447. name: "Front",
  7448. image: {
  7449. source: "./media/characters/sovrim-terraquian/front.svg"
  7450. }
  7451. },
  7452. back: {
  7453. height: math.unit(2.718, "meters"),
  7454. weight: math.unit(150, "lbs"),
  7455. name: "Back",
  7456. image: {
  7457. source: "./media/characters/sovrim-terraquian/back.svg"
  7458. }
  7459. }
  7460. },
  7461. [
  7462. {
  7463. name: "Micro",
  7464. height: math.unit(2, "inches")
  7465. },
  7466. {
  7467. name: "Small",
  7468. height: math.unit(1, "meter")
  7469. },
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(Math.E, "meters"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(20, "meters")
  7478. },
  7479. {
  7480. name: "Macro+",
  7481. height: math.unit(400, "meters")
  7482. },
  7483. ]
  7484. ))
  7485. characterMakers.push(() => makeCharacter(
  7486. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7487. {
  7488. front: {
  7489. height: math.unit(7, "feet"),
  7490. weight: math.unit(489, "lbs"),
  7491. name: "Front",
  7492. image: {
  7493. source: "./media/characters/reece-silvermane/front.svg",
  7494. bottom: 0.02,
  7495. extra: 1
  7496. }
  7497. },
  7498. },
  7499. [
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(1.5, "miles"),
  7503. default: true
  7504. },
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7509. {
  7510. front: {
  7511. height: math.unit(6, "feet"),
  7512. weight: math.unit(78, "kg"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/kane/front.svg",
  7516. extra: 978 / 899
  7517. }
  7518. },
  7519. },
  7520. [
  7521. {
  7522. name: "Normal",
  7523. height: math.unit(2.1, "m"),
  7524. },
  7525. {
  7526. name: "Macro",
  7527. height: math.unit(1, "km"),
  7528. default: true
  7529. },
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7534. {
  7535. front: {
  7536. height: math.unit(6, "feet"),
  7537. weight: math.unit(200, "kg"),
  7538. name: "Front",
  7539. image: {
  7540. source: "./media/characters/tegon/front.svg",
  7541. bottom: 0.01,
  7542. extra: 1
  7543. }
  7544. },
  7545. },
  7546. [
  7547. {
  7548. name: "Micro",
  7549. height: math.unit(1, "inch")
  7550. },
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(6 + 3 / 12, "feet"),
  7554. default: true
  7555. },
  7556. {
  7557. name: "Macro",
  7558. height: math.unit(300, "feet")
  7559. },
  7560. {
  7561. name: "Megamacro",
  7562. height: math.unit(69, "miles")
  7563. },
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7568. {
  7569. side: {
  7570. height: math.unit(6, "feet"),
  7571. weight: math.unit(2304, "lbs"),
  7572. name: "Side",
  7573. image: {
  7574. source: "./media/characters/arcturax/side.svg",
  7575. extra: 790 / 376,
  7576. bottom: 0.01
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Micro",
  7583. height: math.unit(2, "inch")
  7584. },
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(6, "feet")
  7588. },
  7589. {
  7590. name: "Macro",
  7591. height: math.unit(39, "feet"),
  7592. default: true
  7593. },
  7594. {
  7595. name: "Megamacro",
  7596. height: math.unit(7, "miles")
  7597. },
  7598. ]
  7599. ))
  7600. characterMakers.push(() => makeCharacter(
  7601. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7602. {
  7603. front: {
  7604. height: math.unit(6, "feet"),
  7605. weight: math.unit(50, "lbs"),
  7606. name: "Front",
  7607. image: {
  7608. source: "./media/characters/sentri/front.svg",
  7609. extra: 1750 / 1570,
  7610. bottom: 0.025
  7611. }
  7612. },
  7613. frontAlt: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(50, "lbs"),
  7616. name: "Front (Alt)",
  7617. image: {
  7618. source: "./media/characters/sentri/front-alt.svg",
  7619. extra: 1750 / 1570,
  7620. bottom: 0.025
  7621. }
  7622. },
  7623. },
  7624. [
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(15, "feet"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Macro",
  7632. height: math.unit(2500, "feet")
  7633. }
  7634. ]
  7635. ))
  7636. characterMakers.push(() => makeCharacter(
  7637. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7638. {
  7639. front: {
  7640. height: math.unit(5 + 8 / 12, "feet"),
  7641. weight: math.unit(130, "lbs"),
  7642. name: "Front",
  7643. image: {
  7644. source: "./media/characters/corvin/front.svg",
  7645. extra: 1803 / 1629
  7646. }
  7647. },
  7648. frontShirt: {
  7649. height: math.unit(5 + 8 / 12, "feet"),
  7650. weight: math.unit(130, "lbs"),
  7651. name: "Front (Shirt)",
  7652. image: {
  7653. source: "./media/characters/corvin/front-shirt.svg",
  7654. extra: 1803 / 1629
  7655. }
  7656. },
  7657. frontPoncho: {
  7658. height: math.unit(5 + 8 / 12, "feet"),
  7659. weight: math.unit(130, "lbs"),
  7660. name: "Front (Poncho)",
  7661. image: {
  7662. source: "./media/characters/corvin/front-poncho.svg",
  7663. extra: 1803 / 1629
  7664. }
  7665. },
  7666. side: {
  7667. height: math.unit(5 + 8 / 12, "feet"),
  7668. weight: math.unit(130, "lbs"),
  7669. name: "Side",
  7670. image: {
  7671. source: "./media/characters/corvin/side.svg",
  7672. extra: 1012 / 945
  7673. }
  7674. },
  7675. back: {
  7676. height: math.unit(5 + 8 / 12, "feet"),
  7677. weight: math.unit(130, "lbs"),
  7678. name: "Back",
  7679. image: {
  7680. source: "./media/characters/corvin/back.svg",
  7681. extra: 1803 / 1629
  7682. }
  7683. },
  7684. },
  7685. [
  7686. {
  7687. name: "Micro",
  7688. height: math.unit(3, "inches")
  7689. },
  7690. {
  7691. name: "Normal",
  7692. height: math.unit(5 + 8 / 12, "feet")
  7693. },
  7694. {
  7695. name: "Macro",
  7696. height: math.unit(300, "feet"),
  7697. default: true
  7698. },
  7699. {
  7700. name: "Megamacro",
  7701. height: math.unit(500, "miles")
  7702. }
  7703. ]
  7704. ))
  7705. characterMakers.push(() => makeCharacter(
  7706. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7707. {
  7708. front: {
  7709. height: math.unit(6, "feet"),
  7710. weight: math.unit(135, "lbs"),
  7711. name: "Front",
  7712. image: {
  7713. source: "./media/characters/q/front.svg",
  7714. extra: 854 / 752,
  7715. bottom: 0.005
  7716. }
  7717. },
  7718. back: {
  7719. height: math.unit(6, "feet"),
  7720. weight: math.unit(130, "lbs"),
  7721. name: "Back",
  7722. image: {
  7723. source: "./media/characters/q/back.svg",
  7724. extra: 854 / 752
  7725. }
  7726. },
  7727. },
  7728. [
  7729. {
  7730. name: "Macro",
  7731. height: math.unit(90, "feet"),
  7732. default: true
  7733. },
  7734. {
  7735. name: "Extra Macro",
  7736. height: math.unit(300, "feet"),
  7737. },
  7738. {
  7739. name: "BIG WALF",
  7740. height: math.unit(750, "feet"),
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(6, "feet"),
  7749. weight: math.unit(150, "lbs"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/carley/front.svg",
  7753. extra: 3927 / 3540,
  7754. bottom: 29.2 / 735
  7755. }
  7756. }
  7757. },
  7758. [
  7759. {
  7760. name: "Normal",
  7761. height: math.unit(6 + 3 / 12, "feet")
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(185, "feet"),
  7766. default: true
  7767. },
  7768. {
  7769. name: "Megamacro",
  7770. height: math.unit(8, "miles"),
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(3, "feet"),
  7779. weight: math.unit(28, "lbs"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/citrine/front.svg"
  7783. }
  7784. }
  7785. },
  7786. [
  7787. {
  7788. name: "Normal",
  7789. height: math.unit(3, "feet"),
  7790. default: true
  7791. }
  7792. ]
  7793. ))
  7794. characterMakers.push(() => makeCharacter(
  7795. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7796. {
  7797. front: {
  7798. height: math.unit(14, "feet"),
  7799. weight: math.unit(1450, "kg"),
  7800. capacity: math.unit(15, "people"),
  7801. name: "Front",
  7802. image: {
  7803. source: "./media/characters/aura-starwind/front.svg",
  7804. extra: 1455 / 1335
  7805. }
  7806. },
  7807. side: {
  7808. height: math.unit(14, "feet"),
  7809. weight: math.unit(1450, "kg"),
  7810. capacity: math.unit(15, "people"),
  7811. name: "Side",
  7812. image: {
  7813. source: "./media/characters/aura-starwind/side.svg",
  7814. extra: 1654 / 1497
  7815. }
  7816. },
  7817. taur: {
  7818. height: math.unit(18, "feet"),
  7819. weight: math.unit(5500, "kg"),
  7820. capacity: math.unit(50, "people"),
  7821. name: "Taur",
  7822. image: {
  7823. source: "./media/characters/aura-starwind/taur.svg",
  7824. extra: 1760 / 1650
  7825. }
  7826. },
  7827. feral: {
  7828. height: math.unit(46, "feet"),
  7829. weight: math.unit(25000, "kg"),
  7830. capacity: math.unit(120, "people"),
  7831. name: "Feral",
  7832. image: {
  7833. source: "./media/characters/aura-starwind/feral.svg"
  7834. }
  7835. },
  7836. },
  7837. [
  7838. {
  7839. name: "Normal",
  7840. height: math.unit(14, "feet"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Macro",
  7845. height: math.unit(50, "meters")
  7846. },
  7847. {
  7848. name: "Megamacro",
  7849. height: math.unit(5000, "meters")
  7850. },
  7851. {
  7852. name: "Gigamacro",
  7853. height: math.unit(100000, "kilometers")
  7854. },
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(2 + 7 / 12, "feet"),
  7862. weight: math.unit(32, "lbs"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/rivet/front.svg",
  7866. extra: 1716 / 1658,
  7867. bottom: 0.03
  7868. }
  7869. },
  7870. foot: {
  7871. height: math.unit(0.551, "feet"),
  7872. name: "Rivet's Foot",
  7873. image: {
  7874. source: "./media/characters/rivet/foot.svg"
  7875. },
  7876. rename: true
  7877. }
  7878. },
  7879. [
  7880. {
  7881. name: "Micro",
  7882. height: math.unit(1.5, "inches"),
  7883. },
  7884. {
  7885. name: "Normal",
  7886. height: math.unit(2 + 7 / 12, "feet"),
  7887. default: true
  7888. },
  7889. {
  7890. name: "Macro",
  7891. height: math.unit(85, "feet")
  7892. },
  7893. {
  7894. name: "Megamacro",
  7895. height: math.unit(2.2, "km")
  7896. }
  7897. ]
  7898. ))
  7899. characterMakers.push(() => makeCharacter(
  7900. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7901. {
  7902. front: {
  7903. height: math.unit(5 + 9 / 12, "feet"),
  7904. weight: math.unit(150, "lbs"),
  7905. name: "Front",
  7906. image: {
  7907. source: "./media/characters/coffee/front.svg",
  7908. extra: 3666 / 3032,
  7909. bottom: 0.04
  7910. }
  7911. },
  7912. foot: {
  7913. height: math.unit(1.29, "feet"),
  7914. name: "Foot",
  7915. image: {
  7916. source: "./media/characters/coffee/foot.svg"
  7917. }
  7918. },
  7919. },
  7920. [
  7921. {
  7922. name: "Micro",
  7923. height: math.unit(2, "inches"),
  7924. },
  7925. {
  7926. name: "Normal",
  7927. height: math.unit(5 + 9 / 12, "feet"),
  7928. default: true
  7929. },
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(800, "feet")
  7933. },
  7934. {
  7935. name: "Megamacro",
  7936. height: math.unit(25, "miles")
  7937. }
  7938. ]
  7939. ))
  7940. characterMakers.push(() => makeCharacter(
  7941. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7942. {
  7943. front: {
  7944. height: math.unit(6, "feet"),
  7945. weight: math.unit(200, "lbs"),
  7946. name: "Front",
  7947. image: {
  7948. source: "./media/characters/chari-gal/front.svg",
  7949. extra: 1568 / 1385,
  7950. bottom: 0.047
  7951. }
  7952. },
  7953. gigantamax: {
  7954. height: math.unit(6 * 16, "feet"),
  7955. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7956. name: "Gigantamax",
  7957. image: {
  7958. source: "./media/characters/chari-gal/gigantamax.svg",
  7959. extra: 1124 / 888,
  7960. bottom: 0.03
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Normal",
  7967. height: math.unit(5 + 7 / 12, "feet")
  7968. },
  7969. {
  7970. name: "Macro",
  7971. height: math.unit(200, "feet"),
  7972. default: true
  7973. }
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7978. {
  7979. front: {
  7980. height: math.unit(6, "feet"),
  7981. weight: math.unit(150, "lbs"),
  7982. name: "Front",
  7983. image: {
  7984. source: "./media/characters/nova/front.svg",
  7985. extra: 5000 / 4722,
  7986. bottom: 0.02
  7987. }
  7988. }
  7989. },
  7990. [
  7991. {
  7992. name: "Micro-",
  7993. height: math.unit(0.8, "inches")
  7994. },
  7995. {
  7996. name: "Micro",
  7997. height: math.unit(2, "inches"),
  7998. default: true
  7999. },
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8004. {
  8005. front: {
  8006. height: math.unit(3 + 1 / 12, "feet"),
  8007. weight: math.unit(21.7, "lbs"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/argent/front.svg",
  8011. extra: 1471 / 1331,
  8012. bottom: 100.8 / 1575.5
  8013. }
  8014. }
  8015. },
  8016. [
  8017. {
  8018. name: "Micro",
  8019. height: math.unit(2, "inches")
  8020. },
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(3 + 1 / 12, "feet"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(120, "feet")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8034. {
  8035. lamp: {
  8036. height: math.unit(7 * 1559 / 989, "feet"),
  8037. name: "Magic Lamp",
  8038. image: {
  8039. source: "./media/characters/mira-al-cul/lamp.svg",
  8040. extra: 1617 / 1559
  8041. }
  8042. },
  8043. front: {
  8044. height: math.unit(7, "feet"),
  8045. name: "Front",
  8046. image: {
  8047. source: "./media/characters/mira-al-cul/front.svg",
  8048. extra: 1044 / 990
  8049. }
  8050. },
  8051. },
  8052. [
  8053. {
  8054. name: "Heavily Restricted",
  8055. height: math.unit(7 * 1559 / 989, "feet")
  8056. },
  8057. {
  8058. name: "Freshly Freed",
  8059. height: math.unit(50 * 1559 / 989, "feet")
  8060. },
  8061. {
  8062. name: "World Encompassing",
  8063. height: math.unit(10000 * 1559 / 989, "miles")
  8064. },
  8065. {
  8066. name: "Galactic",
  8067. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8068. },
  8069. {
  8070. name: "Palmed Universe",
  8071. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Multiversal Matriarch",
  8076. height: math.unit(8.87e10, "yottameters")
  8077. },
  8078. {
  8079. name: "Void Mother",
  8080. height: math.unit(3.14e110, "yottaparsecs")
  8081. },
  8082. {
  8083. name: "Toying with Transcendence",
  8084. height: math.unit(1e307, "meters")
  8085. },
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8090. {
  8091. front: {
  8092. height: math.unit(17 + 1 / 12, "feet"),
  8093. weight: math.unit(476.2 * 5, "lbs"),
  8094. name: "Front",
  8095. image: {
  8096. source: "./media/characters/kuro-shi-uchū/front.svg",
  8097. extra: 2329 / 1835,
  8098. bottom: 0.02
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Micro",
  8105. height: math.unit(2, "inches")
  8106. },
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(12, "meters")
  8110. },
  8111. {
  8112. name: "Planetary",
  8113. height: math.unit(0.00929, "AU"),
  8114. default: true
  8115. },
  8116. {
  8117. name: "Universal",
  8118. height: math.unit(20, "gigaparsecs")
  8119. },
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(5 + 2 / 12, "feet"),
  8127. weight: math.unit(120, "lbs"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/katherine/front.svg",
  8131. extra: 2075 / 1969
  8132. }
  8133. },
  8134. dress: {
  8135. height: math.unit(5 + 2 / 12, "feet"),
  8136. weight: math.unit(120, "lbs"),
  8137. name: "Dress",
  8138. image: {
  8139. source: "./media/characters/katherine/dress.svg",
  8140. extra: 2258 / 2064
  8141. }
  8142. },
  8143. },
  8144. [
  8145. {
  8146. name: "Micro",
  8147. height: math.unit(1, "inches"),
  8148. default: true
  8149. },
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(5 + 2 / 12, "feet")
  8153. },
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(100, "meters")
  8157. },
  8158. {
  8159. name: "Megamacro",
  8160. height: math.unit(80, "miles")
  8161. },
  8162. ]
  8163. ))
  8164. characterMakers.push(() => makeCharacter(
  8165. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8166. {
  8167. front: {
  8168. height: math.unit(7 + 8 / 12, "feet"),
  8169. weight: math.unit(250, "lbs"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/yevis/front.svg",
  8173. extra: 1938 / 1755
  8174. }
  8175. }
  8176. },
  8177. [
  8178. {
  8179. name: "Mortal",
  8180. height: math.unit(7 + 8 / 12, "feet")
  8181. },
  8182. {
  8183. name: "Battle",
  8184. height: math.unit(25 + 11 / 12, "feet")
  8185. },
  8186. {
  8187. name: "Wrath",
  8188. height: math.unit(1654 + 11 / 12, "feet")
  8189. },
  8190. {
  8191. name: "Planet Destroyer",
  8192. height: math.unit(12000, "miles")
  8193. },
  8194. {
  8195. name: "Galaxy Conqueror",
  8196. height: math.unit(1.45, "zettameters"),
  8197. default: true
  8198. },
  8199. {
  8200. name: "Universal War",
  8201. height: math.unit(184, "gigaparsecs")
  8202. },
  8203. {
  8204. name: "Eternity War",
  8205. height: math.unit(1.98e55, "yottaparsecs")
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(5 + 8 / 12, "feet"),
  8214. weight: math.unit(63, "kg"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/xavier/front.svg",
  8218. extra: 944 / 883
  8219. }
  8220. },
  8221. frontStretch: {
  8222. height: math.unit(5 + 8 / 12, "feet"),
  8223. weight: math.unit(63, "kg"),
  8224. name: "Stretching",
  8225. image: {
  8226. source: "./media/characters/xavier/front-stretch.svg",
  8227. extra: 962 / 820
  8228. }
  8229. },
  8230. },
  8231. [
  8232. {
  8233. name: "Normal",
  8234. height: math.unit(5 + 8 / 12, "feet")
  8235. },
  8236. {
  8237. name: "Macro",
  8238. height: math.unit(100, "meters"),
  8239. default: true
  8240. },
  8241. {
  8242. name: "McLargeHuge",
  8243. height: math.unit(10, "miles")
  8244. },
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8249. {
  8250. front: {
  8251. height: math.unit(5 + 5 / 12, "feet"),
  8252. weight: math.unit(150, "lb"),
  8253. name: "Front",
  8254. image: {
  8255. source: "./media/characters/joshii/front.svg",
  8256. extra: 765 / 653,
  8257. bottom: 51 / 816
  8258. }
  8259. },
  8260. foot: {
  8261. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8262. name: "Foot",
  8263. image: {
  8264. source: "./media/characters/joshii/foot.svg"
  8265. }
  8266. },
  8267. },
  8268. [
  8269. {
  8270. name: "Micro",
  8271. height: math.unit(2, "inches"),
  8272. default: true
  8273. },
  8274. {
  8275. name: "Normal",
  8276. height: math.unit(5 + 5 / 12, "feet")
  8277. },
  8278. {
  8279. name: "Macro",
  8280. height: math.unit(785, "feet")
  8281. },
  8282. {
  8283. name: "Megamacro",
  8284. height: math.unit(24.5, "miles")
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8290. {
  8291. front: {
  8292. height: math.unit(6, "feet"),
  8293. weight: math.unit(150, "lb"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/goddess-elizabeth/front.svg",
  8297. extra: 1800 / 1525,
  8298. bottom: 0.005
  8299. }
  8300. },
  8301. foot: {
  8302. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8303. name: "Foot",
  8304. image: {
  8305. source: "./media/characters/goddess-elizabeth/foot.svg"
  8306. }
  8307. },
  8308. mouth: {
  8309. height: math.unit(6, "feet"),
  8310. name: "Mouth",
  8311. image: {
  8312. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(12, "feet")
  8320. },
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(80, "miles"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(15000, "parsecs")
  8329. },
  8330. ]
  8331. ))
  8332. characterMakers.push(() => makeCharacter(
  8333. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8334. {
  8335. front: {
  8336. height: math.unit(5 + 9 / 12, "feet"),
  8337. weight: math.unit(144, "lb"),
  8338. name: "Front",
  8339. image: {
  8340. source: "./media/characters/kara/front.svg"
  8341. }
  8342. },
  8343. feet: {
  8344. height: math.unit(6 / 6.765, "feet"),
  8345. name: "Kara's Feet",
  8346. rename: true,
  8347. image: {
  8348. source: "./media/characters/kara/feet.svg"
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(5 + 9 / 12, "feet")
  8356. },
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(174, "feet"),
  8360. default: true
  8361. },
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8366. {
  8367. front: {
  8368. height: math.unit(18, "feet"),
  8369. weight: math.unit(4050, "lb"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/tyrone/front.svg",
  8373. extra: 2405 / 2270,
  8374. bottom: 182 / 2587
  8375. }
  8376. },
  8377. },
  8378. [
  8379. {
  8380. name: "Normal",
  8381. height: math.unit(18, "feet"),
  8382. default: true
  8383. },
  8384. {
  8385. name: "Macro",
  8386. height: math.unit(300, "feet")
  8387. },
  8388. {
  8389. name: "Megamacro",
  8390. height: math.unit(15, "km")
  8391. },
  8392. {
  8393. name: "Gigamacro",
  8394. height: math.unit(500, "km")
  8395. },
  8396. {
  8397. name: "Teramacro",
  8398. height: math.unit(0.5, "gigameters")
  8399. },
  8400. {
  8401. name: "Omnimacro",
  8402. height: math.unit(1e252, "yottauniverse")
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8408. {
  8409. front: {
  8410. height: math.unit(7 + 8 / 12, "feet"),
  8411. weight: math.unit(120, "lb"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/danny/front.svg",
  8415. extra: 1490 / 1350
  8416. }
  8417. },
  8418. back: {
  8419. height: math.unit(7 + 8 / 12, "feet"),
  8420. weight: math.unit(120, "lb"),
  8421. name: "Back",
  8422. image: {
  8423. source: "./media/characters/danny/back.svg",
  8424. extra: 1490 / 1350
  8425. }
  8426. },
  8427. },
  8428. [
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(7 + 8 / 12, "feet"),
  8432. default: true
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(3.5, "inches"),
  8441. weight: math.unit(19, "grams"),
  8442. name: "Front",
  8443. image: {
  8444. source: "./media/characters/mallow/front.svg",
  8445. extra: 471 / 431
  8446. }
  8447. },
  8448. back: {
  8449. height: math.unit(3.5, "inches"),
  8450. weight: math.unit(19, "grams"),
  8451. name: "Back",
  8452. image: {
  8453. source: "./media/characters/mallow/back.svg",
  8454. extra: 471 / 431
  8455. }
  8456. },
  8457. },
  8458. [
  8459. {
  8460. name: "Normal",
  8461. height: math.unit(3.5, "inches"),
  8462. default: true
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(9, "feet"),
  8471. weight: math.unit(230, "kg"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/starry-aqua/front.svg"
  8475. }
  8476. },
  8477. back: {
  8478. height: math.unit(9, "feet"),
  8479. weight: math.unit(230, "kg"),
  8480. name: "Back",
  8481. image: {
  8482. source: "./media/characters/starry-aqua/back.svg"
  8483. }
  8484. },
  8485. hand: {
  8486. height: math.unit(9 * 0.1168, "feet"),
  8487. name: "Hand",
  8488. image: {
  8489. source: "./media/characters/starry-aqua/hand.svg"
  8490. }
  8491. },
  8492. foot: {
  8493. height: math.unit(9 * 0.18, "feet"),
  8494. name: "Foot",
  8495. image: {
  8496. source: "./media/characters/starry-aqua/foot.svg"
  8497. }
  8498. }
  8499. },
  8500. [
  8501. {
  8502. name: "Micro",
  8503. height: math.unit(3, "inches")
  8504. },
  8505. {
  8506. name: "Normal",
  8507. height: math.unit(9, "feet")
  8508. },
  8509. {
  8510. name: "Macro",
  8511. height: math.unit(300, "feet"),
  8512. default: true
  8513. },
  8514. {
  8515. name: "Megamacro",
  8516. height: math.unit(3200, "feet")
  8517. }
  8518. ]
  8519. ))
  8520. characterMakers.push(() => makeCharacter(
  8521. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8522. {
  8523. front: {
  8524. height: math.unit(6, "feet"),
  8525. weight: math.unit(230, "lb"),
  8526. name: "Front",
  8527. image: {
  8528. source: "./media/characters/luka/front.svg",
  8529. extra: 1,
  8530. bottom: 0.025
  8531. }
  8532. },
  8533. },
  8534. [
  8535. {
  8536. name: "Normal",
  8537. height: math.unit(12 + 8 / 12, "feet"),
  8538. default: true
  8539. },
  8540. {
  8541. name: "Minimacro",
  8542. height: math.unit(20, "feet")
  8543. },
  8544. {
  8545. name: "Macro",
  8546. height: math.unit(250, "feet")
  8547. },
  8548. {
  8549. name: "Megamacro",
  8550. height: math.unit(5, "miles")
  8551. },
  8552. {
  8553. name: "Gigamacro",
  8554. height: math.unit(8000, "miles")
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(6, "feet"),
  8563. weight: math.unit(150, "lb"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/natalie-nightring/front.svg",
  8567. extra: 1,
  8568. bottom: 0.06
  8569. }
  8570. },
  8571. },
  8572. [
  8573. {
  8574. name: "Uh Oh",
  8575. height: math.unit(0.1, "mm")
  8576. },
  8577. {
  8578. name: "Small",
  8579. height: math.unit(3, "inches")
  8580. },
  8581. {
  8582. name: "Human Scale",
  8583. height: math.unit(6, "feet")
  8584. },
  8585. {
  8586. name: "Librarian",
  8587. height: math.unit(50, "feet"),
  8588. default: true
  8589. },
  8590. {
  8591. name: "Immense",
  8592. height: math.unit(200, "miles")
  8593. },
  8594. ]
  8595. ))
  8596. characterMakers.push(() => makeCharacter(
  8597. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8598. {
  8599. front: {
  8600. height: math.unit(6, "feet"),
  8601. weight: math.unit(180, "lbs"),
  8602. name: "Front",
  8603. image: {
  8604. source: "./media/characters/danni-rosie/front.svg",
  8605. extra: 1260 / 1128,
  8606. bottom: 0.022
  8607. }
  8608. },
  8609. },
  8610. [
  8611. {
  8612. name: "Micro",
  8613. height: math.unit(2, "inches"),
  8614. default: true
  8615. },
  8616. ]
  8617. ))
  8618. characterMakers.push(() => makeCharacter(
  8619. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8620. {
  8621. front: {
  8622. height: math.unit(5 + 9 / 12, "feet"),
  8623. weight: math.unit(220, "lb"),
  8624. name: "Front",
  8625. image: {
  8626. source: "./media/characters/samantha-kruse/front.svg",
  8627. extra: (985 / 935),
  8628. bottom: 0.03
  8629. }
  8630. },
  8631. frontUndressed: {
  8632. height: math.unit(5 + 9 / 12, "feet"),
  8633. weight: math.unit(220, "lb"),
  8634. name: "Front (Undressed)",
  8635. image: {
  8636. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8637. extra: (973 / 923),
  8638. bottom: 0.025
  8639. }
  8640. },
  8641. fat: {
  8642. height: math.unit(5 + 9 / 12, "feet"),
  8643. weight: math.unit(900, "lb"),
  8644. name: "Front (Fat)",
  8645. image: {
  8646. source: "./media/characters/samantha-kruse/fat.svg",
  8647. extra: 2688 / 2561
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(5 + 9 / 12, "feet"),
  8655. default: true
  8656. }
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8661. {
  8662. back: {
  8663. height: math.unit(5 + 4 / 12, "feet"),
  8664. weight: math.unit(4963, "lb"),
  8665. name: "Back",
  8666. image: {
  8667. source: "./media/characters/amelia-rosie/back.svg",
  8668. extra: 1113 / 963,
  8669. bottom: 0.01
  8670. }
  8671. },
  8672. },
  8673. [
  8674. {
  8675. name: "Level 0",
  8676. height: math.unit(5 + 4 / 12, "feet")
  8677. },
  8678. {
  8679. name: "Level 1",
  8680. height: math.unit(164597, "feet"),
  8681. default: true
  8682. },
  8683. {
  8684. name: "Level 2",
  8685. height: math.unit(956243, "miles")
  8686. },
  8687. {
  8688. name: "Level 3",
  8689. height: math.unit(29421709423, "miles")
  8690. },
  8691. {
  8692. name: "Level 4",
  8693. height: math.unit(154, "lightyears")
  8694. },
  8695. {
  8696. name: "Level 5",
  8697. height: math.unit(4738272, "lightyears")
  8698. },
  8699. {
  8700. name: "Level 6",
  8701. height: math.unit(145787152896, "lightyears")
  8702. },
  8703. ]
  8704. ))
  8705. characterMakers.push(() => makeCharacter(
  8706. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8707. {
  8708. front: {
  8709. height: math.unit(5 + 11 / 12, "feet"),
  8710. weight: math.unit(65, "kg"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/rook-kitara/front.svg",
  8714. extra: 1347 / 1274,
  8715. bottom: 0.005
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Totally Unfair",
  8722. height: math.unit(1.8, "mm")
  8723. },
  8724. {
  8725. name: "Lap Rookie",
  8726. height: math.unit(1.4, "feet")
  8727. },
  8728. {
  8729. name: "Normal",
  8730. height: math.unit(5 + 11 / 12, "feet"),
  8731. default: true
  8732. },
  8733. {
  8734. name: "How Did This Happen",
  8735. height: math.unit(80, "miles")
  8736. }
  8737. ]
  8738. ))
  8739. characterMakers.push(() => makeCharacter(
  8740. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8741. {
  8742. front: {
  8743. height: math.unit(7, "feet"),
  8744. weight: math.unit(300, "lb"),
  8745. name: "Front",
  8746. image: {
  8747. source: "./media/characters/pisces/front.svg",
  8748. extra: 2255 / 2115,
  8749. bottom: 0.03
  8750. }
  8751. },
  8752. back: {
  8753. height: math.unit(7, "feet"),
  8754. weight: math.unit(300, "lb"),
  8755. name: "Back",
  8756. image: {
  8757. source: "./media/characters/pisces/back.svg",
  8758. extra: 2146 / 2055,
  8759. bottom: 0.04
  8760. }
  8761. },
  8762. },
  8763. [
  8764. {
  8765. name: "Normal",
  8766. height: math.unit(7, "feet"),
  8767. default: true
  8768. },
  8769. {
  8770. name: "Swimming Pool",
  8771. height: math.unit(12.2, "meters")
  8772. },
  8773. {
  8774. name: "Olympic Swimming Pool",
  8775. height: math.unit(56.3, "meters")
  8776. },
  8777. {
  8778. name: "Lake Superior",
  8779. height: math.unit(93900, "meters")
  8780. },
  8781. {
  8782. name: "Mediterranean Sea",
  8783. height: math.unit(644457, "meters")
  8784. },
  8785. {
  8786. name: "World's Oceans",
  8787. height: math.unit(4567491, "meters")
  8788. },
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(2.3, "meters"),
  8796. weight: math.unit(120, "kg"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/zelas/front.svg"
  8800. }
  8801. },
  8802. side: {
  8803. height: math.unit(2.3, "meters"),
  8804. weight: math.unit(120, "kg"),
  8805. name: "Side",
  8806. image: {
  8807. source: "./media/characters/zelas/side.svg"
  8808. }
  8809. },
  8810. back: {
  8811. height: math.unit(2.3, "meters"),
  8812. weight: math.unit(120, "kg"),
  8813. name: "Back",
  8814. image: {
  8815. source: "./media/characters/zelas/back.svg"
  8816. }
  8817. },
  8818. foot: {
  8819. height: math.unit(1.116, "feet"),
  8820. name: "Foot",
  8821. image: {
  8822. source: "./media/characters/zelas/foot.svg"
  8823. }
  8824. },
  8825. },
  8826. [
  8827. {
  8828. name: "Normal",
  8829. height: math.unit(2.3, "meters")
  8830. },
  8831. {
  8832. name: "Macro",
  8833. height: math.unit(30, "meters"),
  8834. default: true
  8835. },
  8836. ]
  8837. ))
  8838. characterMakers.push(() => makeCharacter(
  8839. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8840. {
  8841. front: {
  8842. height: math.unit(1, "inch"),
  8843. weight: math.unit(0.21, "grams"),
  8844. name: "Front",
  8845. image: {
  8846. source: "./media/characters/talbot/front.svg",
  8847. extra: 594 / 544
  8848. }
  8849. },
  8850. },
  8851. [
  8852. {
  8853. name: "Micro",
  8854. height: math.unit(1, "inch"),
  8855. default: true
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8861. {
  8862. front: {
  8863. height: math.unit(3 + 3 / 12, "feet"),
  8864. weight: math.unit(51.8, "lb"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/fliss/front.svg",
  8868. extra: 840 / 640
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Teeny Tiny",
  8875. height: math.unit(1, "mm")
  8876. },
  8877. {
  8878. name: "Small",
  8879. height: math.unit(1, "inch"),
  8880. default: true
  8881. },
  8882. {
  8883. name: "Standard Sylveon",
  8884. height: math.unit(3 + 3 / 12, "feet")
  8885. },
  8886. {
  8887. name: "Large Nuisance",
  8888. height: math.unit(33, "feet")
  8889. },
  8890. {
  8891. name: "City Filler",
  8892. height: math.unit(3000, "feet")
  8893. },
  8894. {
  8895. name: "New Horizon",
  8896. height: math.unit(6000, "miles")
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(5, "cm"),
  8905. weight: math.unit(1.94, "g"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/fleta/front.svg",
  8909. extra: 835 / 803
  8910. }
  8911. },
  8912. back: {
  8913. height: math.unit(5, "cm"),
  8914. weight: math.unit(1.94, "g"),
  8915. name: "Back",
  8916. image: {
  8917. source: "./media/characters/fleta/back.svg",
  8918. extra: 835 / 803
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Micro",
  8925. height: math.unit(5, "cm"),
  8926. default: true
  8927. },
  8928. ]
  8929. ))
  8930. characterMakers.push(() => makeCharacter(
  8931. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8932. {
  8933. front: {
  8934. height: math.unit(6, "feet"),
  8935. weight: math.unit(225, "lb"),
  8936. name: "Front",
  8937. image: {
  8938. source: "./media/characters/dominic/front.svg",
  8939. extra: 1770 / 1620,
  8940. bottom: 0.025
  8941. }
  8942. },
  8943. back: {
  8944. height: math.unit(6, "feet"),
  8945. weight: math.unit(225, "lb"),
  8946. name: "Back",
  8947. image: {
  8948. source: "./media/characters/dominic/back.svg",
  8949. extra: 1745 / 1620,
  8950. bottom: 0.065
  8951. }
  8952. },
  8953. },
  8954. [
  8955. {
  8956. name: "Nano",
  8957. height: math.unit(0.1, "mm")
  8958. },
  8959. {
  8960. name: "Micro-",
  8961. height: math.unit(1, "mm")
  8962. },
  8963. {
  8964. name: "Micro",
  8965. height: math.unit(4, "inches")
  8966. },
  8967. {
  8968. name: "Normal",
  8969. height: math.unit(6 + 4 / 12, "feet"),
  8970. default: true
  8971. },
  8972. {
  8973. name: "Macro",
  8974. height: math.unit(115, "feet")
  8975. },
  8976. {
  8977. name: "Macro+",
  8978. height: math.unit(955, "feet")
  8979. },
  8980. {
  8981. name: "Megamacro",
  8982. height: math.unit(8990, "feet")
  8983. },
  8984. {
  8985. name: "Gigmacro",
  8986. height: math.unit(9310, "miles")
  8987. },
  8988. {
  8989. name: "Teramacro",
  8990. height: math.unit(1567005010, "miles")
  8991. },
  8992. {
  8993. name: "Examacro",
  8994. height: math.unit(1425, "parsecs")
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(400, "feet"),
  9003. weight: math.unit(44444444, "lb"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/major-colonel/front.svg"
  9007. }
  9008. },
  9009. back: {
  9010. height: math.unit(400, "feet"),
  9011. weight: math.unit(44444444, "lb"),
  9012. name: "Back",
  9013. image: {
  9014. source: "./media/characters/major-colonel/back.svg"
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(400, "feet"),
  9022. default: true
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9028. {
  9029. catFront: {
  9030. height: math.unit(6, "feet"),
  9031. weight: math.unit(120, "lb"),
  9032. name: "Front (Cat Side)",
  9033. image: {
  9034. source: "./media/characters/axel-lycan/cat-front.svg",
  9035. extra: 430 / 402,
  9036. bottom: 43 / 472.35
  9037. }
  9038. },
  9039. catBack: {
  9040. height: math.unit(6, "feet"),
  9041. weight: math.unit(120, "lb"),
  9042. name: "Back (Cat Side)",
  9043. image: {
  9044. source: "./media/characters/axel-lycan/cat-back.svg",
  9045. extra: 447 / 419,
  9046. bottom: 23.3 / 469
  9047. }
  9048. },
  9049. wolfFront: {
  9050. height: math.unit(6, "feet"),
  9051. weight: math.unit(120, "lb"),
  9052. name: "Front (Wolf Side)",
  9053. image: {
  9054. source: "./media/characters/axel-lycan/wolf-front.svg",
  9055. extra: 485 / 456,
  9056. bottom: 19 / 504
  9057. }
  9058. },
  9059. wolfBack: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(120, "lb"),
  9062. name: "Back (Wolf Side)",
  9063. image: {
  9064. source: "./media/characters/axel-lycan/wolf-back.svg",
  9065. extra: 475 / 438,
  9066. bottom: 39.2 / 514
  9067. }
  9068. },
  9069. },
  9070. [
  9071. {
  9072. name: "Macro",
  9073. height: math.unit(1, "km"),
  9074. default: true
  9075. },
  9076. ]
  9077. ))
  9078. characterMakers.push(() => makeCharacter(
  9079. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9080. {
  9081. front: {
  9082. height: math.unit(5 + 9 / 12, "feet"),
  9083. weight: math.unit(175, "lb"),
  9084. name: "Front",
  9085. image: {
  9086. source: "./media/characters/vanrel-hyena/front.svg",
  9087. extra: 1086 / 1010,
  9088. bottom: 0.04
  9089. }
  9090. },
  9091. },
  9092. [
  9093. {
  9094. name: "Normal",
  9095. height: math.unit(5 + 9 / 12, "feet"),
  9096. default: true
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9102. {
  9103. front: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(103, "lb"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/abbott-absol/front.svg",
  9109. extra: 2010 / 1842
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Megamicro",
  9116. height: math.unit(0.1, "mm")
  9117. },
  9118. {
  9119. name: "Micro",
  9120. height: math.unit(1, "inch")
  9121. },
  9122. {
  9123. name: "Normal",
  9124. height: math.unit(6, "feet"),
  9125. default: true
  9126. },
  9127. ]
  9128. ))
  9129. characterMakers.push(() => makeCharacter(
  9130. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9131. {
  9132. front: {
  9133. height: math.unit(6, "feet"),
  9134. weight: math.unit(264, "lb"),
  9135. name: "Front",
  9136. image: {
  9137. source: "./media/characters/hector/front.svg",
  9138. extra: 2280 / 2130,
  9139. bottom: 0.07
  9140. }
  9141. },
  9142. },
  9143. [
  9144. {
  9145. name: "Normal",
  9146. height: math.unit(12.25, "foot"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "Macro",
  9151. height: math.unit(160, "feet")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(6, "feet"),
  9160. weight: math.unit(150, "lb"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/sal/front.svg",
  9164. extra: 1846 / 1699,
  9165. bottom: 0.04
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Megamacro",
  9172. height: math.unit(10, "miles"),
  9173. default: true
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9179. {
  9180. front: {
  9181. height: math.unit(3, "meters"),
  9182. weight: math.unit(450, "kg"),
  9183. name: "front",
  9184. image: {
  9185. source: "./media/characters/ranger/front.svg",
  9186. extra: 2401 / 2243,
  9187. bottom: 0.05
  9188. }
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Normal",
  9194. height: math.unit(3, "meters"),
  9195. default: true
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(14, "feet"),
  9204. weight: math.unit(800, "kg"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/theresa/front.svg",
  9208. extra: 3575 / 3346,
  9209. bottom: 0.03
  9210. }
  9211. },
  9212. },
  9213. [
  9214. {
  9215. name: "Normal",
  9216. height: math.unit(14, "feet"),
  9217. default: true
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9223. {
  9224. front: {
  9225. height: math.unit(6, "feet"),
  9226. weight: math.unit(3, "kg"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/ine/front.svg",
  9230. extra: 678 / 539,
  9231. bottom: 0.023
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Normal",
  9238. height: math.unit(2.265, "feet"),
  9239. default: true
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9245. {
  9246. front: {
  9247. height: math.unit(5, "feet"),
  9248. weight: math.unit(30, "kg"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/vial/front.svg",
  9252. extra: 1365 / 1277,
  9253. bottom: 0.04
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(5, "feet"),
  9261. default: true
  9262. },
  9263. ]
  9264. ))
  9265. characterMakers.push(() => makeCharacter(
  9266. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9267. {
  9268. side: {
  9269. height: math.unit(3.4, "meters"),
  9270. weight: math.unit(1000, "lb"),
  9271. name: "Side",
  9272. image: {
  9273. source: "./media/characters/rovoska/side.svg",
  9274. extra: 4403 / 1515
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(3.4, "meters"),
  9282. default: true
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(8, "feet"),
  9291. weight: math.unit(315, "lb"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/gunner-rotthbauer/front.svg"
  9295. }
  9296. },
  9297. back: {
  9298. height: math.unit(8, "feet"),
  9299. weight: math.unit(315, "lb"),
  9300. name: "Back",
  9301. image: {
  9302. source: "./media/characters/gunner-rotthbauer/back.svg"
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Micro",
  9309. height: math.unit(3.5, "inches")
  9310. },
  9311. {
  9312. name: "Normal",
  9313. height: math.unit(8, "feet"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Macro",
  9318. height: math.unit(250, "feet")
  9319. },
  9320. {
  9321. name: "Megamacro",
  9322. height: math.unit(1, "AU")
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(5 + 5 / 12, "feet"),
  9331. weight: math.unit(140, "lb"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/allatia/front.svg",
  9335. extra: 1227 / 1180,
  9336. bottom: 0.027
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(5 + 5 / 12, "feet")
  9344. },
  9345. {
  9346. name: "Macro",
  9347. height: math.unit(250, "feet"),
  9348. default: true
  9349. },
  9350. {
  9351. name: "Megamacro",
  9352. height: math.unit(8, "miles")
  9353. }
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(6, "feet"),
  9361. weight: math.unit(120, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/tene/front.svg",
  9365. extra: 1728 / 1578,
  9366. bottom: 0.022
  9367. }
  9368. },
  9369. stomping: {
  9370. height: math.unit(2.025, "meters"),
  9371. weight: math.unit(120, "lb"),
  9372. name: "Stomping",
  9373. image: {
  9374. source: "./media/characters/tene/stomping.svg",
  9375. extra: 938 / 873,
  9376. bottom: 0.01
  9377. }
  9378. },
  9379. sitting: {
  9380. height: math.unit(1, "meter"),
  9381. weight: math.unit(120, "lb"),
  9382. name: "Sitting",
  9383. image: {
  9384. source: "./media/characters/tene/sitting.svg",
  9385. extra: 437 / 415,
  9386. bottom: 0.1
  9387. }
  9388. },
  9389. feral: {
  9390. height: math.unit(3.9, "feet"),
  9391. weight: math.unit(250, "lb"),
  9392. name: "Feral",
  9393. image: {
  9394. source: "./media/characters/tene/feral.svg",
  9395. extra: 717 / 458,
  9396. bottom: 0.179
  9397. }
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Normal",
  9403. height: math.unit(6, "feet")
  9404. },
  9405. {
  9406. name: "Macro",
  9407. height: math.unit(300, "feet"),
  9408. default: true
  9409. },
  9410. {
  9411. name: "Megamacro",
  9412. height: math.unit(5, "miles")
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9418. {
  9419. side: {
  9420. height: math.unit(6, "feet"),
  9421. name: "Side",
  9422. image: {
  9423. source: "./media/characters/evander/side.svg",
  9424. extra: 877 / 477
  9425. }
  9426. },
  9427. },
  9428. [
  9429. {
  9430. name: "Normal",
  9431. height: math.unit(0.83, "meters"),
  9432. default: true
  9433. },
  9434. ]
  9435. ))
  9436. characterMakers.push(() => makeCharacter(
  9437. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9438. {
  9439. front: {
  9440. height: math.unit(12, "feet"),
  9441. weight: math.unit(1000, "lb"),
  9442. name: "Front",
  9443. image: {
  9444. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9445. extra: 1762 / 1611
  9446. }
  9447. },
  9448. back: {
  9449. height: math.unit(12, "feet"),
  9450. weight: math.unit(1000, "lb"),
  9451. name: "Back",
  9452. image: {
  9453. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9454. extra: 1762 / 1611
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(12, "feet"),
  9462. default: true
  9463. },
  9464. {
  9465. name: "Kaiju",
  9466. height: math.unit(150, "feet")
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9472. {
  9473. front: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(150, "lb"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/zero-alurus/front.svg"
  9479. }
  9480. },
  9481. back: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(150, "lb"),
  9484. name: "Back",
  9485. image: {
  9486. source: "./media/characters/zero-alurus/back.svg"
  9487. }
  9488. },
  9489. },
  9490. [
  9491. {
  9492. name: "Normal",
  9493. height: math.unit(5 + 10 / 12, "feet")
  9494. },
  9495. {
  9496. name: "Macro",
  9497. height: math.unit(60, "feet"),
  9498. default: true
  9499. },
  9500. {
  9501. name: "Macro+",
  9502. height: math.unit(450, "feet")
  9503. },
  9504. ]
  9505. ))
  9506. characterMakers.push(() => makeCharacter(
  9507. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9508. {
  9509. front: {
  9510. height: math.unit(6, "feet"),
  9511. weight: math.unit(200, "lb"),
  9512. name: "Front",
  9513. image: {
  9514. source: "./media/characters/mega-shi/front.svg",
  9515. extra: 1279 / 1250,
  9516. bottom: 0.02
  9517. }
  9518. },
  9519. back: {
  9520. height: math.unit(6, "feet"),
  9521. weight: math.unit(200, "lb"),
  9522. name: "Back",
  9523. image: {
  9524. source: "./media/characters/mega-shi/back.svg",
  9525. extra: 1279 / 1250,
  9526. bottom: 0.02
  9527. }
  9528. },
  9529. },
  9530. [
  9531. {
  9532. name: "Micro",
  9533. height: math.unit(16 + 6 / 12, "feet")
  9534. },
  9535. {
  9536. name: "Third Dimension",
  9537. height: math.unit(40, "meters")
  9538. },
  9539. {
  9540. name: "Normal",
  9541. height: math.unit(660, "feet"),
  9542. default: true
  9543. },
  9544. {
  9545. name: "Megamacro",
  9546. height: math.unit(10, "miles")
  9547. },
  9548. {
  9549. name: "Planetary Launch",
  9550. height: math.unit(500, "miles")
  9551. },
  9552. {
  9553. name: "Interstellar",
  9554. height: math.unit(1e9, "miles")
  9555. },
  9556. {
  9557. name: "Leaving the Universe",
  9558. height: math.unit(1, "gigaparsec")
  9559. },
  9560. {
  9561. name: "Travelling Universes",
  9562. height: math.unit(30e15, "parsecs")
  9563. },
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(6, "feet"),
  9571. weight: math.unit(150, "lb"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/odyssey/front.svg",
  9575. extra: 1782 / 1582,
  9576. bottom: 0.01
  9577. }
  9578. },
  9579. side: {
  9580. height: math.unit(5.7, "feet"),
  9581. weight: math.unit(140, "lb"),
  9582. name: "Side",
  9583. image: {
  9584. source: "./media/characters/odyssey/side.svg",
  9585. extra: 6462 / 5700
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(5 + 4 / 12, "feet")
  9593. },
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(1, "km")
  9597. },
  9598. {
  9599. name: "Megamacro",
  9600. height: math.unit(3000, "km")
  9601. },
  9602. {
  9603. name: "Gigamacro",
  9604. height: math.unit(1, "AU"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Omniversal",
  9609. height: math.unit(100e14, "lightyears")
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(300, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/mekuto/front.svg",
  9622. extra: 921 / 832,
  9623. bottom: 0.03
  9624. }
  9625. },
  9626. hand: {
  9627. height: math.unit(6 / 10.24, "feet"),
  9628. name: "Hand",
  9629. image: {
  9630. source: "./media/characters/mekuto/hand.svg"
  9631. }
  9632. },
  9633. foot: {
  9634. height: math.unit(6 / 5.05, "feet"),
  9635. name: "Foot",
  9636. image: {
  9637. source: "./media/characters/mekuto/foot.svg"
  9638. }
  9639. },
  9640. },
  9641. [
  9642. {
  9643. name: "Minimicro",
  9644. height: math.unit(0.2, "inches")
  9645. },
  9646. {
  9647. name: "Micro",
  9648. height: math.unit(1.5, "inches")
  9649. },
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(5 + 11 / 12, "feet"),
  9653. default: true
  9654. },
  9655. {
  9656. name: "Minimacro",
  9657. height: math.unit(17 + 9 / 12, "feet")
  9658. },
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(177.5, "feet")
  9662. },
  9663. {
  9664. name: "Megamacro",
  9665. height: math.unit(152, "miles")
  9666. },
  9667. ]
  9668. ))
  9669. characterMakers.push(() => makeCharacter(
  9670. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9671. {
  9672. front: {
  9673. height: math.unit(6.5, "inches"),
  9674. weight: math.unit(13, "oz"),
  9675. name: "Front",
  9676. image: {
  9677. source: "./media/characters/dafydd-tomos/front.svg",
  9678. extra: 2990 / 2603,
  9679. bottom: 0.03
  9680. }
  9681. },
  9682. },
  9683. [
  9684. {
  9685. name: "Micro",
  9686. height: math.unit(6.5, "inches"),
  9687. default: true
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(6, "feet"),
  9696. weight: math.unit(150, "lb"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/splinter/front.svg",
  9700. extra: 2990 / 2882,
  9701. bottom: 0.04
  9702. }
  9703. },
  9704. back: {
  9705. height: math.unit(6, "feet"),
  9706. weight: math.unit(150, "lb"),
  9707. name: "Back",
  9708. image: {
  9709. source: "./media/characters/splinter/back.svg",
  9710. extra: 2990 / 2882,
  9711. bottom: 0.04
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(6, "feet")
  9719. },
  9720. {
  9721. name: "Macro",
  9722. height: math.unit(230, "meters"),
  9723. default: true
  9724. },
  9725. ]
  9726. ))
  9727. characterMakers.push(() => makeCharacter(
  9728. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9729. {
  9730. front: {
  9731. height: math.unit(4 + 10 / 12, "feet"),
  9732. weight: math.unit(480, "lb"),
  9733. name: "Front",
  9734. image: {
  9735. source: "./media/characters/snow-gabumon/front.svg",
  9736. extra: 1140 / 963,
  9737. bottom: 0.058
  9738. }
  9739. },
  9740. back: {
  9741. height: math.unit(4 + 10 / 12, "feet"),
  9742. weight: math.unit(480, "lb"),
  9743. name: "Back",
  9744. image: {
  9745. source: "./media/characters/snow-gabumon/back.svg",
  9746. extra: 1115 / 962,
  9747. bottom: 0.041
  9748. }
  9749. },
  9750. frontUndresed: {
  9751. height: math.unit(4 + 10 / 12, "feet"),
  9752. weight: math.unit(480, "lb"),
  9753. name: "Front (Undressed)",
  9754. image: {
  9755. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9756. extra: 1061 / 960,
  9757. bottom: 0.045
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(1, "inch")
  9765. },
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(4 + 10 / 12, "feet"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(200, "feet")
  9774. },
  9775. {
  9776. name: "Megamacro",
  9777. height: math.unit(120, "miles")
  9778. },
  9779. {
  9780. name: "Gigamacro",
  9781. height: math.unit(9800, "miles")
  9782. },
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9787. {
  9788. front: {
  9789. height: math.unit(1.7, "meters"),
  9790. weight: math.unit(140, "lb"),
  9791. name: "Front",
  9792. image: {
  9793. source: "./media/characters/moody/front.svg",
  9794. extra: 3226 / 3007,
  9795. bottom: 0.087
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Micro",
  9802. height: math.unit(1, "mm")
  9803. },
  9804. {
  9805. name: "Normal",
  9806. height: math.unit(1.7, "meters"),
  9807. default: true
  9808. },
  9809. {
  9810. name: "Macro",
  9811. height: math.unit(80, "meters")
  9812. },
  9813. {
  9814. name: "Macro+",
  9815. height: math.unit(500, "meters")
  9816. },
  9817. ]
  9818. ))
  9819. characterMakers.push(() => makeCharacter(
  9820. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9821. {
  9822. front: {
  9823. height: math.unit(6, "feet"),
  9824. weight: math.unit(150, "lb"),
  9825. name: "Front",
  9826. image: {
  9827. source: "./media/characters/zyas/front.svg",
  9828. extra: 1180 / 1120,
  9829. bottom: 0.045
  9830. }
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Normal",
  9836. height: math.unit(10, "feet"),
  9837. default: true
  9838. },
  9839. {
  9840. name: "Macro",
  9841. height: math.unit(500, "feet")
  9842. },
  9843. {
  9844. name: "Megamacro",
  9845. height: math.unit(5, "miles")
  9846. },
  9847. {
  9848. name: "Teramacro",
  9849. height: math.unit(150000, "miles")
  9850. },
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9855. {
  9856. front: {
  9857. height: math.unit(6, "feet"),
  9858. weight: math.unit(150, "lb"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/cuon/front.svg",
  9862. extra: 1390 / 1320,
  9863. bottom: 0.008
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Micro",
  9870. height: math.unit(3, "inches")
  9871. },
  9872. {
  9873. name: "Normal",
  9874. height: math.unit(18 + 9 / 12, "feet"),
  9875. default: true
  9876. },
  9877. {
  9878. name: "Macro",
  9879. height: math.unit(360, "feet")
  9880. },
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(360, "miles")
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9889. {
  9890. front: {
  9891. height: math.unit(2.4, "meters"),
  9892. weight: math.unit(70, "kg"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/nyanuxk/front.svg",
  9896. extra: 1172 / 1084,
  9897. bottom: 0.065
  9898. }
  9899. },
  9900. side: {
  9901. height: math.unit(2.4, "meters"),
  9902. weight: math.unit(70, "kg"),
  9903. name: "Side",
  9904. image: {
  9905. source: "./media/characters/nyanuxk/side.svg",
  9906. extra: 1190 / 1132,
  9907. bottom: 0.007
  9908. }
  9909. },
  9910. back: {
  9911. height: math.unit(2.4, "meters"),
  9912. weight: math.unit(70, "kg"),
  9913. name: "Back",
  9914. image: {
  9915. source: "./media/characters/nyanuxk/back.svg",
  9916. extra: 1200 / 1141,
  9917. bottom: 0.015
  9918. }
  9919. },
  9920. foot: {
  9921. height: math.unit(0.52, "meters"),
  9922. name: "Foot",
  9923. image: {
  9924. source: "./media/characters/nyanuxk/foot.svg"
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Micro",
  9931. height: math.unit(2, "cm")
  9932. },
  9933. {
  9934. name: "Normal",
  9935. height: math.unit(2.4, "meters"),
  9936. default: true
  9937. },
  9938. {
  9939. name: "Smaller Macro",
  9940. height: math.unit(120, "meters")
  9941. },
  9942. {
  9943. name: "Bigger Macro",
  9944. height: math.unit(1.2, "km")
  9945. },
  9946. {
  9947. name: "Megamacro",
  9948. height: math.unit(15, "kilometers")
  9949. },
  9950. {
  9951. name: "Gigamacro",
  9952. height: math.unit(2000, "km")
  9953. },
  9954. {
  9955. name: "Teramacro",
  9956. height: math.unit(500000, "km")
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9962. {
  9963. side: {
  9964. height: math.unit(6, "feet"),
  9965. name: "Side",
  9966. image: {
  9967. source: "./media/characters/ailbhe/side.svg",
  9968. extra: 757 / 464,
  9969. bottom: 0.041
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(1.07, "meters"),
  9977. default: true
  9978. },
  9979. ]
  9980. ))
  9981. characterMakers.push(() => makeCharacter(
  9982. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9983. {
  9984. front: {
  9985. height: math.unit(6, "feet"),
  9986. weight: math.unit(120, "kg"),
  9987. name: "Front",
  9988. image: {
  9989. source: "./media/characters/zevulfius/front.svg",
  9990. extra: 965 / 903
  9991. }
  9992. },
  9993. side: {
  9994. height: math.unit(6, "feet"),
  9995. weight: math.unit(120, "kg"),
  9996. name: "Side",
  9997. image: {
  9998. source: "./media/characters/zevulfius/side.svg",
  9999. extra: 939 / 900
  10000. }
  10001. },
  10002. back: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(120, "kg"),
  10005. name: "Back",
  10006. image: {
  10007. source: "./media/characters/zevulfius/back.svg",
  10008. extra: 918 / 854,
  10009. bottom: 0.005
  10010. }
  10011. },
  10012. foot: {
  10013. height: math.unit(6 / 3.72, "feet"),
  10014. name: "Foot",
  10015. image: {
  10016. source: "./media/characters/zevulfius/foot.svg"
  10017. }
  10018. },
  10019. },
  10020. [
  10021. {
  10022. name: "Macro",
  10023. height: math.unit(750, "meters")
  10024. },
  10025. {
  10026. name: "Megamacro",
  10027. height: math.unit(20, "km"),
  10028. default: true
  10029. },
  10030. {
  10031. name: "Gigamacro",
  10032. height: math.unit(2000, "km")
  10033. },
  10034. {
  10035. name: "Teramacro",
  10036. height: math.unit(250000, "km")
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(100, "feet"),
  10045. weight: math.unit(350, "kg"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/rikes/front.svg",
  10049. extra: 1565 / 1483,
  10050. bottom: 0.017
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Macro",
  10057. height: math.unit(100, "feet"),
  10058. default: true
  10059. },
  10060. ]
  10061. ))
  10062. characterMakers.push(() => makeCharacter(
  10063. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10064. {
  10065. anthro: {
  10066. height: math.unit(8, "feet"),
  10067. weight: math.unit(120, "kg"),
  10068. name: "Anthro",
  10069. image: {
  10070. source: "./media/characters/adam-silver-mane/anthro.svg",
  10071. extra: 5743 / 5339,
  10072. bottom: 0.07
  10073. }
  10074. },
  10075. taur: {
  10076. height: math.unit(16, "feet"),
  10077. weight: math.unit(1500, "kg"),
  10078. name: "Taur",
  10079. image: {
  10080. source: "./media/characters/adam-silver-mane/taur.svg",
  10081. extra: 1713 / 1571,
  10082. bottom: 0.01
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(8, "feet")
  10090. },
  10091. {
  10092. name: "Minimacro",
  10093. height: math.unit(80, "feet")
  10094. },
  10095. {
  10096. name: "Macro",
  10097. height: math.unit(800, "feet"),
  10098. default: true
  10099. },
  10100. {
  10101. name: "Megamacro",
  10102. height: math.unit(8000, "feet")
  10103. },
  10104. {
  10105. name: "Gigamacro",
  10106. height: math.unit(800, "miles")
  10107. },
  10108. {
  10109. name: "Teramacro",
  10110. height: math.unit(80000, "miles")
  10111. },
  10112. {
  10113. name: "Celestial",
  10114. height: math.unit(8e6, "miles")
  10115. },
  10116. {
  10117. name: "Star Dragon",
  10118. height: math.unit(800000, "parsecs")
  10119. },
  10120. {
  10121. name: "Godly",
  10122. height: math.unit(800, "teraparsecs")
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(150, "lb"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/ky'owin/front.svg",
  10135. extra: 3888 / 3068,
  10136. bottom: 0.015
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Normal",
  10143. height: math.unit(6 + 8 / 12, "feet")
  10144. },
  10145. {
  10146. name: "Large",
  10147. height: math.unit(68, "feet")
  10148. },
  10149. {
  10150. name: "Macro",
  10151. height: math.unit(132, "feet")
  10152. },
  10153. {
  10154. name: "Macro+",
  10155. height: math.unit(340, "feet")
  10156. },
  10157. {
  10158. name: "Macro++",
  10159. height: math.unit(680, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Megamacro",
  10164. height: math.unit(1, "mile")
  10165. },
  10166. {
  10167. name: "Megamacro+",
  10168. height: math.unit(10, "miles")
  10169. },
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10174. {
  10175. front: {
  10176. height: math.unit(4, "feet"),
  10177. weight: math.unit(50, "lb"),
  10178. name: "Front",
  10179. image: {
  10180. source: "./media/characters/mal/front.svg",
  10181. extra: 785 / 724,
  10182. bottom: 0.07
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Micro",
  10189. height: math.unit(4, "inches")
  10190. },
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(4, "feet"),
  10194. default: true
  10195. },
  10196. {
  10197. name: "Macro",
  10198. height: math.unit(200, "feet")
  10199. },
  10200. ]
  10201. ))
  10202. characterMakers.push(() => makeCharacter(
  10203. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10204. {
  10205. front: {
  10206. height: math.unit(6, "feet"),
  10207. weight: math.unit(150, "lb"),
  10208. name: "Front",
  10209. image: {
  10210. source: "./media/characters/jordan-deware/front.svg",
  10211. extra: 1191 / 1012
  10212. }
  10213. },
  10214. },
  10215. [
  10216. {
  10217. name: "Nano",
  10218. height: math.unit(0.01, "mm")
  10219. },
  10220. {
  10221. name: "Minimicro",
  10222. height: math.unit(1, "mm")
  10223. },
  10224. {
  10225. name: "Micro",
  10226. height: math.unit(0.5, "inches")
  10227. },
  10228. {
  10229. name: "Normal",
  10230. height: math.unit(4, "feet"),
  10231. default: true
  10232. },
  10233. {
  10234. name: "Minimacro",
  10235. height: math.unit(40, "meters")
  10236. },
  10237. {
  10238. name: "Small Macro",
  10239. height: math.unit(400, "meters")
  10240. },
  10241. {
  10242. name: "Macro",
  10243. height: math.unit(4, "miles")
  10244. },
  10245. {
  10246. name: "Megamacro",
  10247. height: math.unit(40, "miles")
  10248. },
  10249. {
  10250. name: "Megamacro+",
  10251. height: math.unit(400, "miles")
  10252. },
  10253. {
  10254. name: "Gigamacro",
  10255. height: math.unit(400000, "miles")
  10256. },
  10257. ]
  10258. ))
  10259. characterMakers.push(() => makeCharacter(
  10260. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10261. {
  10262. side: {
  10263. height: math.unit(6, "feet"),
  10264. weight: math.unit(150, "lb"),
  10265. name: "Side",
  10266. image: {
  10267. source: "./media/characters/kimiko/side.svg",
  10268. extra: 600 / 358
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Normal",
  10275. height: math.unit(15, "feet"),
  10276. default: true
  10277. },
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(220, "feet")
  10281. },
  10282. {
  10283. name: "Macro+",
  10284. height: math.unit(1450, "feet")
  10285. },
  10286. {
  10287. name: "Megamacro",
  10288. height: math.unit(11500, "feet")
  10289. },
  10290. {
  10291. name: "Gigamacro",
  10292. height: math.unit(9500, "miles")
  10293. },
  10294. {
  10295. name: "Teramacro",
  10296. height: math.unit(2208005005, "miles")
  10297. },
  10298. {
  10299. name: "Examacro",
  10300. height: math.unit(2750, "parsecs")
  10301. },
  10302. {
  10303. name: "Zettamacro",
  10304. height: math.unit(101500, "parsecs")
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(70, "kg"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/andrew-sleepy/front.svg"
  10317. }
  10318. },
  10319. side: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(70, "kg"),
  10322. name: "Side",
  10323. image: {
  10324. source: "./media/characters/andrew-sleepy/side.svg"
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Micro",
  10331. height: math.unit(1, "mm"),
  10332. default: true
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(150, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/judio/front.svg",
  10345. extra: 1258 / 1110
  10346. }
  10347. },
  10348. },
  10349. [
  10350. {
  10351. name: "Normal",
  10352. height: math.unit(5 + 6 / 12, "feet")
  10353. },
  10354. {
  10355. name: "Macro",
  10356. height: math.unit(1000, "feet"),
  10357. default: true
  10358. },
  10359. {
  10360. name: "Megamacro",
  10361. height: math.unit(10, "miles")
  10362. },
  10363. ]
  10364. ))
  10365. characterMakers.push(() => makeCharacter(
  10366. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10367. {
  10368. front: {
  10369. height: math.unit(6, "feet"),
  10370. weight: math.unit(68, "kg"),
  10371. name: "Front",
  10372. image: {
  10373. source: "./media/characters/nomaxice/front.svg",
  10374. extra: 1498 / 1073,
  10375. bottom: 0.075
  10376. }
  10377. },
  10378. foot: {
  10379. height: math.unit(1.1, "feet"),
  10380. name: "Foot",
  10381. image: {
  10382. source: "./media/characters/nomaxice/foot.svg"
  10383. }
  10384. },
  10385. },
  10386. [
  10387. {
  10388. name: "Micro",
  10389. height: math.unit(8, "cm")
  10390. },
  10391. {
  10392. name: "Norm",
  10393. height: math.unit(1.82, "m")
  10394. },
  10395. {
  10396. name: "Norm+",
  10397. height: math.unit(8.8, "feet")
  10398. },
  10399. {
  10400. name: "Big",
  10401. height: math.unit(8, "meters"),
  10402. default: true
  10403. },
  10404. {
  10405. name: "Macro",
  10406. height: math.unit(18, "meters")
  10407. },
  10408. {
  10409. name: "Macro+",
  10410. height: math.unit(88, "meters")
  10411. },
  10412. ]
  10413. ))
  10414. characterMakers.push(() => makeCharacter(
  10415. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10416. {
  10417. front: {
  10418. height: math.unit(12, "feet"),
  10419. weight: math.unit(1.5, "tons"),
  10420. name: "Front",
  10421. image: {
  10422. source: "./media/characters/dydros/front.svg",
  10423. extra: 863 / 800,
  10424. bottom: 0.015
  10425. }
  10426. },
  10427. back: {
  10428. height: math.unit(12, "feet"),
  10429. weight: math.unit(1.5, "tons"),
  10430. name: "Back",
  10431. image: {
  10432. source: "./media/characters/dydros/back.svg",
  10433. extra: 900 / 843,
  10434. bottom: 0.005
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Normal",
  10441. height: math.unit(12, "feet"),
  10442. default: true
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10448. {
  10449. front: {
  10450. height: math.unit(6, "feet"),
  10451. weight: math.unit(100, "kg"),
  10452. name: "Front",
  10453. image: {
  10454. source: "./media/characters/riggi/front.svg",
  10455. extra: 5787 / 5303
  10456. }
  10457. },
  10458. hyper: {
  10459. height: math.unit(6 * 5 / 3, "feet"),
  10460. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10461. name: "Hyper",
  10462. image: {
  10463. source: "./media/characters/riggi/hyper.svg",
  10464. extra: 3595 / 3485
  10465. }
  10466. },
  10467. },
  10468. [
  10469. {
  10470. name: "Small Macro",
  10471. height: math.unit(50, "feet")
  10472. },
  10473. {
  10474. name: "Default",
  10475. height: math.unit(200, "feet"),
  10476. default: true
  10477. },
  10478. {
  10479. name: "Loom",
  10480. height: math.unit(10000, "feet")
  10481. },
  10482. {
  10483. name: "Cruising Altitude",
  10484. height: math.unit(30000, "feet")
  10485. },
  10486. {
  10487. name: "Megamacro",
  10488. height: math.unit(100, "miles")
  10489. },
  10490. {
  10491. name: "Continent Sized",
  10492. height: math.unit(2800, "miles")
  10493. },
  10494. {
  10495. name: "Earth Sized",
  10496. height: math.unit(8000, "miles")
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(6, "feet"),
  10505. weight: math.unit(250, "lb"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/alexi/front.svg",
  10509. extra: 3483 / 3291,
  10510. bottom: 0.04
  10511. }
  10512. },
  10513. back: {
  10514. height: math.unit(6, "feet"),
  10515. weight: math.unit(250, "lb"),
  10516. name: "Back",
  10517. image: {
  10518. source: "./media/characters/alexi/back.svg",
  10519. extra: 3533 / 3356,
  10520. bottom: 0.021
  10521. }
  10522. },
  10523. frontTransforming: {
  10524. height: math.unit(8.58, "feet"),
  10525. weight: math.unit(1300, "lb"),
  10526. name: "Transforming",
  10527. image: {
  10528. source: "./media/characters/alexi/front-transforming.svg",
  10529. extra: 437 / 409,
  10530. bottom: 19 / 458.66
  10531. }
  10532. },
  10533. frontTransformed: {
  10534. height: math.unit(12.5, "feet"),
  10535. weight: math.unit(4000, "lb"),
  10536. name: "Transformed",
  10537. image: {
  10538. source: "./media/characters/alexi/front-transformed.svg",
  10539. extra: 639 / 614,
  10540. bottom: 30.55 / 671
  10541. }
  10542. },
  10543. },
  10544. [
  10545. {
  10546. name: "Normal",
  10547. height: math.unit(14, "feet"),
  10548. default: true
  10549. },
  10550. {
  10551. name: "Minimacro",
  10552. height: math.unit(30, "meters")
  10553. },
  10554. {
  10555. name: "Macro",
  10556. height: math.unit(500, "meters")
  10557. },
  10558. {
  10559. name: "Megamacro",
  10560. height: math.unit(9000, "km")
  10561. },
  10562. {
  10563. name: "Teramacro",
  10564. height: math.unit(384000, "km")
  10565. },
  10566. ]
  10567. ))
  10568. characterMakers.push(() => makeCharacter(
  10569. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10570. {
  10571. front: {
  10572. height: math.unit(6, "feet"),
  10573. weight: math.unit(150, "lb"),
  10574. name: "Front",
  10575. image: {
  10576. source: "./media/characters/kayroo/front.svg",
  10577. extra: 1153 / 1038,
  10578. bottom: 0.06
  10579. }
  10580. },
  10581. foot: {
  10582. height: math.unit(6, "feet"),
  10583. weight: math.unit(150, "lb"),
  10584. name: "Foot",
  10585. image: {
  10586. source: "./media/characters/kayroo/foot.svg"
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Normal",
  10593. height: math.unit(8, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Minimacro",
  10598. height: math.unit(250, "feet")
  10599. },
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(2800, "feet")
  10603. },
  10604. {
  10605. name: "Megamacro",
  10606. height: math.unit(5200, "feet")
  10607. },
  10608. {
  10609. name: "Gigamacro",
  10610. height: math.unit(27000, "feet")
  10611. },
  10612. {
  10613. name: "Omega",
  10614. height: math.unit(45000, "feet")
  10615. },
  10616. ]
  10617. ))
  10618. characterMakers.push(() => makeCharacter(
  10619. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10620. {
  10621. front: {
  10622. height: math.unit(18, "feet"),
  10623. weight: math.unit(5800, "lb"),
  10624. name: "Front",
  10625. image: {
  10626. source: "./media/characters/rhys/front.svg",
  10627. extra: 3386 / 3090,
  10628. bottom: 0.07
  10629. }
  10630. },
  10631. },
  10632. [
  10633. {
  10634. name: "Normal",
  10635. height: math.unit(18, "feet"),
  10636. default: true
  10637. },
  10638. {
  10639. name: "Working Size",
  10640. height: math.unit(200, "feet")
  10641. },
  10642. {
  10643. name: "Demolition Size",
  10644. height: math.unit(2000, "feet")
  10645. },
  10646. {
  10647. name: "Maximum Licensed Size",
  10648. height: math.unit(5, "miles")
  10649. },
  10650. {
  10651. name: "Maximum Observed Size",
  10652. height: math.unit(10, "yottameters")
  10653. },
  10654. ]
  10655. ))
  10656. characterMakers.push(() => makeCharacter(
  10657. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10658. {
  10659. front: {
  10660. height: math.unit(6, "feet"),
  10661. weight: math.unit(250, "lb"),
  10662. name: "Front",
  10663. image: {
  10664. source: "./media/characters/toto/front.svg",
  10665. extra: 527 / 479,
  10666. bottom: 0.05
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Micro",
  10673. height: math.unit(3, "feet")
  10674. },
  10675. {
  10676. name: "Normal",
  10677. height: math.unit(10, "feet")
  10678. },
  10679. {
  10680. name: "Macro",
  10681. height: math.unit(150, "feet"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Megamacro",
  10686. height: math.unit(1200, "feet")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "King", species: ["lion"], tags: ["anthro"] },
  10692. {
  10693. back: {
  10694. height: math.unit(6, "feet"),
  10695. weight: math.unit(150, "lb"),
  10696. name: "Back",
  10697. image: {
  10698. source: "./media/characters/king/back.svg"
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Micro",
  10705. height: math.unit(2, "inches")
  10706. },
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(8, "feet")
  10710. },
  10711. {
  10712. name: "Macro",
  10713. height: math.unit(200, "feet"),
  10714. default: true
  10715. },
  10716. {
  10717. name: "Megamacro",
  10718. height: math.unit(50, "miles")
  10719. },
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10724. {
  10725. anthro: {
  10726. height: math.unit(6 + 5 / 12, "feet"),
  10727. weight: math.unit(280, "lb"),
  10728. name: "Anthro",
  10729. image: {
  10730. source: "./media/characters/cordite/anthro.svg",
  10731. extra: 1986 / 1905,
  10732. bottom: 0.025
  10733. }
  10734. },
  10735. feral: {
  10736. height: math.unit(2, "feet"),
  10737. weight: math.unit(90, "lb"),
  10738. name: "Feral",
  10739. image: {
  10740. source: "./media/characters/cordite/feral.svg",
  10741. extra: 1260 / 755,
  10742. bottom: 0.05
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(6 + 5 / 12, "feet"),
  10750. default: true
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10756. {
  10757. front: {
  10758. height: math.unit(6, "feet"),
  10759. weight: math.unit(150, "lb"),
  10760. name: "Front",
  10761. image: {
  10762. source: "./media/characters/pianostrong/front.svg",
  10763. extra: 6577 / 6254,
  10764. bottom: 0.02
  10765. }
  10766. },
  10767. side: {
  10768. height: math.unit(6, "feet"),
  10769. weight: math.unit(150, "lb"),
  10770. name: "Side",
  10771. image: {
  10772. source: "./media/characters/pianostrong/side.svg",
  10773. extra: 6106 / 5730
  10774. }
  10775. },
  10776. back: {
  10777. height: math.unit(6, "feet"),
  10778. weight: math.unit(150, "lb"),
  10779. name: "Back",
  10780. image: {
  10781. source: "./media/characters/pianostrong/back.svg",
  10782. extra: 6085 / 5733,
  10783. bottom: 0.01
  10784. }
  10785. },
  10786. },
  10787. [
  10788. {
  10789. name: "Macro",
  10790. height: math.unit(100, "feet")
  10791. },
  10792. {
  10793. name: "Macro+",
  10794. height: math.unit(300, "feet"),
  10795. default: true
  10796. },
  10797. {
  10798. name: "Macro++",
  10799. height: math.unit(1000, "feet")
  10800. },
  10801. ]
  10802. ))
  10803. characterMakers.push(() => makeCharacter(
  10804. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10805. {
  10806. front: {
  10807. height: math.unit(6, "feet"),
  10808. weight: math.unit(150, "lb"),
  10809. name: "Front",
  10810. image: {
  10811. source: "./media/characters/kona/front.svg",
  10812. extra: 2960 / 2629,
  10813. bottom: 0.005
  10814. }
  10815. },
  10816. },
  10817. [
  10818. {
  10819. name: "Normal",
  10820. height: math.unit(11 + 8 / 12, "feet")
  10821. },
  10822. {
  10823. name: "Macro",
  10824. height: math.unit(850, "feet"),
  10825. default: true
  10826. },
  10827. {
  10828. name: "Macro+",
  10829. height: math.unit(1.5, "km"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Megamacro",
  10834. height: math.unit(80, "miles")
  10835. },
  10836. {
  10837. name: "Gigamacro",
  10838. height: math.unit(3500, "miles")
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10844. {
  10845. side: {
  10846. height: math.unit(1.9, "meters"),
  10847. weight: math.unit(326, "kg"),
  10848. name: "Side",
  10849. image: {
  10850. source: "./media/characters/levi/side.svg",
  10851. extra: 1704 / 1334,
  10852. bottom: 0.02
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Normal",
  10859. height: math.unit(1.9, "meters"),
  10860. default: true
  10861. },
  10862. {
  10863. name: "Macro",
  10864. height: math.unit(20, "meters")
  10865. },
  10866. {
  10867. name: "Macro+",
  10868. height: math.unit(200, "meters")
  10869. },
  10870. {
  10871. name: "Megamacro",
  10872. height: math.unit(2, "km")
  10873. },
  10874. {
  10875. name: "Megamacro+",
  10876. height: math.unit(20, "km")
  10877. },
  10878. {
  10879. name: "Gigamacro",
  10880. height: math.unit(2500, "km")
  10881. },
  10882. {
  10883. name: "Gigamacro+",
  10884. height: math.unit(120000, "km")
  10885. },
  10886. {
  10887. name: "Teramacro",
  10888. height: math.unit(7.77e6, "km")
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(6 + 4 / 12, "feet"),
  10897. weight: math.unit(188, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/bmc/front.svg",
  10901. extra: 1067 / 1022,
  10902. bottom: 0.047
  10903. }
  10904. },
  10905. },
  10906. [
  10907. {
  10908. name: "Human-sized",
  10909. height: math.unit(6 + 4 / 12, "feet")
  10910. },
  10911. {
  10912. name: "Small",
  10913. height: math.unit(250, "feet")
  10914. },
  10915. {
  10916. name: "Normal",
  10917. height: math.unit(1250, "feet"),
  10918. default: true
  10919. },
  10920. {
  10921. name: "Good Day",
  10922. height: math.unit(88, "miles")
  10923. },
  10924. {
  10925. name: "Largest Measured Size",
  10926. height: math.unit(11.2e6, "lightyears")
  10927. },
  10928. ]
  10929. ))
  10930. characterMakers.push(() => makeCharacter(
  10931. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10932. {
  10933. front: {
  10934. height: math.unit(20, "feet"),
  10935. weight: math.unit(2016, "kg"),
  10936. name: "Front",
  10937. image: {
  10938. source: "./media/characters/sven-the-kaiju/front.svg",
  10939. extra: 1479 / 1449,
  10940. bottom: 0.05
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Fairy",
  10947. height: math.unit(6, "inches")
  10948. },
  10949. {
  10950. name: "Normal",
  10951. height: math.unit(20, "feet"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Rampage",
  10956. height: math.unit(200, "feet")
  10957. },
  10958. {
  10959. name: "Archfey Forest Guardian",
  10960. height: math.unit(1, "mile")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10966. {
  10967. front: {
  10968. height: math.unit(4, "meters"),
  10969. weight: math.unit(2, "tons"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/marik/front.svg",
  10973. extra: 1057 / 1003,
  10974. bottom: 0.08
  10975. }
  10976. },
  10977. },
  10978. [
  10979. {
  10980. name: "Normal",
  10981. height: math.unit(4, "meters"),
  10982. default: true
  10983. },
  10984. {
  10985. name: "Macro",
  10986. height: math.unit(20, "meters")
  10987. },
  10988. {
  10989. name: "Megamacro",
  10990. height: math.unit(50, "km")
  10991. },
  10992. {
  10993. name: "Gigamacro",
  10994. height: math.unit(100, "km")
  10995. },
  10996. {
  10997. name: "Alpha Macro",
  10998. height: math.unit(7.88e7, "yottameters")
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(6, "feet"),
  11007. weight: math.unit(110, "lb"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/mel/front.svg",
  11011. extra: 736 / 617,
  11012. bottom: 0.017
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Pico",
  11019. height: math.unit(3, "pm")
  11020. },
  11021. {
  11022. name: "Nano",
  11023. height: math.unit(3, "nm")
  11024. },
  11025. {
  11026. name: "Micro",
  11027. height: math.unit(0.3, "mm"),
  11028. default: true
  11029. },
  11030. {
  11031. name: "Micro+",
  11032. height: math.unit(3, "mm")
  11033. },
  11034. {
  11035. name: "Normal",
  11036. height: math.unit(5 + 10.5 / 12, "feet")
  11037. },
  11038. ]
  11039. ))
  11040. characterMakers.push(() => makeCharacter(
  11041. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11042. {
  11043. kaiju: {
  11044. height: math.unit(1.75, "meters"),
  11045. weight: math.unit(55, "kg"),
  11046. name: "Kaiju",
  11047. image: {
  11048. source: "./media/characters/lykonous/kaiju.svg",
  11049. extra: 1055 / 946,
  11050. bottom: 0.135
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Normal",
  11057. height: math.unit(2.5, "meters"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Kaiju Dragon",
  11062. height: math.unit(60, "meters")
  11063. },
  11064. {
  11065. name: "Mega Kaiju",
  11066. height: math.unit(120, "km")
  11067. },
  11068. {
  11069. name: "Giga Kaiju",
  11070. height: math.unit(200, "megameters")
  11071. },
  11072. {
  11073. name: "Terra Kaiju",
  11074. height: math.unit(400, "gigameters")
  11075. },
  11076. {
  11077. name: "Kaiju Dragon God",
  11078. height: math.unit(13000, "exaparsecs")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11084. {
  11085. front: {
  11086. height: math.unit(6, "feet"),
  11087. weight: math.unit(150, "lb"),
  11088. name: "Front",
  11089. image: {
  11090. source: "./media/characters/blü/front.svg",
  11091. extra: 1883 / 1564,
  11092. bottom: 0.031
  11093. }
  11094. },
  11095. },
  11096. [
  11097. {
  11098. name: "Normal",
  11099. height: math.unit(13, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Big Boi",
  11104. height: math.unit(150, "meters")
  11105. },
  11106. {
  11107. name: "Mini Stomper",
  11108. height: math.unit(300, "meters")
  11109. },
  11110. {
  11111. name: "Macro",
  11112. height: math.unit(1000, "meters")
  11113. },
  11114. {
  11115. name: "Megamacro",
  11116. height: math.unit(11000, "meters")
  11117. },
  11118. {
  11119. name: "Gigamacro",
  11120. height: math.unit(11000, "km")
  11121. },
  11122. {
  11123. name: "Teramacro",
  11124. height: math.unit(420000, "km")
  11125. },
  11126. {
  11127. name: "Examacro",
  11128. height: math.unit(120, "parsecs")
  11129. },
  11130. {
  11131. name: "God Tho",
  11132. height: math.unit(98000000000, "parsecs")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11138. {
  11139. taurFront: {
  11140. height: math.unit(6, "feet"),
  11141. weight: math.unit(200, "lb"),
  11142. name: "Taur (Front)",
  11143. image: {
  11144. source: "./media/characters/scales/taur-front.svg",
  11145. extra: 1,
  11146. bottom: 0.05
  11147. }
  11148. },
  11149. taurBack: {
  11150. height: math.unit(6, "feet"),
  11151. weight: math.unit(200, "lb"),
  11152. name: "Taur (Back)",
  11153. image: {
  11154. source: "./media/characters/scales/taur-back.svg",
  11155. extra: 1,
  11156. bottom: 0.08
  11157. }
  11158. },
  11159. anthro: {
  11160. height: math.unit(6 * 7 / 12, "feet"),
  11161. weight: math.unit(100, "lb"),
  11162. name: "Anthro",
  11163. image: {
  11164. source: "./media/characters/scales/anthro.svg",
  11165. extra: 1,
  11166. bottom: 0.06
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(12, "feet"),
  11174. default: true
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11180. {
  11181. front: {
  11182. height: math.unit(6, "feet"),
  11183. weight: math.unit(150, "lb"),
  11184. name: "Front",
  11185. image: {
  11186. source: "./media/characters/koragos/front.svg",
  11187. extra: 841 / 794,
  11188. bottom: 0.035
  11189. }
  11190. },
  11191. back: {
  11192. height: math.unit(6, "feet"),
  11193. weight: math.unit(150, "lb"),
  11194. name: "Back",
  11195. image: {
  11196. source: "./media/characters/koragos/back.svg",
  11197. extra: 841 / 810,
  11198. bottom: 0.022
  11199. }
  11200. },
  11201. },
  11202. [
  11203. {
  11204. name: "Normal",
  11205. height: math.unit(6 + 11 / 12, "feet"),
  11206. default: true
  11207. },
  11208. {
  11209. name: "Macro",
  11210. height: math.unit(490, "feet")
  11211. },
  11212. {
  11213. name: "Megamacro",
  11214. height: math.unit(10, "miles")
  11215. },
  11216. {
  11217. name: "Gigamacro",
  11218. height: math.unit(50, "miles")
  11219. },
  11220. ]
  11221. ))
  11222. characterMakers.push(() => makeCharacter(
  11223. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11224. {
  11225. front: {
  11226. height: math.unit(6, "feet"),
  11227. weight: math.unit(250, "lb"),
  11228. name: "Front",
  11229. image: {
  11230. source: "./media/characters/xylrem/front.svg",
  11231. extra: 3323 / 3050,
  11232. bottom: 0.065
  11233. }
  11234. },
  11235. },
  11236. [
  11237. {
  11238. name: "Micro",
  11239. height: math.unit(4, "feet")
  11240. },
  11241. {
  11242. name: "Normal",
  11243. height: math.unit(16, "feet"),
  11244. default: true
  11245. },
  11246. {
  11247. name: "Macro",
  11248. height: math.unit(2720, "feet")
  11249. },
  11250. {
  11251. name: "Megamacro",
  11252. height: math.unit(25000, "miles")
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(8, "feet"),
  11261. weight: math.unit(250, "kg"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/ikideru/front.svg",
  11265. extra: 930 / 870,
  11266. bottom: 0.087
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(8, "feet"),
  11271. weight: math.unit(250, "kg"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/ikideru/back.svg",
  11275. extra: 919 / 852,
  11276. bottom: 0.055
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Rare",
  11283. height: math.unit(8, "feet"),
  11284. default: true
  11285. },
  11286. {
  11287. name: "Playful Loom",
  11288. height: math.unit(80, "feet")
  11289. },
  11290. {
  11291. name: "City Leaner",
  11292. height: math.unit(230, "feet")
  11293. },
  11294. {
  11295. name: "Megamacro",
  11296. height: math.unit(2500, "feet")
  11297. },
  11298. {
  11299. name: "Gigamacro",
  11300. height: math.unit(26400, "feet")
  11301. },
  11302. {
  11303. name: "Tectonic Shifter",
  11304. height: math.unit(1.7, "megameters")
  11305. },
  11306. {
  11307. name: "Planet Carer",
  11308. height: math.unit(21, "megameters")
  11309. },
  11310. {
  11311. name: "God",
  11312. height: math.unit(11157.22, "parsecs")
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11318. {
  11319. front: {
  11320. height: math.unit(6, "feet"),
  11321. weight: math.unit(120, "lb"),
  11322. name: "Front",
  11323. image: {
  11324. source: "./media/characters/neo/front.svg"
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Micro",
  11331. height: math.unit(2, "inches"),
  11332. default: true
  11333. },
  11334. {
  11335. name: "Human Size",
  11336. height: math.unit(5 + 8 / 12, "feet")
  11337. },
  11338. ]
  11339. ))
  11340. characterMakers.push(() => makeCharacter(
  11341. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11342. {
  11343. front: {
  11344. height: math.unit(13 + 10 / 12, "feet"),
  11345. weight: math.unit(5320, "lb"),
  11346. name: "Front",
  11347. image: {
  11348. source: "./media/characters/chauncey-chantz/front.svg",
  11349. extra: 1587 / 1435,
  11350. bottom: 0.02
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(13 + 10 / 12, "feet"),
  11358. default: true
  11359. },
  11360. {
  11361. name: "Macro",
  11362. height: math.unit(45, "feet")
  11363. },
  11364. {
  11365. name: "Megamacro",
  11366. height: math.unit(250, "miles")
  11367. },
  11368. {
  11369. name: "Planetary",
  11370. height: math.unit(10000, "miles")
  11371. },
  11372. {
  11373. name: "Galactic",
  11374. height: math.unit(40000, "parsecs")
  11375. },
  11376. {
  11377. name: "Universal",
  11378. height: math.unit(1, "yottameter")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11384. {
  11385. front: {
  11386. height: math.unit(6, "feet"),
  11387. weight: math.unit(150, "lb"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/epifox/front.svg",
  11391. extra: 1,
  11392. bottom: 0.075
  11393. }
  11394. },
  11395. },
  11396. [
  11397. {
  11398. name: "Micro",
  11399. height: math.unit(6, "inches")
  11400. },
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(12, "feet"),
  11404. default: true
  11405. },
  11406. {
  11407. name: "Macro",
  11408. height: math.unit(3810, "feet")
  11409. },
  11410. {
  11411. name: "Megamacro",
  11412. height: math.unit(500, "miles")
  11413. },
  11414. ]
  11415. ))
  11416. characterMakers.push(() => makeCharacter(
  11417. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11418. {
  11419. front: {
  11420. height: math.unit(1.8796, "m"),
  11421. weight: math.unit(230, "lb"),
  11422. name: "Front",
  11423. image: {
  11424. source: "./media/characters/colin-t/front.svg",
  11425. extra: 1272 / 1193,
  11426. bottom: 0.07
  11427. }
  11428. },
  11429. },
  11430. [
  11431. {
  11432. name: "Micro",
  11433. height: math.unit(0.571, "meters")
  11434. },
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(1.8796, "meters"),
  11438. default: true
  11439. },
  11440. {
  11441. name: "Tall",
  11442. height: math.unit(4, "meters")
  11443. },
  11444. {
  11445. name: "Macro",
  11446. height: math.unit(67.241, "meters")
  11447. },
  11448. {
  11449. name: "Megamacro",
  11450. height: math.unit(371.856, "meters")
  11451. },
  11452. {
  11453. name: "Planetary",
  11454. height: math.unit(12631.5689, "km")
  11455. },
  11456. ]
  11457. ))
  11458. characterMakers.push(() => makeCharacter(
  11459. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11460. {
  11461. front: {
  11462. height: math.unit(1.85, "meters"),
  11463. weight: math.unit(80, "kg"),
  11464. name: "Front",
  11465. image: {
  11466. source: "./media/characters/matvei/front.svg",
  11467. extra: 614 / 594,
  11468. bottom: 0.01
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Normal",
  11475. height: math.unit(1.85, "meters"),
  11476. default: true
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(5 + 9 / 12, "feet"),
  11485. weight: math.unit(70, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/quincy/front.svg",
  11489. extra: 3041 / 2751
  11490. }
  11491. },
  11492. back: {
  11493. height: math.unit(5 + 9 / 12, "feet"),
  11494. weight: math.unit(70, "lb"),
  11495. name: "Back",
  11496. image: {
  11497. source: "./media/characters/quincy/back.svg",
  11498. extra: 3041 / 2751
  11499. }
  11500. },
  11501. flying: {
  11502. height: math.unit(5 + 4 / 12, "feet"),
  11503. weight: math.unit(70, "lb"),
  11504. name: "Flying",
  11505. image: {
  11506. source: "./media/characters/quincy/flying.svg",
  11507. extra: 1044 / 930
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Micro",
  11514. height: math.unit(3, "cm")
  11515. },
  11516. {
  11517. name: "Normal",
  11518. height: math.unit(5 + 9 / 12, "feet")
  11519. },
  11520. {
  11521. name: "Macro",
  11522. height: math.unit(200, "meters"),
  11523. default: true
  11524. },
  11525. {
  11526. name: "Megamacro",
  11527. height: math.unit(1000, "meters")
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11533. {
  11534. front: {
  11535. height: math.unit(4 + 7 / 12, "feet"),
  11536. weight: math.unit(50, "lb"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/vanrel/front.svg",
  11540. extra: 1,
  11541. bottom: 0.02
  11542. }
  11543. },
  11544. frontAlt: {
  11545. height: math.unit(4 + 7 / 12, "feet"),
  11546. weight: math.unit(50, "lb"),
  11547. name: "Front-alt",
  11548. image: {
  11549. source: "./media/characters/vanrel/front-alt.svg",
  11550. extra: 1,
  11551. bottom: 15 / 1511
  11552. }
  11553. },
  11554. elemental: {
  11555. height: math.unit(3, "feet"),
  11556. weight: math.unit(50, "lb"),
  11557. name: "Elemental",
  11558. image: {
  11559. source: "./media/characters/vanrel/elemental.svg",
  11560. extra: 192.3 / 162.8,
  11561. bottom: 1.79 / 194.17
  11562. }
  11563. },
  11564. side: {
  11565. height: math.unit(4 + 7 / 12, "feet"),
  11566. weight: math.unit(50, "lb"),
  11567. name: "Side",
  11568. image: {
  11569. source: "./media/characters/vanrel/side.svg",
  11570. extra: 1,
  11571. bottom: 0.025
  11572. }
  11573. },
  11574. tome: {
  11575. height: math.unit(1.35, "feet"),
  11576. weight: math.unit(10, "lb"),
  11577. name: "Vanrel's Tome",
  11578. rename: true,
  11579. image: {
  11580. source: "./media/characters/vanrel/tome.svg"
  11581. }
  11582. },
  11583. beans: {
  11584. height: math.unit(0.89, "feet"),
  11585. name: "Beans",
  11586. image: {
  11587. source: "./media/characters/vanrel/beans.svg"
  11588. }
  11589. },
  11590. },
  11591. [
  11592. {
  11593. name: "Normal",
  11594. height: math.unit(4 + 7 / 12, "feet"),
  11595. default: true
  11596. },
  11597. ]
  11598. ))
  11599. characterMakers.push(() => makeCharacter(
  11600. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11601. {
  11602. front: {
  11603. height: math.unit(7 + 5 / 12, "feet"),
  11604. weight: math.unit(150, "lb"),
  11605. name: "Front",
  11606. image: {
  11607. source: "./media/characters/kuiper-vanrel/front.svg",
  11608. extra: 1118 / 1068,
  11609. bottom: 0.09
  11610. }
  11611. },
  11612. foot: {
  11613. height: math.unit(0.55, "meters"),
  11614. name: "Foot",
  11615. image: {
  11616. source: "./media/characters/kuiper-vanrel/foot.svg",
  11617. }
  11618. },
  11619. battle: {
  11620. height: math.unit(6.824, "feet"),
  11621. weight: math.unit(150, "lb"),
  11622. name: "Battle",
  11623. image: {
  11624. source: "./media/characters/kuiper-vanrel/battle.svg",
  11625. extra: 1466 / 1327,
  11626. bottom: 29 / 1492.5
  11627. }
  11628. },
  11629. battleAlt: {
  11630. height: math.unit(6.824, "feet"),
  11631. weight: math.unit(150, "lb"),
  11632. name: "Battle (Alt)",
  11633. image: {
  11634. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11635. extra: 2081 / 1965,
  11636. bottom: 40 / 2121
  11637. }
  11638. },
  11639. },
  11640. [
  11641. {
  11642. name: "Normal",
  11643. height: math.unit(7 + 5 / 12, "feet"),
  11644. default: true
  11645. },
  11646. ]
  11647. ))
  11648. characterMakers.push(() => makeCharacter(
  11649. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11650. {
  11651. front: {
  11652. height: math.unit(8 + 5 / 12, "feet"),
  11653. weight: math.unit(150, "lb"),
  11654. name: "Front",
  11655. image: {
  11656. source: "./media/characters/keset-vanrel/front.svg",
  11657. extra: 1150 / 1084,
  11658. bottom: 0.05
  11659. }
  11660. },
  11661. hand: {
  11662. height: math.unit(0.6, "meters"),
  11663. name: "Hand",
  11664. image: {
  11665. source: "./media/characters/keset-vanrel/hand.svg"
  11666. }
  11667. },
  11668. foot: {
  11669. height: math.unit(0.94978, "meters"),
  11670. name: "Foot",
  11671. image: {
  11672. source: "./media/characters/keset-vanrel/foot.svg"
  11673. }
  11674. },
  11675. battle: {
  11676. height: math.unit(7.408, "feet"),
  11677. weight: math.unit(150, "lb"),
  11678. name: "Battle",
  11679. image: {
  11680. source: "./media/characters/keset-vanrel/battle.svg",
  11681. extra: 1890 / 1386,
  11682. bottom: 73.28 / 1970
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Normal",
  11689. height: math.unit(8 + 5 / 12, "feet"),
  11690. default: true
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(6, "feet"),
  11699. weight: math.unit(150, "lb"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/neos/front.svg",
  11703. extra: 1696 / 992,
  11704. bottom: 0.14
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Normal",
  11711. height: math.unit(54, "cm"),
  11712. default: true
  11713. },
  11714. {
  11715. name: "Macro",
  11716. height: math.unit(100, "m")
  11717. },
  11718. {
  11719. name: "Megamacro",
  11720. height: math.unit(10, "km")
  11721. },
  11722. {
  11723. name: "Megamacro+",
  11724. height: math.unit(100, "km")
  11725. },
  11726. {
  11727. name: "Gigamacro",
  11728. height: math.unit(100, "Mm")
  11729. },
  11730. {
  11731. name: "Teramacro",
  11732. height: math.unit(100, "Gm")
  11733. },
  11734. {
  11735. name: "Examacro",
  11736. height: math.unit(100, "Em")
  11737. },
  11738. {
  11739. name: "Godly",
  11740. height: math.unit(10000, "Ym")
  11741. },
  11742. {
  11743. name: "Beyond Godly",
  11744. height: math.unit(25, "multiverses")
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11750. {
  11751. feminine: {
  11752. height: math.unit(5, "feet"),
  11753. weight: math.unit(100, "lb"),
  11754. name: "Feminine",
  11755. image: {
  11756. source: "./media/characters/sammy-mouse/feminine.svg",
  11757. extra: 2526 / 2425,
  11758. bottom: 0.123
  11759. }
  11760. },
  11761. masculine: {
  11762. height: math.unit(5, "feet"),
  11763. weight: math.unit(100, "lb"),
  11764. name: "Masculine",
  11765. image: {
  11766. source: "./media/characters/sammy-mouse/masculine.svg",
  11767. extra: 2526 / 2425,
  11768. bottom: 0.123
  11769. }
  11770. },
  11771. },
  11772. [
  11773. {
  11774. name: "Micro",
  11775. height: math.unit(5, "inches")
  11776. },
  11777. {
  11778. name: "Normal",
  11779. height: math.unit(5, "feet"),
  11780. default: true
  11781. },
  11782. {
  11783. name: "Macro",
  11784. height: math.unit(60, "feet")
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(4, "feet"),
  11793. weight: math.unit(50, "lb"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/kole/front.svg",
  11797. extra: 1423 / 1303,
  11798. bottom: 0.025
  11799. }
  11800. },
  11801. back: {
  11802. height: math.unit(4, "feet"),
  11803. weight: math.unit(50, "lb"),
  11804. name: "Back",
  11805. image: {
  11806. source: "./media/characters/kole/back.svg",
  11807. extra: 1426 / 1280,
  11808. bottom: 0.02
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Normal",
  11815. height: math.unit(4, "feet"),
  11816. default: true
  11817. },
  11818. ]
  11819. ))
  11820. characterMakers.push(() => makeCharacter(
  11821. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11822. {
  11823. front: {
  11824. height: math.unit(2 + 6 / 12, "feet"),
  11825. weight: math.unit(20, "lb"),
  11826. name: "Front",
  11827. image: {
  11828. source: "./media/characters/rufran/front.svg",
  11829. extra: 2041 / 1839,
  11830. bottom: 0.055
  11831. }
  11832. },
  11833. back: {
  11834. height: math.unit(2 + 6 / 12, "feet"),
  11835. weight: math.unit(20, "lb"),
  11836. name: "Back",
  11837. image: {
  11838. source: "./media/characters/rufran/back.svg",
  11839. extra: 2054 / 1839,
  11840. bottom: 0.01
  11841. }
  11842. },
  11843. hand: {
  11844. height: math.unit(0.2166, "meters"),
  11845. name: "Hand",
  11846. image: {
  11847. source: "./media/characters/rufran/hand.svg"
  11848. }
  11849. },
  11850. foot: {
  11851. height: math.unit(0.185, "meters"),
  11852. name: "Foot",
  11853. image: {
  11854. source: "./media/characters/rufran/foot.svg"
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Micro",
  11861. height: math.unit(1, "inch")
  11862. },
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(2 + 6 / 12, "feet"),
  11866. default: true
  11867. },
  11868. {
  11869. name: "Big",
  11870. height: math.unit(60, "feet")
  11871. },
  11872. {
  11873. name: "Macro",
  11874. height: math.unit(325, "feet")
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(0.3, "meters"),
  11883. weight: math.unit(3.5, "kg"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/chip/front.svg",
  11887. extra: 748 / 674
  11888. }
  11889. },
  11890. },
  11891. [
  11892. {
  11893. name: "Micro",
  11894. height: math.unit(1, "inch"),
  11895. default: true
  11896. },
  11897. ]
  11898. ))
  11899. characterMakers.push(() => makeCharacter(
  11900. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11901. {
  11902. side: {
  11903. height: math.unit(2.3, "meters"),
  11904. weight: math.unit(3500, "lb"),
  11905. name: "Side",
  11906. image: {
  11907. source: "./media/characters/torvid/side.svg",
  11908. extra: 1972 / 722,
  11909. bottom: 0.035
  11910. }
  11911. },
  11912. },
  11913. [
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(2.3, "meters"),
  11917. default: true
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(2, "meters"),
  11926. weight: math.unit(150.5, "kg"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/susan/front.svg",
  11930. extra: 693 / 635,
  11931. bottom: 0.05
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(505, "miles"),
  11939. default: true
  11940. },
  11941. ]
  11942. ))
  11943. characterMakers.push(() => makeCharacter(
  11944. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11945. {
  11946. front: {
  11947. height: math.unit(6, "feet"),
  11948. weight: math.unit(150, "lb"),
  11949. name: "Front",
  11950. image: {
  11951. source: "./media/characters/raindrops/front.svg",
  11952. extra: 2655 / 2461,
  11953. bottom: 49 / 2705
  11954. }
  11955. },
  11956. back: {
  11957. height: math.unit(6, "feet"),
  11958. weight: math.unit(150, "lb"),
  11959. name: "Back",
  11960. image: {
  11961. source: "./media/characters/raindrops/back.svg",
  11962. extra: 2574 / 2400,
  11963. bottom: 65 / 2634
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Micro",
  11970. height: math.unit(6, "inches")
  11971. },
  11972. {
  11973. name: "Normal",
  11974. height: math.unit(6 + 2 / 12, "feet")
  11975. },
  11976. {
  11977. name: "Macro",
  11978. height: math.unit(131, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Megamacro",
  11983. height: math.unit(15, "miles")
  11984. },
  11985. {
  11986. name: "Gigamacro",
  11987. height: math.unit(4000, "miles")
  11988. },
  11989. {
  11990. name: "Teramacro",
  11991. height: math.unit(315000, "miles")
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(2.794, "meters"),
  12000. weight: math.unit(325, "kg"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/tezwa/front.svg",
  12004. extra: 2083 / 1906,
  12005. bottom: 0.031
  12006. }
  12007. },
  12008. foot: {
  12009. height: math.unit(0.687, "meters"),
  12010. name: "Foot",
  12011. image: {
  12012. source: "./media/characters/tezwa/foot.svg"
  12013. }
  12014. },
  12015. },
  12016. [
  12017. {
  12018. name: "Normal",
  12019. height: math.unit(9 + 2 / 12, "feet"),
  12020. default: true
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12026. {
  12027. front: {
  12028. height: math.unit(58, "feet"),
  12029. weight: math.unit(89000, "lb"),
  12030. name: "Front",
  12031. image: {
  12032. source: "./media/characters/typhus/front.svg",
  12033. extra: 816 / 800,
  12034. bottom: 0.065
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Macro",
  12041. height: math.unit(58, "feet"),
  12042. default: true
  12043. },
  12044. ]
  12045. ))
  12046. characterMakers.push(() => makeCharacter(
  12047. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12048. {
  12049. front: {
  12050. height: math.unit(12, "feet"),
  12051. weight: math.unit(6, "tonnes"),
  12052. name: "Front",
  12053. image: {
  12054. source: "./media/characters/lyra-von-wulf/front.svg",
  12055. extra: 1,
  12056. bottom: 0.10
  12057. }
  12058. },
  12059. frontMecha: {
  12060. height: math.unit(12, "feet"),
  12061. weight: math.unit(12, "tonnes"),
  12062. name: "Front (Mecha)",
  12063. image: {
  12064. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12065. extra: 1,
  12066. bottom: 0.042
  12067. }
  12068. },
  12069. maw: {
  12070. height: math.unit(2.2, "feet"),
  12071. name: "Maw",
  12072. image: {
  12073. source: "./media/characters/lyra-von-wulf/maw.svg"
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Normal",
  12080. height: math.unit(12, "feet"),
  12081. default: true
  12082. },
  12083. {
  12084. name: "Classic",
  12085. height: math.unit(50, "feet")
  12086. },
  12087. {
  12088. name: "Macro",
  12089. height: math.unit(500, "feet")
  12090. },
  12091. {
  12092. name: "Megamacro",
  12093. height: math.unit(1, "mile")
  12094. },
  12095. {
  12096. name: "Gigamacro",
  12097. height: math.unit(400, "miles")
  12098. },
  12099. {
  12100. name: "Teramacro",
  12101. height: math.unit(22000, "miles")
  12102. },
  12103. {
  12104. name: "Solarmacro",
  12105. height: math.unit(8600000, "miles")
  12106. },
  12107. {
  12108. name: "Galactic",
  12109. height: math.unit(1057000, "lightyears")
  12110. },
  12111. ]
  12112. ))
  12113. characterMakers.push(() => makeCharacter(
  12114. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12115. {
  12116. front: {
  12117. height: math.unit(6 + 10 / 12, "feet"),
  12118. weight: math.unit(150, "lb"),
  12119. name: "Front",
  12120. image: {
  12121. source: "./media/characters/dixon/front.svg",
  12122. extra: 3361 / 3209,
  12123. bottom: 0.01
  12124. }
  12125. },
  12126. },
  12127. [
  12128. {
  12129. name: "Normal",
  12130. height: math.unit(6 + 10 / 12, "feet"),
  12131. default: true
  12132. },
  12133. {
  12134. name: "Big",
  12135. height: math.unit(12, "meters")
  12136. },
  12137. {
  12138. name: "Macro",
  12139. height: math.unit(500, "meters")
  12140. },
  12141. {
  12142. name: "Megamacro",
  12143. height: math.unit(2, "km")
  12144. },
  12145. ]
  12146. ))
  12147. characterMakers.push(() => makeCharacter(
  12148. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12149. {
  12150. front: {
  12151. height: math.unit(185, "cm"),
  12152. weight: math.unit(68, "kg"),
  12153. name: "Front",
  12154. image: {
  12155. source: "./media/characters/kauko/front.svg",
  12156. extra: 1455 / 1421,
  12157. bottom: 0.03
  12158. }
  12159. },
  12160. back: {
  12161. height: math.unit(185, "cm"),
  12162. weight: math.unit(68, "kg"),
  12163. name: "Back",
  12164. image: {
  12165. source: "./media/characters/kauko/back.svg",
  12166. extra: 1455 / 1421,
  12167. bottom: 0.004
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Normal",
  12174. height: math.unit(185, "cm"),
  12175. default: true
  12176. },
  12177. ]
  12178. ))
  12179. characterMakers.push(() => makeCharacter(
  12180. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12181. {
  12182. front: {
  12183. height: math.unit(6, "feet"),
  12184. weight: math.unit(150, "kg"),
  12185. name: "Front",
  12186. image: {
  12187. source: "./media/characters/varg/front.svg",
  12188. extra: 1108 / 1018,
  12189. bottom: 0.0375
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(5, "meters")
  12197. },
  12198. {
  12199. name: "Macro",
  12200. height: math.unit(200, "meters")
  12201. },
  12202. {
  12203. name: "Megamacro",
  12204. height: math.unit(20, "kilometers")
  12205. },
  12206. {
  12207. name: "True Size",
  12208. height: math.unit(211, "km"),
  12209. default: true
  12210. },
  12211. {
  12212. name: "Gigamacro",
  12213. height: math.unit(1000, "km")
  12214. },
  12215. {
  12216. name: "Gigamacro+",
  12217. height: math.unit(8000, "km")
  12218. },
  12219. {
  12220. name: "Teramacro",
  12221. height: math.unit(1000000, "km")
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(7 + 7 / 12, "feet"),
  12230. weight: math.unit(267, "lb"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/dayza/front.svg",
  12234. extra: 1262 / 1200,
  12235. bottom: 0.035
  12236. }
  12237. },
  12238. side: {
  12239. height: math.unit(7 + 7 / 12, "feet"),
  12240. weight: math.unit(267, "lb"),
  12241. name: "Side",
  12242. image: {
  12243. source: "./media/characters/dayza/side.svg",
  12244. extra: 1295 / 1245,
  12245. bottom: 0.05
  12246. }
  12247. },
  12248. back: {
  12249. height: math.unit(7 + 7 / 12, "feet"),
  12250. weight: math.unit(267, "lb"),
  12251. name: "Back",
  12252. image: {
  12253. source: "./media/characters/dayza/back.svg",
  12254. extra: 1241 / 1170
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Normal",
  12261. height: math.unit(7 + 7 / 12, "feet"),
  12262. default: true
  12263. },
  12264. {
  12265. name: "Macro",
  12266. height: math.unit(155, "feet")
  12267. },
  12268. ]
  12269. ))
  12270. characterMakers.push(() => makeCharacter(
  12271. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12272. {
  12273. front: {
  12274. height: math.unit(6 + 5 / 12, "feet"),
  12275. weight: math.unit(160, "lb"),
  12276. name: "Front",
  12277. image: {
  12278. source: "./media/characters/xanthos/front.svg",
  12279. extra: 1,
  12280. bottom: 0.04
  12281. }
  12282. },
  12283. back: {
  12284. height: math.unit(6 + 5 / 12, "feet"),
  12285. weight: math.unit(160, "lb"),
  12286. name: "Back",
  12287. image: {
  12288. source: "./media/characters/xanthos/back.svg",
  12289. extra: 1,
  12290. bottom: 0.03
  12291. }
  12292. },
  12293. hand: {
  12294. height: math.unit(0.928, "feet"),
  12295. name: "Hand",
  12296. image: {
  12297. source: "./media/characters/xanthos/hand.svg"
  12298. }
  12299. },
  12300. foot: {
  12301. height: math.unit(1.286, "feet"),
  12302. name: "Foot",
  12303. image: {
  12304. source: "./media/characters/xanthos/foot.svg"
  12305. }
  12306. },
  12307. },
  12308. [
  12309. {
  12310. name: "Normal",
  12311. height: math.unit(6 + 5 / 12, "feet"),
  12312. default: true
  12313. },
  12314. {
  12315. name: "Normal+",
  12316. height: math.unit(6, "meters")
  12317. },
  12318. {
  12319. name: "Macro",
  12320. height: math.unit(40, "feet")
  12321. },
  12322. {
  12323. name: "Macro+",
  12324. height: math.unit(200, "meters")
  12325. },
  12326. {
  12327. name: "Megamacro",
  12328. height: math.unit(20, "km")
  12329. },
  12330. {
  12331. name: "Megamacro+",
  12332. height: math.unit(100, "km")
  12333. },
  12334. ]
  12335. ))
  12336. characterMakers.push(() => makeCharacter(
  12337. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12338. {
  12339. front: {
  12340. height: math.unit(6 + 3 / 12, "feet"),
  12341. weight: math.unit(215, "lb"),
  12342. name: "Front",
  12343. image: {
  12344. source: "./media/characters/grynn/front.svg",
  12345. extra: 4627 / 4209,
  12346. bottom: 0.047
  12347. }
  12348. },
  12349. },
  12350. [
  12351. {
  12352. name: "Micro",
  12353. height: math.unit(6, "inches")
  12354. },
  12355. {
  12356. name: "Normal",
  12357. height: math.unit(6 + 3 / 12, "feet"),
  12358. default: true
  12359. },
  12360. {
  12361. name: "Big",
  12362. height: math.unit(104, "feet")
  12363. },
  12364. {
  12365. name: "Macro",
  12366. height: math.unit(944, "feet")
  12367. },
  12368. {
  12369. name: "Macro+",
  12370. height: math.unit(9480, "feet")
  12371. },
  12372. {
  12373. name: "Megamacro",
  12374. height: math.unit(78752, "feet")
  12375. },
  12376. {
  12377. name: "Megamacro+",
  12378. height: math.unit(630128, "feet")
  12379. },
  12380. {
  12381. name: "Megamacro++",
  12382. height: math.unit(3150695, "feet")
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(7 + 5 / 12, "feet"),
  12391. weight: math.unit(450, "lb"),
  12392. name: "Front",
  12393. image: {
  12394. source: "./media/characters/mocha-aura/front.svg",
  12395. extra: 1907 / 1817,
  12396. bottom: 0.04
  12397. }
  12398. },
  12399. back: {
  12400. height: math.unit(7 + 5 / 12, "feet"),
  12401. weight: math.unit(450, "lb"),
  12402. name: "Back",
  12403. image: {
  12404. source: "./media/characters/mocha-aura/back.svg",
  12405. extra: 1900 / 1825,
  12406. bottom: 0.045
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Nano",
  12413. height: math.unit(1, "nm")
  12414. },
  12415. {
  12416. name: "Megamicro",
  12417. height: math.unit(1, "mm")
  12418. },
  12419. {
  12420. name: "Micro",
  12421. height: math.unit(3, "inches")
  12422. },
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(7 + 5 / 12, "feet"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Macro",
  12430. height: math.unit(30, "feet")
  12431. },
  12432. {
  12433. name: "Megamacro",
  12434. height: math.unit(3500, "feet")
  12435. },
  12436. {
  12437. name: "Teramacro",
  12438. height: math.unit(500000, "miles")
  12439. },
  12440. {
  12441. name: "Petamacro",
  12442. height: math.unit(50000000000000000, "parsecs")
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12448. {
  12449. front: {
  12450. height: math.unit(6, "feet"),
  12451. weight: math.unit(150, "lb"),
  12452. name: "Front",
  12453. image: {
  12454. source: "./media/characters/ilisha-devya/front.svg",
  12455. extra: 1,
  12456. bottom: 0.175
  12457. }
  12458. },
  12459. back: {
  12460. height: math.unit(6, "feet"),
  12461. weight: math.unit(150, "lb"),
  12462. name: "Back",
  12463. image: {
  12464. source: "./media/characters/ilisha-devya/back.svg",
  12465. extra: 1,
  12466. bottom: 0.015
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Macro",
  12473. height: math.unit(500, "feet"),
  12474. default: true
  12475. },
  12476. {
  12477. name: "Megamacro",
  12478. height: math.unit(10, "miles")
  12479. },
  12480. {
  12481. name: "Gigamacro",
  12482. height: math.unit(100000, "miles")
  12483. },
  12484. {
  12485. name: "Examacro",
  12486. height: math.unit(1e9, "lightyears")
  12487. },
  12488. {
  12489. name: "Omniversal",
  12490. height: math.unit(1e33, "lightyears")
  12491. },
  12492. {
  12493. name: "Beyond Infinite",
  12494. height: math.unit(1e100, "lightyears")
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12500. {
  12501. Side: {
  12502. height: math.unit(6, "feet"),
  12503. weight: math.unit(150, "lb"),
  12504. name: "Side",
  12505. image: {
  12506. source: "./media/characters/mira/side.svg",
  12507. extra: 900 / 799,
  12508. bottom: 0.02
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Human Size",
  12515. height: math.unit(6, "feet")
  12516. },
  12517. {
  12518. name: "Macro",
  12519. height: math.unit(100, "feet"),
  12520. default: true
  12521. },
  12522. {
  12523. name: "Megamacro",
  12524. height: math.unit(10, "miles")
  12525. },
  12526. {
  12527. name: "Gigamacro",
  12528. height: math.unit(25000, "miles")
  12529. },
  12530. {
  12531. name: "Teramacro",
  12532. height: math.unit(300, "AU")
  12533. },
  12534. {
  12535. name: "Full Size",
  12536. height: math.unit(4.5e10, "lightyears")
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(6, "feet"),
  12545. weight: math.unit(150, "lb"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/holly/front.svg",
  12549. extra: 639 / 606
  12550. }
  12551. },
  12552. back: {
  12553. height: math.unit(6, "feet"),
  12554. weight: math.unit(150, "lb"),
  12555. name: "Back",
  12556. image: {
  12557. source: "./media/characters/holly/back.svg",
  12558. extra: 623 / 598
  12559. }
  12560. },
  12561. frontWorking: {
  12562. height: math.unit(6, "feet"),
  12563. weight: math.unit(150, "lb"),
  12564. name: "Front (Working)",
  12565. image: {
  12566. source: "./media/characters/holly/front-working.svg",
  12567. extra: 607 / 577,
  12568. bottom: 0.048
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Normal",
  12575. height: math.unit(12 + 3 / 12, "feet"),
  12576. default: true
  12577. },
  12578. ]
  12579. ))
  12580. characterMakers.push(() => makeCharacter(
  12581. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12582. {
  12583. front: {
  12584. height: math.unit(6, "feet"),
  12585. weight: math.unit(150, "lb"),
  12586. name: "Front",
  12587. image: {
  12588. source: "./media/characters/porter/front.svg",
  12589. extra: 1,
  12590. bottom: 0.01
  12591. }
  12592. },
  12593. frontRobes: {
  12594. height: math.unit(6, "feet"),
  12595. weight: math.unit(150, "lb"),
  12596. name: "Front (Robes)",
  12597. image: {
  12598. source: "./media/characters/porter/front-robes.svg",
  12599. extra: 1.01,
  12600. bottom: 0.01
  12601. }
  12602. },
  12603. },
  12604. [
  12605. {
  12606. name: "Normal",
  12607. height: math.unit(11 + 9 / 12, "feet"),
  12608. default: true
  12609. },
  12610. ]
  12611. ))
  12612. characterMakers.push(() => makeCharacter(
  12613. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12614. {
  12615. legendary: {
  12616. height: math.unit(6, "feet"),
  12617. weight: math.unit(150, "lb"),
  12618. name: "Legendary",
  12619. image: {
  12620. source: "./media/characters/lucy/legendary.svg",
  12621. extra: 1355 / 1100,
  12622. bottom: 0.045
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Legendary",
  12629. height: math.unit(86882 * 2, "miles"),
  12630. default: true
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(150, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/drusilla/front.svg",
  12643. extra: 678 / 635,
  12644. bottom: 0.03
  12645. }
  12646. },
  12647. back: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(150, "lb"),
  12650. name: "Back",
  12651. image: {
  12652. source: "./media/characters/drusilla/back.svg",
  12653. extra: 678 / 635,
  12654. bottom: 0.005
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Macro",
  12661. height: math.unit(100, "feet")
  12662. },
  12663. {
  12664. name: "Canon Height",
  12665. height: math.unit(2000, "feet"),
  12666. default: true
  12667. },
  12668. ]
  12669. ))
  12670. characterMakers.push(() => makeCharacter(
  12671. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12672. {
  12673. front: {
  12674. height: math.unit(6, "feet"),
  12675. weight: math.unit(180, "lb"),
  12676. name: "Front",
  12677. image: {
  12678. source: "./media/characters/renard-thatch/front.svg",
  12679. extra: 2411 / 2275,
  12680. bottom: 0.01
  12681. }
  12682. },
  12683. frontPosing: {
  12684. height: math.unit(6, "feet"),
  12685. weight: math.unit(180, "lb"),
  12686. name: "Front (Posing)",
  12687. image: {
  12688. source: "./media/characters/renard-thatch/front-posing.svg",
  12689. extra: 2381 / 2261,
  12690. bottom: 0.01
  12691. }
  12692. },
  12693. back: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(180, "lb"),
  12696. name: "Back",
  12697. image: {
  12698. source: "./media/characters/renard-thatch/back.svg",
  12699. extra: 2428 / 2288
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Micro",
  12706. height: math.unit(3, "inches")
  12707. },
  12708. {
  12709. name: "Default",
  12710. height: math.unit(6, "feet"),
  12711. default: true
  12712. },
  12713. {
  12714. name: "Macro",
  12715. height: math.unit(75, "feet")
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12721. {
  12722. front: {
  12723. height: math.unit(1450, "feet"),
  12724. weight: math.unit(1.21e6, "tons"),
  12725. name: "Front",
  12726. image: {
  12727. source: "./media/characters/sekvra/front.svg",
  12728. extra: 1,
  12729. bottom: 0.03
  12730. }
  12731. },
  12732. frontClothed: {
  12733. height: math.unit(1450, "feet"),
  12734. weight: math.unit(1.21e6, "tons"),
  12735. name: "Front (Clothed)",
  12736. image: {
  12737. source: "./media/characters/sekvra/front-clothed.svg",
  12738. extra: 1,
  12739. bottom: 0.03
  12740. }
  12741. },
  12742. side: {
  12743. height: math.unit(1450, "feet"),
  12744. weight: math.unit(1.21e6, "tons"),
  12745. name: "Side",
  12746. image: {
  12747. source: "./media/characters/sekvra/side.svg",
  12748. extra: 1,
  12749. bottom: 0.025
  12750. }
  12751. },
  12752. back: {
  12753. height: math.unit(1450, "feet"),
  12754. weight: math.unit(1.21e6, "tons"),
  12755. name: "Back",
  12756. image: {
  12757. source: "./media/characters/sekvra/back.svg",
  12758. extra: 1,
  12759. bottom: 0.005
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Macro",
  12766. height: math.unit(1450, "feet"),
  12767. default: true
  12768. },
  12769. {
  12770. name: "Megamacro",
  12771. height: math.unit(15000, "feet")
  12772. },
  12773. ]
  12774. ))
  12775. characterMakers.push(() => makeCharacter(
  12776. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12777. {
  12778. front: {
  12779. height: math.unit(6, "feet"),
  12780. weight: math.unit(150, "lb"),
  12781. name: "Front",
  12782. image: {
  12783. source: "./media/characters/carmine/front.svg",
  12784. extra: 1,
  12785. bottom: 0.035
  12786. }
  12787. },
  12788. frontArmor: {
  12789. height: math.unit(6, "feet"),
  12790. weight: math.unit(150, "lb"),
  12791. name: "Front (Armor)",
  12792. image: {
  12793. source: "./media/characters/carmine/front-armor.svg",
  12794. extra: 1,
  12795. bottom: 0.035
  12796. }
  12797. },
  12798. },
  12799. [
  12800. {
  12801. name: "Large",
  12802. height: math.unit(1, "mile")
  12803. },
  12804. {
  12805. name: "Huge",
  12806. height: math.unit(40, "miles"),
  12807. default: true
  12808. },
  12809. {
  12810. name: "Colossal",
  12811. height: math.unit(2500, "miles")
  12812. },
  12813. ]
  12814. ))
  12815. characterMakers.push(() => makeCharacter(
  12816. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12817. {
  12818. front: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(150, "lb"),
  12821. name: "Front",
  12822. image: {
  12823. source: "./media/characters/elyssia/front.svg",
  12824. extra: 2201 / 2035,
  12825. bottom: 0.05
  12826. }
  12827. },
  12828. frontClothed: {
  12829. height: math.unit(6, "feet"),
  12830. weight: math.unit(150, "lb"),
  12831. name: "Front (Clothed)",
  12832. image: {
  12833. source: "./media/characters/elyssia/front-clothed.svg",
  12834. extra: 2201 / 2035,
  12835. bottom: 0.05
  12836. }
  12837. },
  12838. back: {
  12839. height: math.unit(6, "feet"),
  12840. weight: math.unit(150, "lb"),
  12841. name: "Back",
  12842. image: {
  12843. source: "./media/characters/elyssia/back.svg",
  12844. extra: 2201 / 2035,
  12845. bottom: 0.013
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Smaller",
  12852. height: math.unit(150, "feet")
  12853. },
  12854. {
  12855. name: "Standard",
  12856. height: math.unit(1400, "feet"),
  12857. default: true
  12858. },
  12859. {
  12860. name: "Distracted",
  12861. height: math.unit(15000, "feet")
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12867. {
  12868. front: {
  12869. height: math.unit(7 + 4 / 12, "feet"),
  12870. weight: math.unit(500, "lb"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/geno-maxwell/front.svg",
  12874. extra: 2207 / 2040,
  12875. bottom: 0.015
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Micro",
  12882. height: math.unit(3, "inches")
  12883. },
  12884. {
  12885. name: "Normal",
  12886. height: math.unit(7 + 4 / 12, "feet"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Macro",
  12891. height: math.unit(220, "feet")
  12892. },
  12893. {
  12894. name: "Megamacro",
  12895. height: math.unit(11, "miles")
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12901. {
  12902. front: {
  12903. height: math.unit(7 + 4 / 12, "feet"),
  12904. weight: math.unit(500, "lb"),
  12905. name: "Front",
  12906. image: {
  12907. source: "./media/characters/regena-maxwell/front.svg",
  12908. extra: 3115 / 2770,
  12909. bottom: 0.02
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Normal",
  12916. height: math.unit(7 + 4 / 12, "feet"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Macro",
  12921. height: math.unit(220, "feet")
  12922. },
  12923. {
  12924. name: "Megamacro",
  12925. height: math.unit(11, "miles")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(6, "feet"),
  12934. weight: math.unit(150, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12938. extra: 860 / 690,
  12939. bottom: 0.03
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Normal",
  12946. height: math.unit(1.7, "meters"),
  12947. default: true
  12948. },
  12949. ]
  12950. ))
  12951. characterMakers.push(() => makeCharacter(
  12952. { name: "Quilly", species: ["quilava"], 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/quilly/front.svg",
  12960. extra: 890 / 776
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Gigamacro",
  12967. height: math.unit(404090, "miles"),
  12968. default: true
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(7 + 8 / 12, "feet"),
  12977. weight: math.unit(350, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/tempest/front.svg",
  12981. extra: 1175 / 1086,
  12982. bottom: 0.02
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(7 + 8 / 12, "feet"),
  12990. default: true
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12996. {
  12997. side: {
  12998. height: math.unit(4 + 5 / 12, "feet"),
  12999. weight: math.unit(80, "lb"),
  13000. name: "Side",
  13001. image: {
  13002. source: "./media/characters/rodger/side.svg",
  13003. extra: 1235 / 1118
  13004. }
  13005. },
  13006. },
  13007. [
  13008. {
  13009. name: "Micro",
  13010. height: math.unit(1, "inch")
  13011. },
  13012. {
  13013. name: "Normal",
  13014. height: math.unit(4 + 5 / 12, "feet"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Macro",
  13019. height: math.unit(120, "feet")
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(150, "lb"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/danyel/front.svg",
  13032. extra: 1185 / 1123,
  13033. bottom: 0.05
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Shrunken",
  13040. height: math.unit(0.5, "mm")
  13041. },
  13042. {
  13043. name: "Micro",
  13044. height: math.unit(1, "mm"),
  13045. default: true
  13046. },
  13047. {
  13048. name: "Upsized",
  13049. height: math.unit(5 + 5 / 12, "feet")
  13050. },
  13051. ]
  13052. ))
  13053. characterMakers.push(() => makeCharacter(
  13054. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13055. {
  13056. front: {
  13057. height: math.unit(5 + 6 / 12, "feet"),
  13058. weight: math.unit(200, "lb"),
  13059. name: "Front",
  13060. image: {
  13061. source: "./media/characters/vivian-bijoux/front.svg",
  13062. extra: 1,
  13063. bottom: 0.072
  13064. }
  13065. },
  13066. },
  13067. [
  13068. {
  13069. name: "Normal",
  13070. height: math.unit(5 + 6 / 12, "feet"),
  13071. default: true
  13072. },
  13073. {
  13074. name: "Bad Dream",
  13075. height: math.unit(500, "feet")
  13076. },
  13077. {
  13078. name: "Nightmare",
  13079. height: math.unit(500, "miles")
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13085. {
  13086. front: {
  13087. height: math.unit(6 + 1 / 12, "feet"),
  13088. weight: math.unit(260, "lb"),
  13089. name: "Front",
  13090. image: {
  13091. source: "./media/characters/zeta/front.svg",
  13092. extra: 1968 / 1889,
  13093. bottom: 0.06
  13094. }
  13095. },
  13096. back: {
  13097. height: math.unit(6 + 1 / 12, "feet"),
  13098. weight: math.unit(260, "lb"),
  13099. name: "Back",
  13100. image: {
  13101. source: "./media/characters/zeta/back.svg",
  13102. extra: 1944 / 1858,
  13103. bottom: 0.03
  13104. }
  13105. },
  13106. hand: {
  13107. height: math.unit(1.112, "feet"),
  13108. name: "Hand",
  13109. image: {
  13110. source: "./media/characters/zeta/hand.svg"
  13111. }
  13112. },
  13113. foot: {
  13114. height: math.unit(1.48, "feet"),
  13115. name: "Foot",
  13116. image: {
  13117. source: "./media/characters/zeta/foot.svg"
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Micro",
  13124. height: math.unit(6, "inches")
  13125. },
  13126. {
  13127. name: "Normal",
  13128. height: math.unit(6 + 1 / 12, "feet"),
  13129. default: true
  13130. },
  13131. {
  13132. name: "Macro",
  13133. height: math.unit(20, "feet")
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13139. {
  13140. front: {
  13141. height: math.unit(6, "feet"),
  13142. weight: math.unit(150, "lb"),
  13143. name: "Front",
  13144. image: {
  13145. source: "./media/characters/jamie-larsen/front.svg",
  13146. extra: 962 / 933,
  13147. bottom: 0.02
  13148. }
  13149. },
  13150. back: {
  13151. height: math.unit(6, "feet"),
  13152. weight: math.unit(150, "lb"),
  13153. name: "Back",
  13154. image: {
  13155. source: "./media/characters/jamie-larsen/back.svg",
  13156. extra: 997 / 946
  13157. }
  13158. },
  13159. },
  13160. [
  13161. {
  13162. name: "Macro",
  13163. height: math.unit(28 + 7 / 12, "feet"),
  13164. default: true
  13165. },
  13166. {
  13167. name: "Macro+",
  13168. height: math.unit(180, "feet")
  13169. },
  13170. {
  13171. name: "Megamacro",
  13172. height: math.unit(10, "miles")
  13173. },
  13174. {
  13175. name: "Gigamacro",
  13176. height: math.unit(200000, "miles")
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13182. {
  13183. front: {
  13184. height: math.unit(6, "feet"),
  13185. weight: math.unit(120, "lb"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/vance/front.svg",
  13189. extra: 1980 / 1890,
  13190. bottom: 0.09
  13191. }
  13192. },
  13193. back: {
  13194. height: math.unit(6, "feet"),
  13195. weight: math.unit(120, "lb"),
  13196. name: "Back",
  13197. image: {
  13198. source: "./media/characters/vance/back.svg",
  13199. extra: 2081 / 1994,
  13200. bottom: 0.014
  13201. }
  13202. },
  13203. hand: {
  13204. height: math.unit(0.88, "feet"),
  13205. name: "Hand",
  13206. image: {
  13207. source: "./media/characters/vance/hand.svg"
  13208. }
  13209. },
  13210. foot: {
  13211. height: math.unit(0.64, "feet"),
  13212. name: "Foot",
  13213. image: {
  13214. source: "./media/characters/vance/foot.svg"
  13215. }
  13216. },
  13217. },
  13218. [
  13219. {
  13220. name: "Small",
  13221. height: math.unit(90, "feet"),
  13222. default: true
  13223. },
  13224. {
  13225. name: "Macro",
  13226. height: math.unit(100, "meters")
  13227. },
  13228. {
  13229. name: "Megamacro",
  13230. height: math.unit(15, "miles")
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13236. {
  13237. front: {
  13238. height: math.unit(6, "feet"),
  13239. weight: math.unit(180, "lb"),
  13240. name: "Front",
  13241. image: {
  13242. source: "./media/characters/xochitl/front.svg",
  13243. extra: 2297 / 2261,
  13244. bottom: 0.065
  13245. }
  13246. },
  13247. back: {
  13248. height: math.unit(6, "feet"),
  13249. weight: math.unit(180, "lb"),
  13250. name: "Back",
  13251. image: {
  13252. source: "./media/characters/xochitl/back.svg",
  13253. extra: 2386 / 2354,
  13254. bottom: 0.01
  13255. }
  13256. },
  13257. foot: {
  13258. height: math.unit(6 / 5 * 1.15, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Foot",
  13261. image: {
  13262. source: "./media/characters/xochitl/foot.svg"
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "Macro",
  13269. height: math.unit(80, "feet")
  13270. },
  13271. {
  13272. name: "Macro+",
  13273. height: math.unit(400, "feet"),
  13274. default: true
  13275. },
  13276. {
  13277. name: "Gigamacro",
  13278. height: math.unit(80000, "miles")
  13279. },
  13280. {
  13281. name: "Gigamacro+",
  13282. height: math.unit(400000, "miles")
  13283. },
  13284. {
  13285. name: "Teramacro",
  13286. height: math.unit(300, "AU")
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(150, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/vincent/front.svg",
  13299. extra: 1130 / 1080,
  13300. bottom: 0.055
  13301. }
  13302. },
  13303. beak: {
  13304. height: math.unit(6 * 0.1, "feet"),
  13305. name: "Beak",
  13306. image: {
  13307. source: "./media/characters/vincent/beak.svg"
  13308. }
  13309. },
  13310. hand: {
  13311. height: math.unit(6 * 0.85, "feet"),
  13312. weight: math.unit(150, "lb"),
  13313. name: "Hand",
  13314. image: {
  13315. source: "./media/characters/vincent/hand.svg"
  13316. }
  13317. },
  13318. foot: {
  13319. height: math.unit(6 * 0.19, "feet"),
  13320. weight: math.unit(150, "lb"),
  13321. name: "Foot",
  13322. image: {
  13323. source: "./media/characters/vincent/foot.svg"
  13324. }
  13325. },
  13326. },
  13327. [
  13328. {
  13329. name: "Base",
  13330. height: math.unit(6 + 5 / 12, "feet"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Macro",
  13335. height: math.unit(300, "feet")
  13336. },
  13337. {
  13338. name: "Megamacro",
  13339. height: math.unit(2, "miles")
  13340. },
  13341. {
  13342. name: "Gigamacro",
  13343. height: math.unit(1000, "miles")
  13344. },
  13345. ]
  13346. ))
  13347. characterMakers.push(() => makeCharacter(
  13348. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13349. {
  13350. front: {
  13351. height: math.unit(6 + 2 / 12, "feet"),
  13352. weight: math.unit(265, "lb"),
  13353. name: "Front",
  13354. image: {
  13355. source: "./media/characters/jay/front.svg",
  13356. extra: 1510 / 1430,
  13357. bottom: 0.042
  13358. }
  13359. },
  13360. back: {
  13361. height: math.unit(6 + 2 / 12, "feet"),
  13362. weight: math.unit(265, "lb"),
  13363. name: "Back",
  13364. image: {
  13365. source: "./media/characters/jay/back.svg",
  13366. extra: 1510 / 1430,
  13367. bottom: 0.025
  13368. }
  13369. },
  13370. clothed: {
  13371. height: math.unit(6 + 2 / 12, "feet"),
  13372. weight: math.unit(265, "lb"),
  13373. name: "Front (Clothed)",
  13374. image: {
  13375. source: "./media/characters/jay/clothed.svg",
  13376. extra: 744 / 699,
  13377. bottom: 0.043
  13378. }
  13379. },
  13380. head: {
  13381. height: math.unit(1.772, "feet"),
  13382. name: "Head",
  13383. image: {
  13384. source: "./media/characters/jay/head.svg"
  13385. }
  13386. },
  13387. sizeRay: {
  13388. height: math.unit(1.331, "feet"),
  13389. name: "Size Ray",
  13390. image: {
  13391. source: "./media/characters/jay/size-ray.svg"
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Micro",
  13398. height: math.unit(1, "inch")
  13399. },
  13400. {
  13401. name: "Normal",
  13402. height: math.unit(6 + 2 / 12, "feet"),
  13403. default: true
  13404. },
  13405. {
  13406. name: "Macro",
  13407. height: math.unit(1, "mile")
  13408. },
  13409. {
  13410. name: "Megamacro",
  13411. height: math.unit(100, "miles")
  13412. },
  13413. ]
  13414. ))
  13415. characterMakers.push(() => makeCharacter(
  13416. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13417. {
  13418. front: {
  13419. height: math.unit(2, "meters"),
  13420. weight: math.unit(500, "kg"),
  13421. name: "Front",
  13422. image: {
  13423. source: "./media/characters/coatl/front.svg",
  13424. extra: 3948 / 3500,
  13425. bottom: 0.082
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(4, "meters")
  13433. },
  13434. {
  13435. name: "Macro",
  13436. height: math.unit(100, "meters"),
  13437. default: true
  13438. },
  13439. {
  13440. name: "Macro+",
  13441. height: math.unit(300, "meters")
  13442. },
  13443. {
  13444. name: "Megamacro",
  13445. height: math.unit(3, "gigameters")
  13446. },
  13447. {
  13448. name: "Megamacro+",
  13449. height: math.unit(300, "terameters")
  13450. },
  13451. {
  13452. name: "Megamacro++",
  13453. height: math.unit(3, "lightyears")
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13459. {
  13460. front: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(50, "kg"),
  13463. name: "front",
  13464. image: {
  13465. source: "./media/characters/shiroryu/front.svg",
  13466. extra: 1990 / 1935
  13467. }
  13468. },
  13469. },
  13470. [
  13471. {
  13472. name: "Mortal Mingling",
  13473. height: math.unit(3, "meters")
  13474. },
  13475. {
  13476. name: "Kaiju-ish",
  13477. height: math.unit(250, "meters")
  13478. },
  13479. {
  13480. name: "Somewhat Godly",
  13481. height: math.unit(400, "km"),
  13482. default: true
  13483. },
  13484. {
  13485. name: "Planetary",
  13486. height: math.unit(300, "megameters")
  13487. },
  13488. {
  13489. name: "Galaxy-dwarfing",
  13490. height: math.unit(450, "kiloparsecs")
  13491. },
  13492. {
  13493. name: "Universe Eater",
  13494. height: math.unit(150, "gigaparsecs")
  13495. },
  13496. {
  13497. name: "Almost Immeasurable",
  13498. height: math.unit(1.3e266, "yottaparsecs")
  13499. },
  13500. ]
  13501. ))
  13502. characterMakers.push(() => makeCharacter(
  13503. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13504. {
  13505. front: {
  13506. height: math.unit(6, "feet"),
  13507. weight: math.unit(150, "lb"),
  13508. name: "Front",
  13509. image: {
  13510. source: "./media/characters/umeko/front.svg",
  13511. extra: 1,
  13512. bottom: 0.019
  13513. }
  13514. },
  13515. frontArmored: {
  13516. height: math.unit(6, "feet"),
  13517. weight: math.unit(150, "lb"),
  13518. name: "Front (Armored)",
  13519. image: {
  13520. source: "./media/characters/umeko/front-armored.svg",
  13521. extra: 1,
  13522. bottom: 0.021
  13523. }
  13524. },
  13525. },
  13526. [
  13527. {
  13528. name: "Macro",
  13529. height: math.unit(220, "feet"),
  13530. default: true
  13531. },
  13532. {
  13533. name: "Guardian Dragon",
  13534. height: math.unit(50, "miles")
  13535. },
  13536. {
  13537. name: "Cosmic",
  13538. height: math.unit(800000, "miles")
  13539. },
  13540. ]
  13541. ))
  13542. characterMakers.push(() => makeCharacter(
  13543. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13544. {
  13545. front: {
  13546. height: math.unit(6, "feet"),
  13547. weight: math.unit(150, "lb"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/cassidy/front.svg",
  13551. extra: 1,
  13552. bottom: 0.043
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Canon Height",
  13559. height: math.unit(120, "feet"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Macro+",
  13564. height: math.unit(400, "feet")
  13565. },
  13566. {
  13567. name: "Macro++",
  13568. height: math.unit(4000, "feet")
  13569. },
  13570. {
  13571. name: "Megamacro",
  13572. height: math.unit(3, "miles")
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13578. {
  13579. front: {
  13580. height: math.unit(6, "feet"),
  13581. weight: math.unit(150, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/isaac/front.svg",
  13585. extra: 896 / 815,
  13586. bottom: 0.11
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Human Size",
  13593. height: math.unit(8, "feet"),
  13594. default: true
  13595. },
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(400, "feet")
  13599. },
  13600. {
  13601. name: "Megamacro",
  13602. height: math.unit(50, "miles")
  13603. },
  13604. {
  13605. name: "Canon Height",
  13606. height: math.unit(200, "AU")
  13607. },
  13608. ]
  13609. ))
  13610. characterMakers.push(() => makeCharacter(
  13611. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13612. {
  13613. front: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(72, "kg"),
  13616. name: "Front",
  13617. image: {
  13618. source: "./media/characters/sleekit/front.svg",
  13619. extra: 4693 / 4487,
  13620. bottom: 0.012
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Minimum Height",
  13627. height: math.unit(10, "meters")
  13628. },
  13629. {
  13630. name: "Smaller",
  13631. height: math.unit(25, "meters")
  13632. },
  13633. {
  13634. name: "Larger",
  13635. height: math.unit(38, "meters"),
  13636. default: true
  13637. },
  13638. {
  13639. name: "Maximum height",
  13640. height: math.unit(100, "meters")
  13641. },
  13642. ]
  13643. ))
  13644. characterMakers.push(() => makeCharacter(
  13645. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13646. {
  13647. front: {
  13648. height: math.unit(6, "feet"),
  13649. weight: math.unit(150, "lb"),
  13650. name: "Front",
  13651. image: {
  13652. source: "./media/characters/nillia/front.svg",
  13653. extra: 2195 / 2037,
  13654. bottom: 0.005
  13655. }
  13656. },
  13657. back: {
  13658. height: math.unit(6, "feet"),
  13659. weight: math.unit(150, "lb"),
  13660. name: "Back",
  13661. image: {
  13662. source: "./media/characters/nillia/back.svg",
  13663. extra: 2195 / 2037,
  13664. bottom: 0.005
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Canon Height",
  13671. height: math.unit(489, "feet"),
  13672. default: true
  13673. }
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(6, "feet"),
  13681. weight: math.unit(150, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/mesmyriza/front.svg",
  13685. extra: 2067 / 1784,
  13686. bottom: 0.035
  13687. }
  13688. },
  13689. foot: {
  13690. height: math.unit(6 / (250 / 35), "feet"),
  13691. name: "Foot",
  13692. image: {
  13693. source: "./media/characters/mesmyriza/foot.svg"
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Macro",
  13700. height: math.unit(457, "meters"),
  13701. default: true
  13702. },
  13703. {
  13704. name: "Megamacro",
  13705. height: math.unit(8, "megameters")
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13711. {
  13712. front: {
  13713. height: math.unit(6, "feet"),
  13714. weight: math.unit(250, "lb"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/saudade/front.svg",
  13718. extra: 1172 / 1139,
  13719. bottom: 0.035
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Micro",
  13726. height: math.unit(3, "inches")
  13727. },
  13728. {
  13729. name: "Normal",
  13730. height: math.unit(6, "feet"),
  13731. default: true
  13732. },
  13733. {
  13734. name: "Macro",
  13735. height: math.unit(50, "feet")
  13736. },
  13737. {
  13738. name: "Megamacro",
  13739. height: math.unit(2800, "feet")
  13740. },
  13741. ]
  13742. ))
  13743. characterMakers.push(() => makeCharacter(
  13744. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13745. {
  13746. front: {
  13747. height: math.unit(5 + 4 / 12, "feet"),
  13748. weight: math.unit(100, "lb"),
  13749. name: "Front",
  13750. image: {
  13751. source: "./media/characters/keireer/front.svg",
  13752. extra: 716 / 666,
  13753. bottom: 0.05
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Normal",
  13760. height: math.unit(5 + 4 / 12, "feet"),
  13761. default: true
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13767. {
  13768. front: {
  13769. height: math.unit(6, "feet"),
  13770. weight: math.unit(90, "kg"),
  13771. name: "Front",
  13772. image: {
  13773. source: "./media/characters/mirja/front.svg",
  13774. extra: 1789 / 1683,
  13775. bottom: 0.05
  13776. }
  13777. },
  13778. frontDressed: {
  13779. height: math.unit(6, "feet"),
  13780. weight: math.unit(90, "lb"),
  13781. name: "Front (Dressed)",
  13782. image: {
  13783. source: "./media/characters/mirja/front-dressed.svg",
  13784. extra: 1789 / 1683,
  13785. bottom: 0.05
  13786. }
  13787. },
  13788. back: {
  13789. height: math.unit(6, "feet"),
  13790. weight: math.unit(90, "lb"),
  13791. name: "Back",
  13792. image: {
  13793. source: "./media/characters/mirja/back.svg",
  13794. extra: 953 / 917,
  13795. bottom: 0.017
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "\"Incognito\"",
  13802. height: math.unit(3, "meters")
  13803. },
  13804. {
  13805. name: "Strolling Size",
  13806. height: math.unit(15, "km")
  13807. },
  13808. {
  13809. name: "Larger Strolling Size",
  13810. height: math.unit(400, "km")
  13811. },
  13812. {
  13813. name: "Preferred Size",
  13814. height: math.unit(5000, "km")
  13815. },
  13816. {
  13817. name: "True Size",
  13818. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13819. default: true
  13820. },
  13821. ]
  13822. ))
  13823. characterMakers.push(() => makeCharacter(
  13824. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13825. {
  13826. front: {
  13827. height: math.unit(15, "feet"),
  13828. weight: math.unit(880, "kg"),
  13829. name: "Front",
  13830. image: {
  13831. source: "./media/characters/nightraver/front.svg",
  13832. extra: 2444 / 2160,
  13833. bottom: 0.027
  13834. }
  13835. },
  13836. back: {
  13837. height: math.unit(15, "feet"),
  13838. weight: math.unit(880, "kg"),
  13839. name: "Back",
  13840. image: {
  13841. source: "./media/characters/nightraver/back.svg",
  13842. extra: 2309 / 2180,
  13843. bottom: 0.005
  13844. }
  13845. },
  13846. sole: {
  13847. height: math.unit(2.878, "feet"),
  13848. name: "Sole",
  13849. image: {
  13850. source: "./media/characters/nightraver/sole.svg"
  13851. }
  13852. },
  13853. foot: {
  13854. height: math.unit(2.285, "feet"),
  13855. name: "Foot",
  13856. image: {
  13857. source: "./media/characters/nightraver/foot.svg"
  13858. }
  13859. },
  13860. maw: {
  13861. height: math.unit(2.67, "feet"),
  13862. name: "Maw",
  13863. image: {
  13864. source: "./media/characters/nightraver/maw.svg"
  13865. }
  13866. },
  13867. },
  13868. [
  13869. {
  13870. name: "Micro",
  13871. height: math.unit(1, "cm")
  13872. },
  13873. {
  13874. name: "Normal",
  13875. height: math.unit(15, "feet"),
  13876. default: true
  13877. },
  13878. {
  13879. name: "Macro",
  13880. height: math.unit(300, "feet")
  13881. },
  13882. {
  13883. name: "Megamacro",
  13884. height: math.unit(300, "miles")
  13885. },
  13886. {
  13887. name: "Gigamacro",
  13888. height: math.unit(10000, "miles")
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13894. {
  13895. side: {
  13896. height: math.unit(2, "inches"),
  13897. weight: math.unit(5, "grams"),
  13898. name: "Side",
  13899. image: {
  13900. source: "./media/characters/arc/side.svg"
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Micro",
  13907. height: math.unit(2, "inches"),
  13908. default: true
  13909. },
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13914. {
  13915. front: {
  13916. height: math.unit(1.1938, "meters"),
  13917. weight: math.unit(54, "kg"),
  13918. name: "Front",
  13919. image: {
  13920. source: "./media/characters/nebula-shahar/front.svg",
  13921. extra: 1642 / 1436,
  13922. bottom: 0.06
  13923. }
  13924. },
  13925. },
  13926. [
  13927. {
  13928. name: "Megamicro",
  13929. height: math.unit(0.3, "mm")
  13930. },
  13931. {
  13932. name: "Micro",
  13933. height: math.unit(3, "cm")
  13934. },
  13935. {
  13936. name: "Normal",
  13937. height: math.unit(138, "cm"),
  13938. default: true
  13939. },
  13940. {
  13941. name: "Macro",
  13942. height: math.unit(30, "m")
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13948. {
  13949. front: {
  13950. height: math.unit(5.24, "feet"),
  13951. weight: math.unit(150, "lb"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/shayla/front.svg",
  13955. extra: 1512 / 1414,
  13956. bottom: 0.01
  13957. }
  13958. },
  13959. back: {
  13960. height: math.unit(5.24, "feet"),
  13961. weight: math.unit(150, "lb"),
  13962. name: "Back",
  13963. image: {
  13964. source: "./media/characters/shayla/back.svg",
  13965. extra: 1512 / 1414
  13966. }
  13967. },
  13968. hand: {
  13969. height: math.unit(0.7781496062992126, "feet"),
  13970. name: "Hand",
  13971. image: {
  13972. source: "./media/characters/shayla/hand.svg"
  13973. }
  13974. },
  13975. foot: {
  13976. height: math.unit(1.4206036745406823, "feet"),
  13977. name: "Foot",
  13978. image: {
  13979. source: "./media/characters/shayla/foot.svg"
  13980. }
  13981. },
  13982. },
  13983. [
  13984. {
  13985. name: "Micro",
  13986. height: math.unit(0.32, "feet")
  13987. },
  13988. {
  13989. name: "Normal",
  13990. height: math.unit(5.24, "feet"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Macro",
  13995. height: math.unit(492.12, "feet")
  13996. },
  13997. {
  13998. name: "Megamacro",
  13999. height: math.unit(186.41, "miles")
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14005. {
  14006. front: {
  14007. height: math.unit(2.2, "m"),
  14008. weight: math.unit(120, "kg"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/pia-jr/front.svg",
  14012. extra: 1000 / 970,
  14013. bottom: 0.035
  14014. }
  14015. },
  14016. hand: {
  14017. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14018. name: "Hand",
  14019. image: {
  14020. source: "./media/characters/pia-jr/hand.svg"
  14021. }
  14022. },
  14023. paw: {
  14024. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14025. name: "Paw",
  14026. image: {
  14027. source: "./media/characters/pia-jr/paw.svg"
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Micro",
  14034. height: math.unit(1.2, "cm")
  14035. },
  14036. {
  14037. name: "Normal",
  14038. height: math.unit(2.2, "m"),
  14039. default: true
  14040. },
  14041. {
  14042. name: "Macro",
  14043. height: math.unit(180, "m")
  14044. },
  14045. {
  14046. name: "Megamacro",
  14047. height: math.unit(420, "km")
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(2, "m"),
  14056. weight: math.unit(115, "kg"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/pia-sr/front.svg",
  14060. extra: 760 / 730,
  14061. bottom: 0.015
  14062. }
  14063. },
  14064. back: {
  14065. height: math.unit(2, "m"),
  14066. weight: math.unit(115, "kg"),
  14067. name: "Back",
  14068. image: {
  14069. source: "./media/characters/pia-sr/back.svg",
  14070. extra: 760 / 730,
  14071. bottom: 0.01
  14072. }
  14073. },
  14074. hand: {
  14075. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14076. name: "Hand",
  14077. image: {
  14078. source: "./media/characters/pia-sr/hand.svg"
  14079. }
  14080. },
  14081. foot: {
  14082. height: math.unit(1.83, "feet"),
  14083. name: "Foot",
  14084. image: {
  14085. source: "./media/characters/pia-sr/foot.svg"
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Micro",
  14092. height: math.unit(88, "mm")
  14093. },
  14094. {
  14095. name: "Normal",
  14096. height: math.unit(2, "m"),
  14097. default: true
  14098. },
  14099. {
  14100. name: "Macro",
  14101. height: math.unit(200, "m")
  14102. },
  14103. {
  14104. name: "Megamacro",
  14105. height: math.unit(420, "km")
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(8 + 2 / 12, "feet"),
  14114. weight: math.unit(300, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/kibibyte/front.svg",
  14118. extra: 2221 / 2098,
  14119. bottom: 0.04
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Normal",
  14126. height: math.unit(8 + 2 / 12, "feet"),
  14127. default: true
  14128. },
  14129. {
  14130. name: "Socialable Macro",
  14131. height: math.unit(50, "feet")
  14132. },
  14133. {
  14134. name: "Macro",
  14135. height: math.unit(300, "feet")
  14136. },
  14137. {
  14138. name: "Megamacro",
  14139. height: math.unit(500, "miles")
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(6, "feet"),
  14148. weight: math.unit(150, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/felix/front.svg",
  14152. extra: 762 / 722,
  14153. bottom: 0.02
  14154. }
  14155. },
  14156. frontClothed: {
  14157. height: math.unit(6, "feet"),
  14158. weight: math.unit(150, "lb"),
  14159. name: "Front (Clothed)",
  14160. image: {
  14161. source: "./media/characters/felix/front-clothed.svg",
  14162. extra: 762 / 722,
  14163. bottom: 0.02
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(6 + 8 / 12, "feet"),
  14171. default: true
  14172. },
  14173. {
  14174. name: "Macro",
  14175. height: math.unit(2600, "feet")
  14176. },
  14177. {
  14178. name: "Megamacro",
  14179. height: math.unit(450, "miles")
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(6 + 1 / 12, "feet"),
  14188. weight: math.unit(250, "lb"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/tobo/front.svg",
  14192. extra: 608 / 586,
  14193. bottom: 0.023
  14194. }
  14195. },
  14196. back: {
  14197. height: math.unit(6 + 1 / 12, "feet"),
  14198. weight: math.unit(250, "lb"),
  14199. name: "Back",
  14200. image: {
  14201. source: "./media/characters/tobo/back.svg",
  14202. extra: 608 / 586
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Nano",
  14209. height: math.unit(2, "nm")
  14210. },
  14211. {
  14212. name: "Megamicro",
  14213. height: math.unit(0.1, "mm")
  14214. },
  14215. {
  14216. name: "Micro",
  14217. height: math.unit(1, "inch"),
  14218. default: true
  14219. },
  14220. {
  14221. name: "Human-sized",
  14222. height: math.unit(6 + 1 / 12, "feet")
  14223. },
  14224. {
  14225. name: "Macro",
  14226. height: math.unit(250, "feet")
  14227. },
  14228. {
  14229. name: "Megamacro",
  14230. height: math.unit(75, "miles")
  14231. },
  14232. {
  14233. name: "Texas-sized",
  14234. height: math.unit(750, "miles")
  14235. },
  14236. {
  14237. name: "Teramacro",
  14238. height: math.unit(50000, "miles")
  14239. },
  14240. ]
  14241. ))
  14242. characterMakers.push(() => makeCharacter(
  14243. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14244. {
  14245. front: {
  14246. height: math.unit(6, "feet"),
  14247. weight: math.unit(269, "lb"),
  14248. name: "Front",
  14249. image: {
  14250. source: "./media/characters/danny-kapowsky/front.svg",
  14251. extra: 766 / 736,
  14252. bottom: 0.044
  14253. }
  14254. },
  14255. back: {
  14256. height: math.unit(6, "feet"),
  14257. weight: math.unit(269, "lb"),
  14258. name: "Back",
  14259. image: {
  14260. source: "./media/characters/danny-kapowsky/back.svg",
  14261. extra: 797 / 760,
  14262. bottom: 0.025
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Macro",
  14269. height: math.unit(150, "feet"),
  14270. default: true
  14271. },
  14272. {
  14273. name: "Macro+",
  14274. height: math.unit(200, "feet")
  14275. },
  14276. {
  14277. name: "Macro++",
  14278. height: math.unit(300, "feet")
  14279. },
  14280. {
  14281. name: "Macro+++",
  14282. height: math.unit(400, "feet")
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14288. {
  14289. side: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(170, "lb"),
  14292. name: "Side",
  14293. image: {
  14294. source: "./media/characters/finn/side.svg",
  14295. extra: 1953 / 1807,
  14296. bottom: 0.057
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Megamacro",
  14303. height: math.unit(14445, "feet"),
  14304. default: true
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(5 + 6 / 12, "feet"),
  14313. weight: math.unit(125, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/roy/front.svg",
  14317. extra: 1,
  14318. bottom: 0.11
  14319. }
  14320. },
  14321. },
  14322. [
  14323. {
  14324. name: "Micro",
  14325. height: math.unit(3, "inches"),
  14326. default: true
  14327. },
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(5 + 6 / 12, "feet")
  14331. },
  14332. {
  14333. name: "Lesser Macro",
  14334. height: math.unit(60, "feet")
  14335. },
  14336. {
  14337. name: "Greater Macro",
  14338. height: math.unit(120, "feet")
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14344. {
  14345. front: {
  14346. height: math.unit(6, "feet"),
  14347. weight: math.unit(100, "lb"),
  14348. name: "Front",
  14349. image: {
  14350. source: "./media/characters/aevsivs/front.svg",
  14351. extra: 1,
  14352. bottom: 0.03
  14353. }
  14354. },
  14355. back: {
  14356. height: math.unit(6, "feet"),
  14357. weight: math.unit(100, "lb"),
  14358. name: "Back",
  14359. image: {
  14360. source: "./media/characters/aevsivs/back.svg"
  14361. }
  14362. },
  14363. },
  14364. [
  14365. {
  14366. name: "Micro",
  14367. height: math.unit(2, "inches"),
  14368. default: true
  14369. },
  14370. {
  14371. name: "Normal",
  14372. height: math.unit(5, "feet")
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(5 + 7 / 12, "feet"),
  14381. weight: math.unit(159, "lb"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/hildegard/front.svg",
  14385. extra: 289 / 269,
  14386. bottom: 7.63 / 297.8
  14387. }
  14388. },
  14389. back: {
  14390. height: math.unit(5 + 7 / 12, "feet"),
  14391. weight: math.unit(159, "lb"),
  14392. name: "Back",
  14393. image: {
  14394. source: "./media/characters/hildegard/back.svg",
  14395. extra: 280 / 260,
  14396. bottom: 2.3 / 282
  14397. }
  14398. },
  14399. },
  14400. [
  14401. {
  14402. name: "Normal",
  14403. height: math.unit(5 + 7 / 12, "feet"),
  14404. default: true
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14410. {
  14411. bernard: {
  14412. height: math.unit(2 + 7 / 12, "feet"),
  14413. weight: math.unit(66, "lb"),
  14414. name: "Bernard",
  14415. rename: true,
  14416. image: {
  14417. source: "./media/characters/bernard-wilder/bernard.svg",
  14418. extra: 192 / 128,
  14419. bottom: 0.05
  14420. }
  14421. },
  14422. wilder: {
  14423. height: math.unit(5 + 8 / 12, "feet"),
  14424. weight: math.unit(143, "lb"),
  14425. name: "Wilder",
  14426. rename: true,
  14427. image: {
  14428. source: "./media/characters/bernard-wilder/wilder.svg",
  14429. extra: 361 / 312,
  14430. bottom: 0.02
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(2 + 7 / 12, "feet"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14444. {
  14445. anthro: {
  14446. height: math.unit(6 + 1 / 12, "feet"),
  14447. weight: math.unit(155, "lb"),
  14448. name: "Anthro",
  14449. image: {
  14450. source: "./media/characters/hearth/anthro.svg",
  14451. extra: 260 / 250,
  14452. bottom: 0.02
  14453. }
  14454. },
  14455. feral: {
  14456. height: math.unit(3.78, "feet"),
  14457. weight: math.unit(35, "kg"),
  14458. name: "Feral",
  14459. image: {
  14460. source: "./media/characters/hearth/feral.svg",
  14461. extra: 153 / 135,
  14462. bottom: 0.03
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Normal",
  14469. height: math.unit(6 + 1 / 12, "feet"),
  14470. default: true
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14476. {
  14477. front: {
  14478. height: math.unit(6, "feet"),
  14479. weight: math.unit(182, "lb"),
  14480. name: "Front",
  14481. image: {
  14482. source: "./media/characters/ingrid/front.svg",
  14483. extra: 294 / 268,
  14484. bottom: 0.027
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Normal",
  14491. height: math.unit(6, "feet"),
  14492. default: true
  14493. },
  14494. ]
  14495. ))
  14496. characterMakers.push(() => makeCharacter(
  14497. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14498. {
  14499. eevee: {
  14500. height: math.unit(2 + 10 / 12, "feet"),
  14501. weight: math.unit(86, "lb"),
  14502. name: "Malgam",
  14503. image: {
  14504. source: "./media/characters/malgam/eevee.svg",
  14505. extra: 218 / 180,
  14506. bottom: 0.2
  14507. }
  14508. },
  14509. sylveon: {
  14510. height: math.unit(4, "feet"),
  14511. weight: math.unit(101, "lb"),
  14512. name: "Future Malgam",
  14513. rename: true,
  14514. image: {
  14515. source: "./media/characters/malgam/sylveon.svg",
  14516. extra: 371 / 325,
  14517. bottom: 0.015
  14518. }
  14519. },
  14520. gigantamax: {
  14521. height: math.unit(50, "feet"),
  14522. name: "Gigantamax Malgam",
  14523. rename: true,
  14524. image: {
  14525. source: "./media/characters/malgam/gigantamax.svg"
  14526. }
  14527. },
  14528. },
  14529. [
  14530. {
  14531. name: "Normal",
  14532. height: math.unit(2 + 10 / 12, "feet"),
  14533. default: true
  14534. },
  14535. ]
  14536. ))
  14537. characterMakers.push(() => makeCharacter(
  14538. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14539. {
  14540. front: {
  14541. height: math.unit(5 + 11 / 12, "feet"),
  14542. weight: math.unit(188, "lb"),
  14543. name: "Front",
  14544. image: {
  14545. source: "./media/characters/fleur/front.svg",
  14546. extra: 309 / 283,
  14547. bottom: 0.007
  14548. }
  14549. },
  14550. },
  14551. [
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(5 + 11 / 12, "feet"),
  14555. default: true
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14561. {
  14562. front: {
  14563. height: math.unit(5 + 4 / 12, "feet"),
  14564. weight: math.unit(122, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/jude/front.svg",
  14568. extra: 288 / 273,
  14569. bottom: 0.03
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Normal",
  14576. height: math.unit(5 + 4 / 12, "feet"),
  14577. default: true
  14578. },
  14579. ]
  14580. ))
  14581. characterMakers.push(() => makeCharacter(
  14582. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14583. {
  14584. front: {
  14585. height: math.unit(5 + 11 / 12, "feet"),
  14586. weight: math.unit(190, "lb"),
  14587. name: "Front",
  14588. image: {
  14589. source: "./media/characters/seara/front.svg",
  14590. extra: 1,
  14591. bottom: 0.05
  14592. }
  14593. },
  14594. },
  14595. [
  14596. {
  14597. name: "Normal",
  14598. height: math.unit(5 + 11 / 12, "feet"),
  14599. default: true
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(16 + 5 / 12, "feet"),
  14608. weight: math.unit(524, "lb"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/caspian/front.svg",
  14612. extra: 1,
  14613. bottom: 0.04
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(16 + 5 / 12, "feet"),
  14621. default: true
  14622. },
  14623. ]
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14627. {
  14628. front: {
  14629. height: math.unit(5 + 7 / 12, "feet"),
  14630. weight: math.unit(170, "lb"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/mika/front.svg",
  14634. extra: 1,
  14635. bottom: 0.016
  14636. }
  14637. },
  14638. },
  14639. [
  14640. {
  14641. name: "Normal",
  14642. height: math.unit(5 + 7 / 12, "feet"),
  14643. default: true
  14644. },
  14645. ]
  14646. ))
  14647. characterMakers.push(() => makeCharacter(
  14648. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14649. {
  14650. front: {
  14651. height: math.unit(6 + 2 / 12, "feet"),
  14652. weight: math.unit(268, "lb"),
  14653. name: "Front",
  14654. image: {
  14655. source: "./media/characters/sol/front.svg",
  14656. extra: 247 / 231,
  14657. bottom: 0.05
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Normal",
  14664. height: math.unit(6 + 2 / 12, "feet"),
  14665. default: true
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14671. {
  14672. buizel: {
  14673. height: math.unit(2 + 5 / 12, "feet"),
  14674. weight: math.unit(87, "lb"),
  14675. name: "Buizel",
  14676. image: {
  14677. source: "./media/characters/umiko/buizel.svg",
  14678. extra: 172 / 157,
  14679. bottom: 0.01
  14680. }
  14681. },
  14682. floatzel: {
  14683. height: math.unit(5 + 9 / 12, "feet"),
  14684. weight: math.unit(250, "lb"),
  14685. name: "Floatzel",
  14686. image: {
  14687. source: "./media/characters/umiko/floatzel.svg",
  14688. extra: 262 / 248
  14689. }
  14690. },
  14691. },
  14692. [
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(2 + 5 / 12, "feet"),
  14696. default: true
  14697. },
  14698. ]
  14699. ))
  14700. characterMakers.push(() => makeCharacter(
  14701. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14702. {
  14703. front: {
  14704. height: math.unit(6 + 2 / 12, "feet"),
  14705. weight: math.unit(146, "lb"),
  14706. name: "Front",
  14707. image: {
  14708. source: "./media/characters/iliac/front.svg",
  14709. extra: 389 / 365,
  14710. bottom: 0.035
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(6 + 2 / 12, "feet"),
  14718. default: true
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(6, "feet"),
  14727. weight: math.unit(170, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/topaz/front.svg",
  14731. extra: 317 / 303,
  14732. bottom: 0.055
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Normal",
  14739. height: math.unit(6, "feet"),
  14740. default: true
  14741. },
  14742. ]
  14743. ))
  14744. characterMakers.push(() => makeCharacter(
  14745. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14746. {
  14747. front: {
  14748. height: math.unit(5 + 11 / 12, "feet"),
  14749. weight: math.unit(144, "lb"),
  14750. name: "Front",
  14751. image: {
  14752. source: "./media/characters/gabriel/front.svg",
  14753. extra: 285 / 262,
  14754. bottom: 0.004
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(5 + 11 / 12, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14768. {
  14769. side: {
  14770. height: math.unit(6 + 5 / 12, "feet"),
  14771. weight: math.unit(300, "lb"),
  14772. name: "Side",
  14773. image: {
  14774. source: "./media/characters/tempest-suicune/side.svg",
  14775. extra: 195 / 154,
  14776. bottom: 0.04
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(6 + 5 / 12, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(7 + 2 / 12, "feet"),
  14793. weight: math.unit(322, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/vulcan/front.svg",
  14797. extra: 154 / 147,
  14798. bottom: 0.04
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(7 + 2 / 12, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(5 + 10 / 12, "feet"),
  14815. weight: math.unit(264, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/gault/front.svg",
  14819. extra: 161 / 140,
  14820. bottom: 0.028
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Normal",
  14827. height: math.unit(5 + 10 / 12, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/shard/front.svg",
  14841. extra: 273 / 238,
  14842. bottom: 0.02
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(3 + 6 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(5 + 11 / 12, "feet"),
  14859. weight: math.unit(146, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/ashe/front.svg",
  14863. extra: 400 / 373,
  14864. bottom: 0.01
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(5 + 11 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(5 + 5 / 12, "feet"),
  14881. weight: math.unit(135, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/beatrix/front.svg",
  14885. extra: 392 / 379,
  14886. bottom: 0.01
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(6, "feet"),
  14894. default: true
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(6, "feet"),
  14903. weight: math.unit(150, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/ignatius/front.svg",
  14907. extra: 245 / 222,
  14908. bottom: 0.01
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(5 + 5 / 12, "feet"),
  14916. default: true
  14917. },
  14918. ]
  14919. ))
  14920. characterMakers.push(() => makeCharacter(
  14921. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14922. {
  14923. front: {
  14924. height: math.unit(6 + 2 / 12, "feet"),
  14925. weight: math.unit(138, "lb"),
  14926. name: "Front",
  14927. image: {
  14928. source: "./media/characters/mei-li/front.svg",
  14929. extra: 237 / 229,
  14930. bottom: 0.03
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(6 + 2 / 12, "feet"),
  14938. default: true
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(2 + 4 / 12, "feet"),
  14947. weight: math.unit(62, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/puru/front.svg",
  14951. extra: 206 / 149,
  14952. bottom: 0.06
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Normal",
  14959. height: math.unit(2 + 4 / 12, "feet"),
  14960. default: true
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14966. {
  14967. taur: {
  14968. height: math.unit(11, "feet"),
  14969. weight: math.unit(500, "lb"),
  14970. name: "Taur",
  14971. image: {
  14972. source: "./media/characters/kee/taur.svg",
  14973. extra: 1,
  14974. bottom: 0.04
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(11, "feet"),
  14982. default: true
  14983. },
  14984. ]
  14985. ))
  14986. characterMakers.push(() => makeCharacter(
  14987. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14988. {
  14989. anthro: {
  14990. height: math.unit(7, "feet"),
  14991. weight: math.unit(190, "lb"),
  14992. name: "Anthro",
  14993. image: {
  14994. source: "./media/characters/cobalt-dracha/anthro.svg",
  14995. extra: 231 / 225,
  14996. bottom: 0.04
  14997. }
  14998. },
  14999. feral: {
  15000. height: math.unit(9 + 7 / 12, "feet"),
  15001. weight: math.unit(294, "lb"),
  15002. name: "Feral",
  15003. image: {
  15004. source: "./media/characters/cobalt-dracha/feral.svg",
  15005. extra: 692 / 633,
  15006. bottom: 0.05
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(7, "feet"),
  15014. default: true
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15020. {
  15021. fallen: {
  15022. height: math.unit(11 + 8 / 12, "feet"),
  15023. weight: math.unit(485, "lb"),
  15024. name: "Java (Fallen)",
  15025. rename: true,
  15026. image: {
  15027. source: "./media/characters/java/fallen.svg",
  15028. extra: 226 / 208,
  15029. bottom: 0.005
  15030. }
  15031. },
  15032. godkin: {
  15033. height: math.unit(10 + 6 / 12, "feet"),
  15034. weight: math.unit(328, "lb"),
  15035. name: "Java (Godkin)",
  15036. rename: true,
  15037. image: {
  15038. source: "./media/characters/java/godkin.svg",
  15039. extra: 270 / 262,
  15040. bottom: 0.02
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Normal",
  15047. height: math.unit(11 + 8 / 12, "feet"),
  15048. default: true
  15049. },
  15050. ]
  15051. ))
  15052. characterMakers.push(() => makeCharacter(
  15053. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15054. {
  15055. front: {
  15056. height: math.unit(7 + 8 / 12, "feet"),
  15057. weight: math.unit(320, "lb"),
  15058. name: "Front",
  15059. image: {
  15060. source: "./media/characters/skoll/front.svg",
  15061. extra: 232 / 220,
  15062. bottom: 0.02
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(7 + 8 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15076. {
  15077. front: {
  15078. height: math.unit(5 + 9 / 12, "feet"),
  15079. weight: math.unit(170, "lb"),
  15080. name: "Front",
  15081. image: {
  15082. source: "./media/characters/purna/front.svg",
  15083. extra: 239 / 229,
  15084. bottom: 0.01
  15085. }
  15086. },
  15087. },
  15088. [
  15089. {
  15090. name: "Normal",
  15091. height: math.unit(5 + 9 / 12, "feet"),
  15092. default: true
  15093. },
  15094. ]
  15095. ))
  15096. characterMakers.push(() => makeCharacter(
  15097. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15098. {
  15099. front: {
  15100. height: math.unit(5 + 9 / 12, "feet"),
  15101. weight: math.unit(142, "lb"),
  15102. name: "Front",
  15103. image: {
  15104. source: "./media/characters/kuva/front.svg",
  15105. extra: 281 / 271,
  15106. bottom: 0.006
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(5 + 9 / 12, "feet"),
  15114. default: true
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15120. {
  15121. anthro: {
  15122. height: math.unit(9 + 2 / 12, "feet"),
  15123. weight: math.unit(270, "lb"),
  15124. name: "Anthro",
  15125. image: {
  15126. source: "./media/characters/embra/anthro.svg",
  15127. extra: 200 / 187,
  15128. bottom: 0.02
  15129. }
  15130. },
  15131. feral: {
  15132. height: math.unit(18 + 8 / 12, "feet"),
  15133. weight: math.unit(576, "lb"),
  15134. name: "Feral",
  15135. image: {
  15136. source: "./media/characters/embra/feral.svg",
  15137. extra: 152 / 137,
  15138. bottom: 0.037
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(9 + 2 / 12, "feet"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15152. {
  15153. anthro: {
  15154. height: math.unit(10 + 9 / 12, "feet"),
  15155. weight: math.unit(224, "lb"),
  15156. name: "Anthro",
  15157. image: {
  15158. source: "./media/characters/grottos/anthro.svg",
  15159. extra: 350 / 332,
  15160. bottom: 0.045
  15161. }
  15162. },
  15163. feral: {
  15164. height: math.unit(20 + 7 / 12, "feet"),
  15165. weight: math.unit(629, "lb"),
  15166. name: "Feral",
  15167. image: {
  15168. source: "./media/characters/grottos/feral.svg",
  15169. extra: 207 / 190,
  15170. bottom: 0.05
  15171. }
  15172. },
  15173. },
  15174. [
  15175. {
  15176. name: "Normal",
  15177. height: math.unit(10 + 9 / 12, "feet"),
  15178. default: true
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15184. {
  15185. anthro: {
  15186. height: math.unit(9 + 6 / 12, "feet"),
  15187. weight: math.unit(298, "lb"),
  15188. name: "Anthro",
  15189. image: {
  15190. source: "./media/characters/frifna/anthro.svg",
  15191. extra: 282 / 269,
  15192. bottom: 0.015
  15193. }
  15194. },
  15195. feral: {
  15196. height: math.unit(16 + 2 / 12, "feet"),
  15197. weight: math.unit(624, "lb"),
  15198. name: "Feral",
  15199. image: {
  15200. source: "./media/characters/frifna/feral.svg"
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(9 + 6 / 12, "feet"),
  15208. default: true
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(6 + 2 / 12, "feet"),
  15217. weight: math.unit(168, "lb"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/elise/front.svg",
  15221. extra: 276 / 271
  15222. }
  15223. },
  15224. },
  15225. [
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(6 + 2 / 12, "feet"),
  15229. default: true
  15230. },
  15231. ]
  15232. ))
  15233. characterMakers.push(() => makeCharacter(
  15234. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15235. {
  15236. front: {
  15237. height: math.unit(5 + 10 / 12, "feet"),
  15238. weight: math.unit(210, "lb"),
  15239. name: "Front",
  15240. image: {
  15241. source: "./media/characters/glade/front.svg",
  15242. extra: 258 / 247,
  15243. bottom: 0.008
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(5 + 10 / 12, "feet"),
  15251. default: true
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(5 + 10 / 12, "feet"),
  15260. weight: math.unit(129, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/rina/front.svg",
  15264. extra: 266 / 255,
  15265. bottom: 0.005
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Normal",
  15272. height: math.unit(5 + 10 / 12, "feet"),
  15273. default: true
  15274. },
  15275. ]
  15276. ))
  15277. characterMakers.push(() => makeCharacter(
  15278. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15279. {
  15280. front: {
  15281. height: math.unit(6 + 1 / 12, "feet"),
  15282. weight: math.unit(192, "lb"),
  15283. name: "Front",
  15284. image: {
  15285. source: "./media/characters/veronica/front.svg",
  15286. extra: 319 / 309,
  15287. bottom: 0.005
  15288. }
  15289. },
  15290. },
  15291. [
  15292. {
  15293. name: "Normal",
  15294. height: math.unit(6 + 1 / 12, "feet"),
  15295. default: true
  15296. },
  15297. ]
  15298. ))
  15299. characterMakers.push(() => makeCharacter(
  15300. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15301. {
  15302. front: {
  15303. height: math.unit(9 + 3 / 12, "feet"),
  15304. weight: math.unit(1100, "lb"),
  15305. name: "Front",
  15306. image: {
  15307. source: "./media/characters/braxton/front.svg",
  15308. extra: 1057 / 984,
  15309. bottom: 0.05
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(9 + 3 / 12, "feet")
  15317. },
  15318. {
  15319. name: "Giant",
  15320. height: math.unit(300, "feet"),
  15321. default: true
  15322. },
  15323. {
  15324. name: "Macro",
  15325. height: math.unit(700, "feet")
  15326. },
  15327. {
  15328. name: "Megamacro",
  15329. height: math.unit(6000, "feet")
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15335. {
  15336. front: {
  15337. height: math.unit(6 + 7 / 12, "feet"),
  15338. weight: math.unit(150, "lb"),
  15339. name: "Front",
  15340. image: {
  15341. source: "./media/characters/blue-feyonics/front.svg",
  15342. extra: 1403 / 1306,
  15343. bottom: 0.047
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Normal",
  15350. height: math.unit(6 + 7 / 12, "feet"),
  15351. default: true
  15352. },
  15353. ]
  15354. ))
  15355. characterMakers.push(() => makeCharacter(
  15356. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15357. {
  15358. front: {
  15359. height: math.unit(1.8, "meters"),
  15360. weight: math.unit(60, "kg"),
  15361. name: "Front",
  15362. image: {
  15363. source: "./media/characters/maxwell/front.svg",
  15364. extra: 2060 / 1873
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Micro",
  15371. height: math.unit(1, "mm")
  15372. },
  15373. {
  15374. name: "Normal",
  15375. height: math.unit(1.8, "meter"),
  15376. default: true
  15377. },
  15378. {
  15379. name: "Macro",
  15380. height: math.unit(30, "meters")
  15381. },
  15382. {
  15383. name: "Megamacro",
  15384. height: math.unit(10, "km")
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/jack/front.svg",
  15397. extra: 1754 / 1640,
  15398. bottom: 0.01
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Normal",
  15405. height: math.unit(80000, "feet"),
  15406. default: true
  15407. },
  15408. {
  15409. name: "Max size",
  15410. height: math.unit(10, "lightyears")
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15416. {
  15417. upright: {
  15418. height: math.unit(7, "feet"),
  15419. weight: math.unit(170, "lb"),
  15420. name: "Upright",
  15421. image: {
  15422. source: "./media/characters/cafat/upright.svg",
  15423. bottom: 0.01
  15424. }
  15425. },
  15426. uprightFull: {
  15427. height: math.unit(7, "feet"),
  15428. weight: math.unit(170, "lb"),
  15429. name: "Upright (Full)",
  15430. image: {
  15431. source: "./media/characters/cafat/upright-full.svg",
  15432. bottom: 0.01
  15433. }
  15434. },
  15435. side: {
  15436. height: math.unit(5, "feet"),
  15437. weight: math.unit(150, "lb"),
  15438. name: "Side",
  15439. image: {
  15440. source: "./media/characters/cafat/side.svg"
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Small",
  15447. height: math.unit(7, "feet"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Large",
  15452. height: math.unit(15.5, "feet")
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6, "feet"),
  15461. weight: math.unit(150, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/verin-raharra/front.svg",
  15465. extra: 5019 / 4835,
  15466. bottom: 0.023
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(7 + 5 / 12, "feet"),
  15474. default: true
  15475. },
  15476. {
  15477. name: "Upsized",
  15478. height: math.unit(20, "feet")
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(7, "feet"),
  15487. weight: math.unit(230, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/nakata/front.svg",
  15491. extra: 1.005,
  15492. bottom: 0.01
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(7, "feet"),
  15500. default: true
  15501. },
  15502. {
  15503. name: "Big",
  15504. height: math.unit(14, "feet")
  15505. },
  15506. {
  15507. name: "Macro",
  15508. height: math.unit(400, "feet")
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15514. {
  15515. front: {
  15516. height: math.unit(4.91, "feet"),
  15517. weight: math.unit(100, "lb"),
  15518. name: "Front",
  15519. image: {
  15520. source: "./media/characters/lily/front.svg",
  15521. extra: 1585 / 1415,
  15522. bottom: 0.02
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(4.91, "feet"),
  15530. default: true
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15536. {
  15537. laying: {
  15538. height: math.unit(4 + 4 / 12, "feet"),
  15539. weight: math.unit(600, "lb"),
  15540. name: "Laying",
  15541. image: {
  15542. source: "./media/characters/sheila/laying.svg",
  15543. extra: 1333 / 1265,
  15544. bottom: 0.16
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Normal",
  15551. height: math.unit(4 + 4 / 12, "feet"),
  15552. default: true
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15558. {
  15559. front: {
  15560. height: math.unit(6, "feet"),
  15561. weight: math.unit(190, "lb"),
  15562. name: "Front",
  15563. image: {
  15564. source: "./media/characters/sax/front.svg",
  15565. extra: 1187 / 973,
  15566. bottom: 0.042
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Micro",
  15573. height: math.unit(4, "inches"),
  15574. default: true
  15575. },
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(6, "feet"),
  15583. weight: math.unit(150, "lb"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/pandora/front.svg",
  15587. extra: 2720 / 2556,
  15588. bottom: 0.015
  15589. }
  15590. },
  15591. back: {
  15592. height: math.unit(6, "feet"),
  15593. weight: math.unit(150, "lb"),
  15594. name: "Back",
  15595. image: {
  15596. source: "./media/characters/pandora/back.svg",
  15597. extra: 2720 / 2556,
  15598. bottom: 0.01
  15599. }
  15600. },
  15601. beans: {
  15602. height: math.unit(6 / 8, "feet"),
  15603. name: "Beans",
  15604. image: {
  15605. source: "./media/characters/pandora/beans.svg"
  15606. }
  15607. },
  15608. skirt: {
  15609. height: math.unit(6, "feet"),
  15610. weight: math.unit(150, "lb"),
  15611. name: "Skirt",
  15612. image: {
  15613. source: "./media/characters/pandora/skirt.svg",
  15614. extra: 1622 / 1525,
  15615. bottom: 0.015
  15616. }
  15617. },
  15618. hoodie: {
  15619. height: math.unit(6, "feet"),
  15620. weight: math.unit(150, "lb"),
  15621. name: "Hoodie",
  15622. image: {
  15623. source: "./media/characters/pandora/hoodie.svg",
  15624. extra: 1622 / 1525,
  15625. bottom: 0.015
  15626. }
  15627. },
  15628. casual: {
  15629. height: math.unit(6, "feet"),
  15630. weight: math.unit(150, "lb"),
  15631. name: "Casual",
  15632. image: {
  15633. source: "./media/characters/pandora/casual.svg",
  15634. extra: 1622 / 1525,
  15635. bottom: 0.015
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Normal",
  15642. height: math.unit(6, "feet")
  15643. },
  15644. {
  15645. name: "Big Steppy",
  15646. height: math.unit(1, "km"),
  15647. default: true
  15648. },
  15649. ]
  15650. ))
  15651. characterMakers.push(() => makeCharacter(
  15652. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15653. {
  15654. side: {
  15655. height: math.unit(10, "feet"),
  15656. weight: math.unit(800, "kg"),
  15657. name: "Side",
  15658. image: {
  15659. source: "./media/characters/venio-darcony/side.svg",
  15660. extra: 1373 / 1003,
  15661. bottom: 0.037
  15662. }
  15663. },
  15664. front: {
  15665. height: math.unit(19, "feet"),
  15666. weight: math.unit(800, "kg"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/venio-darcony/front.svg"
  15670. }
  15671. },
  15672. back: {
  15673. height: math.unit(19, "feet"),
  15674. weight: math.unit(800, "kg"),
  15675. name: "Back",
  15676. image: {
  15677. source: "./media/characters/venio-darcony/back.svg"
  15678. }
  15679. },
  15680. sideNsfw: {
  15681. height: math.unit(10, "feet"),
  15682. weight: math.unit(800, "kg"),
  15683. name: "Side (NSFW)",
  15684. image: {
  15685. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15686. extra: 1373 / 1003,
  15687. bottom: 0.037
  15688. }
  15689. },
  15690. frontNsfw: {
  15691. height: math.unit(19, "feet"),
  15692. weight: math.unit(800, "kg"),
  15693. name: "Front (NSFW)",
  15694. image: {
  15695. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15696. }
  15697. },
  15698. backNsfw: {
  15699. height: math.unit(19, "feet"),
  15700. weight: math.unit(800, "kg"),
  15701. name: "Back (NSFW)",
  15702. image: {
  15703. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15704. }
  15705. },
  15706. sideArmored: {
  15707. height: math.unit(10, "feet"),
  15708. weight: math.unit(800, "kg"),
  15709. name: "Side (Armored)",
  15710. image: {
  15711. source: "./media/characters/venio-darcony/side-armored.svg",
  15712. extra: 1373 / 1003,
  15713. bottom: 0.037
  15714. }
  15715. },
  15716. frontArmored: {
  15717. height: math.unit(19, "feet"),
  15718. weight: math.unit(900, "kg"),
  15719. name: "Front (Armored)",
  15720. image: {
  15721. source: "./media/characters/venio-darcony/front-armored.svg"
  15722. }
  15723. },
  15724. backArmored: {
  15725. height: math.unit(19, "feet"),
  15726. weight: math.unit(900, "kg"),
  15727. name: "Back (Armored)",
  15728. image: {
  15729. source: "./media/characters/venio-darcony/back-armored.svg"
  15730. }
  15731. },
  15732. sword: {
  15733. height: math.unit(10, "feet"),
  15734. weight: math.unit(50, "lb"),
  15735. name: "Sword",
  15736. image: {
  15737. source: "./media/characters/venio-darcony/sword.svg"
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Normal",
  15744. height: math.unit(10, "feet")
  15745. },
  15746. {
  15747. name: "Macro",
  15748. height: math.unit(130, "feet"),
  15749. default: true
  15750. },
  15751. {
  15752. name: "Macro+",
  15753. height: math.unit(240, "feet")
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15759. {
  15760. front: {
  15761. height: math.unit(6, "feet"),
  15762. weight: math.unit(150, "lb"),
  15763. name: "Front",
  15764. image: {
  15765. source: "./media/characters/veski/front.svg",
  15766. extra: 1299 / 1225,
  15767. bottom: 0.04
  15768. }
  15769. },
  15770. back: {
  15771. height: math.unit(6, "feet"),
  15772. weight: math.unit(150, "lb"),
  15773. name: "Back",
  15774. image: {
  15775. source: "./media/characters/veski/back.svg",
  15776. extra: 1299 / 1225,
  15777. bottom: 0.008
  15778. }
  15779. },
  15780. maw: {
  15781. height: math.unit(1.5 * 1.21, "feet"),
  15782. name: "Maw",
  15783. image: {
  15784. source: "./media/characters/veski/maw.svg"
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Macro",
  15791. height: math.unit(2, "km"),
  15792. default: true
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15798. {
  15799. front: {
  15800. height: math.unit(5 + 7 / 12, "feet"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/isabelle/front.svg",
  15804. extra: 2130 / 1976,
  15805. bottom: 0.05
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Supermicro",
  15812. height: math.unit(10, "micrometers")
  15813. },
  15814. {
  15815. name: "Micro",
  15816. height: math.unit(1, "inch")
  15817. },
  15818. {
  15819. name: "Tiny",
  15820. height: math.unit(5, "inches")
  15821. },
  15822. {
  15823. name: "Standard",
  15824. height: math.unit(5 + 7 / 12, "inches")
  15825. },
  15826. {
  15827. name: "Macro",
  15828. height: math.unit(80, "meters"),
  15829. default: true
  15830. },
  15831. {
  15832. name: "Megamacro",
  15833. height: math.unit(250, "meters")
  15834. },
  15835. {
  15836. name: "Gigamacro",
  15837. height: math.unit(5, "km")
  15838. },
  15839. {
  15840. name: "Cosmic",
  15841. height: math.unit(2.5e6, "miles")
  15842. },
  15843. ]
  15844. ))
  15845. characterMakers.push(() => makeCharacter(
  15846. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15847. {
  15848. front: {
  15849. height: math.unit(6, "feet"),
  15850. weight: math.unit(150, "lb"),
  15851. name: "Front",
  15852. image: {
  15853. source: "./media/characters/hanzo/front.svg",
  15854. extra: 374 / 344,
  15855. bottom: 0.02
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Normal",
  15862. height: math.unit(8, "feet"),
  15863. default: true
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15869. {
  15870. front: {
  15871. height: math.unit(7, "feet"),
  15872. weight: math.unit(130, "lb"),
  15873. name: "Front",
  15874. image: {
  15875. source: "./media/characters/anna/front.svg",
  15876. extra: 169 / 145,
  15877. bottom: 0.06
  15878. }
  15879. },
  15880. full: {
  15881. height: math.unit(4.96, "feet"),
  15882. weight: math.unit(220, "lb"),
  15883. name: "Full",
  15884. image: {
  15885. source: "./media/characters/anna/full.svg",
  15886. extra: 138 / 114,
  15887. bottom: 0.15
  15888. }
  15889. },
  15890. tongue: {
  15891. height: math.unit(2.53, "feet"),
  15892. name: "Tongue",
  15893. image: {
  15894. source: "./media/characters/anna/tongue.svg"
  15895. }
  15896. },
  15897. },
  15898. [
  15899. {
  15900. name: "Normal",
  15901. height: math.unit(7, "feet"),
  15902. default: true
  15903. },
  15904. ]
  15905. ))
  15906. characterMakers.push(() => makeCharacter(
  15907. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15908. {
  15909. front: {
  15910. height: math.unit(7, "feet"),
  15911. weight: math.unit(150, "lb"),
  15912. name: "Front",
  15913. image: {
  15914. source: "./media/characters/ian-corvid/front.svg",
  15915. extra: 150 / 142,
  15916. bottom: 0.02
  15917. }
  15918. },
  15919. back: {
  15920. height: math.unit(7, "feet"),
  15921. weight: math.unit(150, "lb"),
  15922. name: "Back",
  15923. image: {
  15924. source: "./media/characters/ian-corvid/back.svg",
  15925. extra: 150 / 143,
  15926. bottom: 0.01
  15927. }
  15928. },
  15929. stomping: {
  15930. height: math.unit(7, "feet"),
  15931. weight: math.unit(150, "lb"),
  15932. name: "Stomping",
  15933. image: {
  15934. source: "./media/characters/ian-corvid/stomping.svg",
  15935. extra: 76 / 72
  15936. }
  15937. },
  15938. sitting: {
  15939. height: math.unit(7 / 1.8, "feet"),
  15940. weight: math.unit(150, "lb"),
  15941. name: "Sitting",
  15942. image: {
  15943. source: "./media/characters/ian-corvid/sitting.svg",
  15944. extra: 1400 / 1269,
  15945. bottom: 0.15
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Tiny Microw",
  15952. height: math.unit(1, "inch")
  15953. },
  15954. {
  15955. name: "Microw",
  15956. height: math.unit(6, "inches")
  15957. },
  15958. {
  15959. name: "Crow",
  15960. height: math.unit(7 + 1 / 12, "feet"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Macrow",
  15965. height: math.unit(176, "feet")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(5 + 7 / 12, "feet"),
  15974. weight: math.unit(147, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/natalie-kellon/front.svg",
  15978. extra: 1214 / 1141,
  15979. bottom: 0.02
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Micro",
  15986. height: math.unit(1 / 16, "inch")
  15987. },
  15988. {
  15989. name: "Tiny",
  15990. height: math.unit(4, "inches")
  15991. },
  15992. {
  15993. name: "Normal",
  15994. height: math.unit(5 + 7 / 12, "feet"),
  15995. default: true
  15996. },
  15997. {
  15998. name: "Amazon",
  15999. height: math.unit(12, "feet")
  16000. },
  16001. {
  16002. name: "Giantess",
  16003. height: math.unit(160, "meters")
  16004. },
  16005. {
  16006. name: "Titaness",
  16007. height: math.unit(800, "meters")
  16008. },
  16009. ]
  16010. ))
  16011. characterMakers.push(() => makeCharacter(
  16012. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16013. {
  16014. front: {
  16015. height: math.unit(6, "feet"),
  16016. weight: math.unit(150, "lb"),
  16017. name: "Front",
  16018. image: {
  16019. source: "./media/characters/alluria/front.svg",
  16020. extra: 806 / 738,
  16021. bottom: 0.01
  16022. }
  16023. },
  16024. side: {
  16025. height: math.unit(6, "feet"),
  16026. weight: math.unit(150, "lb"),
  16027. name: "Side",
  16028. image: {
  16029. source: "./media/characters/alluria/side.svg",
  16030. extra: 800 / 750,
  16031. }
  16032. },
  16033. back: {
  16034. height: math.unit(6, "feet"),
  16035. weight: math.unit(150, "lb"),
  16036. name: "Back",
  16037. image: {
  16038. source: "./media/characters/alluria/back.svg",
  16039. extra: 806 / 738,
  16040. }
  16041. },
  16042. frontMaid: {
  16043. height: math.unit(6, "feet"),
  16044. weight: math.unit(150, "lb"),
  16045. name: "Front (Maid)",
  16046. image: {
  16047. source: "./media/characters/alluria/front-maid.svg",
  16048. extra: 806 / 738,
  16049. bottom: 0.01
  16050. }
  16051. },
  16052. sideMaid: {
  16053. height: math.unit(6, "feet"),
  16054. weight: math.unit(150, "lb"),
  16055. name: "Side (Maid)",
  16056. image: {
  16057. source: "./media/characters/alluria/side-maid.svg",
  16058. extra: 800 / 750,
  16059. bottom: 0.005
  16060. }
  16061. },
  16062. backMaid: {
  16063. height: math.unit(6, "feet"),
  16064. weight: math.unit(150, "lb"),
  16065. name: "Back (Maid)",
  16066. image: {
  16067. source: "./media/characters/alluria/back-maid.svg",
  16068. extra: 806 / 738,
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Micro",
  16075. height: math.unit(6, "inches"),
  16076. default: true
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(6, "feet"),
  16085. weight: math.unit(150, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/kyle/front.svg",
  16089. extra: 1069 / 962,
  16090. bottom: 77.228 / 1727.45
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Macro",
  16097. height: math.unit(150, "feet"),
  16098. default: true
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6, "feet"),
  16107. weight: math.unit(300, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/duncan/front.svg",
  16111. extra: 1650 / 1482,
  16112. bottom: 0.05
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Macro",
  16119. height: math.unit(100, "feet"),
  16120. default: true
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(5 + 4 / 12, "feet"),
  16129. weight: math.unit(220, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/memory/front.svg",
  16133. extra: 3641 / 3545,
  16134. bottom: 0.03
  16135. }
  16136. },
  16137. back: {
  16138. height: math.unit(5 + 4 / 12, "feet"),
  16139. weight: math.unit(220, "lb"),
  16140. name: "Back",
  16141. image: {
  16142. source: "./media/characters/memory/back.svg",
  16143. extra: 3641 / 3545,
  16144. bottom: 0.025
  16145. }
  16146. },
  16147. frontSkirt: {
  16148. height: math.unit(5 + 4 / 12, "feet"),
  16149. weight: math.unit(220, "lb"),
  16150. name: "Front (Skirt)",
  16151. image: {
  16152. source: "./media/characters/memory/front-skirt.svg",
  16153. extra: 3641 / 3545,
  16154. bottom: 0.03
  16155. }
  16156. },
  16157. frontDress: {
  16158. height: math.unit(5 + 4 / 12, "feet"),
  16159. weight: math.unit(220, "lb"),
  16160. name: "Front (Dress)",
  16161. image: {
  16162. source: "./media/characters/memory/front-dress.svg",
  16163. extra: 3641 / 3545,
  16164. bottom: 0.03
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Micro",
  16171. height: math.unit(6, "inches"),
  16172. default: true
  16173. },
  16174. {
  16175. name: "Normal",
  16176. height: math.unit(5 + 4 / 12, "feet")
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(4 + 11 / 12, "feet"),
  16185. weight: math.unit(100, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/luno/front.svg",
  16189. extra: 1535 / 1487,
  16190. bottom: 0.03
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Micro",
  16197. height: math.unit(3, "inches")
  16198. },
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(4 + 11 / 12, "feet"),
  16202. default: true
  16203. },
  16204. {
  16205. name: "Macro",
  16206. height: math.unit(300, "feet")
  16207. },
  16208. {
  16209. name: "Megamacro",
  16210. height: math.unit(700, "miles")
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(6 + 2 / 12, "feet"),
  16219. weight: math.unit(170, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/jamesy/front.svg",
  16223. extra: 440 / 382,
  16224. bottom: 0.005
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Micro",
  16231. height: math.unit(3, "inches")
  16232. },
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(6 + 2 / 12, "feet"),
  16236. default: true
  16237. },
  16238. {
  16239. name: "Macro",
  16240. height: math.unit(300, "feet")
  16241. },
  16242. {
  16243. name: "Megamacro",
  16244. height: math.unit(700, "miles")
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(6, "feet"),
  16253. weight: math.unit(160, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/mark/front.svg",
  16257. extra: 3300 / 3100,
  16258. bottom: 136.42 / 3440.47
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Macro",
  16265. height: math.unit(120, "meters")
  16266. },
  16267. {
  16268. name: "Bigger Macro",
  16269. height: math.unit(350, "meters")
  16270. },
  16271. {
  16272. name: "Megamacro",
  16273. height: math.unit(8, "km"),
  16274. default: true
  16275. },
  16276. {
  16277. name: "Continental",
  16278. height: math.unit(4550, "km")
  16279. },
  16280. {
  16281. name: "Planetary",
  16282. height: math.unit(65000, "km")
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16288. {
  16289. front: {
  16290. height: math.unit(6, "feet"),
  16291. weight: math.unit(400, "lb"),
  16292. name: "Front",
  16293. image: {
  16294. source: "./media/characters/mac/front.svg",
  16295. extra: 1048 / 987.7,
  16296. bottom: 60 / 1107.6,
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Macro",
  16303. height: math.unit(500, "feet"),
  16304. default: true
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(5 + 2 / 12, "feet"),
  16313. weight: math.unit(190, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/bari/front.svg",
  16317. extra: 3156 / 2880,
  16318. bottom: 0.03
  16319. }
  16320. },
  16321. back: {
  16322. height: math.unit(5 + 2 / 12, "feet"),
  16323. weight: math.unit(190, "lb"),
  16324. name: "Back",
  16325. image: {
  16326. source: "./media/characters/bari/back.svg",
  16327. extra: 3260 / 2834,
  16328. bottom: 0.025
  16329. }
  16330. },
  16331. frontPlush: {
  16332. height: math.unit(5 + 2 / 12, "feet"),
  16333. weight: math.unit(190, "lb"),
  16334. name: "Front (Plush)",
  16335. image: {
  16336. source: "./media/characters/bari/front-plush.svg",
  16337. extra: 1112 / 1061,
  16338. bottom: 0.002
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Micro",
  16345. height: math.unit(3, "inches")
  16346. },
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(5 + 2 / 12, "feet"),
  16350. default: true
  16351. },
  16352. {
  16353. name: "Macro",
  16354. height: math.unit(20, "feet")
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16360. {
  16361. front: {
  16362. height: math.unit(6 + 1 / 12, "feet"),
  16363. weight: math.unit(275, "lb"),
  16364. name: "Front",
  16365. image: {
  16366. source: "./media/characters/hunter-misha-raven/front.svg"
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Mortal",
  16373. height: math.unit(6 + 1 / 12, "feet")
  16374. },
  16375. {
  16376. name: "Divine",
  16377. height: math.unit(1.12134e34, "parsecs"),
  16378. default: true
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(6 + 3 / 12, "feet"),
  16387. weight: math.unit(220, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/max-calore/front.svg",
  16391. extra: 1700 / 1648,
  16392. bottom: 0.01
  16393. }
  16394. },
  16395. back: {
  16396. height: math.unit(6 + 3 / 12, "feet"),
  16397. weight: math.unit(220, "lb"),
  16398. name: "Back",
  16399. image: {
  16400. source: "./media/characters/max-calore/back.svg",
  16401. extra: 1700 / 1648,
  16402. bottom: 0.01
  16403. }
  16404. },
  16405. },
  16406. [
  16407. {
  16408. name: "Normal",
  16409. height: math.unit(6 + 3 / 12, "feet"),
  16410. default: true
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16416. {
  16417. side: {
  16418. height: math.unit(2 + 8 / 12, "feet"),
  16419. weight: math.unit(99, "lb"),
  16420. name: "Side",
  16421. image: {
  16422. source: "./media/characters/aspen/side.svg",
  16423. extra: 152 / 138,
  16424. bottom: 0.032
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(2 + 8 / 12, "feet"),
  16432. default: true
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16438. {
  16439. side: {
  16440. height: math.unit(3 + 2 / 12, "feet"),
  16441. weight: math.unit(224, "lb"),
  16442. name: "Side",
  16443. image: {
  16444. source: "./media/characters/sheila-feral-wolf/side.svg",
  16445. extra: 179 / 166,
  16446. bottom: 0.03
  16447. }
  16448. },
  16449. },
  16450. [
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(3 + 2 / 12, "feet"),
  16454. default: true
  16455. },
  16456. ]
  16457. ))
  16458. characterMakers.push(() => makeCharacter(
  16459. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16460. {
  16461. side: {
  16462. height: math.unit(1 + 9 / 12, "feet"),
  16463. weight: math.unit(38, "lb"),
  16464. name: "Side",
  16465. image: {
  16466. source: "./media/characters/michelle/side.svg",
  16467. extra: 147 / 136.7,
  16468. bottom: 0.03
  16469. }
  16470. },
  16471. },
  16472. [
  16473. {
  16474. name: "Normal",
  16475. height: math.unit(1 + 9 / 12, "feet"),
  16476. default: true
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(1 + 1 / 12, "feet"),
  16485. weight: math.unit(18, "lb"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/nino/front.svg"
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(1 + 1 / 12, "feet"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16502. {
  16503. front: {
  16504. height: math.unit(1, "feet"),
  16505. weight: math.unit(16, "lb"),
  16506. name: "Front",
  16507. image: {
  16508. source: "./media/characters/viola/front.svg"
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(1, "feet"),
  16516. default: true
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(6 + 5 / 12, "feet"),
  16525. weight: math.unit(580, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/atlas/front.svg",
  16529. extra: 298.5 / 290,
  16530. bottom: 0.015
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(6 + 5 / 12, "feet"),
  16538. default: true
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16544. {
  16545. side: {
  16546. height: math.unit(1 + 10 / 12, "feet"),
  16547. weight: math.unit(25, "lb"),
  16548. name: "Side",
  16549. image: {
  16550. source: "./media/characters/davy/side.svg",
  16551. extra: 200 / 170,
  16552. bottom: 0.01
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(1 + 10 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16566. {
  16567. side: {
  16568. height: math.unit(4 + 8 / 12, "feet"),
  16569. weight: math.unit(166, "lb"),
  16570. name: "Side",
  16571. image: {
  16572. source: "./media/characters/fiona/side.svg",
  16573. extra: 232 / 220,
  16574. bottom: 0.03
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(4 + 8 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16588. {
  16589. front: {
  16590. height: math.unit(2, "feet"),
  16591. weight: math.unit(62, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/lyla/front.svg",
  16595. bottom: 0.1
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(2, "feet"),
  16603. default: true
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16609. {
  16610. side: {
  16611. height: math.unit(1.8, "feet"),
  16612. weight: math.unit(44, "lb"),
  16613. name: "Side",
  16614. image: {
  16615. source: "./media/characters/perseus/side.svg",
  16616. bottom: 0.21
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(1.8, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16630. {
  16631. side: {
  16632. height: math.unit(4 + 2 / 12, "feet"),
  16633. weight: math.unit(20, "lb"),
  16634. name: "Side",
  16635. image: {
  16636. source: "./media/characters/remus/side.svg"
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Normal",
  16643. height: math.unit(4 + 2 / 12, "feet"),
  16644. default: true
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(4 + 11 / 12, "feet"),
  16653. weight: math.unit(114, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/raf/front.svg",
  16657. bottom: 20.5 / 1863
  16658. }
  16659. },
  16660. side: {
  16661. height: math.unit(4 + 11 / 12, "feet"),
  16662. weight: math.unit(114, "lb"),
  16663. name: "Side",
  16664. image: {
  16665. source: "./media/characters/raf/side.svg",
  16666. bottom: 22 / 1822
  16667. }
  16668. },
  16669. },
  16670. [
  16671. {
  16672. name: "Micro",
  16673. height: math.unit(2, "inches")
  16674. },
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(4 + 11 / 12, "feet"),
  16678. default: true
  16679. },
  16680. {
  16681. name: "Macro",
  16682. height: math.unit(70, "feet")
  16683. },
  16684. ]
  16685. ))
  16686. characterMakers.push(() => makeCharacter(
  16687. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16688. {
  16689. front: {
  16690. height: math.unit(1.5, "meters"),
  16691. weight: math.unit(68, "kg"),
  16692. name: "Front",
  16693. image: {
  16694. source: "./media/characters/liam-einarr/front.svg",
  16695. extra: 2822 / 2666
  16696. }
  16697. },
  16698. back: {
  16699. height: math.unit(1.5, "meters"),
  16700. weight: math.unit(68, "kg"),
  16701. name: "Back",
  16702. image: {
  16703. source: "./media/characters/liam-einarr/back.svg",
  16704. extra: 2822 / 2666,
  16705. bottom: 0.015
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(1.5, "meters"),
  16713. default: true
  16714. },
  16715. {
  16716. name: "Macro",
  16717. height: math.unit(150, "meters")
  16718. },
  16719. {
  16720. name: "Megamacro",
  16721. height: math.unit(35, "km")
  16722. },
  16723. ]
  16724. ))
  16725. characterMakers.push(() => makeCharacter(
  16726. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16727. {
  16728. front: {
  16729. height: math.unit(6, "feet"),
  16730. weight: math.unit(75, "kg"),
  16731. name: "Front",
  16732. image: {
  16733. source: "./media/characters/linda/front.svg",
  16734. extra: 930 / 874,
  16735. bottom: 0.004
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(6, "feet"),
  16743. default: true
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16749. {
  16750. front: {
  16751. height: math.unit(6 + 8 / 12, "feet"),
  16752. weight: math.unit(220, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/caylex/front.svg",
  16756. extra: 821 / 772,
  16757. bottom: 0.07
  16758. }
  16759. },
  16760. back: {
  16761. height: math.unit(6 + 8 / 12, "feet"),
  16762. weight: math.unit(220, "lb"),
  16763. name: "Back",
  16764. image: {
  16765. source: "./media/characters/caylex/back.svg",
  16766. extra: 821 / 772,
  16767. bottom: 0.022
  16768. }
  16769. },
  16770. hand: {
  16771. height: math.unit(1.25, "feet"),
  16772. name: "Hand",
  16773. image: {
  16774. source: "./media/characters/caylex/hand.svg"
  16775. }
  16776. },
  16777. foot: {
  16778. height: math.unit(1.6, "feet"),
  16779. name: "Foot",
  16780. image: {
  16781. source: "./media/characters/caylex/foot.svg"
  16782. }
  16783. },
  16784. armored: {
  16785. height: math.unit(6 + 8 / 12, "feet"),
  16786. weight: math.unit(250, "lb"),
  16787. name: "Armored",
  16788. image: {
  16789. source: "./media/characters/caylex/armored.svg",
  16790. extra: 1420 / 1310,
  16791. bottom: 0.045
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(6 + 8 / 12, "feet"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Normal+",
  16803. height: math.unit(12, "feet")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(7 + 6 / 12, "feet"),
  16812. weight: math.unit(288, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/alana/front.svg",
  16816. extra: 679 / 653,
  16817. bottom: 22.5 / 701
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(7 + 6 / 12, "feet")
  16825. },
  16826. {
  16827. name: "Large",
  16828. height: math.unit(50, "feet")
  16829. },
  16830. {
  16831. name: "Macro",
  16832. height: math.unit(100, "feet"),
  16833. default: true
  16834. },
  16835. {
  16836. name: "Macro+",
  16837. height: math.unit(200, "feet")
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(6 + 1 / 12, "feet"),
  16846. weight: math.unit(210, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/hasani/front.svg",
  16850. extra: 244 / 232,
  16851. bottom: 0.01
  16852. }
  16853. },
  16854. back: {
  16855. height: math.unit(6 + 1 / 12, "feet"),
  16856. weight: math.unit(210, "lb"),
  16857. name: "Back",
  16858. image: {
  16859. source: "./media/characters/hasani/back.svg",
  16860. extra: 244 / 232,
  16861. bottom: 0.01
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(6 + 1 / 12, "feet")
  16869. },
  16870. {
  16871. name: "Macro",
  16872. height: math.unit(175, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16879. {
  16880. front: {
  16881. height: math.unit(1.82, "meters"),
  16882. weight: math.unit(140, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/nita/front.svg",
  16886. extra: 2473 / 2363,
  16887. bottom: 0.01
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(1.82, "m")
  16895. },
  16896. {
  16897. name: "Macro",
  16898. height: math.unit(300, "m")
  16899. },
  16900. {
  16901. name: "Mistake Canon",
  16902. height: math.unit(0.5, "miles"),
  16903. default: true
  16904. },
  16905. {
  16906. name: "Big Mistake",
  16907. height: math.unit(13, "miles")
  16908. },
  16909. {
  16910. name: "Playing God",
  16911. height: math.unit(2450, "miles")
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(4, "feet"),
  16920. weight: math.unit(120, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/shiriko/front.svg",
  16924. extra: 195 / 188
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(4, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16938. {
  16939. front: {
  16940. height: math.unit(6, "feet"),
  16941. name: "front",
  16942. image: {
  16943. source: "./media/characters/deja/front.svg",
  16944. extra: 926 / 840,
  16945. bottom: 0.07
  16946. }
  16947. },
  16948. },
  16949. [
  16950. {
  16951. name: "Planck Length",
  16952. height: math.unit(1.6e-35, "meters")
  16953. },
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(30.48, "meters"),
  16957. default: true
  16958. },
  16959. {
  16960. name: "Universal",
  16961. height: math.unit(8.8e26, "meters")
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16967. {
  16968. side: {
  16969. height: math.unit(8, "feet"),
  16970. weight: math.unit(6300, "lb"),
  16971. name: "Side",
  16972. image: {
  16973. source: "./media/characters/anima/side.svg",
  16974. bottom: 0.035
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(8, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16988. {
  16989. front: {
  16990. height: math.unit(8, "feet"),
  16991. weight: math.unit(350, "lb"),
  16992. name: "Front",
  16993. image: {
  16994. source: "./media/characters/bianca/front.svg",
  16995. extra: 234 / 225,
  16996. bottom: 0.03
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(8, "feet"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(6, "feet"),
  17013. weight: math.unit(150, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/adinia/front.svg",
  17017. extra: 1845 / 1672,
  17018. bottom: 0.02
  17019. }
  17020. },
  17021. back: {
  17022. height: math.unit(6, "feet"),
  17023. weight: math.unit(150, "lb"),
  17024. name: "Back",
  17025. image: {
  17026. source: "./media/characters/adinia/back.svg",
  17027. extra: 1845 / 1672,
  17028. bottom: 0.002
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(11 + 5 / 12, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(3, "meters"),
  17045. weight: math.unit(200, "kg"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/lykasa/front.svg",
  17049. extra: 1076 / 976,
  17050. bottom: 0.06
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(3, "meters")
  17058. },
  17059. {
  17060. name: "Kaiju",
  17061. height: math.unit(120, "meters"),
  17062. default: true
  17063. },
  17064. {
  17065. name: "Mega Kaiju",
  17066. height: math.unit(240, "km")
  17067. },
  17068. {
  17069. name: "Giga Kaiju",
  17070. height: math.unit(400, "megameters")
  17071. },
  17072. {
  17073. name: "Tera Kaiju",
  17074. height: math.unit(800, "gigameters")
  17075. },
  17076. {
  17077. name: "Kaiju Dragon Goddess",
  17078. height: math.unit(26, "zettaparsecs")
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17084. {
  17085. side: {
  17086. height: math.unit(283 / 124 * 6, "feet"),
  17087. weight: math.unit(35000, "lb"),
  17088. name: "Side",
  17089. image: {
  17090. source: "./media/characters/malfaren/side.svg",
  17091. extra: 2500 / 1010,
  17092. bottom: 0.01
  17093. }
  17094. },
  17095. front: {
  17096. height: math.unit(22.36, "feet"),
  17097. weight: math.unit(35000, "lb"),
  17098. name: "Front",
  17099. image: {
  17100. source: "./media/characters/malfaren/front.svg",
  17101. extra: 1631 / 1476,
  17102. bottom: 0.01
  17103. }
  17104. },
  17105. maw: {
  17106. height: math.unit(6.9, "feet"),
  17107. name: "Maw",
  17108. image: {
  17109. source: "./media/characters/malfaren/maw.svg"
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Big",
  17116. height: math.unit(283 / 162 * 6, "feet"),
  17117. },
  17118. {
  17119. name: "Bigger",
  17120. height: math.unit(283 / 124 * 6, "feet")
  17121. },
  17122. {
  17123. name: "Massive",
  17124. height: math.unit(283 / 92 * 6, "feet"),
  17125. default: true
  17126. },
  17127. {
  17128. name: "👀💦",
  17129. height: math.unit(283 / 73 * 6, "feet"),
  17130. },
  17131. ]
  17132. ))
  17133. characterMakers.push(() => makeCharacter(
  17134. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17135. {
  17136. front: {
  17137. height: math.unit(1.7, "m"),
  17138. weight: math.unit(70, "kg"),
  17139. name: "Front",
  17140. image: {
  17141. source: "./media/characters/kernel/front.svg",
  17142. extra: 222 / 210,
  17143. bottom: 0.007
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Nano",
  17150. height: math.unit(17, "micrometers")
  17151. },
  17152. {
  17153. name: "Micro",
  17154. height: math.unit(1.7, "mm")
  17155. },
  17156. {
  17157. name: "Small",
  17158. height: math.unit(1.7, "cm")
  17159. },
  17160. {
  17161. name: "Normal",
  17162. height: math.unit(1.7, "m"),
  17163. default: true
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17169. {
  17170. front: {
  17171. height: math.unit(1.75, "meters"),
  17172. weight: math.unit(65, "kg"),
  17173. name: "Front",
  17174. image: {
  17175. source: "./media/characters/jayne-folest/front.svg",
  17176. extra: 2115 / 2007,
  17177. bottom: 0.02
  17178. }
  17179. },
  17180. back: {
  17181. height: math.unit(1.75, "meters"),
  17182. weight: math.unit(65, "kg"),
  17183. name: "Back",
  17184. image: {
  17185. source: "./media/characters/jayne-folest/back.svg",
  17186. extra: 2115 / 2007,
  17187. bottom: 0.005
  17188. }
  17189. },
  17190. frontClothed: {
  17191. height: math.unit(1.75, "meters"),
  17192. weight: math.unit(65, "kg"),
  17193. name: "Front (Clothed)",
  17194. image: {
  17195. source: "./media/characters/jayne-folest/front-clothed.svg",
  17196. extra: 2115 / 2007,
  17197. bottom: 0.035
  17198. }
  17199. },
  17200. hand: {
  17201. height: math.unit(1 / 1.260, "feet"),
  17202. name: "Hand",
  17203. image: {
  17204. source: "./media/characters/jayne-folest/hand.svg"
  17205. }
  17206. },
  17207. foot: {
  17208. height: math.unit(1 / 0.918, "feet"),
  17209. name: "Foot",
  17210. image: {
  17211. source: "./media/characters/jayne-folest/foot.svg"
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Micro",
  17218. height: math.unit(4, "cm")
  17219. },
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(1.75, "meters")
  17223. },
  17224. {
  17225. name: "Macro",
  17226. height: math.unit(47.5, "meters"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17233. {
  17234. front: {
  17235. height: math.unit(180, "cm"),
  17236. weight: math.unit(70, "kg"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/algier/front.svg",
  17240. extra: 596 / 572,
  17241. bottom: 0.04
  17242. }
  17243. },
  17244. back: {
  17245. height: math.unit(180, "cm"),
  17246. weight: math.unit(70, "kg"),
  17247. name: "Back",
  17248. image: {
  17249. source: "./media/characters/algier/back.svg",
  17250. extra: 596 / 572,
  17251. bottom: 0.025
  17252. }
  17253. },
  17254. frontdressed: {
  17255. height: math.unit(180, "cm"),
  17256. weight: math.unit(150, "kg"),
  17257. name: "Front-dressed",
  17258. image: {
  17259. source: "./media/characters/algier/front-dressed.svg",
  17260. extra: 596 / 572,
  17261. bottom: 0.038
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Micro",
  17268. height: math.unit(5, "cm")
  17269. },
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(180, "cm"),
  17273. default: true
  17274. },
  17275. {
  17276. name: "Macro",
  17277. height: math.unit(64, "m")
  17278. },
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17283. {
  17284. upright: {
  17285. height: math.unit(7, "feet"),
  17286. weight: math.unit(300, "lb"),
  17287. name: "Upright",
  17288. image: {
  17289. source: "./media/characters/pretzel/upright.svg",
  17290. extra: 534 / 522,
  17291. bottom: 0.065
  17292. }
  17293. },
  17294. sprawling: {
  17295. height: math.unit(3.75, "feet"),
  17296. weight: math.unit(300, "lb"),
  17297. name: "Sprawling",
  17298. image: {
  17299. source: "./media/characters/pretzel/sprawling.svg",
  17300. extra: 314 / 281,
  17301. bottom: 0.1
  17302. }
  17303. },
  17304. tongue: {
  17305. height: math.unit(2, "feet"),
  17306. name: "Tongue",
  17307. image: {
  17308. source: "./media/characters/pretzel/tongue.svg"
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Normal",
  17315. height: math.unit(7, "feet"),
  17316. default: true
  17317. },
  17318. {
  17319. name: "Oversized",
  17320. height: math.unit(15, "feet")
  17321. },
  17322. {
  17323. name: "Huge",
  17324. height: math.unit(30, "feet")
  17325. },
  17326. {
  17327. name: "Macro",
  17328. height: math.unit(250, "feet")
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17334. {
  17335. sideFront: {
  17336. height: math.unit(5 + 2 / 12, "feet"),
  17337. weight: math.unit(120, "lb"),
  17338. name: "Front Side",
  17339. image: {
  17340. source: "./media/characters/roxi/side-front.svg",
  17341. extra: 2924 / 2717,
  17342. bottom: 0.08
  17343. }
  17344. },
  17345. sideBack: {
  17346. height: math.unit(5 + 2 / 12, "feet"),
  17347. weight: math.unit(120, "lb"),
  17348. name: "Back Side",
  17349. image: {
  17350. source: "./media/characters/roxi/side-back.svg",
  17351. extra: 2904 / 2693,
  17352. bottom: 0.06
  17353. }
  17354. },
  17355. front: {
  17356. height: math.unit(5 + 2 / 12, "feet"),
  17357. weight: math.unit(120, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/roxi/front.svg",
  17361. extra: 2028 / 1907,
  17362. bottom: 0.01
  17363. }
  17364. },
  17365. frontAlt: {
  17366. height: math.unit(5 + 2 / 12, "feet"),
  17367. weight: math.unit(120, "lb"),
  17368. name: "Front (Alt)",
  17369. image: {
  17370. source: "./media/characters/roxi/front-alt.svg",
  17371. extra: 1828 / 1798,
  17372. bottom: 0.01
  17373. }
  17374. },
  17375. sitting: {
  17376. height: math.unit(2.8, "feet"),
  17377. weight: math.unit(120, "lb"),
  17378. name: "Sitting",
  17379. image: {
  17380. source: "./media/characters/roxi/sitting.svg",
  17381. extra: 2660 / 2462,
  17382. bottom: 0.1
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(5 + 2 / 12, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17396. {
  17397. side: {
  17398. height: math.unit(55, "feet"),
  17399. weight: math.unit(153, "tons"),
  17400. name: "Side",
  17401. image: {
  17402. source: "./media/characters/shadow/side.svg",
  17403. extra: 701 / 628,
  17404. bottom: 0.02
  17405. }
  17406. },
  17407. flying: {
  17408. height: math.unit(145, "feet"),
  17409. weight: math.unit(153, "tons"),
  17410. name: "Flying",
  17411. image: {
  17412. source: "./media/characters/shadow/flying.svg"
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(55, "feet"),
  17420. default: true
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(6, "feet"),
  17429. weight: math.unit(200, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/marcie/front.svg",
  17433. extra: 960 / 876,
  17434. bottom: 58 / 1017.87
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Macro",
  17441. height: math.unit(1, "mile"),
  17442. default: true
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17448. {
  17449. front: {
  17450. height: math.unit(7, "feet"),
  17451. weight: math.unit(200, "lb"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/kachina/front.svg",
  17455. extra: 1290.68 / 1119,
  17456. bottom: 36.5 / 1327.18
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Normal",
  17463. height: math.unit(7, "feet"),
  17464. default: true
  17465. },
  17466. ]
  17467. ))
  17468. characterMakers.push(() => makeCharacter(
  17469. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17470. {
  17471. looking: {
  17472. height: math.unit(2, "meters"),
  17473. weight: math.unit(300, "kg"),
  17474. name: "Looking",
  17475. image: {
  17476. source: "./media/characters/kash/looking.svg",
  17477. extra: 474 / 344,
  17478. bottom: 0.03
  17479. }
  17480. },
  17481. side: {
  17482. height: math.unit(2, "meters"),
  17483. weight: math.unit(300, "kg"),
  17484. name: "Side",
  17485. image: {
  17486. source: "./media/characters/kash/side.svg",
  17487. extra: 302 / 251,
  17488. bottom: 0.03
  17489. }
  17490. },
  17491. front: {
  17492. height: math.unit(2, "meters"),
  17493. weight: math.unit(300, "kg"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/kash/front.svg",
  17497. extra: 495 / 360,
  17498. bottom: 0.015
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(2, "meters"),
  17506. default: true
  17507. },
  17508. {
  17509. name: "Big",
  17510. height: math.unit(3, "meters")
  17511. },
  17512. {
  17513. name: "Large",
  17514. height: math.unit(5, "meters")
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17520. {
  17521. feeding: {
  17522. height: math.unit(6.7, "feet"),
  17523. weight: math.unit(350, "lb"),
  17524. name: "Feeding",
  17525. image: {
  17526. source: "./media/characters/lalim/feeding.svg",
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Normal",
  17533. height: math.unit(6.7, "feet"),
  17534. default: true
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(9.5, "feet"),
  17543. weight: math.unit(600, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/de'vout/front.svg",
  17547. extra: 1443 / 1328,
  17548. bottom: 0.025
  17549. }
  17550. },
  17551. back: {
  17552. height: math.unit(9.5, "feet"),
  17553. weight: math.unit(600, "lb"),
  17554. name: "Back",
  17555. image: {
  17556. source: "./media/characters/de'vout/back.svg",
  17557. extra: 1443 / 1328
  17558. }
  17559. },
  17560. frontDressed: {
  17561. height: math.unit(9.5, "feet"),
  17562. weight: math.unit(600, "lb"),
  17563. name: "Front (Dressed",
  17564. image: {
  17565. source: "./media/characters/de'vout/front-dressed.svg",
  17566. extra: 1443 / 1328,
  17567. bottom: 0.025
  17568. }
  17569. },
  17570. backDressed: {
  17571. height: math.unit(9.5, "feet"),
  17572. weight: math.unit(600, "lb"),
  17573. name: "Back (Dressed",
  17574. image: {
  17575. source: "./media/characters/de'vout/back-dressed.svg",
  17576. extra: 1443 / 1328
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(9.5, "feet"),
  17584. default: true
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(8, "feet"),
  17593. weight: math.unit(225, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/talana/front.svg",
  17597. extra: 1410 / 1300,
  17598. bottom: 0.015
  17599. }
  17600. },
  17601. frontDressed: {
  17602. height: math.unit(8, "feet"),
  17603. weight: math.unit(225, "lb"),
  17604. name: "Front (Dressed",
  17605. image: {
  17606. source: "./media/characters/talana/front-dressed.svg",
  17607. extra: 1410 / 1300,
  17608. bottom: 0.015
  17609. }
  17610. },
  17611. },
  17612. [
  17613. {
  17614. name: "Normal",
  17615. height: math.unit(8, "feet"),
  17616. default: true
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17622. {
  17623. side: {
  17624. height: math.unit(7.2, "feet"),
  17625. weight: math.unit(150, "lb"),
  17626. name: "Side",
  17627. image: {
  17628. source: "./media/characters/xeauvok/side.svg",
  17629. extra: 1975 / 1523,
  17630. bottom: 0.07
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Normal",
  17637. height: math.unit(7.2, "feet"),
  17638. default: true
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17644. {
  17645. side: {
  17646. height: math.unit(10, "feet"),
  17647. weight: math.unit(900, "kg"),
  17648. name: "Side",
  17649. image: {
  17650. source: "./media/characters/zara/side.svg",
  17651. extra: 504 / 498
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(10, "feet"),
  17659. default: true
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17665. {
  17666. side: {
  17667. height: math.unit(6, "feet"),
  17668. weight: math.unit(150, "lb"),
  17669. name: "Side",
  17670. image: {
  17671. source: "./media/characters/richard-dragon/side.svg",
  17672. extra: 845 / 340,
  17673. bottom: 0.017
  17674. }
  17675. },
  17676. maw: {
  17677. height: math.unit(2.97, "feet"),
  17678. name: "Maw",
  17679. image: {
  17680. source: "./media/characters/richard-dragon/maw.svg"
  17681. }
  17682. },
  17683. },
  17684. [
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(4, "feet"),
  17692. weight: math.unit(100, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/richard-smeargle/front.svg",
  17696. extra: 2952 / 2820,
  17697. bottom: 0.028
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(4, "feet"),
  17705. default: true
  17706. },
  17707. {
  17708. name: "Dynamax",
  17709. height: math.unit(20, "meters")
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17715. {
  17716. front: {
  17717. height: math.unit(6, "feet"),
  17718. weight: math.unit(110, "lb"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/klay/front.svg",
  17722. extra: 962 / 883,
  17723. bottom: 0.04
  17724. }
  17725. },
  17726. back: {
  17727. height: math.unit(6, "feet"),
  17728. weight: math.unit(110, "lb"),
  17729. name: "Back",
  17730. image: {
  17731. source: "./media/characters/klay/back.svg",
  17732. extra: 962 / 883
  17733. }
  17734. },
  17735. beans: {
  17736. height: math.unit(1.15, "feet"),
  17737. name: "Beans",
  17738. image: {
  17739. source: "./media/characters/klay/beans.svg"
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Micro",
  17746. height: math.unit(6, "inches")
  17747. },
  17748. {
  17749. name: "Mini",
  17750. height: math.unit(3, "feet")
  17751. },
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(6, "feet"),
  17755. default: true
  17756. },
  17757. {
  17758. name: "Big",
  17759. height: math.unit(25, "feet")
  17760. },
  17761. {
  17762. name: "Macro",
  17763. height: math.unit(100, "feet")
  17764. },
  17765. {
  17766. name: "Megamacro",
  17767. height: math.unit(400, "feet")
  17768. },
  17769. ]
  17770. ))
  17771. characterMakers.push(() => makeCharacter(
  17772. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17773. {
  17774. front: {
  17775. height: math.unit(6, "feet"),
  17776. weight: math.unit(160, "lb"),
  17777. name: "Front",
  17778. image: {
  17779. source: "./media/characters/marcus/front.svg",
  17780. extra: 734 / 676,
  17781. bottom: 0.03
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Little",
  17788. height: math.unit(6, "feet")
  17789. },
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(110, "feet"),
  17793. default: true
  17794. },
  17795. {
  17796. name: "Macro",
  17797. height: math.unit(250, "feet")
  17798. },
  17799. {
  17800. name: "Megamacro",
  17801. height: math.unit(1000, "feet")
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17807. {
  17808. front: {
  17809. height: math.unit(7, "feet"),
  17810. weight: math.unit(275, "lb"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/claude-delroute/front.svg",
  17814. extra: 230 / 214,
  17815. bottom: 0.007
  17816. }
  17817. },
  17818. side: {
  17819. height: math.unit(7, "feet"),
  17820. weight: math.unit(275, "lb"),
  17821. name: "Side",
  17822. image: {
  17823. source: "./media/characters/claude-delroute/side.svg",
  17824. extra: 222 / 214,
  17825. bottom: 0.01
  17826. }
  17827. },
  17828. back: {
  17829. height: math.unit(7, "feet"),
  17830. weight: math.unit(275, "lb"),
  17831. name: "Back",
  17832. image: {
  17833. source: "./media/characters/claude-delroute/back.svg",
  17834. extra: 230 / 214,
  17835. bottom: 0.015
  17836. }
  17837. },
  17838. maw: {
  17839. height: math.unit(0.6407, "meters"),
  17840. name: "Maw",
  17841. image: {
  17842. source: "./media/characters/claude-delroute/maw.svg"
  17843. }
  17844. },
  17845. },
  17846. [
  17847. {
  17848. name: "Normal",
  17849. height: math.unit(7, "feet"),
  17850. default: true
  17851. },
  17852. {
  17853. name: "Lorge",
  17854. height: math.unit(20, "feet")
  17855. },
  17856. ]
  17857. ))
  17858. characterMakers.push(() => makeCharacter(
  17859. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17860. {
  17861. front: {
  17862. height: math.unit(8 + 4 / 12, "feet"),
  17863. weight: math.unit(600, "lb"),
  17864. name: "Front",
  17865. image: {
  17866. source: "./media/characters/dragonien/front.svg",
  17867. extra: 100 / 94,
  17868. bottom: 3.3 / 103.3445
  17869. }
  17870. },
  17871. back: {
  17872. height: math.unit(8 + 4 / 12, "feet"),
  17873. weight: math.unit(600, "lb"),
  17874. name: "Back",
  17875. image: {
  17876. source: "./media/characters/dragonien/back.svg",
  17877. extra: 776 / 746,
  17878. bottom: 6.4 / 782.0616
  17879. }
  17880. },
  17881. foot: {
  17882. height: math.unit(1.54, "feet"),
  17883. name: "Foot",
  17884. image: {
  17885. source: "./media/characters/dragonien/foot.svg",
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Normal",
  17892. height: math.unit(8 + 4 / 12, "feet"),
  17893. default: true
  17894. },
  17895. {
  17896. name: "Macro",
  17897. height: math.unit(200, "feet")
  17898. },
  17899. {
  17900. name: "Megamacro",
  17901. height: math.unit(1, "mile")
  17902. },
  17903. {
  17904. name: "Gigamacro",
  17905. height: math.unit(1000, "miles")
  17906. },
  17907. ]
  17908. ))
  17909. characterMakers.push(() => makeCharacter(
  17910. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17911. {
  17912. front: {
  17913. height: math.unit(5 + 2 / 12, "feet"),
  17914. weight: math.unit(110, "lb"),
  17915. name: "Front",
  17916. image: {
  17917. source: "./media/characters/desta/front.svg",
  17918. extra: 767 / 726,
  17919. bottom: 11.7 / 779
  17920. }
  17921. },
  17922. back: {
  17923. height: math.unit(5 + 2 / 12, "feet"),
  17924. weight: math.unit(110, "lb"),
  17925. name: "Back",
  17926. image: {
  17927. source: "./media/characters/desta/back.svg",
  17928. extra: 777 / 728,
  17929. bottom: 6 / 784
  17930. }
  17931. },
  17932. frontAlt: {
  17933. height: math.unit(5 + 2 / 12, "feet"),
  17934. weight: math.unit(110, "lb"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/desta/front-alt.svg",
  17938. extra: 1482 / 1417
  17939. }
  17940. },
  17941. side: {
  17942. height: math.unit(5 + 2 / 12, "feet"),
  17943. weight: math.unit(110, "lb"),
  17944. name: "Side",
  17945. image: {
  17946. source: "./media/characters/desta/side.svg",
  17947. extra: 2579 / 2491,
  17948. bottom: 0.053
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Micro",
  17955. height: math.unit(6, "inches")
  17956. },
  17957. {
  17958. name: "Normal",
  17959. height: math.unit(5 + 2 / 12, "feet"),
  17960. default: true
  17961. },
  17962. {
  17963. name: "Macro",
  17964. height: math.unit(62, "feet")
  17965. },
  17966. {
  17967. name: "Megamacro",
  17968. height: math.unit(1800, "feet")
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(10, "feet"),
  17977. weight: math.unit(700, "lb"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/storm-alystar/front.svg",
  17981. extra: 2112 / 1898,
  17982. bottom: 0.034
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Micro",
  17989. height: math.unit(3.5, "inches")
  17990. },
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(10, "feet"),
  17994. default: true
  17995. },
  17996. {
  17997. name: "Macro",
  17998. height: math.unit(400, "feet")
  17999. },
  18000. {
  18001. name: "Deific",
  18002. height: math.unit(60, "miles")
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(2.35, "meters"),
  18011. weight: math.unit(119, "kg"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/ilia/front.svg",
  18015. extra: 1285 / 1255,
  18016. bottom: 0.06
  18017. }
  18018. },
  18019. },
  18020. [
  18021. {
  18022. name: "Normal",
  18023. height: math.unit(2.35, "meters")
  18024. },
  18025. {
  18026. name: "Macro",
  18027. height: math.unit(140, "meters"),
  18028. default: true
  18029. },
  18030. {
  18031. name: "Megamacro",
  18032. height: math.unit(100, "miles")
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18038. {
  18039. front: {
  18040. height: math.unit(6 + 5 / 12, "feet"),
  18041. weight: math.unit(190, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/kingdead/front.svg",
  18045. extra: 1228 / 1177
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Micro",
  18052. height: math.unit(7, "inches")
  18053. },
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(6 + 5 / 12, "feet")
  18057. },
  18058. {
  18059. name: "Macro",
  18060. height: math.unit(150, "feet"),
  18061. default: true
  18062. },
  18063. {
  18064. name: "Megamacro",
  18065. height: math.unit(200, "miles")
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18071. {
  18072. front: {
  18073. height: math.unit(8, "feet"),
  18074. weight: math.unit(600, "lb"),
  18075. name: "Front",
  18076. image: {
  18077. source: "./media/characters/kyrehx/front.svg",
  18078. extra: 1195 / 1095,
  18079. bottom: 0.034
  18080. }
  18081. },
  18082. },
  18083. [
  18084. {
  18085. name: "Micro",
  18086. height: math.unit(2, "inches")
  18087. },
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(8, "feet"),
  18091. default: true
  18092. },
  18093. {
  18094. name: "Macro",
  18095. height: math.unit(255, "feet")
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18101. {
  18102. front: {
  18103. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18104. weight: math.unit(184, "lb"),
  18105. name: "Front",
  18106. image: {
  18107. source: "./media/characters/xang/front.svg",
  18108. extra: 845 / 755
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18116. default: true
  18117. },
  18118. {
  18119. name: "Macro",
  18120. height: math.unit(0.935 * 146, "feet")
  18121. },
  18122. {
  18123. name: "Megamacro",
  18124. height: math.unit(0.935 * 3, "miles")
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18130. {
  18131. frontDressed: {
  18132. height: math.unit(5 + 7 / 12, "feet"),
  18133. weight: math.unit(140, "lb"),
  18134. name: "Front (Dressed)",
  18135. image: {
  18136. source: "./media/characters/doc-weardno/front-dressed.svg",
  18137. extra: 263 / 234
  18138. }
  18139. },
  18140. backDressed: {
  18141. height: math.unit(5 + 7 / 12, "feet"),
  18142. weight: math.unit(140, "lb"),
  18143. name: "Back (Dressed)",
  18144. image: {
  18145. source: "./media/characters/doc-weardno/back-dressed.svg",
  18146. extra: 266 / 238
  18147. }
  18148. },
  18149. front: {
  18150. height: math.unit(5 + 7 / 12, "feet"),
  18151. weight: math.unit(140, "lb"),
  18152. name: "Front",
  18153. image: {
  18154. source: "./media/characters/doc-weardno/front.svg",
  18155. extra: 254 / 233
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Micro",
  18162. height: math.unit(3, "inches")
  18163. },
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(5 + 7 / 12, "feet"),
  18167. default: true
  18168. },
  18169. {
  18170. name: "Macro",
  18171. height: math.unit(25, "feet")
  18172. },
  18173. {
  18174. name: "Megamacro",
  18175. height: math.unit(2, "miles")
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18181. {
  18182. front: {
  18183. height: math.unit(6 + 2 / 12, "feet"),
  18184. weight: math.unit(153, "lb"),
  18185. name: "Front",
  18186. image: {
  18187. source: "./media/characters/seth-whilst/front.svg",
  18188. bottom: 0.07
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Micro",
  18195. height: math.unit(5, "inches")
  18196. },
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(6 + 2 / 12, "feet"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(3, "inches"),
  18209. weight: math.unit(8, "grams"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/pocket-jabari/front.svg",
  18213. extra: 1024 / 974,
  18214. bottom: 0.039
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Minimicro",
  18221. height: math.unit(8, "mm")
  18222. },
  18223. {
  18224. name: "Micro",
  18225. height: math.unit(3, "inches"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(3, "feet")
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(15, "feet"),
  18239. weight: math.unit(3280, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/sapphy/front.svg",
  18243. extra: 671 / 577,
  18244. bottom: 0.085
  18245. }
  18246. },
  18247. back: {
  18248. height: math.unit(15, "feet"),
  18249. weight: math.unit(3280, "lb"),
  18250. name: "Back",
  18251. image: {
  18252. source: "./media/characters/sapphy/back.svg",
  18253. extra: 631 / 607,
  18254. bottom: 0.045
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(15, "feet")
  18262. },
  18263. {
  18264. name: "Casual Macro",
  18265. height: math.unit(120, "feet")
  18266. },
  18267. {
  18268. name: "Macro",
  18269. height: math.unit(2150, "feet"),
  18270. default: true
  18271. },
  18272. {
  18273. name: "Megamacro",
  18274. height: math.unit(8, "miles")
  18275. },
  18276. {
  18277. name: "Galaxy Mom",
  18278. height: math.unit(6, "megalightyears")
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(6, "feet"),
  18287. weight: math.unit(170, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/kiro/front.svg",
  18291. extra: 1064 / 1012,
  18292. bottom: 0.052
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Micro",
  18299. height: math.unit(6, "inches")
  18300. },
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(6, "feet"),
  18304. default: true
  18305. },
  18306. {
  18307. name: "Macro",
  18308. height: math.unit(72, "feet")
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(5 + 9 / 12, "feet"),
  18317. weight: math.unit(175, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/irishfox/front.svg",
  18321. extra: 1912 / 1680,
  18322. bottom: 0.02
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Nano",
  18329. height: math.unit(1, "mm")
  18330. },
  18331. {
  18332. name: "Micro",
  18333. height: math.unit(2, "inches")
  18334. },
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(5 + 9 / 12, "feet"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Macro",
  18342. height: math.unit(45, "feet")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(6 + 1 / 12, "feet"),
  18351. weight: math.unit(75, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/aronai-sieyes/front.svg",
  18355. extra: 1556 / 1480,
  18356. bottom: 0.015
  18357. }
  18358. },
  18359. side: {
  18360. height: math.unit(6 + 1 / 12, "feet"),
  18361. weight: math.unit(75, "lb"),
  18362. name: "Side",
  18363. image: {
  18364. source: "./media/characters/aronai-sieyes/side.svg",
  18365. extra: 1433 / 1390,
  18366. bottom: 0.0393
  18367. }
  18368. },
  18369. back: {
  18370. height: math.unit(6 + 1 / 12, "feet"),
  18371. weight: math.unit(75, "lb"),
  18372. name: "Back",
  18373. image: {
  18374. source: "./media/characters/aronai-sieyes/back.svg",
  18375. extra: 1544 / 1494,
  18376. bottom: 0.02
  18377. }
  18378. },
  18379. frontClothed: {
  18380. height: math.unit(6 + 1 / 12, "feet"),
  18381. weight: math.unit(75, "lb"),
  18382. name: "Front (Clothed)",
  18383. image: {
  18384. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18385. extra: 1582 / 1527
  18386. }
  18387. },
  18388. feral: {
  18389. height: math.unit(18, "feet"),
  18390. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18391. name: "Feral",
  18392. image: {
  18393. source: "./media/characters/aronai-sieyes/feral.svg",
  18394. extra: 1530 / 1240,
  18395. bottom: 0.035
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Micro",
  18402. height: math.unit(2, "inches")
  18403. },
  18404. {
  18405. name: "Normal",
  18406. height: math.unit(6 + 1 / 12, "feet"),
  18407. default: true
  18408. }
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18413. {
  18414. front: {
  18415. height: math.unit(12, "feet"),
  18416. weight: math.unit(410, "kg"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/xuna/front.svg",
  18420. extra: 2184 / 1980
  18421. }
  18422. },
  18423. side: {
  18424. height: math.unit(12, "feet"),
  18425. weight: math.unit(410, "kg"),
  18426. name: "Side",
  18427. image: {
  18428. source: "./media/characters/xuna/side.svg",
  18429. extra: 2184 / 1980
  18430. }
  18431. },
  18432. back: {
  18433. height: math.unit(12, "feet"),
  18434. weight: math.unit(410, "kg"),
  18435. name: "Back",
  18436. image: {
  18437. source: "./media/characters/xuna/back.svg",
  18438. extra: 2184 / 1980
  18439. }
  18440. },
  18441. },
  18442. [
  18443. {
  18444. name: "Nano glow",
  18445. height: math.unit(10, "nm")
  18446. },
  18447. {
  18448. name: "Micro floof",
  18449. height: math.unit(0.3, "m")
  18450. },
  18451. {
  18452. name: "Huggable softy boi",
  18453. height: math.unit(3.6576, "m"),
  18454. default: true
  18455. },
  18456. {
  18457. name: "Admirable floof",
  18458. height: math.unit(80, "meters")
  18459. },
  18460. {
  18461. name: "Gentle macro",
  18462. height: math.unit(300, "meters")
  18463. },
  18464. {
  18465. name: "Very careful floof",
  18466. height: math.unit(3200, "meters")
  18467. },
  18468. {
  18469. name: "The mega floof",
  18470. height: math.unit(36000, "meters")
  18471. },
  18472. {
  18473. name: "Giga-fur-Wicker",
  18474. height: math.unit(4800000, "meters")
  18475. },
  18476. {
  18477. name: "Licky world",
  18478. height: math.unit(20000000, "meters")
  18479. },
  18480. {
  18481. name: "Floofy cyan sun",
  18482. height: math.unit(1500000000, "meters")
  18483. },
  18484. {
  18485. name: "Milky Wicker",
  18486. height: math.unit(1000000000000000000000, "meters")
  18487. },
  18488. {
  18489. name: "The observing Wicker",
  18490. height: math.unit(999999999999999999999999999, "meters")
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18496. {
  18497. front: {
  18498. height: math.unit(5 + 9 / 12, "feet"),
  18499. weight: math.unit(150, "lb"),
  18500. name: "Front",
  18501. image: {
  18502. source: "./media/characters/arokha-sieyes/front.svg",
  18503. extra: 1425 / 1284,
  18504. bottom: 0.05
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(5 + 9 / 12, "feet")
  18512. },
  18513. {
  18514. name: "Macro",
  18515. height: math.unit(30, "meters"),
  18516. default: true
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18522. {
  18523. front: {
  18524. height: math.unit(6, "feet"),
  18525. weight: math.unit(180, "lb"),
  18526. name: "Front",
  18527. image: {
  18528. source: "./media/characters/arokh-sieyes/front.svg",
  18529. extra: 1830 / 1769,
  18530. bottom: 0.01
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(6, "feet")
  18538. },
  18539. {
  18540. name: "Macro",
  18541. height: math.unit(30, "meters"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18548. {
  18549. side: {
  18550. height: math.unit(13 + 1 / 12, "feet"),
  18551. weight: math.unit(8.5, "tonnes"),
  18552. name: "Side",
  18553. image: {
  18554. source: "./media/characters/goldeneye/side.svg",
  18555. extra: 1182 / 778,
  18556. bottom: 0.067
  18557. }
  18558. },
  18559. paw: {
  18560. height: math.unit(3.4, "feet"),
  18561. name: "Paw",
  18562. image: {
  18563. source: "./media/characters/goldeneye/paw.svg"
  18564. }
  18565. },
  18566. },
  18567. [
  18568. {
  18569. name: "Normal",
  18570. height: math.unit(13 + 1 / 12, "feet"),
  18571. default: true
  18572. },
  18573. ]
  18574. ))
  18575. characterMakers.push(() => makeCharacter(
  18576. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18577. {
  18578. front: {
  18579. height: math.unit(6 + 1 / 12, "feet"),
  18580. weight: math.unit(210, "lb"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/leonardo-lycheborne/front.svg",
  18584. extra: 390 / 365,
  18585. bottom: 0.032
  18586. }
  18587. },
  18588. side: {
  18589. height: math.unit(6 + 1 / 12, "feet"),
  18590. weight: math.unit(210, "lb"),
  18591. name: "Side",
  18592. image: {
  18593. source: "./media/characters/leonardo-lycheborne/side.svg",
  18594. extra: 390 / 365,
  18595. bottom: 0.005
  18596. }
  18597. },
  18598. back: {
  18599. height: math.unit(6 + 1 / 12, "feet"),
  18600. weight: math.unit(210, "lb"),
  18601. name: "Back",
  18602. image: {
  18603. source: "./media/characters/leonardo-lycheborne/back.svg",
  18604. extra: 392 / 366,
  18605. bottom: 0.01
  18606. }
  18607. },
  18608. hand: {
  18609. height: math.unit(1.08, "feet"),
  18610. name: "Hand",
  18611. image: {
  18612. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18613. }
  18614. },
  18615. foot: {
  18616. height: math.unit(1.32, "feet"),
  18617. name: "Foot",
  18618. image: {
  18619. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18620. }
  18621. },
  18622. were: {
  18623. height: math.unit(20, "feet"),
  18624. weight: math.unit(7800, "lb"),
  18625. name: "Were",
  18626. image: {
  18627. source: "./media/characters/leonardo-lycheborne/were.svg",
  18628. extra: 308 / 294,
  18629. bottom: 0.048
  18630. }
  18631. },
  18632. feral: {
  18633. height: math.unit(7.5, "feet"),
  18634. weight: math.unit(600, "lb"),
  18635. name: "Feral",
  18636. image: {
  18637. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18638. extra: 210 / 186,
  18639. bottom: 0.108
  18640. }
  18641. },
  18642. taur: {
  18643. height: math.unit(11, "feet"),
  18644. weight: math.unit(3300, "lb"),
  18645. name: "Taur",
  18646. image: {
  18647. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18648. extra: 320 / 303,
  18649. bottom: 0.025
  18650. }
  18651. },
  18652. barghest: {
  18653. height: math.unit(11, "feet"),
  18654. weight: math.unit(1300, "lb"),
  18655. name: "Barghest",
  18656. image: {
  18657. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18658. extra: 323 / 302,
  18659. bottom: 0.027
  18660. }
  18661. },
  18662. dick: {
  18663. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18664. name: "Dick",
  18665. image: {
  18666. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18667. }
  18668. },
  18669. dickWere: {
  18670. height: math.unit((20) / 3.8, "feet"),
  18671. name: "Dick (Were)",
  18672. image: {
  18673. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(6 + 1 / 12, "feet"),
  18681. default: true
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18687. {
  18688. front: {
  18689. height: math.unit(10, "feet"),
  18690. weight: math.unit(350, "lb"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/jet/front.svg",
  18694. extra: 2050 / 1980,
  18695. bottom: 0.013
  18696. }
  18697. },
  18698. back: {
  18699. height: math.unit(10, "feet"),
  18700. weight: math.unit(350, "lb"),
  18701. name: "Back",
  18702. image: {
  18703. source: "./media/characters/jet/back.svg",
  18704. extra: 2050 / 1980,
  18705. bottom: 0.013
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Micro",
  18712. height: math.unit(6, "inches")
  18713. },
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(10, "feet"),
  18717. default: true
  18718. },
  18719. {
  18720. name: "Macro",
  18721. height: math.unit(100, "feet")
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(15, "feet"),
  18730. weight: math.unit(2800, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/tanarath/front.svg",
  18734. extra: 2392 / 2220,
  18735. bottom: 0.03
  18736. }
  18737. },
  18738. back: {
  18739. height: math.unit(15, "feet"),
  18740. weight: math.unit(2800, "lb"),
  18741. name: "Back",
  18742. image: {
  18743. source: "./media/characters/tanarath/back.svg",
  18744. extra: 2392 / 2220,
  18745. bottom: 0.03
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(15, "feet"),
  18753. default: true
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18759. {
  18760. front: {
  18761. height: math.unit(7 + 1 / 12, "feet"),
  18762. weight: math.unit(175, "lb"),
  18763. name: "Front",
  18764. image: {
  18765. source: "./media/characters/patty-cattybatty/front.svg",
  18766. extra: 908 / 874,
  18767. bottom: 0.025
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Micro",
  18774. height: math.unit(1, "inch")
  18775. },
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(7 + 1 / 12, "feet")
  18779. },
  18780. {
  18781. name: "Mini Macro",
  18782. height: math.unit(155, "feet")
  18783. },
  18784. {
  18785. name: "Macro",
  18786. height: math.unit(1077, "feet")
  18787. },
  18788. {
  18789. name: "Mega Macro",
  18790. height: math.unit(47650, "feet"),
  18791. default: true
  18792. },
  18793. {
  18794. name: "Giga Macro",
  18795. height: math.unit(440, "miles")
  18796. },
  18797. {
  18798. name: "Tera Macro",
  18799. height: math.unit(8700, "miles")
  18800. },
  18801. {
  18802. name: "Planetary Macro",
  18803. height: math.unit(32700, "miles")
  18804. },
  18805. {
  18806. name: "Solar Macro",
  18807. height: math.unit(550000, "miles")
  18808. },
  18809. {
  18810. name: "Celestial Macro",
  18811. height: math.unit(2.5, "AU")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(4 + 5 / 12, "feet"),
  18820. weight: math.unit(90, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/cappu/front.svg",
  18824. extra: 1247 / 1152,
  18825. bottom: 0.012
  18826. }
  18827. },
  18828. },
  18829. [
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(4 + 5 / 12, "feet"),
  18833. default: true
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18839. {
  18840. frontDressed: {
  18841. height: math.unit(70, "cm"),
  18842. weight: math.unit(6, "kg"),
  18843. name: "Front (Dressed)",
  18844. image: {
  18845. source: "./media/characters/sebi/front-dressed.svg",
  18846. extra: 713.5 / 686.5,
  18847. bottom: 0.003
  18848. }
  18849. },
  18850. front: {
  18851. height: math.unit(70, "cm"),
  18852. weight: math.unit(5, "kg"),
  18853. name: "Front",
  18854. image: {
  18855. source: "./media/characters/sebi/front.svg",
  18856. extra: 713.5 / 686.5,
  18857. bottom: 0.003
  18858. }
  18859. }
  18860. },
  18861. [
  18862. {
  18863. name: "Normal",
  18864. height: math.unit(70, "cm"),
  18865. default: true
  18866. },
  18867. {
  18868. name: "Macro",
  18869. height: math.unit(8, "meters")
  18870. },
  18871. ]
  18872. ))
  18873. characterMakers.push(() => makeCharacter(
  18874. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18875. {
  18876. front: {
  18877. height: math.unit(6, "feet"),
  18878. weight: math.unit(150, "lb"),
  18879. name: "Front",
  18880. image: {
  18881. source: "./media/characters/typhek/front.svg",
  18882. extra: 1948 / 1929,
  18883. bottom: 0.025
  18884. }
  18885. },
  18886. side: {
  18887. height: math.unit(6, "feet"),
  18888. weight: math.unit(150, "lb"),
  18889. name: "Side",
  18890. image: {
  18891. source: "./media/characters/typhek/side.svg",
  18892. extra: 2034 / 2010,
  18893. bottom: 0.003
  18894. }
  18895. },
  18896. back: {
  18897. height: math.unit(6, "feet"),
  18898. weight: math.unit(150, "lb"),
  18899. name: "Back",
  18900. image: {
  18901. source: "./media/characters/typhek/back.svg",
  18902. extra: 2005 / 1978,
  18903. bottom: 0.004
  18904. }
  18905. },
  18906. palm: {
  18907. height: math.unit(1.2, "feet"),
  18908. name: "Palm",
  18909. image: {
  18910. source: "./media/characters/typhek/palm.svg"
  18911. }
  18912. },
  18913. fist: {
  18914. height: math.unit(1.1, "feet"),
  18915. name: "Fist",
  18916. image: {
  18917. source: "./media/characters/typhek/fist.svg"
  18918. }
  18919. },
  18920. foot: {
  18921. height: math.unit(1.57, "feet"),
  18922. name: "Foot",
  18923. image: {
  18924. source: "./media/characters/typhek/foot.svg"
  18925. }
  18926. },
  18927. sole: {
  18928. height: math.unit(2.05, "feet"),
  18929. name: "Sole",
  18930. image: {
  18931. source: "./media/characters/typhek/sole.svg"
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Macro",
  18938. height: math.unit(40, "stories"),
  18939. default: true
  18940. },
  18941. {
  18942. name: "Megamacro",
  18943. height: math.unit(1, "mile")
  18944. },
  18945. {
  18946. name: "Gigamacro",
  18947. height: math.unit(4000, "solarradii")
  18948. },
  18949. {
  18950. name: "Universal",
  18951. height: math.unit(1.1, "universes")
  18952. }
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18957. {
  18958. side: {
  18959. height: math.unit(5 + 7 / 12, "feet"),
  18960. weight: math.unit(150, "lb"),
  18961. name: "Side",
  18962. image: {
  18963. source: "./media/characters/kassy/side.svg",
  18964. extra: 1280 / 1225,
  18965. bottom: 0.002
  18966. }
  18967. },
  18968. front: {
  18969. height: math.unit(5 + 7 / 12, "feet"),
  18970. weight: math.unit(150, "lb"),
  18971. name: "Front",
  18972. image: {
  18973. source: "./media/characters/kassy/front.svg",
  18974. extra: 1280 / 1225,
  18975. bottom: 0.025
  18976. }
  18977. },
  18978. back: {
  18979. height: math.unit(5 + 7 / 12, "feet"),
  18980. weight: math.unit(150, "lb"),
  18981. name: "Back",
  18982. image: {
  18983. source: "./media/characters/kassy/back.svg",
  18984. extra: 1280 / 1225,
  18985. bottom: 0.002
  18986. }
  18987. },
  18988. foot: {
  18989. height: math.unit(1.266, "feet"),
  18990. name: "Foot",
  18991. image: {
  18992. source: "./media/characters/kassy/foot.svg"
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(5 + 7 / 12, "feet")
  19000. },
  19001. {
  19002. name: "Macro",
  19003. height: math.unit(137, "feet"),
  19004. default: true
  19005. },
  19006. {
  19007. name: "Megamacro",
  19008. height: math.unit(1, "mile")
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19014. {
  19015. front: {
  19016. height: math.unit(6 + 1 / 12, "feet"),
  19017. weight: math.unit(200, "lb"),
  19018. name: "Front",
  19019. image: {
  19020. source: "./media/characters/neil/front.svg",
  19021. extra: 1326 / 1250,
  19022. bottom: 0.023
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(6 + 1 / 12, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Macro",
  19034. height: math.unit(200, "feet")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19040. {
  19041. front: {
  19042. height: math.unit(5 + 9 / 12, "feet"),
  19043. weight: math.unit(190, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/atticus/front.svg",
  19047. extra: 2934 / 2785,
  19048. bottom: 0.025
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Normal",
  19055. height: math.unit(5 + 9 / 12, "feet"),
  19056. default: true
  19057. },
  19058. {
  19059. name: "Macro",
  19060. height: math.unit(180, "feet")
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19066. {
  19067. side: {
  19068. height: math.unit(9, "feet"),
  19069. weight: math.unit(650, "lb"),
  19070. name: "Side",
  19071. image: {
  19072. source: "./media/characters/milo/side.svg",
  19073. extra: 2644 / 2310,
  19074. bottom: 0.032
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(9, "feet"),
  19082. default: true
  19083. },
  19084. {
  19085. name: "Macro",
  19086. height: math.unit(300, "feet")
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19092. {
  19093. side: {
  19094. height: math.unit(8, "meters"),
  19095. weight: math.unit(90000, "kg"),
  19096. name: "Side",
  19097. image: {
  19098. source: "./media/characters/ijzer/side.svg",
  19099. extra: 2756 / 1600,
  19100. bottom: 0.01
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Small",
  19107. height: math.unit(3, "meters")
  19108. },
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(8, "meters"),
  19112. default: true
  19113. },
  19114. {
  19115. name: "Normal+",
  19116. height: math.unit(10, "meters")
  19117. },
  19118. {
  19119. name: "Bigger",
  19120. height: math.unit(24, "meters")
  19121. },
  19122. {
  19123. name: "Huge",
  19124. height: math.unit(80, "meters")
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(6 + 2 / 12, "feet"),
  19133. weight: math.unit(153, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/luca-cervicum/front.svg",
  19137. extra: 370 / 327,
  19138. bottom: 0.015
  19139. }
  19140. },
  19141. back: {
  19142. height: math.unit(6 + 2 / 12, "feet"),
  19143. weight: math.unit(153, "lb"),
  19144. name: "Back",
  19145. image: {
  19146. source: "./media/characters/luca-cervicum/back.svg",
  19147. extra: 367 / 333,
  19148. bottom: 0.005
  19149. }
  19150. },
  19151. frontGear: {
  19152. height: math.unit(6 + 2 / 12, "feet"),
  19153. weight: math.unit(173, "lb"),
  19154. name: "Front (Gear)",
  19155. image: {
  19156. source: "./media/characters/luca-cervicum/front-gear.svg",
  19157. extra: 377 / 333,
  19158. bottom: 0.006
  19159. }
  19160. },
  19161. },
  19162. [
  19163. {
  19164. name: "Normal",
  19165. height: math.unit(6 + 2 / 12, "feet"),
  19166. default: true
  19167. },
  19168. ]
  19169. ))
  19170. characterMakers.push(() => makeCharacter(
  19171. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19172. {
  19173. front: {
  19174. height: math.unit(6 + 1 / 12, "feet"),
  19175. weight: math.unit(304, "lb"),
  19176. name: "Front",
  19177. image: {
  19178. source: "./media/characters/oliver/front.svg",
  19179. extra: 157 / 143,
  19180. bottom: 0.08
  19181. }
  19182. },
  19183. },
  19184. [
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(6 + 1 / 12, "feet"),
  19188. default: true
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19194. {
  19195. front: {
  19196. height: math.unit(5 + 7 / 12, "feet"),
  19197. weight: math.unit(140, "lb"),
  19198. name: "Front",
  19199. image: {
  19200. source: "./media/characters/shane/front.svg",
  19201. extra: 304 / 289,
  19202. bottom: 0.005
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(5 + 7 / 12, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(5 + 9 / 12, "feet"),
  19219. weight: math.unit(178, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/shin/front.svg",
  19223. extra: 159 / 151,
  19224. bottom: 0.015
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(5 + 9 / 12, "feet"),
  19232. default: true
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19238. {
  19239. front: {
  19240. height: math.unit(5 + 10 / 12, "feet"),
  19241. weight: math.unit(168, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/xerxes/front.svg",
  19245. extra: 282 / 260,
  19246. bottom: 0.045
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(5 + 10 / 12, "feet"),
  19254. default: true
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(6 + 7 / 12, "feet"),
  19263. weight: math.unit(208, "lb"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/chaska/front.svg",
  19267. extra: 332 / 319,
  19268. bottom: 0.015
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(6 + 7 / 12, "feet"),
  19276. default: true
  19277. },
  19278. ]
  19279. ))
  19280. characterMakers.push(() => makeCharacter(
  19281. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19282. {
  19283. front: {
  19284. height: math.unit(5 + 8 / 12, "feet"),
  19285. weight: math.unit(208, "lb"),
  19286. name: "Front",
  19287. image: {
  19288. source: "./media/characters/enuk/front.svg",
  19289. extra: 437 / 406,
  19290. bottom: 0.02
  19291. }
  19292. },
  19293. },
  19294. [
  19295. {
  19296. name: "Normal",
  19297. height: math.unit(5 + 8 / 12, "feet"),
  19298. default: true
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19304. {
  19305. front: {
  19306. height: math.unit(5 + 10 / 12, "feet"),
  19307. weight: math.unit(252, "lb"),
  19308. name: "Front",
  19309. image: {
  19310. source: "./media/characters/bruun/front.svg",
  19311. extra: 197 / 187,
  19312. bottom: 0.012
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(5 + 10 / 12, "feet"),
  19320. default: true
  19321. },
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19326. {
  19327. front: {
  19328. height: math.unit(6 + 10 / 12, "feet"),
  19329. weight: math.unit(255, "lb"),
  19330. name: "Front",
  19331. image: {
  19332. source: "./media/characters/alexeev/front.svg",
  19333. extra: 213 / 200,
  19334. bottom: 0.05
  19335. }
  19336. },
  19337. },
  19338. [
  19339. {
  19340. name: "Normal",
  19341. height: math.unit(6 + 10 / 12, "feet"),
  19342. default: true
  19343. },
  19344. ]
  19345. ))
  19346. characterMakers.push(() => makeCharacter(
  19347. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19348. {
  19349. front: {
  19350. height: math.unit(2 + 8 / 12, "feet"),
  19351. weight: math.unit(22, "lb"),
  19352. name: "Front",
  19353. image: {
  19354. source: "./media/characters/evelyn/front.svg",
  19355. extra: 208 / 180
  19356. }
  19357. },
  19358. },
  19359. [
  19360. {
  19361. name: "Normal",
  19362. height: math.unit(2 + 8 / 12, "feet"),
  19363. default: true
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19369. {
  19370. front: {
  19371. height: math.unit(5 + 9 / 12, "feet"),
  19372. weight: math.unit(139, "lb"),
  19373. name: "Front",
  19374. image: {
  19375. source: "./media/characters/inca/front.svg",
  19376. extra: 294 / 291,
  19377. bottom: 0.03
  19378. }
  19379. },
  19380. },
  19381. [
  19382. {
  19383. name: "Normal",
  19384. height: math.unit(5 + 9 / 12, "feet"),
  19385. default: true
  19386. },
  19387. ]
  19388. ))
  19389. characterMakers.push(() => makeCharacter(
  19390. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19391. {
  19392. front: {
  19393. height: math.unit(5 + 1 / 12, "feet"),
  19394. weight: math.unit(84, "lb"),
  19395. name: "Front",
  19396. image: {
  19397. source: "./media/characters/magdalene/front.svg",
  19398. extra: 293 / 273
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(5 + 1 / 12, "feet"),
  19406. default: true
  19407. },
  19408. ]
  19409. ))
  19410. characterMakers.push(() => makeCharacter(
  19411. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19412. {
  19413. front: {
  19414. height: math.unit(6 + 3 / 12, "feet"),
  19415. weight: math.unit(185, "lb"),
  19416. name: "Front",
  19417. image: {
  19418. source: "./media/characters/mera/front.svg",
  19419. extra: 291 / 277,
  19420. bottom: 0.03
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(6 + 3 / 12, "feet"),
  19428. default: true
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19434. {
  19435. front: {
  19436. height: math.unit(6 + 7 / 12, "feet"),
  19437. weight: math.unit(160, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/ceres/front.svg",
  19441. extra: 1023 / 950,
  19442. bottom: 0.027
  19443. }
  19444. },
  19445. back: {
  19446. height: math.unit(6 + 7 / 12, "feet"),
  19447. weight: math.unit(160, "lb"),
  19448. name: "Back",
  19449. image: {
  19450. source: "./media/characters/ceres/back.svg",
  19451. extra: 1023 / 950
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(6 + 7 / 12, "feet"),
  19459. default: true
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(5 + 10 / 12, "feet"),
  19468. weight: math.unit(150, "lb"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/kris/front.svg",
  19472. extra: 885 / 803,
  19473. bottom: 0.03
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Normal",
  19480. height: math.unit(5 + 10 / 12, "feet"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(7, "feet"),
  19490. weight: math.unit(120, "kg"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/taluthus/front.svg",
  19494. extra: 903 / 833,
  19495. bottom: 0.015
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(7, "feet"),
  19503. default: true
  19504. },
  19505. {
  19506. name: "Macro",
  19507. height: math.unit(300, "feet")
  19508. },
  19509. ]
  19510. ))
  19511. characterMakers.push(() => makeCharacter(
  19512. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19513. {
  19514. front: {
  19515. height: math.unit(5 + 9 / 12, "feet"),
  19516. weight: math.unit(145, "lb"),
  19517. name: "Front",
  19518. image: {
  19519. source: "./media/characters/dawn/front.svg",
  19520. extra: 2094 / 2016,
  19521. bottom: 0.025
  19522. }
  19523. },
  19524. back: {
  19525. height: math.unit(5 + 9 / 12, "feet"),
  19526. weight: math.unit(160, "lb"),
  19527. name: "Back",
  19528. image: {
  19529. source: "./media/characters/dawn/back.svg",
  19530. extra: 2112 / 2080,
  19531. bottom: 0.005
  19532. }
  19533. },
  19534. },
  19535. [
  19536. {
  19537. name: "Normal",
  19538. height: math.unit(6 + 7 / 12, "feet"),
  19539. default: true
  19540. },
  19541. ]
  19542. ))
  19543. characterMakers.push(() => makeCharacter(
  19544. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19545. {
  19546. anthro: {
  19547. height: math.unit(8 + 3 / 12, "feet"),
  19548. weight: math.unit(450, "lb"),
  19549. name: "Anthro",
  19550. image: {
  19551. source: "./media/characters/arador/anthro.svg",
  19552. extra: 1835 / 1718,
  19553. bottom: 0.025
  19554. }
  19555. },
  19556. feral: {
  19557. height: math.unit(4, "feet"),
  19558. weight: math.unit(200, "lb"),
  19559. name: "Feral",
  19560. image: {
  19561. source: "./media/characters/arador/feral.svg",
  19562. extra: 1683 / 1514,
  19563. bottom: 0.07
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(8 + 3 / 12, "feet")
  19571. },
  19572. {
  19573. name: "Macro",
  19574. height: math.unit(82.5, "feet"),
  19575. default: true
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19581. {
  19582. front: {
  19583. height: math.unit(5 + 10 / 12, "feet"),
  19584. weight: math.unit(125, "lb"),
  19585. name: "Front",
  19586. image: {
  19587. source: "./media/characters/dharsi/front.svg",
  19588. extra: 716 / 630,
  19589. bottom: 0.035
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Nano",
  19596. height: math.unit(100, "nm")
  19597. },
  19598. {
  19599. name: "Micro",
  19600. height: math.unit(2, "inches")
  19601. },
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(5 + 10 / 12, "feet"),
  19605. default: true
  19606. },
  19607. {
  19608. name: "Macro",
  19609. height: math.unit(1000, "feet")
  19610. },
  19611. {
  19612. name: "Megamacro",
  19613. height: math.unit(10, "miles")
  19614. },
  19615. {
  19616. name: "Gigamacro",
  19617. height: math.unit(3000, "miles")
  19618. },
  19619. {
  19620. name: "Teramacro",
  19621. height: math.unit(500000, "miles")
  19622. },
  19623. {
  19624. name: "Teramacro+",
  19625. height: math.unit(30, "galaxies")
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19631. {
  19632. front: {
  19633. height: math.unit(6, "feet"),
  19634. weight: math.unit(150, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/deathy/front.svg",
  19638. extra: 1552 / 1463,
  19639. bottom: 0.025
  19640. }
  19641. },
  19642. side: {
  19643. height: math.unit(6, "feet"),
  19644. weight: math.unit(150, "lb"),
  19645. name: "Side",
  19646. image: {
  19647. source: "./media/characters/deathy/side.svg",
  19648. extra: 1604 / 1455,
  19649. bottom: 0.025
  19650. }
  19651. },
  19652. back: {
  19653. height: math.unit(6, "feet"),
  19654. weight: math.unit(150, "lb"),
  19655. name: "Back",
  19656. image: {
  19657. source: "./media/characters/deathy/back.svg",
  19658. extra: 1580 / 1463,
  19659. bottom: 0.005
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Micro",
  19666. height: math.unit(5, "millimeters")
  19667. },
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(6 + 5 / 12, "feet"),
  19671. default: true
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19677. {
  19678. front: {
  19679. height: math.unit(16, "feet"),
  19680. weight: math.unit(4000, "lb"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/juniper/front.svg",
  19684. bottom: 0.04
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(16, "feet"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(6, "feet"),
  19701. weight: math.unit(150, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/hipster/front.svg",
  19705. extra: 1312 / 1209,
  19706. bottom: 0.025
  19707. }
  19708. },
  19709. back: {
  19710. height: math.unit(6, "feet"),
  19711. weight: math.unit(150, "lb"),
  19712. name: "Back",
  19713. image: {
  19714. source: "./media/characters/hipster/back.svg",
  19715. extra: 1281 / 1196,
  19716. bottom: 0.01
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Micro",
  19723. height: math.unit(1, "mm")
  19724. },
  19725. {
  19726. name: "Normal",
  19727. height: math.unit(4, "inches"),
  19728. default: true
  19729. },
  19730. {
  19731. name: "Macro",
  19732. height: math.unit(500, "feet")
  19733. },
  19734. {
  19735. name: "Megamacro",
  19736. height: math.unit(1000, "miles")
  19737. },
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19742. {
  19743. front: {
  19744. height: math.unit(6, "feet"),
  19745. weight: math.unit(150, "lb"),
  19746. name: "Front",
  19747. image: {
  19748. source: "./media/characters/tendirmuldr/front.svg",
  19749. extra: 1878 / 1772,
  19750. bottom: 0.015
  19751. }
  19752. },
  19753. },
  19754. [
  19755. {
  19756. name: "Megamacro",
  19757. height: math.unit(1500, "miles"),
  19758. default: true
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19764. {
  19765. front: {
  19766. height: math.unit(14, "feet"),
  19767. weight: math.unit(12000, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/mort/front.svg",
  19771. extra: 365 / 318,
  19772. bottom: 0.01
  19773. }
  19774. },
  19775. side: {
  19776. height: math.unit(14, "feet"),
  19777. weight: math.unit(12000, "lb"),
  19778. name: "Side",
  19779. image: {
  19780. source: "./media/characters/mort/side.svg",
  19781. extra: 365 / 318,
  19782. bottom: 0.052
  19783. },
  19784. default: true
  19785. },
  19786. back: {
  19787. height: math.unit(14, "feet"),
  19788. weight: math.unit(12000, "lb"),
  19789. name: "Back",
  19790. image: {
  19791. source: "./media/characters/mort/back.svg",
  19792. extra: 371 / 332,
  19793. bottom: 0.18
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(14, "feet"),
  19801. default: true
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19807. {
  19808. front: {
  19809. height: math.unit(8, "feet"),
  19810. weight: math.unit(1, "ton"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/lycoa/front.svg",
  19814. extra: 1875 / 1789,
  19815. bottom: 0.022
  19816. }
  19817. },
  19818. back: {
  19819. height: math.unit(8, "feet"),
  19820. weight: math.unit(1, "ton"),
  19821. name: "Back",
  19822. image: {
  19823. source: "./media/characters/lycoa/back.svg",
  19824. extra: 1835 / 1781,
  19825. bottom: 0.03
  19826. }
  19827. },
  19828. head: {
  19829. height: math.unit(2.1, "feet"),
  19830. name: "Head",
  19831. image: {
  19832. source: "./media/characters/lycoa/head.svg"
  19833. }
  19834. },
  19835. tailmaw: {
  19836. height: math.unit(1.9, "feet"),
  19837. name: "Tailmaw",
  19838. image: {
  19839. source: "./media/characters/lycoa/tailmaw.svg"
  19840. }
  19841. },
  19842. tentacles: {
  19843. height: math.unit(2.1, "feet"),
  19844. name: "Tentacles",
  19845. image: {
  19846. source: "./media/characters/lycoa/tentacles.svg"
  19847. }
  19848. },
  19849. dick: {
  19850. height: math.unit(1.73, "feet"),
  19851. name: "Dick",
  19852. image: {
  19853. source: "./media/characters/lycoa/dick.svg"
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(8, "feet"),
  19861. default: true
  19862. },
  19863. {
  19864. name: "Macro",
  19865. height: math.unit(30, "feet")
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19871. {
  19872. front: {
  19873. height: math.unit(4 + 2 / 12, "feet"),
  19874. weight: math.unit(70, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/naldara/front.svg",
  19878. extra: 841 / 720,
  19879. bottom: 0.04
  19880. }
  19881. },
  19882. naga: {
  19883. height: math.unit(23, "feet"),
  19884. weight: math.unit(15000, "kg"),
  19885. name: "Naga",
  19886. image: {
  19887. source: "./media/characters/naldara/naga.svg",
  19888. extra: 3290 / 2959,
  19889. bottom: 124 / 3432
  19890. }
  19891. },
  19892. },
  19893. [
  19894. {
  19895. name: "Normal",
  19896. height: math.unit(4 + 2 / 12, "feet"),
  19897. default: true
  19898. },
  19899. ]
  19900. ))
  19901. characterMakers.push(() => makeCharacter(
  19902. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19903. {
  19904. front: {
  19905. height: math.unit(13 + 7 / 12, "feet"),
  19906. weight: math.unit(1500, "lb"),
  19907. name: "Front",
  19908. image: {
  19909. source: "./media/characters/briar/front.svg",
  19910. extra: 626 / 596,
  19911. bottom: 0.08
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(13 + 7 / 12, "feet"),
  19919. default: true
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19925. {
  19926. side: {
  19927. height: math.unit(10, "feet"),
  19928. weight: math.unit(500, "lb"),
  19929. name: "Side",
  19930. image: {
  19931. source: "./media/characters/vanguard/side.svg",
  19932. extra: 502 / 425,
  19933. bottom: 0.087
  19934. }
  19935. },
  19936. },
  19937. [
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(10, "feet"),
  19941. default: true
  19942. },
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19947. {
  19948. front: {
  19949. height: math.unit(7.5, "feet"),
  19950. weight: math.unit(2, "lb"),
  19951. name: "Front",
  19952. image: {
  19953. source: "./media/characters/artemis/front.svg",
  19954. extra: 1192 / 1075,
  19955. bottom: 0.07
  19956. }
  19957. },
  19958. frontNsfw: {
  19959. height: math.unit(7.5, "feet"),
  19960. weight: math.unit(2, "lb"),
  19961. name: "Front (NSFW)",
  19962. image: {
  19963. source: "./media/characters/artemis/front-nsfw.svg",
  19964. extra: 1192 / 1075,
  19965. bottom: 0.07
  19966. }
  19967. },
  19968. frontNsfwer: {
  19969. height: math.unit(7.5, "feet"),
  19970. weight: math.unit(2, "lb"),
  19971. name: "Front (NSFW-er)",
  19972. image: {
  19973. source: "./media/characters/artemis/front-nsfwer.svg",
  19974. extra: 1192 / 1075,
  19975. bottom: 0.07
  19976. }
  19977. },
  19978. side: {
  19979. height: math.unit(7.5, "feet"),
  19980. weight: math.unit(2, "lb"),
  19981. name: "Side",
  19982. image: {
  19983. source: "./media/characters/artemis/side.svg",
  19984. extra: 1192 / 1075,
  19985. bottom: 0.07
  19986. }
  19987. },
  19988. sideNsfw: {
  19989. height: math.unit(7.5, "feet"),
  19990. weight: math.unit(2, "lb"),
  19991. name: "Side (NSFW)",
  19992. image: {
  19993. source: "./media/characters/artemis/side-nsfw.svg",
  19994. extra: 1192 / 1075,
  19995. bottom: 0.07
  19996. }
  19997. },
  19998. sideNsfwer: {
  19999. height: math.unit(7.5, "feet"),
  20000. weight: math.unit(2, "lb"),
  20001. name: "Side (NSFW-er)",
  20002. image: {
  20003. source: "./media/characters/artemis/side-nsfwer.svg",
  20004. extra: 1192 / 1075,
  20005. bottom: 0.07
  20006. }
  20007. },
  20008. maw: {
  20009. height: math.unit(1.1, "feet"),
  20010. name: "Maw",
  20011. image: {
  20012. source: "./media/characters/artemis/maw.svg"
  20013. }
  20014. },
  20015. stomach: {
  20016. height: math.unit(0.95, "feet"),
  20017. name: "Stomach",
  20018. image: {
  20019. source: "./media/characters/artemis/stomach.svg"
  20020. }
  20021. },
  20022. dickCanine: {
  20023. height: math.unit(1, "feet"),
  20024. name: "Dick (Canine)",
  20025. image: {
  20026. source: "./media/characters/artemis/dick-canine.svg"
  20027. }
  20028. },
  20029. dickEquine: {
  20030. height: math.unit(0.85, "feet"),
  20031. name: "Dick (Equine)",
  20032. image: {
  20033. source: "./media/characters/artemis/dick-equine.svg"
  20034. }
  20035. },
  20036. dickExotic: {
  20037. height: math.unit(0.85, "feet"),
  20038. name: "Dick (Exotic)",
  20039. image: {
  20040. source: "./media/characters/artemis/dick-exotic.svg"
  20041. }
  20042. },
  20043. },
  20044. [
  20045. {
  20046. name: "Normal",
  20047. height: math.unit(7.5, "feet"),
  20048. default: true
  20049. },
  20050. {
  20051. name: "Enlarged",
  20052. height: math.unit(12, "feet")
  20053. },
  20054. ]
  20055. ))
  20056. characterMakers.push(() => makeCharacter(
  20057. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20058. {
  20059. front: {
  20060. height: math.unit(5 + 3 / 12, "feet"),
  20061. weight: math.unit(160, "lb"),
  20062. name: "Front",
  20063. image: {
  20064. source: "./media/characters/kira/front.svg",
  20065. extra: 906 / 786,
  20066. bottom: 0.01
  20067. }
  20068. },
  20069. back: {
  20070. height: math.unit(5 + 3 / 12, "feet"),
  20071. weight: math.unit(160, "lb"),
  20072. name: "Back",
  20073. image: {
  20074. source: "./media/characters/kira/back.svg",
  20075. extra: 882 / 757,
  20076. bottom: 0.005
  20077. }
  20078. },
  20079. frontDressed: {
  20080. height: math.unit(5 + 3 / 12, "feet"),
  20081. weight: math.unit(160, "lb"),
  20082. name: "Front (Dressed)",
  20083. image: {
  20084. source: "./media/characters/kira/front-dressed.svg",
  20085. extra: 906 / 786,
  20086. bottom: 0.01
  20087. }
  20088. },
  20089. beans: {
  20090. height: math.unit(0.92, "feet"),
  20091. name: "Beans",
  20092. image: {
  20093. source: "./media/characters/kira/beans.svg"
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(5 + 3 / 12, "feet"),
  20101. default: true
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20107. {
  20108. front: {
  20109. height: math.unit(5 + 4 / 12, "feet"),
  20110. weight: math.unit(145, "lb"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/scramble/front.svg",
  20114. extra: 763 / 727,
  20115. bottom: 0.05
  20116. }
  20117. },
  20118. back: {
  20119. height: math.unit(5 + 4 / 12, "feet"),
  20120. weight: math.unit(145, "lb"),
  20121. name: "Back",
  20122. image: {
  20123. source: "./media/characters/scramble/back.svg",
  20124. extra: 826 / 737,
  20125. bottom: 0.002
  20126. }
  20127. },
  20128. },
  20129. [
  20130. {
  20131. name: "Normal",
  20132. height: math.unit(5 + 4 / 12, "feet"),
  20133. default: true
  20134. },
  20135. ]
  20136. ))
  20137. characterMakers.push(() => makeCharacter(
  20138. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20139. {
  20140. side: {
  20141. height: math.unit(6 + 2 / 12, "feet"),
  20142. weight: math.unit(190, "lb"),
  20143. name: "Side",
  20144. image: {
  20145. source: "./media/characters/biscuit/side.svg",
  20146. extra: 858 / 791,
  20147. bottom: 0.044
  20148. }
  20149. },
  20150. },
  20151. [
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(6 + 2 / 12, "feet"),
  20155. default: true
  20156. },
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20161. {
  20162. front: {
  20163. height: math.unit(5 + 2 / 12, "feet"),
  20164. weight: math.unit(120, "lb"),
  20165. name: "Front",
  20166. image: {
  20167. source: "./media/characters/poffin/front.svg",
  20168. extra: 786 / 680,
  20169. bottom: 0.005
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(5 + 2 / 12, "feet"),
  20177. default: true
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20183. {
  20184. front: {
  20185. height: math.unit(6 + 3 / 12, "feet"),
  20186. weight: math.unit(519, "lb"),
  20187. name: "Front",
  20188. image: {
  20189. source: "./media/characters/dhari/front.svg",
  20190. extra: 1048 / 946,
  20191. bottom: 0.015
  20192. }
  20193. },
  20194. back: {
  20195. height: math.unit(6 + 3 / 12, "feet"),
  20196. weight: math.unit(519, "lb"),
  20197. name: "Back",
  20198. image: {
  20199. source: "./media/characters/dhari/back.svg",
  20200. extra: 1048 / 931,
  20201. bottom: 0.005
  20202. }
  20203. },
  20204. frontDressed: {
  20205. height: math.unit(6 + 3 / 12, "feet"),
  20206. weight: math.unit(519, "lb"),
  20207. name: "Front (Dressed)",
  20208. image: {
  20209. source: "./media/characters/dhari/front-dressed.svg",
  20210. extra: 1713 / 1546,
  20211. bottom: 0.02
  20212. }
  20213. },
  20214. backDressed: {
  20215. height: math.unit(6 + 3 / 12, "feet"),
  20216. weight: math.unit(519, "lb"),
  20217. name: "Back (Dressed)",
  20218. image: {
  20219. source: "./media/characters/dhari/back-dressed.svg",
  20220. extra: 1699 / 1537,
  20221. bottom: 0.01
  20222. }
  20223. },
  20224. maw: {
  20225. height: math.unit(0.95, "feet"),
  20226. name: "Maw",
  20227. image: {
  20228. source: "./media/characters/dhari/maw.svg"
  20229. }
  20230. },
  20231. wereFront: {
  20232. height: math.unit(12 + 8 / 12, "feet"),
  20233. weight: math.unit(4000, "lb"),
  20234. name: "Front (Were)",
  20235. image: {
  20236. source: "./media/characters/dhari/were-front.svg",
  20237. extra: 1065 / 969,
  20238. bottom: 0.015
  20239. }
  20240. },
  20241. wereBack: {
  20242. height: math.unit(12 + 8 / 12, "feet"),
  20243. weight: math.unit(4000, "lb"),
  20244. name: "Back (Were)",
  20245. image: {
  20246. source: "./media/characters/dhari/were-back.svg",
  20247. extra: 1065 / 969,
  20248. bottom: 0.012
  20249. }
  20250. },
  20251. wereMaw: {
  20252. height: math.unit(0.625, "meters"),
  20253. name: "Maw (Were)",
  20254. image: {
  20255. source: "./media/characters/dhari/were-maw.svg"
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(6 + 3 / 12, "feet"),
  20263. default: true
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20269. {
  20270. anthro: {
  20271. height: math.unit(5 + 7 / 12, "feet"),
  20272. weight: math.unit(175, "lb"),
  20273. name: "Anthro",
  20274. image: {
  20275. source: "./media/characters/rena-dyne/anthro.svg",
  20276. extra: 1849 / 1785,
  20277. bottom: 0.005
  20278. }
  20279. },
  20280. taur: {
  20281. height: math.unit(15 + 6 / 12, "feet"),
  20282. weight: math.unit(8000, "lb"),
  20283. name: "Taur",
  20284. image: {
  20285. source: "./media/characters/rena-dyne/taur.svg",
  20286. extra: 2315 / 2234,
  20287. bottom: 0.033
  20288. }
  20289. },
  20290. },
  20291. [
  20292. {
  20293. name: "Normal",
  20294. height: math.unit(5 + 7 / 12, "feet"),
  20295. default: true
  20296. },
  20297. ]
  20298. ))
  20299. characterMakers.push(() => makeCharacter(
  20300. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20301. {
  20302. front: {
  20303. height: math.unit(8, "feet"),
  20304. weight: math.unit(600, "lb"),
  20305. name: "Front",
  20306. image: {
  20307. source: "./media/characters/weremeep/front.svg",
  20308. extra: 967 / 862,
  20309. bottom: 0.01
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(8, "feet"),
  20317. default: true
  20318. },
  20319. {
  20320. name: "Lorg",
  20321. height: math.unit(12, "feet")
  20322. },
  20323. {
  20324. name: "Oh Lawd She Comin'",
  20325. height: math.unit(20, "feet")
  20326. },
  20327. ]
  20328. ))
  20329. characterMakers.push(() => makeCharacter(
  20330. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20331. {
  20332. front: {
  20333. height: math.unit(4, "feet"),
  20334. weight: math.unit(90, "lb"),
  20335. name: "Front",
  20336. image: {
  20337. source: "./media/characters/reza/front.svg",
  20338. extra: 1183 / 1111,
  20339. bottom: 0.017
  20340. }
  20341. },
  20342. back: {
  20343. height: math.unit(4, "feet"),
  20344. weight: math.unit(90, "lb"),
  20345. name: "Back",
  20346. image: {
  20347. source: "./media/characters/reza/back.svg",
  20348. extra: 1183 / 1111,
  20349. bottom: 0.01
  20350. }
  20351. },
  20352. drake: {
  20353. height: math.unit(30, "feet"),
  20354. weight: math.unit(246960, "lb"),
  20355. name: "Drake",
  20356. image: {
  20357. source: "./media/characters/reza/drake.svg",
  20358. extra: 2350 / 2024,
  20359. bottom: 60.7 / 2403
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(4, "feet"),
  20367. default: true
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20373. {
  20374. side: {
  20375. height: math.unit(15, "feet"),
  20376. weight: math.unit(14, "tons"),
  20377. name: "Side",
  20378. image: {
  20379. source: "./media/characters/athea/side.svg",
  20380. extra: 960 / 540,
  20381. bottom: 0.003
  20382. }
  20383. },
  20384. sitting: {
  20385. height: math.unit(6 * 2.85, "feet"),
  20386. weight: math.unit(14, "tons"),
  20387. name: "Sitting",
  20388. image: {
  20389. source: "./media/characters/athea/sitting.svg",
  20390. extra: 621 / 581,
  20391. bottom: 0.075
  20392. }
  20393. },
  20394. maw: {
  20395. height: math.unit(7.59498031496063, "feet"),
  20396. name: "Maw",
  20397. image: {
  20398. source: "./media/characters/athea/maw.svg"
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Lap Cat",
  20405. height: math.unit(2.5, "feet")
  20406. },
  20407. {
  20408. name: "Minimacro",
  20409. height: math.unit(15, "feet"),
  20410. default: true
  20411. },
  20412. {
  20413. name: "Macro",
  20414. height: math.unit(120, "feet")
  20415. },
  20416. {
  20417. name: "Macro+",
  20418. height: math.unit(640, "feet")
  20419. },
  20420. {
  20421. name: "Colossus",
  20422. height: math.unit(2.2, "miles")
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20428. {
  20429. front: {
  20430. height: math.unit(8 + 8 / 12, "feet"),
  20431. weight: math.unit(130, "kg"),
  20432. name: "Front",
  20433. image: {
  20434. source: "./media/characters/seroko/front.svg",
  20435. extra: 1385 / 1280,
  20436. bottom: 0.025
  20437. }
  20438. },
  20439. back: {
  20440. height: math.unit(8 + 8 / 12, "feet"),
  20441. weight: math.unit(130, "kg"),
  20442. name: "Back",
  20443. image: {
  20444. source: "./media/characters/seroko/back.svg",
  20445. extra: 1369 / 1238,
  20446. bottom: 0.018
  20447. }
  20448. },
  20449. frontDressed: {
  20450. height: math.unit(8 + 8 / 12, "feet"),
  20451. weight: math.unit(130, "kg"),
  20452. name: "Front (Dressed)",
  20453. image: {
  20454. source: "./media/characters/seroko/front-dressed.svg",
  20455. extra: 1366 / 1275,
  20456. bottom: 0.03
  20457. }
  20458. },
  20459. },
  20460. [
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(8 + 8 / 12, "feet"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20470. {
  20471. front: {
  20472. height: math.unit(5.5, "feet"),
  20473. weight: math.unit(160, "lb"),
  20474. name: "Front",
  20475. image: {
  20476. source: "./media/characters/quatzi/front.svg",
  20477. extra: 2346 / 2242,
  20478. bottom: 0.015
  20479. }
  20480. },
  20481. },
  20482. [
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(5.5, "feet"),
  20486. default: true
  20487. },
  20488. {
  20489. name: "Big",
  20490. height: math.unit(7.7, "feet")
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(5 + 11 / 12, "feet"),
  20499. weight: math.unit(180, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/sen/front.svg",
  20503. extra: 1321 / 1254,
  20504. bottom: 0.015
  20505. }
  20506. },
  20507. side: {
  20508. height: math.unit(5 + 11 / 12, "feet"),
  20509. weight: math.unit(180, "lb"),
  20510. name: "Side",
  20511. image: {
  20512. source: "./media/characters/sen/side.svg",
  20513. extra: 1321 / 1254,
  20514. bottom: 0.007
  20515. }
  20516. },
  20517. back: {
  20518. height: math.unit(5 + 11 / 12, "feet"),
  20519. weight: math.unit(180, "lb"),
  20520. name: "Back",
  20521. image: {
  20522. source: "./media/characters/sen/back.svg",
  20523. extra: 1321 / 1254
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Normal",
  20530. height: math.unit(5 + 11 / 12, "feet"),
  20531. default: true
  20532. },
  20533. ]
  20534. ))
  20535. characterMakers.push(() => makeCharacter(
  20536. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20537. {
  20538. front: {
  20539. height: math.unit(166.6, "cm"),
  20540. weight: math.unit(66.6, "kg"),
  20541. name: "Front",
  20542. image: {
  20543. source: "./media/characters/fruity/front.svg",
  20544. extra: 1510 / 1386,
  20545. bottom: 0.04
  20546. }
  20547. },
  20548. back: {
  20549. height: math.unit(166.6, "cm"),
  20550. weight: math.unit(66.6, "lb"),
  20551. name: "Back",
  20552. image: {
  20553. source: "./media/characters/fruity/back.svg",
  20554. extra: 1563 / 1435,
  20555. bottom: 0.005
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(166.6, "cm"),
  20563. default: true
  20564. },
  20565. {
  20566. name: "Demonic",
  20567. height: math.unit(166.6, "feet")
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20573. {
  20574. side: {
  20575. height: math.unit(10, "feet"),
  20576. weight: math.unit(500, "lb"),
  20577. name: "Side",
  20578. image: {
  20579. source: "./media/characters/zost/side.svg",
  20580. extra: 966 / 880,
  20581. bottom: 0.075
  20582. }
  20583. },
  20584. mawFront: {
  20585. height: math.unit(1.08, "meters"),
  20586. name: "Maw (Front)",
  20587. image: {
  20588. source: "./media/characters/zost/maw-front.svg"
  20589. }
  20590. },
  20591. mawSide: {
  20592. height: math.unit(2.66, "feet"),
  20593. name: "Maw (Side)",
  20594. image: {
  20595. source: "./media/characters/zost/maw-side.svg"
  20596. }
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Normal",
  20602. height: math.unit(10, "feet"),
  20603. default: true
  20604. },
  20605. ]
  20606. ))
  20607. characterMakers.push(() => makeCharacter(
  20608. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20609. {
  20610. front: {
  20611. height: math.unit(5 + 4 / 12, "feet"),
  20612. weight: math.unit(120, "lb"),
  20613. name: "Front",
  20614. image: {
  20615. source: "./media/characters/luci/front.svg",
  20616. extra: 1985 / 1884,
  20617. bottom: 0.04
  20618. }
  20619. },
  20620. back: {
  20621. height: math.unit(5 + 4 / 12, "feet"),
  20622. weight: math.unit(120, "lb"),
  20623. name: "Back",
  20624. image: {
  20625. source: "./media/characters/luci/back.svg",
  20626. extra: 1892 / 1791,
  20627. bottom: 0.002
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(5 + 4 / 12, "feet"),
  20635. default: true
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20641. {
  20642. front: {
  20643. height: math.unit(1500, "feet"),
  20644. weight: math.unit(3.8e6, "tons"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/2th/front.svg",
  20648. extra: 3489 / 3350,
  20649. bottom: 0.1
  20650. }
  20651. },
  20652. foot: {
  20653. height: math.unit(461, "feet"),
  20654. name: "Foot",
  20655. image: {
  20656. source: "./media/characters/2th/foot.svg"
  20657. }
  20658. },
  20659. },
  20660. [
  20661. {
  20662. name: "\"Micro\"",
  20663. height: math.unit(15 + 7 / 12, "feet")
  20664. },
  20665. {
  20666. name: "Normal",
  20667. height: math.unit(1500, "feet"),
  20668. default: true
  20669. },
  20670. {
  20671. name: "Macro",
  20672. height: math.unit(5000, "feet")
  20673. },
  20674. {
  20675. name: "Megamacro",
  20676. height: math.unit(15, "miles")
  20677. },
  20678. {
  20679. name: "Gigamacro",
  20680. height: math.unit(4000, "miles")
  20681. },
  20682. {
  20683. name: "Galactic",
  20684. height: math.unit(50, "AU")
  20685. },
  20686. ]
  20687. ))
  20688. characterMakers.push(() => makeCharacter(
  20689. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20690. {
  20691. front: {
  20692. height: math.unit(5 + 6 / 12, "feet"),
  20693. weight: math.unit(220, "lb"),
  20694. name: "Front",
  20695. image: {
  20696. source: "./media/characters/amethyst/front.svg",
  20697. extra: 2078 / 2040,
  20698. bottom: 0.045
  20699. }
  20700. },
  20701. back: {
  20702. height: math.unit(5 + 6 / 12, "feet"),
  20703. weight: math.unit(220, "lb"),
  20704. name: "Back",
  20705. image: {
  20706. source: "./media/characters/amethyst/back.svg",
  20707. extra: 2021 / 1989,
  20708. bottom: 0.02
  20709. }
  20710. },
  20711. },
  20712. [
  20713. {
  20714. name: "Normal",
  20715. height: math.unit(5 + 6 / 12, "feet"),
  20716. default: true
  20717. },
  20718. ]
  20719. ))
  20720. characterMakers.push(() => makeCharacter(
  20721. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20722. {
  20723. front: {
  20724. height: math.unit(4 + 11 / 12, "feet"),
  20725. weight: math.unit(120, "lb"),
  20726. name: "Front",
  20727. image: {
  20728. source: "./media/characters/yumi-akiyama/front.svg",
  20729. extra: 1327 / 1235,
  20730. bottom: 0.02
  20731. }
  20732. },
  20733. back: {
  20734. height: math.unit(4 + 11 / 12, "feet"),
  20735. weight: math.unit(120, "lb"),
  20736. name: "Back",
  20737. image: {
  20738. source: "./media/characters/yumi-akiyama/back.svg",
  20739. extra: 1287 / 1245,
  20740. bottom: 0.002
  20741. }
  20742. },
  20743. },
  20744. [
  20745. {
  20746. name: "Galactic",
  20747. height: math.unit(50, "galaxies"),
  20748. default: true
  20749. },
  20750. {
  20751. name: "Universal",
  20752. height: math.unit(100, "universes")
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(8, "feet"),
  20761. weight: math.unit(500, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/rifter-yrmori/front.svg",
  20765. extra: 1180 / 1125,
  20766. bottom: 0.02
  20767. }
  20768. },
  20769. back: {
  20770. height: math.unit(8, "feet"),
  20771. weight: math.unit(500, "lb"),
  20772. name: "Back",
  20773. image: {
  20774. source: "./media/characters/rifter-yrmori/back.svg",
  20775. extra: 1190 / 1145,
  20776. bottom: 0.001
  20777. }
  20778. },
  20779. wings: {
  20780. height: math.unit(7.75, "feet"),
  20781. weight: math.unit(500, "lb"),
  20782. name: "Wings",
  20783. image: {
  20784. source: "./media/characters/rifter-yrmori/wings.svg",
  20785. extra: 1357 / 1285
  20786. }
  20787. },
  20788. maw: {
  20789. height: math.unit(0.8, "feet"),
  20790. name: "Maw",
  20791. image: {
  20792. source: "./media/characters/rifter-yrmori/maw.svg"
  20793. }
  20794. },
  20795. mawfront: {
  20796. height: math.unit(1.45, "feet"),
  20797. name: "Maw (Front)",
  20798. image: {
  20799. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20800. }
  20801. },
  20802. },
  20803. [
  20804. {
  20805. name: "Normal",
  20806. height: math.unit(8, "feet"),
  20807. default: true
  20808. },
  20809. {
  20810. name: "Macro",
  20811. height: math.unit(42, "meters")
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20817. {
  20818. were: {
  20819. height: math.unit(25 + 6 / 12, "feet"),
  20820. weight: math.unit(10000, "lb"),
  20821. name: "Were",
  20822. image: {
  20823. source: "./media/characters/tahajin/were.svg",
  20824. extra: 801 / 770,
  20825. bottom: 0.042
  20826. }
  20827. },
  20828. aquatic: {
  20829. height: math.unit(6 + 4 / 12, "feet"),
  20830. weight: math.unit(160, "lb"),
  20831. name: "Aquatic",
  20832. image: {
  20833. source: "./media/characters/tahajin/aquatic.svg",
  20834. extra: 572 / 542,
  20835. bottom: 0.04
  20836. }
  20837. },
  20838. chow: {
  20839. height: math.unit(8 + 11 / 12, "feet"),
  20840. weight: math.unit(450, "lb"),
  20841. name: "Chow",
  20842. image: {
  20843. source: "./media/characters/tahajin/chow.svg",
  20844. extra: 660 / 640,
  20845. bottom: 0.015
  20846. }
  20847. },
  20848. demiNaga: {
  20849. height: math.unit(6 + 8 / 12, "feet"),
  20850. weight: math.unit(300, "lb"),
  20851. name: "Demi Naga",
  20852. image: {
  20853. source: "./media/characters/tahajin/demi-naga.svg",
  20854. extra: 643 / 615,
  20855. bottom: 0.1
  20856. }
  20857. },
  20858. data: {
  20859. height: math.unit(5, "inches"),
  20860. weight: math.unit(0.1, "lb"),
  20861. name: "Data",
  20862. image: {
  20863. source: "./media/characters/tahajin/data.svg"
  20864. }
  20865. },
  20866. fluu: {
  20867. height: math.unit(5 + 7 / 12, "feet"),
  20868. weight: math.unit(140, "lb"),
  20869. name: "Fluu",
  20870. image: {
  20871. source: "./media/characters/tahajin/fluu.svg",
  20872. extra: 628 / 592,
  20873. bottom: 0.02
  20874. }
  20875. },
  20876. starWarrior: {
  20877. height: math.unit(4 + 5 / 12, "feet"),
  20878. weight: math.unit(50, "lb"),
  20879. name: "Star Warrior",
  20880. image: {
  20881. source: "./media/characters/tahajin/star-warrior.svg"
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(25 + 6 / 12, "feet"),
  20889. default: true
  20890. },
  20891. ]
  20892. ))
  20893. characterMakers.push(() => makeCharacter(
  20894. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20895. {
  20896. front: {
  20897. height: math.unit(8, "feet"),
  20898. weight: math.unit(350, "lb"),
  20899. name: "Front",
  20900. image: {
  20901. source: "./media/characters/gabira/front.svg",
  20902. extra: 608 / 580,
  20903. bottom: 0.03
  20904. }
  20905. },
  20906. back: {
  20907. height: math.unit(8, "feet"),
  20908. weight: math.unit(350, "lb"),
  20909. name: "Back",
  20910. image: {
  20911. source: "./media/characters/gabira/back.svg",
  20912. extra: 608 / 580,
  20913. bottom: 0.03
  20914. }
  20915. },
  20916. },
  20917. [
  20918. {
  20919. name: "Normal",
  20920. height: math.unit(8, "feet"),
  20921. default: true
  20922. },
  20923. ]
  20924. ))
  20925. characterMakers.push(() => makeCharacter(
  20926. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20927. {
  20928. front: {
  20929. height: math.unit(5 + 3 / 12, "feet"),
  20930. weight: math.unit(137, "lb"),
  20931. name: "Front",
  20932. image: {
  20933. source: "./media/characters/sasha-katraine/front.svg",
  20934. bottom: 0.045
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Micro",
  20941. height: math.unit(5, "inches")
  20942. },
  20943. {
  20944. name: "Normal",
  20945. height: math.unit(5 + 3 / 12, "feet"),
  20946. default: true
  20947. },
  20948. ]
  20949. ))
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20952. {
  20953. side: {
  20954. height: math.unit(4, "inches"),
  20955. weight: math.unit(200, "grams"),
  20956. name: "Side",
  20957. image: {
  20958. source: "./media/characters/der/side.svg",
  20959. extra: 719 / 400,
  20960. bottom: 30.6 / 749.9187
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Micro",
  20967. height: math.unit(4, "inches"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20974. {
  20975. side: {
  20976. height: math.unit(30, "meters"),
  20977. weight: math.unit(700, "tonnes"),
  20978. name: "Side",
  20979. image: {
  20980. source: "./media/characters/fixerdragon/side.svg",
  20981. extra: (1293.0514 - 116.03) / 1106.86,
  20982. bottom: 116.03 / 1293.0514
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Planck",
  20989. height: math.unit(1.6e-35, "meters")
  20990. },
  20991. {
  20992. name: "Micro",
  20993. height: math.unit(0.4, "meters")
  20994. },
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(30, "meters"),
  20998. default: true
  20999. },
  21000. {
  21001. name: "Megamacro",
  21002. height: math.unit(1.2, "megameters")
  21003. },
  21004. {
  21005. name: "Teramacro",
  21006. height: math.unit(130, "terameters")
  21007. },
  21008. {
  21009. name: "Yottamacro",
  21010. height: math.unit(6200, "yottameters")
  21011. },
  21012. ]
  21013. ));
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21016. {
  21017. front: {
  21018. height: math.unit(8, "feet"),
  21019. weight: math.unit(250, "lb"),
  21020. name: "Front",
  21021. image: {
  21022. source: "./media/characters/kite/front.svg",
  21023. extra: 2796 / 2659,
  21024. bottom: 0.002
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(8, "feet"),
  21032. default: true
  21033. },
  21034. {
  21035. name: "Macro",
  21036. height: math.unit(360, "feet")
  21037. },
  21038. {
  21039. name: "Megamacro",
  21040. height: math.unit(1500, "feet")
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(5 + 10 / 12, "feet"),
  21049. weight: math.unit(150, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/poojawa-vynar/front.svg",
  21053. extra: (1506.1547 - 55) / 1356.6,
  21054. bottom: 55 / 1506.1547
  21055. }
  21056. },
  21057. frontTailless: {
  21058. height: math.unit(5 + 10 / 12, "feet"),
  21059. weight: math.unit(150, "lb"),
  21060. name: "Front (Tailless)",
  21061. image: {
  21062. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21063. extra: (1506.1547 - 55) / 1356.6,
  21064. bottom: 55 / 1506.1547
  21065. }
  21066. },
  21067. },
  21068. [
  21069. {
  21070. name: "Normal",
  21071. height: math.unit(5 + 10 / 12, "feet"),
  21072. default: true
  21073. },
  21074. ]
  21075. ))
  21076. characterMakers.push(() => makeCharacter(
  21077. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21078. {
  21079. front: {
  21080. height: math.unit(293, "meters"),
  21081. weight: math.unit(70400, "tons"),
  21082. name: "Front",
  21083. image: {
  21084. source: "./media/characters/violette/front.svg",
  21085. extra: 1227 / 1180,
  21086. bottom: 0.005
  21087. }
  21088. },
  21089. back: {
  21090. height: math.unit(293, "meters"),
  21091. weight: math.unit(70400, "tons"),
  21092. name: "Back",
  21093. image: {
  21094. source: "./media/characters/violette/back.svg",
  21095. extra: 1227 / 1180,
  21096. bottom: 0.005
  21097. }
  21098. },
  21099. },
  21100. [
  21101. {
  21102. name: "Macro",
  21103. height: math.unit(293, "meters"),
  21104. default: true
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21110. {
  21111. front: {
  21112. height: math.unit(1050, "feet"),
  21113. weight: math.unit(200000, "tons"),
  21114. name: "Front",
  21115. image: {
  21116. source: "./media/characters/alessandra/front.svg",
  21117. extra: 960 / 912,
  21118. bottom: 0.06
  21119. }
  21120. },
  21121. },
  21122. [
  21123. {
  21124. name: "Macro",
  21125. height: math.unit(1050, "feet")
  21126. },
  21127. {
  21128. name: "Macro+",
  21129. height: math.unit(900, "meters"),
  21130. default: true
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(5, "feet"),
  21139. weight: math.unit(187, "lb"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/person/front.svg",
  21143. extra: 3087 / 2945,
  21144. bottom: 91 / 3181
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Micro",
  21151. height: math.unit(3, "inches")
  21152. },
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(5, "feet"),
  21156. default: true
  21157. },
  21158. {
  21159. name: "Macro",
  21160. height: math.unit(90, "feet")
  21161. },
  21162. {
  21163. name: "Max Size",
  21164. height: math.unit(280, "feet")
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(4.5, "meters"),
  21173. weight: math.unit(3200, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/ty/front.svg",
  21177. extra: 1038 / 960,
  21178. bottom: 31.156 / 1068
  21179. }
  21180. },
  21181. back: {
  21182. height: math.unit(4.5, "meters"),
  21183. weight: math.unit(3200, "lb"),
  21184. name: "Back",
  21185. image: {
  21186. source: "./media/characters/ty/back.svg",
  21187. extra: 1044 / 966,
  21188. bottom: 7.48 / 1049
  21189. }
  21190. },
  21191. },
  21192. [
  21193. {
  21194. name: "Normal",
  21195. height: math.unit(4.5, "meters"),
  21196. default: true
  21197. },
  21198. ]
  21199. ))
  21200. characterMakers.push(() => makeCharacter(
  21201. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21202. {
  21203. front: {
  21204. height: math.unit(5 + 4 / 12, "feet"),
  21205. weight: math.unit(115, "lb"),
  21206. name: "Front",
  21207. image: {
  21208. source: "./media/characters/rocky/front.svg",
  21209. extra: 1012 / 975,
  21210. bottom: 54 / 1066
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Normal",
  21217. height: math.unit(5 + 4 / 12, "feet"),
  21218. default: true
  21219. },
  21220. ]
  21221. ))
  21222. characterMakers.push(() => makeCharacter(
  21223. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21224. {
  21225. upright: {
  21226. height: math.unit(6, "meters"),
  21227. weight: math.unit(4000, "kg"),
  21228. name: "Upright",
  21229. image: {
  21230. source: "./media/characters/ruin/upright.svg",
  21231. extra: 668 / 661,
  21232. bottom: 42 / 799.8396
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(6, "meters"),
  21240. default: true
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21246. {
  21247. front: {
  21248. height: math.unit(5, "feet"),
  21249. weight: math.unit(106, "lb"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/robin/front.svg",
  21253. extra: 862 / 799,
  21254. bottom: 42.4 / 914.8856
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(5, "feet"),
  21262. default: true
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21268. {
  21269. side: {
  21270. height: math.unit(3, "feet"),
  21271. weight: math.unit(225, "lb"),
  21272. name: "Side",
  21273. image: {
  21274. source: "./media/characters/saian/side.svg",
  21275. extra: 566 / 356,
  21276. bottom: 79.7 / 643
  21277. }
  21278. },
  21279. maw: {
  21280. height: math.unit(2.85, "feet"),
  21281. name: "Maw",
  21282. image: {
  21283. source: "./media/characters/saian/maw.svg"
  21284. }
  21285. },
  21286. },
  21287. [
  21288. {
  21289. name: "Normal",
  21290. height: math.unit(3, "feet"),
  21291. default: true
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21297. {
  21298. side: {
  21299. height: math.unit(8, "feet"),
  21300. weight: math.unit(300, "lb"),
  21301. name: "Side",
  21302. image: {
  21303. source: "./media/characters/equus-silvermane/side.svg",
  21304. extra: 2176 / 2050,
  21305. bottom: 65.7 / 2245
  21306. }
  21307. },
  21308. front: {
  21309. height: math.unit(8, "feet"),
  21310. weight: math.unit(300, "lb"),
  21311. name: "Front",
  21312. image: {
  21313. source: "./media/characters/equus-silvermane/front.svg",
  21314. extra: 4633 / 4400,
  21315. bottom: 71.3 / 4706.915
  21316. }
  21317. },
  21318. sideStepping: {
  21319. height: math.unit(8, "feet"),
  21320. weight: math.unit(300, "lb"),
  21321. name: "Side (Stepping)",
  21322. image: {
  21323. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21324. extra: 1968 / 1860,
  21325. bottom: 16.4 / 1989
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(8, "feet")
  21333. },
  21334. {
  21335. name: "Minimacro",
  21336. height: math.unit(75, "feet"),
  21337. default: true
  21338. },
  21339. {
  21340. name: "Macro",
  21341. height: math.unit(150, "feet")
  21342. },
  21343. {
  21344. name: "Macro+",
  21345. height: math.unit(1000, "feet")
  21346. },
  21347. {
  21348. name: "Megamacro",
  21349. height: math.unit(1, "mile")
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21355. {
  21356. side: {
  21357. height: math.unit(20, "feet"),
  21358. weight: math.unit(30000, "kg"),
  21359. name: "Side",
  21360. image: {
  21361. source: "./media/characters/windar/side.svg",
  21362. extra: 1491 / 1248,
  21363. bottom: 82.56 / 1568
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(20, "feet"),
  21371. default: true
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21377. {
  21378. side: {
  21379. height: math.unit(15.66, "feet"),
  21380. weight: math.unit(150, "lb"),
  21381. name: "Side",
  21382. image: {
  21383. source: "./media/characters/melody/side.svg",
  21384. extra: 1097 / 944,
  21385. bottom: 11.8 / 1109
  21386. }
  21387. },
  21388. sideOutfit: {
  21389. height: math.unit(15.66, "feet"),
  21390. weight: math.unit(150, "lb"),
  21391. name: "Side (Outfit)",
  21392. image: {
  21393. source: "./media/characters/melody/side-outfit.svg",
  21394. extra: 1097 / 944,
  21395. bottom: 11.8 / 1109
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(15.66, "feet"),
  21403. default: true
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(8, "feet"),
  21412. weight: math.unit(325, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/windera/front.svg",
  21416. extra: 3180 / 2845,
  21417. bottom: 178 / 3365
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(8, "feet"),
  21425. default: true
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21431. {
  21432. front: {
  21433. height: math.unit(28.75, "feet"),
  21434. weight: math.unit(2000, "kg"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/sonear/front.svg",
  21438. extra: 1041.1 / 964.9,
  21439. bottom: 53.7 / 1096.6
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(28.75, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21453. {
  21454. side: {
  21455. height: math.unit(25.5, "feet"),
  21456. weight: math.unit(23000, "kg"),
  21457. name: "Side",
  21458. image: {
  21459. source: "./media/characters/kanara/side.svg"
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(25.5, "feet"),
  21467. default: true
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21473. {
  21474. side: {
  21475. height: math.unit(10, "feet"),
  21476. weight: math.unit(1000, "kg"),
  21477. name: "Side",
  21478. image: {
  21479. source: "./media/characters/ereus/side.svg",
  21480. extra: 1157 / 959,
  21481. bottom: 153 / 1312.5
  21482. }
  21483. },
  21484. },
  21485. [
  21486. {
  21487. name: "Normal",
  21488. height: math.unit(10, "feet"),
  21489. default: true
  21490. },
  21491. ]
  21492. ))
  21493. characterMakers.push(() => makeCharacter(
  21494. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21495. {
  21496. side: {
  21497. height: math.unit(4.5, "feet"),
  21498. weight: math.unit(500, "lb"),
  21499. name: "Side",
  21500. image: {
  21501. source: "./media/characters/e-ter/side.svg",
  21502. extra: 1550 / 1248,
  21503. bottom: 146 / 1694
  21504. }
  21505. },
  21506. },
  21507. [
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(4.5, "feet"),
  21511. default: true
  21512. },
  21513. ]
  21514. ))
  21515. characterMakers.push(() => makeCharacter(
  21516. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21517. {
  21518. side: {
  21519. height: math.unit(9.7, "feet"),
  21520. weight: math.unit(4000, "kg"),
  21521. name: "Side",
  21522. image: {
  21523. source: "./media/characters/yamie/side.svg"
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(9.7, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(50, "feet"),
  21540. weight: math.unit(50000, "kg"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/anders/front.svg",
  21544. extra: 570 / 539,
  21545. bottom: 14.7 / 586.7
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Large",
  21552. height: math.unit(50, "feet")
  21553. },
  21554. {
  21555. name: "Macro",
  21556. height: math.unit(2000, "feet"),
  21557. default: true
  21558. },
  21559. {
  21560. name: "Megamacro",
  21561. height: math.unit(12, "miles")
  21562. },
  21563. ]
  21564. ))
  21565. characterMakers.push(() => makeCharacter(
  21566. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21567. {
  21568. front: {
  21569. height: math.unit(7 + 2 / 12, "feet"),
  21570. weight: math.unit(300, "lb"),
  21571. name: "Front",
  21572. image: {
  21573. source: "./media/characters/reban/front.svg",
  21574. extra: 516 / 487,
  21575. bottom: 42.82 / 558.356
  21576. }
  21577. },
  21578. dick: {
  21579. height: math.unit(7 / 5, "feet"),
  21580. name: "Dick",
  21581. image: {
  21582. source: "./media/characters/reban/dick.svg"
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Natural Height",
  21589. height: math.unit(7 + 2 / 12, "feet")
  21590. },
  21591. {
  21592. name: "Macro",
  21593. height: math.unit(500, "feet"),
  21594. default: true
  21595. },
  21596. {
  21597. name: "Canon Height",
  21598. height: math.unit(50, "AU")
  21599. },
  21600. ]
  21601. ))
  21602. characterMakers.push(() => makeCharacter(
  21603. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21604. {
  21605. front: {
  21606. height: math.unit(6, "feet"),
  21607. weight: math.unit(150, "lb"),
  21608. name: "Front",
  21609. image: {
  21610. source: "./media/characters/terrance-keayes/front.svg",
  21611. extra: 1.005,
  21612. bottom: 151 / 1615
  21613. }
  21614. },
  21615. side: {
  21616. height: math.unit(6, "feet"),
  21617. weight: math.unit(150, "lb"),
  21618. name: "Side",
  21619. image: {
  21620. source: "./media/characters/terrance-keayes/side.svg",
  21621. extra: 1.005,
  21622. bottom: 129.4 / 1544
  21623. }
  21624. },
  21625. back: {
  21626. height: math.unit(6, "feet"),
  21627. weight: math.unit(150, "lb"),
  21628. name: "Back",
  21629. image: {
  21630. source: "./media/characters/terrance-keayes/back.svg",
  21631. extra: 1.005,
  21632. bottom: 58.4 / 1557.3
  21633. }
  21634. },
  21635. dick: {
  21636. height: math.unit(6 * 0.208, "feet"),
  21637. name: "Dick",
  21638. image: {
  21639. source: "./media/characters/terrance-keayes/dick.svg"
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Canon Height",
  21646. height: math.unit(35, "miles"),
  21647. default: true
  21648. },
  21649. ]
  21650. ))
  21651. characterMakers.push(() => makeCharacter(
  21652. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21653. {
  21654. front: {
  21655. height: math.unit(6, "feet"),
  21656. weight: math.unit(150, "lb"),
  21657. name: "Front",
  21658. image: {
  21659. source: "./media/characters/ofelia/front.svg",
  21660. extra: 546 / 541,
  21661. bottom: 39 / 583
  21662. }
  21663. },
  21664. back: {
  21665. height: math.unit(6, "feet"),
  21666. weight: math.unit(150, "lb"),
  21667. name: "Back",
  21668. image: {
  21669. source: "./media/characters/ofelia/back.svg",
  21670. extra: 564 / 559.5,
  21671. bottom: 8.69 / 573.02
  21672. }
  21673. },
  21674. maw: {
  21675. height: math.unit(1, "feet"),
  21676. name: "Maw",
  21677. image: {
  21678. source: "./media/characters/ofelia/maw.svg"
  21679. }
  21680. },
  21681. foot: {
  21682. height: math.unit(1.949, "feet"),
  21683. name: "Foot",
  21684. image: {
  21685. source: "./media/characters/ofelia/foot.svg"
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Canon Height",
  21692. height: math.unit(2000, "miles"),
  21693. default: true
  21694. },
  21695. ]
  21696. ))
  21697. characterMakers.push(() => makeCharacter(
  21698. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21699. {
  21700. front: {
  21701. height: math.unit(6, "feet"),
  21702. weight: math.unit(150, "lb"),
  21703. name: "Front",
  21704. image: {
  21705. source: "./media/characters/samuel/front.svg",
  21706. extra: 265 / 258,
  21707. bottom: 2 / 266.1566
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Macro",
  21714. height: math.unit(100, "feet"),
  21715. default: true
  21716. },
  21717. {
  21718. name: "Full Size",
  21719. height: math.unit(1000, "miles")
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(6, "feet"),
  21728. weight: math.unit(300, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/beishir-kiel/front.svg",
  21732. extra: 569 / 547,
  21733. bottom: 41.9 / 609
  21734. }
  21735. },
  21736. maw: {
  21737. height: math.unit(6 * 0.202, "feet"),
  21738. name: "Maw",
  21739. image: {
  21740. source: "./media/characters/beishir-kiel/maw.svg"
  21741. }
  21742. },
  21743. },
  21744. [
  21745. {
  21746. name: "Macro",
  21747. height: math.unit(300, "feet"),
  21748. default: true
  21749. },
  21750. ]
  21751. ))
  21752. characterMakers.push(() => makeCharacter(
  21753. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21754. {
  21755. front: {
  21756. height: math.unit(5 + 8 / 12, "feet"),
  21757. weight: math.unit(120, "lb"),
  21758. name: "Front",
  21759. image: {
  21760. source: "./media/characters/logan-grey/front.svg",
  21761. extra: 2539 / 2393,
  21762. bottom: 97.6 / 2636.37
  21763. }
  21764. },
  21765. frontAlt: {
  21766. height: math.unit(5 + 8 / 12, "feet"),
  21767. weight: math.unit(120, "lb"),
  21768. name: "Front (Alt)",
  21769. image: {
  21770. source: "./media/characters/logan-grey/front-alt.svg",
  21771. extra: 958 / 893,
  21772. bottom: 15 / 970.768
  21773. }
  21774. },
  21775. back: {
  21776. height: math.unit(5 + 8 / 12, "feet"),
  21777. weight: math.unit(120, "lb"),
  21778. name: "Back",
  21779. image: {
  21780. source: "./media/characters/logan-grey/back.svg",
  21781. extra: 958 / 893,
  21782. bottom: 2.1881 / 970.9788
  21783. }
  21784. },
  21785. dick: {
  21786. height: math.unit(1.437, "feet"),
  21787. name: "Dick",
  21788. image: {
  21789. source: "./media/characters/logan-grey/dick.svg"
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(5 + 8 / 12, "feet")
  21797. },
  21798. {
  21799. name: "The 500 Foot Femboy",
  21800. height: math.unit(500, "feet"),
  21801. default: true
  21802. },
  21803. {
  21804. name: "Megmacro",
  21805. height: math.unit(20, "miles")
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21811. {
  21812. front: {
  21813. height: math.unit(8 + 2 / 12, "feet"),
  21814. weight: math.unit(275, "lb"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/draganta/front.svg",
  21818. extra: 1177 / 1135,
  21819. bottom: 33.46 / 1212.1
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Normal",
  21826. height: math.unit(8 + 6 / 12, "feet"),
  21827. default: true
  21828. },
  21829. {
  21830. name: "Macro",
  21831. height: math.unit(150, "feet")
  21832. },
  21833. {
  21834. name: "Megamacro",
  21835. height: math.unit(1000, "miles")
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21841. {
  21842. front: {
  21843. height: math.unit(1.72, "m"),
  21844. weight: math.unit(80, "lb"),
  21845. name: "Front",
  21846. image: {
  21847. source: "./media/characters/voski/front.svg",
  21848. extra: 2076.22 / 2022.4,
  21849. bottom: 102.7 / 2177.3866
  21850. }
  21851. },
  21852. frontNsfw: {
  21853. height: math.unit(1.72, "m"),
  21854. weight: math.unit(80, "lb"),
  21855. name: "Front (NSFW)",
  21856. image: {
  21857. source: "./media/characters/voski/front-nsfw.svg",
  21858. extra: 2076.22 / 2022.4,
  21859. bottom: 102.7 / 2177.3866
  21860. }
  21861. },
  21862. back: {
  21863. height: math.unit(1.72, "m"),
  21864. weight: math.unit(80, "lb"),
  21865. name: "Back",
  21866. image: {
  21867. source: "./media/characters/voski/back.svg",
  21868. extra: 2104 / 2051,
  21869. bottom: 10.45 / 2113.63
  21870. }
  21871. },
  21872. },
  21873. [
  21874. {
  21875. name: "Normal",
  21876. height: math.unit(1.72, "m")
  21877. },
  21878. {
  21879. name: "Macro",
  21880. height: math.unit(55, "m"),
  21881. default: true
  21882. },
  21883. {
  21884. name: "Macro+",
  21885. height: math.unit(300, "m")
  21886. },
  21887. {
  21888. name: "Macro++",
  21889. height: math.unit(700, "m")
  21890. },
  21891. {
  21892. name: "Macro+++",
  21893. height: math.unit(4500, "m")
  21894. },
  21895. {
  21896. name: "Macro++++",
  21897. height: math.unit(45, "km")
  21898. },
  21899. {
  21900. name: "Macro+++++",
  21901. height: math.unit(1220, "km")
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21907. {
  21908. front: {
  21909. height: math.unit(2.3, "m"),
  21910. weight: math.unit(304, "kg"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/icowom-lee/front.svg",
  21914. extra: 985 / 955,
  21915. bottom: 25.4 / 1012
  21916. }
  21917. },
  21918. fronttentacles: {
  21919. height: math.unit(2.3, "m"),
  21920. weight: math.unit(304, "kg"),
  21921. name: "Front-tentacles",
  21922. image: {
  21923. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21924. extra: 985 / 955,
  21925. bottom: 25.4 / 1012
  21926. }
  21927. },
  21928. back: {
  21929. height: math.unit(2.3, "m"),
  21930. weight: math.unit(304, "kg"),
  21931. name: "Back",
  21932. image: {
  21933. source: "./media/characters/icowom-lee/back.svg",
  21934. extra: 975 / 954,
  21935. bottom: 9.5 / 985
  21936. }
  21937. },
  21938. backtentacles: {
  21939. height: math.unit(2.3, "m"),
  21940. weight: math.unit(304, "kg"),
  21941. name: "Back-tentacles",
  21942. image: {
  21943. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21944. extra: 975 / 954,
  21945. bottom: 9.5 / 985
  21946. }
  21947. },
  21948. frontDressed: {
  21949. height: math.unit(2.3, "m"),
  21950. weight: math.unit(304, "kg"),
  21951. name: "Front (Dressed)",
  21952. image: {
  21953. source: "./media/characters/icowom-lee/front-dressed.svg",
  21954. extra: 3076 / 2933,
  21955. bottom: 51.4 / 3125.1889
  21956. }
  21957. },
  21958. rump: {
  21959. height: math.unit(0.776, "meters"),
  21960. name: "Rump",
  21961. image: {
  21962. source: "./media/characters/icowom-lee/rump.svg"
  21963. }
  21964. },
  21965. genitals: {
  21966. height: math.unit(0.78, "meters"),
  21967. name: "Genitals",
  21968. image: {
  21969. source: "./media/characters/icowom-lee/genitals.svg"
  21970. }
  21971. },
  21972. },
  21973. [
  21974. {
  21975. name: "Normal",
  21976. height: math.unit(2.3, "meters"),
  21977. default: true
  21978. },
  21979. {
  21980. name: "Macro",
  21981. height: math.unit(94, "meters"),
  21982. default: true
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(22, "meters"),
  21991. weight: math.unit(21000, "kg"),
  21992. name: "Front",
  21993. image: {
  21994. source: "./media/characters/shock-diamond/front.svg",
  21995. extra: 2204 / 2053,
  21996. bottom: 65 / 2239.47
  21997. }
  21998. },
  21999. frontNude: {
  22000. height: math.unit(22, "meters"),
  22001. weight: math.unit(21000, "kg"),
  22002. name: "Front (Nude)",
  22003. image: {
  22004. source: "./media/characters/shock-diamond/front-nude.svg",
  22005. extra: 2514 / 2285,
  22006. bottom: 13 / 2527.56
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(3, "meters")
  22014. },
  22015. {
  22016. name: "Macro",
  22017. height: math.unit(22, "meters"),
  22018. default: true
  22019. },
  22020. ]
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22024. {
  22025. front: {
  22026. height: math.unit(5 + 4 / 12, "feet"),
  22027. weight: math.unit(120, "lb"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/rory/front.svg",
  22031. extra: 589 / 556,
  22032. bottom: 45.7 / 635.76
  22033. }
  22034. },
  22035. frontNude: {
  22036. height: math.unit(5 + 4 / 12, "feet"),
  22037. weight: math.unit(120, "lb"),
  22038. name: "Front (Nude)",
  22039. image: {
  22040. source: "./media/characters/rory/front-nude.svg",
  22041. extra: 589 / 556,
  22042. bottom: 45.7 / 635.76
  22043. }
  22044. },
  22045. side: {
  22046. height: math.unit(5 + 4 / 12, "feet"),
  22047. weight: math.unit(120, "lb"),
  22048. name: "Side",
  22049. image: {
  22050. source: "./media/characters/rory/side.svg",
  22051. extra: 597 / 564,
  22052. bottom: 55 / 653
  22053. }
  22054. },
  22055. back: {
  22056. height: math.unit(5 + 4 / 12, "feet"),
  22057. weight: math.unit(120, "lb"),
  22058. name: "Back",
  22059. image: {
  22060. source: "./media/characters/rory/back.svg",
  22061. extra: 620 / 585,
  22062. bottom: 8.86 / 630.43
  22063. }
  22064. },
  22065. dick: {
  22066. height: math.unit(0.86, "feet"),
  22067. name: "Dick",
  22068. image: {
  22069. source: "./media/characters/rory/dick.svg"
  22070. }
  22071. },
  22072. },
  22073. [
  22074. {
  22075. name: "Normal",
  22076. height: math.unit(5 + 4 / 12, "feet"),
  22077. default: true
  22078. },
  22079. {
  22080. name: "Macro",
  22081. height: math.unit(100, "feet")
  22082. },
  22083. {
  22084. name: "Macro+",
  22085. height: math.unit(140, "feet")
  22086. },
  22087. {
  22088. name: "Macro++",
  22089. height: math.unit(300, "feet")
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22095. {
  22096. front: {
  22097. height: math.unit(5 + 9 / 12, "feet"),
  22098. weight: math.unit(190, "lb"),
  22099. name: "Front",
  22100. image: {
  22101. source: "./media/characters/sprisk/front.svg",
  22102. extra: 1225 / 1180,
  22103. bottom: 42.7 / 1266.4
  22104. }
  22105. },
  22106. frontNsfw: {
  22107. height: math.unit(5 + 9 / 12, "feet"),
  22108. weight: math.unit(190, "lb"),
  22109. name: "Front (NSFW)",
  22110. image: {
  22111. source: "./media/characters/sprisk/front-nsfw.svg",
  22112. extra: 1225 / 1180,
  22113. bottom: 42.7 / 1266.4
  22114. }
  22115. },
  22116. back: {
  22117. height: math.unit(5 + 9 / 12, "feet"),
  22118. weight: math.unit(190, "lb"),
  22119. name: "Back",
  22120. image: {
  22121. source: "./media/characters/sprisk/back.svg",
  22122. extra: 1247 / 1200,
  22123. bottom: 5.6 / 1253.04
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Tiny",
  22130. height: math.unit(2, "inches")
  22131. },
  22132. {
  22133. name: "Normal",
  22134. height: math.unit(5 + 9 / 12, "feet"),
  22135. default: true
  22136. },
  22137. {
  22138. name: "Mini Macro",
  22139. height: math.unit(18, "feet")
  22140. },
  22141. {
  22142. name: "Macro",
  22143. height: math.unit(100, "feet")
  22144. },
  22145. {
  22146. name: "MACRO",
  22147. height: math.unit(50, "miles")
  22148. },
  22149. {
  22150. name: "M A C R O",
  22151. height: math.unit(300, "miles")
  22152. },
  22153. ]
  22154. ))
  22155. characterMakers.push(() => makeCharacter(
  22156. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22157. {
  22158. side: {
  22159. height: math.unit(15.6, "meters"),
  22160. weight: math.unit(700000, "kg"),
  22161. name: "Side",
  22162. image: {
  22163. source: "./media/characters/bunsen/side.svg",
  22164. extra: 1644 / 358
  22165. }
  22166. },
  22167. foot: {
  22168. height: math.unit(1.611 * 1644 / 358, "meter"),
  22169. name: "Foot",
  22170. image: {
  22171. source: "./media/characters/bunsen/foot.svg"
  22172. }
  22173. },
  22174. },
  22175. [
  22176. {
  22177. name: "Small",
  22178. height: math.unit(10, "feet")
  22179. },
  22180. {
  22181. name: "Normal",
  22182. height: math.unit(15.6, "meters"),
  22183. default: true
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22189. {
  22190. front: {
  22191. height: math.unit(4 + 11 / 12, "feet"),
  22192. weight: math.unit(140, "lb"),
  22193. name: "Front",
  22194. image: {
  22195. source: "./media/characters/sesh/front.svg",
  22196. extra: 3420 / 3231,
  22197. bottom: 72 / 3949.5
  22198. }
  22199. },
  22200. },
  22201. [
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(4 + 11 / 12, "feet")
  22205. },
  22206. {
  22207. name: "Grown",
  22208. height: math.unit(15, "feet"),
  22209. default: true
  22210. },
  22211. {
  22212. name: "Macro",
  22213. height: math.unit(1500, "feet")
  22214. },
  22215. {
  22216. name: "Megamacro",
  22217. height: math.unit(30, "miles")
  22218. },
  22219. {
  22220. name: "Continental",
  22221. height: math.unit(3000, "miles")
  22222. },
  22223. {
  22224. name: "Gravity Mass",
  22225. height: math.unit(300000, "miles")
  22226. },
  22227. {
  22228. name: "Planet Buster",
  22229. height: math.unit(30000000, "miles")
  22230. },
  22231. {
  22232. name: "Big",
  22233. height: math.unit(3000000000, "miles")
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22239. {
  22240. front: {
  22241. height: math.unit(9, "feet"),
  22242. weight: math.unit(350, "lb"),
  22243. name: "Front",
  22244. image: {
  22245. source: "./media/characters/pepper/front.svg",
  22246. extra: 1448 / 1312,
  22247. bottom: 9.4 / 1457.88
  22248. }
  22249. },
  22250. back: {
  22251. height: math.unit(9, "feet"),
  22252. weight: math.unit(350, "lb"),
  22253. name: "Back",
  22254. image: {
  22255. source: "./media/characters/pepper/back.svg",
  22256. extra: 1423 / 1300,
  22257. bottom: 4.6 / 1429
  22258. }
  22259. },
  22260. maw: {
  22261. height: math.unit(0.932, "feet"),
  22262. name: "Maw",
  22263. image: {
  22264. source: "./media/characters/pepper/maw.svg"
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(9, "feet"),
  22272. default: true
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(6, "feet"),
  22281. weight: math.unit(150, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/maelstrom/front.svg",
  22285. extra: 2100 / 1883,
  22286. bottom: 94 / 2196.7
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Less Kaiju",
  22293. height: math.unit(200, "feet")
  22294. },
  22295. {
  22296. name: "Kaiju",
  22297. height: math.unit(400, "feet"),
  22298. default: true
  22299. },
  22300. {
  22301. name: "Kaiju-er",
  22302. height: math.unit(600, "feet")
  22303. },
  22304. ]
  22305. ))
  22306. characterMakers.push(() => makeCharacter(
  22307. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22308. {
  22309. front: {
  22310. height: math.unit(6 + 5 / 12, "feet"),
  22311. weight: math.unit(180, "lb"),
  22312. name: "Front",
  22313. image: {
  22314. source: "./media/characters/lexir/front.svg",
  22315. extra: 180 / 172,
  22316. bottom: 12 / 192
  22317. }
  22318. },
  22319. back: {
  22320. height: math.unit(6 + 5 / 12, "feet"),
  22321. weight: math.unit(180, "lb"),
  22322. name: "Back",
  22323. image: {
  22324. source: "./media/characters/lexir/back.svg",
  22325. extra: 183.84 / 175.5,
  22326. bottom: 3.1 / 187
  22327. }
  22328. },
  22329. },
  22330. [
  22331. {
  22332. name: "Very Smal",
  22333. height: math.unit(1, "nm")
  22334. },
  22335. {
  22336. name: "Normal",
  22337. height: math.unit(6 + 5 / 12, "feet"),
  22338. default: true
  22339. },
  22340. {
  22341. name: "Macro",
  22342. height: math.unit(1, "mile")
  22343. },
  22344. {
  22345. name: "Megamacro",
  22346. height: math.unit(50, "miles")
  22347. },
  22348. ]
  22349. ))
  22350. characterMakers.push(() => makeCharacter(
  22351. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22352. {
  22353. front: {
  22354. height: math.unit(1.5, "meters"),
  22355. weight: math.unit(100, "lb"),
  22356. name: "Front",
  22357. image: {
  22358. source: "./media/characters/maksio/front.svg",
  22359. extra: 1549 / 1531,
  22360. bottom: 123.7 / 1674.5429
  22361. }
  22362. },
  22363. back: {
  22364. height: math.unit(1.5, "meters"),
  22365. weight: math.unit(100, "lb"),
  22366. name: "Back",
  22367. image: {
  22368. source: "./media/characters/maksio/back.svg",
  22369. extra: 1541 / 1509,
  22370. bottom: 97 / 1639
  22371. }
  22372. },
  22373. hand: {
  22374. height: math.unit(0.621, "feet"),
  22375. name: "Hand",
  22376. image: {
  22377. source: "./media/characters/maksio/hand.svg"
  22378. }
  22379. },
  22380. foot: {
  22381. height: math.unit(1.611, "feet"),
  22382. name: "Foot",
  22383. image: {
  22384. source: "./media/characters/maksio/foot.svg"
  22385. }
  22386. },
  22387. },
  22388. [
  22389. {
  22390. name: "Shrunken",
  22391. height: math.unit(10, "cm")
  22392. },
  22393. {
  22394. name: "Normal",
  22395. height: math.unit(150, "cm"),
  22396. default: true
  22397. },
  22398. ]
  22399. ))
  22400. characterMakers.push(() => makeCharacter(
  22401. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22402. {
  22403. front: {
  22404. height: math.unit(100, "feet"),
  22405. name: "Front",
  22406. image: {
  22407. source: "./media/characters/erza-bear/front.svg",
  22408. extra: 2449 / 2390,
  22409. bottom: 46 / 2494
  22410. }
  22411. },
  22412. back: {
  22413. height: math.unit(100, "feet"),
  22414. name: "Back",
  22415. image: {
  22416. source: "./media/characters/erza-bear/back.svg",
  22417. extra: 2489 / 2430,
  22418. bottom: 85.4 / 2480
  22419. }
  22420. },
  22421. tail: {
  22422. height: math.unit(42, "feet"),
  22423. name: "Tail",
  22424. image: {
  22425. source: "./media/characters/erza-bear/tail.svg"
  22426. }
  22427. },
  22428. tongue: {
  22429. height: math.unit(8, "feet"),
  22430. name: "Tongue",
  22431. image: {
  22432. source: "./media/characters/erza-bear/tongue.svg"
  22433. }
  22434. },
  22435. dick: {
  22436. height: math.unit(10.5, "feet"),
  22437. name: "Dick",
  22438. image: {
  22439. source: "./media/characters/erza-bear/dick.svg"
  22440. }
  22441. },
  22442. dickVertical: {
  22443. height: math.unit(16.9, "feet"),
  22444. name: "Dick (Vertical)",
  22445. image: {
  22446. source: "./media/characters/erza-bear/dick-vertical.svg"
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Macro",
  22453. height: math.unit(100, "feet"),
  22454. default: true
  22455. },
  22456. ]
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22460. {
  22461. front: {
  22462. height: math.unit(172, "cm"),
  22463. weight: math.unit(73, "kg"),
  22464. name: "Front",
  22465. image: {
  22466. source: "./media/characters/violet-flor/front.svg",
  22467. extra: 1530 / 1442,
  22468. bottom: 61.9 / 1588.8
  22469. }
  22470. },
  22471. back: {
  22472. height: math.unit(180, "cm"),
  22473. weight: math.unit(73, "kg"),
  22474. name: "Back",
  22475. image: {
  22476. source: "./media/characters/violet-flor/back.svg",
  22477. extra: 1692 / 1630,
  22478. bottom: 20 / 1712
  22479. }
  22480. },
  22481. },
  22482. [
  22483. {
  22484. name: "Normal",
  22485. height: math.unit(172, "cm"),
  22486. default: true
  22487. },
  22488. ]
  22489. ))
  22490. characterMakers.push(() => makeCharacter(
  22491. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22492. {
  22493. front: {
  22494. height: math.unit(6, "feet"),
  22495. weight: math.unit(220, "lb"),
  22496. name: "Front",
  22497. image: {
  22498. source: "./media/characters/lynn-rhea/front.svg",
  22499. extra: 310 / 273
  22500. }
  22501. },
  22502. back: {
  22503. height: math.unit(6, "feet"),
  22504. weight: math.unit(220, "lb"),
  22505. name: "Back",
  22506. image: {
  22507. source: "./media/characters/lynn-rhea/back.svg",
  22508. extra: 310 / 273
  22509. }
  22510. },
  22511. dicks: {
  22512. height: math.unit(0.9, "feet"),
  22513. name: "Dicks",
  22514. image: {
  22515. source: "./media/characters/lynn-rhea/dicks.svg"
  22516. }
  22517. },
  22518. slit: {
  22519. height: math.unit(0.4, "feet"),
  22520. name: "Slit",
  22521. image: {
  22522. source: "./media/characters/lynn-rhea/slit.svg"
  22523. }
  22524. },
  22525. },
  22526. [
  22527. {
  22528. name: "Micro",
  22529. height: math.unit(1, "inch")
  22530. },
  22531. {
  22532. name: "Macro",
  22533. height: math.unit(60, "feet"),
  22534. default: true
  22535. },
  22536. {
  22537. name: "Megamacro",
  22538. height: math.unit(2, "miles")
  22539. },
  22540. {
  22541. name: "Gigamacro",
  22542. height: math.unit(3, "earths")
  22543. },
  22544. {
  22545. name: "Galactic",
  22546. height: math.unit(0.8, "galaxies")
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22552. {
  22553. front: {
  22554. height: math.unit(1600, "feet"),
  22555. weight: math.unit(85758785169, "kg"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/valathos/front.svg",
  22559. extra: 1451 / 1339
  22560. }
  22561. },
  22562. },
  22563. [
  22564. {
  22565. name: "Macro",
  22566. height: math.unit(1600, "feet"),
  22567. default: true
  22568. },
  22569. ]
  22570. ))
  22571. characterMakers.push(() => makeCharacter(
  22572. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22573. {
  22574. front: {
  22575. height: math.unit(7 + 5 / 12, "feet"),
  22576. weight: math.unit(300, "lb"),
  22577. name: "Front",
  22578. image: {
  22579. source: "./media/characters/azula/front.svg",
  22580. extra: 3208 / 2880,
  22581. bottom: 80.2 / 3277
  22582. }
  22583. },
  22584. back: {
  22585. height: math.unit(7 + 5 / 12, "feet"),
  22586. weight: math.unit(300, "lb"),
  22587. name: "Back",
  22588. image: {
  22589. source: "./media/characters/azula/back.svg",
  22590. extra: 3169 / 2822,
  22591. bottom: 150.6 / 3321
  22592. }
  22593. },
  22594. },
  22595. [
  22596. {
  22597. name: "Normal",
  22598. height: math.unit(7 + 5 / 12, "feet"),
  22599. default: true
  22600. },
  22601. {
  22602. name: "Big",
  22603. height: math.unit(20, "feet")
  22604. },
  22605. ]
  22606. ))
  22607. characterMakers.push(() => makeCharacter(
  22608. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22609. {
  22610. front: {
  22611. height: math.unit(5 + 1 / 12, "feet"),
  22612. weight: math.unit(110, "lb"),
  22613. name: "Front",
  22614. image: {
  22615. source: "./media/characters/rupert/front.svg",
  22616. extra: 1549 / 1495,
  22617. bottom: 54.2 / 1604.4
  22618. }
  22619. },
  22620. },
  22621. [
  22622. {
  22623. name: "Normal",
  22624. height: math.unit(5 + 1 / 12, "feet"),
  22625. default: true
  22626. },
  22627. ]
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22631. {
  22632. front: {
  22633. height: math.unit(8 + 4 / 12, "feet"),
  22634. weight: math.unit(350, "lb"),
  22635. name: "Front",
  22636. image: {
  22637. source: "./media/characters/sheera-castellar/front.svg",
  22638. extra: 1957 / 1894,
  22639. bottom: 26.97 / 1975.017
  22640. }
  22641. },
  22642. side: {
  22643. height: math.unit(8 + 4 / 12, "feet"),
  22644. weight: math.unit(350, "lb"),
  22645. name: "Side",
  22646. image: {
  22647. source: "./media/characters/sheera-castellar/side.svg",
  22648. extra: 1957 / 1894
  22649. }
  22650. },
  22651. back: {
  22652. height: math.unit(8 + 4 / 12, "feet"),
  22653. weight: math.unit(350, "lb"),
  22654. name: "Back",
  22655. image: {
  22656. source: "./media/characters/sheera-castellar/back.svg",
  22657. extra: 1957 / 1894
  22658. }
  22659. },
  22660. angled: {
  22661. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22662. weight: math.unit(350, "lb"),
  22663. name: "Angled",
  22664. image: {
  22665. source: "./media/characters/sheera-castellar/angled.svg",
  22666. extra: 1807 / 1707,
  22667. bottom: 68 / 1875
  22668. }
  22669. },
  22670. genitals: {
  22671. height: math.unit(2.2, "feet"),
  22672. name: "Genitals",
  22673. image: {
  22674. source: "./media/characters/sheera-castellar/genitals.svg"
  22675. }
  22676. },
  22677. taur: {
  22678. height: math.unit(10 + 6/12, "feet"),
  22679. name: "Taur",
  22680. image: {
  22681. source: "./media/characters/sheera-castellar/taur.svg",
  22682. extra: 2017/1909,
  22683. bottom: 185/2202
  22684. }
  22685. },
  22686. },
  22687. [
  22688. {
  22689. name: "Normal",
  22690. height: math.unit(8 + 4 / 12, "feet")
  22691. },
  22692. {
  22693. name: "Macro",
  22694. height: math.unit(150, "feet"),
  22695. default: true
  22696. },
  22697. {
  22698. name: "Macro+",
  22699. height: math.unit(800, "feet")
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22705. {
  22706. front: {
  22707. height: math.unit(6, "feet"),
  22708. weight: math.unit(150, "lb"),
  22709. name: "Front",
  22710. image: {
  22711. source: "./media/characters/jaipur/front.svg",
  22712. extra: 3860 / 3731,
  22713. bottom: 287 / 4140
  22714. }
  22715. },
  22716. back: {
  22717. height: math.unit(6, "feet"),
  22718. weight: math.unit(150, "lb"),
  22719. name: "Back",
  22720. image: {
  22721. source: "./media/characters/jaipur/back.svg",
  22722. extra: 4060 / 3930,
  22723. bottom: 151 / 4200
  22724. }
  22725. },
  22726. },
  22727. [
  22728. {
  22729. name: "Normal",
  22730. height: math.unit(1.85, "meters"),
  22731. default: true
  22732. },
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(150, "meters")
  22736. },
  22737. {
  22738. name: "Macro+",
  22739. height: math.unit(0.5, "miles")
  22740. },
  22741. {
  22742. name: "Macro++",
  22743. height: math.unit(2.5, "miles")
  22744. },
  22745. {
  22746. name: "Macro+++",
  22747. height: math.unit(12, "miles")
  22748. },
  22749. {
  22750. name: "Macro++++",
  22751. height: math.unit(120, "miles")
  22752. },
  22753. {
  22754. name: "Macro+++++",
  22755. height: math.unit(1200, "miles")
  22756. },
  22757. ]
  22758. ))
  22759. characterMakers.push(() => makeCharacter(
  22760. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22761. {
  22762. front: {
  22763. height: math.unit(6, "feet"),
  22764. weight: math.unit(150, "lb"),
  22765. name: "Front",
  22766. image: {
  22767. source: "./media/characters/sheila-wolf/front.svg",
  22768. extra: 1931 / 1808,
  22769. bottom: 29.5 / 1960
  22770. }
  22771. },
  22772. dick: {
  22773. height: math.unit(1.464, "feet"),
  22774. name: "Dick",
  22775. image: {
  22776. source: "./media/characters/sheila-wolf/dick.svg"
  22777. }
  22778. },
  22779. muzzle: {
  22780. height: math.unit(0.513, "feet"),
  22781. name: "Muzzle",
  22782. image: {
  22783. source: "./media/characters/sheila-wolf/muzzle.svg"
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Macro",
  22790. height: math.unit(70, "feet"),
  22791. default: true
  22792. },
  22793. ]
  22794. ))
  22795. characterMakers.push(() => makeCharacter(
  22796. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22797. {
  22798. front: {
  22799. height: math.unit(32, "meters"),
  22800. weight: math.unit(300000, "kg"),
  22801. name: "Front",
  22802. image: {
  22803. source: "./media/characters/almor/front.svg",
  22804. extra: 1408 / 1322,
  22805. bottom: 94.6 / 1506.5
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Macro",
  22812. height: math.unit(32, "meters"),
  22813. default: true
  22814. },
  22815. ]
  22816. ))
  22817. characterMakers.push(() => makeCharacter(
  22818. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22819. {
  22820. front: {
  22821. height: math.unit(7, "feet"),
  22822. weight: math.unit(200, "lb"),
  22823. name: "Front",
  22824. image: {
  22825. source: "./media/characters/silver/front.svg",
  22826. extra: 472.1 / 450.5,
  22827. bottom: 26.5 / 499.424
  22828. }
  22829. },
  22830. },
  22831. [
  22832. {
  22833. name: "Normal",
  22834. height: math.unit(7, "feet"),
  22835. default: true
  22836. },
  22837. {
  22838. name: "Macro",
  22839. height: math.unit(800, "feet")
  22840. },
  22841. {
  22842. name: "Megamacro",
  22843. height: math.unit(250, "miles")
  22844. },
  22845. ]
  22846. ))
  22847. characterMakers.push(() => makeCharacter(
  22848. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22849. {
  22850. front: {
  22851. height: math.unit(6, "feet"),
  22852. weight: math.unit(150, "lb"),
  22853. name: "Front",
  22854. image: {
  22855. source: "./media/characters/pliskin/front.svg",
  22856. extra: 1469 / 1359,
  22857. bottom: 70 / 1540
  22858. }
  22859. },
  22860. },
  22861. [
  22862. {
  22863. name: "Micro",
  22864. height: math.unit(3, "inches")
  22865. },
  22866. {
  22867. name: "Normal",
  22868. height: math.unit(5 + 11 / 12, "feet"),
  22869. default: true
  22870. },
  22871. {
  22872. name: "Macro",
  22873. height: math.unit(120, "feet")
  22874. },
  22875. ]
  22876. ))
  22877. characterMakers.push(() => makeCharacter(
  22878. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22879. {
  22880. front: {
  22881. height: math.unit(6, "feet"),
  22882. weight: math.unit(150, "lb"),
  22883. name: "Front",
  22884. image: {
  22885. source: "./media/characters/sammy/front.svg",
  22886. extra: 1193 / 1089,
  22887. bottom: 30.5 / 1226
  22888. }
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Macro",
  22894. height: math.unit(1700, "feet"),
  22895. default: true
  22896. },
  22897. {
  22898. name: "Examacro",
  22899. height: math.unit(2.5e9, "lightyears")
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(21, "meters"),
  22908. weight: math.unit(12, "tonnes"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/kuru/front.svg",
  22912. extra: 4301 / 3785,
  22913. bottom: 371.3 / 4691
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Macro",
  22920. height: math.unit(21, "meters"),
  22921. default: true
  22922. },
  22923. ]
  22924. ))
  22925. characterMakers.push(() => makeCharacter(
  22926. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22927. {
  22928. front: {
  22929. height: math.unit(23, "meters"),
  22930. weight: math.unit(12.2, "tonnes"),
  22931. name: "Front",
  22932. image: {
  22933. source: "./media/characters/rakka/front.svg",
  22934. extra: 4670 / 4169,
  22935. bottom: 301 / 4968.7
  22936. }
  22937. },
  22938. },
  22939. [
  22940. {
  22941. name: "Macro",
  22942. height: math.unit(23, "meters"),
  22943. default: true
  22944. },
  22945. ]
  22946. ))
  22947. characterMakers.push(() => makeCharacter(
  22948. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22949. {
  22950. front: {
  22951. height: math.unit(6, "feet"),
  22952. weight: math.unit(150, "lb"),
  22953. name: "Front",
  22954. image: {
  22955. source: "./media/characters/rhys-feline/front.svg",
  22956. extra: 2488 / 2308,
  22957. bottom: 35.67 / 2519.19
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Really Small",
  22964. height: math.unit(1, "nm")
  22965. },
  22966. {
  22967. name: "Micro",
  22968. height: math.unit(4, "inches")
  22969. },
  22970. {
  22971. name: "Normal",
  22972. height: math.unit(4 + 10 / 12, "feet"),
  22973. default: true
  22974. },
  22975. {
  22976. name: "Macro",
  22977. height: math.unit(100, "feet")
  22978. },
  22979. {
  22980. name: "Megamacto",
  22981. height: math.unit(50, "miles")
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22987. {
  22988. side: {
  22989. height: math.unit(30, "feet"),
  22990. weight: math.unit(35000, "kg"),
  22991. name: "Side",
  22992. image: {
  22993. source: "./media/characters/alydar/side.svg",
  22994. extra: 234 / 222,
  22995. bottom: 6.5 / 241
  22996. }
  22997. },
  22998. front: {
  22999. height: math.unit(30, "feet"),
  23000. weight: math.unit(35000, "kg"),
  23001. name: "Front",
  23002. image: {
  23003. source: "./media/characters/alydar/front.svg",
  23004. extra: 223.37 / 210.2,
  23005. bottom: 22.3 / 246.76
  23006. }
  23007. },
  23008. top: {
  23009. height: math.unit(64.54, "feet"),
  23010. weight: math.unit(35000, "kg"),
  23011. name: "Top",
  23012. image: {
  23013. source: "./media/characters/alydar/top.svg"
  23014. }
  23015. },
  23016. anthro: {
  23017. height: math.unit(30, "feet"),
  23018. weight: math.unit(9000, "kg"),
  23019. name: "Anthro",
  23020. image: {
  23021. source: "./media/characters/alydar/anthro.svg",
  23022. extra: 432 / 421,
  23023. bottom: 7.18 / 440
  23024. }
  23025. },
  23026. maw: {
  23027. height: math.unit(11.693, "feet"),
  23028. name: "Maw",
  23029. image: {
  23030. source: "./media/characters/alydar/maw.svg"
  23031. }
  23032. },
  23033. head: {
  23034. height: math.unit(11.693, "feet"),
  23035. name: "Head",
  23036. image: {
  23037. source: "./media/characters/alydar/head.svg"
  23038. }
  23039. },
  23040. headAlt: {
  23041. height: math.unit(12.861, "feet"),
  23042. name: "Head (Alt)",
  23043. image: {
  23044. source: "./media/characters/alydar/head-alt.svg"
  23045. }
  23046. },
  23047. wing: {
  23048. height: math.unit(20.712, "feet"),
  23049. name: "Wing",
  23050. image: {
  23051. source: "./media/characters/alydar/wing.svg"
  23052. }
  23053. },
  23054. wingFeather: {
  23055. height: math.unit(9.662, "feet"),
  23056. name: "Wing Feather",
  23057. image: {
  23058. source: "./media/characters/alydar/wing-feather.svg"
  23059. }
  23060. },
  23061. countourFeather: {
  23062. height: math.unit(4.154, "feet"),
  23063. name: "Contour Feather",
  23064. image: {
  23065. source: "./media/characters/alydar/contour-feather.svg"
  23066. }
  23067. },
  23068. },
  23069. [
  23070. {
  23071. name: "Diplomatic",
  23072. height: math.unit(13, "feet"),
  23073. default: true
  23074. },
  23075. {
  23076. name: "Small",
  23077. height: math.unit(30, "feet")
  23078. },
  23079. {
  23080. name: "Normal",
  23081. height: math.unit(95, "feet"),
  23082. default: true
  23083. },
  23084. {
  23085. name: "Large",
  23086. height: math.unit(285, "feet")
  23087. },
  23088. {
  23089. name: "Incomprehensible",
  23090. height: math.unit(450, "megameters")
  23091. },
  23092. ]
  23093. ))
  23094. characterMakers.push(() => makeCharacter(
  23095. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23096. {
  23097. side: {
  23098. height: math.unit(11, "feet"),
  23099. weight: math.unit(1750, "kg"),
  23100. name: "Side",
  23101. image: {
  23102. source: "./media/characters/selicia/side.svg",
  23103. extra: 440 / 396,
  23104. bottom: 24.8 / 465.979
  23105. }
  23106. },
  23107. maw: {
  23108. height: math.unit(4.665, "feet"),
  23109. name: "Maw",
  23110. image: {
  23111. source: "./media/characters/selicia/maw.svg"
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Normal",
  23118. height: math.unit(11, "feet"),
  23119. default: true
  23120. },
  23121. ]
  23122. ))
  23123. characterMakers.push(() => makeCharacter(
  23124. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23125. {
  23126. side: {
  23127. height: math.unit(2 + 6 / 12, "feet"),
  23128. weight: math.unit(30, "lb"),
  23129. name: "Side",
  23130. image: {
  23131. source: "./media/characters/layla/side.svg",
  23132. extra: 244 / 188,
  23133. bottom: 18.2 / 262.1
  23134. }
  23135. },
  23136. back: {
  23137. height: math.unit(2 + 6 / 12, "feet"),
  23138. weight: math.unit(30, "lb"),
  23139. name: "Back",
  23140. image: {
  23141. source: "./media/characters/layla/back.svg",
  23142. extra: 308 / 241.5,
  23143. bottom: 8.9 / 316.8
  23144. }
  23145. },
  23146. cumming: {
  23147. height: math.unit(2 + 6 / 12, "feet"),
  23148. weight: math.unit(30, "lb"),
  23149. name: "Cumming",
  23150. image: {
  23151. source: "./media/characters/layla/cumming.svg",
  23152. extra: 342 / 279,
  23153. bottom: 595 / 938
  23154. }
  23155. },
  23156. dickFlaccid: {
  23157. height: math.unit(2.595, "feet"),
  23158. name: "Flaccid Genitals",
  23159. image: {
  23160. source: "./media/characters/layla/dick-flaccid.svg"
  23161. }
  23162. },
  23163. dickErect: {
  23164. height: math.unit(2.359, "feet"),
  23165. name: "Erect Genitals",
  23166. image: {
  23167. source: "./media/characters/layla/dick-erect.svg"
  23168. }
  23169. },
  23170. },
  23171. [
  23172. {
  23173. name: "Micro",
  23174. height: math.unit(1, "inch")
  23175. },
  23176. {
  23177. name: "Small",
  23178. height: math.unit(1, "foot")
  23179. },
  23180. {
  23181. name: "Normal",
  23182. height: math.unit(2 + 6 / 12, "feet"),
  23183. default: true
  23184. },
  23185. {
  23186. name: "Macro",
  23187. height: math.unit(200, "feet")
  23188. },
  23189. {
  23190. name: "Megamacro",
  23191. height: math.unit(1000, "miles")
  23192. },
  23193. {
  23194. name: "Planetary",
  23195. height: math.unit(8000, "miles")
  23196. },
  23197. {
  23198. name: "True Layla",
  23199. height: math.unit(200000 * 7, "multiverses")
  23200. },
  23201. ]
  23202. ))
  23203. characterMakers.push(() => makeCharacter(
  23204. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23205. {
  23206. back: {
  23207. height: math.unit(10.5, "feet"),
  23208. weight: math.unit(800, "lb"),
  23209. name: "Back",
  23210. image: {
  23211. source: "./media/characters/knox/back.svg",
  23212. extra: 1486 / 1089,
  23213. bottom: 107 / 1601.4
  23214. }
  23215. },
  23216. side: {
  23217. height: math.unit(10.5, "feet"),
  23218. weight: math.unit(800, "lb"),
  23219. name: "Side",
  23220. image: {
  23221. source: "./media/characters/knox/side.svg",
  23222. extra: 244 / 218,
  23223. bottom: 14 / 260
  23224. }
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Compact",
  23230. height: math.unit(10.5, "feet"),
  23231. default: true
  23232. },
  23233. {
  23234. name: "Dynamax",
  23235. height: math.unit(210, "feet")
  23236. },
  23237. {
  23238. name: "Full Macro",
  23239. height: math.unit(850, "feet")
  23240. },
  23241. ]
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23245. {
  23246. front: {
  23247. height: math.unit(6, "feet"),
  23248. weight: math.unit(152, "lb"),
  23249. name: "Front",
  23250. image: {
  23251. source: "./media/characters/shin-pikachu/front.svg",
  23252. extra: 1574 / 1480,
  23253. bottom: 53.3 / 1626
  23254. }
  23255. },
  23256. hand: {
  23257. height: math.unit(1.055, "feet"),
  23258. name: "Hand",
  23259. image: {
  23260. source: "./media/characters/shin-pikachu/hand.svg"
  23261. }
  23262. },
  23263. foot: {
  23264. height: math.unit(1.1, "feet"),
  23265. name: "Foot",
  23266. image: {
  23267. source: "./media/characters/shin-pikachu/foot.svg"
  23268. }
  23269. },
  23270. collar: {
  23271. height: math.unit(0.386, "feet"),
  23272. name: "Collar",
  23273. image: {
  23274. source: "./media/characters/shin-pikachu/collar.svg"
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Smallest",
  23281. height: math.unit(0.5, "inches")
  23282. },
  23283. {
  23284. name: "Micro",
  23285. height: math.unit(6, "inches")
  23286. },
  23287. {
  23288. name: "Normal",
  23289. height: math.unit(6, "feet"),
  23290. default: true
  23291. },
  23292. {
  23293. name: "Macro",
  23294. height: math.unit(150, "feet")
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23300. {
  23301. front: {
  23302. height: math.unit(28, "feet"),
  23303. weight: math.unit(10500, "lb"),
  23304. name: "Front",
  23305. image: {
  23306. source: "./media/characters/kayda/front.svg",
  23307. extra: 1536 / 1428,
  23308. bottom: 68.7 / 1603
  23309. }
  23310. },
  23311. back: {
  23312. height: math.unit(28, "feet"),
  23313. weight: math.unit(10500, "lb"),
  23314. name: "Back",
  23315. image: {
  23316. source: "./media/characters/kayda/back.svg",
  23317. extra: 1557 / 1464,
  23318. bottom: 39.5 / 1597.49
  23319. }
  23320. },
  23321. dick: {
  23322. height: math.unit(3.858, "feet"),
  23323. name: "Dick",
  23324. image: {
  23325. source: "./media/characters/kayda/dick.svg"
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Macro",
  23332. height: math.unit(28, "feet"),
  23333. default: true
  23334. },
  23335. ]
  23336. ))
  23337. characterMakers.push(() => makeCharacter(
  23338. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23339. {
  23340. front: {
  23341. height: math.unit(10 + 11 / 12, "feet"),
  23342. weight: math.unit(1400, "lb"),
  23343. name: "Front",
  23344. image: {
  23345. source: "./media/characters/brian/front.svg",
  23346. extra: 737 / 692,
  23347. bottom: 55.4 / 785
  23348. }
  23349. },
  23350. },
  23351. [
  23352. {
  23353. name: "Normal",
  23354. height: math.unit(10 + 11 / 12, "feet"),
  23355. default: true
  23356. },
  23357. ]
  23358. ))
  23359. characterMakers.push(() => makeCharacter(
  23360. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23361. {
  23362. front: {
  23363. height: math.unit(5 + 8 / 12, "feet"),
  23364. weight: math.unit(140, "lb"),
  23365. name: "Front",
  23366. image: {
  23367. source: "./media/characters/khemri/front.svg",
  23368. extra: 4780 / 4059,
  23369. bottom: 80.1 / 4859.25
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Micro",
  23376. height: math.unit(6, "inches")
  23377. },
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(5 + 8 / 12, "feet"),
  23381. default: true
  23382. },
  23383. ]
  23384. ))
  23385. characterMakers.push(() => makeCharacter(
  23386. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23387. {
  23388. front: {
  23389. height: math.unit(13, "feet"),
  23390. weight: math.unit(1700, "lb"),
  23391. name: "Front",
  23392. image: {
  23393. source: "./media/characters/felix-braveheart/front.svg",
  23394. extra: 1222 / 1157,
  23395. bottom: 53.2 / 1280
  23396. }
  23397. },
  23398. back: {
  23399. height: math.unit(13, "feet"),
  23400. weight: math.unit(1700, "lb"),
  23401. name: "Back",
  23402. image: {
  23403. source: "./media/characters/felix-braveheart/back.svg",
  23404. extra: 1277 / 1203,
  23405. bottom: 50.2 / 1327
  23406. }
  23407. },
  23408. feral: {
  23409. height: math.unit(6, "feet"),
  23410. weight: math.unit(400, "lb"),
  23411. name: "Feral",
  23412. image: {
  23413. source: "./media/characters/felix-braveheart/feral.svg",
  23414. extra: 682 / 625,
  23415. bottom: 6.9 / 688
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(13, "feet"),
  23423. default: true
  23424. },
  23425. ]
  23426. ))
  23427. characterMakers.push(() => makeCharacter(
  23428. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23429. {
  23430. side: {
  23431. height: math.unit(5 + 11 / 12, "feet"),
  23432. weight: math.unit(1400, "lb"),
  23433. name: "Side",
  23434. image: {
  23435. source: "./media/characters/shadow-blade/side.svg",
  23436. extra: 1726 / 1267,
  23437. bottom: 58.4 / 1785
  23438. }
  23439. },
  23440. },
  23441. [
  23442. {
  23443. name: "Normal",
  23444. height: math.unit(5 + 11 / 12, "feet"),
  23445. default: true
  23446. },
  23447. ]
  23448. ))
  23449. characterMakers.push(() => makeCharacter(
  23450. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23451. {
  23452. front: {
  23453. height: math.unit(1 + 6 / 12, "feet"),
  23454. weight: math.unit(25, "lb"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/karla-halldor/front.svg",
  23458. extra: 1459 / 1383,
  23459. bottom: 12 / 1472
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Normal",
  23466. height: math.unit(1 + 6 / 12, "feet"),
  23467. default: true
  23468. },
  23469. ]
  23470. ))
  23471. characterMakers.push(() => makeCharacter(
  23472. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23473. {
  23474. front: {
  23475. height: math.unit(6 + 2 / 12, "feet"),
  23476. weight: math.unit(160, "lb"),
  23477. name: "Front",
  23478. image: {
  23479. source: "./media/characters/ariam/front.svg",
  23480. extra: 714 / 617,
  23481. bottom: 23.4 / 737,
  23482. }
  23483. },
  23484. squatting: {
  23485. height: math.unit(4.1, "feet"),
  23486. weight: math.unit(160, "lb"),
  23487. name: "Squatting",
  23488. image: {
  23489. source: "./media/characters/ariam/squatting.svg",
  23490. extra: 2617 / 2112,
  23491. bottom: 61.2 / 2681,
  23492. }
  23493. },
  23494. },
  23495. [
  23496. {
  23497. name: "Normal",
  23498. height: math.unit(6 + 2 / 12, "feet"),
  23499. default: true
  23500. },
  23501. {
  23502. name: "Normal+",
  23503. height: math.unit(4, "meters")
  23504. },
  23505. {
  23506. name: "Macro",
  23507. height: math.unit(50, "meters")
  23508. },
  23509. {
  23510. name: "Macro+",
  23511. height: math.unit(100, "meters")
  23512. },
  23513. {
  23514. name: "Megamacro",
  23515. height: math.unit(20, "km")
  23516. },
  23517. ]
  23518. ))
  23519. characterMakers.push(() => makeCharacter(
  23520. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23521. {
  23522. front: {
  23523. height: math.unit(1.67, "meters"),
  23524. weight: math.unit(140, "lb"),
  23525. name: "Front",
  23526. image: {
  23527. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23528. extra: 438 / 410,
  23529. bottom: 0.75 / 439
  23530. }
  23531. },
  23532. },
  23533. [
  23534. {
  23535. name: "Shrunken",
  23536. height: math.unit(7.6, "cm")
  23537. },
  23538. {
  23539. name: "Human Scale",
  23540. height: math.unit(1.67, "meters")
  23541. },
  23542. {
  23543. name: "Wolxi Scale",
  23544. height: math.unit(36.7, "meters"),
  23545. default: true
  23546. },
  23547. ]
  23548. ))
  23549. characterMakers.push(() => makeCharacter(
  23550. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23551. {
  23552. front: {
  23553. height: math.unit(1.73, "meters"),
  23554. weight: math.unit(240, "lb"),
  23555. name: "Front",
  23556. image: {
  23557. source: "./media/characters/izue-two-mothers/front.svg",
  23558. extra: 469 / 437,
  23559. bottom: 1.24 / 470.6
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Shrunken",
  23566. height: math.unit(7.86, "cm")
  23567. },
  23568. {
  23569. name: "Human Scale",
  23570. height: math.unit(1.73, "meters")
  23571. },
  23572. {
  23573. name: "Wolxi Scale",
  23574. height: math.unit(38, "meters"),
  23575. default: true
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(1.55, "meters"),
  23584. weight: math.unit(120, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/teeku-love-shack/front.svg",
  23588. extra: 387 / 362,
  23589. bottom: 1.51 / 388
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Shrunken",
  23596. height: math.unit(7, "cm")
  23597. },
  23598. {
  23599. name: "Human Scale",
  23600. height: math.unit(1.55, "meters")
  23601. },
  23602. {
  23603. name: "Wolxi Scale",
  23604. height: math.unit(34.1, "meters"),
  23605. default: true
  23606. },
  23607. ]
  23608. ))
  23609. characterMakers.push(() => makeCharacter(
  23610. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23611. {
  23612. front: {
  23613. height: math.unit(1.83, "meters"),
  23614. weight: math.unit(135, "lb"),
  23615. name: "Front",
  23616. image: {
  23617. source: "./media/characters/dejma-the-red/front.svg",
  23618. extra: 480 / 458,
  23619. bottom: 1.8 / 482
  23620. }
  23621. },
  23622. },
  23623. [
  23624. {
  23625. name: "Shrunken",
  23626. height: math.unit(8.3, "cm")
  23627. },
  23628. {
  23629. name: "Human Scale",
  23630. height: math.unit(1.83, "meters")
  23631. },
  23632. {
  23633. name: "Wolxi Scale",
  23634. height: math.unit(40, "meters"),
  23635. default: true
  23636. },
  23637. ]
  23638. ))
  23639. characterMakers.push(() => makeCharacter(
  23640. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23641. {
  23642. front: {
  23643. height: math.unit(1.78, "meters"),
  23644. weight: math.unit(65, "kg"),
  23645. name: "Front",
  23646. image: {
  23647. source: "./media/characters/aki/front.svg",
  23648. extra: 452 / 415
  23649. }
  23650. },
  23651. frontNsfw: {
  23652. height: math.unit(1.78, "meters"),
  23653. weight: math.unit(65, "kg"),
  23654. name: "Front (NSFW)",
  23655. image: {
  23656. source: "./media/characters/aki/front-nsfw.svg",
  23657. extra: 452 / 415
  23658. }
  23659. },
  23660. back: {
  23661. height: math.unit(1.78, "meters"),
  23662. weight: math.unit(65, "kg"),
  23663. name: "Back",
  23664. image: {
  23665. source: "./media/characters/aki/back.svg",
  23666. extra: 452 / 415
  23667. }
  23668. },
  23669. rump: {
  23670. height: math.unit(2.05, "feet"),
  23671. name: "Rump",
  23672. image: {
  23673. source: "./media/characters/aki/rump.svg"
  23674. }
  23675. },
  23676. dick: {
  23677. height: math.unit(0.95, "feet"),
  23678. name: "Dick",
  23679. image: {
  23680. source: "./media/characters/aki/dick.svg"
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Micro",
  23687. height: math.unit(15, "cm")
  23688. },
  23689. {
  23690. name: "Normal",
  23691. height: math.unit(178, "cm"),
  23692. default: true
  23693. },
  23694. {
  23695. name: "Macro",
  23696. height: math.unit(214, "m")
  23697. },
  23698. {
  23699. name: "Macro+",
  23700. height: math.unit(534, "m")
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23706. {
  23707. front: {
  23708. height: math.unit(5 + 5 / 12, "feet"),
  23709. weight: math.unit(120, "lb"),
  23710. name: "Front",
  23711. image: {
  23712. source: "./media/characters/ari/front.svg",
  23713. extra: 714.5 / 682,
  23714. bottom: 8 / 722.5
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Normal",
  23721. height: math.unit(5 + 5 / 12, "feet")
  23722. },
  23723. {
  23724. name: "Macro",
  23725. height: math.unit(100, "feet"),
  23726. default: true
  23727. },
  23728. {
  23729. name: "Megamacro",
  23730. height: math.unit(100, "miles")
  23731. },
  23732. {
  23733. name: "Gigamacro",
  23734. height: math.unit(80000, "miles")
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23740. {
  23741. side: {
  23742. height: math.unit(9, "feet"),
  23743. weight: math.unit(400, "kg"),
  23744. name: "Side",
  23745. image: {
  23746. source: "./media/characters/bolt/side.svg",
  23747. extra: 1126 / 896,
  23748. bottom: 60 / 1187.3,
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Micro",
  23755. height: math.unit(5, "inches")
  23756. },
  23757. {
  23758. name: "Normal",
  23759. height: math.unit(9, "feet"),
  23760. default: true
  23761. },
  23762. {
  23763. name: "Macro",
  23764. height: math.unit(700, "feet")
  23765. },
  23766. {
  23767. name: "Max Size",
  23768. height: math.unit(1.52e22, "yottameters")
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23774. {
  23775. front: {
  23776. height: math.unit(4.53, "meters"),
  23777. weight: math.unit(3, "tons"),
  23778. name: "Front",
  23779. image: {
  23780. source: "./media/characters/draekon-sylviar/front.svg",
  23781. extra: 1228 / 1068,
  23782. bottom: 41 / 1270
  23783. }
  23784. },
  23785. tail: {
  23786. height: math.unit(1.772, "meter"),
  23787. name: "Tail",
  23788. image: {
  23789. source: "./media/characters/draekon-sylviar/tail.svg"
  23790. }
  23791. },
  23792. head: {
  23793. height: math.unit(1.331, "meter"),
  23794. name: "Head",
  23795. image: {
  23796. source: "./media/characters/draekon-sylviar/head.svg"
  23797. }
  23798. },
  23799. hand: {
  23800. height: math.unit(0.564, "meter"),
  23801. name: "Hand",
  23802. image: {
  23803. source: "./media/characters/draekon-sylviar/hand.svg"
  23804. }
  23805. },
  23806. foot: {
  23807. height: math.unit(0.621, "meter"),
  23808. name: "Foot",
  23809. image: {
  23810. source: "./media/characters/draekon-sylviar/foot.svg",
  23811. bottom: 32 / 324
  23812. }
  23813. },
  23814. dick: {
  23815. height: math.unit(61, "cm"),
  23816. name: "Dick",
  23817. image: {
  23818. source: "./media/characters/draekon-sylviar/dick.svg"
  23819. }
  23820. },
  23821. dickseparated: {
  23822. height: math.unit(61, "cm"),
  23823. name: "Dick-separated",
  23824. image: {
  23825. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23826. }
  23827. },
  23828. },
  23829. [
  23830. {
  23831. name: "Small",
  23832. height: math.unit(4.53 / 2, "meters"),
  23833. default: true
  23834. },
  23835. {
  23836. name: "Normal",
  23837. height: math.unit(4.53, "meters"),
  23838. default: true
  23839. },
  23840. {
  23841. name: "Large",
  23842. height: math.unit(4.53 * 2, "meters"),
  23843. },
  23844. ]
  23845. ))
  23846. characterMakers.push(() => makeCharacter(
  23847. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23848. {
  23849. front: {
  23850. height: math.unit(6 + 2 / 12, "feet"),
  23851. weight: math.unit(180, "lb"),
  23852. name: "Front",
  23853. image: {
  23854. source: "./media/characters/brawler/front.svg",
  23855. extra: 3301 / 3027,
  23856. bottom: 138 / 3439
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(6 + 2 / 12, "feet"),
  23864. default: true
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23870. {
  23871. front: {
  23872. height: math.unit(11, "feet"),
  23873. weight: math.unit(1000, "lb"),
  23874. name: "Front",
  23875. image: {
  23876. source: "./media/characters/alex/front.svg",
  23877. bottom: 44.5 / 620
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Micro",
  23884. height: math.unit(5, "inches")
  23885. },
  23886. {
  23887. name: "Normal",
  23888. height: math.unit(11, "feet"),
  23889. default: true
  23890. },
  23891. {
  23892. name: "Macro",
  23893. height: math.unit(9.5e9, "feet")
  23894. },
  23895. {
  23896. name: "Max Size",
  23897. height: math.unit(1.4e283, "yottameters")
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23903. {
  23904. female: {
  23905. height: math.unit(29.9, "m"),
  23906. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23907. name: "Female",
  23908. image: {
  23909. source: "./media/characters/zenari/female.svg",
  23910. extra: 3281.6 / 3217,
  23911. bottom: 72.2 / 3353
  23912. }
  23913. },
  23914. male: {
  23915. height: math.unit(27.7, "m"),
  23916. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23917. name: "Male",
  23918. image: {
  23919. source: "./media/characters/zenari/male.svg",
  23920. extra: 3008 / 2991,
  23921. bottom: 54.6 / 3069
  23922. }
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Macro",
  23928. height: math.unit(29.7, "meters"),
  23929. default: true
  23930. },
  23931. ]
  23932. ))
  23933. characterMakers.push(() => makeCharacter(
  23934. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23935. {
  23936. female: {
  23937. height: math.unit(23.8, "m"),
  23938. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23939. name: "Female",
  23940. image: {
  23941. source: "./media/characters/mactarian/female.svg",
  23942. extra: 2662 / 2569,
  23943. bottom: 73 / 2736
  23944. }
  23945. },
  23946. male: {
  23947. height: math.unit(23.8, "m"),
  23948. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23949. name: "Male",
  23950. image: {
  23951. source: "./media/characters/mactarian/male.svg",
  23952. extra: 2673 / 2600,
  23953. bottom: 76 / 2750
  23954. }
  23955. },
  23956. },
  23957. [
  23958. {
  23959. name: "Macro",
  23960. height: math.unit(23.8, "meters"),
  23961. default: true
  23962. },
  23963. ]
  23964. ))
  23965. characterMakers.push(() => makeCharacter(
  23966. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23967. {
  23968. female: {
  23969. height: math.unit(19.3, "m"),
  23970. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23971. name: "Female",
  23972. image: {
  23973. source: "./media/characters/umok/female.svg",
  23974. extra: 2186 / 2078,
  23975. bottom: 87 / 2277
  23976. }
  23977. },
  23978. male: {
  23979. height: math.unit(19.5, "m"),
  23980. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23981. name: "Male",
  23982. image: {
  23983. source: "./media/characters/umok/male.svg",
  23984. extra: 2233 / 2140,
  23985. bottom: 24.4 / 2258
  23986. }
  23987. },
  23988. },
  23989. [
  23990. {
  23991. name: "Macro",
  23992. height: math.unit(19.3, "meters"),
  23993. default: true
  23994. },
  23995. ]
  23996. ))
  23997. characterMakers.push(() => makeCharacter(
  23998. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23999. {
  24000. female: {
  24001. height: math.unit(26.15, "m"),
  24002. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24003. name: "Female",
  24004. image: {
  24005. source: "./media/characters/joraxian/female.svg",
  24006. extra: 2912 / 2824,
  24007. bottom: 36 / 2956
  24008. }
  24009. },
  24010. male: {
  24011. height: math.unit(25.4, "m"),
  24012. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24013. name: "Male",
  24014. image: {
  24015. source: "./media/characters/joraxian/male.svg",
  24016. extra: 2877 / 2721,
  24017. bottom: 82 / 2967
  24018. }
  24019. },
  24020. },
  24021. [
  24022. {
  24023. name: "Macro",
  24024. height: math.unit(26.15, "meters"),
  24025. default: true
  24026. },
  24027. ]
  24028. ))
  24029. characterMakers.push(() => makeCharacter(
  24030. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24031. {
  24032. female: {
  24033. height: math.unit(21.6, "m"),
  24034. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24035. name: "Female",
  24036. image: {
  24037. source: "./media/characters/sthara/female.svg",
  24038. extra: 2516 / 2347,
  24039. bottom: 21.5 / 2537
  24040. }
  24041. },
  24042. male: {
  24043. height: math.unit(24, "m"),
  24044. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24045. name: "Male",
  24046. image: {
  24047. source: "./media/characters/sthara/male.svg",
  24048. extra: 2732 / 2607,
  24049. bottom: 23 / 2732
  24050. }
  24051. },
  24052. },
  24053. [
  24054. {
  24055. name: "Macro",
  24056. height: math.unit(21.6, "meters"),
  24057. default: true
  24058. },
  24059. ]
  24060. ))
  24061. characterMakers.push(() => makeCharacter(
  24062. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24063. {
  24064. front: {
  24065. height: math.unit(6 + 4 / 12, "feet"),
  24066. weight: math.unit(175, "lb"),
  24067. name: "Front",
  24068. image: {
  24069. source: "./media/characters/luka-bryzant/front.svg",
  24070. extra: 311 / 289,
  24071. bottom: 4 / 315
  24072. }
  24073. },
  24074. back: {
  24075. height: math.unit(6 + 4 / 12, "feet"),
  24076. weight: math.unit(175, "lb"),
  24077. name: "Back",
  24078. image: {
  24079. source: "./media/characters/luka-bryzant/back.svg",
  24080. extra: 311 / 289,
  24081. bottom: 3.8 / 313.7
  24082. }
  24083. },
  24084. },
  24085. [
  24086. {
  24087. name: "Micro",
  24088. height: math.unit(10, "inches")
  24089. },
  24090. {
  24091. name: "Normal",
  24092. height: math.unit(6 + 4 / 12, "feet"),
  24093. default: true
  24094. },
  24095. {
  24096. name: "Large",
  24097. height: math.unit(12, "feet")
  24098. },
  24099. ]
  24100. ))
  24101. characterMakers.push(() => makeCharacter(
  24102. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24103. {
  24104. front: {
  24105. height: math.unit(5 + 7 / 12, "feet"),
  24106. weight: math.unit(185, "lb"),
  24107. name: "Front",
  24108. image: {
  24109. source: "./media/characters/aman-aquila/front.svg",
  24110. extra: 1013 / 976,
  24111. bottom: 45.6 / 1057
  24112. }
  24113. },
  24114. side: {
  24115. height: math.unit(5 + 7 / 12, "feet"),
  24116. weight: math.unit(185, "lb"),
  24117. name: "Side",
  24118. image: {
  24119. source: "./media/characters/aman-aquila/side.svg",
  24120. extra: 1054 / 1011,
  24121. bottom: 15 / 1070
  24122. }
  24123. },
  24124. back: {
  24125. height: math.unit(5 + 7 / 12, "feet"),
  24126. weight: math.unit(185, "lb"),
  24127. name: "Back",
  24128. image: {
  24129. source: "./media/characters/aman-aquila/back.svg",
  24130. extra: 1026 / 970,
  24131. bottom: 12 / 1039
  24132. }
  24133. },
  24134. head: {
  24135. height: math.unit(1.211, "feet"),
  24136. name: "Head",
  24137. image: {
  24138. source: "./media/characters/aman-aquila/head.svg",
  24139. }
  24140. },
  24141. },
  24142. [
  24143. {
  24144. name: "Minimicro",
  24145. height: math.unit(0.057, "inches")
  24146. },
  24147. {
  24148. name: "Micro",
  24149. height: math.unit(7, "inches")
  24150. },
  24151. {
  24152. name: "Mini",
  24153. height: math.unit(3 + 7 / 12, "feet")
  24154. },
  24155. {
  24156. name: "Normal",
  24157. height: math.unit(5 + 7 / 12, "feet"),
  24158. default: true
  24159. },
  24160. {
  24161. name: "Macro",
  24162. height: math.unit(157 + 7 / 12, "feet")
  24163. },
  24164. {
  24165. name: "Megamacro",
  24166. height: math.unit(1557 + 7 / 12, "feet")
  24167. },
  24168. {
  24169. name: "Gigamacro",
  24170. height: math.unit(15557 + 7 / 12, "feet")
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24176. {
  24177. front: {
  24178. height: math.unit(3 + 2 / 12, "inches"),
  24179. weight: math.unit(0.3, "ounces"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/hiphae/front.svg",
  24183. extra: 1931 / 1683,
  24184. bottom: 24 / 1955
  24185. }
  24186. },
  24187. },
  24188. [
  24189. {
  24190. name: "Normal",
  24191. height: math.unit(3 + 1 / 2, "inches"),
  24192. default: true
  24193. },
  24194. ]
  24195. ))
  24196. characterMakers.push(() => makeCharacter(
  24197. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24198. {
  24199. front: {
  24200. height: math.unit(5 + 10 / 12, "feet"),
  24201. weight: math.unit(165, "lb"),
  24202. name: "Front",
  24203. image: {
  24204. source: "./media/characters/nicky/front.svg",
  24205. extra: 3144 / 2886,
  24206. bottom: 45.6 / 3192
  24207. }
  24208. },
  24209. back: {
  24210. height: math.unit(5 + 10 / 12, "feet"),
  24211. weight: math.unit(165, "lb"),
  24212. name: "Back",
  24213. image: {
  24214. source: "./media/characters/nicky/back.svg",
  24215. extra: 3055 / 2804,
  24216. bottom: 28.4 / 3087
  24217. }
  24218. },
  24219. frontclothed: {
  24220. height: math.unit(5 + 10 / 12, "feet"),
  24221. weight: math.unit(165, "lb"),
  24222. name: "Front-clothed",
  24223. image: {
  24224. source: "./media/characters/nicky/front-clothed.svg",
  24225. extra: 3184.9 / 2926.9,
  24226. bottom: 86.5 / 3239.9
  24227. }
  24228. },
  24229. foot: {
  24230. height: math.unit(1.16, "feet"),
  24231. name: "Foot",
  24232. image: {
  24233. source: "./media/characters/nicky/foot.svg"
  24234. }
  24235. },
  24236. feet: {
  24237. height: math.unit(1.34, "feet"),
  24238. name: "Feet",
  24239. image: {
  24240. source: "./media/characters/nicky/feet.svg"
  24241. }
  24242. },
  24243. maw: {
  24244. height: math.unit(0.9, "feet"),
  24245. name: "Maw",
  24246. image: {
  24247. source: "./media/characters/nicky/maw.svg"
  24248. }
  24249. },
  24250. },
  24251. [
  24252. {
  24253. name: "Normal",
  24254. height: math.unit(5 + 10 / 12, "feet"),
  24255. default: true
  24256. },
  24257. {
  24258. name: "Macro",
  24259. height: math.unit(60, "feet")
  24260. },
  24261. {
  24262. name: "Megamacro",
  24263. height: math.unit(1, "mile")
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24269. {
  24270. side: {
  24271. height: math.unit(10, "feet"),
  24272. weight: math.unit(600, "lb"),
  24273. name: "Side",
  24274. image: {
  24275. source: "./media/characters/blair/side.svg",
  24276. bottom: 16.6 / 475,
  24277. extra: 458 / 431
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Micro",
  24284. height: math.unit(8, "inches")
  24285. },
  24286. {
  24287. name: "Normal",
  24288. height: math.unit(10, "feet"),
  24289. default: true
  24290. },
  24291. {
  24292. name: "Macro",
  24293. height: math.unit(180, "feet")
  24294. },
  24295. ]
  24296. ))
  24297. characterMakers.push(() => makeCharacter(
  24298. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24299. {
  24300. front: {
  24301. height: math.unit(5 + 4 / 12, "feet"),
  24302. weight: math.unit(125, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/fisher/front.svg",
  24306. extra: 444 / 390,
  24307. bottom: 2 / 444.8
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Micro",
  24314. height: math.unit(4, "inches")
  24315. },
  24316. {
  24317. name: "Normal",
  24318. height: math.unit(5 + 4 / 12, "feet"),
  24319. default: true
  24320. },
  24321. {
  24322. name: "Macro",
  24323. height: math.unit(100, "feet")
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24329. {
  24330. front: {
  24331. height: math.unit(6.71, "feet"),
  24332. weight: math.unit(200, "lb"),
  24333. capacity: math.unit(1000000, "people"),
  24334. name: "Front",
  24335. image: {
  24336. source: "./media/characters/gliss/front.svg",
  24337. extra: 2347 / 2231,
  24338. bottom: 113 / 2462
  24339. }
  24340. },
  24341. hammerspaceSize: {
  24342. height: math.unit(6.71 * 717, "feet"),
  24343. weight: math.unit(200, "lb"),
  24344. capacity: math.unit(1000000, "people"),
  24345. name: "Hammerspace Size",
  24346. image: {
  24347. source: "./media/characters/gliss/front.svg",
  24348. extra: 2347 / 2231,
  24349. bottom: 113 / 2462
  24350. }
  24351. },
  24352. },
  24353. [
  24354. {
  24355. name: "Normal",
  24356. height: math.unit(6.71, "feet"),
  24357. default: true
  24358. },
  24359. ]
  24360. ))
  24361. characterMakers.push(() => makeCharacter(
  24362. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24363. {
  24364. side: {
  24365. height: math.unit(1.44, "m"),
  24366. weight: math.unit(80, "kg"),
  24367. name: "Side",
  24368. image: {
  24369. source: "./media/characters/dune-anderson/side.svg",
  24370. bottom: 49 / 1426
  24371. }
  24372. },
  24373. },
  24374. [
  24375. {
  24376. name: "Wolf-sized",
  24377. height: math.unit(1.44, "meters")
  24378. },
  24379. {
  24380. name: "Normal",
  24381. height: math.unit(5.05, "meters"),
  24382. default: true
  24383. },
  24384. {
  24385. name: "Big",
  24386. height: math.unit(14.4, "meters")
  24387. },
  24388. {
  24389. name: "Huge",
  24390. height: math.unit(144, "meters")
  24391. },
  24392. ]
  24393. ))
  24394. characterMakers.push(() => makeCharacter(
  24395. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24396. {
  24397. front: {
  24398. height: math.unit(7, "feet"),
  24399. weight: math.unit(425, "lb"),
  24400. name: "Front",
  24401. image: {
  24402. source: "./media/characters/hind/front.svg",
  24403. extra: 2091 / 1860,
  24404. bottom: 129 / 2220
  24405. }
  24406. },
  24407. back: {
  24408. height: math.unit(7, "feet"),
  24409. weight: math.unit(425, "lb"),
  24410. name: "Back",
  24411. image: {
  24412. source: "./media/characters/hind/back.svg",
  24413. extra: 2091 / 1860,
  24414. bottom: 24.6 / 2309
  24415. }
  24416. },
  24417. tail: {
  24418. height: math.unit(2.8, "feet"),
  24419. name: "Tail",
  24420. image: {
  24421. source: "./media/characters/hind/tail.svg"
  24422. }
  24423. },
  24424. head: {
  24425. height: math.unit(2.55, "feet"),
  24426. name: "Head",
  24427. image: {
  24428. source: "./media/characters/hind/head.svg"
  24429. }
  24430. },
  24431. },
  24432. [
  24433. {
  24434. name: "XS",
  24435. height: math.unit(0.7, "feet")
  24436. },
  24437. {
  24438. name: "Normal",
  24439. height: math.unit(7, "feet"),
  24440. default: true
  24441. },
  24442. {
  24443. name: "XL",
  24444. height: math.unit(70, "feet")
  24445. },
  24446. ]
  24447. ))
  24448. characterMakers.push(() => makeCharacter(
  24449. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24450. {
  24451. front: {
  24452. height: math.unit(6, "feet"),
  24453. weight: math.unit(150, "lb"),
  24454. name: "Front",
  24455. image: {
  24456. source: "./media/characters/dylan-skaven/front.svg",
  24457. extra: 2318 / 2063,
  24458. bottom: 93.4 / 2410
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Nano",
  24465. height: math.unit(1, "mm")
  24466. },
  24467. {
  24468. name: "Micro",
  24469. height: math.unit(1, "cm")
  24470. },
  24471. {
  24472. name: "Normal",
  24473. height: math.unit(2.1, "meters"),
  24474. default: true
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24480. {
  24481. front: {
  24482. height: math.unit(7 + 5 / 12, "feet"),
  24483. weight: math.unit(357, "lb"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/solex-draconov/front.svg",
  24487. extra: 1993 / 1865,
  24488. bottom: 117 / 2111
  24489. }
  24490. },
  24491. },
  24492. [
  24493. {
  24494. name: "Natural Height",
  24495. height: math.unit(7 + 5 / 12, "feet"),
  24496. default: true
  24497. },
  24498. {
  24499. name: "Macro",
  24500. height: math.unit(350, "feet")
  24501. },
  24502. {
  24503. name: "Macro+",
  24504. height: math.unit(1000, "feet")
  24505. },
  24506. {
  24507. name: "Megamacro",
  24508. height: math.unit(20, "km")
  24509. },
  24510. {
  24511. name: "Megamacro+",
  24512. height: math.unit(1000, "km")
  24513. },
  24514. {
  24515. name: "Gigamacro",
  24516. height: math.unit(2.5, "Gm")
  24517. },
  24518. {
  24519. name: "Teramacro",
  24520. height: math.unit(15, "Tm")
  24521. },
  24522. {
  24523. name: "Galactic",
  24524. height: math.unit(30, "Zm")
  24525. },
  24526. {
  24527. name: "Universal",
  24528. height: math.unit(21000, "Ym")
  24529. },
  24530. {
  24531. name: "Omniversal",
  24532. height: math.unit(9.861e50, "Ym")
  24533. },
  24534. {
  24535. name: "Existential",
  24536. height: math.unit(1e300, "meters")
  24537. },
  24538. ]
  24539. ))
  24540. characterMakers.push(() => makeCharacter(
  24541. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24542. {
  24543. side: {
  24544. height: math.unit(25, "feet"),
  24545. weight: math.unit(90000, "lb"),
  24546. name: "Side",
  24547. image: {
  24548. source: "./media/characters/mandarax/side.svg",
  24549. extra: 614 / 332,
  24550. bottom: 55 / 630
  24551. }
  24552. },
  24553. head: {
  24554. height: math.unit(11.4, "feet"),
  24555. name: "Head",
  24556. image: {
  24557. source: "./media/characters/mandarax/head.svg"
  24558. }
  24559. },
  24560. belly: {
  24561. height: math.unit(33, "feet"),
  24562. name: "Belly",
  24563. capacity: math.unit(500, "people"),
  24564. image: {
  24565. source: "./media/characters/mandarax/belly.svg"
  24566. }
  24567. },
  24568. dick: {
  24569. height: math.unit(8.46, "feet"),
  24570. name: "Dick",
  24571. image: {
  24572. source: "./media/characters/mandarax/dick.svg"
  24573. }
  24574. },
  24575. top: {
  24576. height: math.unit(28, "meters"),
  24577. name: "Top",
  24578. image: {
  24579. source: "./media/characters/mandarax/top.svg"
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Normal",
  24586. height: math.unit(25, "feet"),
  24587. default: true
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(5, "feet"),
  24596. weight: math.unit(90, "lb"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/pixil/front.svg",
  24600. extra: 2000 / 1618,
  24601. bottom: 12.3 / 2011
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(5, "feet"),
  24609. default: true
  24610. },
  24611. {
  24612. name: "Megamacro",
  24613. height: math.unit(10, "miles"),
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(7 + 2 / 12, "feet"),
  24622. weight: math.unit(200, "lb"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/angel/front.svg",
  24626. extra: 1830 / 1737,
  24627. bottom: 22.6 / 1854,
  24628. }
  24629. },
  24630. },
  24631. [
  24632. {
  24633. name: "Normal",
  24634. height: math.unit(7 + 2 / 12, "feet"),
  24635. default: true
  24636. },
  24637. {
  24638. name: "Macro",
  24639. height: math.unit(1000, "feet")
  24640. },
  24641. {
  24642. name: "Megamacro",
  24643. height: math.unit(2, "miles")
  24644. },
  24645. {
  24646. name: "Gigamacro",
  24647. height: math.unit(20, "earths")
  24648. },
  24649. ]
  24650. ))
  24651. characterMakers.push(() => makeCharacter(
  24652. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24653. {
  24654. front: {
  24655. height: math.unit(5, "feet"),
  24656. weight: math.unit(180, "lb"),
  24657. name: "Front",
  24658. image: {
  24659. source: "./media/characters/mekana/front.svg",
  24660. extra: 1671 / 1605,
  24661. bottom: 3.5 / 1691
  24662. }
  24663. },
  24664. side: {
  24665. height: math.unit(5, "feet"),
  24666. weight: math.unit(180, "lb"),
  24667. name: "Side",
  24668. image: {
  24669. source: "./media/characters/mekana/side.svg",
  24670. extra: 1671 / 1605,
  24671. bottom: 3.5 / 1691
  24672. }
  24673. },
  24674. back: {
  24675. height: math.unit(5, "feet"),
  24676. weight: math.unit(180, "lb"),
  24677. name: "Back",
  24678. image: {
  24679. source: "./media/characters/mekana/back.svg",
  24680. extra: 1671 / 1605,
  24681. bottom: 3.5 / 1691
  24682. }
  24683. },
  24684. },
  24685. [
  24686. {
  24687. name: "Normal",
  24688. height: math.unit(5, "feet"),
  24689. default: true
  24690. },
  24691. ]
  24692. ))
  24693. characterMakers.push(() => makeCharacter(
  24694. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24695. {
  24696. front: {
  24697. height: math.unit(4 + 6 / 12, "feet"),
  24698. weight: math.unit(80, "lb"),
  24699. name: "Front",
  24700. image: {
  24701. source: "./media/characters/pixie/front.svg",
  24702. extra: 1924 / 1825,
  24703. bottom: 22.4 / 1946
  24704. }
  24705. },
  24706. },
  24707. [
  24708. {
  24709. name: "Normal",
  24710. height: math.unit(4 + 6 / 12, "feet"),
  24711. default: true
  24712. },
  24713. {
  24714. name: "Macro",
  24715. height: math.unit(40, "feet")
  24716. },
  24717. ]
  24718. ))
  24719. characterMakers.push(() => makeCharacter(
  24720. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24721. {
  24722. front: {
  24723. height: math.unit(2.1, "meters"),
  24724. weight: math.unit(200, "lb"),
  24725. name: "Front",
  24726. image: {
  24727. source: "./media/characters/the-lascivious/front.svg",
  24728. extra: 1 / 0.893,
  24729. bottom: 3.5 / 573.7
  24730. }
  24731. },
  24732. },
  24733. [
  24734. {
  24735. name: "Human Scale",
  24736. height: math.unit(2.1, "meters")
  24737. },
  24738. {
  24739. name: "Wolxi Scale",
  24740. height: math.unit(46.2, "m"),
  24741. default: true
  24742. },
  24743. {
  24744. name: "Boinker of Buildings",
  24745. height: math.unit(10, "km")
  24746. },
  24747. {
  24748. name: "Shagger of Skyscrapers",
  24749. height: math.unit(40, "km")
  24750. },
  24751. {
  24752. name: "Banger of Boroughs",
  24753. height: math.unit(4000, "km")
  24754. },
  24755. {
  24756. name: "Screwer of States",
  24757. height: math.unit(100000, "km")
  24758. },
  24759. {
  24760. name: "Pounder of Planets",
  24761. height: math.unit(2000000, "km")
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(6, "feet"),
  24770. weight: math.unit(150, "lb"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/aj/front.svg",
  24774. extra: 2039 / 1562,
  24775. bottom: 40 / 2079
  24776. }
  24777. },
  24778. },
  24779. [
  24780. {
  24781. name: "Normal",
  24782. height: math.unit(11 + 6 / 12, "feet"),
  24783. default: true
  24784. },
  24785. {
  24786. name: "Megamacro",
  24787. height: math.unit(60, "megameters")
  24788. },
  24789. ]
  24790. ))
  24791. characterMakers.push(() => makeCharacter(
  24792. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24793. {
  24794. side: {
  24795. height: math.unit(31 + 8 / 12, "feet"),
  24796. weight: math.unit(75000, "kg"),
  24797. name: "Side",
  24798. image: {
  24799. source: "./media/characters/koros/side.svg",
  24800. extra: 1442 / 1297,
  24801. bottom: 122.7 / 1562
  24802. }
  24803. },
  24804. dicksKingsCrown: {
  24805. height: math.unit(6, "feet"),
  24806. name: "Dicks (King's Crown)",
  24807. image: {
  24808. source: "./media/characters/koros/dicks-kings-crown.svg"
  24809. }
  24810. },
  24811. dicksTailSet: {
  24812. height: math.unit(3, "feet"),
  24813. name: "Dicks (Tail Set)",
  24814. image: {
  24815. source: "./media/characters/koros/dicks-tail-set.svg"
  24816. }
  24817. },
  24818. dickCumming: {
  24819. height: math.unit(7.98, "feet"),
  24820. name: "Dick (Cumming)",
  24821. image: {
  24822. source: "./media/characters/koros/dick-cumming.svg"
  24823. }
  24824. },
  24825. dicksBack: {
  24826. height: math.unit(5.9, "feet"),
  24827. name: "Dicks (Back)",
  24828. image: {
  24829. source: "./media/characters/koros/dicks-back.svg"
  24830. }
  24831. },
  24832. dicksFront: {
  24833. height: math.unit(3.72, "feet"),
  24834. name: "Dicks (Front)",
  24835. image: {
  24836. source: "./media/characters/koros/dicks-front.svg"
  24837. }
  24838. },
  24839. dicksPeeking: {
  24840. height: math.unit(3.0, "feet"),
  24841. name: "Dicks (Peeking)",
  24842. image: {
  24843. source: "./media/characters/koros/dicks-peeking.svg"
  24844. }
  24845. },
  24846. eye: {
  24847. height: math.unit(1.7, "feet"),
  24848. name: "Eye",
  24849. image: {
  24850. source: "./media/characters/koros/eye.svg"
  24851. }
  24852. },
  24853. headFront: {
  24854. height: math.unit(11.69, "feet"),
  24855. name: "Head (Front)",
  24856. image: {
  24857. source: "./media/characters/koros/head-front.svg"
  24858. }
  24859. },
  24860. headSide: {
  24861. height: math.unit(14, "feet"),
  24862. name: "Head (Side)",
  24863. image: {
  24864. source: "./media/characters/koros/head-side.svg"
  24865. }
  24866. },
  24867. leg: {
  24868. height: math.unit(17, "feet"),
  24869. name: "Leg",
  24870. image: {
  24871. source: "./media/characters/koros/leg.svg"
  24872. }
  24873. },
  24874. mawSide: {
  24875. height: math.unit(12.8, "feet"),
  24876. name: "Maw (Side)",
  24877. image: {
  24878. source: "./media/characters/koros/maw-side.svg"
  24879. }
  24880. },
  24881. mawSpitting: {
  24882. height: math.unit(17, "feet"),
  24883. name: "Maw (Spitting)",
  24884. image: {
  24885. source: "./media/characters/koros/maw-spitting.svg"
  24886. }
  24887. },
  24888. slit: {
  24889. height: math.unit(2.8, "feet"),
  24890. name: "Slit",
  24891. image: {
  24892. source: "./media/characters/koros/slit.svg"
  24893. }
  24894. },
  24895. stomach: {
  24896. height: math.unit(6.8, "feet"),
  24897. capacity: math.unit(20, "people"),
  24898. name: "Stomach",
  24899. image: {
  24900. source: "./media/characters/koros/stomach.svg"
  24901. }
  24902. },
  24903. wingspanBottom: {
  24904. height: math.unit(114, "feet"),
  24905. name: "Wingspan (Bottom)",
  24906. image: {
  24907. source: "./media/characters/koros/wingspan-bottom.svg"
  24908. }
  24909. },
  24910. wingspanTop: {
  24911. height: math.unit(104, "feet"),
  24912. name: "Wingspan (Top)",
  24913. image: {
  24914. source: "./media/characters/koros/wingspan-top.svg"
  24915. }
  24916. },
  24917. },
  24918. [
  24919. {
  24920. name: "Normal",
  24921. height: math.unit(31 + 8 / 12, "feet"),
  24922. default: true
  24923. },
  24924. ]
  24925. ))
  24926. characterMakers.push(() => makeCharacter(
  24927. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24928. {
  24929. front: {
  24930. height: math.unit(18 + 5 / 12, "feet"),
  24931. weight: math.unit(3750, "kg"),
  24932. name: "Front",
  24933. image: {
  24934. source: "./media/characters/vexx/front.svg",
  24935. extra: 426 / 396,
  24936. bottom: 31.5 / 458
  24937. }
  24938. },
  24939. maw: {
  24940. height: math.unit(6, "feet"),
  24941. name: "Maw",
  24942. image: {
  24943. source: "./media/characters/vexx/maw.svg"
  24944. }
  24945. },
  24946. },
  24947. [
  24948. {
  24949. name: "Normal",
  24950. height: math.unit(18 + 5 / 12, "feet"),
  24951. default: true
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24957. {
  24958. front: {
  24959. height: math.unit(17 + 6 / 12, "feet"),
  24960. weight: math.unit(150, "lb"),
  24961. name: "Front",
  24962. image: {
  24963. source: "./media/characters/baadra/front.svg",
  24964. extra: 3137 / 2890,
  24965. bottom: 168.4 / 3305
  24966. }
  24967. },
  24968. back: {
  24969. height: math.unit(17 + 6 / 12, "feet"),
  24970. weight: math.unit(150, "lb"),
  24971. name: "Back",
  24972. image: {
  24973. source: "./media/characters/baadra/back.svg",
  24974. extra: 3142 / 2890,
  24975. bottom: 220 / 3371
  24976. }
  24977. },
  24978. head: {
  24979. height: math.unit(5.45, "feet"),
  24980. name: "Head",
  24981. image: {
  24982. source: "./media/characters/baadra/head.svg"
  24983. }
  24984. },
  24985. headAngry: {
  24986. height: math.unit(4.95, "feet"),
  24987. name: "Head (Angry)",
  24988. image: {
  24989. source: "./media/characters/baadra/head-angry.svg"
  24990. }
  24991. },
  24992. headOpen: {
  24993. height: math.unit(6, "feet"),
  24994. name: "Head (Open)",
  24995. image: {
  24996. source: "./media/characters/baadra/head-open.svg"
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Normal",
  25003. height: math.unit(17 + 6 / 12, "feet"),
  25004. default: true
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(7 + 3 / 12, "feet"),
  25013. weight: math.unit(180, "lb"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/juri/front.svg",
  25017. extra: 1401 / 1237,
  25018. bottom: 18.5 / 1418
  25019. }
  25020. },
  25021. side: {
  25022. height: math.unit(7 + 3 / 12, "feet"),
  25023. weight: math.unit(180, "lb"),
  25024. name: "Side",
  25025. image: {
  25026. source: "./media/characters/juri/side.svg",
  25027. extra: 1424 / 1242,
  25028. bottom: 18.5 / 1447
  25029. }
  25030. },
  25031. sitting: {
  25032. height: math.unit(6, "feet"),
  25033. weight: math.unit(180, "lb"),
  25034. name: "Sitting",
  25035. image: {
  25036. source: "./media/characters/juri/sitting.svg",
  25037. extra: 1270 / 1143,
  25038. bottom: 100 / 1343
  25039. }
  25040. },
  25041. back: {
  25042. height: math.unit(7 + 3 / 12, "feet"),
  25043. weight: math.unit(180, "lb"),
  25044. name: "Back",
  25045. image: {
  25046. source: "./media/characters/juri/back.svg",
  25047. extra: 1377 / 1240,
  25048. bottom: 23.7 / 1405
  25049. }
  25050. },
  25051. maw: {
  25052. height: math.unit(2.8, "feet"),
  25053. name: "Maw",
  25054. image: {
  25055. source: "./media/characters/juri/maw.svg"
  25056. }
  25057. },
  25058. stomach: {
  25059. height: math.unit(0.89, "feet"),
  25060. capacity: math.unit(4, "liters"),
  25061. name: "Stomach",
  25062. image: {
  25063. source: "./media/characters/juri/stomach.svg"
  25064. }
  25065. },
  25066. },
  25067. [
  25068. {
  25069. name: "Normal",
  25070. height: math.unit(7 + 3 / 12, "feet"),
  25071. default: true
  25072. },
  25073. ]
  25074. ))
  25075. characterMakers.push(() => makeCharacter(
  25076. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25077. {
  25078. fox: {
  25079. height: math.unit(5 + 6 / 12, "feet"),
  25080. weight: math.unit(140, "lb"),
  25081. name: "Fox",
  25082. image: {
  25083. source: "./media/characters/maxene-sita/fox.svg",
  25084. extra: 146 / 138,
  25085. bottom: 2.1 / 148.19
  25086. }
  25087. },
  25088. foxLaying: {
  25089. height: math.unit(1.70, "feet"),
  25090. weight: math.unit(140, "lb"),
  25091. name: "Fox (Laying)",
  25092. image: {
  25093. source: "./media/characters/maxene-sita/fox-laying.svg",
  25094. extra: 910 / 572,
  25095. bottom: 71 / 981
  25096. }
  25097. },
  25098. kitsune: {
  25099. height: math.unit(10, "feet"),
  25100. weight: math.unit(800, "lb"),
  25101. name: "Kitsune",
  25102. image: {
  25103. source: "./media/characters/maxene-sita/kitsune.svg",
  25104. extra: 185 / 176,
  25105. bottom: 4.7 / 189.9
  25106. }
  25107. },
  25108. hellhound: {
  25109. height: math.unit(10, "feet"),
  25110. weight: math.unit(700, "lb"),
  25111. name: "Hellhound",
  25112. image: {
  25113. source: "./media/characters/maxene-sita/hellhound.svg",
  25114. extra: 1600 / 1545,
  25115. bottom: 81 / 1681
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Normal",
  25122. height: math.unit(5 + 6 / 12, "feet"),
  25123. default: true
  25124. },
  25125. ]
  25126. ))
  25127. characterMakers.push(() => makeCharacter(
  25128. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25129. {
  25130. front: {
  25131. height: math.unit(3 + 4 / 12, "feet"),
  25132. weight: math.unit(70, "lb"),
  25133. name: "Front",
  25134. image: {
  25135. source: "./media/characters/maia/front.svg",
  25136. extra: 227 / 219.5,
  25137. bottom: 40 / 267
  25138. }
  25139. },
  25140. back: {
  25141. height: math.unit(3 + 4 / 12, "feet"),
  25142. weight: math.unit(70, "lb"),
  25143. name: "Back",
  25144. image: {
  25145. source: "./media/characters/maia/back.svg",
  25146. extra: 237 / 225
  25147. }
  25148. },
  25149. },
  25150. [
  25151. {
  25152. name: "Normal",
  25153. height: math.unit(3 + 4 / 12, "feet"),
  25154. default: true
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25160. {
  25161. front: {
  25162. height: math.unit(5 + 10 / 12, "feet"),
  25163. weight: math.unit(197, "lb"),
  25164. name: "Front",
  25165. image: {
  25166. source: "./media/characters/jabaro/front.svg",
  25167. extra: 225 / 216,
  25168. bottom: 5.06 / 230
  25169. }
  25170. },
  25171. back: {
  25172. height: math.unit(5 + 10 / 12, "feet"),
  25173. weight: math.unit(197, "lb"),
  25174. name: "Back",
  25175. image: {
  25176. source: "./media/characters/jabaro/back.svg",
  25177. extra: 225 / 219,
  25178. bottom: 1.9 / 227
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(5 + 10 / 12, "feet"),
  25186. default: true
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25192. {
  25193. front: {
  25194. height: math.unit(5 + 8 / 12, "feet"),
  25195. weight: math.unit(139, "lb"),
  25196. name: "Front",
  25197. image: {
  25198. source: "./media/characters/risa/front.svg",
  25199. extra: 270 / 260,
  25200. bottom: 11.2 / 282
  25201. }
  25202. },
  25203. back: {
  25204. height: math.unit(5 + 8 / 12, "feet"),
  25205. weight: math.unit(139, "lb"),
  25206. name: "Back",
  25207. image: {
  25208. source: "./media/characters/risa/back.svg",
  25209. extra: 264 / 255,
  25210. bottom: 4 / 268
  25211. }
  25212. },
  25213. },
  25214. [
  25215. {
  25216. name: "Normal",
  25217. height: math.unit(5 + 8 / 12, "feet"),
  25218. default: true
  25219. },
  25220. ]
  25221. ))
  25222. characterMakers.push(() => makeCharacter(
  25223. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25224. {
  25225. front: {
  25226. height: math.unit(2 + 11 / 12, "feet"),
  25227. weight: math.unit(30, "lb"),
  25228. name: "Front",
  25229. image: {
  25230. source: "./media/characters/weatley/front.svg",
  25231. bottom: 10.7 / 414,
  25232. extra: 403.5 / 362
  25233. }
  25234. },
  25235. back: {
  25236. height: math.unit(2 + 11 / 12, "feet"),
  25237. weight: math.unit(30, "lb"),
  25238. name: "Back",
  25239. image: {
  25240. source: "./media/characters/weatley/back.svg",
  25241. bottom: 10.7 / 414,
  25242. extra: 403.5 / 362
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Normal",
  25249. height: math.unit(2 + 11 / 12, "feet"),
  25250. default: true
  25251. },
  25252. ]
  25253. ))
  25254. characterMakers.push(() => makeCharacter(
  25255. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25256. {
  25257. front: {
  25258. height: math.unit(5 + 2 / 12, "feet"),
  25259. weight: math.unit(50, "kg"),
  25260. name: "Front",
  25261. image: {
  25262. source: "./media/characters/mercury-crescent/front.svg",
  25263. extra: 1088 / 1033,
  25264. bottom: 18.9 / 1109
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Normal",
  25271. height: math.unit(5 + 2 / 12, "feet"),
  25272. default: true
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25278. {
  25279. front: {
  25280. height: math.unit(2, "feet"),
  25281. weight: math.unit(15, "kg"),
  25282. name: "Front",
  25283. image: {
  25284. source: "./media/characters/diamond-jones/front.svg",
  25285. bottom: 16 / 568
  25286. }
  25287. },
  25288. },
  25289. [
  25290. {
  25291. name: "Normal",
  25292. height: math.unit(2, "feet"),
  25293. default: true
  25294. },
  25295. ]
  25296. ))
  25297. characterMakers.push(() => makeCharacter(
  25298. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25299. {
  25300. front: {
  25301. height: math.unit(3, "feet"),
  25302. weight: math.unit(30, "kg"),
  25303. name: "Front",
  25304. image: {
  25305. source: "./media/characters/sweet-bit/front.svg",
  25306. extra: 675 / 567,
  25307. bottom: 27.7 / 703
  25308. }
  25309. },
  25310. },
  25311. [
  25312. {
  25313. name: "Normal",
  25314. height: math.unit(3, "feet"),
  25315. default: true
  25316. },
  25317. ]
  25318. ))
  25319. characterMakers.push(() => makeCharacter(
  25320. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25321. {
  25322. side: {
  25323. height: math.unit(9.178, "feet"),
  25324. weight: math.unit(500, "lb"),
  25325. name: "Side",
  25326. image: {
  25327. source: "./media/characters/umbrazen/side.svg",
  25328. extra: 1730 / 1473,
  25329. bottom: 34.6 / 1765
  25330. }
  25331. },
  25332. },
  25333. [
  25334. {
  25335. name: "Normal",
  25336. height: math.unit(9.178, "feet"),
  25337. default: true
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25343. {
  25344. front: {
  25345. height: math.unit(10, "feet"),
  25346. weight: math.unit(750, "lb"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/arlist/front.svg",
  25350. extra: 961 / 778,
  25351. bottom: 6.2 / 986
  25352. }
  25353. },
  25354. },
  25355. [
  25356. {
  25357. name: "Normal",
  25358. height: math.unit(10, "feet"),
  25359. default: true
  25360. },
  25361. ]
  25362. ))
  25363. characterMakers.push(() => makeCharacter(
  25364. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25365. {
  25366. front: {
  25367. height: math.unit(5 + 1 / 12, "feet"),
  25368. weight: math.unit(110, "lb"),
  25369. name: "Front",
  25370. image: {
  25371. source: "./media/characters/aradel/front.svg",
  25372. extra: 324 / 303,
  25373. bottom: 3.6 / 329.4
  25374. }
  25375. },
  25376. },
  25377. [
  25378. {
  25379. name: "Normal",
  25380. height: math.unit(5 + 1 / 12, "feet"),
  25381. default: true
  25382. },
  25383. ]
  25384. ))
  25385. characterMakers.push(() => makeCharacter(
  25386. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25387. {
  25388. front: {
  25389. height: math.unit(3 + 8 / 12, "feet"),
  25390. weight: math.unit(50, "lb"),
  25391. name: "Front",
  25392. image: {
  25393. source: "./media/characters/serryn/front.svg",
  25394. extra: 1792 / 1656,
  25395. bottom: 43.5 / 1840
  25396. }
  25397. },
  25398. },
  25399. [
  25400. {
  25401. name: "Normal",
  25402. height: math.unit(3 + 8 / 12, "feet"),
  25403. default: true
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Xavier Thyme" },
  25409. {
  25410. front: {
  25411. height: math.unit(7 + 10 / 12, "feet"),
  25412. weight: math.unit(255, "lb"),
  25413. name: "Front",
  25414. image: {
  25415. source: "./media/characters/xavier-thyme/front.svg",
  25416. extra: 3733 / 3642,
  25417. bottom: 131 / 3869
  25418. }
  25419. },
  25420. frontRaven: {
  25421. height: math.unit(7 + 10 / 12, "feet"),
  25422. weight: math.unit(255, "lb"),
  25423. name: "Front (Raven)",
  25424. image: {
  25425. source: "./media/characters/xavier-thyme/front-raven.svg",
  25426. extra: 4385 / 3642,
  25427. bottom: 131 / 4517
  25428. }
  25429. },
  25430. },
  25431. [
  25432. {
  25433. name: "Normal",
  25434. height: math.unit(7 + 10 / 12, "feet"),
  25435. default: true
  25436. },
  25437. ]
  25438. ))
  25439. characterMakers.push(() => makeCharacter(
  25440. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25441. {
  25442. front: {
  25443. height: math.unit(1.6, "m"),
  25444. weight: math.unit(50, "kg"),
  25445. name: "Front",
  25446. image: {
  25447. source: "./media/characters/kiki/front.svg",
  25448. extra: 4682 / 3610,
  25449. bottom: 115 / 4777
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(1.6, "meters"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(50, "m"),
  25466. weight: math.unit(500, "tonnes"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/ryoko/front.svg",
  25470. extra: 4632 / 3926,
  25471. bottom: 193 / 4823
  25472. }
  25473. },
  25474. },
  25475. [
  25476. {
  25477. name: "Normal",
  25478. height: math.unit(50, "meters"),
  25479. default: true
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25485. {
  25486. front: {
  25487. height: math.unit(30, "m"),
  25488. weight: math.unit(22, "tonnes"),
  25489. name: "Front",
  25490. image: {
  25491. source: "./media/characters/elio/front.svg",
  25492. extra: 4582 / 3720,
  25493. bottom: 236 / 4828
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(30, "meters"),
  25501. default: true
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25507. {
  25508. front: {
  25509. height: math.unit(6 + 3 / 12, "feet"),
  25510. weight: math.unit(120, "lb"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/azura/front.svg",
  25514. extra: 1149 / 1135,
  25515. bottom: 45 / 1194
  25516. }
  25517. },
  25518. frontClothed: {
  25519. height: math.unit(6 + 3 / 12, "feet"),
  25520. weight: math.unit(120, "lb"),
  25521. name: "Front (Clothed)",
  25522. image: {
  25523. source: "./media/characters/azura/front-clothed.svg",
  25524. extra: 1149 / 1135,
  25525. bottom: 45 / 1194
  25526. }
  25527. },
  25528. },
  25529. [
  25530. {
  25531. name: "Normal",
  25532. height: math.unit(6 + 3 / 12, "feet"),
  25533. default: true
  25534. },
  25535. {
  25536. name: "Macro",
  25537. height: math.unit(20 + 6 / 12, "feet")
  25538. },
  25539. {
  25540. name: "Megamacro",
  25541. height: math.unit(12, "miles")
  25542. },
  25543. {
  25544. name: "Gigamacro",
  25545. height: math.unit(10000, "miles")
  25546. },
  25547. {
  25548. name: "Teramacro",
  25549. height: math.unit(900000, "miles")
  25550. },
  25551. ]
  25552. ))
  25553. characterMakers.push(() => makeCharacter(
  25554. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25555. {
  25556. front: {
  25557. height: math.unit(12, "feet"),
  25558. weight: math.unit(1, "ton"),
  25559. capacity: math.unit(660000, "gallons"),
  25560. name: "Front",
  25561. image: {
  25562. source: "./media/characters/zeus/front.svg",
  25563. extra: 5005 / 4717,
  25564. bottom: 363 / 5388
  25565. }
  25566. },
  25567. },
  25568. [
  25569. {
  25570. name: "Normal",
  25571. height: math.unit(12, "feet")
  25572. },
  25573. {
  25574. name: "Preferred Size",
  25575. height: math.unit(0.5, "miles"),
  25576. default: true
  25577. },
  25578. {
  25579. name: "Giga Horse",
  25580. height: math.unit(300, "miles")
  25581. },
  25582. {
  25583. name: "Riding Planets",
  25584. height: math.unit(30, "megameters")
  25585. },
  25586. {
  25587. name: "Cosmic Giant",
  25588. height: math.unit(3, "zettameters")
  25589. },
  25590. {
  25591. name: "Breeding God",
  25592. height: math.unit(9.92e22, "yottameters")
  25593. },
  25594. ]
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25598. {
  25599. side: {
  25600. height: math.unit(9, "feet"),
  25601. weight: math.unit(1500, "kg"),
  25602. name: "Side",
  25603. image: {
  25604. source: "./media/characters/fang/side.svg",
  25605. extra: 924 / 866,
  25606. bottom: 47.5 / 972.3
  25607. }
  25608. },
  25609. },
  25610. [
  25611. {
  25612. name: "Normal",
  25613. height: math.unit(9, "feet"),
  25614. default: true
  25615. },
  25616. {
  25617. name: "Macro",
  25618. height: math.unit(75 + 6 / 12, "feet")
  25619. },
  25620. {
  25621. name: "Teramacro",
  25622. height: math.unit(50000, "miles")
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25628. {
  25629. front: {
  25630. height: math.unit(10, "feet"),
  25631. weight: math.unit(2, "tons"),
  25632. name: "Front",
  25633. image: {
  25634. source: "./media/characters/rekhit/front.svg",
  25635. extra: 2796 / 2590,
  25636. bottom: 225 / 3022
  25637. }
  25638. },
  25639. },
  25640. [
  25641. {
  25642. name: "Normal",
  25643. height: math.unit(10, "feet"),
  25644. default: true
  25645. },
  25646. {
  25647. name: "Macro",
  25648. height: math.unit(500, "feet")
  25649. },
  25650. ]
  25651. ))
  25652. characterMakers.push(() => makeCharacter(
  25653. { name: "Dahlia Verrick" },
  25654. {
  25655. front: {
  25656. height: math.unit(7 + 6.451 / 12, "feet"),
  25657. weight: math.unit(310, "lb"),
  25658. name: "Front",
  25659. image: {
  25660. source: "./media/characters/dahlia-verrick/front.svg",
  25661. extra: 1488 / 1365,
  25662. bottom: 6.2 / 1495
  25663. }
  25664. },
  25665. back: {
  25666. height: math.unit(7 + 6.451 / 12, "feet"),
  25667. weight: math.unit(310, "lb"),
  25668. name: "Back",
  25669. image: {
  25670. source: "./media/characters/dahlia-verrick/back.svg",
  25671. extra: 1472 / 1351,
  25672. bottom: 5.28 / 1477
  25673. }
  25674. },
  25675. frontBusiness: {
  25676. height: math.unit(7 + 6.451 / 12, "feet"),
  25677. weight: math.unit(200, "lb"),
  25678. name: "Front (Business)",
  25679. image: {
  25680. source: "./media/characters/dahlia-verrick/front-business.svg",
  25681. extra: 1478 / 1381,
  25682. bottom: 5.5 / 1484
  25683. }
  25684. },
  25685. frontCasual: {
  25686. height: math.unit(7 + 6.451 / 12, "feet"),
  25687. weight: math.unit(200, "lb"),
  25688. name: "Front (Casual)",
  25689. image: {
  25690. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25691. extra: 1478 / 1381,
  25692. bottom: 5.5 / 1484
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Travel-Sized",
  25699. height: math.unit(7.45, "inches")
  25700. },
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(7 + 6.451 / 12, "feet"),
  25704. default: true
  25705. },
  25706. {
  25707. name: "Hitting the Town",
  25708. height: math.unit(37 + 8 / 12, "feet")
  25709. },
  25710. {
  25711. name: "Stomp in the Suburbs",
  25712. height: math.unit(964 + 9.728 / 12, "feet")
  25713. },
  25714. {
  25715. name: "Sit on the City",
  25716. height: math.unit(61747 + 10.592 / 12, "feet")
  25717. },
  25718. {
  25719. name: "Glomp the Globe",
  25720. height: math.unit(252919327 + 4.832 / 12, "feet")
  25721. },
  25722. ]
  25723. ))
  25724. characterMakers.push(() => makeCharacter(
  25725. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25726. {
  25727. front: {
  25728. height: math.unit(6 + 4 / 12, "feet"),
  25729. weight: math.unit(320, "lb"),
  25730. name: "Front",
  25731. image: {
  25732. source: "./media/characters/balina-mahigan/front.svg",
  25733. extra: 447 / 428,
  25734. bottom: 18 / 466
  25735. }
  25736. },
  25737. back: {
  25738. height: math.unit(6 + 4 / 12, "feet"),
  25739. weight: math.unit(320, "lb"),
  25740. name: "Back",
  25741. image: {
  25742. source: "./media/characters/balina-mahigan/back.svg",
  25743. extra: 445 / 428,
  25744. bottom: 4.07 / 448
  25745. }
  25746. },
  25747. arm: {
  25748. height: math.unit(1.88, "feet"),
  25749. name: "Arm",
  25750. image: {
  25751. source: "./media/characters/balina-mahigan/arm.svg"
  25752. }
  25753. },
  25754. backPort: {
  25755. height: math.unit(0.685, "feet"),
  25756. name: "Back Port",
  25757. image: {
  25758. source: "./media/characters/balina-mahigan/back-port.svg"
  25759. }
  25760. },
  25761. hoofpaw: {
  25762. height: math.unit(1.41, "feet"),
  25763. name: "Hoofpaw",
  25764. image: {
  25765. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25766. }
  25767. },
  25768. leftHandBack: {
  25769. height: math.unit(0.938, "feet"),
  25770. name: "Left Hand (Back)",
  25771. image: {
  25772. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25773. }
  25774. },
  25775. leftHandFront: {
  25776. height: math.unit(0.938, "feet"),
  25777. name: "Left Hand (Front)",
  25778. image: {
  25779. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25780. }
  25781. },
  25782. rightHandBack: {
  25783. height: math.unit(0.95, "feet"),
  25784. name: "Right Hand (Back)",
  25785. image: {
  25786. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25787. }
  25788. },
  25789. rightHandFront: {
  25790. height: math.unit(0.95, "feet"),
  25791. name: "Right Hand (Front)",
  25792. image: {
  25793. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25794. }
  25795. },
  25796. },
  25797. [
  25798. {
  25799. name: "Normal",
  25800. height: math.unit(6 + 4 / 12, "feet"),
  25801. default: true
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25807. {
  25808. front: {
  25809. height: math.unit(6, "feet"),
  25810. weight: math.unit(320, "lb"),
  25811. name: "Front",
  25812. image: {
  25813. source: "./media/characters/balina-mejeri/front.svg",
  25814. extra: 517 / 488,
  25815. bottom: 44.2 / 561
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Normal",
  25822. height: math.unit(6 + 4 / 12, "feet")
  25823. },
  25824. {
  25825. name: "Business",
  25826. height: math.unit(155, "feet"),
  25827. default: true
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25833. {
  25834. kneeling: {
  25835. height: math.unit(6 + 4 / 12, "feet"),
  25836. weight: math.unit(300 * 20, "lb"),
  25837. name: "Kneeling",
  25838. image: {
  25839. source: "./media/characters/balbarian/kneeling.svg",
  25840. extra: 922 / 862,
  25841. bottom: 42.4 / 965
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Normal",
  25848. height: math.unit(6 + 4 / 12, "feet")
  25849. },
  25850. {
  25851. name: "Treasured",
  25852. height: math.unit(18 + 9 / 12, "feet"),
  25853. default: true
  25854. },
  25855. {
  25856. name: "Macro",
  25857. height: math.unit(900, "feet")
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(6 + 4 / 12, "feet"),
  25866. weight: math.unit(325, "lb"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/balina-amarini/front.svg",
  25870. extra: 415 / 403,
  25871. bottom: 19 / 433.4
  25872. }
  25873. },
  25874. back: {
  25875. height: math.unit(6 + 4 / 12, "feet"),
  25876. weight: math.unit(325, "lb"),
  25877. name: "Back",
  25878. image: {
  25879. source: "./media/characters/balina-amarini/back.svg",
  25880. extra: 415 / 403,
  25881. bottom: 13.5 / 432
  25882. }
  25883. },
  25884. overdrive: {
  25885. height: math.unit(6 + 4 / 12, "feet"),
  25886. weight: math.unit(400, "lb"),
  25887. name: "Overdrive",
  25888. image: {
  25889. source: "./media/characters/balina-amarini/overdrive.svg",
  25890. extra: 269 / 259,
  25891. bottom: 12 / 282
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Boom",
  25898. height: math.unit(9 + 10 / 12, "feet"),
  25899. default: true
  25900. },
  25901. {
  25902. name: "Macro",
  25903. height: math.unit(280, "feet")
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25909. {
  25910. goddess: {
  25911. height: math.unit(600, "feet"),
  25912. weight: math.unit(2000000, "tons"),
  25913. name: "Goddess",
  25914. image: {
  25915. source: "./media/characters/lady-kubwa/goddess.svg",
  25916. extra: 1240.5 / 1223,
  25917. bottom: 22 / 1263
  25918. }
  25919. },
  25920. goddesser: {
  25921. height: math.unit(900, "feet"),
  25922. weight: math.unit(20000000, "lb"),
  25923. name: "Goddess-er",
  25924. image: {
  25925. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25926. extra: 899 / 888,
  25927. bottom: 12.6 / 912
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Macro",
  25934. height: math.unit(600, "feet"),
  25935. default: true
  25936. },
  25937. {
  25938. name: "Megamacro",
  25939. height: math.unit(250, "miles")
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25945. {
  25946. front: {
  25947. height: math.unit(7 + 7 / 12, "feet"),
  25948. weight: math.unit(250, "lb"),
  25949. name: "Front",
  25950. image: {
  25951. source: "./media/characters/tala-grovehorn/front.svg",
  25952. extra: 2636 / 2525,
  25953. bottom: 147 / 2781
  25954. }
  25955. },
  25956. back: {
  25957. height: math.unit(7 + 7 / 12, "feet"),
  25958. weight: math.unit(250, "lb"),
  25959. name: "Back",
  25960. image: {
  25961. source: "./media/characters/tala-grovehorn/back.svg",
  25962. extra: 2635 / 2539,
  25963. bottom: 100 / 2732.8
  25964. }
  25965. },
  25966. mouth: {
  25967. height: math.unit(1.15, "feet"),
  25968. name: "Mouth",
  25969. image: {
  25970. source: "./media/characters/tala-grovehorn/mouth.svg"
  25971. }
  25972. },
  25973. dick: {
  25974. height: math.unit(2.36, "feet"),
  25975. name: "Dick",
  25976. image: {
  25977. source: "./media/characters/tala-grovehorn/dick.svg"
  25978. }
  25979. },
  25980. slit: {
  25981. height: math.unit(0.61, "feet"),
  25982. name: "Slit",
  25983. image: {
  25984. source: "./media/characters/tala-grovehorn/slit.svg"
  25985. }
  25986. },
  25987. },
  25988. [
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25993. {
  25994. front: {
  25995. height: math.unit(7 + 7 / 12, "feet"),
  25996. weight: math.unit(225, "lb"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/epona/front.svg",
  26000. extra: 2445 / 2290,
  26001. bottom: 251 / 2696
  26002. }
  26003. },
  26004. back: {
  26005. height: math.unit(7 + 7 / 12, "feet"),
  26006. weight: math.unit(225, "lb"),
  26007. name: "Back",
  26008. image: {
  26009. source: "./media/characters/epona/back.svg",
  26010. extra: 2546 / 2408,
  26011. bottom: 44 / 2589
  26012. }
  26013. },
  26014. genitals: {
  26015. height: math.unit(1.5, "feet"),
  26016. name: "Genitals",
  26017. image: {
  26018. source: "./media/characters/epona/genitals.svg"
  26019. }
  26020. },
  26021. },
  26022. [
  26023. {
  26024. name: "Normal",
  26025. height: math.unit(7 + 7 / 12, "feet"),
  26026. default: true
  26027. },
  26028. ]
  26029. ))
  26030. characterMakers.push(() => makeCharacter(
  26031. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26032. {
  26033. front: {
  26034. height: math.unit(7, "feet"),
  26035. weight: math.unit(518, "lb"),
  26036. name: "Front",
  26037. image: {
  26038. source: "./media/characters/avia-bloodbourn/front.svg",
  26039. extra: 1466 / 1350,
  26040. bottom: 65 / 1527
  26041. }
  26042. },
  26043. },
  26044. [
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(9.35, "feet"),
  26052. weight: math.unit(600, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/amera/front.svg",
  26056. extra: 891 / 818,
  26057. bottom: 30 / 922.7
  26058. }
  26059. },
  26060. back: {
  26061. height: math.unit(9.35, "feet"),
  26062. weight: math.unit(600, "lb"),
  26063. name: "Back",
  26064. image: {
  26065. source: "./media/characters/amera/back.svg",
  26066. extra: 876 / 824,
  26067. bottom: 6.8 / 884
  26068. }
  26069. },
  26070. dick: {
  26071. height: math.unit(2.14, "feet"),
  26072. name: "Dick",
  26073. image: {
  26074. source: "./media/characters/amera/dick.svg"
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Normal",
  26081. height: math.unit(9.35, "feet"),
  26082. default: true
  26083. },
  26084. ]
  26085. ))
  26086. characterMakers.push(() => makeCharacter(
  26087. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26088. {
  26089. kneeling: {
  26090. height: math.unit(3 + 4 / 12, "feet"),
  26091. weight: math.unit(90, "lb"),
  26092. name: "Kneeling",
  26093. image: {
  26094. source: "./media/characters/rosewen/kneeling.svg",
  26095. extra: 1835 / 1571,
  26096. bottom: 27.7 / 1862
  26097. }
  26098. },
  26099. },
  26100. [
  26101. {
  26102. name: "Normal",
  26103. height: math.unit(3 + 4 / 12, "feet"),
  26104. default: true
  26105. },
  26106. ]
  26107. ))
  26108. characterMakers.push(() => makeCharacter(
  26109. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26110. {
  26111. front: {
  26112. height: math.unit(5 + 10 / 12, "feet"),
  26113. weight: math.unit(200, "lb"),
  26114. name: "Front",
  26115. image: {
  26116. source: "./media/characters/sabah/front.svg",
  26117. extra: 849 / 763,
  26118. bottom: 33.9 / 881
  26119. }
  26120. },
  26121. },
  26122. [
  26123. {
  26124. name: "Normal",
  26125. height: math.unit(5 + 10 / 12, "feet"),
  26126. default: true
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26132. {
  26133. front: {
  26134. height: math.unit(3 + 5 / 12, "feet"),
  26135. weight: math.unit(40, "kg"),
  26136. name: "Front",
  26137. image: {
  26138. source: "./media/characters/purple-flame/front.svg",
  26139. extra: 1577 / 1412,
  26140. bottom: 97 / 1694
  26141. }
  26142. },
  26143. frontDressed: {
  26144. height: math.unit(3 + 5 / 12, "feet"),
  26145. weight: math.unit(40, "kg"),
  26146. name: "Front (Dressed)",
  26147. image: {
  26148. source: "./media/characters/purple-flame/front-dressed.svg",
  26149. extra: 1577 / 1412,
  26150. bottom: 97 / 1694
  26151. }
  26152. },
  26153. headphones: {
  26154. height: math.unit(0.85, "feet"),
  26155. name: "Headphones",
  26156. image: {
  26157. source: "./media/characters/purple-flame/headphones.svg"
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Really Small",
  26164. height: math.unit(5, "cm")
  26165. },
  26166. {
  26167. name: "Micro",
  26168. height: math.unit(1 + 5 / 12, "feet")
  26169. },
  26170. {
  26171. name: "Normal",
  26172. height: math.unit(3 + 5 / 12, "feet"),
  26173. default: true
  26174. },
  26175. {
  26176. name: "Minimacro",
  26177. height: math.unit(125, "feet")
  26178. },
  26179. {
  26180. name: "Macro",
  26181. height: math.unit(0.5, "miles")
  26182. },
  26183. {
  26184. name: "Megamacro",
  26185. height: math.unit(50, "miles")
  26186. },
  26187. {
  26188. name: "Gigantic",
  26189. height: math.unit(750, "miles")
  26190. },
  26191. {
  26192. name: "Planetary",
  26193. height: math.unit(15000, "miles")
  26194. },
  26195. ]
  26196. ))
  26197. characterMakers.push(() => makeCharacter(
  26198. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26199. {
  26200. front: {
  26201. height: math.unit(14, "feet"),
  26202. weight: math.unit(959, "lb"),
  26203. name: "Front",
  26204. image: {
  26205. source: "./media/characters/arsenal/front.svg",
  26206. extra: 2357 / 2157,
  26207. bottom: 93 / 2458
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(14, "feet"),
  26215. default: true
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(6, "feet"),
  26224. weight: math.unit(150, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/adira/front.svg",
  26228. extra: 1078 / 1029,
  26229. bottom: 87 / 1166
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Micro",
  26236. height: math.unit(4, "inches"),
  26237. default: true
  26238. },
  26239. {
  26240. name: "Macro",
  26241. height: math.unit(50, "feet")
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26247. {
  26248. front: {
  26249. height: math.unit(16, "feet"),
  26250. weight: math.unit(1000, "lb"),
  26251. name: "Front",
  26252. image: {
  26253. source: "./media/characters/grim/front.svg",
  26254. extra: 622 / 614,
  26255. bottom: 18.1 / 642
  26256. }
  26257. },
  26258. back: {
  26259. height: math.unit(16, "feet"),
  26260. weight: math.unit(1000, "lb"),
  26261. name: "Back",
  26262. image: {
  26263. source: "./media/characters/grim/back.svg",
  26264. extra: 610.6 / 602,
  26265. bottom: 40.8 / 652
  26266. }
  26267. },
  26268. hunched: {
  26269. height: math.unit(9.75, "feet"),
  26270. weight: math.unit(1000, "lb"),
  26271. name: "Hunched",
  26272. image: {
  26273. source: "./media/characters/grim/hunched.svg",
  26274. extra: 304 / 297,
  26275. bottom: 35.4 / 394
  26276. }
  26277. },
  26278. },
  26279. [
  26280. {
  26281. name: "Normal",
  26282. height: math.unit(16, "feet"),
  26283. default: true
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26289. {
  26290. front: {
  26291. height: math.unit(2.3, "meters"),
  26292. weight: math.unit(300, "lb"),
  26293. name: "Front",
  26294. image: {
  26295. source: "./media/characters/sinja/front-sfw.svg",
  26296. extra: 1393 / 1294,
  26297. bottom: 70 / 1463
  26298. }
  26299. },
  26300. frontNsfw: {
  26301. height: math.unit(2.3, "meters"),
  26302. weight: math.unit(300, "lb"),
  26303. name: "Front (NSFW)",
  26304. image: {
  26305. source: "./media/characters/sinja/front-nsfw.svg",
  26306. extra: 1393 / 1294,
  26307. bottom: 70 / 1463
  26308. }
  26309. },
  26310. back: {
  26311. height: math.unit(2.3, "meters"),
  26312. weight: math.unit(300, "lb"),
  26313. name: "Back",
  26314. image: {
  26315. source: "./media/characters/sinja/back.svg",
  26316. extra: 1393 / 1294,
  26317. bottom: 70 / 1463
  26318. }
  26319. },
  26320. head: {
  26321. height: math.unit(1.771, "feet"),
  26322. name: "Head",
  26323. image: {
  26324. source: "./media/characters/sinja/head.svg"
  26325. }
  26326. },
  26327. slit: {
  26328. height: math.unit(0.8, "feet"),
  26329. name: "Slit",
  26330. image: {
  26331. source: "./media/characters/sinja/slit.svg"
  26332. }
  26333. },
  26334. },
  26335. [
  26336. {
  26337. name: "Normal",
  26338. height: math.unit(2.3, "meters")
  26339. },
  26340. {
  26341. name: "Macro",
  26342. height: math.unit(91, "meters"),
  26343. default: true
  26344. },
  26345. {
  26346. name: "Megamacro",
  26347. height: math.unit(91440, "meters")
  26348. },
  26349. {
  26350. name: "Gigamacro",
  26351. height: math.unit(60960000, "meters")
  26352. },
  26353. {
  26354. name: "Teramacro",
  26355. height: math.unit(9144000000, "meters")
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26361. {
  26362. front: {
  26363. height: math.unit(1.7, "meters"),
  26364. weight: math.unit(130, "lb"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/kyu/front.svg",
  26368. extra: 415 / 395,
  26369. bottom: 5 / 420
  26370. }
  26371. },
  26372. head: {
  26373. height: math.unit(1.75, "feet"),
  26374. name: "Head",
  26375. image: {
  26376. source: "./media/characters/kyu/head.svg"
  26377. }
  26378. },
  26379. foot: {
  26380. height: math.unit(0.81, "feet"),
  26381. name: "Foot",
  26382. image: {
  26383. source: "./media/characters/kyu/foot.svg"
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Normal",
  26390. height: math.unit(1.7, "meters")
  26391. },
  26392. {
  26393. name: "Macro",
  26394. height: math.unit(131, "feet"),
  26395. default: true
  26396. },
  26397. {
  26398. name: "Megamacro",
  26399. height: math.unit(91440, "meters")
  26400. },
  26401. {
  26402. name: "Gigamacro",
  26403. height: math.unit(60960000, "meters")
  26404. },
  26405. {
  26406. name: "Teramacro",
  26407. height: math.unit(9144000000, "meters")
  26408. },
  26409. ]
  26410. ))
  26411. characterMakers.push(() => makeCharacter(
  26412. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26413. {
  26414. front: {
  26415. height: math.unit(7 + 1 / 12, "feet"),
  26416. weight: math.unit(250, "lb"),
  26417. name: "Front",
  26418. image: {
  26419. source: "./media/characters/joey/front.svg",
  26420. extra: 1791 / 1537,
  26421. bottom: 28 / 1816
  26422. }
  26423. },
  26424. },
  26425. [
  26426. {
  26427. name: "Micro",
  26428. height: math.unit(3, "inches")
  26429. },
  26430. {
  26431. name: "Normal",
  26432. height: math.unit(7 + 1 / 12, "feet"),
  26433. default: true
  26434. },
  26435. ]
  26436. ))
  26437. characterMakers.push(() => makeCharacter(
  26438. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26439. {
  26440. front: {
  26441. height: math.unit(165, "cm"),
  26442. weight: math.unit(140, "lb"),
  26443. name: "Front",
  26444. image: {
  26445. source: "./media/characters/sam-evans/front.svg",
  26446. extra: 3417 / 3230,
  26447. bottom: 41.3 / 3417
  26448. }
  26449. },
  26450. frontSixTails: {
  26451. height: math.unit(165, "cm"),
  26452. weight: math.unit(140, "lb"),
  26453. name: "Front-six-tails",
  26454. image: {
  26455. source: "./media/characters/sam-evans/front-six-tails.svg",
  26456. extra: 3417 / 3230,
  26457. bottom: 41.3 / 3417
  26458. }
  26459. },
  26460. back: {
  26461. height: math.unit(165, "cm"),
  26462. weight: math.unit(140, "lb"),
  26463. name: "Back",
  26464. image: {
  26465. source: "./media/characters/sam-evans/back.svg",
  26466. extra: 3227 / 3032,
  26467. bottom: 6.8 / 3234
  26468. }
  26469. },
  26470. face: {
  26471. height: math.unit(0.68, "feet"),
  26472. name: "Face",
  26473. image: {
  26474. source: "./media/characters/sam-evans/face.svg"
  26475. }
  26476. },
  26477. },
  26478. [
  26479. {
  26480. name: "Normal",
  26481. height: math.unit(165, "cm"),
  26482. default: true
  26483. },
  26484. {
  26485. name: "Macro",
  26486. height: math.unit(100, "meters")
  26487. },
  26488. {
  26489. name: "Macro+",
  26490. height: math.unit(800, "meters")
  26491. },
  26492. {
  26493. name: "Macro++",
  26494. height: math.unit(3, "km")
  26495. },
  26496. {
  26497. name: "Macro+++",
  26498. height: math.unit(30, "km")
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26504. {
  26505. front: {
  26506. height: math.unit(10, "feet"),
  26507. weight: math.unit(750, "lb"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/juliet-a/front.svg",
  26511. extra: 1766 / 1720,
  26512. bottom: 43 / 1809
  26513. }
  26514. },
  26515. back: {
  26516. height: math.unit(10, "feet"),
  26517. weight: math.unit(750, "lb"),
  26518. name: "Back",
  26519. image: {
  26520. source: "./media/characters/juliet-a/back.svg",
  26521. extra: 1781 / 1734,
  26522. bottom: 35 / 1810,
  26523. }
  26524. },
  26525. },
  26526. [
  26527. {
  26528. name: "Normal",
  26529. height: math.unit(10, "feet"),
  26530. default: true
  26531. },
  26532. {
  26533. name: "Dragon Form",
  26534. height: math.unit(250, "feet")
  26535. },
  26536. {
  26537. name: "Macro",
  26538. height: math.unit(1000, "feet")
  26539. },
  26540. {
  26541. name: "Megamacro",
  26542. height: math.unit(10000, "feet")
  26543. }
  26544. ]
  26545. ))
  26546. characterMakers.push(() => makeCharacter(
  26547. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26548. {
  26549. regular: {
  26550. height: math.unit(7 + 3 / 12, "feet"),
  26551. weight: math.unit(260, "lb"),
  26552. name: "Regular",
  26553. image: {
  26554. source: "./media/characters/wild/regular.svg",
  26555. extra: 97.45 / 92,
  26556. bottom: 6.8 / 104.3
  26557. }
  26558. },
  26559. biggums: {
  26560. height: math.unit(8 + 6 / 12, "feet"),
  26561. weight: math.unit(425, "lb"),
  26562. name: "Biggums",
  26563. image: {
  26564. source: "./media/characters/wild/biggums.svg",
  26565. extra: 97.45 / 92,
  26566. bottom: 7.5 / 132.34
  26567. }
  26568. },
  26569. mawRegular: {
  26570. height: math.unit(1.24, "feet"),
  26571. name: "Maw (Regular)",
  26572. image: {
  26573. source: "./media/characters/wild/maw.svg"
  26574. }
  26575. },
  26576. mawBiggums: {
  26577. height: math.unit(1.47, "feet"),
  26578. name: "Maw (Biggums)",
  26579. image: {
  26580. source: "./media/characters/wild/maw.svg"
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(7 + 3 / 12, "feet"),
  26588. default: true
  26589. },
  26590. ]
  26591. ))
  26592. characterMakers.push(() => makeCharacter(
  26593. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26594. {
  26595. front: {
  26596. height: math.unit(2.5, "meters"),
  26597. weight: math.unit(200, "kg"),
  26598. name: "Front",
  26599. image: {
  26600. source: "./media/characters/vidar/front.svg",
  26601. extra: 2994 / 2795,
  26602. bottom: 56 / 3061
  26603. }
  26604. },
  26605. back: {
  26606. height: math.unit(2.5, "meters"),
  26607. weight: math.unit(200, "kg"),
  26608. name: "Back",
  26609. image: {
  26610. source: "./media/characters/vidar/back.svg",
  26611. extra: 3131 / 2928,
  26612. bottom: 13.5 / 3141.5
  26613. }
  26614. },
  26615. feral: {
  26616. height: math.unit(2.5, "meters"),
  26617. weight: math.unit(2000, "kg"),
  26618. name: "Feral",
  26619. image: {
  26620. source: "./media/characters/vidar/feral.svg",
  26621. extra: 2790 / 1765,
  26622. bottom: 6 / 2796
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Normal",
  26629. height: math.unit(2.5, "meters"),
  26630. default: true
  26631. },
  26632. {
  26633. name: "Macro",
  26634. height: math.unit(100, "meters")
  26635. },
  26636. ]
  26637. ))
  26638. characterMakers.push(() => makeCharacter(
  26639. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26640. {
  26641. front: {
  26642. height: math.unit(5 + 9 / 12, "feet"),
  26643. weight: math.unit(120, "lb"),
  26644. name: "Front",
  26645. image: {
  26646. source: "./media/characters/ash/front.svg",
  26647. extra: 2189 / 1961,
  26648. bottom: 5.2 / 2194
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(5 + 9 / 12, "feet"),
  26656. default: true
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26662. {
  26663. front: {
  26664. height: math.unit(9, "feet"),
  26665. weight: math.unit(10000, "lb"),
  26666. name: "Front",
  26667. image: {
  26668. source: "./media/characters/gygabite/front.svg",
  26669. bottom: 31.7 / 537.8,
  26670. extra: 505 / 370
  26671. }
  26672. },
  26673. },
  26674. [
  26675. {
  26676. name: "Normal",
  26677. height: math.unit(9, "feet"),
  26678. default: true
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26684. {
  26685. front: {
  26686. height: math.unit(12, "feet"),
  26687. weight: math.unit(35000, "lb"),
  26688. name: "Front",
  26689. image: {
  26690. source: "./media/characters/p0tat0/front.svg",
  26691. extra: 1065 / 921,
  26692. bottom: 55.7 / 1121.25
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(12, "feet"),
  26700. default: true
  26701. },
  26702. ]
  26703. ))
  26704. characterMakers.push(() => makeCharacter(
  26705. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26706. {
  26707. side: {
  26708. height: math.unit(6.5, "feet"),
  26709. weight: math.unit(800, "lb"),
  26710. name: "Side",
  26711. image: {
  26712. source: "./media/characters/dusk/side.svg",
  26713. extra: 615 / 373,
  26714. bottom: 53 / 664
  26715. }
  26716. },
  26717. sitting: {
  26718. height: math.unit(7, "feet"),
  26719. weight: math.unit(800, "lb"),
  26720. name: "Sitting",
  26721. image: {
  26722. source: "./media/characters/dusk/sitting.svg",
  26723. extra: 753 / 425,
  26724. bottom: 33 / 774
  26725. }
  26726. },
  26727. head: {
  26728. height: math.unit(6.1, "feet"),
  26729. name: "Head",
  26730. image: {
  26731. source: "./media/characters/dusk/head.svg"
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Normal",
  26738. height: math.unit(7, "feet"),
  26739. default: true
  26740. },
  26741. ]
  26742. ))
  26743. characterMakers.push(() => makeCharacter(
  26744. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26745. {
  26746. front: {
  26747. height: math.unit(15, "feet"),
  26748. weight: math.unit(7000, "lb"),
  26749. name: "Front",
  26750. image: {
  26751. source: "./media/characters/jay-direwolf/front.svg",
  26752. extra: 1810 / 1732,
  26753. bottom: 66 / 1892
  26754. }
  26755. },
  26756. },
  26757. [
  26758. {
  26759. name: "Normal",
  26760. height: math.unit(15, "feet"),
  26761. default: true
  26762. },
  26763. ]
  26764. ))
  26765. characterMakers.push(() => makeCharacter(
  26766. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26767. {
  26768. front: {
  26769. height: math.unit(4 + 9 / 12, "feet"),
  26770. weight: math.unit(130, "lb"),
  26771. name: "Front",
  26772. image: {
  26773. source: "./media/characters/anchovie/front.svg",
  26774. extra: 382 / 350,
  26775. bottom: 25 / 409
  26776. }
  26777. },
  26778. back: {
  26779. height: math.unit(4 + 9 / 12, "feet"),
  26780. weight: math.unit(130, "lb"),
  26781. name: "Back",
  26782. image: {
  26783. source: "./media/characters/anchovie/back.svg",
  26784. extra: 385 / 352,
  26785. bottom: 16.6 / 402
  26786. }
  26787. },
  26788. frontDressed: {
  26789. height: math.unit(4 + 9 / 12, "feet"),
  26790. weight: math.unit(130, "lb"),
  26791. name: "Front (Dressed)",
  26792. image: {
  26793. source: "./media/characters/anchovie/front-dressed.svg",
  26794. extra: 382 / 350,
  26795. bottom: 25 / 409
  26796. }
  26797. },
  26798. backDressed: {
  26799. height: math.unit(4 + 9 / 12, "feet"),
  26800. weight: math.unit(130, "lb"),
  26801. name: "Back (Dressed)",
  26802. image: {
  26803. source: "./media/characters/anchovie/back-dressed.svg",
  26804. extra: 385 / 352,
  26805. bottom: 16.6 / 402
  26806. }
  26807. },
  26808. },
  26809. [
  26810. {
  26811. name: "Micro",
  26812. height: math.unit(6.4, "inches")
  26813. },
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(4 + 9 / 12, "feet"),
  26817. default: true
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(2, "meters"),
  26826. weight: math.unit(180, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/acidrenamon/front.svg",
  26830. extra: 987 / 890,
  26831. bottom: 22.8 / 1009
  26832. }
  26833. },
  26834. back: {
  26835. height: math.unit(2, "meters"),
  26836. weight: math.unit(180, "lb"),
  26837. name: "Back",
  26838. image: {
  26839. source: "./media/characters/acidrenamon/back.svg",
  26840. extra: 983 / 891,
  26841. bottom: 8.4 / 992
  26842. }
  26843. },
  26844. head: {
  26845. height: math.unit(1.92, "feet"),
  26846. name: "Head",
  26847. image: {
  26848. source: "./media/characters/acidrenamon/head.svg"
  26849. }
  26850. },
  26851. rump: {
  26852. height: math.unit(1.72, "feet"),
  26853. name: "Rump",
  26854. image: {
  26855. source: "./media/characters/acidrenamon/rump.svg"
  26856. }
  26857. },
  26858. tail: {
  26859. height: math.unit(4.2, "feet"),
  26860. name: "Tail",
  26861. image: {
  26862. source: "./media/characters/acidrenamon/tail.svg"
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Normal",
  26869. height: math.unit(2, "meters"),
  26870. default: true
  26871. },
  26872. {
  26873. name: "Minimacro",
  26874. height: math.unit(7, "meters")
  26875. },
  26876. {
  26877. name: "Macro",
  26878. height: math.unit(200, "meters")
  26879. },
  26880. {
  26881. name: "Gigamacro",
  26882. height: math.unit(0.2, "earths")
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(6, "feet"),
  26891. weight: math.unit(150, "lb"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/kenzie-lee/front.svg",
  26895. extra: 1525 / 1465,
  26896. bottom: 45 / 1570
  26897. }
  26898. },
  26899. side: {
  26900. height: math.unit(6, "feet"),
  26901. weight: math.unit(150, "lb"),
  26902. name: "Side",
  26903. image: {
  26904. source: "./media/characters/kenzie-lee/side.svg",
  26905. extra: 5505 / 5383,
  26906. bottom: 60 / 5573
  26907. }
  26908. },
  26909. paw: {
  26910. height: math.unit(0.57, "feet"),
  26911. name: "Paw",
  26912. image: {
  26913. source: "./media/characters/kenzie-lee/paw.svg"
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Normal",
  26920. height: math.unit(152, "feet"),
  26921. default: true
  26922. },
  26923. {
  26924. name: "Megamacro",
  26925. height: math.unit(7, "miles")
  26926. },
  26927. {
  26928. name: "Gigamacro",
  26929. height: math.unit(8000, "miles")
  26930. },
  26931. ]
  26932. ))
  26933. characterMakers.push(() => makeCharacter(
  26934. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26935. {
  26936. side: {
  26937. height: math.unit(6, "feet"),
  26938. weight: math.unit(150, "lb"),
  26939. name: "Side",
  26940. image: {
  26941. source: "./media/characters/withers/side.svg",
  26942. extra: 1830 / 1728,
  26943. bottom: 96 / 1927
  26944. }
  26945. },
  26946. front: {
  26947. height: math.unit(6, "feet"),
  26948. weight: math.unit(150, "lb"),
  26949. name: "Front",
  26950. image: {
  26951. source: "./media/characters/withers/front.svg",
  26952. extra: 1514 / 1438,
  26953. bottom: 118 / 1632
  26954. }
  26955. },
  26956. },
  26957. [
  26958. {
  26959. name: "Macro",
  26960. height: math.unit(168, "feet"),
  26961. default: true
  26962. },
  26963. {
  26964. name: "Megamacro",
  26965. height: math.unit(15, "miles")
  26966. }
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26971. {
  26972. front: {
  26973. height: math.unit(6 + 7 / 12, "feet"),
  26974. weight: math.unit(250, "lb"),
  26975. name: "Front",
  26976. image: {
  26977. source: "./media/characters/nemoskii/front.svg",
  26978. extra: 2270 / 1734,
  26979. bottom: 86 / 2354
  26980. }
  26981. },
  26982. back: {
  26983. height: math.unit(6 + 7 / 12, "feet"),
  26984. weight: math.unit(250, "lb"),
  26985. name: "Back",
  26986. image: {
  26987. source: "./media/characters/nemoskii/back.svg",
  26988. extra: 1845 / 1788,
  26989. bottom: 10.5 / 1852
  26990. }
  26991. },
  26992. head: {
  26993. height: math.unit(1.31, "feet"),
  26994. name: "Head",
  26995. image: {
  26996. source: "./media/characters/nemoskii/head.svg"
  26997. }
  26998. },
  26999. },
  27000. [
  27001. {
  27002. name: "Micro",
  27003. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27004. },
  27005. {
  27006. name: "Normal",
  27007. height: math.unit(6 + 7 / 12, "feet"),
  27008. default: true
  27009. },
  27010. {
  27011. name: "Macro",
  27012. height: math.unit((6 + 7 / 12) * 150, "feet")
  27013. },
  27014. {
  27015. name: "Macro+",
  27016. height: math.unit((6 + 7 / 12) * 500, "feet")
  27017. },
  27018. {
  27019. name: "Megamacro",
  27020. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27021. },
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27026. {
  27027. front: {
  27028. height: math.unit(1, "mile"),
  27029. weight: math.unit(265261.9, "lb"),
  27030. name: "Front",
  27031. image: {
  27032. source: "./media/characters/shui/front.svg",
  27033. extra: 1633 / 1564,
  27034. bottom: 91.5 / 1726
  27035. }
  27036. },
  27037. },
  27038. [
  27039. {
  27040. name: "Macro",
  27041. height: math.unit(1, "mile"),
  27042. default: true
  27043. },
  27044. ]
  27045. ))
  27046. characterMakers.push(() => makeCharacter(
  27047. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27048. {
  27049. front: {
  27050. height: math.unit(12 + 6 / 12, "feet"),
  27051. weight: math.unit(1342, "lb"),
  27052. name: "Front",
  27053. image: {
  27054. source: "./media/characters/arokh-takakura/front.svg",
  27055. extra: 1089 / 1043,
  27056. bottom: 77.4 / 1176.7
  27057. }
  27058. },
  27059. back: {
  27060. height: math.unit(12 + 6 / 12, "feet"),
  27061. weight: math.unit(1342, "lb"),
  27062. name: "Back",
  27063. image: {
  27064. source: "./media/characters/arokh-takakura/back.svg",
  27065. extra: 1046 / 1019,
  27066. bottom: 102 / 1150
  27067. }
  27068. },
  27069. },
  27070. [
  27071. {
  27072. name: "Big",
  27073. height: math.unit(12 + 6 / 12, "feet"),
  27074. default: true
  27075. },
  27076. ]
  27077. ))
  27078. characterMakers.push(() => makeCharacter(
  27079. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27080. {
  27081. front: {
  27082. height: math.unit(5 + 6 / 12, "feet"),
  27083. weight: math.unit(150, "lb"),
  27084. name: "Front",
  27085. image: {
  27086. source: "./media/characters/theo/front.svg",
  27087. extra: 1184 / 1131,
  27088. bottom: 7.4 / 1191
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Micro",
  27095. height: math.unit(5, "inches")
  27096. },
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(5 + 6 / 12, "feet"),
  27100. default: true
  27101. },
  27102. ]
  27103. ))
  27104. characterMakers.push(() => makeCharacter(
  27105. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27106. {
  27107. front: {
  27108. height: math.unit(5 + 9 / 12, "feet"),
  27109. weight: math.unit(130, "lb"),
  27110. name: "Front",
  27111. image: {
  27112. source: "./media/characters/cecelia-swift/front.svg",
  27113. extra: 502 / 484,
  27114. bottom: 23 / 523
  27115. }
  27116. },
  27117. back: {
  27118. height: math.unit(5 + 9 / 12, "feet"),
  27119. weight: math.unit(130, "lb"),
  27120. name: "Back",
  27121. image: {
  27122. source: "./media/characters/cecelia-swift/back.svg",
  27123. extra: 499 / 485,
  27124. bottom: 12 / 511
  27125. }
  27126. },
  27127. head: {
  27128. height: math.unit(0.90, "feet"),
  27129. name: "Head",
  27130. image: {
  27131. source: "./media/characters/cecelia-swift/head.svg"
  27132. }
  27133. },
  27134. rump: {
  27135. height: math.unit(1.75, "feet"),
  27136. name: "Rump",
  27137. image: {
  27138. source: "./media/characters/cecelia-swift/rump.svg"
  27139. }
  27140. },
  27141. },
  27142. [
  27143. {
  27144. name: "Normal",
  27145. height: math.unit(5 + 9 / 12, "feet"),
  27146. default: true
  27147. },
  27148. {
  27149. name: "Big",
  27150. height: math.unit(50, "feet")
  27151. },
  27152. {
  27153. name: "Macro",
  27154. height: math.unit(100, "feet")
  27155. },
  27156. {
  27157. name: "Macro+",
  27158. height: math.unit(500, "feet")
  27159. },
  27160. {
  27161. name: "Macro++",
  27162. height: math.unit(1000, "feet")
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(6, "feet"),
  27171. weight: math.unit(150, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/kaunan/front.svg",
  27175. extra: 2890 / 2523,
  27176. bottom: 49 / 2939
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Macro",
  27183. height: math.unit(150, "feet"),
  27184. default: true
  27185. },
  27186. ]
  27187. ))
  27188. characterMakers.push(() => makeCharacter(
  27189. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27190. {
  27191. front: {
  27192. height: math.unit(175, "cm"),
  27193. weight: math.unit(60, "kg"),
  27194. name: "Front",
  27195. image: {
  27196. source: "./media/characters/fei/front.svg",
  27197. extra: 2581 / 2400,
  27198. bottom: 82.2 / 2663
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Mortal",
  27205. height: math.unit(175, "cm")
  27206. },
  27207. {
  27208. name: "Normal",
  27209. height: math.unit(3500, "m"),
  27210. default: true
  27211. },
  27212. {
  27213. name: "Stroll",
  27214. height: math.unit(17.5, "km")
  27215. },
  27216. {
  27217. name: "Showoff",
  27218. height: math.unit(175, "km")
  27219. },
  27220. ]
  27221. ))
  27222. characterMakers.push(() => makeCharacter(
  27223. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27224. {
  27225. front: {
  27226. height: math.unit(7, "feet"),
  27227. weight: math.unit(1000, "kg"),
  27228. name: "Front",
  27229. image: {
  27230. source: "./media/characters/edrax/front.svg",
  27231. extra: 2838 / 2550,
  27232. bottom: 130 / 2968
  27233. }
  27234. },
  27235. },
  27236. [
  27237. {
  27238. name: "Small",
  27239. height: math.unit(7, "feet")
  27240. },
  27241. {
  27242. name: "Normal",
  27243. height: math.unit(1500, "meters")
  27244. },
  27245. {
  27246. name: "Mega",
  27247. height: math.unit(12000000, "km"),
  27248. default: true
  27249. },
  27250. {
  27251. name: "Megamacro",
  27252. height: math.unit(10600000, "lightyears")
  27253. },
  27254. {
  27255. name: "Hypermacro",
  27256. height: math.unit(256, "yottameters")
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27262. {
  27263. front: {
  27264. height: math.unit(10, "feet"),
  27265. weight: math.unit(750, "lb"),
  27266. name: "Front",
  27267. image: {
  27268. source: "./media/characters/clove/front.svg",
  27269. extra: 2031 / 1860,
  27270. bottom: 47.8 / 2080
  27271. }
  27272. },
  27273. back: {
  27274. height: math.unit(10, "feet"),
  27275. weight: math.unit(750, "lb"),
  27276. name: "Back",
  27277. image: {
  27278. source: "./media/characters/clove/back.svg",
  27279. extra: 2025 / 1859,
  27280. bottom: 46 / 2071
  27281. }
  27282. },
  27283. },
  27284. [
  27285. {
  27286. name: "Normal",
  27287. height: math.unit(10, "feet"),
  27288. default: true
  27289. },
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27294. {
  27295. front: {
  27296. height: math.unit(4, "feet"),
  27297. weight: math.unit(50, "lb"),
  27298. name: "Front",
  27299. image: {
  27300. source: "./media/characters/alex-rabbit/front.svg",
  27301. extra: 507 / 458,
  27302. bottom: 18.5 / 527
  27303. }
  27304. },
  27305. back: {
  27306. height: math.unit(4, "feet"),
  27307. weight: math.unit(50, "lb"),
  27308. name: "Back",
  27309. image: {
  27310. source: "./media/characters/alex-rabbit/back.svg",
  27311. extra: 502 / 460,
  27312. bottom: 18.9 / 521
  27313. }
  27314. },
  27315. },
  27316. [
  27317. {
  27318. name: "Normal",
  27319. height: math.unit(4, "feet"),
  27320. default: true
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27326. {
  27327. front: {
  27328. height: math.unit(1 + 3 / 12, "feet"),
  27329. weight: math.unit(80, "lb"),
  27330. name: "Front",
  27331. image: {
  27332. source: "./media/characters/zander-rose/front.svg",
  27333. extra: 916 / 797,
  27334. bottom: 17 / 933
  27335. }
  27336. },
  27337. back: {
  27338. height: math.unit(1 + 3 / 12, "feet"),
  27339. weight: math.unit(80, "lb"),
  27340. name: "Back",
  27341. image: {
  27342. source: "./media/characters/zander-rose/back.svg",
  27343. extra: 903 / 779,
  27344. bottom: 31 / 934
  27345. }
  27346. },
  27347. },
  27348. [
  27349. {
  27350. name: "Normal",
  27351. height: math.unit(1 + 3 / 12, "feet"),
  27352. default: true
  27353. },
  27354. ]
  27355. ))
  27356. characterMakers.push(() => makeCharacter(
  27357. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27358. {
  27359. anthro: {
  27360. height: math.unit(6, "feet"),
  27361. weight: math.unit(150, "lb"),
  27362. name: "Anthro",
  27363. image: {
  27364. source: "./media/characters/razz/anthro.svg",
  27365. extra: 1437 / 1343,
  27366. bottom: 48 / 1485
  27367. }
  27368. },
  27369. feral: {
  27370. height: math.unit(6, "feet"),
  27371. weight: math.unit(150, "lb"),
  27372. name: "Feral",
  27373. image: {
  27374. source: "./media/characters/razz/feral.svg",
  27375. extra: 2569 / 1385,
  27376. bottom: 95 / 2664
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Normal",
  27383. height: math.unit(6, "feet"),
  27384. default: true
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27390. {
  27391. front: {
  27392. height: math.unit(9 + 4 / 12, "feet"),
  27393. weight: math.unit(500, "lb"),
  27394. name: "Front",
  27395. image: {
  27396. source: "./media/characters/morrigan/front.svg",
  27397. extra: 2707 / 2579,
  27398. bottom: 156 / 2863
  27399. }
  27400. },
  27401. },
  27402. [
  27403. {
  27404. name: "Normal",
  27405. height: math.unit(9 + 4 / 12, "feet"),
  27406. default: true
  27407. },
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(5, "stories"),
  27415. weight: math.unit(4000, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/jenene/front.svg",
  27419. extra: 1780 / 1710,
  27420. bottom: 57 / 1837
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Normal",
  27427. height: math.unit(5, "stories"),
  27428. default: true
  27429. },
  27430. ]
  27431. ))
  27432. characterMakers.push(() => makeCharacter(
  27433. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27434. {
  27435. front: {
  27436. height: math.unit(6, "feet"),
  27437. weight: math.unit(150, "lb"),
  27438. name: "Front",
  27439. image: {
  27440. source: "./media/characters/vix-archaser/front.svg",
  27441. extra: 2767 / 2562,
  27442. bottom: 36 / 2803
  27443. }
  27444. },
  27445. },
  27446. [
  27447. {
  27448. name: "Micro",
  27449. height: math.unit(1, "foot")
  27450. },
  27451. {
  27452. name: "Normal",
  27453. height: math.unit(6 + 5 / 12, "feet")
  27454. },
  27455. {
  27456. name: "Minimacro",
  27457. height: math.unit(500, "feet")
  27458. },
  27459. {
  27460. name: "Macro",
  27461. height: math.unit(4, "miles")
  27462. },
  27463. {
  27464. name: "Megamacro",
  27465. height: math.unit(250, "miles"),
  27466. default: true
  27467. },
  27468. {
  27469. name: "Gigamacro",
  27470. height: math.unit(1, "universe")
  27471. },
  27472. {
  27473. name: "Endgame",
  27474. height: math.unit(100, "multiverses")
  27475. }
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27480. {
  27481. taurSfw: {
  27482. height: math.unit(10, "meters"),
  27483. weight: math.unit(17500, "kg"),
  27484. name: "Taur",
  27485. image: {
  27486. source: "./media/characters/faey/taur-sfw.svg",
  27487. extra: 1200 / 968,
  27488. bottom: 41 / 1241
  27489. }
  27490. },
  27491. chestmaw: {
  27492. height: math.unit(2.01, "meters"),
  27493. name: "Chestmaw",
  27494. image: {
  27495. source: "./media/characters/faey/chestmaw.svg"
  27496. }
  27497. },
  27498. foot: {
  27499. height: math.unit(2.43, "meters"),
  27500. name: "Foot",
  27501. image: {
  27502. source: "./media/characters/faey/foot.svg"
  27503. }
  27504. },
  27505. jaws: {
  27506. height: math.unit(1.66, "meters"),
  27507. name: "Jaws",
  27508. image: {
  27509. source: "./media/characters/faey/jaws.svg"
  27510. }
  27511. },
  27512. tongues: {
  27513. height: math.unit(2.01, "meters"),
  27514. name: "Tongues",
  27515. image: {
  27516. source: "./media/characters/faey/tongues.svg"
  27517. }
  27518. },
  27519. },
  27520. [
  27521. {
  27522. name: "Small",
  27523. height: math.unit(10, "meters"),
  27524. default: true
  27525. },
  27526. {
  27527. name: "Big",
  27528. height: math.unit(500000, "km")
  27529. },
  27530. ]
  27531. ))
  27532. characterMakers.push(() => makeCharacter(
  27533. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27534. {
  27535. front: {
  27536. height: math.unit(7, "feet"),
  27537. weight: math.unit(275, "lb"),
  27538. name: "Front",
  27539. image: {
  27540. source: "./media/characters/roku/front.svg",
  27541. extra: 903 / 878,
  27542. bottom: 37 / 940
  27543. }
  27544. },
  27545. },
  27546. [
  27547. {
  27548. name: "Normal",
  27549. height: math.unit(7, "feet"),
  27550. default: true
  27551. },
  27552. {
  27553. name: "Macro",
  27554. height: math.unit(500, "feet")
  27555. },
  27556. {
  27557. name: "Megamacro",
  27558. height: math.unit(200, "miles")
  27559. },
  27560. ]
  27561. ))
  27562. characterMakers.push(() => makeCharacter(
  27563. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27564. {
  27565. front: {
  27566. height: math.unit(6 + 2 / 12, "feet"),
  27567. weight: math.unit(150, "lb"),
  27568. name: "Front",
  27569. image: {
  27570. source: "./media/characters/lira/front.svg",
  27571. extra: 1727 / 1605,
  27572. bottom: 26 / 1753
  27573. }
  27574. },
  27575. back: {
  27576. height: math.unit(6 + 2 / 12, "feet"),
  27577. weight: math.unit(150, "lb"),
  27578. name: "Back",
  27579. image: {
  27580. source: "./media/characters/lira/back.svg",
  27581. extra: 1713 / 159,
  27582. bottom: 20 / 1733
  27583. }
  27584. },
  27585. hand: {
  27586. height: math.unit(0.75, "feet"),
  27587. name: "Hand",
  27588. image: {
  27589. source: "./media/characters/lira/hand.svg"
  27590. }
  27591. },
  27592. maw: {
  27593. height: math.unit(0.65, "feet"),
  27594. name: "Maw",
  27595. image: {
  27596. source: "./media/characters/lira/maw.svg"
  27597. }
  27598. },
  27599. pawDigi: {
  27600. height: math.unit(1.6, "feet"),
  27601. name: "Paw Digi",
  27602. image: {
  27603. source: "./media/characters/lira/paw-digi.svg"
  27604. }
  27605. },
  27606. pawPlanti: {
  27607. height: math.unit(1.4, "feet"),
  27608. name: "Paw Planti",
  27609. image: {
  27610. source: "./media/characters/lira/paw-planti.svg"
  27611. }
  27612. },
  27613. },
  27614. [
  27615. {
  27616. name: "Normal",
  27617. height: math.unit(6 + 2 / 12, "feet"),
  27618. default: true
  27619. },
  27620. {
  27621. name: "Macro",
  27622. height: math.unit(100, "feet")
  27623. },
  27624. {
  27625. name: "Macro²",
  27626. height: math.unit(1600, "feet")
  27627. },
  27628. {
  27629. name: "Planetary",
  27630. height: math.unit(20, "earths")
  27631. },
  27632. ]
  27633. ))
  27634. characterMakers.push(() => makeCharacter(
  27635. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27636. {
  27637. front: {
  27638. height: math.unit(6, "feet"),
  27639. weight: math.unit(150, "lb"),
  27640. name: "Front",
  27641. image: {
  27642. source: "./media/characters/hadjet/front.svg",
  27643. extra: 1480 / 1346,
  27644. bottom: 26 / 1506
  27645. }
  27646. },
  27647. frontNsfw: {
  27648. height: math.unit(6, "feet"),
  27649. weight: math.unit(150, "lb"),
  27650. name: "Front (NSFW)",
  27651. image: {
  27652. source: "./media/characters/hadjet/front-nsfw.svg",
  27653. extra: 1440 / 1358,
  27654. bottom: 52 / 1492
  27655. }
  27656. },
  27657. },
  27658. [
  27659. {
  27660. name: "Macro",
  27661. height: math.unit(10, "stories"),
  27662. default: true
  27663. },
  27664. {
  27665. name: "Megamacro",
  27666. height: math.unit(1.5, "miles")
  27667. },
  27668. {
  27669. name: "Megamacro+",
  27670. height: math.unit(5, "miles")
  27671. },
  27672. ]
  27673. ))
  27674. characterMakers.push(() => makeCharacter(
  27675. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27676. {
  27677. side: {
  27678. height: math.unit(106, "feet"),
  27679. weight: math.unit(500, "tonnes"),
  27680. name: "Side",
  27681. image: {
  27682. source: "./media/characters/kodran/side.svg",
  27683. extra: 553 / 480,
  27684. bottom: 33 / 586
  27685. }
  27686. },
  27687. front: {
  27688. height: math.unit(132, "feet"),
  27689. weight: math.unit(500, "tonnes"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/kodran/front.svg",
  27693. extra: 667 / 643,
  27694. bottom: 42 / 709
  27695. }
  27696. },
  27697. flying: {
  27698. height: math.unit(350, "feet"),
  27699. weight: math.unit(500, "tonnes"),
  27700. name: "Flying",
  27701. image: {
  27702. source: "./media/characters/kodran/flying.svg"
  27703. }
  27704. },
  27705. foot: {
  27706. height: math.unit(33, "feet"),
  27707. name: "Foot",
  27708. image: {
  27709. source: "./media/characters/kodran/foot.svg"
  27710. }
  27711. },
  27712. footFront: {
  27713. height: math.unit(19, "feet"),
  27714. name: "Foot (Front)",
  27715. image: {
  27716. source: "./media/characters/kodran/foot-front.svg",
  27717. extra: 261 / 261,
  27718. bottom: 91 / 352
  27719. }
  27720. },
  27721. headFront: {
  27722. height: math.unit(53, "feet"),
  27723. name: "Head (Front)",
  27724. image: {
  27725. source: "./media/characters/kodran/head-front.svg"
  27726. }
  27727. },
  27728. headSide: {
  27729. height: math.unit(65, "feet"),
  27730. name: "Head (Side)",
  27731. image: {
  27732. source: "./media/characters/kodran/head-side.svg"
  27733. }
  27734. },
  27735. throat: {
  27736. height: math.unit(79, "feet"),
  27737. name: "Throat",
  27738. image: {
  27739. source: "./media/characters/kodran/throat.svg"
  27740. }
  27741. },
  27742. },
  27743. [
  27744. {
  27745. name: "Large",
  27746. height: math.unit(106, "feet"),
  27747. default: true
  27748. },
  27749. ]
  27750. ))
  27751. characterMakers.push(() => makeCharacter(
  27752. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27753. {
  27754. side: {
  27755. height: math.unit(11, "feet"),
  27756. weight: math.unit(150, "lb"),
  27757. name: "Side",
  27758. image: {
  27759. source: "./media/characters/pyxaron/side.svg",
  27760. extra: 305 / 195,
  27761. bottom: 17 / 322
  27762. }
  27763. },
  27764. },
  27765. [
  27766. {
  27767. name: "Normal",
  27768. height: math.unit(11, "feet"),
  27769. default: true
  27770. },
  27771. ]
  27772. ))
  27773. characterMakers.push(() => makeCharacter(
  27774. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27775. {
  27776. front: {
  27777. height: math.unit(6, "feet"),
  27778. weight: math.unit(150, "lb"),
  27779. name: "Front",
  27780. image: {
  27781. source: "./media/characters/meep/front.svg",
  27782. extra: 88 / 80,
  27783. bottom: 6 / 94
  27784. }
  27785. },
  27786. },
  27787. [
  27788. {
  27789. name: "Fun Sized",
  27790. height: math.unit(2, "inches"),
  27791. default: true
  27792. },
  27793. {
  27794. name: "Friend Sized",
  27795. height: math.unit(8, "inches")
  27796. },
  27797. ]
  27798. ))
  27799. characterMakers.push(() => makeCharacter(
  27800. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27801. {
  27802. front: {
  27803. height: math.unit(15, "feet"),
  27804. weight: math.unit(2500, "lb"),
  27805. name: "Front",
  27806. image: {
  27807. source: "./media/characters/holly-rabbit/front.svg",
  27808. extra: 1433 / 1233,
  27809. bottom: 125 / 1558
  27810. }
  27811. },
  27812. dick: {
  27813. height: math.unit(4.6, "feet"),
  27814. name: "Dick",
  27815. image: {
  27816. source: "./media/characters/holly-rabbit/dick.svg"
  27817. }
  27818. },
  27819. },
  27820. [
  27821. {
  27822. name: "Normal",
  27823. height: math.unit(15, "feet"),
  27824. default: true
  27825. },
  27826. {
  27827. name: "Macro",
  27828. height: math.unit(250, "feet")
  27829. },
  27830. {
  27831. name: "Macro+",
  27832. height: math.unit(2500, "feet")
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27838. {
  27839. front: {
  27840. height: math.unit(3.02, "meters"),
  27841. weight: math.unit(500, "kg"),
  27842. name: "Front",
  27843. image: {
  27844. source: "./media/characters/drena/front.svg",
  27845. extra: 282 / 243,
  27846. bottom: 8 / 290
  27847. }
  27848. },
  27849. side: {
  27850. height: math.unit(3.02, "meters"),
  27851. weight: math.unit(500, "kg"),
  27852. name: "Side",
  27853. image: {
  27854. source: "./media/characters/drena/side.svg",
  27855. extra: 280 / 245,
  27856. bottom: 10 / 290
  27857. }
  27858. },
  27859. back: {
  27860. height: math.unit(3.02, "meters"),
  27861. weight: math.unit(500, "kg"),
  27862. name: "Back",
  27863. image: {
  27864. source: "./media/characters/drena/back.svg",
  27865. extra: 278 / 243,
  27866. bottom: 2 / 280
  27867. }
  27868. },
  27869. foot: {
  27870. height: math.unit(0.75, "meters"),
  27871. name: "Foot",
  27872. image: {
  27873. source: "./media/characters/drena/foot.svg"
  27874. }
  27875. },
  27876. maw: {
  27877. height: math.unit(0.82, "meters"),
  27878. name: "Maw",
  27879. image: {
  27880. source: "./media/characters/drena/maw.svg"
  27881. }
  27882. },
  27883. rump: {
  27884. height: math.unit(0.93, "meters"),
  27885. name: "Rump",
  27886. image: {
  27887. source: "./media/characters/drena/rump.svg"
  27888. }
  27889. },
  27890. },
  27891. [
  27892. {
  27893. name: "Normal",
  27894. height: math.unit(3.02, "meters"),
  27895. default: true
  27896. },
  27897. ]
  27898. ))
  27899. characterMakers.push(() => makeCharacter(
  27900. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27901. {
  27902. front: {
  27903. height: math.unit(6 + 4 / 12, "feet"),
  27904. weight: math.unit(250, "lb"),
  27905. name: "Front",
  27906. image: {
  27907. source: "./media/characters/remmyzilla/front.svg",
  27908. extra: 4033 / 3588,
  27909. bottom: 123 / 4156
  27910. }
  27911. },
  27912. back: {
  27913. height: math.unit(6 + 4 / 12, "feet"),
  27914. weight: math.unit(250, "lb"),
  27915. name: "Back",
  27916. image: {
  27917. source: "./media/characters/remmyzilla/back.svg",
  27918. extra: 2687 / 2555,
  27919. bottom: 48 / 2735
  27920. }
  27921. },
  27922. frontFancy: {
  27923. height: math.unit(6 + 4 / 12, "feet"),
  27924. weight: math.unit(250, "lb"),
  27925. name: "Front (Fancy)",
  27926. image: {
  27927. source: "./media/characters/remmyzilla/front-fancy.svg",
  27928. extra: 4119 / 3419,
  27929. bottom: 237 / 4356
  27930. }
  27931. },
  27932. paw: {
  27933. height: math.unit(1.73, "feet"),
  27934. name: "Paw",
  27935. image: {
  27936. source: "./media/characters/remmyzilla/paw.svg"
  27937. }
  27938. },
  27939. maw: {
  27940. height: math.unit(1.73, "feet"),
  27941. name: "Maw",
  27942. image: {
  27943. source: "./media/characters/remmyzilla/maw.svg"
  27944. }
  27945. },
  27946. },
  27947. [
  27948. {
  27949. name: "Normal",
  27950. height: math.unit(6 + 4 / 12, "feet")
  27951. },
  27952. {
  27953. name: "Minimacro",
  27954. height: math.unit(12 + 8 / 12, "feet")
  27955. },
  27956. {
  27957. name: "Normal",
  27958. height: math.unit(640, "feet"),
  27959. default: true
  27960. },
  27961. {
  27962. name: "Megamacro",
  27963. height: math.unit(6400, "feet")
  27964. },
  27965. {
  27966. name: "Gigamacro",
  27967. height: math.unit(64000, "miles")
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27973. {
  27974. front: {
  27975. height: math.unit(2.5, "meters"),
  27976. weight: math.unit(300, "lb"),
  27977. name: "Front",
  27978. image: {
  27979. source: "./media/characters/lawrence/front.svg",
  27980. extra: 357 / 335,
  27981. bottom: 30 / 387
  27982. }
  27983. },
  27984. back: {
  27985. height: math.unit(2.5, "meters"),
  27986. weight: math.unit(300, "lb"),
  27987. name: "Back",
  27988. image: {
  27989. source: "./media/characters/lawrence/back.svg",
  27990. extra: 357 / 338,
  27991. bottom: 16 / 373
  27992. }
  27993. },
  27994. head: {
  27995. height: math.unit(0.9, "meter"),
  27996. name: "Head",
  27997. image: {
  27998. source: "./media/characters/lawrence/head.svg"
  27999. }
  28000. },
  28001. maw: {
  28002. height: math.unit(0.7, "meter"),
  28003. name: "Maw",
  28004. image: {
  28005. source: "./media/characters/lawrence/maw.svg"
  28006. }
  28007. },
  28008. footBottom: {
  28009. height: math.unit(0.5, "meter"),
  28010. name: "Foot (Bottom)",
  28011. image: {
  28012. source: "./media/characters/lawrence/foot-bottom.svg"
  28013. }
  28014. },
  28015. footTop: {
  28016. height: math.unit(0.5, "meter"),
  28017. name: "Foot (Top)",
  28018. image: {
  28019. source: "./media/characters/lawrence/foot-top.svg"
  28020. }
  28021. },
  28022. },
  28023. [
  28024. {
  28025. name: "Normal",
  28026. height: math.unit(2.5, "meters"),
  28027. default: true
  28028. },
  28029. {
  28030. name: "Macro",
  28031. height: math.unit(95, "meters")
  28032. },
  28033. {
  28034. name: "Megamacro",
  28035. height: math.unit(150, "km")
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28041. {
  28042. front: {
  28043. height: math.unit(4.2, "meters"),
  28044. name: "Front",
  28045. image: {
  28046. source: "./media/characters/sydney/front.svg",
  28047. extra: 1323 / 1277,
  28048. bottom: 111 / 1434
  28049. }
  28050. },
  28051. },
  28052. [
  28053. {
  28054. name: "Normal",
  28055. height: math.unit(4.2, "meters"),
  28056. default: true
  28057. },
  28058. ]
  28059. ))
  28060. characterMakers.push(() => makeCharacter(
  28061. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28062. {
  28063. back: {
  28064. height: math.unit(201, "feet"),
  28065. name: "Back",
  28066. image: {
  28067. source: "./media/characters/jessica/back.svg",
  28068. extra: 273 / 259,
  28069. bottom: 7 / 280
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(201, "feet"),
  28077. default: true
  28078. },
  28079. {
  28080. name: "Megamacro",
  28081. height: math.unit(8, "miles")
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28087. {
  28088. side: {
  28089. height: math.unit(320, "cm"),
  28090. name: "Side",
  28091. image: {
  28092. source: "./media/characters/victoria/side.svg",
  28093. extra: 778 / 346,
  28094. bottom: 56 / 834
  28095. }
  28096. },
  28097. maw: {
  28098. height: math.unit(5.9, "feet"),
  28099. name: "Maw",
  28100. image: {
  28101. source: "./media/characters/victoria/maw.svg"
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(320, "cm"),
  28109. default: true
  28110. },
  28111. ]
  28112. ))
  28113. characterMakers.push(() => makeCharacter(
  28114. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28115. {
  28116. front: {
  28117. height: math.unit(5 + 6 / 12, "feet"),
  28118. name: "Front",
  28119. image: {
  28120. source: "./media/characters/cat/front.svg",
  28121. extra: 1374 / 1257,
  28122. bottom: 59 / 1433
  28123. }
  28124. },
  28125. back: {
  28126. height: math.unit(5 + 6 / 12, "feet"),
  28127. name: "Back",
  28128. image: {
  28129. source: "./media/characters/cat/back.svg",
  28130. extra: 1337 / 1226,
  28131. bottom: 34 / 1371
  28132. }
  28133. },
  28134. taur: {
  28135. height: math.unit(7, "feet"),
  28136. name: "Taur",
  28137. image: {
  28138. source: "./media/characters/cat/taur.svg",
  28139. extra: 1345 / 1231,
  28140. bottom: 66 / 1411
  28141. }
  28142. },
  28143. lucario: {
  28144. height: math.unit(4, "feet"),
  28145. name: "Lucario",
  28146. image: {
  28147. source: "./media/characters/cat/lucario.svg",
  28148. extra: 1470 / 1318,
  28149. bottom: 65 / 1535
  28150. }
  28151. },
  28152. megaLucario: {
  28153. height: math.unit(4, "feet"),
  28154. name: "Mega Lucario",
  28155. image: {
  28156. source: "./media/characters/cat/mega-lucario.svg",
  28157. extra: 1515 / 1319,
  28158. bottom: 63 / 1578
  28159. }
  28160. },
  28161. nickit: {
  28162. height: math.unit(2, "feet"),
  28163. name: "Nickit",
  28164. image: {
  28165. source: "./media/characters/cat/nickit.svg",
  28166. extra: 1980 / 1585,
  28167. bottom: 102 / 2082
  28168. }
  28169. },
  28170. lopunnyFront: {
  28171. height: math.unit(5, "feet"),
  28172. name: "Lopunny (Front)",
  28173. image: {
  28174. source: "./media/characters/cat/lopunny-front.svg",
  28175. extra: 1782 / 1469,
  28176. bottom: 38 / 1820
  28177. }
  28178. },
  28179. lopunnyBack: {
  28180. height: math.unit(5, "feet"),
  28181. name: "Lopunny (Back)",
  28182. image: {
  28183. source: "./media/characters/cat/lopunny-back.svg",
  28184. extra: 1660 / 1490,
  28185. bottom: 25 / 1685
  28186. }
  28187. },
  28188. },
  28189. [
  28190. {
  28191. name: "Really small",
  28192. height: math.unit(1, "nm")
  28193. },
  28194. {
  28195. name: "Micro",
  28196. height: math.unit(5, "inches")
  28197. },
  28198. {
  28199. name: "Normal",
  28200. height: math.unit(5 + 6 / 12, "feet"),
  28201. default: true
  28202. },
  28203. {
  28204. name: "Macro",
  28205. height: math.unit(50, "feet")
  28206. },
  28207. {
  28208. name: "Macro+",
  28209. height: math.unit(150, "feet")
  28210. },
  28211. {
  28212. name: "Megamacro",
  28213. height: math.unit(100, "miles")
  28214. },
  28215. ]
  28216. ))
  28217. characterMakers.push(() => makeCharacter(
  28218. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28219. {
  28220. front: {
  28221. height: math.unit(63.4, "meters"),
  28222. weight: math.unit(3.28349e+6, "kilograms"),
  28223. name: "Front",
  28224. image: {
  28225. source: "./media/characters/kirina-violet/front.svg",
  28226. extra: 2812 / 2725,
  28227. bottom: 0 / 2812
  28228. }
  28229. },
  28230. back: {
  28231. height: math.unit(63.4, "meters"),
  28232. weight: math.unit(3.28349e+6, "kilograms"),
  28233. name: "Back",
  28234. image: {
  28235. source: "./media/characters/kirina-violet/back.svg",
  28236. extra: 2812 / 2725,
  28237. bottom: 0 / 2812
  28238. }
  28239. },
  28240. mouth: {
  28241. height: math.unit(4.35, "meters"),
  28242. name: "Mouth",
  28243. image: {
  28244. source: "./media/characters/kirina-violet/mouth.svg"
  28245. }
  28246. },
  28247. paw: {
  28248. height: math.unit(5.6, "meters"),
  28249. name: "Paw",
  28250. image: {
  28251. source: "./media/characters/kirina-violet/paw.svg"
  28252. }
  28253. },
  28254. tail: {
  28255. height: math.unit(18, "meters"),
  28256. name: "Tail",
  28257. image: {
  28258. source: "./media/characters/kirina-violet/tail.svg"
  28259. }
  28260. },
  28261. },
  28262. [
  28263. {
  28264. name: "Macro",
  28265. height: math.unit(63.4, "meters"),
  28266. default: true
  28267. },
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(60, "feet"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/cat-gigachu/front.svg",
  28278. extra: 1024 / 780,
  28279. bottom: 23 / 1047
  28280. }
  28281. },
  28282. back: {
  28283. height: math.unit(60, "feet"),
  28284. name: "Back",
  28285. image: {
  28286. source: "./media/characters/cat-gigachu/back.svg",
  28287. extra: 1024 / 780,
  28288. bottom: 23 / 1047
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Dynamax",
  28295. height: math.unit(60, "feet"),
  28296. default: true
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28302. {
  28303. front: {
  28304. height: math.unit(6, "feet"),
  28305. weight: math.unit(150, "lb"),
  28306. name: "Front",
  28307. image: {
  28308. source: "./media/characters/sfaiyan/front.svg",
  28309. extra: 999 / 978,
  28310. bottom: 5 / 1004
  28311. }
  28312. },
  28313. },
  28314. [
  28315. {
  28316. name: "Normal",
  28317. height: math.unit(1.82, "meters")
  28318. },
  28319. {
  28320. name: "Giant",
  28321. height: math.unit(2.27, "km"),
  28322. default: true
  28323. },
  28324. ]
  28325. ))
  28326. characterMakers.push(() => makeCharacter(
  28327. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28328. {
  28329. front: {
  28330. height: math.unit(179, "cm"),
  28331. weight: math.unit(100, "kg"),
  28332. name: "Front",
  28333. image: {
  28334. source: "./media/characters/raunehkeli/front.svg",
  28335. extra: 1934 / 1926,
  28336. bottom: 0 / 1934
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(179, "cm")
  28344. },
  28345. {
  28346. name: "Maximum",
  28347. height: math.unit(575, "meters"),
  28348. default: true
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(6, "feet"),
  28357. weight: math.unit(150, "lb"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28361. extra: 2625 / 2518,
  28362. bottom: 60 / 2685
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Normal",
  28369. height: math.unit(6 + 2 / 12, "feet")
  28370. },
  28371. {
  28372. name: "Macro",
  28373. height: math.unit(1180, "feet"),
  28374. default: true
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(5 + 6 / 12, "feet"),
  28383. weight: math.unit(108, "lb"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/lilith-zott/front.svg",
  28387. extra: 2510 / 2238,
  28388. bottom: 100 / 2610
  28389. }
  28390. },
  28391. frontDressed: {
  28392. height: math.unit(5 + 6 / 12, "feet"),
  28393. weight: math.unit(108, "lb"),
  28394. name: "Front (Dressed)",
  28395. image: {
  28396. source: "./media/characters/lilith-zott/front-dressed.svg",
  28397. extra: 2510 / 2238,
  28398. bottom: 100 / 2610
  28399. }
  28400. },
  28401. },
  28402. [
  28403. {
  28404. name: "Normal",
  28405. height: math.unit(5 + 6 / 12, "feet")
  28406. },
  28407. {
  28408. name: "Macro",
  28409. height: math.unit(1030, "feet"),
  28410. default: true
  28411. },
  28412. ]
  28413. ))
  28414. characterMakers.push(() => makeCharacter(
  28415. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28416. {
  28417. front: {
  28418. height: math.unit(6, "feet"),
  28419. weight: math.unit(150, "lb"),
  28420. name: "Front",
  28421. image: {
  28422. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28423. extra: 2567 / 2435,
  28424. bottom: 39 / 2606
  28425. }
  28426. },
  28427. frontSuper: {
  28428. height: math.unit(6, "feet"),
  28429. name: "Front (Super)",
  28430. image: {
  28431. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28432. extra: 2567 / 2435,
  28433. bottom: 39 / 2606
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(5 + 10 / 12, "feet")
  28441. },
  28442. {
  28443. name: "Macro",
  28444. height: math.unit(1100, "feet"),
  28445. default: true
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(100, "miles"),
  28454. name: "Front",
  28455. image: {
  28456. source: "./media/characters/sona/front.svg",
  28457. extra: 2433 / 2201,
  28458. bottom: 53 / 2486
  28459. }
  28460. },
  28461. foot: {
  28462. height: math.unit(16.1, "miles"),
  28463. name: "Foot",
  28464. image: {
  28465. source: "./media/characters/sona/foot.svg"
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Macro",
  28472. height: math.unit(100, "miles"),
  28473. default: true
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(6, "feet"),
  28482. weight: math.unit(150, "lb"),
  28483. name: "Front",
  28484. image: {
  28485. source: "./media/characters/bailey/front.svg",
  28486. extra: 1778 / 1724,
  28487. bottom: 30 / 1808
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Micro",
  28494. height: math.unit(4, "inches")
  28495. },
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(5 + 5 / 12, "feet"),
  28499. default: true
  28500. },
  28501. {
  28502. name: "Macro",
  28503. height: math.unit(250, "feet")
  28504. },
  28505. {
  28506. name: "Megamacro",
  28507. height: math.unit(100, "miles")
  28508. },
  28509. ]
  28510. ))
  28511. characterMakers.push(() => makeCharacter(
  28512. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28513. {
  28514. front: {
  28515. height: math.unit(5 + 2 / 12, "feet"),
  28516. weight: math.unit(120, "lb"),
  28517. name: "Front",
  28518. image: {
  28519. source: "./media/characters/snaps/front.svg",
  28520. extra: 2370 / 2177,
  28521. bottom: 48 / 2418
  28522. }
  28523. },
  28524. back: {
  28525. height: math.unit(5 + 2 / 12, "feet"),
  28526. weight: math.unit(120, "lb"),
  28527. name: "Back",
  28528. image: {
  28529. source: "./media/characters/snaps/back.svg",
  28530. extra: 2408 / 2258,
  28531. bottom: 15 / 2423
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Micro",
  28538. height: math.unit(9, "inches")
  28539. },
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(5 + 2 / 12, "feet"),
  28543. default: true
  28544. },
  28545. {
  28546. name: "Mini Macro",
  28547. height: math.unit(10, "feet")
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(1.8, "meters"),
  28556. weight: math.unit(85, "kg"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/azteck/front.svg",
  28560. extra: 2815 / 2625,
  28561. bottom: 89 / 2904
  28562. }
  28563. },
  28564. back: {
  28565. height: math.unit(1.8, "meters"),
  28566. weight: math.unit(85, "kg"),
  28567. name: "Back",
  28568. image: {
  28569. source: "./media/characters/azteck/back.svg",
  28570. extra: 2856 / 2648,
  28571. bottom: 85 / 2941
  28572. }
  28573. },
  28574. frontDressed: {
  28575. height: math.unit(1.8, "meters"),
  28576. weight: math.unit(85, "kg"),
  28577. name: "Front (Dressed)",
  28578. image: {
  28579. source: "./media/characters/azteck/front-dressed.svg",
  28580. extra: 2147 / 2003,
  28581. bottom: 68 / 2215
  28582. }
  28583. },
  28584. head: {
  28585. height: math.unit(0.47, "meters"),
  28586. weight: math.unit(85, "kg"),
  28587. name: "Head",
  28588. image: {
  28589. source: "./media/characters/azteck/head.svg"
  28590. }
  28591. },
  28592. },
  28593. [
  28594. {
  28595. name: "Bite sized",
  28596. height: math.unit(16, "cm")
  28597. },
  28598. {
  28599. name: "Normal",
  28600. height: math.unit(1.8, "meters"),
  28601. default: true
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(6, "feet"),
  28610. weight: math.unit(150, "lb"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/pidge/front.svg",
  28614. extra: 620 / 588,
  28615. bottom: 9 / 629
  28616. }
  28617. },
  28618. back: {
  28619. height: math.unit(6, "feet"),
  28620. weight: math.unit(150, "lb"),
  28621. name: "Back",
  28622. image: {
  28623. source: "./media/characters/pidge/back.svg",
  28624. extra: 620 / 588,
  28625. bottom: 9 / 629
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Macro",
  28632. height: math.unit(1, "mile"),
  28633. default: true
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28639. {
  28640. front: {
  28641. height: math.unit(6, "feet"),
  28642. weight: math.unit(150, "lb"),
  28643. name: "Front",
  28644. image: {
  28645. source: "./media/characters/en/front.svg",
  28646. extra: 1697 / 1563,
  28647. bottom: 103 / 1800
  28648. }
  28649. },
  28650. back: {
  28651. height: math.unit(6, "feet"),
  28652. weight: math.unit(150, "lb"),
  28653. name: "Back",
  28654. image: {
  28655. source: "./media/characters/en/back.svg",
  28656. extra: 1700 / 1570,
  28657. bottom: 51 / 1751
  28658. }
  28659. },
  28660. frontDressed: {
  28661. height: math.unit(6, "feet"),
  28662. weight: math.unit(150, "lb"),
  28663. name: "Front (Dressed)",
  28664. image: {
  28665. source: "./media/characters/en/front-dressed.svg",
  28666. extra: 1697 / 1563,
  28667. bottom: 103 / 1800
  28668. }
  28669. },
  28670. backDressed: {
  28671. height: math.unit(6, "feet"),
  28672. weight: math.unit(150, "lb"),
  28673. name: "Back (Dressed)",
  28674. image: {
  28675. source: "./media/characters/en/back-dressed.svg",
  28676. extra: 1700 / 1570,
  28677. bottom: 51 / 1751
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Macro",
  28684. height: math.unit(210, "feet"),
  28685. default: true
  28686. },
  28687. ]
  28688. ))
  28689. characterMakers.push(() => makeCharacter(
  28690. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28691. {
  28692. front: {
  28693. height: math.unit(6, "feet"),
  28694. weight: math.unit(150, "lb"),
  28695. name: "Front",
  28696. image: {
  28697. source: "./media/characters/haze-orris/front.svg",
  28698. extra: 3975 / 3525,
  28699. bottom: 137 / 4112
  28700. }
  28701. },
  28702. },
  28703. [
  28704. {
  28705. name: "Micro",
  28706. height: math.unit(150, "mm"),
  28707. default: true
  28708. },
  28709. ]
  28710. ))
  28711. characterMakers.push(() => makeCharacter(
  28712. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28713. {
  28714. front: {
  28715. height: math.unit(6, "feet"),
  28716. weight: math.unit(150, "lb"),
  28717. name: "Front",
  28718. image: {
  28719. source: "./media/characters/casselene-yaro/front.svg",
  28720. extra: 4721 / 4541,
  28721. bottom: 82 / 4803
  28722. }
  28723. },
  28724. back: {
  28725. height: math.unit(6, "feet"),
  28726. weight: math.unit(150, "lb"),
  28727. name: "Back",
  28728. image: {
  28729. source: "./media/characters/casselene-yaro/back.svg",
  28730. extra: 4569 / 4377,
  28731. bottom: 69 / 4638
  28732. }
  28733. },
  28734. frontDressed: {
  28735. height: math.unit(6, "feet"),
  28736. weight: math.unit(150, "lb"),
  28737. name: "Front-dressed",
  28738. image: {
  28739. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28740. extra: 4721 / 4541,
  28741. bottom: 82 / 4803
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Macro",
  28748. height: math.unit(190, "feet"),
  28749. default: true
  28750. },
  28751. ]
  28752. ))
  28753. characterMakers.push(() => makeCharacter(
  28754. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28755. {
  28756. front: {
  28757. height: math.unit(6, "feet"),
  28758. weight: math.unit(150, "lb"),
  28759. name: "Front",
  28760. image: {
  28761. source: "./media/characters/myra-rue-delore/front.svg",
  28762. extra: 1340 / 1308,
  28763. bottom: 67 / 1407
  28764. }
  28765. },
  28766. back: {
  28767. height: math.unit(6, "feet"),
  28768. weight: math.unit(150, "lb"),
  28769. name: "Back",
  28770. image: {
  28771. source: "./media/characters/myra-rue-delore/back.svg",
  28772. extra: 1341 / 1310,
  28773. bottom: 40 / 1381
  28774. }
  28775. },
  28776. frontDressed: {
  28777. height: math.unit(6, "feet"),
  28778. weight: math.unit(150, "lb"),
  28779. name: "Front (Dressed)",
  28780. image: {
  28781. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28782. extra: 1340 / 1308,
  28783. bottom: 67 / 1407
  28784. }
  28785. },
  28786. },
  28787. [
  28788. {
  28789. name: "Macro",
  28790. height: math.unit(150, "feet"),
  28791. default: true
  28792. },
  28793. ]
  28794. ))
  28795. characterMakers.push(() => makeCharacter(
  28796. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28797. {
  28798. front: {
  28799. height: math.unit(10, "feet"),
  28800. weight: math.unit(15015, "lb"),
  28801. name: "Front",
  28802. image: {
  28803. source: "./media/characters/fem!plat/front.svg",
  28804. extra: 2799 / 2604,
  28805. bottom: 149 / 2948
  28806. }
  28807. },
  28808. },
  28809. [
  28810. {
  28811. name: "Normal",
  28812. height: math.unit(10, "feet"),
  28813. default: true
  28814. },
  28815. {
  28816. name: "Macro",
  28817. height: math.unit(100, "feet")
  28818. },
  28819. {
  28820. name: "Megamacro",
  28821. height: math.unit(1000, "feet")
  28822. },
  28823. ]
  28824. ))
  28825. characterMakers.push(() => makeCharacter(
  28826. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28827. {
  28828. front: {
  28829. height: math.unit(15 + 5 / 12, "feet"),
  28830. weight: math.unit(4600, "lb"),
  28831. name: "Front",
  28832. image: {
  28833. source: "./media/characters/neapolitan-ananassa/front.svg",
  28834. extra: 2903 / 2736,
  28835. bottom: 0 / 2903
  28836. }
  28837. },
  28838. side: {
  28839. height: math.unit(15 + 5 / 12, "feet"),
  28840. weight: math.unit(4600, "lb"),
  28841. name: "Side",
  28842. image: {
  28843. source: "./media/characters/neapolitan-ananassa/side.svg",
  28844. extra: 2925 / 2719,
  28845. bottom: 0 / 2925
  28846. }
  28847. },
  28848. back: {
  28849. height: math.unit(15 + 5 / 12, "feet"),
  28850. weight: math.unit(4600, "lb"),
  28851. name: "Back",
  28852. image: {
  28853. source: "./media/characters/neapolitan-ananassa/back.svg",
  28854. extra: 2903 / 2736,
  28855. bottom: 0 / 2903
  28856. }
  28857. },
  28858. },
  28859. [
  28860. {
  28861. name: "Normal",
  28862. height: math.unit(15 + 5 / 12, "feet"),
  28863. default: true
  28864. },
  28865. {
  28866. name: "Post-Millenium",
  28867. height: math.unit(35 + 5 / 12, "feet")
  28868. },
  28869. {
  28870. name: "Post-Era",
  28871. height: math.unit(450 + 5 / 12, "feet")
  28872. },
  28873. ]
  28874. ))
  28875. characterMakers.push(() => makeCharacter(
  28876. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28877. {
  28878. front: {
  28879. height: math.unit(300, "meters"),
  28880. weight: math.unit(125000, "tonnes"),
  28881. name: "Front",
  28882. image: {
  28883. source: "./media/characters/pazuzu/front.svg",
  28884. extra: 877 / 794,
  28885. bottom: 47 / 924
  28886. }
  28887. },
  28888. },
  28889. [
  28890. {
  28891. name: "Macro",
  28892. height: math.unit(300, "meters"),
  28893. default: true
  28894. },
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28899. {
  28900. side: {
  28901. height: math.unit(10 + 7 / 12, "feet"),
  28902. weight: math.unit(2.5, "tons"),
  28903. name: "Side",
  28904. image: {
  28905. source: "./media/characters/aasha/side.svg",
  28906. extra: 1345 / 1245,
  28907. bottom: 111 / 1456
  28908. }
  28909. },
  28910. back: {
  28911. height: math.unit(10 + 7 / 12, "feet"),
  28912. weight: math.unit(2.5, "tons"),
  28913. name: "Back",
  28914. image: {
  28915. source: "./media/characters/aasha/back.svg",
  28916. extra: 1133 / 1057,
  28917. bottom: 257 / 1390
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Normal",
  28924. height: math.unit(10 + 7 / 12, "feet"),
  28925. default: true
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(6 + 3 / 12, "feet"),
  28934. name: "Front",
  28935. image: {
  28936. source: "./media/characters/nevan/front.svg",
  28937. extra: 704 / 704,
  28938. bottom: 28 / 732
  28939. }
  28940. },
  28941. back: {
  28942. height: math.unit(6 + 3 / 12, "feet"),
  28943. name: "Back",
  28944. image: {
  28945. source: "./media/characters/nevan/back.svg",
  28946. extra: 714 / 714,
  28947. bottom: 21 / 735
  28948. }
  28949. },
  28950. frontFlaccid: {
  28951. height: math.unit(6 + 3 / 12, "feet"),
  28952. name: "Front (Flaccid)",
  28953. image: {
  28954. source: "./media/characters/nevan/front-flaccid.svg",
  28955. extra: 704 / 704,
  28956. bottom: 28 / 732
  28957. }
  28958. },
  28959. frontErect: {
  28960. height: math.unit(6 + 3 / 12, "feet"),
  28961. name: "Front (Erect)",
  28962. image: {
  28963. source: "./media/characters/nevan/front-erect.svg",
  28964. extra: 704 / 704,
  28965. bottom: 28 / 732
  28966. }
  28967. },
  28968. backFlaccid: {
  28969. height: math.unit(6 + 3 / 12, "feet"),
  28970. name: "Back (Flaccid)",
  28971. image: {
  28972. source: "./media/characters/nevan/back-flaccid.svg",
  28973. extra: 714 / 714,
  28974. bottom: 21 / 735
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Normal",
  28981. height: math.unit(6 + 3 / 12, "feet"),
  28982. default: true
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(4, "feet"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/arhan/front.svg",
  28994. extra: 3368 / 3133,
  28995. bottom: 0 / 3368
  28996. }
  28997. },
  28998. side: {
  28999. height: math.unit(4, "feet"),
  29000. name: "Side",
  29001. image: {
  29002. source: "./media/characters/arhan/side.svg",
  29003. extra: 3347 / 3105,
  29004. bottom: 0 / 3347
  29005. }
  29006. },
  29007. tongue: {
  29008. height: math.unit(1.42, "feet"),
  29009. name: "Tongue",
  29010. image: {
  29011. source: "./media/characters/arhan/tongue.svg"
  29012. }
  29013. },
  29014. head: {
  29015. height: math.unit(0.85, "feet"),
  29016. name: "Head",
  29017. image: {
  29018. source: "./media/characters/arhan/head.svg"
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Normal",
  29025. height: math.unit(4, "feet"),
  29026. default: true
  29027. },
  29028. ]
  29029. ))
  29030. characterMakers.push(() => makeCharacter(
  29031. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29032. {
  29033. front: {
  29034. height: math.unit(5 + 7.5 / 12, "feet"),
  29035. weight: math.unit(120, "lb"),
  29036. name: "Front",
  29037. image: {
  29038. source: "./media/characters/digi-duncan/front.svg",
  29039. extra: 330 / 326,
  29040. bottom: 16 / 346
  29041. }
  29042. },
  29043. side: {
  29044. height: math.unit(5 + 7.5 / 12, "feet"),
  29045. weight: math.unit(120, "lb"),
  29046. name: "Side",
  29047. image: {
  29048. source: "./media/characters/digi-duncan/side.svg",
  29049. extra: 341 / 337,
  29050. bottom: 1 / 342
  29051. }
  29052. },
  29053. back: {
  29054. height: math.unit(5 + 7.5 / 12, "feet"),
  29055. weight: math.unit(120, "lb"),
  29056. name: "Back",
  29057. image: {
  29058. source: "./media/characters/digi-duncan/back.svg",
  29059. extra: 330 / 326,
  29060. bottom: 12 / 342
  29061. }
  29062. },
  29063. },
  29064. [
  29065. {
  29066. name: "Speck",
  29067. height: math.unit(0.25, "mm")
  29068. },
  29069. {
  29070. name: "Micro",
  29071. height: math.unit(5, "mm")
  29072. },
  29073. {
  29074. name: "Tiny",
  29075. height: math.unit(0.5, "inches"),
  29076. default: true
  29077. },
  29078. {
  29079. name: "Human",
  29080. height: math.unit(5 + 7.5 / 12, "feet")
  29081. },
  29082. {
  29083. name: "Minigiant",
  29084. height: math.unit(8 + 5.25, "feet")
  29085. },
  29086. {
  29087. name: "Giant",
  29088. height: math.unit(2000, "feet")
  29089. },
  29090. {
  29091. name: "Mega",
  29092. height: math.unit(371.1, "miles")
  29093. },
  29094. ]
  29095. ))
  29096. characterMakers.push(() => makeCharacter(
  29097. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29098. {
  29099. front: {
  29100. height: math.unit(2, "meters"),
  29101. weight: math.unit(350, "kg"),
  29102. name: "Front",
  29103. image: {
  29104. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29105. extra: 898 / 838,
  29106. bottom: 9 / 907
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Micro",
  29113. height: math.unit(8, "meters")
  29114. },
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(50, "meters"),
  29118. default: true
  29119. },
  29120. {
  29121. name: "Macro",
  29122. height: math.unit(500, "meters")
  29123. },
  29124. ]
  29125. ))
  29126. characterMakers.push(() => makeCharacter(
  29127. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29128. {
  29129. front: {
  29130. height: math.unit(6 + 6 / 12, "feet"),
  29131. name: "Front",
  29132. image: {
  29133. source: "./media/characters/khardesh/front.svg",
  29134. extra: 888 / 797,
  29135. bottom: 25 / 913
  29136. }
  29137. },
  29138. },
  29139. [
  29140. {
  29141. name: "Normal",
  29142. height: math.unit(6 + 6 / 12, "feet"),
  29143. default: true
  29144. },
  29145. {
  29146. name: "Normal+",
  29147. height: math.unit(4, "meters")
  29148. },
  29149. {
  29150. name: "Macro",
  29151. height: math.unit(50, "meters")
  29152. },
  29153. {
  29154. name: "Macro+",
  29155. height: math.unit(100, "meters")
  29156. },
  29157. {
  29158. name: "Megamacro",
  29159. height: math.unit(20, "km")
  29160. },
  29161. ]
  29162. ))
  29163. characterMakers.push(() => makeCharacter(
  29164. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29165. {
  29166. front: {
  29167. height: math.unit(6, "feet"),
  29168. weight: math.unit(150, "lb"),
  29169. name: "Front",
  29170. image: {
  29171. source: "./media/characters/kosho/front.svg",
  29172. extra: 1847 / 1847,
  29173. bottom: 86 / 1933
  29174. }
  29175. },
  29176. },
  29177. [
  29178. {
  29179. name: "Second-stage micro",
  29180. height: math.unit(0.5, "inches")
  29181. },
  29182. {
  29183. name: "First-stage micro",
  29184. height: math.unit(6, "inches")
  29185. },
  29186. {
  29187. name: "Normal",
  29188. height: math.unit(6, "feet"),
  29189. default: true
  29190. },
  29191. {
  29192. name: "First-stage macro",
  29193. height: math.unit(72, "feet")
  29194. },
  29195. {
  29196. name: "Second-stage macro",
  29197. height: math.unit(864, "feet")
  29198. },
  29199. ]
  29200. ))
  29201. characterMakers.push(() => makeCharacter(
  29202. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29203. {
  29204. normal: {
  29205. height: math.unit(4 + 6 / 12, "feet"),
  29206. name: "Normal",
  29207. image: {
  29208. source: "./media/characters/hydra/normal.svg",
  29209. extra: 2833 / 2634,
  29210. bottom: 68 / 2901
  29211. }
  29212. },
  29213. smol: {
  29214. height: math.unit(0.705, "inches"),
  29215. name: "Smol",
  29216. image: {
  29217. source: "./media/characters/hydra/smol.svg",
  29218. extra: 2715 / 2540,
  29219. bottom: 0 / 2715
  29220. }
  29221. },
  29222. },
  29223. [
  29224. {
  29225. name: "Normal",
  29226. height: math.unit(4 + 6 / 12, "feet"),
  29227. default: true
  29228. }
  29229. ]
  29230. ))
  29231. characterMakers.push(() => makeCharacter(
  29232. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29233. {
  29234. front: {
  29235. height: math.unit(0.6, "cm"),
  29236. name: "Front",
  29237. image: {
  29238. source: "./media/characters/daz/front.svg",
  29239. extra: 1682 / 1164,
  29240. bottom: 42 / 1724
  29241. }
  29242. },
  29243. },
  29244. [
  29245. {
  29246. name: "Normal",
  29247. height: math.unit(0.6, "cm"),
  29248. default: true
  29249. },
  29250. ]
  29251. ))
  29252. characterMakers.push(() => makeCharacter(
  29253. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29254. {
  29255. front: {
  29256. height: math.unit(6, "feet"),
  29257. weight: math.unit(235, "lb"),
  29258. name: "Front",
  29259. image: {
  29260. source: "./media/characters/theo-pangolin/front.svg",
  29261. extra: 1996 / 1969,
  29262. bottom: 115 / 2111
  29263. }
  29264. },
  29265. back: {
  29266. height: math.unit(6, "feet"),
  29267. weight: math.unit(235, "lb"),
  29268. name: "Back",
  29269. image: {
  29270. source: "./media/characters/theo-pangolin/back.svg",
  29271. extra: 1979 / 1979,
  29272. bottom: 40 / 2019
  29273. }
  29274. },
  29275. feral: {
  29276. height: math.unit(2, "feet"),
  29277. weight: math.unit(30, "lb"),
  29278. name: "Feral",
  29279. image: {
  29280. source: "./media/characters/theo-pangolin/feral.svg",
  29281. extra: 803 / 791,
  29282. bottom: 181 / 984
  29283. }
  29284. },
  29285. footFive: {
  29286. height: math.unit(1.43, "feet"),
  29287. name: "Foot (Five Toes)",
  29288. image: {
  29289. source: "./media/characters/theo-pangolin/foot-five.svg"
  29290. }
  29291. },
  29292. footFour: {
  29293. height: math.unit(1.43, "feet"),
  29294. name: "Foot (Four Toes)",
  29295. image: {
  29296. source: "./media/characters/theo-pangolin/foot-four.svg"
  29297. }
  29298. },
  29299. handFour: {
  29300. height: math.unit(0.81, "feet"),
  29301. name: "Hand (Four Fingers)",
  29302. image: {
  29303. source: "./media/characters/theo-pangolin/hand-four.svg"
  29304. }
  29305. },
  29306. handThree: {
  29307. height: math.unit(0.81, "feet"),
  29308. name: "Hand (Three Fingers)",
  29309. image: {
  29310. source: "./media/characters/theo-pangolin/hand-three.svg"
  29311. }
  29312. },
  29313. headFront: {
  29314. height: math.unit(1.37, "feet"),
  29315. name: "Head (Front)",
  29316. image: {
  29317. source: "./media/characters/theo-pangolin/head-front.svg"
  29318. }
  29319. },
  29320. headSide: {
  29321. height: math.unit(1.43, "feet"),
  29322. name: "Head (Side)",
  29323. image: {
  29324. source: "./media/characters/theo-pangolin/head-side.svg"
  29325. }
  29326. },
  29327. tongue: {
  29328. height: math.unit(2.29, "feet"),
  29329. name: "Tongue",
  29330. image: {
  29331. source: "./media/characters/theo-pangolin/tongue.svg"
  29332. }
  29333. },
  29334. },
  29335. [
  29336. {
  29337. name: "Normal",
  29338. height: math.unit(6, "feet")
  29339. },
  29340. {
  29341. name: "Macro",
  29342. height: math.unit(400, "feet"),
  29343. default: true
  29344. },
  29345. ]
  29346. ))
  29347. characterMakers.push(() => makeCharacter(
  29348. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29349. {
  29350. front: {
  29351. height: math.unit(6, "inches"),
  29352. weight: math.unit(0.036, "kg"),
  29353. name: "Front",
  29354. image: {
  29355. source: "./media/characters/renée/front.svg",
  29356. extra: 900 / 886,
  29357. bottom: 8 / 908
  29358. }
  29359. },
  29360. },
  29361. [
  29362. {
  29363. name: "Nano",
  29364. height: math.unit(1, "nm")
  29365. },
  29366. {
  29367. name: "Micro",
  29368. height: math.unit(1, "mm")
  29369. },
  29370. {
  29371. name: "Normal",
  29372. height: math.unit(6, "inches")
  29373. },
  29374. {
  29375. name: "Macro",
  29376. height: math.unit(2000, "feet"),
  29377. default: true
  29378. },
  29379. {
  29380. name: "Megamacro",
  29381. height: math.unit(2, "km")
  29382. },
  29383. {
  29384. name: "Gigamacro",
  29385. height: math.unit(2000, "km")
  29386. },
  29387. {
  29388. name: "Teramacro",
  29389. height: math.unit(250000, "km")
  29390. },
  29391. ]
  29392. ))
  29393. characterMakers.push(() => makeCharacter(
  29394. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29395. {
  29396. front: {
  29397. height: math.unit(4, "meters"),
  29398. weight: math.unit(150, "kg"),
  29399. name: "Front",
  29400. image: {
  29401. source: "./media/characters/caledvwlch/front.svg",
  29402. extra: 1760 / 1551,
  29403. bottom: 28 / 1788
  29404. }
  29405. },
  29406. side: {
  29407. height: math.unit(4, "meters"),
  29408. weight: math.unit(150, "kg"),
  29409. name: "Side",
  29410. image: {
  29411. source: "./media/characters/caledvwlch/side.svg",
  29412. extra: 1605 / 1536,
  29413. bottom: 31 / 1636
  29414. }
  29415. },
  29416. back: {
  29417. height: math.unit(4, "meters"),
  29418. weight: math.unit(150, "kg"),
  29419. name: "Back",
  29420. image: {
  29421. source: "./media/characters/caledvwlch/back.svg",
  29422. extra: 1635 / 1565,
  29423. bottom: 27 / 1662
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "\"Incognito\"",
  29430. height: math.unit(4, "meters")
  29431. },
  29432. {
  29433. name: "Small rampage",
  29434. height: math.unit(600, "meters")
  29435. },
  29436. {
  29437. name: "Mega",
  29438. height: math.unit(30, "km")
  29439. },
  29440. {
  29441. name: "Home-size",
  29442. height: math.unit(50, "km"),
  29443. default: true
  29444. },
  29445. {
  29446. name: "Giga",
  29447. height: math.unit(300, "km")
  29448. },
  29449. {
  29450. name: "Lounging",
  29451. height: math.unit(11000, "km")
  29452. },
  29453. {
  29454. name: "Planet snacking",
  29455. height: math.unit(2000000, "km")
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29461. {
  29462. front: {
  29463. height: math.unit(6, "feet"),
  29464. weight: math.unit(215, "lb"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/sapphire-svell/front.svg",
  29468. extra: 495 / 455,
  29469. bottom: 20 / 515
  29470. }
  29471. },
  29472. back: {
  29473. height: math.unit(6, "feet"),
  29474. weight: math.unit(216, "lb"),
  29475. name: "Back",
  29476. image: {
  29477. source: "./media/characters/sapphire-svell/back.svg",
  29478. extra: 497 / 477,
  29479. bottom: 7 / 504
  29480. }
  29481. },
  29482. maw: {
  29483. height: math.unit(1.57, "feet"),
  29484. name: "Maw",
  29485. image: {
  29486. source: "./media/characters/sapphire-svell/maw.svg"
  29487. }
  29488. },
  29489. foot: {
  29490. height: math.unit(1.07, "feet"),
  29491. name: "Foot",
  29492. image: {
  29493. source: "./media/characters/sapphire-svell/foot.svg"
  29494. }
  29495. },
  29496. toering: {
  29497. height: math.unit(1.7, "inch"),
  29498. name: "Toering",
  29499. image: {
  29500. source: "./media/characters/sapphire-svell/toering.svg"
  29501. }
  29502. },
  29503. },
  29504. [
  29505. {
  29506. name: "Normal",
  29507. height: math.unit(300, "feet"),
  29508. default: true
  29509. },
  29510. {
  29511. name: "Augmented",
  29512. height: math.unit(1250, "feet")
  29513. },
  29514. {
  29515. name: "Unleashed",
  29516. height: math.unit(3000, "feet")
  29517. },
  29518. ]
  29519. ))
  29520. characterMakers.push(() => makeCharacter(
  29521. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29522. {
  29523. side: {
  29524. height: math.unit(2 + 3 / 12, "feet"),
  29525. weight: math.unit(110, "lb"),
  29526. name: "Side",
  29527. image: {
  29528. source: "./media/characters/glitch-flux/side.svg",
  29529. extra: 997 / 805,
  29530. bottom: 20 / 1017
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(2 + 3 / 12, "feet"),
  29538. default: true
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29544. {
  29545. front: {
  29546. height: math.unit(4, "meters"),
  29547. name: "Front",
  29548. image: {
  29549. source: "./media/characters/mid/front.svg",
  29550. extra: 507 / 476,
  29551. bottom: 17 / 524
  29552. }
  29553. },
  29554. back: {
  29555. height: math.unit(4, "meters"),
  29556. name: "Back",
  29557. image: {
  29558. source: "./media/characters/mid/back.svg",
  29559. extra: 519 / 487,
  29560. bottom: 7 / 526
  29561. }
  29562. },
  29563. stuck: {
  29564. height: math.unit(2.2, "meters"),
  29565. name: "Stuck",
  29566. image: {
  29567. source: "./media/characters/mid/stuck.svg",
  29568. extra: 1951 / 1869,
  29569. bottom: 88 / 2039
  29570. }
  29571. }
  29572. },
  29573. [
  29574. {
  29575. name: "Normal",
  29576. height: math.unit(4, "meters"),
  29577. default: true
  29578. },
  29579. {
  29580. name: "Big",
  29581. height: math.unit(10, "meters")
  29582. },
  29583. {
  29584. name: "Macro",
  29585. height: math.unit(800, "meters")
  29586. },
  29587. {
  29588. name: "Megamacro",
  29589. height: math.unit(100, "km")
  29590. },
  29591. {
  29592. name: "Overgrown",
  29593. height: math.unit(1, "parsec")
  29594. },
  29595. ]
  29596. ))
  29597. characterMakers.push(() => makeCharacter(
  29598. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29599. {
  29600. front: {
  29601. height: math.unit(2.5, "meters"),
  29602. weight: math.unit(225, "kg"),
  29603. name: "Front",
  29604. image: {
  29605. source: "./media/characters/iris/front.svg",
  29606. extra: 3348 / 3251,
  29607. bottom: 205 / 3553
  29608. }
  29609. },
  29610. maw: {
  29611. height: math.unit(0.56, "meter"),
  29612. name: "Maw",
  29613. image: {
  29614. source: "./media/characters/iris/maw.svg"
  29615. }
  29616. },
  29617. },
  29618. [
  29619. {
  29620. name: "Mewter cat",
  29621. height: math.unit(1.2, "meters")
  29622. },
  29623. {
  29624. name: "Minimacro",
  29625. height: math.unit(2.5, "meters"),
  29626. default: true
  29627. },
  29628. {
  29629. name: "Macro",
  29630. height: math.unit(180, "meters")
  29631. },
  29632. {
  29633. name: "Megamacro",
  29634. height: math.unit(2746, "meters")
  29635. },
  29636. ]
  29637. ))
  29638. characterMakers.push(() => makeCharacter(
  29639. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29640. {
  29641. front: {
  29642. height: math.unit(6, "feet"),
  29643. weight: math.unit(135, "lb"),
  29644. name: "Front",
  29645. image: {
  29646. source: "./media/characters/axel/front.svg",
  29647. extra: 908 / 908,
  29648. bottom: 58 / 966
  29649. }
  29650. },
  29651. side: {
  29652. height: math.unit(6, "feet"),
  29653. weight: math.unit(135, "lb"),
  29654. name: "Side",
  29655. image: {
  29656. source: "./media/characters/axel/side.svg",
  29657. extra: 958 / 958,
  29658. bottom: 11 / 969
  29659. }
  29660. },
  29661. back: {
  29662. height: math.unit(6, "feet"),
  29663. weight: math.unit(135, "lb"),
  29664. name: "Back",
  29665. image: {
  29666. source: "./media/characters/axel/back.svg",
  29667. extra: 887 / 887,
  29668. bottom: 34 / 921
  29669. }
  29670. },
  29671. head: {
  29672. height: math.unit(1.07, "feet"),
  29673. name: "Head",
  29674. image: {
  29675. source: "./media/characters/axel/head.svg"
  29676. }
  29677. },
  29678. beak: {
  29679. height: math.unit(1.4, "feet"),
  29680. name: "Beak",
  29681. image: {
  29682. source: "./media/characters/axel/beak.svg"
  29683. }
  29684. },
  29685. beakSide: {
  29686. height: math.unit(1.4, "feet"),
  29687. name: "Beak Side",
  29688. image: {
  29689. source: "./media/characters/axel/beak-side.svg"
  29690. }
  29691. },
  29692. sheath: {
  29693. height: math.unit(0.5, "feet"),
  29694. name: "Sheath",
  29695. image: {
  29696. source: "./media/characters/axel/sheath.svg"
  29697. }
  29698. },
  29699. dick: {
  29700. height: math.unit(0.98, "feet"),
  29701. name: "Dick",
  29702. image: {
  29703. source: "./media/characters/axel/dick.svg"
  29704. }
  29705. },
  29706. },
  29707. [
  29708. {
  29709. name: "Macro",
  29710. height: math.unit(68, "meters"),
  29711. default: true
  29712. },
  29713. ]
  29714. ))
  29715. characterMakers.push(() => makeCharacter(
  29716. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29717. {
  29718. front: {
  29719. height: math.unit(3.5, "meters"),
  29720. weight: math.unit(1200, "kg"),
  29721. name: "Front",
  29722. image: {
  29723. source: "./media/characters/joanna/front.svg",
  29724. extra: 1596 / 1488,
  29725. bottom: 29 / 1625
  29726. }
  29727. },
  29728. back: {
  29729. height: math.unit(3.5, "meters"),
  29730. weight: math.unit(1200, "kg"),
  29731. name: "Back",
  29732. image: {
  29733. source: "./media/characters/joanna/back.svg",
  29734. extra: 1594 / 1495,
  29735. bottom: 26 / 1620
  29736. }
  29737. },
  29738. frontShorts: {
  29739. height: math.unit(3.5, "meters"),
  29740. weight: math.unit(1200, "kg"),
  29741. name: "Front (Shorts)",
  29742. image: {
  29743. source: "./media/characters/joanna/front-shorts.svg",
  29744. extra: 1596 / 1488,
  29745. bottom: 29 / 1625
  29746. }
  29747. },
  29748. frontBiker: {
  29749. height: math.unit(3.5, "meters"),
  29750. weight: math.unit(1200, "kg"),
  29751. name: "Front (Biker)",
  29752. image: {
  29753. source: "./media/characters/joanna/front-biker.svg",
  29754. extra: 1596 / 1488,
  29755. bottom: 29 / 1625
  29756. }
  29757. },
  29758. backBiker: {
  29759. height: math.unit(3.5, "meters"),
  29760. weight: math.unit(1200, "kg"),
  29761. name: "Back (Biker)",
  29762. image: {
  29763. source: "./media/characters/joanna/back-biker.svg",
  29764. extra: 1594 / 1495,
  29765. bottom: 88 / 1682
  29766. }
  29767. },
  29768. bikeLeft: {
  29769. height: math.unit(2.4, "meters"),
  29770. weight: math.unit(1600, "kg"),
  29771. name: "Bike (Left)",
  29772. image: {
  29773. source: "./media/characters/joanna/bike-left.svg",
  29774. extra: 720 / 720,
  29775. bottom: 8 / 728
  29776. }
  29777. },
  29778. bikeRight: {
  29779. height: math.unit(2.4, "meters"),
  29780. weight: math.unit(1600, "kg"),
  29781. name: "Bike (Right)",
  29782. image: {
  29783. source: "./media/characters/joanna/bike-right.svg",
  29784. extra: 720 / 720,
  29785. bottom: 8 / 728
  29786. }
  29787. },
  29788. },
  29789. [
  29790. {
  29791. name: "Incognito",
  29792. height: math.unit(3.5, "meters")
  29793. },
  29794. {
  29795. name: "Casual Big",
  29796. height: math.unit(200, "meters")
  29797. },
  29798. {
  29799. name: "Macro",
  29800. height: math.unit(600, "meters")
  29801. },
  29802. {
  29803. name: "Original",
  29804. height: math.unit(20, "km"),
  29805. default: true
  29806. },
  29807. {
  29808. name: "Giga",
  29809. height: math.unit(400, "km")
  29810. },
  29811. {
  29812. name: "Lounging",
  29813. height: math.unit(1500, "km")
  29814. },
  29815. {
  29816. name: "Planetary",
  29817. height: math.unit(200000, "km")
  29818. },
  29819. ]
  29820. ))
  29821. characterMakers.push(() => makeCharacter(
  29822. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29823. {
  29824. front: {
  29825. height: math.unit(6, "feet"),
  29826. weight: math.unit(150, "lb"),
  29827. name: "Front",
  29828. image: {
  29829. source: "./media/characters/hugo-sigil/front.svg",
  29830. extra: 522 / 500,
  29831. bottom: 2 / 524
  29832. }
  29833. },
  29834. back: {
  29835. height: math.unit(6, "feet"),
  29836. weight: math.unit(150, "lb"),
  29837. name: "Back",
  29838. image: {
  29839. source: "./media/characters/hugo-sigil/back.svg",
  29840. extra: 519 / 495,
  29841. bottom: 5 / 524
  29842. }
  29843. },
  29844. maw: {
  29845. height: math.unit(1.4, "feet"),
  29846. weight: math.unit(150, "lb"),
  29847. name: "Maw",
  29848. image: {
  29849. source: "./media/characters/hugo-sigil/maw.svg"
  29850. }
  29851. },
  29852. feet: {
  29853. height: math.unit(1.56, "feet"),
  29854. weight: math.unit(150, "lb"),
  29855. name: "Feet",
  29856. image: {
  29857. source: "./media/characters/hugo-sigil/feet.svg",
  29858. extra: 177 / 177,
  29859. bottom: 12 / 189
  29860. }
  29861. },
  29862. },
  29863. [
  29864. {
  29865. name: "Normal",
  29866. height: math.unit(6, "feet")
  29867. },
  29868. {
  29869. name: "Macro",
  29870. height: math.unit(200, "feet"),
  29871. default: true
  29872. },
  29873. ]
  29874. ))
  29875. characterMakers.push(() => makeCharacter(
  29876. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29877. {
  29878. front: {
  29879. height: math.unit(6, "feet"),
  29880. weight: math.unit(150, "lb"),
  29881. name: "Front",
  29882. image: {
  29883. source: "./media/characters/peri/front.svg",
  29884. extra: 2354 / 2233,
  29885. bottom: 49 / 2403
  29886. }
  29887. },
  29888. },
  29889. [
  29890. {
  29891. name: "Really Small",
  29892. height: math.unit(1, "nm")
  29893. },
  29894. {
  29895. name: "Micro",
  29896. height: math.unit(4, "inches")
  29897. },
  29898. {
  29899. name: "Normal",
  29900. height: math.unit(7, "inches"),
  29901. default: true
  29902. },
  29903. {
  29904. name: "Macro",
  29905. height: math.unit(400, "feet")
  29906. },
  29907. {
  29908. name: "Megamacro",
  29909. height: math.unit(100, "miles")
  29910. },
  29911. ]
  29912. ))
  29913. characterMakers.push(() => makeCharacter(
  29914. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29915. {
  29916. frontSlim: {
  29917. height: math.unit(7, "feet"),
  29918. name: "Front (Slim)",
  29919. image: {
  29920. source: "./media/characters/issilora/front-slim.svg",
  29921. extra: 529 / 449,
  29922. bottom: 53 / 582
  29923. }
  29924. },
  29925. sideSlim: {
  29926. height: math.unit(7, "feet"),
  29927. name: "Side (Slim)",
  29928. image: {
  29929. source: "./media/characters/issilora/side-slim.svg",
  29930. extra: 570 / 480,
  29931. bottom: 30 / 600
  29932. }
  29933. },
  29934. backSlim: {
  29935. height: math.unit(7, "feet"),
  29936. name: "Back (Slim)",
  29937. image: {
  29938. source: "./media/characters/issilora/back-slim.svg",
  29939. extra: 537 / 455,
  29940. bottom: 46 / 583
  29941. }
  29942. },
  29943. frontBuff: {
  29944. height: math.unit(7, "feet"),
  29945. name: "Front (Buff)",
  29946. image: {
  29947. source: "./media/characters/issilora/front-buff.svg",
  29948. extra: 2310 / 2035,
  29949. bottom: 335 / 2645
  29950. }
  29951. },
  29952. head: {
  29953. height: math.unit(1.94, "feet"),
  29954. name: "Head",
  29955. image: {
  29956. source: "./media/characters/issilora/head.svg"
  29957. }
  29958. },
  29959. },
  29960. [
  29961. {
  29962. name: "Minimum",
  29963. height: math.unit(7, "feet")
  29964. },
  29965. {
  29966. name: "Comfortable",
  29967. height: math.unit(17, "feet")
  29968. },
  29969. {
  29970. name: "Fun Size",
  29971. height: math.unit(47, "feet")
  29972. },
  29973. {
  29974. name: "Natural Macro",
  29975. height: math.unit(137, "feet"),
  29976. default: true
  29977. },
  29978. {
  29979. name: "Maximum Kaiju",
  29980. height: math.unit(397, "feet")
  29981. },
  29982. ]
  29983. ))
  29984. characterMakers.push(() => makeCharacter(
  29985. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29986. {
  29987. front: {
  29988. height: math.unit(50 + 9/12, "feet"),
  29989. weight: math.unit(32.8, "tons"),
  29990. name: "Front",
  29991. image: {
  29992. source: "./media/characters/irb'iiritaahn/front.svg",
  29993. extra: 1878/1826,
  29994. bottom: 326/2204
  29995. }
  29996. },
  29997. back: {
  29998. height: math.unit(50 + 9/12, "feet"),
  29999. weight: math.unit(32.8, "tons"),
  30000. name: "Back",
  30001. image: {
  30002. source: "./media/characters/irb'iiritaahn/back.svg",
  30003. extra: 2052/2018,
  30004. bottom: 152/2204
  30005. }
  30006. },
  30007. head: {
  30008. height: math.unit(12.86, "feet"),
  30009. name: "Head",
  30010. image: {
  30011. source: "./media/characters/irb'iiritaahn/head.svg"
  30012. }
  30013. },
  30014. maw: {
  30015. height: math.unit(9.66, "feet"),
  30016. name: "Maw",
  30017. image: {
  30018. source: "./media/characters/irb'iiritaahn/maw.svg"
  30019. }
  30020. },
  30021. frontDick: {
  30022. height: math.unit(8.78461, "feet"),
  30023. name: "Front Dick",
  30024. image: {
  30025. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30026. }
  30027. },
  30028. rearDick: {
  30029. height: math.unit(8.78461, "feet"),
  30030. name: "Rear Dick",
  30031. image: {
  30032. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30033. }
  30034. },
  30035. rearDickUnfolded: {
  30036. height: math.unit(8.78, "feet"),
  30037. name: "Rear Dick (Unfolded)",
  30038. image: {
  30039. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30040. }
  30041. },
  30042. wings: {
  30043. height: math.unit(43, "feet"),
  30044. name: "Wings",
  30045. image: {
  30046. source: "./media/characters/irb'iiritaahn/wings.svg"
  30047. }
  30048. },
  30049. },
  30050. [
  30051. {
  30052. name: "Macro",
  30053. height: math.unit(50 + 9/12, "feet"),
  30054. default: true
  30055. },
  30056. ]
  30057. ))
  30058. characterMakers.push(() => makeCharacter(
  30059. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30060. {
  30061. front: {
  30062. height: math.unit(205, "cm"),
  30063. weight: math.unit(102, "kg"),
  30064. name: "Front",
  30065. image: {
  30066. source: "./media/characters/irbisgreif/front.svg",
  30067. extra: 785/706,
  30068. bottom: 13/798
  30069. }
  30070. },
  30071. back: {
  30072. height: math.unit(205, "cm"),
  30073. weight: math.unit(102, "kg"),
  30074. name: "Back",
  30075. image: {
  30076. source: "./media/characters/irbisgreif/back.svg",
  30077. extra: 713/701,
  30078. bottom: 26/739
  30079. }
  30080. },
  30081. frontDressed: {
  30082. height: math.unit(216, "cm"),
  30083. weight: math.unit(102, "kg"),
  30084. name: "Front-dressed",
  30085. image: {
  30086. source: "./media/characters/irbisgreif/front-dressed.svg",
  30087. extra: 902/776,
  30088. bottom: 14/916
  30089. }
  30090. },
  30091. sideDressed: {
  30092. height: math.unit(195, "cm"),
  30093. weight: math.unit(102, "kg"),
  30094. name: "Side-dressed",
  30095. image: {
  30096. source: "./media/characters/irbisgreif/side-dressed.svg",
  30097. extra: 788/688,
  30098. bottom: 21/809
  30099. }
  30100. },
  30101. backDressed: {
  30102. height: math.unit(216, "cm"),
  30103. weight: math.unit(102, "kg"),
  30104. name: "Back-dressed",
  30105. image: {
  30106. source: "./media/characters/irbisgreif/back-dressed.svg",
  30107. extra: 901/783,
  30108. bottom: 10/911
  30109. }
  30110. },
  30111. dick: {
  30112. height: math.unit(0.49, "feet"),
  30113. name: "Dick",
  30114. image: {
  30115. source: "./media/characters/irbisgreif/dick.svg"
  30116. }
  30117. },
  30118. wingTop: {
  30119. height: math.unit(1.93 , "feet"),
  30120. name: "Wing-top",
  30121. image: {
  30122. source: "./media/characters/irbisgreif/wing-top.svg"
  30123. }
  30124. },
  30125. wingBottom: {
  30126. height: math.unit(1.93 , "feet"),
  30127. name: "Wing-bottom",
  30128. image: {
  30129. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30130. }
  30131. },
  30132. },
  30133. [
  30134. {
  30135. name: "Normal",
  30136. height: math.unit(216, "cm"),
  30137. default: true
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30143. {
  30144. front: {
  30145. height: math.unit(6, "feet"),
  30146. weight: math.unit(150, "lb"),
  30147. name: "Front",
  30148. image: {
  30149. source: "./media/characters/pride/front.svg",
  30150. extra: 1299/1230,
  30151. bottom: 18/1317
  30152. }
  30153. },
  30154. },
  30155. [
  30156. {
  30157. name: "Normal",
  30158. height: math.unit(7, "feet")
  30159. },
  30160. {
  30161. name: "Mini-macro",
  30162. height: math.unit(11, "feet")
  30163. },
  30164. {
  30165. name: "Macro",
  30166. height: math.unit(15, "meters"),
  30167. default: true
  30168. },
  30169. {
  30170. name: "Macro+",
  30171. height: math.unit(40, "meters")
  30172. },
  30173. ]
  30174. ))
  30175. characterMakers.push(() => makeCharacter(
  30176. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30177. {
  30178. front: {
  30179. height: math.unit(4 + 2 / 12, "feet"),
  30180. weight: math.unit(95, "lb"),
  30181. name: "Front",
  30182. image: {
  30183. source: "./media/characters/vaelophis-nyx/front.svg",
  30184. extra: 2532/2330,
  30185. bottom: 0/2532
  30186. }
  30187. },
  30188. back: {
  30189. height: math.unit(4 + 2 / 12, "feet"),
  30190. weight: math.unit(95, "lb"),
  30191. name: "Back",
  30192. image: {
  30193. source: "./media/characters/vaelophis-nyx/back.svg",
  30194. extra: 2484/2361,
  30195. bottom: 0/2484
  30196. }
  30197. },
  30198. feralSide: {
  30199. height: math.unit(2 + 1/12, "feet"),
  30200. weight: math.unit(20, "lb"),
  30201. name: "Feral (Side)",
  30202. image: {
  30203. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30204. extra: 1721/1581,
  30205. bottom: 70/1791
  30206. }
  30207. },
  30208. feralLazing: {
  30209. height: math.unit(1.08, "feet"),
  30210. weight: math.unit(20, "lb"),
  30211. name: "Feral (Lazing)",
  30212. image: {
  30213. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30214. extra: 822/822,
  30215. bottom: 248/1070
  30216. }
  30217. },
  30218. ear: {
  30219. height: math.unit(0.416, "feet"),
  30220. name: "Ear",
  30221. image: {
  30222. source: "./media/characters/vaelophis-nyx/ear.svg"
  30223. }
  30224. },
  30225. eye: {
  30226. height: math.unit(0.0748, "feet"),
  30227. name: "Eye",
  30228. image: {
  30229. source: "./media/characters/vaelophis-nyx/eye.svg"
  30230. }
  30231. },
  30232. mouth: {
  30233. height: math.unit(0.378, "feet"),
  30234. name: "Mouth",
  30235. image: {
  30236. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30237. }
  30238. },
  30239. spade: {
  30240. height: math.unit(0.55, "feet"),
  30241. name: "Spade",
  30242. image: {
  30243. source: "./media/characters/vaelophis-nyx/spade.svg"
  30244. }
  30245. },
  30246. },
  30247. [
  30248. {
  30249. name: "Normal",
  30250. height: math.unit(4 + 2/12, "feet"),
  30251. default: true
  30252. },
  30253. ]
  30254. ))
  30255. characterMakers.push(() => makeCharacter(
  30256. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30257. {
  30258. front: {
  30259. height: math.unit(7, "feet"),
  30260. weight: math.unit(231, "lb"),
  30261. name: "Front",
  30262. image: {
  30263. source: "./media/characters/flux/front.svg",
  30264. extra: 919/871,
  30265. bottom: 0/919
  30266. }
  30267. },
  30268. back: {
  30269. height: math.unit(7, "feet"),
  30270. weight: math.unit(231, "lb"),
  30271. name: "Back",
  30272. image: {
  30273. source: "./media/characters/flux/back.svg",
  30274. extra: 1040/992,
  30275. bottom: 0/1040
  30276. }
  30277. },
  30278. frontDressed: {
  30279. height: math.unit(7, "feet"),
  30280. weight: math.unit(231, "lb"),
  30281. name: "Front (Dressed)",
  30282. image: {
  30283. source: "./media/characters/flux/front-dressed.svg",
  30284. extra: 919/871,
  30285. bottom: 0/919
  30286. }
  30287. },
  30288. feralSide: {
  30289. height: math.unit(5, "feet"),
  30290. weight: math.unit(150, "lb"),
  30291. name: "Feral (Side)",
  30292. image: {
  30293. source: "./media/characters/flux/feral-side.svg",
  30294. extra: 598/528,
  30295. bottom: 28/626
  30296. }
  30297. },
  30298. head: {
  30299. height: math.unit(1.585, "feet"),
  30300. name: "Head",
  30301. image: {
  30302. source: "./media/characters/flux/head.svg"
  30303. }
  30304. },
  30305. headSide: {
  30306. height: math.unit(1.74, "feet"),
  30307. name: "Head (Side)",
  30308. image: {
  30309. source: "./media/characters/flux/head-side.svg"
  30310. }
  30311. },
  30312. headSideFire: {
  30313. height: math.unit(1.76, "feet"),
  30314. name: "Head (Side, Fire)",
  30315. image: {
  30316. source: "./media/characters/flux/head-side-fire.svg"
  30317. }
  30318. },
  30319. },
  30320. [
  30321. {
  30322. name: "Normal",
  30323. height: math.unit(7, "feet"),
  30324. default: true
  30325. },
  30326. ]
  30327. ))
  30328. characterMakers.push(() => makeCharacter(
  30329. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30330. {
  30331. front: {
  30332. height: math.unit(9, "feet"),
  30333. weight: math.unit(1012, "lb"),
  30334. name: "Front",
  30335. image: {
  30336. source: "./media/characters/ulfra-lupae/front.svg",
  30337. extra: 1083/1011,
  30338. bottom: 67/1150
  30339. }
  30340. },
  30341. },
  30342. [
  30343. {
  30344. name: "Micro",
  30345. height: math.unit(6, "inches")
  30346. },
  30347. {
  30348. name: "Socializing",
  30349. height: math.unit(6 + 5/12, "feet")
  30350. },
  30351. {
  30352. name: "Normal",
  30353. height: math.unit(9, "feet"),
  30354. default: true
  30355. },
  30356. {
  30357. name: "Macro",
  30358. height: math.unit(150, "feet")
  30359. },
  30360. ]
  30361. ))
  30362. characterMakers.push(() => makeCharacter(
  30363. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30364. {
  30365. front: {
  30366. height: math.unit(5 + 2/12, "feet"),
  30367. weight: math.unit(120, "lb"),
  30368. name: "Front",
  30369. image: {
  30370. source: "./media/characters/timber/front.svg",
  30371. extra: 2814/2705,
  30372. bottom: 181/2995
  30373. }
  30374. },
  30375. },
  30376. [
  30377. {
  30378. name: "Normal",
  30379. height: math.unit(5 + 2/12, "feet"),
  30380. default: true
  30381. },
  30382. ]
  30383. ))
  30384. characterMakers.push(() => makeCharacter(
  30385. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30386. {
  30387. front: {
  30388. height: math.unit(5 + 7/12, "feet"),
  30389. weight: math.unit(220, "lb"),
  30390. name: "Front",
  30391. image: {
  30392. source: "./media/characters/nicki/front.svg",
  30393. extra: 453/419,
  30394. bottom: 7/460
  30395. }
  30396. },
  30397. frontAlt: {
  30398. height: math.unit(5 + 7/12, "feet"),
  30399. weight: math.unit(220, "lb"),
  30400. name: "Front-alt",
  30401. image: {
  30402. source: "./media/characters/nicki/front-alt.svg",
  30403. extra: 435/411,
  30404. bottom: 12/447
  30405. }
  30406. },
  30407. back: {
  30408. height: math.unit(5 + 7/12, "feet"),
  30409. weight: math.unit(220, "lb"),
  30410. name: "Back",
  30411. image: {
  30412. source: "./media/characters/nicki/back.svg",
  30413. extra: 440/413,
  30414. bottom: 19/459
  30415. }
  30416. },
  30417. taur: {
  30418. height: math.unit(7 + 6/12, "feet"),
  30419. weight: math.unit(700, "lb"),
  30420. name: "Taur",
  30421. image: {
  30422. source: "./media/characters/nicki/taur.svg",
  30423. extra: 975/773,
  30424. bottom: 0/975
  30425. }
  30426. },
  30427. frontNsfw: {
  30428. height: math.unit(5 + 7/12, "feet"),
  30429. weight: math.unit(220, "lb"),
  30430. name: "Front (NSFW)",
  30431. image: {
  30432. source: "./media/characters/nicki/front-nsfw.svg",
  30433. extra: 453/419,
  30434. bottom: 7/460
  30435. }
  30436. },
  30437. frontNsfwAlt: {
  30438. height: math.unit(5 + 7/12, "feet"),
  30439. weight: math.unit(220, "lb"),
  30440. name: "Front (Alt, NSFW)",
  30441. image: {
  30442. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30443. extra: 435/411,
  30444. bottom: 12/447
  30445. }
  30446. },
  30447. backNsfw: {
  30448. height: math.unit(5 + 7/12, "feet"),
  30449. weight: math.unit(220, "lb"),
  30450. name: "Back (NSFW)",
  30451. image: {
  30452. source: "./media/characters/nicki/back-nsfw.svg",
  30453. extra: 440/413,
  30454. bottom: 19/459
  30455. }
  30456. },
  30457. head: {
  30458. height: math.unit(2.1, "feet"),
  30459. name: "Head",
  30460. image: {
  30461. source: "./media/characters/nicki/head.svg"
  30462. }
  30463. },
  30464. paw: {
  30465. height: math.unit(1.88, "feet"),
  30466. name: "Paw",
  30467. image: {
  30468. source: "./media/characters/nicki/paw.svg"
  30469. }
  30470. },
  30471. },
  30472. [
  30473. {
  30474. name: "Normal",
  30475. height: math.unit(5 + 7/12, "feet"),
  30476. default: true
  30477. },
  30478. ]
  30479. ))
  30480. characterMakers.push(() => makeCharacter(
  30481. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30482. {
  30483. front: {
  30484. height: math.unit(7 + 10/12, "feet"),
  30485. weight: math.unit(3.5, "tons"),
  30486. name: "Front",
  30487. image: {
  30488. source: "./media/characters/lee/front.svg",
  30489. extra: 1773/1615,
  30490. bottom: 86/1859
  30491. }
  30492. },
  30493. hand: {
  30494. height: math.unit(1.78, "feet"),
  30495. name: "Hand",
  30496. image: {
  30497. source: "./media/characters/lee/hand.svg"
  30498. }
  30499. },
  30500. maw: {
  30501. height: math.unit(1.18, "feet"),
  30502. name: "Maw",
  30503. image: {
  30504. source: "./media/characters/lee/maw.svg"
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Normal",
  30511. height: math.unit(7 + 10/12, "feet"),
  30512. default: true
  30513. },
  30514. ]
  30515. ))
  30516. characterMakers.push(() => makeCharacter(
  30517. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30518. {
  30519. front: {
  30520. height: math.unit(9, "feet"),
  30521. name: "Front",
  30522. image: {
  30523. source: "./media/characters/guti/front.svg",
  30524. extra: 4551/4355,
  30525. bottom: 123/4674
  30526. }
  30527. },
  30528. tongue: {
  30529. height: math.unit(1, "feet"),
  30530. name: "Tongue",
  30531. image: {
  30532. source: "./media/characters/guti/tongue.svg"
  30533. }
  30534. },
  30535. paw: {
  30536. height: math.unit(1.18, "feet"),
  30537. name: "Paw",
  30538. image: {
  30539. source: "./media/characters/guti/paw.svg"
  30540. }
  30541. },
  30542. },
  30543. [
  30544. {
  30545. name: "Normal",
  30546. height: math.unit(9, "feet"),
  30547. default: true
  30548. },
  30549. ]
  30550. ))
  30551. characterMakers.push(() => makeCharacter(
  30552. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30553. {
  30554. side: {
  30555. height: math.unit(5, "meters"),
  30556. name: "Side",
  30557. image: {
  30558. source: "./media/characters/vesper/side.svg",
  30559. extra: 1605/1518,
  30560. bottom: 0/1605
  30561. }
  30562. },
  30563. },
  30564. [
  30565. {
  30566. name: "Small",
  30567. height: math.unit(5, "meters")
  30568. },
  30569. {
  30570. name: "Sage",
  30571. height: math.unit(100, "meters"),
  30572. default: true
  30573. },
  30574. {
  30575. name: "Fun Size",
  30576. height: math.unit(600, "meters")
  30577. },
  30578. {
  30579. name: "Goddess",
  30580. height: math.unit(20000, "km")
  30581. },
  30582. {
  30583. name: "Maximum",
  30584. height: math.unit(5, "galaxies")
  30585. },
  30586. ]
  30587. ))
  30588. characterMakers.push(() => makeCharacter(
  30589. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30590. {
  30591. front: {
  30592. height: math.unit(6 + 3/12, "feet"),
  30593. weight: math.unit(190, "lb"),
  30594. name: "Front",
  30595. image: {
  30596. source: "./media/characters/gawain/front.svg",
  30597. extra: 2222/2139,
  30598. bottom: 90/2312
  30599. }
  30600. },
  30601. back: {
  30602. height: math.unit(6 + 3/12, "feet"),
  30603. weight: math.unit(190, "lb"),
  30604. name: "Back",
  30605. image: {
  30606. source: "./media/characters/gawain/back.svg",
  30607. extra: 2199/2111,
  30608. bottom: 73/2272
  30609. }
  30610. },
  30611. },
  30612. [
  30613. {
  30614. name: "Normal",
  30615. height: math.unit(6 + 3/12, "feet"),
  30616. default: true
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30622. {
  30623. side: {
  30624. height: math.unit(3.5, "meters"),
  30625. weight: math.unit(16000, "lb"),
  30626. name: "Side",
  30627. image: {
  30628. source: "./media/characters/dascalti/side.svg",
  30629. extra: 392/273,
  30630. bottom: 47/439
  30631. }
  30632. },
  30633. breath: {
  30634. height: math.unit(7.4, "feet"),
  30635. name: "Breath",
  30636. image: {
  30637. source: "./media/characters/dascalti/breath.svg"
  30638. }
  30639. },
  30640. fed: {
  30641. height: math.unit(3.6, "meters"),
  30642. weight: math.unit(16000, "lb"),
  30643. name: "Fed",
  30644. image: {
  30645. source: "./media/characters/dascalti/fed.svg",
  30646. extra: 1419/820,
  30647. bottom: 95/1514
  30648. }
  30649. },
  30650. },
  30651. [
  30652. {
  30653. name: "Normal",
  30654. height: math.unit(3.5, "meters"),
  30655. default: true
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30661. {
  30662. front: {
  30663. height: math.unit(3 + 5/12, "feet"),
  30664. name: "Front",
  30665. image: {
  30666. source: "./media/characters/mauve/front.svg",
  30667. extra: 1126/1033,
  30668. bottom: 65/1191
  30669. }
  30670. },
  30671. side: {
  30672. height: math.unit(3 + 5/12, "feet"),
  30673. name: "Side",
  30674. image: {
  30675. source: "./media/characters/mauve/side.svg",
  30676. extra: 1089/1001,
  30677. bottom: 29/1118
  30678. }
  30679. },
  30680. back: {
  30681. height: math.unit(3 + 5/12, "feet"),
  30682. name: "Back",
  30683. image: {
  30684. source: "./media/characters/mauve/back.svg",
  30685. extra: 1173/1053,
  30686. bottom: 109/1282
  30687. }
  30688. },
  30689. },
  30690. [
  30691. {
  30692. name: "Normal",
  30693. height: math.unit(3 + 5/12, "feet"),
  30694. default: true
  30695. },
  30696. ]
  30697. ))
  30698. characterMakers.push(() => makeCharacter(
  30699. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30700. {
  30701. front: {
  30702. height: math.unit(6 + 3/12, "feet"),
  30703. weight: math.unit(430, "lb"),
  30704. name: "Front",
  30705. image: {
  30706. source: "./media/characters/carlos/front.svg",
  30707. extra: 1964/1913,
  30708. bottom: 70/2034
  30709. }
  30710. },
  30711. },
  30712. [
  30713. {
  30714. name: "Normal",
  30715. height: math.unit(6 + 3/12, "feet"),
  30716. default: true
  30717. },
  30718. ]
  30719. ))
  30720. characterMakers.push(() => makeCharacter(
  30721. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30722. {
  30723. back: {
  30724. height: math.unit(5 + 10/12, "feet"),
  30725. weight: math.unit(200, "lb"),
  30726. name: "Back",
  30727. image: {
  30728. source: "./media/characters/jax/back.svg",
  30729. extra: 764/739,
  30730. bottom: 25/789
  30731. }
  30732. },
  30733. },
  30734. [
  30735. {
  30736. name: "Normal",
  30737. height: math.unit(5 + 10/12, "feet"),
  30738. default: true
  30739. },
  30740. ]
  30741. ))
  30742. characterMakers.push(() => makeCharacter(
  30743. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30744. {
  30745. front: {
  30746. height: math.unit(8, "feet"),
  30747. weight: math.unit(250, "lb"),
  30748. name: "Front",
  30749. image: {
  30750. source: "./media/characters/eikthynir/front.svg",
  30751. extra: 1332/1166,
  30752. bottom: 82/1414
  30753. }
  30754. },
  30755. back: {
  30756. height: math.unit(8, "feet"),
  30757. weight: math.unit(250, "lb"),
  30758. name: "Back",
  30759. image: {
  30760. source: "./media/characters/eikthynir/back.svg",
  30761. extra: 1342/1190,
  30762. bottom: 19/1361
  30763. }
  30764. },
  30765. dick: {
  30766. height: math.unit(2.35, "feet"),
  30767. name: "Dick",
  30768. image: {
  30769. source: "./media/characters/eikthynir/dick.svg"
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Normal",
  30776. height: math.unit(8, "feet"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30783. {
  30784. front: {
  30785. height: math.unit(99, "meters"),
  30786. weight: math.unit(13000, "tons"),
  30787. name: "Front",
  30788. image: {
  30789. source: "./media/characters/zlmos/front.svg",
  30790. extra: 2202/1992,
  30791. bottom: 315/2517
  30792. }
  30793. },
  30794. },
  30795. [
  30796. {
  30797. name: "Macro",
  30798. height: math.unit(99, "meters"),
  30799. default: true
  30800. },
  30801. ]
  30802. ))
  30803. characterMakers.push(() => makeCharacter(
  30804. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30805. {
  30806. front: {
  30807. height: math.unit(6 + 5/12, "feet"),
  30808. name: "Front",
  30809. image: {
  30810. source: "./media/characters/purri/front.svg",
  30811. extra: 1698/1610,
  30812. bottom: 32/1730
  30813. }
  30814. },
  30815. frontAlt: {
  30816. height: math.unit(6 + 5/12, "feet"),
  30817. name: "Front (Alt)",
  30818. image: {
  30819. source: "./media/characters/purri/front-alt.svg",
  30820. extra: 450/420,
  30821. bottom: 26/476
  30822. }
  30823. },
  30824. boots: {
  30825. height: math.unit(5.5, "feet"),
  30826. name: "Boots",
  30827. image: {
  30828. source: "./media/characters/purri/boots.svg",
  30829. extra: 905/853,
  30830. bottom: 18/923
  30831. }
  30832. },
  30833. lying: {
  30834. height: math.unit(2, "feet"),
  30835. name: "Lying",
  30836. image: {
  30837. source: "./media/characters/purri/lying.svg",
  30838. extra: 940/843,
  30839. bottom: 146/1086
  30840. }
  30841. },
  30842. devious: {
  30843. height: math.unit(1.77, "feet"),
  30844. name: "Devious",
  30845. image: {
  30846. source: "./media/characters/purri/devious.svg",
  30847. extra: 1440/1155,
  30848. bottom: 147/1587
  30849. }
  30850. },
  30851. bean: {
  30852. height: math.unit(1.94, "feet"),
  30853. name: "Bean",
  30854. image: {
  30855. source: "./media/characters/purri/bean.svg"
  30856. }
  30857. },
  30858. },
  30859. [
  30860. {
  30861. name: "Micro",
  30862. height: math.unit(1, "mm")
  30863. },
  30864. {
  30865. name: "Normal",
  30866. height: math.unit(6 + 5/12, "feet"),
  30867. default: true
  30868. },
  30869. {
  30870. name: "Macro :3c",
  30871. height: math.unit(2, "miles")
  30872. },
  30873. ]
  30874. ))
  30875. characterMakers.push(() => makeCharacter(
  30876. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30877. {
  30878. front: {
  30879. height: math.unit(6 + 2/12, "feet"),
  30880. weight: math.unit(250, "lb"),
  30881. name: "Front",
  30882. image: {
  30883. source: "./media/characters/moonlight/front.svg",
  30884. extra: 1044/908,
  30885. bottom: 56/1100
  30886. }
  30887. },
  30888. feral: {
  30889. height: math.unit(3 + 1/12, "feet"),
  30890. weight: math.unit(50, "kg"),
  30891. name: "Feral",
  30892. image: {
  30893. source: "./media/characters/moonlight/feral.svg",
  30894. extra: 3705/2791,
  30895. bottom: 145/3850
  30896. }
  30897. },
  30898. paw: {
  30899. height: math.unit(1, "feet"),
  30900. name: "Paw",
  30901. image: {
  30902. source: "./media/characters/moonlight/paw.svg"
  30903. }
  30904. },
  30905. paws: {
  30906. height: math.unit(0.98, "feet"),
  30907. name: "Paws",
  30908. image: {
  30909. source: "./media/characters/moonlight/paws.svg",
  30910. extra: 939/939,
  30911. bottom: 50/989
  30912. }
  30913. },
  30914. mouth: {
  30915. height: math.unit(0.48, "feet"),
  30916. name: "Mouth",
  30917. image: {
  30918. source: "./media/characters/moonlight/mouth.svg"
  30919. }
  30920. },
  30921. dick: {
  30922. height: math.unit(1.46, "feet"),
  30923. name: "Dick",
  30924. image: {
  30925. source: "./media/characters/moonlight/dick.svg"
  30926. }
  30927. },
  30928. },
  30929. [
  30930. {
  30931. name: "Normal",
  30932. height: math.unit(6 + 2/12, "feet"),
  30933. default: true
  30934. },
  30935. {
  30936. name: "Macro",
  30937. height: math.unit(300, "feet")
  30938. },
  30939. {
  30940. name: "Macro+",
  30941. height: math.unit(1, "mile")
  30942. },
  30943. {
  30944. name: "Mt. Moon",
  30945. height: math.unit(5, "miles")
  30946. },
  30947. {
  30948. name: "Megamacro",
  30949. height: math.unit(15, "miles")
  30950. },
  30951. ]
  30952. ))
  30953. characterMakers.push(() => makeCharacter(
  30954. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30955. {
  30956. back: {
  30957. height: math.unit(6, "feet"),
  30958. weight: math.unit(150, "lb"),
  30959. name: "Back",
  30960. image: {
  30961. source: "./media/characters/sylen/back.svg",
  30962. extra: 1335/1273,
  30963. bottom: 107/1442
  30964. }
  30965. },
  30966. },
  30967. [
  30968. {
  30969. name: "Normal",
  30970. height: math.unit(5 + 5/12, "feet")
  30971. },
  30972. {
  30973. name: "Megamacro",
  30974. height: math.unit(3, "miles"),
  30975. default: true
  30976. },
  30977. ]
  30978. ))
  30979. characterMakers.push(() => makeCharacter(
  30980. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30981. {
  30982. front: {
  30983. height: math.unit(6, "feet"),
  30984. weight: math.unit(190, "lb"),
  30985. name: "Front",
  30986. image: {
  30987. source: "./media/characters/huttser/front.svg",
  30988. extra: 1152/1058,
  30989. bottom: 23/1175
  30990. }
  30991. },
  30992. side: {
  30993. height: math.unit(6, "feet"),
  30994. weight: math.unit(190, "lb"),
  30995. name: "Side",
  30996. image: {
  30997. source: "./media/characters/huttser/side.svg",
  30998. extra: 1174/1065,
  30999. bottom: 18/1192
  31000. }
  31001. },
  31002. back: {
  31003. height: math.unit(6, "feet"),
  31004. weight: math.unit(190, "lb"),
  31005. name: "Back",
  31006. image: {
  31007. source: "./media/characters/huttser/back.svg",
  31008. extra: 1158/1056,
  31009. bottom: 12/1170
  31010. }
  31011. },
  31012. },
  31013. [
  31014. ]
  31015. ))
  31016. characterMakers.push(() => makeCharacter(
  31017. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31018. {
  31019. side: {
  31020. height: math.unit(12 + 9/12, "feet"),
  31021. weight: math.unit(15000, "lb"),
  31022. name: "Side",
  31023. image: {
  31024. source: "./media/characters/faan/side.svg",
  31025. extra: 2747/2697,
  31026. bottom: 0/2747
  31027. }
  31028. },
  31029. front: {
  31030. height: math.unit(12 + 9/12, "feet"),
  31031. weight: math.unit(15000, "lb"),
  31032. name: "Front",
  31033. image: {
  31034. source: "./media/characters/faan/front.svg",
  31035. extra: 607/571,
  31036. bottom: 24/631
  31037. }
  31038. },
  31039. head: {
  31040. height: math.unit(2.85, "feet"),
  31041. name: "Head",
  31042. image: {
  31043. source: "./media/characters/faan/head.svg"
  31044. }
  31045. },
  31046. headAlt: {
  31047. height: math.unit(3.13, "feet"),
  31048. name: "Head-alt",
  31049. image: {
  31050. source: "./media/characters/faan/head-alt.svg"
  31051. }
  31052. },
  31053. },
  31054. [
  31055. {
  31056. name: "Normal",
  31057. height: math.unit(12 + 9/12, "feet"),
  31058. default: true
  31059. },
  31060. ]
  31061. ))
  31062. characterMakers.push(() => makeCharacter(
  31063. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31064. {
  31065. front: {
  31066. height: math.unit(6, "feet"),
  31067. weight: math.unit(300, "lb"),
  31068. name: "Front",
  31069. image: {
  31070. source: "./media/characters/tanio/front.svg",
  31071. extra: 711/673,
  31072. bottom: 25/736
  31073. }
  31074. },
  31075. },
  31076. [
  31077. {
  31078. name: "Normal",
  31079. height: math.unit(6, "feet"),
  31080. default: true
  31081. },
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31086. {
  31087. front: {
  31088. height: math.unit(3, "inches"),
  31089. name: "Front",
  31090. image: {
  31091. source: "./media/characters/noboru/front.svg",
  31092. extra: 1039/932,
  31093. bottom: 18/1057
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Micro",
  31100. height: math.unit(3, "inches"),
  31101. default: true
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31107. {
  31108. front: {
  31109. height: math.unit(1.85, "meters"),
  31110. weight: math.unit(80, "kg"),
  31111. name: "Front",
  31112. image: {
  31113. source: "./media/characters/daniel-barrett/front.svg",
  31114. extra: 355/337,
  31115. bottom: 9/364
  31116. }
  31117. },
  31118. },
  31119. [
  31120. {
  31121. name: "Pico",
  31122. height: math.unit(0.0433, "mm")
  31123. },
  31124. {
  31125. name: "Nano",
  31126. height: math.unit(1.5, "mm")
  31127. },
  31128. {
  31129. name: "Micro",
  31130. height: math.unit(5.3, "cm"),
  31131. default: true
  31132. },
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(1.85, "meters")
  31136. },
  31137. {
  31138. name: "Macro",
  31139. height: math.unit(64.7, "meters")
  31140. },
  31141. {
  31142. name: "Megamacro",
  31143. height: math.unit(2.26, "km")
  31144. },
  31145. {
  31146. name: "Gigamacro",
  31147. height: math.unit(79, "km")
  31148. },
  31149. {
  31150. name: "Teramacro",
  31151. height: math.unit(2765, "km")
  31152. },
  31153. {
  31154. name: "Petamacro",
  31155. height: math.unit(96678, "km")
  31156. },
  31157. ]
  31158. ))
  31159. characterMakers.push(() => makeCharacter(
  31160. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31161. {
  31162. front: {
  31163. height: math.unit(30, "meters"),
  31164. weight: math.unit(400, "tons"),
  31165. name: "Front",
  31166. image: {
  31167. source: "./media/characters/zeel/front.svg",
  31168. extra: 2599/2599,
  31169. bottom: 226/2825
  31170. }
  31171. },
  31172. },
  31173. [
  31174. {
  31175. name: "Macro",
  31176. height: math.unit(30, "meters"),
  31177. default: true
  31178. },
  31179. ]
  31180. ))
  31181. characterMakers.push(() => makeCharacter(
  31182. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31183. {
  31184. front: {
  31185. height: math.unit(6 + 7/12, "feet"),
  31186. weight: math.unit(210, "lb"),
  31187. name: "Front",
  31188. image: {
  31189. source: "./media/characters/tarn/front.svg",
  31190. extra: 3517/3220,
  31191. bottom: 91/3608
  31192. }
  31193. },
  31194. back: {
  31195. height: math.unit(6 + 7/12, "feet"),
  31196. weight: math.unit(210, "lb"),
  31197. name: "Back",
  31198. image: {
  31199. source: "./media/characters/tarn/back.svg",
  31200. extra: 3566/3241,
  31201. bottom: 34/3600
  31202. }
  31203. },
  31204. dick: {
  31205. height: math.unit(1.65, "feet"),
  31206. name: "Dick",
  31207. image: {
  31208. source: "./media/characters/tarn/dick.svg"
  31209. }
  31210. },
  31211. paw: {
  31212. height: math.unit(1.80, "feet"),
  31213. name: "Paw",
  31214. image: {
  31215. source: "./media/characters/tarn/paw.svg"
  31216. }
  31217. },
  31218. tongue: {
  31219. height: math.unit(0.97, "feet"),
  31220. name: "Tongue",
  31221. image: {
  31222. source: "./media/characters/tarn/tongue.svg"
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Micro",
  31229. height: math.unit(4, "inches")
  31230. },
  31231. {
  31232. name: "Normal",
  31233. height: math.unit(6 + 7/12, "feet"),
  31234. default: true
  31235. },
  31236. {
  31237. name: "Macro",
  31238. height: math.unit(300, "feet")
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(5 + 7/12, "feet"),
  31247. weight: math.unit(80, "kg"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31251. extra: 3023/2865,
  31252. bottom: 33/3056
  31253. }
  31254. },
  31255. back: {
  31256. height: math.unit(5 + 7/12, "feet"),
  31257. weight: math.unit(80, "kg"),
  31258. name: "Back",
  31259. image: {
  31260. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31261. extra: 3020/2886,
  31262. bottom: 30/3050
  31263. }
  31264. },
  31265. dick: {
  31266. height: math.unit(0.98, "feet"),
  31267. name: "Dick",
  31268. image: {
  31269. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31270. }
  31271. },
  31272. anatomy: {
  31273. height: math.unit(2.86, "feet"),
  31274. name: "Anatomy",
  31275. image: {
  31276. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Really Small",
  31283. height: math.unit(2, "inches")
  31284. },
  31285. {
  31286. name: "Micro",
  31287. height: math.unit(5.583, "inches")
  31288. },
  31289. {
  31290. name: "Normal",
  31291. height: math.unit(5 + 7/12, "feet"),
  31292. default: true
  31293. },
  31294. {
  31295. name: "Macro",
  31296. height: math.unit(67, "feet")
  31297. },
  31298. {
  31299. name: "Megamacro",
  31300. height: math.unit(134, "feet")
  31301. },
  31302. ]
  31303. ))
  31304. characterMakers.push(() => makeCharacter(
  31305. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31306. {
  31307. front: {
  31308. height: math.unit(9, "feet"),
  31309. weight: math.unit(120, "lb"),
  31310. name: "Front",
  31311. image: {
  31312. source: "./media/characters/sally/front.svg",
  31313. extra: 1506/1349,
  31314. bottom: 66/1572
  31315. }
  31316. },
  31317. },
  31318. [
  31319. {
  31320. name: "Normal",
  31321. height: math.unit(9, "feet"),
  31322. default: true
  31323. },
  31324. ]
  31325. ))
  31326. characterMakers.push(() => makeCharacter(
  31327. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31328. {
  31329. front: {
  31330. height: math.unit(8, "feet"),
  31331. weight: math.unit(900, "lb"),
  31332. name: "Front",
  31333. image: {
  31334. source: "./media/characters/owen/front.svg",
  31335. extra: 1761/1657,
  31336. bottom: 74/1835
  31337. }
  31338. },
  31339. side: {
  31340. height: math.unit(8, "feet"),
  31341. weight: math.unit(900, "lb"),
  31342. name: "Side",
  31343. image: {
  31344. source: "./media/characters/owen/side.svg",
  31345. extra: 1797/1734,
  31346. bottom: 30/1827
  31347. }
  31348. },
  31349. back: {
  31350. height: math.unit(8, "feet"),
  31351. weight: math.unit(900, "lb"),
  31352. name: "Back",
  31353. image: {
  31354. source: "./media/characters/owen/back.svg",
  31355. extra: 1796/1706,
  31356. bottom: 59/1855
  31357. }
  31358. },
  31359. maw: {
  31360. height: math.unit(1.76, "feet"),
  31361. name: "Maw",
  31362. image: {
  31363. source: "./media/characters/owen/maw.svg"
  31364. }
  31365. },
  31366. },
  31367. [
  31368. {
  31369. name: "Normal",
  31370. height: math.unit(8, "feet"),
  31371. default: true
  31372. },
  31373. ]
  31374. ))
  31375. characterMakers.push(() => makeCharacter(
  31376. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31377. {
  31378. front: {
  31379. height: math.unit(4, "feet"),
  31380. weight: math.unit(400, "lb"),
  31381. name: "Front",
  31382. image: {
  31383. source: "./media/characters/ryth/front.svg",
  31384. extra: 876/691,
  31385. bottom: 25/901
  31386. }
  31387. },
  31388. goia: {
  31389. height: math.unit(12, "feet"),
  31390. weight: math.unit(10800, "lb"),
  31391. name: "Goia",
  31392. image: {
  31393. source: "./media/characters/ryth/goia.svg",
  31394. extra: 3450/3198,
  31395. bottom: 61/3511
  31396. }
  31397. },
  31398. },
  31399. [
  31400. {
  31401. name: "Normal",
  31402. height: math.unit(4, "feet"),
  31403. default: true
  31404. },
  31405. ]
  31406. ))
  31407. characterMakers.push(() => makeCharacter(
  31408. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31409. {
  31410. front: {
  31411. height: math.unit(7, "feet"),
  31412. weight: math.unit(180, "lb"),
  31413. name: "Front",
  31414. image: {
  31415. source: "./media/characters/necrolance/front.svg",
  31416. extra: 1062/947,
  31417. bottom: 41/1103
  31418. }
  31419. },
  31420. back: {
  31421. height: math.unit(7, "feet"),
  31422. weight: math.unit(180, "lb"),
  31423. name: "Back",
  31424. image: {
  31425. source: "./media/characters/necrolance/back.svg",
  31426. extra: 1045/984,
  31427. bottom: 14/1059
  31428. }
  31429. },
  31430. wing: {
  31431. height: math.unit(2.67, "feet"),
  31432. name: "Wing",
  31433. image: {
  31434. source: "./media/characters/necrolance/wing.svg"
  31435. }
  31436. },
  31437. },
  31438. [
  31439. {
  31440. name: "Normal",
  31441. height: math.unit(7, "feet"),
  31442. default: true
  31443. },
  31444. ]
  31445. ))
  31446. characterMakers.push(() => makeCharacter(
  31447. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31448. {
  31449. front: {
  31450. height: math.unit(76, "meters"),
  31451. weight: math.unit(30000, "tons"),
  31452. name: "Front",
  31453. image: {
  31454. source: "./media/characters/tyler/front.svg",
  31455. extra: 1640/1640,
  31456. bottom: 114/1754
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Macro",
  31463. height: math.unit(76, "meters"),
  31464. default: true
  31465. },
  31466. ]
  31467. ))
  31468. characterMakers.push(() => makeCharacter(
  31469. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31470. {
  31471. front: {
  31472. height: math.unit(4 + 11/12, "feet"),
  31473. weight: math.unit(132, "lb"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/icey/front.svg",
  31477. extra: 2750/2550,
  31478. bottom: 33/2783
  31479. }
  31480. },
  31481. back: {
  31482. height: math.unit(4 + 11/12, "feet"),
  31483. weight: math.unit(132, "lb"),
  31484. name: "Back",
  31485. image: {
  31486. source: "./media/characters/icey/back.svg",
  31487. extra: 2624/2481,
  31488. bottom: 35/2659
  31489. }
  31490. },
  31491. },
  31492. [
  31493. {
  31494. name: "Normal",
  31495. height: math.unit(4 + 11/12, "feet"),
  31496. default: true
  31497. },
  31498. ]
  31499. ))
  31500. characterMakers.push(() => makeCharacter(
  31501. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31502. {
  31503. front: {
  31504. height: math.unit(100, "feet"),
  31505. weight: math.unit(0, "lb"),
  31506. name: "Front",
  31507. image: {
  31508. source: "./media/characters/smile/front.svg",
  31509. extra: 2983/2912,
  31510. bottom: 162/3145
  31511. }
  31512. },
  31513. back: {
  31514. height: math.unit(100, "feet"),
  31515. weight: math.unit(0, "lb"),
  31516. name: "Back",
  31517. image: {
  31518. source: "./media/characters/smile/back.svg",
  31519. extra: 3143/3031,
  31520. bottom: 91/3234
  31521. }
  31522. },
  31523. head: {
  31524. height: math.unit(26.3, "feet"),
  31525. weight: math.unit(0, "lb"),
  31526. name: "Head",
  31527. image: {
  31528. source: "./media/characters/smile/head.svg"
  31529. }
  31530. },
  31531. collar: {
  31532. height: math.unit(5.3, "feet"),
  31533. weight: math.unit(0, "lb"),
  31534. name: "Collar",
  31535. image: {
  31536. source: "./media/characters/smile/collar.svg"
  31537. }
  31538. },
  31539. },
  31540. [
  31541. {
  31542. name: "Macro",
  31543. height: math.unit(100, "feet"),
  31544. default: true
  31545. },
  31546. ]
  31547. ))
  31548. characterMakers.push(() => makeCharacter(
  31549. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31550. {
  31551. dragon: {
  31552. height: math.unit(26, "feet"),
  31553. weight: math.unit(36, "tons"),
  31554. name: "Dragon",
  31555. image: {
  31556. source: "./media/characters/arimphae/dragon.svg",
  31557. extra: 1574/983,
  31558. bottom: 357/1931
  31559. }
  31560. },
  31561. drake: {
  31562. height: math.unit(9, "feet"),
  31563. weight: math.unit(1.5, "tons"),
  31564. name: "Drake",
  31565. image: {
  31566. source: "./media/characters/arimphae/drake.svg",
  31567. extra: 1120/925,
  31568. bottom: 435/1555
  31569. }
  31570. },
  31571. },
  31572. [
  31573. {
  31574. name: "Small",
  31575. height: math.unit(26*5/9, "feet")
  31576. },
  31577. {
  31578. name: "Normal",
  31579. height: math.unit(26, "feet"),
  31580. default: true
  31581. },
  31582. ]
  31583. ))
  31584. characterMakers.push(() => makeCharacter(
  31585. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31586. {
  31587. front: {
  31588. height: math.unit(8 + 9/12, "feet"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/xander/front.svg",
  31592. extra: 848/673,
  31593. bottom: 62/910
  31594. }
  31595. },
  31596. },
  31597. [
  31598. {
  31599. name: "Normal",
  31600. height: math.unit(8 + 9/12, "feet"),
  31601. default: true
  31602. },
  31603. {
  31604. name: "Gaze Grabber",
  31605. height: math.unit(13 + 8/12, "feet")
  31606. },
  31607. {
  31608. name: "Jaw Dropper",
  31609. height: math.unit(27, "feet")
  31610. },
  31611. {
  31612. name: "Show Stopper",
  31613. height: math.unit(136, "feet")
  31614. },
  31615. {
  31616. name: "Superstar",
  31617. height: math.unit(1.9e6, "miles")
  31618. },
  31619. ]
  31620. ))
  31621. characterMakers.push(() => makeCharacter(
  31622. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31623. {
  31624. side: {
  31625. height: math.unit(2100, "feet"),
  31626. name: "Side",
  31627. image: {
  31628. source: "./media/characters/osiris/side.svg",
  31629. extra: 1105/939,
  31630. bottom: 167/1272
  31631. }
  31632. },
  31633. },
  31634. [
  31635. {
  31636. name: "Macro",
  31637. height: math.unit(2100, "feet"),
  31638. default: true
  31639. },
  31640. ]
  31641. ))
  31642. characterMakers.push(() => makeCharacter(
  31643. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31644. {
  31645. front: {
  31646. height: math.unit(6 + 8/12, "feet"),
  31647. weight: math.unit(225, "lb"),
  31648. name: "Front",
  31649. image: {
  31650. source: "./media/characters/rhys-londe/front.svg",
  31651. extra: 2258/2141,
  31652. bottom: 188/2446
  31653. }
  31654. },
  31655. back: {
  31656. height: math.unit(6 + 8/12, "feet"),
  31657. weight: math.unit(225, "lb"),
  31658. name: "Back",
  31659. image: {
  31660. source: "./media/characters/rhys-londe/back.svg",
  31661. extra: 2237/2137,
  31662. bottom: 63/2300
  31663. }
  31664. },
  31665. frontNsfw: {
  31666. height: math.unit(6 + 8/12, "feet"),
  31667. weight: math.unit(225, "lb"),
  31668. name: "Front (NSFW)",
  31669. image: {
  31670. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31671. extra: 2258/2141,
  31672. bottom: 188/2446
  31673. }
  31674. },
  31675. backNsfw: {
  31676. height: math.unit(6 + 8/12, "feet"),
  31677. weight: math.unit(225, "lb"),
  31678. name: "Back (NSFW)",
  31679. image: {
  31680. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31681. extra: 2237/2137,
  31682. bottom: 63/2300
  31683. }
  31684. },
  31685. dick: {
  31686. height: math.unit(30, "inches"),
  31687. name: "Dick",
  31688. image: {
  31689. source: "./media/characters/rhys-londe/dick.svg"
  31690. }
  31691. },
  31692. maw: {
  31693. height: math.unit(1.6, "feet"),
  31694. name: "Maw",
  31695. image: {
  31696. source: "./media/characters/rhys-londe/maw.svg"
  31697. }
  31698. },
  31699. },
  31700. [
  31701. {
  31702. name: "Normal",
  31703. height: math.unit(6 + 8/12, "feet"),
  31704. default: true
  31705. },
  31706. ]
  31707. ))
  31708. characterMakers.push(() => makeCharacter(
  31709. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31710. {
  31711. front: {
  31712. height: math.unit(3 + 10/12, "feet"),
  31713. weight: math.unit(90, "lb"),
  31714. name: "Front",
  31715. image: {
  31716. source: "./media/characters/taivas-ensim/front.svg",
  31717. extra: 1327/1216,
  31718. bottom: 96/1423
  31719. }
  31720. },
  31721. back: {
  31722. height: math.unit(3 + 10/12, "feet"),
  31723. weight: math.unit(90, "lb"),
  31724. name: "Back",
  31725. image: {
  31726. source: "./media/characters/taivas-ensim/back.svg",
  31727. extra: 1355/1247,
  31728. bottom: 11/1366
  31729. }
  31730. },
  31731. frontNsfw: {
  31732. height: math.unit(3 + 10/12, "feet"),
  31733. weight: math.unit(90, "lb"),
  31734. name: "Front (NSFW)",
  31735. image: {
  31736. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31737. extra: 1327/1216,
  31738. bottom: 96/1423
  31739. }
  31740. },
  31741. backNsfw: {
  31742. height: math.unit(3 + 10/12, "feet"),
  31743. weight: math.unit(90, "lb"),
  31744. name: "Back (NSFW)",
  31745. image: {
  31746. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31747. extra: 1355/1247,
  31748. bottom: 11/1366
  31749. }
  31750. },
  31751. },
  31752. [
  31753. {
  31754. name: "Normal",
  31755. height: math.unit(3 + 10/12, "feet"),
  31756. default: true
  31757. },
  31758. ]
  31759. ))
  31760. characterMakers.push(() => makeCharacter(
  31761. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31762. {
  31763. front: {
  31764. height: math.unit(9 + 6/12, "feet"),
  31765. weight: math.unit(940, "lb"),
  31766. name: "Front",
  31767. image: {
  31768. source: "./media/characters/byliss/front.svg",
  31769. extra: 1327/1290,
  31770. bottom: 82/1409
  31771. }
  31772. },
  31773. back: {
  31774. height: math.unit(9 + 6/12, "feet"),
  31775. weight: math.unit(940, "lb"),
  31776. name: "Back",
  31777. image: {
  31778. source: "./media/characters/byliss/back.svg",
  31779. extra: 1376/1349,
  31780. bottom: 9/1385
  31781. }
  31782. },
  31783. frontNsfw: {
  31784. height: math.unit(9 + 6/12, "feet"),
  31785. weight: math.unit(940, "lb"),
  31786. name: "Front (NSFW)",
  31787. image: {
  31788. source: "./media/characters/byliss/front-nsfw.svg",
  31789. extra: 1327/1290,
  31790. bottom: 82/1409
  31791. }
  31792. },
  31793. backNsfw: {
  31794. height: math.unit(9 + 6/12, "feet"),
  31795. weight: math.unit(940, "lb"),
  31796. name: "Back (NSFW)",
  31797. image: {
  31798. source: "./media/characters/byliss/back-nsfw.svg",
  31799. extra: 1376/1349,
  31800. bottom: 9/1385
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Normal",
  31807. height: math.unit(9 + 6/12, "feet"),
  31808. default: true
  31809. },
  31810. ]
  31811. ))
  31812. characterMakers.push(() => makeCharacter(
  31813. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31814. {
  31815. front: {
  31816. height: math.unit(5 + 2/12, "feet"),
  31817. weight: math.unit(200, "lb"),
  31818. name: "Front",
  31819. image: {
  31820. source: "./media/characters/noraly/front.svg",
  31821. extra: 4985/4773,
  31822. bottom: 150/5135
  31823. }
  31824. },
  31825. full: {
  31826. height: math.unit(5 + 2/12, "feet"),
  31827. weight: math.unit(164, "lb"),
  31828. name: "Full",
  31829. image: {
  31830. source: "./media/characters/noraly/full.svg",
  31831. extra: 1114/1059,
  31832. bottom: 35/1149
  31833. }
  31834. },
  31835. fuller: {
  31836. height: math.unit(5 + 2/12, "feet"),
  31837. weight: math.unit(230, "lb"),
  31838. name: "Fuller",
  31839. image: {
  31840. source: "./media/characters/noraly/fuller.svg",
  31841. extra: 1114/1059,
  31842. bottom: 35/1149
  31843. }
  31844. },
  31845. fullest: {
  31846. height: math.unit(5 + 2/12, "feet"),
  31847. weight: math.unit(300, "lb"),
  31848. name: "Fullest",
  31849. image: {
  31850. source: "./media/characters/noraly/fullest.svg",
  31851. extra: 1114/1059,
  31852. bottom: 35/1149
  31853. }
  31854. },
  31855. },
  31856. [
  31857. {
  31858. name: "Normal",
  31859. height: math.unit(5 + 2/12, "feet"),
  31860. default: true
  31861. },
  31862. ]
  31863. ))
  31864. characterMakers.push(() => makeCharacter(
  31865. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31866. {
  31867. front: {
  31868. height: math.unit(5 + 2/12, "feet"),
  31869. weight: math.unit(210, "lb"),
  31870. name: "Front",
  31871. image: {
  31872. source: "./media/characters/pera/front.svg",
  31873. extra: 1560/1531,
  31874. bottom: 165/1725
  31875. }
  31876. },
  31877. back: {
  31878. height: math.unit(5 + 2/12, "feet"),
  31879. weight: math.unit(210, "lb"),
  31880. name: "Back",
  31881. image: {
  31882. source: "./media/characters/pera/back.svg",
  31883. extra: 1523/1493,
  31884. bottom: 152/1675
  31885. }
  31886. },
  31887. dick: {
  31888. height: math.unit(2.4, "feet"),
  31889. name: "Dick",
  31890. image: {
  31891. source: "./media/characters/pera/dick.svg"
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(5 + 2/12, "feet"),
  31899. default: true
  31900. },
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31905. {
  31906. front: {
  31907. height: math.unit(12, "feet"),
  31908. weight: math.unit(3200, "lb"),
  31909. name: "Front",
  31910. image: {
  31911. source: "./media/characters/julian/front.svg",
  31912. extra: 2962/2701,
  31913. bottom: 184/3146
  31914. }
  31915. },
  31916. maw: {
  31917. height: math.unit(5.35, "feet"),
  31918. name: "Maw",
  31919. image: {
  31920. source: "./media/characters/julian/maw.svg"
  31921. }
  31922. },
  31923. paw: {
  31924. height: math.unit(3.07, "feet"),
  31925. name: "Paw",
  31926. image: {
  31927. source: "./media/characters/julian/paw.svg"
  31928. }
  31929. },
  31930. },
  31931. [
  31932. {
  31933. name: "Default",
  31934. height: math.unit(12, "feet"),
  31935. default: true
  31936. },
  31937. {
  31938. name: "Big",
  31939. height: math.unit(50, "feet")
  31940. },
  31941. {
  31942. name: "Really Big",
  31943. height: math.unit(1, "mile")
  31944. },
  31945. {
  31946. name: "Extremely Big",
  31947. height: math.unit(100, "miles")
  31948. },
  31949. {
  31950. name: "Planet Hugger",
  31951. height: math.unit(200, "megameters")
  31952. },
  31953. {
  31954. name: "Unreasonably Big",
  31955. height: math.unit(1e300, "meters")
  31956. },
  31957. ]
  31958. ))
  31959. characterMakers.push(() => makeCharacter(
  31960. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31961. {
  31962. solgooleo: {
  31963. height: math.unit(4, "meters"),
  31964. weight: math.unit(6000*1.5, "kg"),
  31965. volume: math.unit(6000, "liters"),
  31966. name: "Solgooleo",
  31967. image: {
  31968. source: "./media/characters/pi/solgooleo.svg",
  31969. extra: 388/331,
  31970. bottom: 29/417
  31971. }
  31972. },
  31973. },
  31974. [
  31975. {
  31976. name: "Normal",
  31977. height: math.unit(4, "meters"),
  31978. default: true
  31979. },
  31980. ]
  31981. ))
  31982. characterMakers.push(() => makeCharacter(
  31983. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31984. {
  31985. front: {
  31986. height: math.unit(8 + 2/12, "feet"),
  31987. weight: math.unit(4, "tons"),
  31988. name: "Front",
  31989. image: {
  31990. source: "./media/characters/shaun/front.svg",
  31991. extra: 1550/1505,
  31992. bottom: 353/1903
  31993. }
  31994. },
  31995. },
  31996. [
  31997. {
  31998. name: "Lorg",
  31999. height: math.unit(8 + 2/12, "feet"),
  32000. default: true
  32001. },
  32002. ]
  32003. ))
  32004. characterMakers.push(() => makeCharacter(
  32005. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32006. {
  32007. front: {
  32008. height: math.unit(7, "feet"),
  32009. name: "Front",
  32010. image: {
  32011. source: "./media/characters/sini/front.svg",
  32012. extra: 726/678,
  32013. bottom: 35/761
  32014. }
  32015. },
  32016. back: {
  32017. height: math.unit(7, "feet"),
  32018. name: "Back",
  32019. image: {
  32020. source: "./media/characters/sini/back.svg",
  32021. extra: 743/701,
  32022. bottom: 12/755
  32023. }
  32024. },
  32025. mawAnthro: {
  32026. height: math.unit(2.14, "feet"),
  32027. name: "Maw (Anthro)",
  32028. image: {
  32029. source: "./media/characters/sini/maw-anthro.svg"
  32030. }
  32031. },
  32032. dick: {
  32033. height: math.unit(1.45, "feet"),
  32034. name: "Dick (Anthro)",
  32035. image: {
  32036. source: "./media/characters/sini/dick-anthro.svg"
  32037. }
  32038. },
  32039. feral: {
  32040. height: math.unit(13, "feet"),
  32041. name: "Feral",
  32042. image: {
  32043. source: "./media/characters/sini/feral.svg",
  32044. extra: 814/605,
  32045. bottom: 11/825
  32046. }
  32047. },
  32048. mawFeral: {
  32049. height: math.unit(4.6, "feet"),
  32050. name: "Maw-feral",
  32051. image: {
  32052. source: "./media/characters/sini/maw-feral.svg"
  32053. }
  32054. },
  32055. footFeral: {
  32056. height: math.unit(4.2, "feet"),
  32057. name: "Foot-feral",
  32058. image: {
  32059. source: "./media/characters/sini/foot-feral.svg"
  32060. }
  32061. },
  32062. },
  32063. [
  32064. {
  32065. name: "Normal",
  32066. height: math.unit(7, "feet"),
  32067. default: true
  32068. },
  32069. ]
  32070. ))
  32071. characterMakers.push(() => makeCharacter(
  32072. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32073. {
  32074. side: {
  32075. height: math.unit(13, "meters"),
  32076. weight: math.unit(9072, "kg"),
  32077. name: "Side",
  32078. image: {
  32079. source: "./media/characters/raylldo/side.svg",
  32080. extra: 403/344,
  32081. bottom: 42/445
  32082. }
  32083. },
  32084. leaping: {
  32085. height: math.unit(12.3, "meters"),
  32086. weight: math.unit(9072, "kg"),
  32087. name: "Leaping",
  32088. image: {
  32089. source: "./media/characters/raylldo/leaping.svg",
  32090. extra: 470/249,
  32091. bottom: 13/483
  32092. }
  32093. },
  32094. flying: {
  32095. height: math.unit(18, "meters"),
  32096. weight: math.unit(9072, "kg"),
  32097. name: "Flying",
  32098. image: {
  32099. source: "./media/characters/raylldo/flying.svg"
  32100. }
  32101. },
  32102. head: {
  32103. height: math.unit(5.85, "meters"),
  32104. name: "Head",
  32105. image: {
  32106. source: "./media/characters/raylldo/head.svg"
  32107. }
  32108. },
  32109. maw: {
  32110. height: math.unit(5.32, "meters"),
  32111. name: "Maw",
  32112. image: {
  32113. source: "./media/characters/raylldo/maw.svg"
  32114. }
  32115. },
  32116. eye: {
  32117. height: math.unit(0.54, "meters"),
  32118. name: "Eye",
  32119. image: {
  32120. source: "./media/characters/raylldo/eye.svg"
  32121. }
  32122. },
  32123. },
  32124. [
  32125. {
  32126. name: "Normal",
  32127. height: math.unit(13, "meters"),
  32128. default: true
  32129. },
  32130. ]
  32131. ))
  32132. characterMakers.push(() => makeCharacter(
  32133. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32134. {
  32135. anthroFront: {
  32136. height: math.unit(9, "feet"),
  32137. weight: math.unit(600, "lb"),
  32138. name: "Anthro (Front)",
  32139. image: {
  32140. source: "./media/characters/glint/anthro-front.svg",
  32141. extra: 1097/1018,
  32142. bottom: 28/1125
  32143. }
  32144. },
  32145. anthroBack: {
  32146. height: math.unit(9, "feet"),
  32147. weight: math.unit(600, "lb"),
  32148. name: "Anthro (Back)",
  32149. image: {
  32150. source: "./media/characters/glint/anthro-back.svg",
  32151. extra: 1154/997,
  32152. bottom: 36/1190
  32153. }
  32154. },
  32155. feral: {
  32156. height: math.unit(11, "feet"),
  32157. weight: math.unit(50000, "lb"),
  32158. name: "Feral",
  32159. image: {
  32160. source: "./media/characters/glint/feral.svg",
  32161. extra: 3035/1585,
  32162. bottom: 1169/4204
  32163. }
  32164. },
  32165. dickAnthro: {
  32166. height: math.unit(0.7, "meters"),
  32167. name: "Dick (Anthro)",
  32168. image: {
  32169. source: "./media/characters/glint/dick-anthro.svg"
  32170. }
  32171. },
  32172. dickFeral: {
  32173. height: math.unit(2.65, "meters"),
  32174. name: "Dick (Feral)",
  32175. image: {
  32176. source: "./media/characters/glint/dick-feral.svg"
  32177. }
  32178. },
  32179. slitHidden: {
  32180. height: math.unit(5.85, "meters"),
  32181. name: "Slit (Hidden)",
  32182. image: {
  32183. source: "./media/characters/glint/slit-hidden.svg"
  32184. }
  32185. },
  32186. slitErect: {
  32187. height: math.unit(5.85, "meters"),
  32188. name: "Slit (Erect)",
  32189. image: {
  32190. source: "./media/characters/glint/slit-erect.svg"
  32191. }
  32192. },
  32193. mawAnthro: {
  32194. height: math.unit(0.63, "meters"),
  32195. name: "Maw (Anthro)",
  32196. image: {
  32197. source: "./media/characters/glint/maw.svg"
  32198. }
  32199. },
  32200. mawFeral: {
  32201. height: math.unit(2.89, "meters"),
  32202. name: "Maw (Feral)",
  32203. image: {
  32204. source: "./media/characters/glint/maw.svg"
  32205. }
  32206. },
  32207. },
  32208. [
  32209. {
  32210. name: "Normal",
  32211. height: math.unit(9, "feet"),
  32212. default: true
  32213. },
  32214. ]
  32215. ))
  32216. characterMakers.push(() => makeCharacter(
  32217. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32218. {
  32219. side: {
  32220. height: math.unit(15, "feet"),
  32221. weight: math.unit(5000, "kg"),
  32222. name: "Side",
  32223. image: {
  32224. source: "./media/characters/kairne/side.svg",
  32225. extra: 979/811,
  32226. bottom: 13/992
  32227. }
  32228. },
  32229. front: {
  32230. height: math.unit(15, "feet"),
  32231. weight: math.unit(5000, "kg"),
  32232. name: "Front",
  32233. image: {
  32234. source: "./media/characters/kairne/front.svg",
  32235. extra: 908/814,
  32236. bottom: 26/934
  32237. }
  32238. },
  32239. sideNsfw: {
  32240. height: math.unit(15, "feet"),
  32241. weight: math.unit(5000, "kg"),
  32242. name: "Side (NSFW)",
  32243. image: {
  32244. source: "./media/characters/kairne/side-nsfw.svg",
  32245. extra: 979/811,
  32246. bottom: 13/992
  32247. }
  32248. },
  32249. frontNsfw: {
  32250. height: math.unit(15, "feet"),
  32251. weight: math.unit(5000, "kg"),
  32252. name: "Front (NSFW)",
  32253. image: {
  32254. source: "./media/characters/kairne/front-nsfw.svg",
  32255. extra: 908/814,
  32256. bottom: 26/934
  32257. }
  32258. },
  32259. dickCaged: {
  32260. height: math.unit(0.65, "meters"),
  32261. name: "Dick-caged",
  32262. image: {
  32263. source: "./media/characters/kairne/dick-caged.svg"
  32264. }
  32265. },
  32266. dick: {
  32267. height: math.unit(0.79, "meters"),
  32268. name: "Dick",
  32269. image: {
  32270. source: "./media/characters/kairne/dick.svg"
  32271. }
  32272. },
  32273. genitals: {
  32274. height: math.unit(1.29, "meters"),
  32275. name: "Genitals",
  32276. image: {
  32277. source: "./media/characters/kairne/genitals.svg"
  32278. }
  32279. },
  32280. maw: {
  32281. height: math.unit(1.73, "meters"),
  32282. name: "Maw",
  32283. image: {
  32284. source: "./media/characters/kairne/maw.svg"
  32285. }
  32286. },
  32287. },
  32288. [
  32289. {
  32290. name: "Normal",
  32291. height: math.unit(15, "feet"),
  32292. default: true
  32293. },
  32294. ]
  32295. ))
  32296. characterMakers.push(() => makeCharacter(
  32297. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32298. {
  32299. front: {
  32300. height: math.unit(5 + 8/12, "feet"),
  32301. weight: math.unit(139, "lb"),
  32302. name: "Front",
  32303. image: {
  32304. source: "./media/characters/biscuit-jackal/front.svg",
  32305. extra: 2106/1961,
  32306. bottom: 58/2164
  32307. }
  32308. },
  32309. back: {
  32310. height: math.unit(5 + 8/12, "feet"),
  32311. weight: math.unit(139, "lb"),
  32312. name: "Back",
  32313. image: {
  32314. source: "./media/characters/biscuit-jackal/back.svg",
  32315. extra: 2132/1976,
  32316. bottom: 57/2189
  32317. }
  32318. },
  32319. werejackal: {
  32320. height: math.unit(6 + 3/12, "feet"),
  32321. weight: math.unit(188, "lb"),
  32322. name: "Werejackal",
  32323. image: {
  32324. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32325. extra: 2373/2178,
  32326. bottom: 53/2426
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(5 + 8/12, "feet"),
  32334. default: true
  32335. },
  32336. ]
  32337. ))
  32338. characterMakers.push(() => makeCharacter(
  32339. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32340. {
  32341. front: {
  32342. height: math.unit(140, "cm"),
  32343. weight: math.unit(45, "kg"),
  32344. name: "Front",
  32345. image: {
  32346. source: "./media/characters/tayra-white/front.svg",
  32347. extra: 2229/2192,
  32348. bottom: 75/2304
  32349. }
  32350. },
  32351. },
  32352. [
  32353. {
  32354. name: "Normal",
  32355. height: math.unit(140, "cm"),
  32356. default: true
  32357. },
  32358. ]
  32359. ))
  32360. characterMakers.push(() => makeCharacter(
  32361. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32362. {
  32363. front: {
  32364. height: math.unit(4 + 5/12, "feet"),
  32365. name: "Front",
  32366. image: {
  32367. source: "./media/characters/scoop/front.svg",
  32368. extra: 1257/1136,
  32369. bottom: 69/1326
  32370. }
  32371. },
  32372. back: {
  32373. height: math.unit(4 + 5/12, "feet"),
  32374. name: "Back",
  32375. image: {
  32376. source: "./media/characters/scoop/back.svg",
  32377. extra: 1321/1152,
  32378. bottom: 32/1353
  32379. }
  32380. },
  32381. maw: {
  32382. height: math.unit(0.68, "feet"),
  32383. name: "Maw",
  32384. image: {
  32385. source: "./media/characters/scoop/maw.svg"
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Really Small",
  32392. height: math.unit(1, "mm")
  32393. },
  32394. {
  32395. name: "Micro",
  32396. height: math.unit(1, "inch")
  32397. },
  32398. {
  32399. name: "Normal",
  32400. height: math.unit(4 + 5/12, "feet"),
  32401. default: true
  32402. },
  32403. {
  32404. name: "Macro",
  32405. height: math.unit(200, "feet")
  32406. },
  32407. {
  32408. name: "Megamacro",
  32409. height: math.unit(3240, "feet")
  32410. },
  32411. {
  32412. name: "Teramacro",
  32413. height: math.unit(2500, "miles")
  32414. },
  32415. ]
  32416. ))
  32417. characterMakers.push(() => makeCharacter(
  32418. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32419. {
  32420. front: {
  32421. height: math.unit(15 + 7/12, "feet"),
  32422. name: "Front",
  32423. image: {
  32424. source: "./media/characters/saphinara/front.svg",
  32425. extra: 604/546,
  32426. bottom: 19/623
  32427. }
  32428. },
  32429. side: {
  32430. height: math.unit(15 + 7/12, "feet"),
  32431. name: "Side",
  32432. image: {
  32433. source: "./media/characters/saphinara/side.svg",
  32434. extra: 605/547,
  32435. bottom: 6/611
  32436. }
  32437. },
  32438. back: {
  32439. height: math.unit(15 + 7/12, "feet"),
  32440. name: "Back",
  32441. image: {
  32442. source: "./media/characters/saphinara/back.svg",
  32443. extra: 591/531,
  32444. bottom: 13/604
  32445. }
  32446. },
  32447. frontTail: {
  32448. height: math.unit(15 + 7/12, "feet"),
  32449. name: "Front (Full Tail)",
  32450. image: {
  32451. source: "./media/characters/saphinara/front-tail.svg",
  32452. extra: 748/547,
  32453. bottom: 66/814
  32454. }
  32455. },
  32456. },
  32457. [
  32458. {
  32459. name: "Normal",
  32460. height: math.unit(15 + 7/12, "feet"),
  32461. default: true
  32462. },
  32463. {
  32464. name: "Angry",
  32465. height: math.unit(30 + 6/12, "feet")
  32466. },
  32467. {
  32468. name: "Enraged",
  32469. height: math.unit(102 + 1/12, "feet")
  32470. },
  32471. ]
  32472. ))
  32473. characterMakers.push(() => makeCharacter(
  32474. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32475. {
  32476. front: {
  32477. height: math.unit(6 + 8/12, "feet"),
  32478. weight: math.unit(300, "lb"),
  32479. name: "Front",
  32480. image: {
  32481. source: "./media/characters/jrain/front.svg",
  32482. extra: 3039/2865,
  32483. bottom: 399/3438
  32484. }
  32485. },
  32486. back: {
  32487. height: math.unit(6 + 8/12, "feet"),
  32488. weight: math.unit(300, "lb"),
  32489. name: "Back",
  32490. image: {
  32491. source: "./media/characters/jrain/back.svg",
  32492. extra: 3089/2938,
  32493. bottom: 172/3261
  32494. }
  32495. },
  32496. head: {
  32497. height: math.unit(2.14, "feet"),
  32498. name: "Head",
  32499. image: {
  32500. source: "./media/characters/jrain/head.svg"
  32501. }
  32502. },
  32503. maw: {
  32504. height: math.unit(1.77, "feet"),
  32505. name: "Maw",
  32506. image: {
  32507. source: "./media/characters/jrain/maw.svg"
  32508. }
  32509. },
  32510. leftHand: {
  32511. height: math.unit(1.1, "feet"),
  32512. name: "Left Hand",
  32513. image: {
  32514. source: "./media/characters/jrain/left-hand.svg"
  32515. }
  32516. },
  32517. rightHand: {
  32518. height: math.unit(1.1, "feet"),
  32519. name: "Right Hand",
  32520. image: {
  32521. source: "./media/characters/jrain/right-hand.svg"
  32522. }
  32523. },
  32524. eye: {
  32525. height: math.unit(0.35, "feet"),
  32526. name: "Eye",
  32527. image: {
  32528. source: "./media/characters/jrain/eye.svg"
  32529. }
  32530. },
  32531. },
  32532. [
  32533. {
  32534. name: "Normal",
  32535. height: math.unit(6 + 8/12, "feet"),
  32536. default: true
  32537. },
  32538. {
  32539. name: "Casually Large",
  32540. height: math.unit(25, "feet")
  32541. },
  32542. {
  32543. name: "Giant",
  32544. height: math.unit(100, "feet")
  32545. },
  32546. {
  32547. name: "Kaiju",
  32548. height: math.unit(300, "feet")
  32549. },
  32550. ]
  32551. ))
  32552. characterMakers.push(() => makeCharacter(
  32553. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32554. {
  32555. dragon: {
  32556. height: math.unit(5, "meters"),
  32557. name: "Dragon",
  32558. image: {
  32559. source: "./media/characters/sabrina/dragon.svg",
  32560. extra: 3670 / 2365,
  32561. bottom: 333 / 4003
  32562. }
  32563. },
  32564. gryphon: {
  32565. height: math.unit(3, "meters"),
  32566. name: "Gryphon",
  32567. image: {
  32568. source: "./media/characters/sabrina/gryphon.svg",
  32569. extra: 1576 / 945,
  32570. bottom: 71 / 1647
  32571. }
  32572. },
  32573. snake: {
  32574. height: math.unit(12, "meters"),
  32575. name: "Snake",
  32576. image: {
  32577. source: "./media/characters/sabrina/snake.svg",
  32578. extra: 1758 / 1320,
  32579. bottom: 186 / 1944
  32580. }
  32581. },
  32582. collar: {
  32583. height: math.unit(1.86, "meters"),
  32584. name: "Collar",
  32585. image: {
  32586. source: "./media/characters/sabrina/collar.svg"
  32587. }
  32588. },
  32589. eye: {
  32590. height: math.unit(0.53, "meters"),
  32591. name: "Eye",
  32592. image: {
  32593. source: "./media/characters/sabrina/eye.svg"
  32594. }
  32595. },
  32596. foot: {
  32597. height: math.unit(1.86, "meters"),
  32598. name: "Foot",
  32599. image: {
  32600. source: "./media/characters/sabrina/foot.svg"
  32601. }
  32602. },
  32603. hand: {
  32604. height: math.unit(1.32, "meters"),
  32605. name: "Hand",
  32606. image: {
  32607. source: "./media/characters/sabrina/hand.svg"
  32608. }
  32609. },
  32610. head: {
  32611. height: math.unit(2.44, "meters"),
  32612. name: "Head",
  32613. image: {
  32614. source: "./media/characters/sabrina/head.svg"
  32615. }
  32616. },
  32617. headAngry: {
  32618. height: math.unit(2.44, "meters"),
  32619. name: "Head (Angry))",
  32620. image: {
  32621. source: "./media/characters/sabrina/head-angry.svg"
  32622. }
  32623. },
  32624. maw: {
  32625. height: math.unit(1.65, "meters"),
  32626. name: "Maw",
  32627. image: {
  32628. source: "./media/characters/sabrina/maw.svg"
  32629. }
  32630. },
  32631. spikes: {
  32632. height: math.unit(1.69, "meters"),
  32633. name: "Spikes",
  32634. image: {
  32635. source: "./media/characters/sabrina/spikes.svg"
  32636. }
  32637. },
  32638. stomach: {
  32639. height: math.unit(1.15, "meters"),
  32640. name: "Stomach",
  32641. image: {
  32642. source: "./media/characters/sabrina/stomach.svg"
  32643. }
  32644. },
  32645. tongue: {
  32646. height: math.unit(1.27, "meters"),
  32647. name: "Tongue",
  32648. image: {
  32649. source: "./media/characters/sabrina/tongue.svg"
  32650. }
  32651. },
  32652. wingDorsal: {
  32653. height: math.unit(4.85, "meters"),
  32654. name: "Wing (Dorsal)",
  32655. image: {
  32656. source: "./media/characters/sabrina/wing-dorsal.svg"
  32657. }
  32658. },
  32659. wingVentral: {
  32660. height: math.unit(4.85, "meters"),
  32661. name: "Wing (Ventral)",
  32662. image: {
  32663. source: "./media/characters/sabrina/wing-ventral.svg"
  32664. }
  32665. },
  32666. },
  32667. [
  32668. {
  32669. name: "Normal",
  32670. height: math.unit(5, "meters"),
  32671. default: true
  32672. },
  32673. ]
  32674. ))
  32675. characterMakers.push(() => makeCharacter(
  32676. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32677. {
  32678. frontMaid: {
  32679. height: math.unit(5 + 5/12, "feet"),
  32680. weight: math.unit(130, "lb"),
  32681. name: "Front (Maid)",
  32682. image: {
  32683. source: "./media/characters/midnight-tales/front-maid.svg",
  32684. extra: 489/454,
  32685. bottom: 61/550
  32686. }
  32687. },
  32688. frontFormal: {
  32689. height: math.unit(5 + 5/12, "feet"),
  32690. weight: math.unit(130, "lb"),
  32691. name: "Front (Formal)",
  32692. image: {
  32693. source: "./media/characters/midnight-tales/front-formal.svg",
  32694. extra: 489/454,
  32695. bottom: 61/550
  32696. }
  32697. },
  32698. back: {
  32699. height: math.unit(5 + 5/12, "feet"),
  32700. weight: math.unit(130, "lb"),
  32701. name: "Back",
  32702. image: {
  32703. source: "./media/characters/midnight-tales/back.svg",
  32704. extra: 498/456,
  32705. bottom: 33/531
  32706. }
  32707. },
  32708. frontBeast: {
  32709. height: math.unit(40, "feet"),
  32710. weight: math.unit(64000, "lb"),
  32711. name: "Front (Beast)",
  32712. image: {
  32713. source: "./media/characters/midnight-tales/front-beast.svg",
  32714. extra: 927/860,
  32715. bottom: 53/980
  32716. }
  32717. },
  32718. backBeast: {
  32719. height: math.unit(40, "feet"),
  32720. weight: math.unit(64000, "lb"),
  32721. name: "Back (Beast)",
  32722. image: {
  32723. source: "./media/characters/midnight-tales/back-beast.svg",
  32724. extra: 929/855,
  32725. bottom: 16/945
  32726. }
  32727. },
  32728. footBeast: {
  32729. height: math.unit(6.7, "feet"),
  32730. name: "Foot (Beast)",
  32731. image: {
  32732. source: "./media/characters/midnight-tales/foot-beast.svg"
  32733. }
  32734. },
  32735. headBeast: {
  32736. height: math.unit(8, "feet"),
  32737. name: "Head (Beast)",
  32738. image: {
  32739. source: "./media/characters/midnight-tales/head-beast.svg"
  32740. }
  32741. },
  32742. },
  32743. [
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(5 + 5 / 12, "feet"),
  32747. default: true
  32748. },
  32749. {
  32750. name: "Macro",
  32751. height: math.unit(25, "feet")
  32752. },
  32753. ]
  32754. ))
  32755. characterMakers.push(() => makeCharacter(
  32756. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32757. {
  32758. front: {
  32759. height: math.unit(5 + 10/12, "feet"),
  32760. name: "Front",
  32761. image: {
  32762. source: "./media/characters/argon/front.svg",
  32763. extra: 2009/1935,
  32764. bottom: 118/2127
  32765. }
  32766. },
  32767. back: {
  32768. height: math.unit(5 + 10/12, "feet"),
  32769. name: "Back",
  32770. image: {
  32771. source: "./media/characters/argon/back.svg",
  32772. extra: 2047/1992,
  32773. bottom: 20/2067
  32774. }
  32775. },
  32776. frontDressed: {
  32777. height: math.unit(5 + 10/12, "feet"),
  32778. name: "Front (Dressed)",
  32779. image: {
  32780. source: "./media/characters/argon/front-dressed.svg",
  32781. extra: 2009/1935,
  32782. bottom: 118/2127
  32783. }
  32784. },
  32785. },
  32786. [
  32787. {
  32788. name: "Normal",
  32789. height: math.unit(5 + 10/12, "feet"),
  32790. default: true
  32791. },
  32792. ]
  32793. ))
  32794. characterMakers.push(() => makeCharacter(
  32795. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32796. {
  32797. front: {
  32798. height: math.unit(8 + 6/12, "feet"),
  32799. weight: math.unit(1150, "lb"),
  32800. name: "Front",
  32801. image: {
  32802. source: "./media/characters/kichi/front.svg",
  32803. extra: 1267/1164,
  32804. bottom: 61/1328
  32805. }
  32806. },
  32807. back: {
  32808. height: math.unit(8 + 6/12, "feet"),
  32809. weight: math.unit(1150, "lb"),
  32810. name: "Back",
  32811. image: {
  32812. source: "./media/characters/kichi/back.svg",
  32813. extra: 1273/1166,
  32814. bottom: 33/1306
  32815. }
  32816. },
  32817. },
  32818. [
  32819. {
  32820. name: "Normal",
  32821. height: math.unit(8 + 6/12, "feet"),
  32822. default: true
  32823. },
  32824. ]
  32825. ))
  32826. characterMakers.push(() => makeCharacter(
  32827. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32828. {
  32829. front: {
  32830. height: math.unit(6, "feet"),
  32831. weight: math.unit(210, "lb"),
  32832. name: "Front",
  32833. image: {
  32834. source: "./media/characters/manetel-greyscale/front.svg",
  32835. extra: 350/312,
  32836. bottom: 8/358
  32837. }
  32838. },
  32839. },
  32840. [
  32841. {
  32842. name: "Micro",
  32843. height: math.unit(2, "inches")
  32844. },
  32845. {
  32846. name: "Normal",
  32847. height: math.unit(6, "feet"),
  32848. default: true
  32849. },
  32850. {
  32851. name: "Minimacro",
  32852. height: math.unit(17, "feet")
  32853. },
  32854. {
  32855. name: "Macro",
  32856. height: math.unit(117, "feet")
  32857. },
  32858. ]
  32859. ))
  32860. characterMakers.push(() => makeCharacter(
  32861. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32862. {
  32863. side: {
  32864. height: math.unit(5 + 1/12, "feet"),
  32865. weight: math.unit(418, "lb"),
  32866. name: "Side",
  32867. image: {
  32868. source: "./media/characters/softpurr/side.svg",
  32869. extra: 1993/1945,
  32870. bottom: 134/2127
  32871. }
  32872. },
  32873. front: {
  32874. height: math.unit(5 + 1/12, "feet"),
  32875. weight: math.unit(418, "lb"),
  32876. name: "Front",
  32877. image: {
  32878. source: "./media/characters/softpurr/front.svg",
  32879. extra: 1950/1856,
  32880. bottom: 174/2124
  32881. }
  32882. },
  32883. paw: {
  32884. height: math.unit(1, "feet"),
  32885. name: "Paw",
  32886. image: {
  32887. source: "./media/characters/softpurr/paw.svg"
  32888. }
  32889. },
  32890. },
  32891. [
  32892. {
  32893. name: "Normal",
  32894. height: math.unit(5 + 1/12, "feet"),
  32895. default: true
  32896. },
  32897. ]
  32898. ))
  32899. characterMakers.push(() => makeCharacter(
  32900. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32901. {
  32902. front: {
  32903. height: math.unit(260, "meters"),
  32904. name: "Front",
  32905. image: {
  32906. source: "./media/characters/anahita/front.svg",
  32907. extra: 665/635,
  32908. bottom: 89/754
  32909. }
  32910. },
  32911. },
  32912. [
  32913. {
  32914. name: "Macro",
  32915. height: math.unit(260, "meters"),
  32916. default: true
  32917. },
  32918. ]
  32919. ))
  32920. characterMakers.push(() => makeCharacter(
  32921. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32922. {
  32923. front: {
  32924. height: math.unit(4 + 10/12, "feet"),
  32925. weight: math.unit(160, "lb"),
  32926. name: "Front",
  32927. image: {
  32928. source: "./media/characters/chip-mouse/front.svg",
  32929. extra: 3528/3408,
  32930. bottom: 0/3528
  32931. }
  32932. },
  32933. frontNsfw: {
  32934. height: math.unit(4 + 10/12, "feet"),
  32935. weight: math.unit(160, "lb"),
  32936. name: "Front (NSFW)",
  32937. image: {
  32938. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32939. extra: 3528/3408,
  32940. bottom: 0/3528
  32941. }
  32942. },
  32943. },
  32944. [
  32945. {
  32946. name: "Normal",
  32947. height: math.unit(4 + 10/12, "feet"),
  32948. default: true
  32949. },
  32950. ]
  32951. ))
  32952. characterMakers.push(() => makeCharacter(
  32953. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32954. {
  32955. side: {
  32956. height: math.unit(10, "feet"),
  32957. weight: math.unit(14000, "lb"),
  32958. name: "Side",
  32959. image: {
  32960. source: "./media/characters/kremm/side.svg",
  32961. extra: 1390/1053,
  32962. bottom: 90/1480
  32963. }
  32964. },
  32965. gut: {
  32966. height: math.unit(5.8, "feet"),
  32967. name: "Gut",
  32968. image: {
  32969. source: "./media/characters/kremm/gut.svg"
  32970. }
  32971. },
  32972. ass: {
  32973. height: math.unit(6.1, "feet"),
  32974. name: "Ass",
  32975. image: {
  32976. source: "./media/characters/kremm/ass.svg"
  32977. }
  32978. },
  32979. jaws: {
  32980. height: math.unit(2.2, "feet"),
  32981. name: "Jaws",
  32982. image: {
  32983. source: "./media/characters/kremm/jaws.svg"
  32984. }
  32985. },
  32986. dick: {
  32987. height: math.unit(4.26, "feet"),
  32988. name: "Dick",
  32989. image: {
  32990. source: "./media/characters/kremm/dick.svg"
  32991. }
  32992. },
  32993. },
  32994. [
  32995. {
  32996. name: "Normal",
  32997. height: math.unit(10, "feet"),
  32998. default: true
  32999. },
  33000. ]
  33001. ))
  33002. characterMakers.push(() => makeCharacter(
  33003. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33004. {
  33005. front: {
  33006. height: math.unit(30, "stories"),
  33007. name: "Front",
  33008. image: {
  33009. source: "./media/characters/kai/front.svg",
  33010. extra: 1892/1718,
  33011. bottom: 162/2054
  33012. }
  33013. },
  33014. },
  33015. [
  33016. {
  33017. name: "Macro",
  33018. height: math.unit(30, "stories"),
  33019. default: true
  33020. },
  33021. ]
  33022. ))
  33023. characterMakers.push(() => makeCharacter(
  33024. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33025. {
  33026. front: {
  33027. height: math.unit(6 + 4/12, "feet"),
  33028. weight: math.unit(145, "lb"),
  33029. name: "Front",
  33030. image: {
  33031. source: "./media/characters/sykes/front.svg",
  33032. extra: 1321 / 1187,
  33033. bottom: 66 / 1387
  33034. }
  33035. },
  33036. back: {
  33037. height: math.unit(6 + 4/12, "feet"),
  33038. weight: math.unit(145, "lb"),
  33039. name: "Back",
  33040. image: {
  33041. source: "./media/characters/sykes/back.svg",
  33042. extra: 1326/1181,
  33043. bottom: 31/1357
  33044. }
  33045. },
  33046. handBack: {
  33047. height: math.unit(0.9, "feet"),
  33048. name: "Hand (Back)",
  33049. image: {
  33050. source: "./media/characters/sykes/hand-back.svg"
  33051. }
  33052. },
  33053. handFront: {
  33054. height: math.unit(0.839, "feet"),
  33055. name: "Hand (Front)",
  33056. image: {
  33057. source: "./media/characters/sykes/hand-front.svg"
  33058. }
  33059. },
  33060. leftFoot: {
  33061. height: math.unit(1.2, "feet"),
  33062. name: "Foot (Left)",
  33063. image: {
  33064. source: "./media/characters/sykes/foot-left.svg"
  33065. }
  33066. },
  33067. rightFoot: {
  33068. height: math.unit(1.2, "feet"),
  33069. name: "Foot (Right)",
  33070. image: {
  33071. source: "./media/characters/sykes/foot-right.svg"
  33072. }
  33073. },
  33074. maw: {
  33075. height: math.unit(1.93, "feet"),
  33076. name: "Maw",
  33077. image: {
  33078. source: "./media/characters/sykes/maw.svg"
  33079. }
  33080. },
  33081. teeth: {
  33082. height: math.unit(0.51, "feet"),
  33083. name: "Teeth",
  33084. image: {
  33085. source: "./media/characters/sykes/teeth.svg"
  33086. }
  33087. },
  33088. tongue: {
  33089. height: math.unit(2.13, "feet"),
  33090. name: "Tongue",
  33091. image: {
  33092. source: "./media/characters/sykes/tongue.svg"
  33093. }
  33094. },
  33095. uvula: {
  33096. height: math.unit(0.16, "feet"),
  33097. name: "Uvula",
  33098. image: {
  33099. source: "./media/characters/sykes/uvula.svg"
  33100. }
  33101. },
  33102. collar: {
  33103. height: math.unit(0.287, "feet"),
  33104. name: "Collar",
  33105. image: {
  33106. source: "./media/characters/sykes/collar.svg"
  33107. }
  33108. },
  33109. },
  33110. [
  33111. {
  33112. name: "Shrunken",
  33113. height: math.unit(5, "inches")
  33114. },
  33115. {
  33116. name: "Normal",
  33117. height: math.unit(6 + 4 / 12, "feet"),
  33118. default: true
  33119. },
  33120. {
  33121. name: "Big",
  33122. height: math.unit(15, "feet")
  33123. },
  33124. ]
  33125. ))
  33126. characterMakers.push(() => makeCharacter(
  33127. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33128. {
  33129. front: {
  33130. height: math.unit(5 + 8/12, "feet"),
  33131. weight: math.unit(190, "lb"),
  33132. name: "Front",
  33133. image: {
  33134. source: "./media/characters/oven-otter/front.svg",
  33135. extra: 1809/1740,
  33136. bottom: 181/1990
  33137. }
  33138. },
  33139. back: {
  33140. height: math.unit(5 + 8/12, "feet"),
  33141. weight: math.unit(190, "lb"),
  33142. name: "Back",
  33143. image: {
  33144. source: "./media/characters/oven-otter/back.svg",
  33145. extra: 1709/1635,
  33146. bottom: 118/1827
  33147. }
  33148. },
  33149. hand: {
  33150. height: math.unit(1.07, "feet"),
  33151. name: "Hand",
  33152. image: {
  33153. source: "./media/characters/oven-otter/hand.svg"
  33154. }
  33155. },
  33156. beans: {
  33157. height: math.unit(1.74, "feet"),
  33158. name: "Beans",
  33159. image: {
  33160. source: "./media/characters/oven-otter/beans.svg"
  33161. }
  33162. },
  33163. },
  33164. [
  33165. {
  33166. name: "Micro",
  33167. height: math.unit(0.5, "inches")
  33168. },
  33169. {
  33170. name: "Normal",
  33171. height: math.unit(5 + 8/12, "feet"),
  33172. default: true
  33173. },
  33174. {
  33175. name: "Macro",
  33176. height: math.unit(250, "feet")
  33177. },
  33178. {
  33179. name: "Really High",
  33180. height: math.unit(420, "feet")
  33181. },
  33182. ]
  33183. ))
  33184. characterMakers.push(() => makeCharacter(
  33185. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33186. {
  33187. front: {
  33188. height: math.unit(5, "meters"),
  33189. weight: math.unit(292000000000000, "kg"),
  33190. name: "Front",
  33191. image: {
  33192. source: "./media/characters/devourer/front.svg",
  33193. extra: 1800/1733,
  33194. bottom: 211/2011
  33195. }
  33196. },
  33197. maw: {
  33198. height: math.unit(1.1, "meter"),
  33199. name: "Maw",
  33200. image: {
  33201. source: "./media/characters/devourer/maw.svg"
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Small",
  33208. height: math.unit(3, "meters")
  33209. },
  33210. {
  33211. name: "Large",
  33212. height: math.unit(5, "meters"),
  33213. default: true
  33214. },
  33215. ]
  33216. ))
  33217. characterMakers.push(() => makeCharacter(
  33218. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33219. {
  33220. front: {
  33221. height: math.unit(6, "feet"),
  33222. weight: math.unit(400, "lb"),
  33223. name: "Front",
  33224. image: {
  33225. source: "./media/characters/ellarby/front.svg",
  33226. extra: 1909/1763,
  33227. bottom: 80/1989
  33228. }
  33229. },
  33230. back: {
  33231. height: math.unit(6, "feet"),
  33232. weight: math.unit(400, "lb"),
  33233. name: "Back",
  33234. image: {
  33235. source: "./media/characters/ellarby/back.svg",
  33236. extra: 1914/1784,
  33237. bottom: 172/2086
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Mischief",
  33244. height: math.unit(18, "inches")
  33245. },
  33246. {
  33247. name: "Trouble",
  33248. height: math.unit(12, "feet")
  33249. },
  33250. {
  33251. name: "Havoc",
  33252. height: math.unit(200, "feet"),
  33253. default: true
  33254. },
  33255. {
  33256. name: "Pandemonium",
  33257. height: math.unit(1, "mile")
  33258. },
  33259. {
  33260. name: "Catastrophe",
  33261. height: math.unit(100, "miles")
  33262. },
  33263. ]
  33264. ))
  33265. characterMakers.push(() => makeCharacter(
  33266. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33267. {
  33268. front: {
  33269. height: math.unit(4.7, "meters"),
  33270. weight: math.unit(6500, "kg"),
  33271. name: "Front",
  33272. image: {
  33273. source: "./media/characters/vex/front.svg",
  33274. extra: 1288/1140,
  33275. bottom: 100/1388
  33276. }
  33277. },
  33278. },
  33279. [
  33280. {
  33281. name: "Normal",
  33282. height: math.unit(4.7, "meters"),
  33283. default: true
  33284. },
  33285. ]
  33286. ))
  33287. characterMakers.push(() => makeCharacter(
  33288. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33289. {
  33290. normal: {
  33291. height: math.unit(6, "feet"),
  33292. weight: math.unit(350, "lb"),
  33293. name: "Normal",
  33294. image: {
  33295. source: "./media/characters/teshy/normal.svg",
  33296. extra: 1795/1735,
  33297. bottom: 16/1811
  33298. }
  33299. },
  33300. monsterFront: {
  33301. height: math.unit(12, "feet"),
  33302. weight: math.unit(4700, "lb"),
  33303. name: "Monster (Front)",
  33304. image: {
  33305. source: "./media/characters/teshy/monster-front.svg",
  33306. extra: 2042/2034,
  33307. bottom: 128/2170
  33308. }
  33309. },
  33310. monsterSide: {
  33311. height: math.unit(12, "feet"),
  33312. weight: math.unit(4700, "lb"),
  33313. name: "Monster (Side)",
  33314. image: {
  33315. source: "./media/characters/teshy/monster-side.svg",
  33316. extra: 2067/2056,
  33317. bottom: 70/2137
  33318. }
  33319. },
  33320. monsterBack: {
  33321. height: math.unit(12, "feet"),
  33322. weight: math.unit(4700, "lb"),
  33323. name: "Monster (Back)",
  33324. image: {
  33325. source: "./media/characters/teshy/monster-back.svg",
  33326. extra: 1921/1914,
  33327. bottom: 171/2092
  33328. }
  33329. },
  33330. },
  33331. [
  33332. {
  33333. name: "Normal",
  33334. height: math.unit(6, "feet"),
  33335. default: true
  33336. },
  33337. ]
  33338. ))
  33339. characterMakers.push(() => makeCharacter(
  33340. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33341. {
  33342. front: {
  33343. height: math.unit(6, "feet"),
  33344. name: "Front",
  33345. image: {
  33346. source: "./media/characters/ramey/front.svg",
  33347. extra: 790/787,
  33348. bottom: 27/817
  33349. }
  33350. },
  33351. },
  33352. [
  33353. {
  33354. name: "Normal",
  33355. height: math.unit(6, "feet"),
  33356. default: true
  33357. },
  33358. ]
  33359. ))
  33360. characterMakers.push(() => makeCharacter(
  33361. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33362. {
  33363. front: {
  33364. height: math.unit(5 + 5/12, "feet"),
  33365. weight: math.unit(120, "lb"),
  33366. name: "Front",
  33367. image: {
  33368. source: "./media/characters/phirae/front.svg",
  33369. extra: 2491/2436,
  33370. bottom: 38/2529
  33371. }
  33372. },
  33373. },
  33374. [
  33375. {
  33376. name: "Normal",
  33377. height: math.unit(5 + 5/12, "feet"),
  33378. default: true
  33379. },
  33380. ]
  33381. ))
  33382. characterMakers.push(() => makeCharacter(
  33383. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33384. {
  33385. front: {
  33386. height: math.unit(6, "feet"),
  33387. weight: math.unit(150, "lb"),
  33388. name: "Front",
  33389. image: {
  33390. source: "./media/characters/stagglas/front.svg",
  33391. extra: 962/882,
  33392. bottom: 53/1015
  33393. }
  33394. },
  33395. },
  33396. [
  33397. {
  33398. name: "Normal",
  33399. height: math.unit(5 + 3/12, "feet"),
  33400. default: true
  33401. },
  33402. ]
  33403. ))
  33404. characterMakers.push(() => makeCharacter(
  33405. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33406. {
  33407. front: {
  33408. height: math.unit(5 + 4/12, "feet"),
  33409. weight: math.unit(145, "lb"),
  33410. name: "Front",
  33411. image: {
  33412. source: "./media/characters/starra/front.svg",
  33413. extra: 1790/1691,
  33414. bottom: 91/1881
  33415. }
  33416. },
  33417. },
  33418. [
  33419. {
  33420. name: "Normal",
  33421. height: math.unit(5 + 4/12, "feet"),
  33422. default: true
  33423. },
  33424. ]
  33425. ))
  33426. characterMakers.push(() => makeCharacter(
  33427. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33428. {
  33429. front: {
  33430. height: math.unit(2.2, "meters"),
  33431. name: "Front",
  33432. image: {
  33433. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33434. extra: 1194/1005,
  33435. bottom: 25/1219
  33436. }
  33437. },
  33438. },
  33439. [
  33440. {
  33441. name: "Normal",
  33442. height: math.unit(2.2, "meters"),
  33443. default: true
  33444. },
  33445. ]
  33446. ))
  33447. characterMakers.push(() => makeCharacter(
  33448. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33449. {
  33450. side: {
  33451. height: math.unit(8 + 2/12, "feet"),
  33452. weight: math.unit(1240, "lb"),
  33453. name: "Side",
  33454. image: {
  33455. source: "./media/characters/mika-valentine/side.svg",
  33456. extra: 2670/2501,
  33457. bottom: 250/2920
  33458. }
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Normal",
  33464. height: math.unit(8 + 2/12, "feet"),
  33465. default: true
  33466. },
  33467. ]
  33468. ))
  33469. characterMakers.push(() => makeCharacter(
  33470. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33471. {
  33472. front: {
  33473. height: math.unit(7 + 2/12, "feet"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/xoltol/front.svg",
  33477. extra: 2212/2124,
  33478. bottom: 84/2296
  33479. }
  33480. },
  33481. side: {
  33482. height: math.unit(7 + 2/12, "feet"),
  33483. name: "Side",
  33484. image: {
  33485. source: "./media/characters/xoltol/side.svg",
  33486. extra: 2273/2197,
  33487. bottom: 26/2299
  33488. }
  33489. },
  33490. hand: {
  33491. height: math.unit(2.5, "feet"),
  33492. name: "Hand",
  33493. image: {
  33494. source: "./media/characters/xoltol/hand.svg"
  33495. }
  33496. },
  33497. },
  33498. [
  33499. {
  33500. name: "Small-ish",
  33501. height: math.unit(5 + 11/12, "feet")
  33502. },
  33503. {
  33504. name: "Normal",
  33505. height: math.unit(7 + 2/12, "feet")
  33506. },
  33507. {
  33508. name: "\"Macro\"",
  33509. height: math.unit(14 + 9/12, "feet"),
  33510. default: true
  33511. },
  33512. {
  33513. name: "Alternate Height",
  33514. height: math.unit(20, "feet")
  33515. },
  33516. {
  33517. name: "Actually Macro",
  33518. height: math.unit(100, "feet")
  33519. },
  33520. ]
  33521. ))
  33522. characterMakers.push(() => makeCharacter(
  33523. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33524. {
  33525. front: {
  33526. height: math.unit(5 + 2/12, "feet"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/kotetsu-redwood/front.svg",
  33530. extra: 1053/942,
  33531. bottom: 60/1113
  33532. }
  33533. },
  33534. },
  33535. [
  33536. {
  33537. name: "Normal",
  33538. height: math.unit(5 + 2/12, "feet"),
  33539. default: true
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33545. {
  33546. front: {
  33547. height: math.unit(2.4, "meters"),
  33548. weight: math.unit(125, "kg"),
  33549. name: "Front",
  33550. image: {
  33551. source: "./media/characters/lilith/front.svg",
  33552. extra: 1590/1513,
  33553. bottom: 203/1793
  33554. }
  33555. },
  33556. },
  33557. [
  33558. {
  33559. name: "Humanoid",
  33560. height: math.unit(2.4, "meters")
  33561. },
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(6, "meters"),
  33565. default: true
  33566. },
  33567. {
  33568. name: "Largest",
  33569. height: math.unit(55, "meters")
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33575. {
  33576. front: {
  33577. height: math.unit(8 + 4/12, "feet"),
  33578. weight: math.unit(535, "lb"),
  33579. name: "Front",
  33580. image: {
  33581. source: "./media/characters/beh'kah-bolger/front.svg",
  33582. extra: 1660/1603,
  33583. bottom: 37/1697
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(8 + 4/12, "feet"),
  33591. default: true
  33592. },
  33593. {
  33594. name: "Kaiju",
  33595. height: math.unit(250, "feet")
  33596. },
  33597. {
  33598. name: "Still Growing",
  33599. height: math.unit(10, "miles")
  33600. },
  33601. {
  33602. name: "Continental",
  33603. height: math.unit(5000, "miles")
  33604. },
  33605. {
  33606. name: "Final Form",
  33607. height: math.unit(2500000, "miles")
  33608. },
  33609. ]
  33610. ))
  33611. characterMakers.push(() => makeCharacter(
  33612. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33613. {
  33614. front: {
  33615. height: math.unit(7 + 2/12, "feet"),
  33616. weight: math.unit(230, "kg"),
  33617. name: "Front",
  33618. image: {
  33619. source: "./media/characters/tatyana-milewska/front.svg",
  33620. extra: 1199/1150,
  33621. bottom: 86/1285
  33622. }
  33623. },
  33624. },
  33625. [
  33626. {
  33627. name: "Normal",
  33628. height: math.unit(7 + 2/12, "feet"),
  33629. default: true
  33630. },
  33631. {
  33632. name: "Big",
  33633. height: math.unit(12, "feet")
  33634. },
  33635. {
  33636. name: "Minimacro",
  33637. height: math.unit(20, "feet")
  33638. },
  33639. {
  33640. name: "Macro",
  33641. height: math.unit(120, "feet")
  33642. },
  33643. ]
  33644. ))
  33645. characterMakers.push(() => makeCharacter(
  33646. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33647. {
  33648. front: {
  33649. height: math.unit(7 + 8/12, "feet"),
  33650. weight: math.unit(152, "kg"),
  33651. name: "Front",
  33652. image: {
  33653. source: "./media/characters/helen-arri/front.svg",
  33654. extra: 440/423,
  33655. bottom: 14/454
  33656. }
  33657. },
  33658. back: {
  33659. height: math.unit(7 + 8/12, "feet"),
  33660. weight: math.unit(152, "kg"),
  33661. name: "Back",
  33662. image: {
  33663. source: "./media/characters/helen-arri/back.svg",
  33664. extra: 443/426,
  33665. bottom: 8/451
  33666. }
  33667. },
  33668. },
  33669. [
  33670. {
  33671. name: "Normal",
  33672. height: math.unit(7 + 8/12, "feet"),
  33673. default: true
  33674. },
  33675. {
  33676. name: "Big",
  33677. height: math.unit(14, "feet")
  33678. },
  33679. {
  33680. name: "Minimacro",
  33681. height: math.unit(24, "feet")
  33682. },
  33683. {
  33684. name: "Macro",
  33685. height: math.unit(140, "feet")
  33686. },
  33687. ]
  33688. ))
  33689. characterMakers.push(() => makeCharacter(
  33690. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33691. {
  33692. front: {
  33693. height: math.unit(6, "meters"),
  33694. name: "Front",
  33695. image: {
  33696. source: "./media/characters/ehanu-rehu/front.svg",
  33697. extra: 1800/1800,
  33698. bottom: 59/1859
  33699. }
  33700. },
  33701. },
  33702. [
  33703. {
  33704. name: "Normal",
  33705. height: math.unit(6, "meters"),
  33706. default: true
  33707. },
  33708. ]
  33709. ))
  33710. characterMakers.push(() => makeCharacter(
  33711. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33712. {
  33713. front: {
  33714. height: math.unit(7 + 3/12, "feet"),
  33715. name: "Front",
  33716. image: {
  33717. source: "./media/characters/renholder/front.svg",
  33718. extra: 3096/2960,
  33719. bottom: 250/3346
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Normal Bat",
  33726. height: math.unit(7 + 3/12, "feet"),
  33727. default: true
  33728. },
  33729. {
  33730. name: "Slightly Tall Bat",
  33731. height: math.unit(100, "feet")
  33732. },
  33733. {
  33734. name: "Big Bat",
  33735. height: math.unit(1000, "feet")
  33736. },
  33737. {
  33738. name: "City-Sized Bat",
  33739. height: math.unit(200000, "feet")
  33740. },
  33741. {
  33742. name: "Bigger Bat",
  33743. height: math.unit(10000, "miles")
  33744. },
  33745. {
  33746. name: "Solar Sized Bat",
  33747. height: math.unit(100, "AU")
  33748. },
  33749. {
  33750. name: "Galactic Bat",
  33751. height: math.unit(200000, "lightyears")
  33752. },
  33753. {
  33754. name: "Universally Known Bat",
  33755. height: math.unit(1, "universe")
  33756. },
  33757. ]
  33758. ))
  33759. characterMakers.push(() => makeCharacter(
  33760. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33761. {
  33762. front: {
  33763. height: math.unit(6 + 11/12, "feet"),
  33764. weight: math.unit(250, "lb"),
  33765. name: "Front",
  33766. image: {
  33767. source: "./media/characters/cookiecat/front.svg",
  33768. extra: 893/827,
  33769. bottom: 14/907
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Micro",
  33776. height: math.unit(3, "inches")
  33777. },
  33778. {
  33779. name: "Normal",
  33780. height: math.unit(6 + 11/12, "feet"),
  33781. default: true
  33782. },
  33783. {
  33784. name: "Macro",
  33785. height: math.unit(100, "feet")
  33786. },
  33787. {
  33788. name: "Macro+",
  33789. height: math.unit(404, "feet")
  33790. },
  33791. {
  33792. name: "Megamacro",
  33793. height: math.unit(165, "miles")
  33794. },
  33795. {
  33796. name: "Planetary",
  33797. height: math.unit(4600, "miles")
  33798. },
  33799. ]
  33800. ))
  33801. characterMakers.push(() => makeCharacter(
  33802. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33803. {
  33804. front: {
  33805. height: math.unit(10 + 3/12, "feet"),
  33806. weight: math.unit(1500, "lb"),
  33807. name: "Front",
  33808. image: {
  33809. source: "./media/characters/tux-kusanagi/front.svg",
  33810. extra: 944/840,
  33811. bottom: 39/983
  33812. }
  33813. },
  33814. back: {
  33815. height: math.unit(10 + 3/12, "feet"),
  33816. weight: math.unit(1500, "lb"),
  33817. name: "Back",
  33818. image: {
  33819. source: "./media/characters/tux-kusanagi/back.svg",
  33820. extra: 941/842,
  33821. bottom: 28/969
  33822. }
  33823. },
  33824. rump: {
  33825. height: math.unit(5.25, "feet"),
  33826. name: "Rump",
  33827. image: {
  33828. source: "./media/characters/tux-kusanagi/rump.svg"
  33829. }
  33830. },
  33831. beak: {
  33832. height: math.unit(1.54, "feet"),
  33833. name: "Beak",
  33834. image: {
  33835. source: "./media/characters/tux-kusanagi/beak.svg"
  33836. }
  33837. },
  33838. },
  33839. [
  33840. {
  33841. name: "Normal",
  33842. height: math.unit(10 + 3/12, "feet"),
  33843. default: true
  33844. },
  33845. ]
  33846. ))
  33847. characterMakers.push(() => makeCharacter(
  33848. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33849. {
  33850. front: {
  33851. height: math.unit(58, "feet"),
  33852. weight: math.unit(200, "tons"),
  33853. name: "Front",
  33854. image: {
  33855. source: "./media/characters/uzarmazari/front.svg",
  33856. extra: 1575/1455,
  33857. bottom: 152/1727
  33858. }
  33859. },
  33860. back: {
  33861. height: math.unit(58, "feet"),
  33862. weight: math.unit(200, "tons"),
  33863. name: "Back",
  33864. image: {
  33865. source: "./media/characters/uzarmazari/back.svg",
  33866. extra: 1585/1510,
  33867. bottom: 157/1742
  33868. }
  33869. },
  33870. head: {
  33871. height: math.unit(26, "feet"),
  33872. name: "Head",
  33873. image: {
  33874. source: "./media/characters/uzarmazari/head.svg"
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(58, "feet"),
  33882. default: true
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33888. {
  33889. side: {
  33890. height: math.unit(15, "feet"),
  33891. name: "Side",
  33892. image: {
  33893. source: "./media/characters/akitu/side.svg",
  33894. extra: 1421/1321,
  33895. bottom: 157/1578
  33896. }
  33897. },
  33898. front: {
  33899. height: math.unit(15, "feet"),
  33900. name: "Front",
  33901. image: {
  33902. source: "./media/characters/akitu/front.svg",
  33903. extra: 1435/1326,
  33904. bottom: 232/1667
  33905. }
  33906. },
  33907. },
  33908. [
  33909. {
  33910. name: "Normal",
  33911. height: math.unit(15, "feet"),
  33912. default: true
  33913. },
  33914. ]
  33915. ))
  33916. characterMakers.push(() => makeCharacter(
  33917. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33918. {
  33919. front: {
  33920. height: math.unit(10 + 8/12, "feet"),
  33921. name: "Front",
  33922. image: {
  33923. source: "./media/characters/azalie-croixland/front.svg",
  33924. extra: 1972/1856,
  33925. bottom: 31/2003
  33926. }
  33927. },
  33928. },
  33929. [
  33930. {
  33931. name: "Original Height",
  33932. height: math.unit(5 + 4/12, "feet")
  33933. },
  33934. {
  33935. name: "Normal Height",
  33936. height: math.unit(10 + 8/12, "feet"),
  33937. default: true
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33943. {
  33944. side: {
  33945. height: math.unit(7 + 1/12, "feet"),
  33946. weight: math.unit(245, "lb"),
  33947. name: "Side",
  33948. image: {
  33949. source: "./media/characters/kavus-kazian/side.svg",
  33950. extra: 349/342,
  33951. bottom: 15/364
  33952. }
  33953. },
  33954. },
  33955. [
  33956. {
  33957. name: "Normal",
  33958. height: math.unit(7 + 1/12, "feet"),
  33959. default: true
  33960. },
  33961. ]
  33962. ))
  33963. characterMakers.push(() => makeCharacter(
  33964. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33965. {
  33966. normal: {
  33967. height: math.unit(5 + 11/12, "feet"),
  33968. name: "Normal",
  33969. image: {
  33970. source: "./media/characters/moonlight-rose/normal.svg",
  33971. extra: 1979/1835,
  33972. bottom: 14/1993
  33973. }
  33974. },
  33975. demon: {
  33976. height: math.unit(5, "km"),
  33977. name: "Demon",
  33978. image: {
  33979. source: "./media/characters/moonlight-rose/demon.svg",
  33980. extra: 986/916,
  33981. bottom: 28/1014
  33982. }
  33983. },
  33984. },
  33985. [
  33986. {
  33987. name: "\"Natural\" height",
  33988. height: math.unit(5 + 11/12, "feet")
  33989. },
  33990. {
  33991. name: "Comfortable Size",
  33992. height: math.unit(40, "meters")
  33993. },
  33994. {
  33995. name: "Common Size",
  33996. height: math.unit(50, "km"),
  33997. default: true
  33998. },
  33999. {
  34000. name: "Demonic",
  34001. height: math.unit(1.24415e+21, "meters")
  34002. },
  34003. ]
  34004. ))
  34005. characterMakers.push(() => makeCharacter(
  34006. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34007. {
  34008. front: {
  34009. height: math.unit(16, "feet"),
  34010. weight: math.unit(610, "kg"),
  34011. name: "Front",
  34012. image: {
  34013. source: "./media/characters/huckle/front.svg",
  34014. extra: 1731/1625,
  34015. bottom: 33/1764
  34016. }
  34017. },
  34018. back: {
  34019. height: math.unit(16, "feet"),
  34020. weight: math.unit(610, "kg"),
  34021. name: "Back",
  34022. image: {
  34023. source: "./media/characters/huckle/back.svg",
  34024. extra: 1738/1651,
  34025. bottom: 37/1775
  34026. }
  34027. },
  34028. laughing: {
  34029. height: math.unit(3.75, "feet"),
  34030. name: "Laughing",
  34031. image: {
  34032. source: "./media/characters/huckle/laughing.svg"
  34033. }
  34034. },
  34035. angry: {
  34036. height: math.unit(4.15, "feet"),
  34037. name: "Angry",
  34038. image: {
  34039. source: "./media/characters/huckle/angry.svg"
  34040. }
  34041. },
  34042. },
  34043. [
  34044. {
  34045. name: "Normal",
  34046. height: math.unit(16, "feet"),
  34047. default: true
  34048. },
  34049. {
  34050. name: "Mini Macro",
  34051. height: math.unit(463, "feet")
  34052. },
  34053. {
  34054. name: "Macro",
  34055. height: math.unit(1680, "meters")
  34056. },
  34057. {
  34058. name: "Mega Macro",
  34059. height: math.unit(175, "km")
  34060. },
  34061. {
  34062. name: "Terra Macro",
  34063. height: math.unit(32, "gigameters")
  34064. },
  34065. {
  34066. name: "Multiverse+",
  34067. height: math.unit(2.56e23, "yottameters")
  34068. },
  34069. ]
  34070. ))
  34071. characterMakers.push(() => makeCharacter(
  34072. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34073. {
  34074. front: {
  34075. height: math.unit(6 + 9/12, "feet"),
  34076. weight: math.unit(280, "lb"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/candy/front.svg",
  34080. extra: 234/217,
  34081. bottom: 11/245
  34082. }
  34083. },
  34084. },
  34085. [
  34086. {
  34087. name: "Really Small",
  34088. height: math.unit(0.1, "nm")
  34089. },
  34090. {
  34091. name: "Micro",
  34092. height: math.unit(2, "inches")
  34093. },
  34094. {
  34095. name: "Normal",
  34096. height: math.unit(6 + 9/12, "feet"),
  34097. default: true
  34098. },
  34099. {
  34100. name: "Small Macro",
  34101. height: math.unit(69, "feet")
  34102. },
  34103. {
  34104. name: "Macro",
  34105. height: math.unit(160, "feet")
  34106. },
  34107. {
  34108. name: "Megamacro",
  34109. height: math.unit(22000, "miles")
  34110. },
  34111. {
  34112. name: "Gigamacro",
  34113. height: math.unit(50000, "miles")
  34114. },
  34115. ]
  34116. ))
  34117. characterMakers.push(() => makeCharacter(
  34118. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34119. {
  34120. front: {
  34121. height: math.unit(4, "feet"),
  34122. weight: math.unit(90, "lb"),
  34123. name: "Front",
  34124. image: {
  34125. source: "./media/characters/joey-mcdonald/front.svg",
  34126. extra: 1059/852,
  34127. bottom: 33/1092
  34128. }
  34129. },
  34130. back: {
  34131. height: math.unit(4, "feet"),
  34132. weight: math.unit(90, "lb"),
  34133. name: "Back",
  34134. image: {
  34135. source: "./media/characters/joey-mcdonald/back.svg",
  34136. extra: 1077/879,
  34137. bottom: 5/1082
  34138. }
  34139. },
  34140. },
  34141. [
  34142. {
  34143. name: "Normal",
  34144. height: math.unit(4, "feet"),
  34145. default: true
  34146. },
  34147. ]
  34148. ))
  34149. characterMakers.push(() => makeCharacter(
  34150. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34151. {
  34152. front: {
  34153. height: math.unit(12 + 6/12, "feet"),
  34154. name: "Front",
  34155. image: {
  34156. source: "./media/characters/kass-lockheed/front.svg",
  34157. extra: 354/343,
  34158. bottom: 9/363
  34159. }
  34160. },
  34161. back: {
  34162. height: math.unit(12 + 6/12, "feet"),
  34163. name: "Back",
  34164. image: {
  34165. source: "./media/characters/kass-lockheed/back.svg",
  34166. extra: 364/352,
  34167. bottom: 3/367
  34168. }
  34169. },
  34170. dick: {
  34171. height: math.unit(3.12, "feet"),
  34172. name: "Dick",
  34173. image: {
  34174. source: "./media/characters/kass-lockheed/dick.svg"
  34175. }
  34176. },
  34177. head: {
  34178. height: math.unit(2.6, "feet"),
  34179. name: "Head",
  34180. image: {
  34181. source: "./media/characters/kass-lockheed/head.svg"
  34182. }
  34183. },
  34184. bleh: {
  34185. height: math.unit(2.85, "feet"),
  34186. name: "Bleh",
  34187. image: {
  34188. source: "./media/characters/kass-lockheed/bleh.svg"
  34189. }
  34190. },
  34191. smug: {
  34192. height: math.unit(2.85, "feet"),
  34193. name: "Smug",
  34194. image: {
  34195. source: "./media/characters/kass-lockheed/smug.svg"
  34196. }
  34197. },
  34198. },
  34199. [
  34200. {
  34201. name: "Normal",
  34202. height: math.unit(12 + 6/12, "feet"),
  34203. default: true
  34204. },
  34205. ]
  34206. ))
  34207. characterMakers.push(() => makeCharacter(
  34208. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34209. {
  34210. front: {
  34211. height: math.unit(6 + 2/12, "feet"),
  34212. name: "Front",
  34213. image: {
  34214. source: "./media/characters/taylor/front.svg",
  34215. extra: 639/495,
  34216. bottom: 12/651
  34217. }
  34218. },
  34219. },
  34220. [
  34221. {
  34222. name: "Normal",
  34223. height: math.unit(6 + 2/12, "feet"),
  34224. default: true
  34225. },
  34226. {
  34227. name: "Big",
  34228. height: math.unit(15, "feet")
  34229. },
  34230. {
  34231. name: "Lorg",
  34232. height: math.unit(80, "feet")
  34233. },
  34234. {
  34235. name: "Too Lorg",
  34236. height: math.unit(120, "feet")
  34237. },
  34238. ]
  34239. ))
  34240. characterMakers.push(() => makeCharacter(
  34241. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34242. {
  34243. front: {
  34244. height: math.unit(15, "feet"),
  34245. name: "Front",
  34246. image: {
  34247. source: "./media/characters/kaizer/front.svg",
  34248. extra: 1612/1436,
  34249. bottom: 43/1655
  34250. }
  34251. },
  34252. },
  34253. [
  34254. {
  34255. name: "Normal",
  34256. height: math.unit(15, "feet"),
  34257. default: true
  34258. },
  34259. ]
  34260. ))
  34261. characterMakers.push(() => makeCharacter(
  34262. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34263. {
  34264. front: {
  34265. height: math.unit(2, "feet"),
  34266. weight: math.unit(30, "lb"),
  34267. name: "Front",
  34268. image: {
  34269. source: "./media/characters/sandy/front.svg",
  34270. extra: 1439/1307,
  34271. bottom: 194/1633
  34272. }
  34273. },
  34274. },
  34275. [
  34276. {
  34277. name: "Normal",
  34278. height: math.unit(2, "feet"),
  34279. default: true
  34280. },
  34281. ]
  34282. ))
  34283. characterMakers.push(() => makeCharacter(
  34284. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34285. {
  34286. front: {
  34287. height: math.unit(3, "feet"),
  34288. name: "Front",
  34289. image: {
  34290. source: "./media/characters/mellvi/front.svg",
  34291. extra: 1831/1630,
  34292. bottom: 58/1889
  34293. }
  34294. },
  34295. },
  34296. [
  34297. {
  34298. name: "Normal",
  34299. height: math.unit(3, "feet"),
  34300. default: true
  34301. },
  34302. ]
  34303. ))
  34304. characterMakers.push(() => makeCharacter(
  34305. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34306. {
  34307. front: {
  34308. height: math.unit(5 + 11/12, "feet"),
  34309. weight: math.unit(200, "lb"),
  34310. name: "Front",
  34311. image: {
  34312. source: "./media/characters/shirou/front.svg",
  34313. extra: 2491/2383,
  34314. bottom: 189/2680
  34315. }
  34316. },
  34317. back: {
  34318. height: math.unit(5 + 11/12, "feet"),
  34319. weight: math.unit(200, "lb"),
  34320. name: "Back",
  34321. image: {
  34322. source: "./media/characters/shirou/back.svg",
  34323. extra: 2554/2450,
  34324. bottom: 76/2630
  34325. }
  34326. },
  34327. },
  34328. [
  34329. {
  34330. name: "Normal",
  34331. height: math.unit(5 + 11/12, "feet"),
  34332. default: true
  34333. },
  34334. ]
  34335. ))
  34336. characterMakers.push(() => makeCharacter(
  34337. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34338. {
  34339. front: {
  34340. height: math.unit(6 + 3/12, "feet"),
  34341. weight: math.unit(177, "lb"),
  34342. name: "Front",
  34343. image: {
  34344. source: "./media/characters/noryu/front.svg",
  34345. extra: 973/885,
  34346. bottom: 10/983
  34347. }
  34348. },
  34349. },
  34350. [
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(6 + 3/12, "feet"),
  34354. default: true
  34355. },
  34356. ]
  34357. ))
  34358. characterMakers.push(() => makeCharacter(
  34359. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34360. {
  34361. front: {
  34362. height: math.unit(5 + 6/12, "feet"),
  34363. weight: math.unit(170, "lb"),
  34364. name: "Front",
  34365. image: {
  34366. source: "./media/characters/mevolas-rubenido/front.svg",
  34367. extra: 2109/1901,
  34368. bottom: 96/2205
  34369. }
  34370. },
  34371. },
  34372. [
  34373. {
  34374. name: "Normal",
  34375. height: math.unit(5 + 6/12, "feet"),
  34376. default: true
  34377. },
  34378. ]
  34379. ))
  34380. characterMakers.push(() => makeCharacter(
  34381. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34382. {
  34383. front: {
  34384. height: math.unit(100, "feet"),
  34385. name: "Front",
  34386. image: {
  34387. source: "./media/characters/dee/front.svg",
  34388. extra: 2153/2036,
  34389. bottom: 59/2212
  34390. }
  34391. },
  34392. back: {
  34393. height: math.unit(100, "feet"),
  34394. name: "Back",
  34395. image: {
  34396. source: "./media/characters/dee/back.svg",
  34397. extra: 2183/2058,
  34398. bottom: 75/2258
  34399. }
  34400. },
  34401. foot: {
  34402. height: math.unit(19.43, "feet"),
  34403. name: "Foot",
  34404. image: {
  34405. source: "./media/characters/dee/foot.svg"
  34406. }
  34407. },
  34408. hoof: {
  34409. height: math.unit(20.6, "feet"),
  34410. name: "Hoof",
  34411. image: {
  34412. source: "./media/characters/dee/hoof.svg"
  34413. }
  34414. },
  34415. },
  34416. [
  34417. {
  34418. name: "Macro",
  34419. height: math.unit(100, "feet"),
  34420. default: true
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(5 + 6/12, "feet"),
  34429. name: "Front",
  34430. image: {
  34431. source: "./media/characters/teh/front.svg",
  34432. extra: 1002/847,
  34433. bottom: 62/1064
  34434. }
  34435. },
  34436. },
  34437. [
  34438. {
  34439. name: "Normal",
  34440. height: math.unit(5 + 6/12, "feet"),
  34441. default: true
  34442. },
  34443. ]
  34444. ))
  34445. characterMakers.push(() => makeCharacter(
  34446. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34447. {
  34448. side: {
  34449. height: math.unit(6 + 1/12, "feet"),
  34450. weight: math.unit(204, "lb"),
  34451. name: "Side",
  34452. image: {
  34453. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34454. extra: 974/775,
  34455. bottom: 169/1143
  34456. }
  34457. },
  34458. sitting: {
  34459. height: math.unit(6 + 2/12, "feet"),
  34460. weight: math.unit(204, "lb"),
  34461. name: "Sitting",
  34462. image: {
  34463. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34464. extra: 1175/964,
  34465. bottom: 378/1553
  34466. }
  34467. },
  34468. },
  34469. [
  34470. {
  34471. name: "Normal",
  34472. height: math.unit(6 + 1/12, "feet"),
  34473. default: true
  34474. },
  34475. ]
  34476. ))
  34477. characterMakers.push(() => makeCharacter(
  34478. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34479. {
  34480. front: {
  34481. height: math.unit(6, "inches"),
  34482. name: "Front",
  34483. image: {
  34484. source: "./media/characters/tululi/front.svg",
  34485. extra: 1997/1876,
  34486. bottom: 20/2017
  34487. }
  34488. },
  34489. },
  34490. [
  34491. {
  34492. name: "Normal",
  34493. height: math.unit(6, "inches"),
  34494. default: true
  34495. },
  34496. ]
  34497. ))
  34498. characterMakers.push(() => makeCharacter(
  34499. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34500. {
  34501. front: {
  34502. height: math.unit(4 + 1/12, "feet"),
  34503. name: "Front",
  34504. image: {
  34505. source: "./media/characters/star/front.svg",
  34506. extra: 1493/1189,
  34507. bottom: 48/1541
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Normal",
  34514. height: math.unit(4 + 1/12, "feet"),
  34515. default: true
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34521. {
  34522. front: {
  34523. height: math.unit(6 + 3/12, "feet"),
  34524. name: "Front",
  34525. image: {
  34526. source: "./media/characters/comet/front.svg",
  34527. extra: 1681/1462,
  34528. bottom: 26/1707
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(6 + 3/12, "feet"),
  34536. default: true
  34537. },
  34538. ]
  34539. ))
  34540. characterMakers.push(() => makeCharacter(
  34541. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34542. {
  34543. front: {
  34544. height: math.unit(950, "feet"),
  34545. name: "Front",
  34546. image: {
  34547. source: "./media/characters/vortex/front.svg",
  34548. extra: 1497/1434,
  34549. bottom: 56/1553
  34550. }
  34551. },
  34552. maw: {
  34553. height: math.unit(285, "feet"),
  34554. name: "Maw",
  34555. image: {
  34556. source: "./media/characters/vortex/maw.svg"
  34557. }
  34558. },
  34559. },
  34560. [
  34561. {
  34562. name: "Macro",
  34563. height: math.unit(950, "feet"),
  34564. default: true
  34565. },
  34566. ]
  34567. ))
  34568. characterMakers.push(() => makeCharacter(
  34569. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34570. {
  34571. front: {
  34572. height: math.unit(600, "feet"),
  34573. weight: math.unit(0.02, "grams"),
  34574. name: "Front",
  34575. image: {
  34576. source: "./media/characters/doodle/front.svg",
  34577. extra: 1578/1413,
  34578. bottom: 37/1615
  34579. }
  34580. },
  34581. },
  34582. [
  34583. {
  34584. name: "Macro",
  34585. height: math.unit(600, "feet"),
  34586. default: true
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(6 + 6/12, "feet"),
  34595. name: "Front",
  34596. image: {
  34597. source: "./media/characters/jai/front.svg",
  34598. extra: 1645/1534,
  34599. bottom: 115/1760
  34600. }
  34601. },
  34602. },
  34603. [
  34604. {
  34605. name: "Normal",
  34606. height: math.unit(6 + 6/12, "feet"),
  34607. default: true
  34608. },
  34609. ]
  34610. ))
  34611. characterMakers.push(() => makeCharacter(
  34612. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34613. {
  34614. front: {
  34615. height: math.unit(6 + 8/12, "feet"),
  34616. name: "Front",
  34617. image: {
  34618. source: "./media/characters/pixel/front.svg",
  34619. extra: 1900/1735,
  34620. bottom: 63/1963
  34621. }
  34622. },
  34623. },
  34624. [
  34625. {
  34626. name: "Normal",
  34627. height: math.unit(6 + 8/12, "feet"),
  34628. default: true
  34629. },
  34630. ]
  34631. ))
  34632. characterMakers.push(() => makeCharacter(
  34633. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34634. {
  34635. front: {
  34636. height: math.unit(4 + 11/12, "feet"),
  34637. weight: math.unit(111, "lb"),
  34638. name: "Front",
  34639. image: {
  34640. source: "./media/characters/rhett/front.svg",
  34641. extra: 1682/1586,
  34642. bottom: 92/1774
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Mini",
  34649. height: math.unit(1 + 1/12, "feet")
  34650. },
  34651. {
  34652. name: "Normal",
  34653. height: math.unit(4 + 11/12, "feet"),
  34654. default: true
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(3 + 3/12, "feet"),
  34663. name: "Front",
  34664. image: {
  34665. source: "./media/characters/penny/front.svg",
  34666. extra: 1406/1311,
  34667. bottom: 26/1432
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Normal",
  34674. height: math.unit(3 + 3/12, "feet"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(4 + 11/12, "feet"),
  34684. name: "Front",
  34685. image: {
  34686. source: "./media/characters/monty/front.svg",
  34687. extra: 1479/1209,
  34688. bottom: 0/1479
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Normal",
  34695. height: math.unit(4 + 11/12, "feet"),
  34696. default: true
  34697. },
  34698. ]
  34699. ))
  34700. characterMakers.push(() => makeCharacter(
  34701. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34702. {
  34703. front: {
  34704. height: math.unit(8 + 4/12, "feet"),
  34705. name: "Front",
  34706. image: {
  34707. source: "./media/characters/sterling/front.svg",
  34708. extra: 1417/1234,
  34709. bottom: 60/1477
  34710. }
  34711. },
  34712. },
  34713. [
  34714. {
  34715. name: "Normal",
  34716. height: math.unit(8 + 4/12, "feet"),
  34717. default: true
  34718. },
  34719. ]
  34720. ))
  34721. characterMakers.push(() => makeCharacter(
  34722. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34723. {
  34724. front: {
  34725. height: math.unit(15, "feet"),
  34726. name: "Front",
  34727. image: {
  34728. source: "./media/characters/marble/front.svg",
  34729. extra: 973/937,
  34730. bottom: 32/1005
  34731. }
  34732. },
  34733. },
  34734. [
  34735. {
  34736. name: "Normal",
  34737. height: math.unit(15, "feet"),
  34738. default: true
  34739. },
  34740. ]
  34741. ))
  34742. characterMakers.push(() => makeCharacter(
  34743. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34744. {
  34745. front: {
  34746. height: math.unit(3, "inches"),
  34747. name: "Front",
  34748. image: {
  34749. source: "./media/characters/powder/front.svg",
  34750. extra: 1504/1334,
  34751. bottom: 518/2022
  34752. }
  34753. },
  34754. },
  34755. [
  34756. {
  34757. name: "Normal",
  34758. height: math.unit(3, "inches"),
  34759. default: true
  34760. },
  34761. ]
  34762. ))
  34763. characterMakers.push(() => makeCharacter(
  34764. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34765. {
  34766. front: {
  34767. height: math.unit(4 + 5/12, "feet"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/joey-raccoon/front.svg",
  34771. extra: 1273/1197,
  34772. bottom: 0/1273
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Normal",
  34779. height: math.unit(4 + 5/12, "feet"),
  34780. default: true
  34781. },
  34782. ]
  34783. ))
  34784. characterMakers.push(() => makeCharacter(
  34785. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34786. {
  34787. front: {
  34788. height: math.unit(8 + 4/12, "feet"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/vick/front.svg",
  34792. extra: 2187/2118,
  34793. bottom: 47/2234
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Normal",
  34800. height: math.unit(8 + 4/12, "feet"),
  34801. default: true
  34802. },
  34803. ]
  34804. ))
  34805. characterMakers.push(() => makeCharacter(
  34806. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34807. {
  34808. front: {
  34809. height: math.unit(5 + 5/12, "feet"),
  34810. name: "Front",
  34811. image: {
  34812. source: "./media/characters/mitsy/front.svg",
  34813. extra: 1842/1695,
  34814. bottom: 0/1842
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Normal",
  34821. height: math.unit(5 + 5/12, "feet"),
  34822. default: true
  34823. },
  34824. ]
  34825. ))
  34826. characterMakers.push(() => makeCharacter(
  34827. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34828. {
  34829. front: {
  34830. height: math.unit(6 + 3/12, "feet"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/silvy/front.svg",
  34834. extra: 1995/1836,
  34835. bottom: 225/2220
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(6 + 3/12, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34849. {
  34850. front: {
  34851. height: math.unit(3 + 8/12, "feet"),
  34852. name: "Front",
  34853. image: {
  34854. source: "./media/characters/rodney/front.svg",
  34855. extra: 1956/1747,
  34856. bottom: 31/1987
  34857. }
  34858. },
  34859. frontDressed: {
  34860. height: math.unit(2.9, "feet"),
  34861. name: "Front (Dressed)",
  34862. image: {
  34863. source: "./media/characters/rodney/front-dressed.svg",
  34864. extra: 1382/1241,
  34865. bottom: 385/1767
  34866. }
  34867. },
  34868. },
  34869. [
  34870. {
  34871. name: "Normal",
  34872. height: math.unit(3 + 8/12, "feet"),
  34873. default: true
  34874. },
  34875. ]
  34876. ))
  34877. characterMakers.push(() => makeCharacter(
  34878. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34879. {
  34880. front: {
  34881. height: math.unit(5 + 9/12, "feet"),
  34882. weight: math.unit(194, "lbs"),
  34883. name: "Front",
  34884. image: {
  34885. source: "./media/characters/zakail-sudekai/front.svg",
  34886. extra: 2696/2533,
  34887. bottom: 248/2944
  34888. }
  34889. },
  34890. maw: {
  34891. height: math.unit(1.35, "feet"),
  34892. name: "Maw",
  34893. image: {
  34894. source: "./media/characters/zakail-sudekai/maw.svg"
  34895. }
  34896. },
  34897. },
  34898. [
  34899. {
  34900. name: "Normal",
  34901. height: math.unit(5 + 9/12, "feet"),
  34902. default: true
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(8 + 4/12, "feet"),
  34911. weight: math.unit(1200, "lb"),
  34912. name: "Front",
  34913. image: {
  34914. source: "./media/characters/eleanor/front.svg",
  34915. extra: 1226/1192,
  34916. bottom: 52/1278
  34917. }
  34918. },
  34919. back: {
  34920. height: math.unit(8 + 4/12, "feet"),
  34921. weight: math.unit(1200, "lb"),
  34922. name: "Back",
  34923. image: {
  34924. source: "./media/characters/eleanor/back.svg",
  34925. extra: 1242/1184,
  34926. bottom: 60/1302
  34927. }
  34928. },
  34929. head: {
  34930. height: math.unit(2.62, "feet"),
  34931. name: "Head",
  34932. image: {
  34933. source: "./media/characters/eleanor/head.svg"
  34934. }
  34935. },
  34936. },
  34937. [
  34938. {
  34939. name: "Normal",
  34940. height: math.unit(8 + 4/12, "feet"),
  34941. default: true
  34942. },
  34943. ]
  34944. ))
  34945. characterMakers.push(() => makeCharacter(
  34946. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  34947. {
  34948. front: {
  34949. height: math.unit(8 + 4/12, "feet"),
  34950. weight: math.unit(750, "lb"),
  34951. name: "Front",
  34952. image: {
  34953. source: "./media/characters/tanya/front.svg",
  34954. extra: 1749/1615,
  34955. bottom: 33/1782
  34956. }
  34957. },
  34958. },
  34959. [
  34960. {
  34961. name: "Normal",
  34962. height: math.unit(8 + 4/12, "feet"),
  34963. default: true
  34964. },
  34965. ]
  34966. ))
  34967. characterMakers.push(() => makeCharacter(
  34968. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  34969. {
  34970. front: {
  34971. height: math.unit(5, "feet"),
  34972. weight: math.unit(225, "lb"),
  34973. name: "Front",
  34974. image: {
  34975. source: "./media/characters/cindy/front.svg",
  34976. extra: 1320/1250,
  34977. bottom: 42/1362
  34978. }
  34979. },
  34980. frontDressed: {
  34981. height: math.unit(5, "feet"),
  34982. weight: math.unit(225, "lb"),
  34983. name: "Front (Dressed)",
  34984. image: {
  34985. source: "./media/characters/cindy/front-dressed.svg",
  34986. extra: 1320/1250,
  34987. bottom: 42/1362
  34988. }
  34989. },
  34990. back: {
  34991. height: math.unit(5, "feet"),
  34992. weight: math.unit(225, "lb"),
  34993. name: "Back",
  34994. image: {
  34995. source: "./media/characters/cindy/back.svg",
  34996. extra: 1384/1346,
  34997. bottom: 14/1398
  34998. }
  34999. },
  35000. },
  35001. [
  35002. {
  35003. name: "Normal",
  35004. height: math.unit(5, "feet"),
  35005. default: true
  35006. },
  35007. ]
  35008. ))
  35009. characterMakers.push(() => makeCharacter(
  35010. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35011. {
  35012. front: {
  35013. height: math.unit(6 + 9/12, "feet"),
  35014. weight: math.unit(440, "lb"),
  35015. name: "Front",
  35016. image: {
  35017. source: "./media/characters/wilbur-owen/front.svg",
  35018. extra: 1575/1448,
  35019. bottom: 72/1647
  35020. }
  35021. },
  35022. back: {
  35023. height: math.unit(6 + 9/12, "feet"),
  35024. weight: math.unit(440, "lb"),
  35025. name: "Back",
  35026. image: {
  35027. source: "./media/characters/wilbur-owen/back.svg",
  35028. extra: 1578/1445,
  35029. bottom: 36/1614
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(6 + 9/12, "feet"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. //characters
  35042. function makeCharacters() {
  35043. const results = [];
  35044. characterMakers.forEach(character => {
  35045. results.push(character());
  35046. });
  35047. return results;
  35048. }