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

32263 строки
809 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. "foxsky": {
  1412. name: "Foxsky",
  1413. parents: ["fox", "husky"]
  1414. },
  1415. "umbreon": {
  1416. name: "Umbreon",
  1417. parents: ["eeveelution"]
  1418. },
  1419. "slime-dragon": {
  1420. name: "Slime Dragon",
  1421. parents: ["dragon"]
  1422. },
  1423. "enderman": {
  1424. name: "Enderman",
  1425. parents: ["monster"]
  1426. },
  1427. "gremlin": {
  1428. name: "Gremlin",
  1429. parents: ["monster"]
  1430. },
  1431. "dragonsune": {
  1432. name: "Dragonsune",
  1433. parents: ["dragon", "kitsune"]
  1434. },
  1435. "ghost": {
  1436. name: "Ghost",
  1437. parents: ["monster"]
  1438. },
  1439. "false-vampire-bat": {
  1440. name: "False Vampire Bat",
  1441. parents: ["bat"]
  1442. },
  1443. }
  1444. //species
  1445. function getSpeciesInfo(speciesList) {
  1446. let result = new Set();
  1447. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1448. result.add(entry)
  1449. });
  1450. return Array.from(result);
  1451. };
  1452. function getSpeciesInfoHelper(species) {
  1453. if (!speciesData[species]) {
  1454. console.warn(species + " doesn't exist");
  1455. return [];
  1456. }
  1457. if (speciesData[species].parents) {
  1458. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1459. } else {
  1460. return [species];
  1461. }
  1462. }
  1463. characterMakers.push(() => makeCharacter(
  1464. {
  1465. name: "Fen",
  1466. species: ["crux"],
  1467. description: {
  1468. title: "Bio",
  1469. text: "Very furry. Sheds on everything."
  1470. },
  1471. tags: [
  1472. "anthro",
  1473. "goo"
  1474. ]
  1475. },
  1476. {
  1477. back: {
  1478. height: math.unit(2.2428, "meter"),
  1479. weight: math.unit(124.738, "kg"),
  1480. name: "Back",
  1481. image: {
  1482. source: "./media/characters/fen/back.svg",
  1483. extra: 2024 / 1867,
  1484. bottom: 13 / 2037
  1485. },
  1486. info: {
  1487. description: {
  1488. mode: "append",
  1489. text: "\n\nHe is not currently looking at you."
  1490. }
  1491. }
  1492. },
  1493. full: {
  1494. height: math.unit(1.34, "meter"),
  1495. weight: math.unit(225, "kg"),
  1496. name: "Full",
  1497. image: {
  1498. source: "./media/characters/fen/full.svg"
  1499. },
  1500. info: {
  1501. description: {
  1502. mode: "append",
  1503. text: "\n\nMunch."
  1504. }
  1505. }
  1506. },
  1507. kneeling: {
  1508. height: math.unit(5.4, "feet"),
  1509. weight: math.unit(124.738, "kg"),
  1510. name: "Kneeling",
  1511. image: {
  1512. source: "./media/characters/fen/kneeling.svg",
  1513. extra: 563 / 507
  1514. }
  1515. },
  1516. goo: {
  1517. height: math.unit(2.8, "feet"),
  1518. weight: math.unit(125, "kg"),
  1519. capacity: math.unit(1, "people"),
  1520. name: "Goo",
  1521. image: {
  1522. source: "./media/characters/fen/goo.svg",
  1523. bottom: 116 / 613
  1524. }
  1525. },
  1526. lounging: {
  1527. height: math.unit(6.5, "feet"),
  1528. weight: math.unit(125, "kg"),
  1529. name: "Lounging",
  1530. image: {
  1531. source: "./media/characters/fen/lounging.svg"
  1532. }
  1533. },
  1534. },
  1535. [
  1536. {
  1537. name: "Normal",
  1538. height: math.unit(2.2428, "meter")
  1539. },
  1540. {
  1541. name: "Big",
  1542. height: math.unit(12, "feet")
  1543. },
  1544. {
  1545. name: "Minimacro",
  1546. height: math.unit(40, "feet"),
  1547. default: true,
  1548. info: {
  1549. description: {
  1550. mode: "append",
  1551. text: "\n\nTOO DAMN BIG"
  1552. }
  1553. }
  1554. },
  1555. {
  1556. name: "Macro",
  1557. height: math.unit(100, "feet"),
  1558. info: {
  1559. description: {
  1560. mode: "append",
  1561. text: "\n\nTOO DAMN BIG"
  1562. }
  1563. }
  1564. },
  1565. {
  1566. name: "Macro+",
  1567. height: math.unit(300, "feet")
  1568. },
  1569. {
  1570. name: "Megamacro",
  1571. height: math.unit(2, "miles")
  1572. }
  1573. ]
  1574. ))
  1575. characterMakers.push(() => makeCharacter(
  1576. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1577. {
  1578. front: {
  1579. height: math.unit(183, "cm"),
  1580. weight: math.unit(80, "kg"),
  1581. name: "Front",
  1582. image: {
  1583. source: "./media/characters/sofia-fluttertail/front.svg",
  1584. bottom: 0.01,
  1585. extra: 2154 / 2081
  1586. }
  1587. },
  1588. frontAlt: {
  1589. height: math.unit(183, "cm"),
  1590. weight: math.unit(80, "kg"),
  1591. name: "Front (alt)",
  1592. image: {
  1593. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1594. }
  1595. },
  1596. back: {
  1597. height: math.unit(183, "cm"),
  1598. weight: math.unit(80, "kg"),
  1599. name: "Back",
  1600. image: {
  1601. source: "./media/characters/sofia-fluttertail/back.svg"
  1602. }
  1603. },
  1604. kneeling: {
  1605. height: math.unit(125, "cm"),
  1606. weight: math.unit(80, "kg"),
  1607. name: "Kneeling",
  1608. image: {
  1609. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1610. extra: 1033 / 977,
  1611. bottom: 23.7 / 1057
  1612. }
  1613. },
  1614. maw: {
  1615. height: math.unit(183 / 5, "cm"),
  1616. name: "Maw",
  1617. image: {
  1618. source: "./media/characters/sofia-fluttertail/maw.svg"
  1619. }
  1620. },
  1621. mawcloseup: {
  1622. height: math.unit(183 / 5 * 0.41, "cm"),
  1623. name: "Maw (Closeup)",
  1624. image: {
  1625. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1626. }
  1627. },
  1628. paws: {
  1629. height: math.unit(1.17, "feet"),
  1630. name: "Paws",
  1631. image: {
  1632. source: "./media/characters/sofia-fluttertail/paws.svg",
  1633. extra: 851 / 851,
  1634. bottom: 17 / 868
  1635. }
  1636. },
  1637. },
  1638. [
  1639. {
  1640. name: "Normal",
  1641. height: math.unit(1.83, "meter")
  1642. },
  1643. {
  1644. name: "Size Thief",
  1645. height: math.unit(18, "feet")
  1646. },
  1647. {
  1648. name: "50 Foot Collie",
  1649. height: math.unit(50, "feet")
  1650. },
  1651. {
  1652. name: "Macro",
  1653. height: math.unit(96, "feet"),
  1654. default: true
  1655. },
  1656. {
  1657. name: "Megamerger",
  1658. height: math.unit(650, "feet")
  1659. },
  1660. ]
  1661. ))
  1662. characterMakers.push(() => makeCharacter(
  1663. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1664. {
  1665. front: {
  1666. height: math.unit(7, "feet"),
  1667. weight: math.unit(100, "kg"),
  1668. name: "Front",
  1669. image: {
  1670. source: "./media/characters/march/front.svg",
  1671. extra: 1,
  1672. bottom: 0.015
  1673. }
  1674. },
  1675. foot: {
  1676. height: math.unit(0.9, "feet"),
  1677. name: "Foot",
  1678. image: {
  1679. source: "./media/characters/march/foot.svg"
  1680. }
  1681. },
  1682. },
  1683. [
  1684. {
  1685. name: "Normal",
  1686. height: math.unit(7.9, "feet")
  1687. },
  1688. {
  1689. name: "Macro",
  1690. height: math.unit(220, "meters")
  1691. },
  1692. {
  1693. name: "Megamacro",
  1694. height: math.unit(2.98, "km"),
  1695. default: true
  1696. },
  1697. {
  1698. name: "Gigamacro",
  1699. height: math.unit(15963, "km")
  1700. },
  1701. {
  1702. name: "Teramacro",
  1703. height: math.unit(2980000000, "km")
  1704. },
  1705. {
  1706. name: "Examacro",
  1707. height: math.unit(250, "parsecs")
  1708. },
  1709. ]
  1710. ))
  1711. characterMakers.push(() => makeCharacter(
  1712. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1713. {
  1714. front: {
  1715. height: math.unit(6, "feet"),
  1716. weight: math.unit(60, "kg"),
  1717. name: "Front",
  1718. image: {
  1719. source: "./media/characters/noir/front.svg",
  1720. extra: 1,
  1721. bottom: 0.032
  1722. }
  1723. },
  1724. },
  1725. [
  1726. {
  1727. name: "Normal",
  1728. height: math.unit(6.6, "feet")
  1729. },
  1730. {
  1731. name: "Macro",
  1732. height: math.unit(500, "feet")
  1733. },
  1734. {
  1735. name: "Megamacro",
  1736. height: math.unit(2.5, "km"),
  1737. default: true
  1738. },
  1739. {
  1740. name: "Gigamacro",
  1741. height: math.unit(22500, "km")
  1742. },
  1743. {
  1744. name: "Teramacro",
  1745. height: math.unit(2500000000, "km")
  1746. },
  1747. {
  1748. name: "Examacro",
  1749. height: math.unit(200, "parsecs")
  1750. },
  1751. ]
  1752. ))
  1753. characterMakers.push(() => makeCharacter(
  1754. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1755. {
  1756. front: {
  1757. height: math.unit(7, "feet"),
  1758. weight: math.unit(100, "kg"),
  1759. name: "Front",
  1760. image: {
  1761. source: "./media/characters/okuri/front.svg",
  1762. extra: 1,
  1763. bottom: 0.037
  1764. }
  1765. },
  1766. back: {
  1767. height: math.unit(7, "feet"),
  1768. weight: math.unit(100, "kg"),
  1769. name: "Back",
  1770. image: {
  1771. source: "./media/characters/okuri/back.svg",
  1772. extra: 1,
  1773. bottom: 0.007
  1774. }
  1775. },
  1776. },
  1777. [
  1778. {
  1779. name: "Megamacro",
  1780. height: math.unit(100, "miles"),
  1781. default: true
  1782. },
  1783. ]
  1784. ))
  1785. characterMakers.push(() => makeCharacter(
  1786. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1787. {
  1788. front: {
  1789. height: math.unit(7, "feet"),
  1790. weight: math.unit(100, "kg"),
  1791. name: "Front",
  1792. image: {
  1793. source: "./media/characters/manny/front.svg",
  1794. extra: 1,
  1795. bottom: 0.06
  1796. }
  1797. },
  1798. back: {
  1799. height: math.unit(7, "feet"),
  1800. weight: math.unit(100, "kg"),
  1801. name: "Back",
  1802. image: {
  1803. source: "./media/characters/manny/back.svg",
  1804. extra: 1,
  1805. bottom: 0.014
  1806. }
  1807. },
  1808. },
  1809. [
  1810. {
  1811. name: "Normal",
  1812. height: math.unit(7, "feet"),
  1813. },
  1814. {
  1815. name: "Macro",
  1816. height: math.unit(78, "feet"),
  1817. default: true
  1818. },
  1819. {
  1820. name: "Macro+",
  1821. height: math.unit(300, "meters")
  1822. },
  1823. {
  1824. name: "Macro++",
  1825. height: math.unit(2400, "meters")
  1826. },
  1827. {
  1828. name: "Megamacro",
  1829. height: math.unit(5167, "meters")
  1830. },
  1831. {
  1832. name: "Gigamacro",
  1833. height: math.unit(41769, "miles")
  1834. },
  1835. ]
  1836. ))
  1837. characterMakers.push(() => makeCharacter(
  1838. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1839. {
  1840. front: {
  1841. height: math.unit(7, "feet"),
  1842. weight: math.unit(100, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/adake/front-1.svg"
  1846. }
  1847. },
  1848. frontAlt: {
  1849. height: math.unit(7, "feet"),
  1850. weight: math.unit(100, "kg"),
  1851. name: "Front (Alt)",
  1852. image: {
  1853. source: "./media/characters/adake/front-2.svg",
  1854. extra: 1,
  1855. bottom: 0.01
  1856. }
  1857. },
  1858. back: {
  1859. height: math.unit(7, "feet"),
  1860. weight: math.unit(100, "kg"),
  1861. name: "Back",
  1862. image: {
  1863. source: "./media/characters/adake/back.svg",
  1864. }
  1865. },
  1866. kneel: {
  1867. height: math.unit(5.385, "feet"),
  1868. weight: math.unit(100, "kg"),
  1869. name: "Kneeling",
  1870. image: {
  1871. source: "./media/characters/adake/kneel.svg",
  1872. bottom: 0.052
  1873. }
  1874. },
  1875. },
  1876. [
  1877. {
  1878. name: "Normal",
  1879. height: math.unit(7, "feet"),
  1880. },
  1881. {
  1882. name: "Macro",
  1883. height: math.unit(78, "feet"),
  1884. default: true
  1885. },
  1886. {
  1887. name: "Macro+",
  1888. height: math.unit(300, "meters")
  1889. },
  1890. {
  1891. name: "Macro++",
  1892. height: math.unit(2400, "meters")
  1893. },
  1894. {
  1895. name: "Megamacro",
  1896. height: math.unit(5167, "meters")
  1897. },
  1898. {
  1899. name: "Gigamacro",
  1900. height: math.unit(41769, "miles")
  1901. },
  1902. ]
  1903. ))
  1904. characterMakers.push(() => makeCharacter(
  1905. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1906. {
  1907. front: {
  1908. height: math.unit(1.65, "meters"),
  1909. weight: math.unit(50, "kg"),
  1910. name: "Front",
  1911. image: {
  1912. source: "./media/characters/elijah/front.svg",
  1913. extra: 858 / 830,
  1914. bottom: 95.5 / 953.8559
  1915. }
  1916. },
  1917. back: {
  1918. height: math.unit(1.65, "meters"),
  1919. weight: math.unit(50, "kg"),
  1920. name: "Back",
  1921. image: {
  1922. source: "./media/characters/elijah/back.svg",
  1923. extra: 895 / 850,
  1924. bottom: 5.3 / 897.956
  1925. }
  1926. },
  1927. frontNsfw: {
  1928. height: math.unit(1.65, "meters"),
  1929. weight: math.unit(50, "kg"),
  1930. name: "Front (NSFW)",
  1931. image: {
  1932. source: "./media/characters/elijah/front-nsfw.svg",
  1933. extra: 858 / 830,
  1934. bottom: 95.5 / 953.8559
  1935. }
  1936. },
  1937. backNsfw: {
  1938. height: math.unit(1.65, "meters"),
  1939. weight: math.unit(50, "kg"),
  1940. name: "Back (NSFW)",
  1941. image: {
  1942. source: "./media/characters/elijah/back-nsfw.svg",
  1943. extra: 895 / 850,
  1944. bottom: 5.3 / 897.956
  1945. }
  1946. },
  1947. dick: {
  1948. height: math.unit(1, "feet"),
  1949. name: "Dick",
  1950. image: {
  1951. source: "./media/characters/elijah/dick.svg"
  1952. }
  1953. },
  1954. beakOpen: {
  1955. height: math.unit(1.25, "feet"),
  1956. name: "Beak (Open)",
  1957. image: {
  1958. source: "./media/characters/elijah/beak-open.svg"
  1959. }
  1960. },
  1961. beakShut: {
  1962. height: math.unit(1.25, "feet"),
  1963. name: "Beak (Shut)",
  1964. image: {
  1965. source: "./media/characters/elijah/beak-shut.svg"
  1966. }
  1967. },
  1968. footFlexing: {
  1969. height: math.unit(1.61, "feet"),
  1970. name: "Foot (Flexing)",
  1971. image: {
  1972. source: "./media/characters/elijah/foot-flexing.svg"
  1973. }
  1974. },
  1975. footStepping: {
  1976. height: math.unit(1.44, "feet"),
  1977. name: "Foot (Stepping)",
  1978. image: {
  1979. source: "./media/characters/elijah/foot-stepping.svg"
  1980. }
  1981. },
  1982. plantigradeLeg: {
  1983. height: math.unit(2.34, "feet"),
  1984. name: "Plantigrade Leg",
  1985. image: {
  1986. source: "./media/characters/elijah/plantigrade-leg.svg"
  1987. }
  1988. },
  1989. plantigradeFootLeft: {
  1990. height: math.unit(0.9, "feet"),
  1991. name: "Plantigrade Foot (Left)",
  1992. image: {
  1993. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1994. }
  1995. },
  1996. plantigradeFootRight: {
  1997. height: math.unit(0.9, "feet"),
  1998. name: "Plantigrade Foot (Right)",
  1999. image: {
  2000. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2001. }
  2002. },
  2003. },
  2004. [
  2005. {
  2006. name: "Normal",
  2007. height: math.unit(1.65, "meters")
  2008. },
  2009. {
  2010. name: "Macro",
  2011. height: math.unit(55, "meters"),
  2012. default: true
  2013. },
  2014. {
  2015. name: "Macro+",
  2016. height: math.unit(105, "meters")
  2017. },
  2018. ]
  2019. ))
  2020. characterMakers.push(() => makeCharacter(
  2021. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2022. {
  2023. front: {
  2024. height: math.unit(11, "feet"),
  2025. weight: math.unit(80, "kg"),
  2026. name: "Front",
  2027. image: {
  2028. source: "./media/characters/rai/front.svg",
  2029. extra: 1,
  2030. bottom: 0.03
  2031. }
  2032. },
  2033. side: {
  2034. height: math.unit(11, "feet"),
  2035. weight: math.unit(80, "kg"),
  2036. name: "Side",
  2037. image: {
  2038. source: "./media/characters/rai/side.svg"
  2039. }
  2040. },
  2041. back: {
  2042. height: math.unit(11, "feet"),
  2043. weight: math.unit(80, "lb"),
  2044. name: "Back",
  2045. image: {
  2046. source: "./media/characters/rai/back.svg",
  2047. extra: 1,
  2048. bottom: 0.01
  2049. }
  2050. },
  2051. feral: {
  2052. height: math.unit(11, "feet"),
  2053. weight: math.unit(800, "lb"),
  2054. name: "Feral",
  2055. image: {
  2056. source: "./media/characters/rai/feral.svg",
  2057. extra: 1050 / 659,
  2058. bottom: 0.07
  2059. }
  2060. },
  2061. dragon: {
  2062. height: math.unit(23, "feet"),
  2063. weight: math.unit(50000, "lb"),
  2064. name: "Dragon",
  2065. image: {
  2066. source: "./media/characters/rai/dragon.svg",
  2067. extra: 2498 / 2030,
  2068. bottom: 85.2 / 2584
  2069. }
  2070. },
  2071. maw: {
  2072. height: math.unit(6 / 3.81416, "feet"),
  2073. name: "Maw",
  2074. image: {
  2075. source: "./media/characters/rai/maw.svg"
  2076. }
  2077. },
  2078. },
  2079. [
  2080. {
  2081. name: "Normal",
  2082. height: math.unit(11, "feet")
  2083. },
  2084. {
  2085. name: "Macro",
  2086. height: math.unit(302, "feet"),
  2087. default: true
  2088. },
  2089. ]
  2090. ))
  2091. characterMakers.push(() => makeCharacter(
  2092. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2093. {
  2094. frontDressed: {
  2095. height: math.unit(216, "feet"),
  2096. weight: math.unit(7000000, "lb"),
  2097. name: "Front (Dressed)",
  2098. image: {
  2099. source: "./media/characters/jazzy/front-dressed.svg",
  2100. extra: 2738 / 2651,
  2101. bottom: 41.8 / 2786
  2102. }
  2103. },
  2104. backDressed: {
  2105. height: math.unit(216, "feet"),
  2106. weight: math.unit(7000000, "lb"),
  2107. name: "Back (Dressed)",
  2108. image: {
  2109. source: "./media/characters/jazzy/back-dressed.svg",
  2110. extra: 2775 / 2673,
  2111. bottom: 36.8 / 2817
  2112. }
  2113. },
  2114. front: {
  2115. height: math.unit(216, "feet"),
  2116. weight: math.unit(7000000, "lb"),
  2117. name: "Front",
  2118. image: {
  2119. source: "./media/characters/jazzy/front.svg",
  2120. extra: 2738 / 2651,
  2121. bottom: 41.8 / 2786
  2122. }
  2123. },
  2124. back: {
  2125. height: math.unit(216, "feet"),
  2126. weight: math.unit(7000000, "lb"),
  2127. name: "Back",
  2128. image: {
  2129. source: "./media/characters/jazzy/back.svg",
  2130. extra: 2775 / 2673,
  2131. bottom: 36.8 / 2817
  2132. }
  2133. },
  2134. maw: {
  2135. height: math.unit(20, "feet"),
  2136. name: "Maw",
  2137. image: {
  2138. source: "./media/characters/jazzy/maw.svg"
  2139. }
  2140. },
  2141. paws: {
  2142. height: math.unit(27.5, "feet"),
  2143. name: "Paws",
  2144. image: {
  2145. source: "./media/characters/jazzy/paws.svg"
  2146. }
  2147. },
  2148. eye: {
  2149. height: math.unit(4.4, "feet"),
  2150. name: "Eye",
  2151. image: {
  2152. source: "./media/characters/jazzy/eye.svg"
  2153. }
  2154. },
  2155. droneOffense: {
  2156. height: math.unit(9.5, "inches"),
  2157. name: "Drone (Offense)",
  2158. image: {
  2159. source: "./media/characters/jazzy/drone-offense.svg"
  2160. }
  2161. },
  2162. droneRecon: {
  2163. height: math.unit(9.5, "inches"),
  2164. name: "Drone (Recon)",
  2165. image: {
  2166. source: "./media/characters/jazzy/drone-recon.svg"
  2167. }
  2168. },
  2169. droneDefense: {
  2170. height: math.unit(9.5, "inches"),
  2171. name: "Drone (Defense)",
  2172. image: {
  2173. source: "./media/characters/jazzy/drone-defense.svg"
  2174. }
  2175. },
  2176. },
  2177. [
  2178. {
  2179. name: "Macro",
  2180. height: math.unit(216, "feet"),
  2181. default: true
  2182. },
  2183. ]
  2184. ))
  2185. characterMakers.push(() => makeCharacter(
  2186. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2187. {
  2188. front: {
  2189. height: math.unit(7, "feet"),
  2190. weight: math.unit(80, "kg"),
  2191. name: "Front",
  2192. image: {
  2193. source: "./media/characters/flamm/front.svg",
  2194. extra: 1794 / 1677,
  2195. bottom: 31.7 / 1828.5
  2196. }
  2197. },
  2198. },
  2199. [
  2200. {
  2201. name: "Normal",
  2202. height: math.unit(9.5, "feet")
  2203. },
  2204. {
  2205. name: "Macro",
  2206. height: math.unit(200, "feet"),
  2207. default: true
  2208. },
  2209. ]
  2210. ))
  2211. characterMakers.push(() => makeCharacter(
  2212. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2213. {
  2214. front: {
  2215. height: math.unit(7, "feet"),
  2216. weight: math.unit(80, "kg"),
  2217. name: "Front",
  2218. image: {
  2219. source: "./media/characters/zephiro/front.svg",
  2220. extra: 2309 / 2162,
  2221. bottom: 0.069
  2222. }
  2223. },
  2224. side: {
  2225. height: math.unit(7, "feet"),
  2226. weight: math.unit(80, "kg"),
  2227. name: "Side",
  2228. image: {
  2229. source: "./media/characters/zephiro/side.svg",
  2230. extra: 2403 / 2279,
  2231. bottom: 0.015
  2232. }
  2233. },
  2234. back: {
  2235. height: math.unit(7, "feet"),
  2236. weight: math.unit(80, "kg"),
  2237. name: "Back",
  2238. image: {
  2239. source: "./media/characters/zephiro/back.svg",
  2240. extra: 2373 / 2244,
  2241. bottom: 0.013
  2242. }
  2243. },
  2244. },
  2245. [
  2246. {
  2247. name: "Micro",
  2248. height: math.unit(3, "inches")
  2249. },
  2250. {
  2251. name: "Normal",
  2252. height: math.unit(5 + 3 / 12, "feet"),
  2253. default: true
  2254. },
  2255. {
  2256. name: "Macro",
  2257. height: math.unit(118, "feet")
  2258. },
  2259. ]
  2260. ))
  2261. characterMakers.push(() => makeCharacter(
  2262. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2263. {
  2264. front: {
  2265. height: math.unit(5, "feet"),
  2266. weight: math.unit(90, "kg"),
  2267. name: "Front",
  2268. image: {
  2269. source: "./media/characters/fory/front.svg",
  2270. extra: 2862 / 2674,
  2271. bottom: 180 / 3043.8
  2272. }
  2273. },
  2274. back: {
  2275. height: math.unit(5, "feet"),
  2276. weight: math.unit(90, "kg"),
  2277. name: "Back",
  2278. image: {
  2279. source: "./media/characters/fory/back.svg",
  2280. extra: 2962 / 2791,
  2281. bottom: 106 / 3071.8
  2282. }
  2283. },
  2284. foot: {
  2285. height: math.unit(2.14, "feet"),
  2286. name: "Foot",
  2287. image: {
  2288. source: "./media/characters/fory/foot.svg"
  2289. }
  2290. },
  2291. },
  2292. [
  2293. {
  2294. name: "Normal",
  2295. height: math.unit(5, "feet")
  2296. },
  2297. {
  2298. name: "Macro",
  2299. height: math.unit(50, "feet"),
  2300. default: true
  2301. },
  2302. {
  2303. name: "Megamacro",
  2304. height: math.unit(10, "miles")
  2305. },
  2306. {
  2307. name: "Gigamacro",
  2308. height: math.unit(5, "earths")
  2309. },
  2310. ]
  2311. ))
  2312. characterMakers.push(() => makeCharacter(
  2313. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2314. {
  2315. front: {
  2316. height: math.unit(7, "feet"),
  2317. weight: math.unit(90, "kg"),
  2318. name: "Front",
  2319. image: {
  2320. source: "./media/characters/kurrikage/front.svg",
  2321. extra: 1,
  2322. bottom: 0.035
  2323. }
  2324. },
  2325. back: {
  2326. height: math.unit(7, "feet"),
  2327. weight: math.unit(90, "lb"),
  2328. name: "Back",
  2329. image: {
  2330. source: "./media/characters/kurrikage/back.svg"
  2331. }
  2332. },
  2333. paw: {
  2334. height: math.unit(1.5, "feet"),
  2335. name: "Paw",
  2336. image: {
  2337. source: "./media/characters/kurrikage/paw.svg"
  2338. }
  2339. },
  2340. staff: {
  2341. height: math.unit(6.7, "feet"),
  2342. name: "Staff",
  2343. image: {
  2344. source: "./media/characters/kurrikage/staff.svg"
  2345. }
  2346. },
  2347. peek: {
  2348. height: math.unit(1.05, "feet"),
  2349. name: "Peeking",
  2350. image: {
  2351. source: "./media/characters/kurrikage/peek.svg",
  2352. bottom: 0.08
  2353. }
  2354. },
  2355. },
  2356. [
  2357. {
  2358. name: "Normal",
  2359. height: math.unit(12, "feet"),
  2360. default: true
  2361. },
  2362. {
  2363. name: "Big",
  2364. height: math.unit(20, "feet")
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(500, "feet")
  2369. },
  2370. {
  2371. name: "Megamacro",
  2372. height: math.unit(20, "miles")
  2373. },
  2374. ]
  2375. ))
  2376. characterMakers.push(() => makeCharacter(
  2377. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2378. {
  2379. front: {
  2380. height: math.unit(6, "feet"),
  2381. weight: math.unit(75, "kg"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/shingo/front.svg",
  2385. extra: 706/681,
  2386. bottom: 11/717
  2387. }
  2388. },
  2389. frontAlt: {
  2390. height: math.unit(6, "feet"),
  2391. weight: math.unit(75, "kg"),
  2392. name: "Front (Alt)",
  2393. image: {
  2394. source: "./media/characters/shingo/front-alt.svg",
  2395. extra: 3511 / 3338,
  2396. bottom: 0.005
  2397. }
  2398. },
  2399. paw: {
  2400. height: math.unit(1, "feet"),
  2401. name: "Paw",
  2402. image: {
  2403. source: "./media/characters/shingo/paw.svg"
  2404. }
  2405. },
  2406. },
  2407. [
  2408. {
  2409. name: "Micro",
  2410. height: math.unit(4, "inches")
  2411. },
  2412. {
  2413. name: "Normal",
  2414. height: math.unit(6, "feet"),
  2415. default: true
  2416. },
  2417. {
  2418. name: "Macro",
  2419. height: math.unit(108, "feet")
  2420. },
  2421. {
  2422. name: "Macro+",
  2423. height: math.unit(1500, "feet")
  2424. },
  2425. ]
  2426. ))
  2427. characterMakers.push(() => makeCharacter(
  2428. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2429. {
  2430. side: {
  2431. height: math.unit(6, "feet"),
  2432. weight: math.unit(75, "kg"),
  2433. name: "Side",
  2434. image: {
  2435. source: "./media/characters/aigey/side.svg"
  2436. }
  2437. },
  2438. },
  2439. [
  2440. {
  2441. name: "Macro",
  2442. height: math.unit(200, "feet"),
  2443. default: true
  2444. },
  2445. {
  2446. name: "Megamacro",
  2447. height: math.unit(100, "miles")
  2448. },
  2449. ]
  2450. )
  2451. )
  2452. characterMakers.push(() => makeCharacter(
  2453. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2454. {
  2455. front: {
  2456. height: math.unit(5 + 5 / 12, "feet"),
  2457. weight: math.unit(75, "kg"),
  2458. name: "Front",
  2459. image: {
  2460. source: "./media/characters/natasha/front.svg",
  2461. extra: 859 / 824,
  2462. bottom: 23 / 879.6
  2463. }
  2464. },
  2465. frontNsfw: {
  2466. height: math.unit(5 + 5 / 12, "feet"),
  2467. weight: math.unit(75, "kg"),
  2468. name: "Front (NSFW)",
  2469. image: {
  2470. source: "./media/characters/natasha/front-nsfw.svg",
  2471. extra: 859 / 824,
  2472. bottom: 23 / 879.6
  2473. }
  2474. },
  2475. frontErect: {
  2476. height: math.unit(5 + 5 / 12, "feet"),
  2477. weight: math.unit(75, "kg"),
  2478. name: "Front (Erect)",
  2479. image: {
  2480. source: "./media/characters/natasha/front-erect.svg",
  2481. extra: 859 / 824,
  2482. bottom: 23 / 879.6
  2483. }
  2484. },
  2485. back: {
  2486. height: math.unit(5 + 5 / 12, "feet"),
  2487. weight: math.unit(75, "kg"),
  2488. name: "Back",
  2489. image: {
  2490. source: "./media/characters/natasha/back.svg",
  2491. extra: 887.9 / 852.6,
  2492. bottom: 9.7 / 896.4
  2493. }
  2494. },
  2495. backAlt: {
  2496. height: math.unit(5 + 5 / 12, "feet"),
  2497. weight: math.unit(75, "kg"),
  2498. name: "Back (Alt)",
  2499. image: {
  2500. source: "./media/characters/natasha/back-alt.svg",
  2501. extra: 1236.7 / 1192,
  2502. bottom: 22.3 / 1258.2
  2503. }
  2504. },
  2505. dick: {
  2506. height: math.unit(1.772, "feet"),
  2507. name: "Dick",
  2508. image: {
  2509. source: "./media/characters/natasha/dick.svg"
  2510. }
  2511. },
  2512. paw: {
  2513. height: math.unit(0.250, "meters"),
  2514. name: "Paw",
  2515. image: {
  2516. source: "./media/characters/natasha/paw.svg"
  2517. }
  2518. },
  2519. },
  2520. [
  2521. {
  2522. name: "Normal",
  2523. height: math.unit(5 + 5 / 12, "feet")
  2524. },
  2525. {
  2526. name: "Large",
  2527. height: math.unit(12, "feet")
  2528. },
  2529. {
  2530. name: "Macro",
  2531. height: math.unit(100, "feet"),
  2532. default: true
  2533. },
  2534. {
  2535. name: "Macro+",
  2536. height: math.unit(260, "feet")
  2537. },
  2538. {
  2539. name: "Macro++",
  2540. height: math.unit(1, "mile")
  2541. },
  2542. ]
  2543. ))
  2544. characterMakers.push(() => makeCharacter(
  2545. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2546. {
  2547. front: {
  2548. height: math.unit(6, "feet"),
  2549. weight: math.unit(75, "kg"),
  2550. name: "Front",
  2551. image: {
  2552. source: "./media/characters/malik/front.svg"
  2553. }
  2554. },
  2555. side: {
  2556. height: math.unit(6, "feet"),
  2557. weight: math.unit(75, "kg"),
  2558. name: "Side",
  2559. image: {
  2560. source: "./media/characters/malik/side.svg",
  2561. extra: 1.1539
  2562. }
  2563. },
  2564. back: {
  2565. height: math.unit(6, "feet"),
  2566. weight: math.unit(75, "kg"),
  2567. name: "Back",
  2568. image: {
  2569. source: "./media/characters/malik/back.svg"
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Macro",
  2576. height: math.unit(156, "feet"),
  2577. default: true
  2578. },
  2579. {
  2580. name: "Macro+",
  2581. height: math.unit(1188, "feet")
  2582. },
  2583. ]
  2584. ))
  2585. characterMakers.push(() => makeCharacter(
  2586. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2587. {
  2588. front: {
  2589. height: math.unit(6, "feet"),
  2590. weight: math.unit(75, "kg"),
  2591. name: "Front",
  2592. image: {
  2593. source: "./media/characters/sefer/front.svg",
  2594. extra: 848 / 659,
  2595. bottom: 28.3 / 876.442
  2596. }
  2597. },
  2598. back: {
  2599. height: math.unit(6, "feet"),
  2600. weight: math.unit(75, "kg"),
  2601. name: "Back",
  2602. image: {
  2603. source: "./media/characters/sefer/back.svg",
  2604. extra: 864 / 695,
  2605. bottom: 10 / 871
  2606. }
  2607. },
  2608. frontDressed: {
  2609. height: math.unit(6, "feet"),
  2610. weight: math.unit(75, "kg"),
  2611. name: "Front (Dressed)",
  2612. image: {
  2613. source: "./media/characters/sefer/front-dressed.svg",
  2614. extra: 839 / 653,
  2615. bottom: 37.6 / 878
  2616. }
  2617. },
  2618. },
  2619. [
  2620. {
  2621. name: "Normal",
  2622. height: math.unit(6, "feet"),
  2623. default: true
  2624. },
  2625. ]
  2626. ))
  2627. characterMakers.push(() => makeCharacter(
  2628. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2629. {
  2630. body: {
  2631. height: math.unit(2.2428, "meter"),
  2632. weight: math.unit(124.738, "kg"),
  2633. name: "Body",
  2634. image: {
  2635. extra: 1225 / 1050,
  2636. source: "./media/characters/north/front.svg"
  2637. }
  2638. }
  2639. },
  2640. [
  2641. {
  2642. name: "Micro",
  2643. height: math.unit(4, "inches")
  2644. },
  2645. {
  2646. name: "Macro",
  2647. height: math.unit(63, "meters")
  2648. },
  2649. {
  2650. name: "Megamacro",
  2651. height: math.unit(101, "miles"),
  2652. default: true
  2653. }
  2654. ]
  2655. ))
  2656. characterMakers.push(() => makeCharacter(
  2657. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2658. {
  2659. angled: {
  2660. height: math.unit(4, "meter"),
  2661. weight: math.unit(150, "kg"),
  2662. name: "Angled",
  2663. image: {
  2664. source: "./media/characters/talan/angled-sfw.svg",
  2665. bottom: 29 / 3734
  2666. }
  2667. },
  2668. angledNsfw: {
  2669. height: math.unit(4, "meter"),
  2670. weight: math.unit(150, "kg"),
  2671. name: "Angled (NSFW)",
  2672. image: {
  2673. source: "./media/characters/talan/angled-nsfw.svg",
  2674. bottom: 29 / 3734
  2675. }
  2676. },
  2677. frontNsfw: {
  2678. height: math.unit(4, "meter"),
  2679. weight: math.unit(150, "kg"),
  2680. name: "Front (NSFW)",
  2681. image: {
  2682. source: "./media/characters/talan/front-nsfw.svg",
  2683. bottom: 29 / 3734
  2684. }
  2685. },
  2686. sideNsfw: {
  2687. height: math.unit(4, "meter"),
  2688. weight: math.unit(150, "kg"),
  2689. name: "Side (NSFW)",
  2690. image: {
  2691. source: "./media/characters/talan/side-nsfw.svg",
  2692. bottom: 29 / 3734
  2693. }
  2694. },
  2695. back: {
  2696. height: math.unit(4, "meter"),
  2697. weight: math.unit(150, "kg"),
  2698. name: "Back",
  2699. image: {
  2700. source: "./media/characters/talan/back.svg"
  2701. }
  2702. },
  2703. dickBottom: {
  2704. height: math.unit(0.621, "meter"),
  2705. name: "Dick (Bottom)",
  2706. image: {
  2707. source: "./media/characters/talan/dick-bottom.svg"
  2708. }
  2709. },
  2710. dickTop: {
  2711. height: math.unit(0.621, "meter"),
  2712. name: "Dick (Top)",
  2713. image: {
  2714. source: "./media/characters/talan/dick-top.svg"
  2715. }
  2716. },
  2717. dickSide: {
  2718. height: math.unit(0.305, "meter"),
  2719. name: "Dick (Side)",
  2720. image: {
  2721. source: "./media/characters/talan/dick-side.svg"
  2722. }
  2723. },
  2724. dickFront: {
  2725. height: math.unit(0.305, "meter"),
  2726. name: "Dick (Front)",
  2727. image: {
  2728. source: "./media/characters/talan/dick-front.svg"
  2729. }
  2730. },
  2731. },
  2732. [
  2733. {
  2734. name: "Normal",
  2735. height: math.unit(4, "meters")
  2736. },
  2737. {
  2738. name: "Macro",
  2739. height: math.unit(100, "meters")
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(2, "miles"),
  2744. default: true
  2745. },
  2746. {
  2747. name: "Gigamacro",
  2748. height: math.unit(5000, "miles")
  2749. },
  2750. {
  2751. name: "Teramacro",
  2752. height: math.unit(100, "parsecs")
  2753. }
  2754. ]
  2755. ))
  2756. characterMakers.push(() => makeCharacter(
  2757. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2758. {
  2759. front: {
  2760. height: math.unit(2, "meter"),
  2761. weight: math.unit(90, "kg"),
  2762. name: "Front",
  2763. image: {
  2764. source: "./media/characters/gael'rathus/front.svg"
  2765. }
  2766. },
  2767. frontAlt: {
  2768. height: math.unit(2, "meter"),
  2769. weight: math.unit(90, "kg"),
  2770. name: "Front (alt)",
  2771. image: {
  2772. source: "./media/characters/gael'rathus/front-alt.svg"
  2773. }
  2774. },
  2775. frontAlt2: {
  2776. height: math.unit(2, "meter"),
  2777. weight: math.unit(90, "kg"),
  2778. name: "Front (alt 2)",
  2779. image: {
  2780. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2781. }
  2782. }
  2783. },
  2784. [
  2785. {
  2786. name: "Normal",
  2787. height: math.unit(9, "feet"),
  2788. default: true
  2789. },
  2790. {
  2791. name: "Large",
  2792. height: math.unit(25, "feet")
  2793. },
  2794. {
  2795. name: "Macro",
  2796. height: math.unit(0.25, "miles")
  2797. },
  2798. {
  2799. name: "Megamacro",
  2800. height: math.unit(10, "miles")
  2801. }
  2802. ]
  2803. ))
  2804. characterMakers.push(() => makeCharacter(
  2805. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2806. {
  2807. side: {
  2808. height: math.unit(2, "meter"),
  2809. weight: math.unit(140, "kg"),
  2810. name: "Side",
  2811. image: {
  2812. source: "./media/characters/sosha/side.svg",
  2813. bottom: 0.042
  2814. }
  2815. },
  2816. },
  2817. [
  2818. {
  2819. name: "Normal",
  2820. height: math.unit(12, "feet"),
  2821. default: true
  2822. }
  2823. ]
  2824. ))
  2825. characterMakers.push(() => makeCharacter(
  2826. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2827. {
  2828. side: {
  2829. height: math.unit(5 + 5 / 12, "feet"),
  2830. weight: math.unit(170, "kg"),
  2831. name: "Side",
  2832. image: {
  2833. source: "./media/characters/runnola/side.svg",
  2834. extra: 741 / 448,
  2835. bottom: 0.05
  2836. }
  2837. },
  2838. },
  2839. [
  2840. {
  2841. name: "Small",
  2842. height: math.unit(3, "feet")
  2843. },
  2844. {
  2845. name: "Normal",
  2846. height: math.unit(5 + 5 / 12, "feet"),
  2847. default: true
  2848. },
  2849. {
  2850. name: "Big",
  2851. height: math.unit(10, "feet")
  2852. },
  2853. ]
  2854. ))
  2855. characterMakers.push(() => makeCharacter(
  2856. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2857. {
  2858. front: {
  2859. height: math.unit(2, "meter"),
  2860. weight: math.unit(50, "kg"),
  2861. name: "Front",
  2862. image: {
  2863. source: "./media/characters/kurribird/front.svg",
  2864. bottom: 0.015
  2865. }
  2866. },
  2867. frontAlt: {
  2868. height: math.unit(1.5, "meter"),
  2869. weight: math.unit(50, "kg"),
  2870. name: "Front (Alt)",
  2871. image: {
  2872. source: "./media/characters/kurribird/front-alt.svg",
  2873. extra: 1.45
  2874. }
  2875. },
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(7, "feet")
  2881. },
  2882. {
  2883. name: "Big",
  2884. height: math.unit(12, "feet"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Macro",
  2889. height: math.unit(1500, "feet")
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(2, "miles")
  2894. }
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(80, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/elbial/front.svg",
  2906. extra: 1643 / 1556,
  2907. bottom: 60.2 / 1696
  2908. }
  2909. },
  2910. side: {
  2911. height: math.unit(2, "meter"),
  2912. weight: math.unit(80, "kg"),
  2913. name: "Side",
  2914. image: {
  2915. source: "./media/characters/elbial/side.svg",
  2916. extra: 1630 / 1565,
  2917. bottom: 71.5 / 1697
  2918. }
  2919. },
  2920. back: {
  2921. height: math.unit(2, "meter"),
  2922. weight: math.unit(80, "kg"),
  2923. name: "Back",
  2924. image: {
  2925. source: "./media/characters/elbial/back.svg",
  2926. extra: 1668 / 1595,
  2927. bottom: 5.6 / 1672
  2928. }
  2929. },
  2930. frontDressed: {
  2931. height: math.unit(2, "meter"),
  2932. weight: math.unit(80, "kg"),
  2933. name: "Front (Dressed)",
  2934. image: {
  2935. source: "./media/characters/elbial/front-dressed.svg",
  2936. extra: 1653 / 1584,
  2937. bottom: 57 / 1708
  2938. }
  2939. },
  2940. genitals: {
  2941. height: math.unit(2 / 3.367, "meter"),
  2942. name: "Genitals",
  2943. image: {
  2944. source: "./media/characters/elbial/genitals.svg"
  2945. }
  2946. },
  2947. },
  2948. [
  2949. {
  2950. name: "Large",
  2951. height: math.unit(100, "feet")
  2952. },
  2953. {
  2954. name: "Macro",
  2955. height: math.unit(500, "feet"),
  2956. default: true
  2957. },
  2958. {
  2959. name: "Megamacro",
  2960. height: math.unit(10, "miles")
  2961. },
  2962. {
  2963. name: "Gigamacro",
  2964. height: math.unit(25000, "miles")
  2965. },
  2966. {
  2967. name: "Full-Size",
  2968. height: math.unit(8000000, "gigaparsecs")
  2969. }
  2970. ]
  2971. ))
  2972. characterMakers.push(() => makeCharacter(
  2973. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2974. {
  2975. front: {
  2976. height: math.unit(2, "meter"),
  2977. weight: math.unit(60, "kg"),
  2978. name: "Front",
  2979. image: {
  2980. source: "./media/characters/noah/front.svg"
  2981. }
  2982. },
  2983. talons: {
  2984. height: math.unit(0.315, "meter"),
  2985. name: "Talons",
  2986. image: {
  2987. source: "./media/characters/noah/talons.svg"
  2988. }
  2989. }
  2990. },
  2991. [
  2992. {
  2993. name: "Large",
  2994. height: math.unit(50, "feet")
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(750, "feet"),
  2999. default: true
  3000. },
  3001. {
  3002. name: "Megamacro",
  3003. height: math.unit(50, "miles")
  3004. },
  3005. {
  3006. name: "Gigamacro",
  3007. height: math.unit(100000, "miles")
  3008. },
  3009. {
  3010. name: "Full-Size",
  3011. height: math.unit(3000000000, "miles")
  3012. }
  3013. ]
  3014. ))
  3015. characterMakers.push(() => makeCharacter(
  3016. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3017. {
  3018. front: {
  3019. height: math.unit(2, "meter"),
  3020. weight: math.unit(80, "kg"),
  3021. name: "Front",
  3022. image: {
  3023. source: "./media/characters/natalya/front.svg"
  3024. }
  3025. },
  3026. back: {
  3027. height: math.unit(2, "meter"),
  3028. weight: math.unit(80, "kg"),
  3029. name: "Back",
  3030. image: {
  3031. source: "./media/characters/natalya/back.svg"
  3032. }
  3033. }
  3034. },
  3035. [
  3036. {
  3037. name: "Normal",
  3038. height: math.unit(150, "feet"),
  3039. default: true
  3040. },
  3041. {
  3042. name: "Megamacro",
  3043. height: math.unit(5, "miles")
  3044. },
  3045. {
  3046. name: "Full-Size",
  3047. height: math.unit(600, "kiloparsecs")
  3048. }
  3049. ]
  3050. ))
  3051. characterMakers.push(() => makeCharacter(
  3052. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3053. {
  3054. front: {
  3055. height: math.unit(2, "meter"),
  3056. weight: math.unit(50, "kg"),
  3057. name: "Front",
  3058. image: {
  3059. source: "./media/characters/erestrebah/front.svg",
  3060. extra: 208 / 193,
  3061. bottom: 0.055
  3062. }
  3063. },
  3064. back: {
  3065. height: math.unit(2, "meter"),
  3066. weight: math.unit(50, "kg"),
  3067. name: "Back",
  3068. image: {
  3069. source: "./media/characters/erestrebah/back.svg",
  3070. extra: 1.3
  3071. }
  3072. }
  3073. },
  3074. [
  3075. {
  3076. name: "Normal",
  3077. height: math.unit(10, "feet")
  3078. },
  3079. {
  3080. name: "Large",
  3081. height: math.unit(50, "feet"),
  3082. default: true
  3083. },
  3084. {
  3085. name: "Macro",
  3086. height: math.unit(300, "feet")
  3087. },
  3088. {
  3089. name: "Macro+",
  3090. height: math.unit(750, "feet")
  3091. },
  3092. {
  3093. name: "Megamacro",
  3094. height: math.unit(3, "miles")
  3095. }
  3096. ]
  3097. ))
  3098. characterMakers.push(() => makeCharacter(
  3099. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3100. {
  3101. front: {
  3102. height: math.unit(2, "meter"),
  3103. weight: math.unit(80, "kg"),
  3104. name: "Front",
  3105. image: {
  3106. source: "./media/characters/jennifer/front.svg",
  3107. bottom: 0.11,
  3108. extra: 1.16
  3109. }
  3110. },
  3111. frontAlt: {
  3112. height: math.unit(2, "meter"),
  3113. weight: math.unit(80, "kg"),
  3114. name: "Front (Alt)",
  3115. image: {
  3116. source: "./media/characters/jennifer/front-alt.svg"
  3117. }
  3118. }
  3119. },
  3120. [
  3121. {
  3122. name: "Canon Height",
  3123. height: math.unit(120, "feet"),
  3124. default: true
  3125. },
  3126. {
  3127. name: "Macro+",
  3128. height: math.unit(300, "feet")
  3129. },
  3130. {
  3131. name: "Megamacro",
  3132. height: math.unit(20000, "feet")
  3133. }
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3138. {
  3139. front: {
  3140. height: math.unit(2, "meter"),
  3141. weight: math.unit(50, "kg"),
  3142. name: "Front",
  3143. image: {
  3144. source: "./media/characters/kalista/front.svg",
  3145. extra: 1947 / 1700,
  3146. bottom: 76.6 / 1412.98
  3147. }
  3148. },
  3149. back: {
  3150. height: math.unit(2, "meter"),
  3151. weight: math.unit(50, "kg"),
  3152. name: "Back",
  3153. image: {
  3154. source: "./media/characters/kalista/back.svg",
  3155. extra: 1366 / 1156,
  3156. bottom: 33.9 / 1362.78
  3157. }
  3158. }
  3159. },
  3160. [
  3161. {
  3162. name: "Uncomfortably Small",
  3163. height: math.unit(10, "feet")
  3164. },
  3165. {
  3166. name: "Small",
  3167. height: math.unit(30, "feet")
  3168. },
  3169. {
  3170. name: "Macro",
  3171. height: math.unit(100, "feet"),
  3172. default: true
  3173. },
  3174. {
  3175. name: "Macro+",
  3176. height: math.unit(2000, "feet")
  3177. },
  3178. {
  3179. name: "True Form",
  3180. height: math.unit(8924, "miles")
  3181. }
  3182. ]
  3183. ))
  3184. characterMakers.push(() => makeCharacter(
  3185. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3186. {
  3187. front: {
  3188. height: math.unit(2, "meter"),
  3189. weight: math.unit(120, "kg"),
  3190. name: "Front",
  3191. image: {
  3192. source: "./media/characters/ggv/front.svg"
  3193. }
  3194. },
  3195. side: {
  3196. height: math.unit(2, "meter"),
  3197. weight: math.unit(120, "kg"),
  3198. name: "Side",
  3199. image: {
  3200. source: "./media/characters/ggv/side.svg"
  3201. }
  3202. }
  3203. },
  3204. [
  3205. {
  3206. name: "Extremely Puny",
  3207. height: math.unit(9 + 5 / 12, "feet")
  3208. },
  3209. {
  3210. name: "Horribly Small",
  3211. height: math.unit(47.7, "miles"),
  3212. default: true
  3213. },
  3214. {
  3215. name: "Reasonably Sized",
  3216. height: math.unit(25000, "parsecs")
  3217. },
  3218. {
  3219. name: "Slightly Uncompressed",
  3220. height: math.unit(7.77e31, "parsecs")
  3221. },
  3222. {
  3223. name: "Omniversal",
  3224. height: math.unit(1e300, "meters")
  3225. },
  3226. ]
  3227. ))
  3228. characterMakers.push(() => makeCharacter(
  3229. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3230. {
  3231. front: {
  3232. height: math.unit(2, "meter"),
  3233. weight: math.unit(75, "lb"),
  3234. name: "Front",
  3235. image: {
  3236. source: "./media/characters/napalm/front.svg"
  3237. }
  3238. },
  3239. back: {
  3240. height: math.unit(2, "meter"),
  3241. weight: math.unit(75, "lb"),
  3242. name: "Back",
  3243. image: {
  3244. source: "./media/characters/napalm/back.svg"
  3245. }
  3246. }
  3247. },
  3248. [
  3249. {
  3250. name: "Standard",
  3251. height: math.unit(55, "feet"),
  3252. default: true
  3253. }
  3254. ]
  3255. ))
  3256. characterMakers.push(() => makeCharacter(
  3257. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3258. {
  3259. front: {
  3260. height: math.unit(7 + 5 / 6, "feet"),
  3261. weight: math.unit(325, "lb"),
  3262. name: "Front",
  3263. image: {
  3264. source: "./media/characters/asana/front.svg",
  3265. extra: 1133 / 1060,
  3266. bottom: 15.2 / 1148.6
  3267. }
  3268. },
  3269. back: {
  3270. height: math.unit(7 + 5 / 6, "feet"),
  3271. weight: math.unit(325, "lb"),
  3272. name: "Back",
  3273. image: {
  3274. source: "./media/characters/asana/back.svg",
  3275. extra: 1114 / 1043,
  3276. bottom: 5 / 1120
  3277. }
  3278. },
  3279. dressedDark: {
  3280. height: math.unit(7 + 5 / 6, "feet"),
  3281. weight: math.unit(325, "lb"),
  3282. name: "Dressed (Dark)",
  3283. image: {
  3284. source: "./media/characters/asana/dressed-dark.svg",
  3285. extra: 1133 / 1060,
  3286. bottom: 15.2 / 1148.6
  3287. }
  3288. },
  3289. dressedLight: {
  3290. height: math.unit(7 + 5 / 6, "feet"),
  3291. weight: math.unit(325, "lb"),
  3292. name: "Dressed (Light)",
  3293. image: {
  3294. source: "./media/characters/asana/dressed-light.svg",
  3295. extra: 1133 / 1060,
  3296. bottom: 15.2 / 1148.6
  3297. }
  3298. },
  3299. },
  3300. [
  3301. {
  3302. name: "Standard",
  3303. height: math.unit(7 + 5 / 6, "feet"),
  3304. default: true
  3305. },
  3306. {
  3307. name: "Large",
  3308. height: math.unit(10, "meters")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(2500, "meters")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(5e6, "meters")
  3317. },
  3318. {
  3319. name: "Examacro",
  3320. height: math.unit(5e12, "lightyears")
  3321. },
  3322. {
  3323. name: "Max Size",
  3324. height: math.unit(1e31, "lightyears")
  3325. }
  3326. ]
  3327. ))
  3328. characterMakers.push(() => makeCharacter(
  3329. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3330. {
  3331. front: {
  3332. height: math.unit(2, "meter"),
  3333. weight: math.unit(60, "kg"),
  3334. name: "Front",
  3335. image: {
  3336. source: "./media/characters/ebony/front.svg",
  3337. bottom: 0.03,
  3338. extra: 1045 / 810 + 0.03
  3339. }
  3340. },
  3341. side: {
  3342. height: math.unit(2, "meter"),
  3343. weight: math.unit(60, "kg"),
  3344. name: "Side",
  3345. image: {
  3346. source: "./media/characters/ebony/side.svg",
  3347. bottom: 0.03,
  3348. extra: 1045 / 810 + 0.03
  3349. }
  3350. },
  3351. back: {
  3352. height: math.unit(2, "meter"),
  3353. weight: math.unit(60, "kg"),
  3354. name: "Back",
  3355. image: {
  3356. source: "./media/characters/ebony/back.svg",
  3357. bottom: 0.01,
  3358. extra: 1045 / 810 + 0.01
  3359. }
  3360. },
  3361. },
  3362. [
  3363. // TODO check why I did this lol
  3364. {
  3365. name: "Standard",
  3366. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3367. default: true
  3368. },
  3369. {
  3370. name: "Macro",
  3371. height: math.unit(200, "feet")
  3372. },
  3373. {
  3374. name: "Gigamacro",
  3375. height: math.unit(13000, "km")
  3376. }
  3377. ]
  3378. ))
  3379. characterMakers.push(() => makeCharacter(
  3380. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3381. {
  3382. front: {
  3383. height: math.unit(6, "feet"),
  3384. weight: math.unit(175, "lb"),
  3385. name: "Front",
  3386. image: {
  3387. source: "./media/characters/mountain/front.svg",
  3388. extra: 972 / 955,
  3389. bottom: 64 / 1036.6
  3390. }
  3391. },
  3392. back: {
  3393. height: math.unit(6, "feet"),
  3394. weight: math.unit(175, "lb"),
  3395. name: "Back",
  3396. image: {
  3397. source: "./media/characters/mountain/back.svg",
  3398. extra: 970 / 950,
  3399. bottom: 28.25 / 999
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Large",
  3406. height: math.unit(20, "meters")
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(300, "meters")
  3411. },
  3412. {
  3413. name: "Gigamacro",
  3414. height: math.unit(10000, "km"),
  3415. default: true
  3416. },
  3417. {
  3418. name: "Examacro",
  3419. height: math.unit(10e9, "lightyears")
  3420. }
  3421. ]
  3422. ))
  3423. characterMakers.push(() => makeCharacter(
  3424. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3425. {
  3426. front: {
  3427. height: math.unit(8, "feet"),
  3428. weight: math.unit(500, "lb"),
  3429. name: "Front",
  3430. image: {
  3431. source: "./media/characters/rick/front.svg"
  3432. }
  3433. }
  3434. },
  3435. [
  3436. {
  3437. name: "Normal",
  3438. height: math.unit(8, "feet"),
  3439. default: true
  3440. },
  3441. {
  3442. name: "Macro",
  3443. height: math.unit(5, "km")
  3444. }
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(8, "feet"),
  3452. weight: math.unit(120, "lb"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/ona/front.svg"
  3456. }
  3457. },
  3458. frontAlt: {
  3459. height: math.unit(8, "feet"),
  3460. weight: math.unit(120, "lb"),
  3461. name: "Front (Alt)",
  3462. image: {
  3463. source: "./media/characters/ona/front-alt.svg"
  3464. }
  3465. },
  3466. back: {
  3467. height: math.unit(8, "feet"),
  3468. weight: math.unit(120, "lb"),
  3469. name: "Back",
  3470. image: {
  3471. source: "./media/characters/ona/back.svg"
  3472. }
  3473. },
  3474. foot: {
  3475. height: math.unit(1.1, "feet"),
  3476. name: "Foot",
  3477. image: {
  3478. source: "./media/characters/ona/foot.svg"
  3479. }
  3480. }
  3481. },
  3482. [
  3483. {
  3484. name: "Megamacro",
  3485. height: math.unit(70, "km"),
  3486. default: true
  3487. },
  3488. {
  3489. name: "Gigamacro",
  3490. height: math.unit(681818, "miles")
  3491. },
  3492. {
  3493. name: "Examacro",
  3494. height: math.unit(3800000, "lightyears")
  3495. },
  3496. ]
  3497. ))
  3498. characterMakers.push(() => makeCharacter(
  3499. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3500. {
  3501. front: {
  3502. height: math.unit(12, "feet"),
  3503. weight: math.unit(3000, "lb"),
  3504. name: "Front",
  3505. image: {
  3506. source: "./media/characters/mech/front.svg",
  3507. extra: 2900 / 2770,
  3508. bottom: 110 / 3010
  3509. }
  3510. },
  3511. back: {
  3512. height: math.unit(12, "feet"),
  3513. weight: math.unit(3000, "lb"),
  3514. name: "Back",
  3515. image: {
  3516. source: "./media/characters/mech/back.svg",
  3517. extra: 3011 / 2890,
  3518. bottom: 94 / 3105
  3519. }
  3520. },
  3521. maw: {
  3522. height: math.unit(3.07, "feet"),
  3523. name: "Maw",
  3524. image: {
  3525. source: "./media/characters/mech/maw.svg"
  3526. }
  3527. },
  3528. head: {
  3529. height: math.unit(2.82, "feet"),
  3530. name: "Head",
  3531. image: {
  3532. source: "./media/characters/mech/head.svg"
  3533. }
  3534. },
  3535. dick: {
  3536. height: math.unit(1.43, "feet"),
  3537. name: "Dick",
  3538. image: {
  3539. source: "./media/characters/mech/dick.svg"
  3540. }
  3541. },
  3542. },
  3543. [
  3544. {
  3545. name: "Normal",
  3546. height: math.unit(12, "feet")
  3547. },
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(300, "feet"),
  3551. default: true
  3552. },
  3553. {
  3554. name: "Macro+",
  3555. height: math.unit(1500, "feet")
  3556. },
  3557. ]
  3558. ))
  3559. characterMakers.push(() => makeCharacter(
  3560. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3561. {
  3562. front: {
  3563. height: math.unit(1.3, "meter"),
  3564. weight: math.unit(30, "kg"),
  3565. name: "Front",
  3566. image: {
  3567. source: "./media/characters/gregory/front.svg",
  3568. }
  3569. }
  3570. },
  3571. [
  3572. {
  3573. name: "Normal",
  3574. height: math.unit(1.3, "meter"),
  3575. default: true
  3576. },
  3577. {
  3578. name: "Macro",
  3579. height: math.unit(20, "meter")
  3580. }
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(2.8, "meter"),
  3588. weight: math.unit(200, "kg"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/elory/front.svg",
  3592. }
  3593. }
  3594. },
  3595. [
  3596. {
  3597. name: "Normal",
  3598. height: math.unit(2.8, "meter"),
  3599. default: true
  3600. },
  3601. {
  3602. name: "Macro",
  3603. height: math.unit(38, "meter")
  3604. }
  3605. ]
  3606. ))
  3607. characterMakers.push(() => makeCharacter(
  3608. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3609. {
  3610. front: {
  3611. height: math.unit(470, "feet"),
  3612. weight: math.unit(924, "tons"),
  3613. name: "Front",
  3614. image: {
  3615. source: "./media/characters/angelpatamon/front.svg",
  3616. }
  3617. }
  3618. },
  3619. [
  3620. {
  3621. name: "Normal",
  3622. height: math.unit(470, "feet"),
  3623. default: true
  3624. },
  3625. {
  3626. name: "Deity Size I",
  3627. height: math.unit(28651.2, "km")
  3628. },
  3629. {
  3630. name: "Deity Size II",
  3631. height: math.unit(171907.2, "km")
  3632. }
  3633. ]
  3634. ))
  3635. characterMakers.push(() => makeCharacter(
  3636. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3637. {
  3638. side: {
  3639. height: math.unit(7.2, "meter"),
  3640. weight: math.unit(8.2, "tons"),
  3641. name: "Side",
  3642. image: {
  3643. source: "./media/characters/cryae/side.svg",
  3644. extra: 3500 / 1500
  3645. }
  3646. }
  3647. },
  3648. [
  3649. {
  3650. name: "Normal",
  3651. height: math.unit(7.2, "meter"),
  3652. default: true
  3653. }
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3658. {
  3659. front: {
  3660. height: math.unit(6, "feet"),
  3661. weight: math.unit(175, "lb"),
  3662. name: "Front",
  3663. image: {
  3664. source: "./media/characters/xera/front.svg",
  3665. extra: 2377 / 1972,
  3666. bottom: 75.5 / 2452
  3667. }
  3668. },
  3669. side: {
  3670. height: math.unit(6, "feet"),
  3671. weight: math.unit(175, "lb"),
  3672. name: "Side",
  3673. image: {
  3674. source: "./media/characters/xera/side.svg",
  3675. extra: 2345 / 2019,
  3676. bottom: 39.7 / 2384
  3677. }
  3678. },
  3679. back: {
  3680. height: math.unit(6, "feet"),
  3681. weight: math.unit(175, "lb"),
  3682. name: "Back",
  3683. image: {
  3684. source: "./media/characters/xera/back.svg",
  3685. extra: 2095 / 1984,
  3686. bottom: 67 / 2166
  3687. }
  3688. },
  3689. },
  3690. [
  3691. {
  3692. name: "Small",
  3693. height: math.unit(10, "feet")
  3694. },
  3695. {
  3696. name: "Macro",
  3697. height: math.unit(500, "meters"),
  3698. default: true
  3699. },
  3700. {
  3701. name: "Macro+",
  3702. height: math.unit(10, "km")
  3703. },
  3704. {
  3705. name: "Gigamacro",
  3706. height: math.unit(25000, "km")
  3707. },
  3708. {
  3709. name: "Teramacro",
  3710. height: math.unit(3e6, "km")
  3711. }
  3712. ]
  3713. ))
  3714. characterMakers.push(() => makeCharacter(
  3715. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3716. {
  3717. front: {
  3718. height: math.unit(6, "feet"),
  3719. weight: math.unit(175, "lb"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/nebula/front.svg",
  3723. extra: 2566 / 2362,
  3724. bottom: 81 / 2644
  3725. }
  3726. }
  3727. },
  3728. [
  3729. {
  3730. name: "Small",
  3731. height: math.unit(4.5, "meters")
  3732. },
  3733. {
  3734. name: "Macro",
  3735. height: math.unit(1500, "meters"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "Megamacro",
  3740. height: math.unit(150, "km")
  3741. },
  3742. {
  3743. name: "Gigamacro",
  3744. height: math.unit(27000, "km")
  3745. }
  3746. ]
  3747. ))
  3748. characterMakers.push(() => makeCharacter(
  3749. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3750. {
  3751. front: {
  3752. height: math.unit(6, "feet"),
  3753. weight: math.unit(225, "lb"),
  3754. name: "Front",
  3755. image: {
  3756. source: "./media/characters/abysgar/front.svg"
  3757. }
  3758. }
  3759. },
  3760. [
  3761. {
  3762. name: "Small",
  3763. height: math.unit(4.5, "meters")
  3764. },
  3765. {
  3766. name: "Macro",
  3767. height: math.unit(1250, "meters"),
  3768. default: true
  3769. },
  3770. {
  3771. name: "Megamacro",
  3772. height: math.unit(125, "km")
  3773. },
  3774. {
  3775. name: "Gigamacro",
  3776. height: math.unit(26000, "km")
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3782. {
  3783. front: {
  3784. height: math.unit(6, "feet"),
  3785. weight: math.unit(180, "lb"),
  3786. name: "Front",
  3787. image: {
  3788. source: "./media/characters/yakuz/front.svg"
  3789. }
  3790. }
  3791. },
  3792. [
  3793. {
  3794. name: "Small",
  3795. height: math.unit(5, "meters")
  3796. },
  3797. {
  3798. name: "Macro",
  3799. height: math.unit(1500, "meters"),
  3800. default: true
  3801. },
  3802. {
  3803. name: "Megamacro",
  3804. height: math.unit(200, "km")
  3805. },
  3806. {
  3807. name: "Gigamacro",
  3808. height: math.unit(100000, "km")
  3809. }
  3810. ]
  3811. ))
  3812. characterMakers.push(() => makeCharacter(
  3813. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3814. {
  3815. front: {
  3816. height: math.unit(6, "feet"),
  3817. weight: math.unit(175, "lb"),
  3818. name: "Front",
  3819. image: {
  3820. source: "./media/characters/mirova/front.svg",
  3821. extra: 3334 / 3071,
  3822. bottom: 42 / 3375.6
  3823. }
  3824. }
  3825. },
  3826. [
  3827. {
  3828. name: "Small",
  3829. height: math.unit(5, "meters")
  3830. },
  3831. {
  3832. name: "Macro",
  3833. height: math.unit(900, "meters"),
  3834. default: true
  3835. },
  3836. {
  3837. name: "Megamacro",
  3838. height: math.unit(135, "km")
  3839. },
  3840. {
  3841. name: "Gigamacro",
  3842. height: math.unit(20000, "km")
  3843. }
  3844. ]
  3845. ))
  3846. characterMakers.push(() => makeCharacter(
  3847. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3848. {
  3849. side: {
  3850. height: math.unit(28.35, "feet"),
  3851. weight: math.unit(99.75, "tons"),
  3852. name: "Side",
  3853. image: {
  3854. source: "./media/characters/asana-mech/side.svg",
  3855. extra: 923 / 699,
  3856. bottom: 50 / 975
  3857. }
  3858. },
  3859. chaingun: {
  3860. height: math.unit(7, "feet"),
  3861. weight: math.unit(2400, "lb"),
  3862. name: "Chaingun",
  3863. image: {
  3864. source: "./media/characters/asana-mech/chaingun.svg"
  3865. }
  3866. },
  3867. laser: {
  3868. height: math.unit(7.12, "feet"),
  3869. weight: math.unit(2000, "lb"),
  3870. name: "Laser",
  3871. image: {
  3872. source: "./media/characters/asana-mech/laser.svg"
  3873. }
  3874. },
  3875. },
  3876. [
  3877. {
  3878. name: "Normal",
  3879. height: math.unit(28.35, "feet"),
  3880. default: true
  3881. },
  3882. {
  3883. name: "Macro",
  3884. height: math.unit(2500, "feet")
  3885. },
  3886. {
  3887. name: "Megamacro",
  3888. height: math.unit(25, "miles")
  3889. },
  3890. {
  3891. name: "Examacro",
  3892. height: math.unit(6e8, "lightyears")
  3893. },
  3894. ]
  3895. ))
  3896. characterMakers.push(() => makeCharacter(
  3897. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3898. {
  3899. front: {
  3900. height: math.unit(5, "meters"),
  3901. weight: math.unit(1000, "kg"),
  3902. name: "Front",
  3903. image: {
  3904. source: "./media/characters/asche/front.svg",
  3905. extra: 1258 / 1190,
  3906. bottom: 47 / 1305
  3907. }
  3908. },
  3909. frontUnderwear: {
  3910. height: math.unit(5, "meters"),
  3911. weight: math.unit(1000, "kg"),
  3912. name: "Front (Underwear)",
  3913. image: {
  3914. source: "./media/characters/asche/front-underwear.svg",
  3915. extra: 1258 / 1190,
  3916. bottom: 47 / 1305
  3917. }
  3918. },
  3919. frontDressed: {
  3920. height: math.unit(5, "meters"),
  3921. weight: math.unit(1000, "kg"),
  3922. name: "Front (Dressed)",
  3923. image: {
  3924. source: "./media/characters/asche/front-dressed.svg",
  3925. extra: 1258 / 1190,
  3926. bottom: 47 / 1305
  3927. }
  3928. },
  3929. frontArmor: {
  3930. height: math.unit(5, "meters"),
  3931. weight: math.unit(1000, "kg"),
  3932. name: "Front (Armored)",
  3933. image: {
  3934. source: "./media/characters/asche/front-armored.svg",
  3935. extra: 1374 / 1308,
  3936. bottom: 23 / 1397
  3937. }
  3938. },
  3939. mp724: {
  3940. height: math.unit(0.96, "meters"),
  3941. weight: math.unit(38, "kg"),
  3942. name: "H&K MP724",
  3943. image: {
  3944. source: "./media/characters/asche/h&k-mp724.svg"
  3945. }
  3946. },
  3947. side: {
  3948. height: math.unit(5, "meters"),
  3949. weight: math.unit(1000, "kg"),
  3950. name: "Side",
  3951. image: {
  3952. source: "./media/characters/asche/side.svg",
  3953. extra: 1717 / 1609,
  3954. bottom: 0.005
  3955. }
  3956. },
  3957. back: {
  3958. height: math.unit(5, "meters"),
  3959. weight: math.unit(1000, "kg"),
  3960. name: "Back",
  3961. image: {
  3962. source: "./media/characters/asche/back.svg",
  3963. extra: 1570 / 1501
  3964. }
  3965. },
  3966. },
  3967. [
  3968. {
  3969. name: "DEFCON 5",
  3970. height: math.unit(5, "meters")
  3971. },
  3972. {
  3973. name: "DEFCON 4",
  3974. height: math.unit(500, "meters"),
  3975. default: true
  3976. },
  3977. {
  3978. name: "DEFCON 3",
  3979. height: math.unit(5, "km")
  3980. },
  3981. {
  3982. name: "DEFCON 2",
  3983. height: math.unit(500, "km")
  3984. },
  3985. {
  3986. name: "DEFCON 1",
  3987. height: math.unit(500000, "km")
  3988. },
  3989. {
  3990. name: "DEFCON 0",
  3991. height: math.unit(3, "gigaparsecs")
  3992. },
  3993. ]
  3994. ))
  3995. characterMakers.push(() => makeCharacter(
  3996. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3997. {
  3998. front: {
  3999. height: math.unit(2, "meters"),
  4000. weight: math.unit(76, "kg"),
  4001. name: "Front",
  4002. image: {
  4003. source: "./media/characters/gale/front.svg"
  4004. }
  4005. },
  4006. frontAlt1: {
  4007. height: math.unit(2, "meters"),
  4008. weight: math.unit(76, "kg"),
  4009. name: "Front (Alt 1)",
  4010. image: {
  4011. source: "./media/characters/gale/front-alt-1.svg"
  4012. }
  4013. },
  4014. frontAlt2: {
  4015. height: math.unit(2, "meters"),
  4016. weight: math.unit(76, "kg"),
  4017. name: "Front (Alt 2)",
  4018. image: {
  4019. source: "./media/characters/gale/front-alt-2.svg"
  4020. }
  4021. },
  4022. },
  4023. [
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(7, "feet")
  4027. },
  4028. {
  4029. name: "Macro",
  4030. height: math.unit(150, "feet"),
  4031. default: true
  4032. },
  4033. {
  4034. name: "Macro+",
  4035. height: math.unit(300, "feet")
  4036. },
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4041. {
  4042. front: {
  4043. height: math.unit(2, "meters"),
  4044. weight: math.unit(76, "kg"),
  4045. name: "Front",
  4046. image: {
  4047. source: "./media/characters/draylen/front.svg"
  4048. }
  4049. }
  4050. },
  4051. [
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(150, "feet"),
  4055. default: true
  4056. }
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4061. {
  4062. front: {
  4063. height: math.unit(7 + 9 / 12, "feet"),
  4064. weight: math.unit(379, "lbs"),
  4065. name: "Front",
  4066. image: {
  4067. source: "./media/characters/chez/front.svg"
  4068. }
  4069. },
  4070. side: {
  4071. height: math.unit(7 + 9 / 12, "feet"),
  4072. weight: math.unit(379, "lbs"),
  4073. name: "Side",
  4074. image: {
  4075. source: "./media/characters/chez/side.svg"
  4076. }
  4077. }
  4078. },
  4079. [
  4080. {
  4081. name: "Normal",
  4082. height: math.unit(7 + 9 / 12, "feet"),
  4083. default: true
  4084. },
  4085. {
  4086. name: "God King",
  4087. height: math.unit(9750000, "meters")
  4088. }
  4089. ]
  4090. ))
  4091. characterMakers.push(() => makeCharacter(
  4092. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4093. {
  4094. front: {
  4095. height: math.unit(6, "feet"),
  4096. weight: math.unit(275, "lbs"),
  4097. name: "Front",
  4098. image: {
  4099. source: "./media/characters/kaylum/front.svg",
  4100. bottom: 0.01,
  4101. extra: 1166 / 1031
  4102. }
  4103. },
  4104. frontWingless: {
  4105. height: math.unit(6, "feet"),
  4106. weight: math.unit(275, "lbs"),
  4107. name: "Front (Wingless)",
  4108. image: {
  4109. source: "./media/characters/kaylum/front-wingless.svg",
  4110. bottom: 0.01,
  4111. extra: 1117 / 1031
  4112. }
  4113. }
  4114. },
  4115. [
  4116. {
  4117. name: "Normal",
  4118. height: math.unit(3.05, "meters")
  4119. },
  4120. {
  4121. name: "Master",
  4122. height: math.unit(5.5, "meters")
  4123. },
  4124. {
  4125. name: "Rampage",
  4126. height: math.unit(19, "meters")
  4127. },
  4128. {
  4129. name: "Macro Lite",
  4130. height: math.unit(37, "meters")
  4131. },
  4132. {
  4133. name: "Hyper Predator",
  4134. height: math.unit(61, "meters")
  4135. },
  4136. {
  4137. name: "Macro",
  4138. height: math.unit(138, "meters"),
  4139. default: true
  4140. }
  4141. ]
  4142. ))
  4143. characterMakers.push(() => makeCharacter(
  4144. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4145. {
  4146. front: {
  4147. height: math.unit(6, "feet"),
  4148. weight: math.unit(150, "lbs"),
  4149. name: "Front",
  4150. image: {
  4151. source: "./media/characters/geta/front.svg"
  4152. }
  4153. }
  4154. },
  4155. [
  4156. {
  4157. name: "Micro",
  4158. height: math.unit(3, "inches"),
  4159. default: true
  4160. },
  4161. {
  4162. name: "Normal",
  4163. height: math.unit(5 + 5 / 12, "feet")
  4164. }
  4165. ]
  4166. ))
  4167. characterMakers.push(() => makeCharacter(
  4168. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4169. {
  4170. front: {
  4171. height: math.unit(6, "feet"),
  4172. weight: math.unit(300, "lbs"),
  4173. name: "Front",
  4174. image: {
  4175. source: "./media/characters/tyrnn/front.svg"
  4176. }
  4177. }
  4178. },
  4179. [
  4180. {
  4181. name: "Main Height",
  4182. height: math.unit(355, "feet"),
  4183. default: true
  4184. },
  4185. {
  4186. name: "Fave. Height",
  4187. height: math.unit(2400, "feet")
  4188. }
  4189. ]
  4190. ))
  4191. characterMakers.push(() => makeCharacter(
  4192. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4193. {
  4194. front: {
  4195. height: math.unit(6, "feet"),
  4196. weight: math.unit(300, "lbs"),
  4197. name: "Front",
  4198. image: {
  4199. source: "./media/characters/appledectomy/front.svg"
  4200. }
  4201. }
  4202. },
  4203. [
  4204. {
  4205. name: "Macro",
  4206. height: math.unit(2500, "feet")
  4207. },
  4208. {
  4209. name: "Megamacro",
  4210. height: math.unit(50, "miles"),
  4211. default: true
  4212. },
  4213. {
  4214. name: "Gigamacro",
  4215. height: math.unit(5000, "miles")
  4216. },
  4217. {
  4218. name: "Teramacro",
  4219. height: math.unit(250000, "miles")
  4220. },
  4221. ]
  4222. ))
  4223. characterMakers.push(() => makeCharacter(
  4224. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4225. {
  4226. front: {
  4227. height: math.unit(6, "feet"),
  4228. weight: math.unit(200, "lbs"),
  4229. name: "Front",
  4230. image: {
  4231. source: "./media/characters/vulpes/front.svg",
  4232. extra: 573 / 543,
  4233. bottom: 0.033
  4234. }
  4235. },
  4236. side: {
  4237. height: math.unit(6, "feet"),
  4238. weight: math.unit(200, "lbs"),
  4239. name: "Side",
  4240. image: {
  4241. source: "./media/characters/vulpes/side.svg",
  4242. extra: 577 / 549,
  4243. bottom: 11 / 588
  4244. }
  4245. },
  4246. back: {
  4247. height: math.unit(6, "feet"),
  4248. weight: math.unit(200, "lbs"),
  4249. name: "Back",
  4250. image: {
  4251. source: "./media/characters/vulpes/back.svg",
  4252. extra: 573 / 549,
  4253. bottom: 20 / 593
  4254. }
  4255. },
  4256. feet: {
  4257. height: math.unit(1.276, "feet"),
  4258. name: "Feet",
  4259. image: {
  4260. source: "./media/characters/vulpes/feet.svg"
  4261. }
  4262. },
  4263. maw: {
  4264. height: math.unit(1.18, "feet"),
  4265. name: "Maw",
  4266. image: {
  4267. source: "./media/characters/vulpes/maw.svg"
  4268. }
  4269. },
  4270. },
  4271. [
  4272. {
  4273. name: "Micro",
  4274. height: math.unit(2, "inches")
  4275. },
  4276. {
  4277. name: "Normal",
  4278. height: math.unit(6.3, "feet")
  4279. },
  4280. {
  4281. name: "Macro",
  4282. height: math.unit(850, "feet")
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(7500, "feet"),
  4287. default: true
  4288. },
  4289. {
  4290. name: "Gigamacro",
  4291. height: math.unit(570000, "miles")
  4292. }
  4293. ]
  4294. ))
  4295. characterMakers.push(() => makeCharacter(
  4296. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4297. {
  4298. front: {
  4299. height: math.unit(6, "feet"),
  4300. weight: math.unit(210, "lbs"),
  4301. name: "Front",
  4302. image: {
  4303. source: "./media/characters/rain-fallen/front.svg"
  4304. }
  4305. },
  4306. side: {
  4307. height: math.unit(6, "feet"),
  4308. weight: math.unit(210, "lbs"),
  4309. name: "Side",
  4310. image: {
  4311. source: "./media/characters/rain-fallen/side.svg"
  4312. }
  4313. },
  4314. back: {
  4315. height: math.unit(6, "feet"),
  4316. weight: math.unit(210, "lbs"),
  4317. name: "Back",
  4318. image: {
  4319. source: "./media/characters/rain-fallen/back.svg"
  4320. }
  4321. },
  4322. feral: {
  4323. height: math.unit(9, "feet"),
  4324. weight: math.unit(700, "lbs"),
  4325. name: "Feral",
  4326. image: {
  4327. source: "./media/characters/rain-fallen/feral.svg"
  4328. }
  4329. },
  4330. },
  4331. [
  4332. {
  4333. name: "Meddling with Mortals",
  4334. height: math.unit(8 + 8/12, "feet")
  4335. },
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(5, "meter")
  4339. },
  4340. {
  4341. name: "Macro",
  4342. height: math.unit(150, "meter"),
  4343. default: true
  4344. },
  4345. {
  4346. name: "Megamacro",
  4347. height: math.unit(278e6, "meter")
  4348. },
  4349. {
  4350. name: "Gigamacro",
  4351. height: math.unit(2e9, "meter")
  4352. },
  4353. {
  4354. name: "Teramacro",
  4355. height: math.unit(8e12, "meter")
  4356. },
  4357. {
  4358. name: "Devourer",
  4359. height: math.unit(14, "zettameters")
  4360. },
  4361. {
  4362. name: "Scarlet King",
  4363. height: math.unit(18, "yottameters")
  4364. },
  4365. {
  4366. name: "Void",
  4367. height: math.unit(6.66e66, "yottameters")
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4373. {
  4374. standing: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(180, "lbs"),
  4377. name: "Standing",
  4378. image: {
  4379. source: "./media/characters/zaakira/standing.svg"
  4380. }
  4381. },
  4382. laying: {
  4383. height: math.unit(3, "feet"),
  4384. weight: math.unit(180, "lbs"),
  4385. name: "Laying",
  4386. image: {
  4387. source: "./media/characters/zaakira/laying.svg"
  4388. }
  4389. },
  4390. },
  4391. [
  4392. {
  4393. name: "Normal",
  4394. height: math.unit(12, "feet")
  4395. },
  4396. {
  4397. name: "Macro",
  4398. height: math.unit(279, "feet"),
  4399. default: true
  4400. }
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4405. {
  4406. femSfw: {
  4407. height: math.unit(8, "feet"),
  4408. weight: math.unit(350, "lb"),
  4409. name: "Fem",
  4410. image: {
  4411. source: "./media/characters/sigvald/fem-sfw.svg",
  4412. extra: 182 / 164,
  4413. bottom: 8.7 / 190.5
  4414. }
  4415. },
  4416. femNsfw: {
  4417. height: math.unit(8, "feet"),
  4418. weight: math.unit(350, "lb"),
  4419. name: "Fem (NSFW)",
  4420. image: {
  4421. source: "./media/characters/sigvald/fem-nsfw.svg",
  4422. extra: 182 / 164,
  4423. bottom: 8.7 / 190.5
  4424. }
  4425. },
  4426. maleNsfw: {
  4427. height: math.unit(8, "feet"),
  4428. weight: math.unit(350, "lb"),
  4429. name: "Male (NSFW)",
  4430. image: {
  4431. source: "./media/characters/sigvald/male-nsfw.svg",
  4432. extra: 182 / 164,
  4433. bottom: 8.7 / 190.5
  4434. }
  4435. },
  4436. hermNsfw: {
  4437. height: math.unit(8, "feet"),
  4438. weight: math.unit(350, "lb"),
  4439. name: "Herm (NSFW)",
  4440. image: {
  4441. source: "./media/characters/sigvald/herm-nsfw.svg",
  4442. extra: 182 / 164,
  4443. bottom: 8.7 / 190.5
  4444. }
  4445. },
  4446. dick: {
  4447. height: math.unit(2.36, "feet"),
  4448. name: "Dick",
  4449. image: {
  4450. source: "./media/characters/sigvald/dick.svg"
  4451. }
  4452. },
  4453. eye: {
  4454. height: math.unit(0.31, "feet"),
  4455. name: "Eye",
  4456. image: {
  4457. source: "./media/characters/sigvald/eye.svg"
  4458. }
  4459. },
  4460. mouth: {
  4461. height: math.unit(0.92, "feet"),
  4462. name: "Mouth",
  4463. image: {
  4464. source: "./media/characters/sigvald/mouth.svg"
  4465. }
  4466. },
  4467. paws: {
  4468. height: math.unit(2.2, "feet"),
  4469. name: "Paws",
  4470. image: {
  4471. source: "./media/characters/sigvald/paws.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Normal",
  4478. height: math.unit(8, "feet")
  4479. },
  4480. {
  4481. name: "Large",
  4482. height: math.unit(12, "feet")
  4483. },
  4484. {
  4485. name: "Larger",
  4486. height: math.unit(20, "feet")
  4487. },
  4488. {
  4489. name: "Macro",
  4490. height: math.unit(150, "feet")
  4491. },
  4492. {
  4493. name: "Macro+",
  4494. height: math.unit(200, "feet"),
  4495. default: true
  4496. },
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4501. {
  4502. side: {
  4503. height: math.unit(12, "feet"),
  4504. weight: math.unit(2000, "kg"),
  4505. name: "Side",
  4506. image: {
  4507. source: "./media/characters/scott/side.svg",
  4508. extra: 754 / 724,
  4509. bottom: 0.069
  4510. }
  4511. },
  4512. upright: {
  4513. height: math.unit(12, "feet"),
  4514. weight: math.unit(2000, "kg"),
  4515. name: "Upright",
  4516. image: {
  4517. source: "./media/characters/scott/upright.svg",
  4518. extra: 3881 / 3722,
  4519. bottom: 0.05
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(12, "feet"),
  4527. default: true
  4528. },
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4533. {
  4534. side: {
  4535. height: math.unit(8, "meters"),
  4536. weight: math.unit(84755, "lbs"),
  4537. name: "Side",
  4538. image: {
  4539. source: "./media/characters/tobias/side.svg",
  4540. extra: 1474 / 1096,
  4541. bottom: 38.9 / 1513.1235
  4542. }
  4543. },
  4544. },
  4545. [
  4546. {
  4547. name: "Normal",
  4548. height: math.unit(8, "meters"),
  4549. default: true
  4550. },
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4555. {
  4556. front: {
  4557. height: math.unit(5.5, "feet"),
  4558. weight: math.unit(400, "lbs"),
  4559. name: "Front",
  4560. image: {
  4561. source: "./media/characters/kieran/front.svg",
  4562. extra: 2694 / 2364,
  4563. bottom: 217 / 2908
  4564. }
  4565. },
  4566. side: {
  4567. height: math.unit(5.5, "feet"),
  4568. weight: math.unit(400, "lbs"),
  4569. name: "Side",
  4570. image: {
  4571. source: "./media/characters/kieran/side.svg",
  4572. extra: 875 / 777,
  4573. bottom: 84.6 / 959
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(5.5, "feet"),
  4581. default: true
  4582. },
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4587. {
  4588. side: {
  4589. height: math.unit(2, "meters"),
  4590. weight: math.unit(70, "kg"),
  4591. name: "Side",
  4592. image: {
  4593. source: "./media/characters/sanya/side.svg",
  4594. bottom: 0.02,
  4595. extra: 1.02
  4596. }
  4597. },
  4598. },
  4599. [
  4600. {
  4601. name: "Small",
  4602. height: math.unit(2, "meters")
  4603. },
  4604. {
  4605. name: "Normal",
  4606. height: math.unit(3, "meters")
  4607. },
  4608. {
  4609. name: "Macro",
  4610. height: math.unit(16, "meters"),
  4611. default: true
  4612. },
  4613. ]
  4614. ))
  4615. characterMakers.push(() => makeCharacter(
  4616. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4617. {
  4618. front: {
  4619. height: math.unit(2, "meters"),
  4620. weight: math.unit(120, "kg"),
  4621. name: "Front",
  4622. image: {
  4623. source: "./media/characters/miranda/front.svg",
  4624. extra: 195 / 185,
  4625. bottom: 10.9 / 206.5
  4626. }
  4627. },
  4628. back: {
  4629. height: math.unit(2, "meters"),
  4630. weight: math.unit(120, "kg"),
  4631. name: "Back",
  4632. image: {
  4633. source: "./media/characters/miranda/back.svg",
  4634. extra: 201 / 193,
  4635. bottom: 2.3 / 203.7
  4636. }
  4637. },
  4638. },
  4639. [
  4640. {
  4641. name: "Normal",
  4642. height: math.unit(10, "feet"),
  4643. default: true
  4644. }
  4645. ]
  4646. ))
  4647. characterMakers.push(() => makeCharacter(
  4648. { name: "James", species: ["deer"], tags: ["anthro"] },
  4649. {
  4650. side: {
  4651. height: math.unit(2, "meters"),
  4652. weight: math.unit(100, "kg"),
  4653. name: "Front",
  4654. image: {
  4655. source: "./media/characters/james/front.svg",
  4656. extra: 10 / 8.5
  4657. }
  4658. },
  4659. },
  4660. [
  4661. {
  4662. name: "Normal",
  4663. height: math.unit(8.5, "feet"),
  4664. default: true
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4670. {
  4671. side: {
  4672. height: math.unit(9.5, "feet"),
  4673. weight: math.unit(2500, "lbs"),
  4674. name: "Side",
  4675. image: {
  4676. source: "./media/characters/heather/side.svg"
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(9.5, "feet"),
  4684. default: true
  4685. }
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4690. {
  4691. side: {
  4692. height: math.unit(6.5, "feet"),
  4693. weight: math.unit(400, "lbs"),
  4694. name: "Side",
  4695. image: {
  4696. source: "./media/characters/lukas/side.svg",
  4697. extra: 7.25 / 6.5
  4698. }
  4699. },
  4700. },
  4701. [
  4702. {
  4703. name: "Normal",
  4704. height: math.unit(6.5, "feet"),
  4705. default: true
  4706. }
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4711. {
  4712. side: {
  4713. height: math.unit(5, "feet"),
  4714. weight: math.unit(3000, "lbs"),
  4715. name: "Side",
  4716. image: {
  4717. source: "./media/characters/louise/side.svg"
  4718. }
  4719. },
  4720. },
  4721. [
  4722. {
  4723. name: "Normal",
  4724. height: math.unit(5, "feet"),
  4725. default: true
  4726. }
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4731. {
  4732. side: {
  4733. height: math.unit(6, "feet"),
  4734. weight: math.unit(150, "lbs"),
  4735. name: "Side",
  4736. image: {
  4737. source: "./media/characters/ramona/side.svg"
  4738. }
  4739. },
  4740. },
  4741. [
  4742. {
  4743. name: "Normal",
  4744. height: math.unit(5.3, "meters"),
  4745. default: true
  4746. },
  4747. {
  4748. name: "Macro",
  4749. height: math.unit(20, "stories")
  4750. },
  4751. {
  4752. name: "Macro+",
  4753. height: math.unit(50, "stories")
  4754. },
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4759. {
  4760. standing: {
  4761. height: math.unit(5.75, "feet"),
  4762. weight: math.unit(160, "lbs"),
  4763. name: "Standing",
  4764. image: {
  4765. source: "./media/characters/deerpuff/standing.svg",
  4766. extra: 682 / 624
  4767. }
  4768. },
  4769. sitting: {
  4770. height: math.unit(5.75 / 1.79, "feet"),
  4771. weight: math.unit(160, "lbs"),
  4772. name: "Sitting",
  4773. image: {
  4774. source: "./media/characters/deerpuff/sitting.svg",
  4775. bottom: 44 / 400,
  4776. extra: 1
  4777. }
  4778. },
  4779. taurLaying: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(400, "lbs"),
  4782. name: "Taur (Laying)",
  4783. image: {
  4784. source: "./media/characters/deerpuff/taur-laying.svg"
  4785. }
  4786. },
  4787. },
  4788. [
  4789. {
  4790. name: "Puffball",
  4791. height: math.unit(6, "inches")
  4792. },
  4793. {
  4794. name: "Normalpuff",
  4795. height: math.unit(5.75, "feet")
  4796. },
  4797. {
  4798. name: "Macropuff",
  4799. height: math.unit(1500, "feet"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Megapuff",
  4804. height: math.unit(500, "miles")
  4805. },
  4806. {
  4807. name: "Gigapuff",
  4808. height: math.unit(250000, "miles")
  4809. },
  4810. {
  4811. name: "Omegapuff",
  4812. height: math.unit(1000, "lightyears")
  4813. },
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4818. {
  4819. stomping: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(170, "lbs"),
  4822. name: "Stomping",
  4823. image: {
  4824. source: "./media/characters/vivian/stomping.svg"
  4825. }
  4826. },
  4827. sitting: {
  4828. height: math.unit(6 / 1.75, "feet"),
  4829. weight: math.unit(170, "lbs"),
  4830. name: "Sitting",
  4831. image: {
  4832. source: "./media/characters/vivian/sitting.svg",
  4833. bottom: 1 / 6.4,
  4834. extra: 1,
  4835. }
  4836. },
  4837. },
  4838. [
  4839. {
  4840. name: "Normal",
  4841. height: math.unit(7, "feet"),
  4842. default: true
  4843. },
  4844. {
  4845. name: "Macro",
  4846. height: math.unit(10, "stories")
  4847. },
  4848. {
  4849. name: "Macro+",
  4850. height: math.unit(30, "stories")
  4851. },
  4852. {
  4853. name: "Megamacro",
  4854. height: math.unit(10, "miles")
  4855. },
  4856. {
  4857. name: "Megamacro+",
  4858. height: math.unit(2750000, "meters")
  4859. },
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4864. {
  4865. front: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(160, "lbs"),
  4868. name: "Front",
  4869. image: {
  4870. source: "./media/characters/prince/front.svg",
  4871. extra: 3400 / 3000
  4872. }
  4873. },
  4874. jumping: {
  4875. height: math.unit(6, "feet"),
  4876. weight: math.unit(160, "lbs"),
  4877. name: "Jumping",
  4878. image: {
  4879. source: "./media/characters/prince/jump.svg",
  4880. extra: 2555 / 2134
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(7.75, "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Not cute",
  4892. height: math.unit(17, "feet")
  4893. },
  4894. {
  4895. name: "I said NOT",
  4896. height: math.unit(91, "feet")
  4897. },
  4898. {
  4899. name: "Please stop",
  4900. height: math.unit(560, "feet")
  4901. },
  4902. {
  4903. name: "What have you done",
  4904. height: math.unit(2200, "feet")
  4905. },
  4906. {
  4907. name: "Deer God",
  4908. height: math.unit(3.6, "miles")
  4909. },
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4914. {
  4915. standing: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(300, "lbs"),
  4918. name: "Standing",
  4919. image: {
  4920. source: "./media/characters/psymon/standing.svg",
  4921. extra: 1888 / 1810,
  4922. bottom: 0.05
  4923. }
  4924. },
  4925. slithering: {
  4926. height: math.unit(6, "feet"),
  4927. weight: math.unit(300, "lbs"),
  4928. name: "Slithering",
  4929. image: {
  4930. source: "./media/characters/psymon/slithering.svg",
  4931. extra: 1330 / 1224
  4932. }
  4933. },
  4934. slitheringAlt: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(300, "lbs"),
  4937. name: "Slithering (Alt)",
  4938. image: {
  4939. source: "./media/characters/psymon/slithering-alt.svg",
  4940. extra: 1330 / 1224
  4941. }
  4942. },
  4943. },
  4944. [
  4945. {
  4946. name: "Normal",
  4947. height: math.unit(11.25, "feet"),
  4948. default: true
  4949. },
  4950. {
  4951. name: "Large",
  4952. height: math.unit(27, "feet")
  4953. },
  4954. {
  4955. name: "Giant",
  4956. height: math.unit(87, "feet")
  4957. },
  4958. {
  4959. name: "Macro",
  4960. height: math.unit(365, "feet")
  4961. },
  4962. {
  4963. name: "Megamacro",
  4964. height: math.unit(3, "miles")
  4965. },
  4966. {
  4967. name: "World Serpent",
  4968. height: math.unit(8000, "miles")
  4969. },
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4974. {
  4975. front: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(180, "lbs"),
  4978. name: "Front",
  4979. image: {
  4980. source: "./media/characters/daimos/front.svg",
  4981. extra: 4160 / 3897,
  4982. bottom: 0.021
  4983. }
  4984. }
  4985. },
  4986. [
  4987. {
  4988. name: "Normal",
  4989. height: math.unit(8, "feet"),
  4990. default: true
  4991. },
  4992. {
  4993. name: "Big Dog",
  4994. height: math.unit(22, "feet")
  4995. },
  4996. {
  4997. name: "Macro",
  4998. height: math.unit(127, "feet")
  4999. },
  5000. {
  5001. name: "Megamacro",
  5002. height: math.unit(3600, "feet")
  5003. },
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5008. {
  5009. side: {
  5010. height: math.unit(6, "feet"),
  5011. weight: math.unit(180, "lbs"),
  5012. name: "Side",
  5013. image: {
  5014. source: "./media/characters/blake/side.svg",
  5015. extra: 1212 / 1120,
  5016. bottom: 0.05
  5017. }
  5018. },
  5019. crouched: {
  5020. height: math.unit(6 * 0.57, "feet"),
  5021. weight: math.unit(180, "lbs"),
  5022. name: "Crouched",
  5023. image: {
  5024. source: "./media/characters/blake/crouched.svg",
  5025. extra: 840 / 587,
  5026. bottom: 0.04
  5027. }
  5028. },
  5029. bent: {
  5030. height: math.unit(6 * 0.75, "feet"),
  5031. weight: math.unit(180, "lbs"),
  5032. name: "Bent",
  5033. image: {
  5034. source: "./media/characters/blake/bent.svg",
  5035. extra: 592 / 544,
  5036. bottom: 0.035
  5037. }
  5038. },
  5039. },
  5040. [
  5041. {
  5042. name: "Normal",
  5043. height: math.unit(8 + 1 / 6, "feet"),
  5044. default: true
  5045. },
  5046. {
  5047. name: "Big Backside",
  5048. height: math.unit(37, "feet")
  5049. },
  5050. {
  5051. name: "Subway Shredder",
  5052. height: math.unit(72, "feet")
  5053. },
  5054. {
  5055. name: "City Carver",
  5056. height: math.unit(1675, "feet")
  5057. },
  5058. {
  5059. name: "Tectonic Tweaker",
  5060. height: math.unit(2300, "miles")
  5061. },
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(180, "lbs"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/guisetto/front.svg",
  5073. extra: 856 / 817,
  5074. bottom: 0.06
  5075. }
  5076. },
  5077. airborne: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(180, "lbs"),
  5080. name: "Airborne",
  5081. image: {
  5082. source: "./media/characters/guisetto/airborne.svg",
  5083. extra: 584 / 525
  5084. }
  5085. },
  5086. },
  5087. [
  5088. {
  5089. name: "Normal",
  5090. height: math.unit(10 + 11 / 12, "feet"),
  5091. default: true
  5092. },
  5093. {
  5094. name: "Large",
  5095. height: math.unit(35, "feet")
  5096. },
  5097. {
  5098. name: "Macro",
  5099. height: math.unit(475, "feet")
  5100. },
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5105. {
  5106. front: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(180, "lbs"),
  5109. name: "Front",
  5110. image: {
  5111. source: "./media/characters/luxor/front.svg",
  5112. extra: 2940 / 2152
  5113. }
  5114. },
  5115. back: {
  5116. height: math.unit(6, "feet"),
  5117. weight: math.unit(180, "lbs"),
  5118. name: "Back",
  5119. image: {
  5120. source: "./media/characters/luxor/back.svg",
  5121. extra: 1083 / 960
  5122. }
  5123. },
  5124. },
  5125. [
  5126. {
  5127. name: "Normal",
  5128. height: math.unit(5 + 5 / 6, "feet"),
  5129. default: true
  5130. },
  5131. {
  5132. name: "Lamp",
  5133. height: math.unit(50, "feet")
  5134. },
  5135. {
  5136. name: "Lämp",
  5137. height: math.unit(300, "feet")
  5138. },
  5139. {
  5140. name: "The sun is a lamp",
  5141. height: math.unit(250000, "miles")
  5142. },
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5147. {
  5148. front: {
  5149. height: math.unit(6, "feet"),
  5150. weight: math.unit(50, "lbs"),
  5151. name: "Front",
  5152. image: {
  5153. source: "./media/characters/huoyan/front.svg"
  5154. }
  5155. },
  5156. side: {
  5157. height: math.unit(6, "feet"),
  5158. weight: math.unit(180, "lbs"),
  5159. name: "Side",
  5160. image: {
  5161. source: "./media/characters/huoyan/side.svg"
  5162. }
  5163. },
  5164. },
  5165. [
  5166. {
  5167. name: "Chef",
  5168. height: math.unit(9, "feet")
  5169. },
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(65, "feet"),
  5173. default: true
  5174. },
  5175. {
  5176. name: "Macro",
  5177. height: math.unit(780, "feet")
  5178. },
  5179. {
  5180. name: "Flaming Mountain",
  5181. height: math.unit(4.8, "miles")
  5182. },
  5183. {
  5184. name: "Celestial",
  5185. height: math.unit(765000, "miles")
  5186. },
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5191. {
  5192. front: {
  5193. height: math.unit(5 + 3 / 4, "feet"),
  5194. weight: math.unit(120, "lbs"),
  5195. name: "Front",
  5196. image: {
  5197. source: "./media/characters/tails/front.svg"
  5198. }
  5199. }
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(5 + 3 / 4, "feet"),
  5205. default: true
  5206. }
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5211. {
  5212. front: {
  5213. height: math.unit(4, "feet"),
  5214. weight: math.unit(50, "lbs"),
  5215. name: "Front",
  5216. image: {
  5217. source: "./media/characters/rainy/front.svg"
  5218. }
  5219. }
  5220. },
  5221. [
  5222. {
  5223. name: "Macro",
  5224. height: math.unit(800, "feet"),
  5225. default: true
  5226. }
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5231. {
  5232. front: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(150, "lbs"),
  5235. name: "Front",
  5236. image: {
  5237. source: "./media/characters/rainier/front.svg"
  5238. }
  5239. }
  5240. },
  5241. [
  5242. {
  5243. name: "Micro",
  5244. height: math.unit(2, "mm"),
  5245. default: true
  5246. }
  5247. ]
  5248. ))
  5249. characterMakers.push(() => makeCharacter(
  5250. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5251. {
  5252. front: {
  5253. height: math.unit(6, "feet"),
  5254. weight: math.unit(180, "lbs"),
  5255. name: "Front",
  5256. image: {
  5257. source: "./media/characters/andy/front.svg"
  5258. }
  5259. }
  5260. },
  5261. [
  5262. {
  5263. name: "Normal",
  5264. height: math.unit(8, "feet"),
  5265. default: true
  5266. },
  5267. {
  5268. name: "Macro",
  5269. height: math.unit(1000, "feet")
  5270. },
  5271. {
  5272. name: "Megamacro",
  5273. height: math.unit(5, "miles")
  5274. },
  5275. {
  5276. name: "Gigamacro",
  5277. height: math.unit(5000, "miles")
  5278. },
  5279. ]
  5280. ))
  5281. characterMakers.push(() => makeCharacter(
  5282. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5283. {
  5284. front: {
  5285. height: math.unit(6, "feet"),
  5286. weight: math.unit(210, "lbs"),
  5287. name: "Front",
  5288. image: {
  5289. source: "./media/characters/cimmaron/front-sfw.svg",
  5290. extra: 701 / 676,
  5291. bottom: 0.046
  5292. }
  5293. },
  5294. back: {
  5295. height: math.unit(6, "feet"),
  5296. weight: math.unit(210, "lbs"),
  5297. name: "Back",
  5298. image: {
  5299. source: "./media/characters/cimmaron/back-sfw.svg",
  5300. extra: 701 / 676,
  5301. bottom: 0.046
  5302. }
  5303. },
  5304. frontNsfw: {
  5305. height: math.unit(6, "feet"),
  5306. weight: math.unit(210, "lbs"),
  5307. name: "Front (NSFW)",
  5308. image: {
  5309. source: "./media/characters/cimmaron/front-nsfw.svg",
  5310. extra: 701 / 676,
  5311. bottom: 0.046
  5312. }
  5313. },
  5314. backNsfw: {
  5315. height: math.unit(6, "feet"),
  5316. weight: math.unit(210, "lbs"),
  5317. name: "Back (NSFW)",
  5318. image: {
  5319. source: "./media/characters/cimmaron/back-nsfw.svg",
  5320. extra: 701 / 676,
  5321. bottom: 0.046
  5322. }
  5323. },
  5324. dick: {
  5325. height: math.unit(1.714, "feet"),
  5326. name: "Dick",
  5327. image: {
  5328. source: "./media/characters/cimmaron/dick.svg"
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(6, "feet"),
  5336. default: true
  5337. },
  5338. {
  5339. name: "Macro Mayor",
  5340. height: math.unit(350, "meters")
  5341. },
  5342. ]
  5343. ))
  5344. characterMakers.push(() => makeCharacter(
  5345. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5346. {
  5347. front: {
  5348. height: math.unit(6, "feet"),
  5349. weight: math.unit(200, "lbs"),
  5350. name: "Front",
  5351. image: {
  5352. source: "./media/characters/akari/front.svg",
  5353. extra: 962 / 901,
  5354. bottom: 0.04
  5355. }
  5356. }
  5357. },
  5358. [
  5359. {
  5360. name: "Micro",
  5361. height: math.unit(5, "inches"),
  5362. default: true
  5363. },
  5364. {
  5365. name: "Normal",
  5366. height: math.unit(7, "feet")
  5367. },
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(140, "lbs"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/cynosura/front.svg",
  5379. extra: 896 / 847
  5380. }
  5381. },
  5382. back: {
  5383. height: math.unit(6, "feet"),
  5384. weight: math.unit(140, "lbs"),
  5385. name: "Back",
  5386. image: {
  5387. source: "./media/characters/cynosura/back.svg",
  5388. extra: 1365 / 1250
  5389. }
  5390. },
  5391. },
  5392. [
  5393. {
  5394. name: "Micro",
  5395. height: math.unit(4, "inches")
  5396. },
  5397. {
  5398. name: "Normal",
  5399. height: math.unit(5.75, "feet"),
  5400. default: true
  5401. },
  5402. {
  5403. name: "Tall",
  5404. height: math.unit(10, "feet")
  5405. },
  5406. {
  5407. name: "Big",
  5408. height: math.unit(20, "feet")
  5409. },
  5410. {
  5411. name: "Macro",
  5412. height: math.unit(50, "feet")
  5413. },
  5414. ]
  5415. ))
  5416. characterMakers.push(() => makeCharacter(
  5417. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5418. {
  5419. front: {
  5420. height: math.unit(6, "feet"),
  5421. weight: math.unit(170, "lbs"),
  5422. name: "Front",
  5423. image: {
  5424. source: "./media/characters/gin/front.svg",
  5425. extra: 1.053,
  5426. bottom: 0.025
  5427. }
  5428. },
  5429. foot: {
  5430. height: math.unit(6 / 4.25, "feet"),
  5431. name: "Foot",
  5432. image: {
  5433. source: "./media/characters/gin/foot.svg"
  5434. }
  5435. },
  5436. sole: {
  5437. height: math.unit(6 / 4.40, "feet"),
  5438. name: "Sole",
  5439. image: {
  5440. source: "./media/characters/gin/sole.svg"
  5441. }
  5442. },
  5443. },
  5444. [
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(13 + 2 / 12, "feet")
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(1500, "feet")
  5452. },
  5453. {
  5454. name: "Megamacro",
  5455. height: math.unit(200, "miles"),
  5456. default: true
  5457. },
  5458. {
  5459. name: "Gigamacro",
  5460. height: math.unit(500, "megameters")
  5461. },
  5462. {
  5463. name: "Teramacro",
  5464. height: math.unit(15, "lightyears")
  5465. }
  5466. ]
  5467. ))
  5468. characterMakers.push(() => makeCharacter(
  5469. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5470. {
  5471. front: {
  5472. height: math.unit(6 + 1 / 6, "feet"),
  5473. weight: math.unit(178, "lbs"),
  5474. name: "Front",
  5475. image: {
  5476. source: "./media/characters/guy/front.svg"
  5477. }
  5478. }
  5479. },
  5480. [
  5481. {
  5482. name: "Normal",
  5483. height: math.unit(6 + 1 / 6, "feet"),
  5484. default: true
  5485. },
  5486. {
  5487. name: "Large",
  5488. height: math.unit(25 + 7 / 12, "feet")
  5489. },
  5490. {
  5491. name: "Macro",
  5492. height: math.unit(60 + 9 / 12, "feet")
  5493. },
  5494. {
  5495. name: "Macro+",
  5496. height: math.unit(246, "feet")
  5497. },
  5498. {
  5499. name: "Macro++",
  5500. height: math.unit(878, "feet")
  5501. }
  5502. ]
  5503. ))
  5504. characterMakers.push(() => makeCharacter(
  5505. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5506. {
  5507. front: {
  5508. height: math.unit(9, "feet"),
  5509. weight: math.unit(800, "lbs"),
  5510. name: "Front",
  5511. image: {
  5512. source: "./media/characters/tiberius/front.svg",
  5513. extra: 2295 / 2071
  5514. }
  5515. },
  5516. back: {
  5517. height: math.unit(9, "feet"),
  5518. weight: math.unit(800, "lbs"),
  5519. name: "Back",
  5520. image: {
  5521. source: "./media/characters/tiberius/back.svg",
  5522. extra: 2373 / 2160
  5523. }
  5524. },
  5525. },
  5526. [
  5527. {
  5528. name: "Normal",
  5529. height: math.unit(9, "feet"),
  5530. default: true
  5531. }
  5532. ]
  5533. ))
  5534. characterMakers.push(() => makeCharacter(
  5535. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5536. {
  5537. front: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(600, "lbs"),
  5540. name: "Front",
  5541. image: {
  5542. source: "./media/characters/surgo/front.svg",
  5543. extra: 3591 / 2227
  5544. }
  5545. },
  5546. back: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(600, "lbs"),
  5549. name: "Back",
  5550. image: {
  5551. source: "./media/characters/surgo/back.svg",
  5552. extra: 3557 / 2228
  5553. }
  5554. },
  5555. laying: {
  5556. height: math.unit(6 * 0.85, "feet"),
  5557. weight: math.unit(600, "lbs"),
  5558. name: "Laying",
  5559. image: {
  5560. source: "./media/characters/surgo/laying.svg"
  5561. }
  5562. },
  5563. },
  5564. [
  5565. {
  5566. name: "Normal",
  5567. height: math.unit(6, "feet"),
  5568. default: true
  5569. }
  5570. ]
  5571. ))
  5572. characterMakers.push(() => makeCharacter(
  5573. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5574. {
  5575. side: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(150, "lbs"),
  5578. name: "Side",
  5579. image: {
  5580. source: "./media/characters/cibus/side.svg",
  5581. extra: 800 / 400
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(6, "feet"),
  5589. default: true
  5590. }
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(240, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/nibbles/front.svg"
  5602. }
  5603. },
  5604. side: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(240, "lbs"),
  5607. name: "Side",
  5608. image: {
  5609. source: "./media/characters/nibbles/side.svg"
  5610. }
  5611. },
  5612. },
  5613. [
  5614. {
  5615. name: "Normal",
  5616. height: math.unit(9, "feet"),
  5617. default: true
  5618. }
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5623. {
  5624. side: {
  5625. height: math.unit(5 + 1 / 6, "feet"),
  5626. weight: math.unit(130, "lbs"),
  5627. name: "Side",
  5628. image: {
  5629. source: "./media/characters/rikky/side.svg",
  5630. extra: 851 / 801
  5631. }
  5632. },
  5633. },
  5634. [
  5635. {
  5636. name: "Normal",
  5637. height: math.unit(5 + 1 / 6, "feet")
  5638. },
  5639. {
  5640. name: "Macro",
  5641. height: math.unit(152, "feet"),
  5642. default: true
  5643. },
  5644. {
  5645. name: "Megamacro",
  5646. height: math.unit(7, "miles")
  5647. }
  5648. ]
  5649. ))
  5650. characterMakers.push(() => makeCharacter(
  5651. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5652. {
  5653. side: {
  5654. height: math.unit(370, "cm"),
  5655. weight: math.unit(350, "lbs"),
  5656. name: "Side",
  5657. image: {
  5658. source: "./media/characters/malfressa/side.svg"
  5659. }
  5660. },
  5661. walking: {
  5662. height: math.unit(370, "cm"),
  5663. weight: math.unit(350, "lbs"),
  5664. name: "Walking",
  5665. image: {
  5666. source: "./media/characters/malfressa/walking.svg"
  5667. }
  5668. },
  5669. feral: {
  5670. height: math.unit(2500, "cm"),
  5671. weight: math.unit(100000, "lbs"),
  5672. name: "Feral",
  5673. image: {
  5674. source: "./media/characters/malfressa/feral.svg",
  5675. extra: 2108 / 837,
  5676. bottom: 0.02
  5677. }
  5678. },
  5679. },
  5680. [
  5681. {
  5682. name: "Normal",
  5683. height: math.unit(370, "cm")
  5684. },
  5685. {
  5686. name: "Macro",
  5687. height: math.unit(300, "meters"),
  5688. default: true
  5689. }
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5694. {
  5695. front: {
  5696. height: math.unit(6, "feet"),
  5697. weight: math.unit(60, "kg"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/jaro/front.svg"
  5701. }
  5702. },
  5703. back: {
  5704. height: math.unit(6, "feet"),
  5705. weight: math.unit(60, "kg"),
  5706. name: "Back",
  5707. image: {
  5708. source: "./media/characters/jaro/back.svg"
  5709. }
  5710. },
  5711. },
  5712. [
  5713. {
  5714. name: "Micro",
  5715. height: math.unit(7, "inches")
  5716. },
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(5.5, "feet"),
  5720. default: true
  5721. },
  5722. {
  5723. name: "Minimacro",
  5724. height: math.unit(20, "feet")
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(200, "meters")
  5729. }
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5734. {
  5735. front: {
  5736. height: math.unit(6, "feet"),
  5737. weight: math.unit(195, "lb"),
  5738. name: "Front",
  5739. image: {
  5740. source: "./media/characters/rogue/front.svg"
  5741. }
  5742. },
  5743. },
  5744. [
  5745. {
  5746. name: "Macro",
  5747. height: math.unit(90, "feet"),
  5748. default: true
  5749. },
  5750. ]
  5751. ))
  5752. characterMakers.push(() => makeCharacter(
  5753. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5754. {
  5755. front: {
  5756. height: math.unit(5 + 8 / 12, "feet"),
  5757. weight: math.unit(140, "lb"),
  5758. name: "Front",
  5759. image: {
  5760. source: "./media/characters/piper/front.svg",
  5761. extra: 3948/3655,
  5762. bottom: 0/3948
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Micro",
  5769. height: math.unit(2, "inches")
  5770. },
  5771. {
  5772. name: "Normal",
  5773. height: math.unit(5 + 8 / 12, "feet")
  5774. },
  5775. {
  5776. name: "Macro",
  5777. height: math.unit(250, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Megamacro",
  5782. height: math.unit(7, "miles")
  5783. },
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(6, "feet"),
  5791. weight: math.unit(220, "lb"),
  5792. name: "Front",
  5793. image: {
  5794. source: "./media/characters/gemini/front.svg"
  5795. }
  5796. },
  5797. back: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(220, "lb"),
  5800. name: "Back",
  5801. image: {
  5802. source: "./media/characters/gemini/back.svg"
  5803. }
  5804. },
  5805. kneeling: {
  5806. height: math.unit(6 / 1.5, "feet"),
  5807. weight: math.unit(220, "lb"),
  5808. name: "Kneeling",
  5809. image: {
  5810. source: "./media/characters/gemini/kneeling.svg",
  5811. bottom: 0.02
  5812. }
  5813. },
  5814. },
  5815. [
  5816. {
  5817. name: "Macro",
  5818. height: math.unit(300, "meters"),
  5819. default: true
  5820. },
  5821. {
  5822. name: "Megamacro",
  5823. height: math.unit(6900, "meters")
  5824. },
  5825. ]
  5826. ))
  5827. characterMakers.push(() => makeCharacter(
  5828. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5829. {
  5830. anthro: {
  5831. height: math.unit(2.35, "meters"),
  5832. weight: math.unit(73, "kg"),
  5833. name: "Anthro",
  5834. image: {
  5835. source: "./media/characters/alicia/anthro.svg",
  5836. extra: 2571 / 2385,
  5837. bottom: 75 / 2648
  5838. }
  5839. },
  5840. paw: {
  5841. height: math.unit(1.32, "feet"),
  5842. name: "Paw",
  5843. image: {
  5844. source: "./media/characters/alicia/paw.svg"
  5845. }
  5846. },
  5847. feral: {
  5848. height: math.unit(1.69, "meters"),
  5849. weight: math.unit(73, "kg"),
  5850. name: "Feral",
  5851. image: {
  5852. source: "./media/characters/alicia/feral.svg",
  5853. extra: 2123 / 1715,
  5854. bottom: 222 / 2349
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Normal",
  5861. height: math.unit(2.35, "meters")
  5862. },
  5863. {
  5864. name: "Macro",
  5865. height: math.unit(60, "meters"),
  5866. default: true
  5867. },
  5868. {
  5869. name: "Megamacro",
  5870. height: math.unit(10000, "kilometers")
  5871. },
  5872. ]
  5873. ))
  5874. characterMakers.push(() => makeCharacter(
  5875. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5876. {
  5877. front: {
  5878. height: math.unit(7, "feet"),
  5879. weight: math.unit(250, "lbs"),
  5880. name: "Front",
  5881. image: {
  5882. source: "./media/characters/archy/front.svg"
  5883. }
  5884. }
  5885. },
  5886. [
  5887. {
  5888. name: "Micro",
  5889. height: math.unit(1, "inch")
  5890. },
  5891. {
  5892. name: "Shorty",
  5893. height: math.unit(5, "feet")
  5894. },
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(7, "feet")
  5898. },
  5899. {
  5900. name: "Macro",
  5901. height: math.unit(600, "meters"),
  5902. default: true
  5903. },
  5904. {
  5905. name: "Megamacro",
  5906. height: math.unit(1, "mile")
  5907. },
  5908. ]
  5909. ))
  5910. characterMakers.push(() => makeCharacter(
  5911. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5912. {
  5913. front: {
  5914. height: math.unit(1.65, "meters"),
  5915. weight: math.unit(74, "kg"),
  5916. name: "Front",
  5917. image: {
  5918. source: "./media/characters/berri/front.svg",
  5919. extra: 857 / 837,
  5920. bottom: 18 / 877
  5921. }
  5922. },
  5923. bum: {
  5924. height: math.unit(1.46, "feet"),
  5925. name: "Bum",
  5926. image: {
  5927. source: "./media/characters/berri/bum.svg"
  5928. }
  5929. },
  5930. mouth: {
  5931. height: math.unit(0.44, "feet"),
  5932. name: "Mouth",
  5933. image: {
  5934. source: "./media/characters/berri/mouth.svg"
  5935. }
  5936. },
  5937. paw: {
  5938. height: math.unit(0.826, "feet"),
  5939. name: "Paw",
  5940. image: {
  5941. source: "./media/characters/berri/paw.svg"
  5942. }
  5943. },
  5944. },
  5945. [
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(1.65, "meters")
  5949. },
  5950. {
  5951. name: "Macro",
  5952. height: math.unit(60, "m"),
  5953. default: true
  5954. },
  5955. {
  5956. name: "Megamacro",
  5957. height: math.unit(9.213, "km")
  5958. },
  5959. {
  5960. name: "Planet Eater",
  5961. height: math.unit(489, "megameters")
  5962. },
  5963. {
  5964. name: "Teramacro",
  5965. height: math.unit(2471635000000, "meters")
  5966. },
  5967. {
  5968. name: "Examacro",
  5969. height: math.unit(8.0624e+26, "meters")
  5970. }
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5975. {
  5976. front: {
  5977. height: math.unit(1.72, "meters"),
  5978. weight: math.unit(68, "kg"),
  5979. name: "Front",
  5980. image: {
  5981. source: "./media/characters/lexi/front.svg"
  5982. }
  5983. }
  5984. },
  5985. [
  5986. {
  5987. name: "Very Smol",
  5988. height: math.unit(10, "mm")
  5989. },
  5990. {
  5991. name: "Micro",
  5992. height: math.unit(6.8, "cm"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Normal",
  5997. height: math.unit(1.72, "m")
  5998. }
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(1.69, "meters"),
  6006. weight: math.unit(68, "kg"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/martin/front.svg",
  6010. extra: 596 / 581
  6011. }
  6012. }
  6013. },
  6014. [
  6015. {
  6016. name: "Micro",
  6017. height: math.unit(6.85, "cm"),
  6018. default: true
  6019. },
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(1.69, "m")
  6023. }
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6028. {
  6029. front: {
  6030. height: math.unit(1.69, "meters"),
  6031. weight: math.unit(68, "kg"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/juno/front.svg"
  6035. }
  6036. }
  6037. },
  6038. [
  6039. {
  6040. name: "Micro",
  6041. height: math.unit(7, "cm")
  6042. },
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(1.89, "m")
  6046. },
  6047. {
  6048. name: "Macro",
  6049. height: math.unit(353, "meters"),
  6050. default: true
  6051. }
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6056. {
  6057. front: {
  6058. height: math.unit(1.93, "meters"),
  6059. weight: math.unit(83, "kg"),
  6060. name: "Front",
  6061. image: {
  6062. source: "./media/characters/samantha/front.svg"
  6063. }
  6064. },
  6065. frontClothed: {
  6066. height: math.unit(1.93, "meters"),
  6067. weight: math.unit(83, "kg"),
  6068. name: "Front (Clothed)",
  6069. image: {
  6070. source: "./media/characters/samantha/front-clothed.svg"
  6071. }
  6072. },
  6073. back: {
  6074. height: math.unit(1.93, "meters"),
  6075. weight: math.unit(83, "kg"),
  6076. name: "Back",
  6077. image: {
  6078. source: "./media/characters/samantha/back.svg"
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(1.93, "m")
  6086. },
  6087. {
  6088. name: "Macro",
  6089. height: math.unit(74, "meters"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Macro+",
  6094. height: math.unit(223, "meters"),
  6095. },
  6096. {
  6097. name: "Megamacro",
  6098. height: math.unit(8381, "meters"),
  6099. },
  6100. {
  6101. name: "Megamacro+",
  6102. height: math.unit(12000, "kilometers")
  6103. },
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(1.92, "meters"),
  6111. weight: math.unit(80, "kg"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/dr-clay/front.svg"
  6115. }
  6116. },
  6117. frontClothed: {
  6118. height: math.unit(1.92, "meters"),
  6119. weight: math.unit(80, "kg"),
  6120. name: "Front (Clothed)",
  6121. image: {
  6122. source: "./media/characters/dr-clay/front-clothed.svg"
  6123. }
  6124. }
  6125. },
  6126. [
  6127. {
  6128. name: "Normal",
  6129. height: math.unit(1.92, "m")
  6130. },
  6131. {
  6132. name: "Macro",
  6133. height: math.unit(214, "meters"),
  6134. default: true
  6135. },
  6136. {
  6137. name: "Macro+",
  6138. height: math.unit(12.237, "meters"),
  6139. },
  6140. {
  6141. name: "Megamacro",
  6142. height: math.unit(557, "megameters"),
  6143. },
  6144. {
  6145. name: "Unimaginable",
  6146. height: math.unit(120e9, "lightyears")
  6147. },
  6148. ]
  6149. ))
  6150. characterMakers.push(() => makeCharacter(
  6151. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6152. {
  6153. front: {
  6154. height: math.unit(2, "meters"),
  6155. weight: math.unit(80, "kg"),
  6156. name: "Front",
  6157. image: {
  6158. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6159. }
  6160. }
  6161. },
  6162. [
  6163. {
  6164. name: "Teramacro",
  6165. height: math.unit(500000, "lightyears"),
  6166. default: true
  6167. },
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6172. {
  6173. front: {
  6174. height: math.unit(2, "meters"),
  6175. weight: math.unit(150, "kg"),
  6176. name: "Front",
  6177. image: {
  6178. source: "./media/characters/vemus/front.svg",
  6179. extra: 2384 / 2084,
  6180. bottom: 0.0123
  6181. }
  6182. }
  6183. },
  6184. [
  6185. {
  6186. name: "Normal",
  6187. height: math.unit(3.75, "meters"),
  6188. default: true
  6189. },
  6190. {
  6191. name: "Big",
  6192. height: math.unit(8, "meters")
  6193. },
  6194. {
  6195. name: "Macro",
  6196. height: math.unit(100, "meters")
  6197. },
  6198. {
  6199. name: "Macro+",
  6200. height: math.unit(1500, "meters")
  6201. },
  6202. {
  6203. name: "Stellar",
  6204. height: math.unit(14e8, "meters")
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(2, "meters"),
  6213. weight: math.unit(70, "kg"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/beherit/front.svg",
  6217. extra: 1408 / 1242
  6218. }
  6219. }
  6220. },
  6221. [
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(6, "feet")
  6225. },
  6226. {
  6227. name: "Lorg",
  6228. height: math.unit(25, "feet"),
  6229. default: true
  6230. },
  6231. {
  6232. name: "Lorger",
  6233. height: math.unit(75, "feet")
  6234. },
  6235. {
  6236. name: "Macro",
  6237. height: math.unit(200, "meters")
  6238. },
  6239. ]
  6240. ))
  6241. characterMakers.push(() => makeCharacter(
  6242. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6243. {
  6244. front: {
  6245. height: math.unit(2, "meters"),
  6246. weight: math.unit(150, "kg"),
  6247. name: "Front",
  6248. image: {
  6249. source: "./media/characters/everett/front.svg",
  6250. extra: 2038 / 1737,
  6251. bottom: 0.03
  6252. }
  6253. },
  6254. paw: {
  6255. height: math.unit(2 / 3.6, "meters"),
  6256. name: "Paw",
  6257. image: {
  6258. source: "./media/characters/everett/paw.svg"
  6259. }
  6260. },
  6261. },
  6262. [
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(15, "feet"),
  6266. default: true
  6267. },
  6268. {
  6269. name: "Lorg",
  6270. height: math.unit(70, "feet"),
  6271. default: true
  6272. },
  6273. {
  6274. name: "Lorger",
  6275. height: math.unit(250, "feet")
  6276. },
  6277. {
  6278. name: "Macro",
  6279. height: math.unit(500, "meters")
  6280. },
  6281. ]
  6282. ))
  6283. characterMakers.push(() => makeCharacter(
  6284. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6285. {
  6286. front: {
  6287. height: math.unit(2, "meters"),
  6288. weight: math.unit(86, "kg"),
  6289. name: "Front",
  6290. image: {
  6291. source: "./media/characters/rose/front.svg",
  6292. extra: 350/335,
  6293. bottom: 10/360
  6294. }
  6295. },
  6296. frontAlt: {
  6297. height: math.unit(1.6, "meters"),
  6298. weight: math.unit(86, "kg"),
  6299. name: "Front (Alt)",
  6300. image: {
  6301. source: "./media/characters/rose/front-alt.svg",
  6302. extra: 299/283,
  6303. bottom: 3/302
  6304. }
  6305. },
  6306. plush: {
  6307. height: math.unit(2, "meters"),
  6308. weight: math.unit(86/3, "kg"),
  6309. name: "Plush",
  6310. image: {
  6311. source: "./media/characters/rose/plush.svg",
  6312. extra: 361/337,
  6313. bottom: 11/372
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Mini-Micro",
  6320. height: math.unit(1, "cm")
  6321. },
  6322. {
  6323. name: "Micro",
  6324. height: math.unit(3.5, "inches"),
  6325. default: true
  6326. },
  6327. {
  6328. name: "Normal",
  6329. height: math.unit(6 + 1 / 6, "feet")
  6330. },
  6331. {
  6332. name: "Mini-Macro",
  6333. height: math.unit(9 + 10 / 12, "feet")
  6334. },
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(2, "meters"),
  6342. weight: math.unit(350, "lbs"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/regal/front.svg"
  6346. }
  6347. },
  6348. back: {
  6349. height: math.unit(2, "meters"),
  6350. weight: math.unit(350, "lbs"),
  6351. name: "Back",
  6352. image: {
  6353. source: "./media/characters/regal/back.svg"
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(350, "feet"),
  6361. default: true
  6362. }
  6363. ]
  6364. ))
  6365. characterMakers.push(() => makeCharacter(
  6366. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6367. {
  6368. front: {
  6369. height: math.unit(4 + 11 / 12, "feet"),
  6370. weight: math.unit(100, "lbs"),
  6371. name: "Front",
  6372. image: {
  6373. source: "./media/characters/opal/front.svg"
  6374. }
  6375. },
  6376. frontAlt: {
  6377. height: math.unit(4 + 11 / 12, "feet"),
  6378. weight: math.unit(100, "lbs"),
  6379. name: "Front (Alt)",
  6380. image: {
  6381. source: "./media/characters/opal/front-alt.svg"
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Small",
  6388. height: math.unit(4 + 11 / 12, "feet")
  6389. },
  6390. {
  6391. name: "Normal",
  6392. height: math.unit(20, "feet"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(120, "feet")
  6398. },
  6399. {
  6400. name: "Megamacro",
  6401. height: math.unit(80, "miles")
  6402. },
  6403. {
  6404. name: "True Size",
  6405. height: math.unit(100000, "lightyears")
  6406. },
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(200, "lbs"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/vector-wuff/front.svg"
  6418. }
  6419. }
  6420. },
  6421. [
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(2.8, "meters")
  6425. },
  6426. {
  6427. name: "Macro",
  6428. height: math.unit(450, "meters"),
  6429. default: true
  6430. },
  6431. {
  6432. name: "Megamacro",
  6433. height: math.unit(15, "kilometers")
  6434. }
  6435. ]
  6436. ))
  6437. characterMakers.push(() => makeCharacter(
  6438. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6439. {
  6440. front: {
  6441. height: math.unit(6, "feet"),
  6442. weight: math.unit(256, "lbs"),
  6443. name: "Front",
  6444. image: {
  6445. source: "./media/characters/dannik/front.svg"
  6446. }
  6447. }
  6448. },
  6449. [
  6450. {
  6451. name: "Macro",
  6452. height: math.unit(69.57, "meters"),
  6453. default: true
  6454. },
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6459. {
  6460. front: {
  6461. height: math.unit(6, "feet"),
  6462. weight: math.unit(120, "lbs"),
  6463. name: "Front",
  6464. image: {
  6465. source: "./media/characters/azura-saharah/front.svg"
  6466. }
  6467. },
  6468. back: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(120, "lbs"),
  6471. name: "Back",
  6472. image: {
  6473. source: "./media/characters/azura-saharah/back.svg"
  6474. }
  6475. },
  6476. },
  6477. [
  6478. {
  6479. name: "Macro",
  6480. height: math.unit(100, "feet"),
  6481. default: true
  6482. },
  6483. ]
  6484. ))
  6485. characterMakers.push(() => makeCharacter(
  6486. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6487. {
  6488. side: {
  6489. height: math.unit(5 + 4 / 12, "feet"),
  6490. weight: math.unit(163, "lbs"),
  6491. name: "Side",
  6492. image: {
  6493. source: "./media/characters/kennedy/side.svg"
  6494. }
  6495. }
  6496. },
  6497. [
  6498. {
  6499. name: "Standard Doggo",
  6500. height: math.unit(5 + 4 / 12, "feet")
  6501. },
  6502. {
  6503. name: "Big Doggo",
  6504. height: math.unit(25 + 3 / 12, "feet"),
  6505. default: true
  6506. },
  6507. ]
  6508. ))
  6509. characterMakers.push(() => makeCharacter(
  6510. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6511. {
  6512. front: {
  6513. height: math.unit(6, "feet"),
  6514. weight: math.unit(90, "lbs"),
  6515. name: "Front",
  6516. image: {
  6517. source: "./media/characters/odi-lunar/front.svg"
  6518. }
  6519. }
  6520. },
  6521. [
  6522. {
  6523. name: "Micro",
  6524. height: math.unit(3, "inches"),
  6525. default: true
  6526. },
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(5.5, "feet")
  6530. }
  6531. ]
  6532. ))
  6533. characterMakers.push(() => makeCharacter(
  6534. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6535. {
  6536. back: {
  6537. height: math.unit(6, "feet"),
  6538. weight: math.unit(220, "lbs"),
  6539. name: "Back",
  6540. image: {
  6541. source: "./media/characters/mandake/back.svg"
  6542. }
  6543. }
  6544. },
  6545. [
  6546. {
  6547. name: "Normal",
  6548. height: math.unit(7, "feet"),
  6549. default: true
  6550. },
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(78, "feet")
  6554. },
  6555. {
  6556. name: "Macro+",
  6557. height: math.unit(300, "meters")
  6558. },
  6559. {
  6560. name: "Macro++",
  6561. height: math.unit(2400, "feet")
  6562. },
  6563. {
  6564. name: "Megamacro",
  6565. height: math.unit(5167, "meters")
  6566. },
  6567. {
  6568. name: "Gigamacro",
  6569. height: math.unit(41769, "miles")
  6570. },
  6571. ]
  6572. ))
  6573. characterMakers.push(() => makeCharacter(
  6574. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6575. {
  6576. front: {
  6577. height: math.unit(6, "feet"),
  6578. weight: math.unit(120, "lbs"),
  6579. name: "Front",
  6580. image: {
  6581. source: "./media/characters/yozey/front.svg"
  6582. }
  6583. },
  6584. frontAlt: {
  6585. height: math.unit(6, "feet"),
  6586. weight: math.unit(120, "lbs"),
  6587. name: "Front (Alt)",
  6588. image: {
  6589. source: "./media/characters/yozey/front-alt.svg"
  6590. }
  6591. },
  6592. side: {
  6593. height: math.unit(6, "feet"),
  6594. weight: math.unit(120, "lbs"),
  6595. name: "Side",
  6596. image: {
  6597. source: "./media/characters/yozey/side.svg"
  6598. }
  6599. },
  6600. },
  6601. [
  6602. {
  6603. name: "Micro",
  6604. height: math.unit(3, "inches"),
  6605. default: true
  6606. },
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(6, "feet")
  6610. }
  6611. ]
  6612. ))
  6613. characterMakers.push(() => makeCharacter(
  6614. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6615. {
  6616. front: {
  6617. height: math.unit(6, "feet"),
  6618. weight: math.unit(103, "lbs"),
  6619. name: "Front",
  6620. image: {
  6621. source: "./media/characters/valeska-voss/front.svg"
  6622. }
  6623. }
  6624. },
  6625. [
  6626. {
  6627. name: "Mini-Sized Sub",
  6628. height: math.unit(3.1, "inches")
  6629. },
  6630. {
  6631. name: "Mid-Sized Sub",
  6632. height: math.unit(6.2, "inches")
  6633. },
  6634. {
  6635. name: "Full-Sized Sub",
  6636. height: math.unit(9.3, "inches")
  6637. },
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(5 + 2 / 12, "foot"),
  6641. default: true
  6642. },
  6643. ]
  6644. ))
  6645. characterMakers.push(() => makeCharacter(
  6646. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6647. {
  6648. front: {
  6649. height: math.unit(6, "feet"),
  6650. weight: math.unit(160, "lbs"),
  6651. name: "Front",
  6652. image: {
  6653. source: "./media/characters/gene-zeta/front.svg",
  6654. extra: 3006 / 2826,
  6655. bottom: 182 / 3188
  6656. }
  6657. }
  6658. },
  6659. [
  6660. {
  6661. name: "Micro",
  6662. height: math.unit(6, "inches")
  6663. },
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(5 + 11 / 12, "foot"),
  6667. default: true
  6668. },
  6669. {
  6670. name: "Macro",
  6671. height: math.unit(140, "feet")
  6672. },
  6673. {
  6674. name: "Supercharged",
  6675. height: math.unit(2500, "feet")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(350, "lbs"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/razinox/front.svg",
  6688. extra: 1686 / 1548,
  6689. bottom: 28.2 / 1868
  6690. }
  6691. },
  6692. back: {
  6693. height: math.unit(6, "feet"),
  6694. weight: math.unit(350, "lbs"),
  6695. name: "Back",
  6696. image: {
  6697. source: "./media/characters/razinox/back.svg",
  6698. extra: 1660 / 1590,
  6699. bottom: 15 / 1665
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(10 + 8 / 12, "foot")
  6707. },
  6708. {
  6709. name: "Minimacro",
  6710. height: math.unit(15, "foot")
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(60, "foot"),
  6715. default: true
  6716. },
  6717. {
  6718. name: "Megamacro",
  6719. height: math.unit(5, "miles")
  6720. },
  6721. {
  6722. name: "Gigamacro",
  6723. height: math.unit(6000, "miles")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(150, "lbs"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/cobalt/front.svg"
  6736. }
  6737. }
  6738. },
  6739. [
  6740. {
  6741. name: "Normal",
  6742. height: math.unit(8 + 1 / 12, "foot")
  6743. },
  6744. {
  6745. name: "Macro",
  6746. height: math.unit(111, "foot"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Supracosmic",
  6751. height: math.unit(1e42, "feet")
  6752. },
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(140, "lbs"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/amanda/front.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Micro",
  6770. height: math.unit(5, "inches"),
  6771. default: true
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(2.75, "meters"),
  6780. weight: math.unit(1200, "lb"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/teal/front.svg",
  6784. extra: 2463 / 2320,
  6785. bottom: 166 / 2629
  6786. }
  6787. },
  6788. back: {
  6789. height: math.unit(2.75, "meters"),
  6790. weight: math.unit(1200, "lb"),
  6791. name: "Back",
  6792. image: {
  6793. source: "./media/characters/teal/back.svg",
  6794. extra: 2580 / 2489,
  6795. bottom: 151 / 2731
  6796. }
  6797. },
  6798. sitting: {
  6799. height: math.unit(1.9, "meters"),
  6800. weight: math.unit(1200, "lb"),
  6801. name: "Sitting",
  6802. image: {
  6803. source: "./media/characters/teal/sitting.svg",
  6804. extra: 623 / 590,
  6805. bottom: 121 / 744
  6806. }
  6807. },
  6808. standing: {
  6809. height: math.unit(2.75, "meters"),
  6810. weight: math.unit(1200, "lb"),
  6811. name: "Standing",
  6812. image: {
  6813. source: "./media/characters/teal/standing.svg",
  6814. extra: 923 / 893,
  6815. bottom: 60 / 983
  6816. }
  6817. },
  6818. stretching: {
  6819. height: math.unit(3.65, "meters"),
  6820. weight: math.unit(1200, "lb"),
  6821. name: "Stretching",
  6822. image: {
  6823. source: "./media/characters/teal/stretching.svg",
  6824. extra: 1276 / 1244,
  6825. bottom: 0 / 1276
  6826. }
  6827. },
  6828. legged: {
  6829. height: math.unit(1.3, "meters"),
  6830. weight: math.unit(100, "lb"),
  6831. name: "Legged",
  6832. image: {
  6833. source: "./media/characters/teal/legged.svg",
  6834. extra: 462 / 437,
  6835. bottom: 24 / 486
  6836. }
  6837. },
  6838. naga: {
  6839. height: math.unit(5.4, "meters"),
  6840. weight: math.unit(4000, "lb"),
  6841. name: "Naga",
  6842. image: {
  6843. source: "./media/characters/teal/naga.svg",
  6844. extra: 1902 / 1858,
  6845. bottom: 0 / 1902
  6846. }
  6847. },
  6848. hand: {
  6849. height: math.unit(0.52, "meters"),
  6850. name: "Hand",
  6851. image: {
  6852. source: "./media/characters/teal/hand.svg"
  6853. }
  6854. },
  6855. maw: {
  6856. height: math.unit(0.43, "meters"),
  6857. name: "Maw",
  6858. image: {
  6859. source: "./media/characters/teal/maw.svg"
  6860. }
  6861. },
  6862. slit: {
  6863. height: math.unit(0.25, "meters"),
  6864. name: "Slit",
  6865. image: {
  6866. source: "./media/characters/teal/slit.svg"
  6867. }
  6868. },
  6869. },
  6870. [
  6871. {
  6872. name: "Normal",
  6873. height: math.unit(2.75, "meters"),
  6874. default: true
  6875. },
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(300, "feet")
  6879. },
  6880. {
  6881. name: "Macro+",
  6882. height: math.unit(2000, "feet")
  6883. },
  6884. ]
  6885. ))
  6886. characterMakers.push(() => makeCharacter(
  6887. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6888. {
  6889. frontCat: {
  6890. height: math.unit(6, "feet"),
  6891. weight: math.unit(180, "lbs"),
  6892. name: "Front (Cat)",
  6893. image: {
  6894. source: "./media/characters/ravin-amulet/front-cat.svg"
  6895. }
  6896. },
  6897. frontCatAlt: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(180, "lbs"),
  6900. name: "Front (Alt, Cat)",
  6901. image: {
  6902. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6903. }
  6904. },
  6905. frontWerewolf: {
  6906. height: math.unit(6 * 1.2, "feet"),
  6907. weight: math.unit(225, "lbs"),
  6908. name: "Front (Werewolf)",
  6909. image: {
  6910. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6911. }
  6912. },
  6913. backWerewolf: {
  6914. height: math.unit(6 * 1.2, "feet"),
  6915. weight: math.unit(225, "lbs"),
  6916. name: "Back (Werewolf)",
  6917. image: {
  6918. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6919. }
  6920. },
  6921. },
  6922. [
  6923. {
  6924. name: "Nano",
  6925. height: math.unit(1, "micrometer")
  6926. },
  6927. {
  6928. name: "Micro",
  6929. height: math.unit(1, "inch")
  6930. },
  6931. {
  6932. name: "Normal",
  6933. height: math.unit(6, "feet"),
  6934. default: true
  6935. },
  6936. {
  6937. name: "Macro",
  6938. height: math.unit(60, "feet")
  6939. }
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6944. {
  6945. front: {
  6946. height: math.unit(6, "feet"),
  6947. weight: math.unit(165, "lbs"),
  6948. name: "Front",
  6949. image: {
  6950. source: "./media/characters/fluoresce/front.svg"
  6951. }
  6952. }
  6953. },
  6954. [
  6955. {
  6956. name: "Micro",
  6957. height: math.unit(6, "cm")
  6958. },
  6959. {
  6960. name: "Normal",
  6961. height: math.unit(5 + 7 / 12, "feet"),
  6962. default: true
  6963. },
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(56, "feet")
  6967. },
  6968. {
  6969. name: "Megamacro",
  6970. height: math.unit(1.9, "miles")
  6971. },
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6976. {
  6977. front: {
  6978. height: math.unit(9 + 6 / 12, "feet"),
  6979. weight: math.unit(523, "lbs"),
  6980. name: "Side",
  6981. image: {
  6982. source: "./media/characters/aurora/side.svg"
  6983. }
  6984. }
  6985. },
  6986. [
  6987. {
  6988. name: "Normal",
  6989. height: math.unit(9 + 6 / 12, "feet")
  6990. },
  6991. {
  6992. name: "Macro",
  6993. height: math.unit(96, "feet"),
  6994. default: true
  6995. },
  6996. {
  6997. name: "Macro+",
  6998. height: math.unit(243, "feet")
  6999. },
  7000. ]
  7001. ))
  7002. characterMakers.push(() => makeCharacter(
  7003. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7004. {
  7005. front: {
  7006. height: math.unit(194, "cm"),
  7007. weight: math.unit(90, "kg"),
  7008. name: "Front",
  7009. image: {
  7010. source: "./media/characters/ranek/front.svg"
  7011. }
  7012. },
  7013. side: {
  7014. height: math.unit(194, "cm"),
  7015. weight: math.unit(90, "kg"),
  7016. name: "Side",
  7017. image: {
  7018. source: "./media/characters/ranek/side.svg"
  7019. }
  7020. },
  7021. back: {
  7022. height: math.unit(194, "cm"),
  7023. weight: math.unit(90, "kg"),
  7024. name: "Back",
  7025. image: {
  7026. source: "./media/characters/ranek/back.svg"
  7027. }
  7028. },
  7029. feral: {
  7030. height: math.unit(30, "cm"),
  7031. weight: math.unit(1.6, "lbs"),
  7032. name: "Feral",
  7033. image: {
  7034. source: "./media/characters/ranek/feral.svg"
  7035. }
  7036. },
  7037. },
  7038. [
  7039. {
  7040. name: "Normal",
  7041. height: math.unit(194, "cm"),
  7042. default: true
  7043. },
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(100, "meters")
  7047. },
  7048. ]
  7049. ))
  7050. characterMakers.push(() => makeCharacter(
  7051. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7052. {
  7053. front: {
  7054. height: math.unit(5 + 6 / 12, "feet"),
  7055. weight: math.unit(153, "lbs"),
  7056. name: "Front",
  7057. image: {
  7058. source: "./media/characters/andrew-cooper/front.svg"
  7059. }
  7060. },
  7061. },
  7062. [
  7063. {
  7064. name: "Nano",
  7065. height: math.unit(1, "mm")
  7066. },
  7067. {
  7068. name: "Micro",
  7069. height: math.unit(2, "inches")
  7070. },
  7071. {
  7072. name: "Normal",
  7073. height: math.unit(5 + 6 / 12, "feet"),
  7074. default: true
  7075. }
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7080. {
  7081. front: {
  7082. height: math.unit(6, "feet"),
  7083. weight: math.unit(180, "lbs"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/akane-sato/front.svg",
  7087. extra: 1219 / 1140
  7088. }
  7089. },
  7090. back: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(180, "lbs"),
  7093. name: "Back",
  7094. image: {
  7095. source: "./media/characters/akane-sato/back.svg",
  7096. extra: 1219 / 1170
  7097. }
  7098. },
  7099. },
  7100. [
  7101. {
  7102. name: "Normal",
  7103. height: math.unit(2.5, "meters")
  7104. },
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(250, "meters"),
  7108. default: true
  7109. },
  7110. {
  7111. name: "Megamacro",
  7112. height: math.unit(25, "km")
  7113. },
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7118. {
  7119. front: {
  7120. height: math.unit(6, "feet"),
  7121. weight: math.unit(65, "kg"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/rook/front.svg",
  7125. extra: 960 / 950
  7126. }
  7127. }
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(8.8, "feet")
  7133. },
  7134. {
  7135. name: "Macro",
  7136. height: math.unit(88, "feet"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Megamacro",
  7141. height: math.unit(8, "miles")
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(12 + 2 / 12, "feet"),
  7150. weight: math.unit(808, "lbs"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/prodigy/front.svg"
  7154. }
  7155. }
  7156. },
  7157. [
  7158. {
  7159. name: "Normal",
  7160. height: math.unit(12 + 2 / 12, "feet"),
  7161. default: true
  7162. },
  7163. {
  7164. name: "Macro",
  7165. height: math.unit(143, "feet")
  7166. },
  7167. {
  7168. name: "Macro+",
  7169. height: math.unit(400, "feet")
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(6, "feet"),
  7178. weight: math.unit(225, "lbs"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/daniel/front.svg"
  7182. }
  7183. },
  7184. leaning: {
  7185. height: math.unit(6, "feet"),
  7186. weight: math.unit(225, "lbs"),
  7187. name: "Leaning",
  7188. image: {
  7189. source: "./media/characters/daniel/leaning.svg"
  7190. }
  7191. },
  7192. },
  7193. [
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(1000, "feet"),
  7197. default: true
  7198. },
  7199. ]
  7200. ))
  7201. characterMakers.push(() => makeCharacter(
  7202. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7203. {
  7204. front: {
  7205. height: math.unit(6, "feet"),
  7206. weight: math.unit(88, "lbs"),
  7207. name: "Front",
  7208. image: {
  7209. source: "./media/characters/chiros/front.svg",
  7210. extra: 306 / 226
  7211. }
  7212. },
  7213. side: {
  7214. height: math.unit(6, "feet"),
  7215. weight: math.unit(88, "lbs"),
  7216. name: "Side",
  7217. image: {
  7218. source: "./media/characters/chiros/side.svg",
  7219. extra: 306 / 226
  7220. }
  7221. },
  7222. },
  7223. [
  7224. {
  7225. name: "Normal",
  7226. height: math.unit(6, "cm"),
  7227. default: true
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7233. {
  7234. front: {
  7235. height: math.unit(6, "feet"),
  7236. weight: math.unit(100, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/selka/front.svg",
  7240. extra: 947 / 887
  7241. }
  7242. }
  7243. },
  7244. [
  7245. {
  7246. name: "Normal",
  7247. height: math.unit(5, "cm"),
  7248. default: true
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(8 + 3 / 12, "feet"),
  7257. weight: math.unit(424, "lbs"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/verin/front.svg",
  7261. extra: 1845 / 1550
  7262. }
  7263. },
  7264. frontArmored: {
  7265. height: math.unit(8 + 3 / 12, "feet"),
  7266. weight: math.unit(424, "lbs"),
  7267. name: "Front (Armored)",
  7268. image: {
  7269. source: "./media/characters/verin/front-armor.svg",
  7270. extra: 1845 / 1550,
  7271. bottom: 0.01
  7272. }
  7273. },
  7274. back: {
  7275. height: math.unit(8 + 3 / 12, "feet"),
  7276. weight: math.unit(424, "lbs"),
  7277. name: "Back",
  7278. image: {
  7279. source: "./media/characters/verin/back.svg",
  7280. bottom: 0.1,
  7281. extra: 1
  7282. }
  7283. },
  7284. foot: {
  7285. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7286. name: "Foot",
  7287. image: {
  7288. source: "./media/characters/verin/foot.svg"
  7289. }
  7290. },
  7291. },
  7292. [
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(8 + 3 / 12, "feet")
  7296. },
  7297. {
  7298. name: "Minimacro",
  7299. height: math.unit(21, "feet"),
  7300. default: true
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(626, "feet")
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(2.718, "meters"),
  7313. weight: math.unit(150, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/sovrim-terraquian/front.svg"
  7317. }
  7318. },
  7319. back: {
  7320. height: math.unit(2.718, "meters"),
  7321. weight: math.unit(150, "lbs"),
  7322. name: "Back",
  7323. image: {
  7324. source: "./media/characters/sovrim-terraquian/back.svg"
  7325. }
  7326. }
  7327. },
  7328. [
  7329. {
  7330. name: "Micro",
  7331. height: math.unit(2, "inches")
  7332. },
  7333. {
  7334. name: "Small",
  7335. height: math.unit(1, "meter")
  7336. },
  7337. {
  7338. name: "Normal",
  7339. height: math.unit(Math.E, "meters"),
  7340. default: true
  7341. },
  7342. {
  7343. name: "Macro",
  7344. height: math.unit(20, "meters")
  7345. },
  7346. {
  7347. name: "Macro+",
  7348. height: math.unit(400, "meters")
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7354. {
  7355. front: {
  7356. height: math.unit(7, "feet"),
  7357. weight: math.unit(489, "lbs"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/reece-silvermane/front.svg",
  7361. bottom: 0.02,
  7362. extra: 1
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Macro",
  7369. height: math.unit(1.5, "miles"),
  7370. default: true
  7371. },
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7376. {
  7377. front: {
  7378. height: math.unit(6, "feet"),
  7379. weight: math.unit(78, "kg"),
  7380. name: "Front",
  7381. image: {
  7382. source: "./media/characters/kane/front.svg",
  7383. extra: 978 / 899
  7384. }
  7385. },
  7386. },
  7387. [
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(2.1, "m"),
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(1, "km"),
  7395. default: true
  7396. },
  7397. ]
  7398. ))
  7399. characterMakers.push(() => makeCharacter(
  7400. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7401. {
  7402. front: {
  7403. height: math.unit(6, "feet"),
  7404. weight: math.unit(200, "kg"),
  7405. name: "Front",
  7406. image: {
  7407. source: "./media/characters/tegon/front.svg",
  7408. bottom: 0.01,
  7409. extra: 1
  7410. }
  7411. },
  7412. },
  7413. [
  7414. {
  7415. name: "Micro",
  7416. height: math.unit(1, "inch")
  7417. },
  7418. {
  7419. name: "Normal",
  7420. height: math.unit(6 + 3 / 12, "feet"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Macro",
  7425. height: math.unit(300, "feet")
  7426. },
  7427. {
  7428. name: "Megamacro",
  7429. height: math.unit(69, "miles")
  7430. },
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7435. {
  7436. side: {
  7437. height: math.unit(6, "feet"),
  7438. weight: math.unit(2304, "lbs"),
  7439. name: "Side",
  7440. image: {
  7441. source: "./media/characters/arcturax/side.svg",
  7442. extra: 790 / 376,
  7443. bottom: 0.01
  7444. }
  7445. },
  7446. },
  7447. [
  7448. {
  7449. name: "Micro",
  7450. height: math.unit(2, "inch")
  7451. },
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(6, "feet")
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(39, "feet"),
  7459. default: true
  7460. },
  7461. {
  7462. name: "Megamacro",
  7463. height: math.unit(7, "miles")
  7464. },
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7469. {
  7470. front: {
  7471. height: math.unit(6, "feet"),
  7472. weight: math.unit(50, "lbs"),
  7473. name: "Front",
  7474. image: {
  7475. source: "./media/characters/sentri/front.svg",
  7476. extra: 1750 / 1570,
  7477. bottom: 0.025
  7478. }
  7479. },
  7480. frontAlt: {
  7481. height: math.unit(6, "feet"),
  7482. weight: math.unit(50, "lbs"),
  7483. name: "Front (Alt)",
  7484. image: {
  7485. source: "./media/characters/sentri/front-alt.svg",
  7486. extra: 1750 / 1570,
  7487. bottom: 0.025
  7488. }
  7489. },
  7490. },
  7491. [
  7492. {
  7493. name: "Normal",
  7494. height: math.unit(15, "feet"),
  7495. default: true
  7496. },
  7497. {
  7498. name: "Macro",
  7499. height: math.unit(2500, "feet")
  7500. }
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7505. {
  7506. front: {
  7507. height: math.unit(5 + 8 / 12, "feet"),
  7508. weight: math.unit(130, "lbs"),
  7509. name: "Front",
  7510. image: {
  7511. source: "./media/characters/corvin/front.svg",
  7512. extra: 1803 / 1629
  7513. }
  7514. },
  7515. frontShirt: {
  7516. height: math.unit(5 + 8 / 12, "feet"),
  7517. weight: math.unit(130, "lbs"),
  7518. name: "Front (Shirt)",
  7519. image: {
  7520. source: "./media/characters/corvin/front-shirt.svg",
  7521. extra: 1803 / 1629
  7522. }
  7523. },
  7524. frontPoncho: {
  7525. height: math.unit(5 + 8 / 12, "feet"),
  7526. weight: math.unit(130, "lbs"),
  7527. name: "Front (Poncho)",
  7528. image: {
  7529. source: "./media/characters/corvin/front-poncho.svg",
  7530. extra: 1803 / 1629
  7531. }
  7532. },
  7533. side: {
  7534. height: math.unit(5 + 8 / 12, "feet"),
  7535. weight: math.unit(130, "lbs"),
  7536. name: "Side",
  7537. image: {
  7538. source: "./media/characters/corvin/side.svg",
  7539. extra: 1012 / 945
  7540. }
  7541. },
  7542. back: {
  7543. height: math.unit(5 + 8 / 12, "feet"),
  7544. weight: math.unit(130, "lbs"),
  7545. name: "Back",
  7546. image: {
  7547. source: "./media/characters/corvin/back.svg",
  7548. extra: 1803 / 1629
  7549. }
  7550. },
  7551. },
  7552. [
  7553. {
  7554. name: "Micro",
  7555. height: math.unit(3, "inches")
  7556. },
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(5 + 8 / 12, "feet")
  7560. },
  7561. {
  7562. name: "Macro",
  7563. height: math.unit(300, "feet"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Megamacro",
  7568. height: math.unit(500, "miles")
  7569. }
  7570. ]
  7571. ))
  7572. characterMakers.push(() => makeCharacter(
  7573. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7574. {
  7575. front: {
  7576. height: math.unit(6, "feet"),
  7577. weight: math.unit(135, "lbs"),
  7578. name: "Front",
  7579. image: {
  7580. source: "./media/characters/q/front.svg",
  7581. extra: 854 / 752,
  7582. bottom: 0.005
  7583. }
  7584. },
  7585. back: {
  7586. height: math.unit(6, "feet"),
  7587. weight: math.unit(130, "lbs"),
  7588. name: "Back",
  7589. image: {
  7590. source: "./media/characters/q/back.svg",
  7591. extra: 854 / 752
  7592. }
  7593. },
  7594. },
  7595. [
  7596. {
  7597. name: "Macro",
  7598. height: math.unit(90, "feet"),
  7599. default: true
  7600. },
  7601. {
  7602. name: "Extra Macro",
  7603. height: math.unit(300, "feet"),
  7604. },
  7605. {
  7606. name: "BIG WALF",
  7607. height: math.unit(750, "feet"),
  7608. },
  7609. ]
  7610. ))
  7611. characterMakers.push(() => makeCharacter(
  7612. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7613. {
  7614. front: {
  7615. height: math.unit(6, "feet"),
  7616. weight: math.unit(150, "lbs"),
  7617. name: "Front",
  7618. image: {
  7619. source: "./media/characters/carley/front.svg",
  7620. extra: 3927 / 3540,
  7621. bottom: 29.2 / 735
  7622. }
  7623. }
  7624. },
  7625. [
  7626. {
  7627. name: "Normal",
  7628. height: math.unit(6 + 3 / 12, "feet")
  7629. },
  7630. {
  7631. name: "Macro",
  7632. height: math.unit(185, "feet"),
  7633. default: true
  7634. },
  7635. {
  7636. name: "Megamacro",
  7637. height: math.unit(8, "miles"),
  7638. },
  7639. ]
  7640. ))
  7641. characterMakers.push(() => makeCharacter(
  7642. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7643. {
  7644. front: {
  7645. height: math.unit(3, "feet"),
  7646. weight: math.unit(28, "lbs"),
  7647. name: "Front",
  7648. image: {
  7649. source: "./media/characters/citrine/front.svg"
  7650. }
  7651. }
  7652. },
  7653. [
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(3, "feet"),
  7657. default: true
  7658. }
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7663. {
  7664. front: {
  7665. height: math.unit(14, "feet"),
  7666. weight: math.unit(1450, "kg"),
  7667. capacity: math.unit(15, "people"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/aura-starwind/front.svg",
  7671. extra: 1455 / 1335
  7672. }
  7673. },
  7674. side: {
  7675. height: math.unit(14, "feet"),
  7676. weight: math.unit(1450, "kg"),
  7677. capacity: math.unit(15, "people"),
  7678. name: "Side",
  7679. image: {
  7680. source: "./media/characters/aura-starwind/side.svg",
  7681. extra: 1654 / 1497
  7682. }
  7683. },
  7684. taur: {
  7685. height: math.unit(18, "feet"),
  7686. weight: math.unit(5500, "kg"),
  7687. capacity: math.unit(50, "people"),
  7688. name: "Taur",
  7689. image: {
  7690. source: "./media/characters/aura-starwind/taur.svg",
  7691. extra: 1760 / 1650
  7692. }
  7693. },
  7694. feral: {
  7695. height: math.unit(46, "feet"),
  7696. weight: math.unit(25000, "kg"),
  7697. capacity: math.unit(120, "people"),
  7698. name: "Feral",
  7699. image: {
  7700. source: "./media/characters/aura-starwind/feral.svg"
  7701. }
  7702. },
  7703. },
  7704. [
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(14, "feet"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(50, "meters")
  7713. },
  7714. {
  7715. name: "Megamacro",
  7716. height: math.unit(5000, "meters")
  7717. },
  7718. {
  7719. name: "Gigamacro",
  7720. height: math.unit(100000, "kilometers")
  7721. },
  7722. ]
  7723. ))
  7724. characterMakers.push(() => makeCharacter(
  7725. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7726. {
  7727. front: {
  7728. height: math.unit(2 + 7 / 12, "feet"),
  7729. weight: math.unit(32, "lbs"),
  7730. name: "Front",
  7731. image: {
  7732. source: "./media/characters/rivet/front.svg",
  7733. extra: 1716 / 1658,
  7734. bottom: 0.03
  7735. }
  7736. },
  7737. foot: {
  7738. height: math.unit(0.551, "feet"),
  7739. name: "Rivet's Foot",
  7740. image: {
  7741. source: "./media/characters/rivet/foot.svg"
  7742. },
  7743. rename: true
  7744. }
  7745. },
  7746. [
  7747. {
  7748. name: "Micro",
  7749. height: math.unit(1.5, "inches"),
  7750. },
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(2 + 7 / 12, "feet"),
  7754. default: true
  7755. },
  7756. {
  7757. name: "Macro",
  7758. height: math.unit(85, "feet")
  7759. },
  7760. {
  7761. name: "Megamacro",
  7762. height: math.unit(2.2, "km")
  7763. }
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7768. {
  7769. front: {
  7770. height: math.unit(5 + 9 / 12, "feet"),
  7771. weight: math.unit(150, "lbs"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/coffee/front.svg",
  7775. extra: 3666 / 3032,
  7776. bottom: 0.04
  7777. }
  7778. },
  7779. foot: {
  7780. height: math.unit(1.29, "feet"),
  7781. name: "Foot",
  7782. image: {
  7783. source: "./media/characters/coffee/foot.svg"
  7784. }
  7785. },
  7786. },
  7787. [
  7788. {
  7789. name: "Micro",
  7790. height: math.unit(2, "inches"),
  7791. },
  7792. {
  7793. name: "Normal",
  7794. height: math.unit(5 + 9 / 12, "feet"),
  7795. default: true
  7796. },
  7797. {
  7798. name: "Macro",
  7799. height: math.unit(800, "feet")
  7800. },
  7801. {
  7802. name: "Megamacro",
  7803. height: math.unit(25, "miles")
  7804. }
  7805. ]
  7806. ))
  7807. characterMakers.push(() => makeCharacter(
  7808. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7809. {
  7810. front: {
  7811. height: math.unit(6, "feet"),
  7812. weight: math.unit(200, "lbs"),
  7813. name: "Front",
  7814. image: {
  7815. source: "./media/characters/chari-gal/front.svg",
  7816. extra: 1568 / 1385,
  7817. bottom: 0.047
  7818. }
  7819. },
  7820. gigantamax: {
  7821. height: math.unit(6 * 16, "feet"),
  7822. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7823. name: "Gigantamax",
  7824. image: {
  7825. source: "./media/characters/chari-gal/gigantamax.svg",
  7826. extra: 1124 / 888,
  7827. bottom: 0.03
  7828. }
  7829. },
  7830. },
  7831. [
  7832. {
  7833. name: "Normal",
  7834. height: math.unit(5 + 7 / 12, "feet")
  7835. },
  7836. {
  7837. name: "Macro",
  7838. height: math.unit(200, "feet"),
  7839. default: true
  7840. }
  7841. ]
  7842. ))
  7843. characterMakers.push(() => makeCharacter(
  7844. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7845. {
  7846. front: {
  7847. height: math.unit(6, "feet"),
  7848. weight: math.unit(150, "lbs"),
  7849. name: "Front",
  7850. image: {
  7851. source: "./media/characters/nova/front.svg",
  7852. extra: 5000 / 4722,
  7853. bottom: 0.02
  7854. }
  7855. }
  7856. },
  7857. [
  7858. {
  7859. name: "Micro-",
  7860. height: math.unit(0.8, "inches")
  7861. },
  7862. {
  7863. name: "Micro",
  7864. height: math.unit(2, "inches"),
  7865. default: true
  7866. },
  7867. ]
  7868. ))
  7869. characterMakers.push(() => makeCharacter(
  7870. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7871. {
  7872. front: {
  7873. height: math.unit(3 + 1 / 12, "feet"),
  7874. weight: math.unit(21.7, "lbs"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/argent/front.svg",
  7878. extra: 1471 / 1331,
  7879. bottom: 100.8 / 1575.5
  7880. }
  7881. }
  7882. },
  7883. [
  7884. {
  7885. name: "Micro",
  7886. height: math.unit(2, "inches")
  7887. },
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(3 + 1 / 12, "feet"),
  7891. default: true
  7892. },
  7893. {
  7894. name: "Macro",
  7895. height: math.unit(120, "feet")
  7896. },
  7897. ]
  7898. ))
  7899. characterMakers.push(() => makeCharacter(
  7900. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7901. {
  7902. lamp: {
  7903. height: math.unit(7 * 1559 / 989, "feet"),
  7904. name: "Magic Lamp",
  7905. image: {
  7906. source: "./media/characters/mira-al-cul/lamp.svg",
  7907. extra: 1617 / 1559
  7908. }
  7909. },
  7910. front: {
  7911. height: math.unit(7, "feet"),
  7912. name: "Front",
  7913. image: {
  7914. source: "./media/characters/mira-al-cul/front.svg",
  7915. extra: 1044 / 990
  7916. }
  7917. },
  7918. },
  7919. [
  7920. {
  7921. name: "Heavily Restricted",
  7922. height: math.unit(7 * 1559 / 989, "feet")
  7923. },
  7924. {
  7925. name: "Freshly Freed",
  7926. height: math.unit(50 * 1559 / 989, "feet")
  7927. },
  7928. {
  7929. name: "World Encompassing",
  7930. height: math.unit(10000 * 1559 / 989, "miles")
  7931. },
  7932. {
  7933. name: "Galactic",
  7934. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7935. },
  7936. {
  7937. name: "Palmed Universe",
  7938. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Multiversal Matriarch",
  7943. height: math.unit(8.87e10, "yottameters")
  7944. },
  7945. {
  7946. name: "Void Mother",
  7947. height: math.unit(3.14e110, "yottaparsecs")
  7948. },
  7949. {
  7950. name: "Toying with Transcendence",
  7951. height: math.unit(1e307, "meters")
  7952. },
  7953. ]
  7954. ))
  7955. characterMakers.push(() => makeCharacter(
  7956. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7957. {
  7958. front: {
  7959. height: math.unit(17 + 1 / 12, "feet"),
  7960. weight: math.unit(476.2 * 5, "lbs"),
  7961. name: "Front",
  7962. image: {
  7963. source: "./media/characters/kuro-shi-uchū/front.svg",
  7964. extra: 2329 / 1835,
  7965. bottom: 0.02
  7966. }
  7967. },
  7968. },
  7969. [
  7970. {
  7971. name: "Micro",
  7972. height: math.unit(2, "inches")
  7973. },
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(12, "meters")
  7977. },
  7978. {
  7979. name: "Planetary",
  7980. height: math.unit(0.00929, "AU"),
  7981. default: true
  7982. },
  7983. {
  7984. name: "Universal",
  7985. height: math.unit(20, "gigaparsecs")
  7986. },
  7987. ]
  7988. ))
  7989. characterMakers.push(() => makeCharacter(
  7990. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7991. {
  7992. front: {
  7993. height: math.unit(5 + 2 / 12, "feet"),
  7994. weight: math.unit(120, "lbs"),
  7995. name: "Front",
  7996. image: {
  7997. source: "./media/characters/katherine/front.svg",
  7998. extra: 2075 / 1969
  7999. }
  8000. },
  8001. dress: {
  8002. height: math.unit(5 + 2 / 12, "feet"),
  8003. weight: math.unit(120, "lbs"),
  8004. name: "Dress",
  8005. image: {
  8006. source: "./media/characters/katherine/dress.svg",
  8007. extra: 2258 / 2064
  8008. }
  8009. },
  8010. },
  8011. [
  8012. {
  8013. name: "Micro",
  8014. height: math.unit(1, "inches"),
  8015. default: true
  8016. },
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(5 + 2 / 12, "feet")
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(100, "meters")
  8024. },
  8025. {
  8026. name: "Megamacro",
  8027. height: math.unit(80, "miles")
  8028. },
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(7 + 8 / 12, "feet"),
  8036. weight: math.unit(250, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/yevis/front.svg",
  8040. extra: 1938 / 1755
  8041. }
  8042. }
  8043. },
  8044. [
  8045. {
  8046. name: "Mortal",
  8047. height: math.unit(7 + 8 / 12, "feet")
  8048. },
  8049. {
  8050. name: "Battle",
  8051. height: math.unit(25 + 11 / 12, "feet")
  8052. },
  8053. {
  8054. name: "Wrath",
  8055. height: math.unit(1654 + 11 / 12, "feet")
  8056. },
  8057. {
  8058. name: "Planet Destroyer",
  8059. height: math.unit(12000, "miles")
  8060. },
  8061. {
  8062. name: "Galaxy Conqueror",
  8063. height: math.unit(1.45, "zettameters"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Universal War",
  8068. height: math.unit(184, "gigaparsecs")
  8069. },
  8070. {
  8071. name: "Eternity War",
  8072. height: math.unit(1.98e55, "yottaparsecs")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(5 + 8 / 12, "feet"),
  8081. weight: math.unit(63, "kg"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/xavier/front.svg",
  8085. extra: 944 / 883
  8086. }
  8087. },
  8088. frontStretch: {
  8089. height: math.unit(5 + 8 / 12, "feet"),
  8090. weight: math.unit(63, "kg"),
  8091. name: "Stretching",
  8092. image: {
  8093. source: "./media/characters/xavier/front-stretch.svg",
  8094. extra: 962 / 820
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(5 + 8 / 12, "feet")
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(100, "meters"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "McLargeHuge",
  8110. height: math.unit(10, "miles")
  8111. },
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(5 + 5 / 12, "feet"),
  8119. weight: math.unit(150, "lb"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/joshii/front.svg",
  8123. extra: 765 / 653,
  8124. bottom: 51 / 816
  8125. }
  8126. },
  8127. foot: {
  8128. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8129. name: "Foot",
  8130. image: {
  8131. source: "./media/characters/joshii/foot.svg"
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Micro",
  8138. height: math.unit(2, "inches"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Normal",
  8143. height: math.unit(5 + 5 / 12, "feet")
  8144. },
  8145. {
  8146. name: "Macro",
  8147. height: math.unit(785, "feet")
  8148. },
  8149. {
  8150. name: "Megamacro",
  8151. height: math.unit(24.5, "miles")
  8152. },
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(150, "lb"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/goddess-elizabeth/front.svg",
  8164. extra: 1800 / 1525,
  8165. bottom: 0.005
  8166. }
  8167. },
  8168. foot: {
  8169. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8170. name: "Foot",
  8171. image: {
  8172. source: "./media/characters/goddess-elizabeth/foot.svg"
  8173. }
  8174. },
  8175. mouth: {
  8176. height: math.unit(6, "feet"),
  8177. name: "Mouth",
  8178. image: {
  8179. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Micro",
  8186. height: math.unit(12, "feet")
  8187. },
  8188. {
  8189. name: "Normal",
  8190. height: math.unit(80, "miles"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Macro",
  8195. height: math.unit(15000, "parsecs")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(5 + 9 / 12, "feet"),
  8204. weight: math.unit(144, "lb"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/kara/front.svg"
  8208. }
  8209. },
  8210. feet: {
  8211. height: math.unit(6 / 6.765, "feet"),
  8212. name: "Kara's Feet",
  8213. rename: true,
  8214. image: {
  8215. source: "./media/characters/kara/feet.svg"
  8216. }
  8217. },
  8218. },
  8219. [
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(5 + 9 / 12, "feet")
  8223. },
  8224. {
  8225. name: "Macro",
  8226. height: math.unit(174, "feet"),
  8227. default: true
  8228. },
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8233. {
  8234. front: {
  8235. height: math.unit(18, "feet"),
  8236. weight: math.unit(4050, "lb"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/tyrone/front.svg",
  8240. extra: 2405 / 2270,
  8241. bottom: 182 / 2587
  8242. }
  8243. },
  8244. },
  8245. [
  8246. {
  8247. name: "Normal",
  8248. height: math.unit(18, "feet"),
  8249. default: true
  8250. },
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(300, "feet")
  8254. },
  8255. {
  8256. name: "Megamacro",
  8257. height: math.unit(15, "km")
  8258. },
  8259. {
  8260. name: "Gigamacro",
  8261. height: math.unit(500, "km")
  8262. },
  8263. {
  8264. name: "Teramacro",
  8265. height: math.unit(0.5, "gigameters")
  8266. },
  8267. {
  8268. name: "Omnimacro",
  8269. height: math.unit(1e252, "yottauniverse")
  8270. },
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8275. {
  8276. front: {
  8277. height: math.unit(7 + 8 / 12, "feet"),
  8278. weight: math.unit(120, "lb"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/danny/front.svg",
  8282. extra: 1490 / 1350
  8283. }
  8284. },
  8285. back: {
  8286. height: math.unit(7 + 8 / 12, "feet"),
  8287. weight: math.unit(120, "lb"),
  8288. name: "Back",
  8289. image: {
  8290. source: "./media/characters/danny/back.svg",
  8291. extra: 1490 / 1350
  8292. }
  8293. },
  8294. },
  8295. [
  8296. {
  8297. name: "Normal",
  8298. height: math.unit(7 + 8 / 12, "feet"),
  8299. default: true
  8300. },
  8301. ]
  8302. ))
  8303. characterMakers.push(() => makeCharacter(
  8304. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8305. {
  8306. front: {
  8307. height: math.unit(3.5, "inches"),
  8308. weight: math.unit(19, "grams"),
  8309. name: "Front",
  8310. image: {
  8311. source: "./media/characters/mallow/front.svg",
  8312. extra: 471 / 431
  8313. }
  8314. },
  8315. back: {
  8316. height: math.unit(3.5, "inches"),
  8317. weight: math.unit(19, "grams"),
  8318. name: "Back",
  8319. image: {
  8320. source: "./media/characters/mallow/back.svg",
  8321. extra: 471 / 431
  8322. }
  8323. },
  8324. },
  8325. [
  8326. {
  8327. name: "Normal",
  8328. height: math.unit(3.5, "inches"),
  8329. default: true
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(9, "feet"),
  8338. weight: math.unit(230, "kg"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/starry-aqua/front.svg"
  8342. }
  8343. },
  8344. back: {
  8345. height: math.unit(9, "feet"),
  8346. weight: math.unit(230, "kg"),
  8347. name: "Back",
  8348. image: {
  8349. source: "./media/characters/starry-aqua/back.svg"
  8350. }
  8351. },
  8352. hand: {
  8353. height: math.unit(9 * 0.1168, "feet"),
  8354. name: "Hand",
  8355. image: {
  8356. source: "./media/characters/starry-aqua/hand.svg"
  8357. }
  8358. },
  8359. foot: {
  8360. height: math.unit(9 * 0.18, "feet"),
  8361. name: "Foot",
  8362. image: {
  8363. source: "./media/characters/starry-aqua/foot.svg"
  8364. }
  8365. }
  8366. },
  8367. [
  8368. {
  8369. name: "Micro",
  8370. height: math.unit(3, "inches")
  8371. },
  8372. {
  8373. name: "Normal",
  8374. height: math.unit(9, "feet")
  8375. },
  8376. {
  8377. name: "Macro",
  8378. height: math.unit(300, "feet"),
  8379. default: true
  8380. },
  8381. {
  8382. name: "Megamacro",
  8383. height: math.unit(3200, "feet")
  8384. }
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8389. {
  8390. front: {
  8391. height: math.unit(6, "feet"),
  8392. weight: math.unit(230, "lb"),
  8393. name: "Front",
  8394. image: {
  8395. source: "./media/characters/luka/front.svg",
  8396. extra: 1,
  8397. bottom: 0.025
  8398. }
  8399. },
  8400. },
  8401. [
  8402. {
  8403. name: "Normal",
  8404. height: math.unit(12 + 8 / 12, "feet"),
  8405. default: true
  8406. },
  8407. {
  8408. name: "Minimacro",
  8409. height: math.unit(20, "feet")
  8410. },
  8411. {
  8412. name: "Macro",
  8413. height: math.unit(250, "feet")
  8414. },
  8415. {
  8416. name: "Megamacro",
  8417. height: math.unit(5, "miles")
  8418. },
  8419. {
  8420. name: "Gigamacro",
  8421. height: math.unit(8000, "miles")
  8422. },
  8423. ]
  8424. ))
  8425. characterMakers.push(() => makeCharacter(
  8426. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8427. {
  8428. front: {
  8429. height: math.unit(6, "feet"),
  8430. weight: math.unit(150, "lb"),
  8431. name: "Front",
  8432. image: {
  8433. source: "./media/characters/natalie-nightring/front.svg",
  8434. extra: 1,
  8435. bottom: 0.06
  8436. }
  8437. },
  8438. },
  8439. [
  8440. {
  8441. name: "Uh Oh",
  8442. height: math.unit(0.1, "mm")
  8443. },
  8444. {
  8445. name: "Small",
  8446. height: math.unit(3, "inches")
  8447. },
  8448. {
  8449. name: "Human Scale",
  8450. height: math.unit(6, "feet")
  8451. },
  8452. {
  8453. name: "Librarian",
  8454. height: math.unit(50, "feet"),
  8455. default: true
  8456. },
  8457. {
  8458. name: "Immense",
  8459. height: math.unit(200, "miles")
  8460. },
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8465. {
  8466. front: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(180, "lbs"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/danni-rosie/front.svg",
  8472. extra: 1260 / 1128,
  8473. bottom: 0.022
  8474. }
  8475. },
  8476. },
  8477. [
  8478. {
  8479. name: "Micro",
  8480. height: math.unit(2, "inches"),
  8481. default: true
  8482. },
  8483. ]
  8484. ))
  8485. characterMakers.push(() => makeCharacter(
  8486. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8487. {
  8488. front: {
  8489. height: math.unit(5 + 9 / 12, "feet"),
  8490. weight: math.unit(220, "lb"),
  8491. name: "Front",
  8492. image: {
  8493. source: "./media/characters/samantha-kruse/front.svg",
  8494. extra: (985 / 935),
  8495. bottom: 0.03
  8496. }
  8497. },
  8498. frontUndressed: {
  8499. height: math.unit(5 + 9 / 12, "feet"),
  8500. weight: math.unit(220, "lb"),
  8501. name: "Front (Undressed)",
  8502. image: {
  8503. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8504. extra: (973 / 923),
  8505. bottom: 0.025
  8506. }
  8507. },
  8508. fat: {
  8509. height: math.unit(5 + 9 / 12, "feet"),
  8510. weight: math.unit(900, "lb"),
  8511. name: "Front (Fat)",
  8512. image: {
  8513. source: "./media/characters/samantha-kruse/fat.svg",
  8514. extra: 2688 / 2561
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(5 + 9 / 12, "feet"),
  8522. default: true
  8523. }
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8528. {
  8529. back: {
  8530. height: math.unit(5 + 4 / 12, "feet"),
  8531. weight: math.unit(4963, "lb"),
  8532. name: "Back",
  8533. image: {
  8534. source: "./media/characters/amelia-rosie/back.svg",
  8535. extra: 1113 / 963,
  8536. bottom: 0.01
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Level 0",
  8543. height: math.unit(5 + 4 / 12, "feet")
  8544. },
  8545. {
  8546. name: "Level 1",
  8547. height: math.unit(164597, "feet"),
  8548. default: true
  8549. },
  8550. {
  8551. name: "Level 2",
  8552. height: math.unit(956243, "miles")
  8553. },
  8554. {
  8555. name: "Level 3",
  8556. height: math.unit(29421709423, "miles")
  8557. },
  8558. {
  8559. name: "Level 4",
  8560. height: math.unit(154, "lightyears")
  8561. },
  8562. {
  8563. name: "Level 5",
  8564. height: math.unit(4738272, "lightyears")
  8565. },
  8566. {
  8567. name: "Level 6",
  8568. height: math.unit(145787152896, "lightyears")
  8569. },
  8570. ]
  8571. ))
  8572. characterMakers.push(() => makeCharacter(
  8573. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8574. {
  8575. front: {
  8576. height: math.unit(5 + 11 / 12, "feet"),
  8577. weight: math.unit(65, "kg"),
  8578. name: "Front",
  8579. image: {
  8580. source: "./media/characters/rook-kitara/front.svg",
  8581. extra: 1347 / 1274,
  8582. bottom: 0.005
  8583. }
  8584. },
  8585. },
  8586. [
  8587. {
  8588. name: "Totally Unfair",
  8589. height: math.unit(1.8, "mm")
  8590. },
  8591. {
  8592. name: "Lap Rookie",
  8593. height: math.unit(1.4, "feet")
  8594. },
  8595. {
  8596. name: "Normal",
  8597. height: math.unit(5 + 11 / 12, "feet"),
  8598. default: true
  8599. },
  8600. {
  8601. name: "How Did This Happen",
  8602. height: math.unit(80, "miles")
  8603. }
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8608. {
  8609. front: {
  8610. height: math.unit(7, "feet"),
  8611. weight: math.unit(300, "lb"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/pisces/front.svg",
  8615. extra: 2255 / 2115,
  8616. bottom: 0.03
  8617. }
  8618. },
  8619. back: {
  8620. height: math.unit(7, "feet"),
  8621. weight: math.unit(300, "lb"),
  8622. name: "Back",
  8623. image: {
  8624. source: "./media/characters/pisces/back.svg",
  8625. extra: 2146 / 2055,
  8626. bottom: 0.04
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(7, "feet"),
  8634. default: true
  8635. },
  8636. {
  8637. name: "Swimming Pool",
  8638. height: math.unit(12.2, "meters")
  8639. },
  8640. {
  8641. name: "Olympic Swimming Pool",
  8642. height: math.unit(56.3, "meters")
  8643. },
  8644. {
  8645. name: "Lake Superior",
  8646. height: math.unit(93900, "meters")
  8647. },
  8648. {
  8649. name: "Mediterranean Sea",
  8650. height: math.unit(644457, "meters")
  8651. },
  8652. {
  8653. name: "World's Oceans",
  8654. height: math.unit(4567491, "meters")
  8655. },
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8660. {
  8661. front: {
  8662. height: math.unit(2.3, "meters"),
  8663. weight: math.unit(120, "kg"),
  8664. name: "Front",
  8665. image: {
  8666. source: "./media/characters/zelas/front.svg"
  8667. }
  8668. },
  8669. side: {
  8670. height: math.unit(2.3, "meters"),
  8671. weight: math.unit(120, "kg"),
  8672. name: "Side",
  8673. image: {
  8674. source: "./media/characters/zelas/side.svg"
  8675. }
  8676. },
  8677. back: {
  8678. height: math.unit(2.3, "meters"),
  8679. weight: math.unit(120, "kg"),
  8680. name: "Back",
  8681. image: {
  8682. source: "./media/characters/zelas/back.svg"
  8683. }
  8684. },
  8685. foot: {
  8686. height: math.unit(1.116, "feet"),
  8687. name: "Foot",
  8688. image: {
  8689. source: "./media/characters/zelas/foot.svg"
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(2.3, "meters")
  8697. },
  8698. {
  8699. name: "Macro",
  8700. height: math.unit(30, "meters"),
  8701. default: true
  8702. },
  8703. ]
  8704. ))
  8705. characterMakers.push(() => makeCharacter(
  8706. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8707. {
  8708. front: {
  8709. height: math.unit(1, "inch"),
  8710. weight: math.unit(0.21, "grams"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/talbot/front.svg",
  8714. extra: 594 / 544
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Micro",
  8721. height: math.unit(1, "inch"),
  8722. default: true
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8728. {
  8729. front: {
  8730. height: math.unit(3 + 3 / 12, "feet"),
  8731. weight: math.unit(51.8, "lb"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/fliss/front.svg",
  8735. extra: 840 / 640
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Teeny Tiny",
  8742. height: math.unit(1, "mm")
  8743. },
  8744. {
  8745. name: "Small",
  8746. height: math.unit(1, "inch"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Standard Sylveon",
  8751. height: math.unit(3 + 3 / 12, "feet")
  8752. },
  8753. {
  8754. name: "Large Nuisance",
  8755. height: math.unit(33, "feet")
  8756. },
  8757. {
  8758. name: "City Filler",
  8759. height: math.unit(3000, "feet")
  8760. },
  8761. {
  8762. name: "New Horizon",
  8763. height: math.unit(6000, "miles")
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(5, "cm"),
  8772. weight: math.unit(1.94, "g"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/fleta/front.svg",
  8776. extra: 835 / 803
  8777. }
  8778. },
  8779. back: {
  8780. height: math.unit(5, "cm"),
  8781. weight: math.unit(1.94, "g"),
  8782. name: "Back",
  8783. image: {
  8784. source: "./media/characters/fleta/back.svg",
  8785. extra: 835 / 803
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Micro",
  8792. height: math.unit(5, "cm"),
  8793. default: true
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8799. {
  8800. front: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(225, "lb"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/dominic/front.svg",
  8806. extra: 1770 / 1620,
  8807. bottom: 0.025
  8808. }
  8809. },
  8810. back: {
  8811. height: math.unit(6, "feet"),
  8812. weight: math.unit(225, "lb"),
  8813. name: "Back",
  8814. image: {
  8815. source: "./media/characters/dominic/back.svg",
  8816. extra: 1745 / 1620,
  8817. bottom: 0.065
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Nano",
  8824. height: math.unit(0.1, "mm")
  8825. },
  8826. {
  8827. name: "Micro-",
  8828. height: math.unit(1, "mm")
  8829. },
  8830. {
  8831. name: "Micro",
  8832. height: math.unit(4, "inches")
  8833. },
  8834. {
  8835. name: "Normal",
  8836. height: math.unit(6 + 4 / 12, "feet"),
  8837. default: true
  8838. },
  8839. {
  8840. name: "Macro",
  8841. height: math.unit(115, "feet")
  8842. },
  8843. {
  8844. name: "Macro+",
  8845. height: math.unit(955, "feet")
  8846. },
  8847. {
  8848. name: "Megamacro",
  8849. height: math.unit(8990, "feet")
  8850. },
  8851. {
  8852. name: "Gigmacro",
  8853. height: math.unit(9310, "miles")
  8854. },
  8855. {
  8856. name: "Teramacro",
  8857. height: math.unit(1567005010, "miles")
  8858. },
  8859. {
  8860. name: "Examacro",
  8861. height: math.unit(1425, "parsecs")
  8862. },
  8863. ]
  8864. ))
  8865. characterMakers.push(() => makeCharacter(
  8866. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8867. {
  8868. front: {
  8869. height: math.unit(400, "feet"),
  8870. weight: math.unit(44444444, "lb"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/major-colonel/front.svg"
  8874. }
  8875. },
  8876. back: {
  8877. height: math.unit(400, "feet"),
  8878. weight: math.unit(44444444, "lb"),
  8879. name: "Back",
  8880. image: {
  8881. source: "./media/characters/major-colonel/back.svg"
  8882. }
  8883. },
  8884. },
  8885. [
  8886. {
  8887. name: "Macro",
  8888. height: math.unit(400, "feet"),
  8889. default: true
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8895. {
  8896. catFront: {
  8897. height: math.unit(6, "feet"),
  8898. weight: math.unit(120, "lb"),
  8899. name: "Front (Cat Side)",
  8900. image: {
  8901. source: "./media/characters/axel-lycan/cat-front.svg",
  8902. extra: 430 / 402,
  8903. bottom: 43 / 472.35
  8904. }
  8905. },
  8906. catBack: {
  8907. height: math.unit(6, "feet"),
  8908. weight: math.unit(120, "lb"),
  8909. name: "Back (Cat Side)",
  8910. image: {
  8911. source: "./media/characters/axel-lycan/cat-back.svg",
  8912. extra: 447 / 419,
  8913. bottom: 23.3 / 469
  8914. }
  8915. },
  8916. wolfFront: {
  8917. height: math.unit(6, "feet"),
  8918. weight: math.unit(120, "lb"),
  8919. name: "Front (Wolf Side)",
  8920. image: {
  8921. source: "./media/characters/axel-lycan/wolf-front.svg",
  8922. extra: 485 / 456,
  8923. bottom: 19 / 504
  8924. }
  8925. },
  8926. wolfBack: {
  8927. height: math.unit(6, "feet"),
  8928. weight: math.unit(120, "lb"),
  8929. name: "Back (Wolf Side)",
  8930. image: {
  8931. source: "./media/characters/axel-lycan/wolf-back.svg",
  8932. extra: 475 / 438,
  8933. bottom: 39.2 / 514
  8934. }
  8935. },
  8936. },
  8937. [
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(1, "km"),
  8941. default: true
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8947. {
  8948. front: {
  8949. height: math.unit(5 + 9 / 12, "feet"),
  8950. weight: math.unit(175, "lb"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/vanrel-hyena/front.svg",
  8954. extra: 1086 / 1010,
  8955. bottom: 0.04
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Normal",
  8962. height: math.unit(5 + 9 / 12, "feet"),
  8963. default: true
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8969. {
  8970. front: {
  8971. height: math.unit(6, "feet"),
  8972. weight: math.unit(103, "lb"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/abbott-absol/front.svg",
  8976. extra: 2010 / 1842
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Megamicro",
  8983. height: math.unit(0.1, "mm")
  8984. },
  8985. {
  8986. name: "Micro",
  8987. height: math.unit(1, "inch")
  8988. },
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(6, "feet"),
  8992. default: true
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(6, "feet"),
  9001. weight: math.unit(264, "lb"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/hector/front.svg",
  9005. extra: 2280 / 2130,
  9006. bottom: 0.07
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Normal",
  9013. height: math.unit(12.25, "foot"),
  9014. default: true
  9015. },
  9016. {
  9017. name: "Macro",
  9018. height: math.unit(160, "feet")
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(150, "lb"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/sal/front.svg",
  9031. extra: 1846 / 1699,
  9032. bottom: 0.04
  9033. }
  9034. },
  9035. },
  9036. [
  9037. {
  9038. name: "Megamacro",
  9039. height: math.unit(10, "miles"),
  9040. default: true
  9041. },
  9042. ]
  9043. ))
  9044. characterMakers.push(() => makeCharacter(
  9045. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9046. {
  9047. front: {
  9048. height: math.unit(3, "meters"),
  9049. weight: math.unit(450, "kg"),
  9050. name: "front",
  9051. image: {
  9052. source: "./media/characters/ranger/front.svg",
  9053. extra: 2401 / 2243,
  9054. bottom: 0.05
  9055. }
  9056. },
  9057. },
  9058. [
  9059. {
  9060. name: "Normal",
  9061. height: math.unit(3, "meters"),
  9062. default: true
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9068. {
  9069. front: {
  9070. height: math.unit(14, "feet"),
  9071. weight: math.unit(800, "kg"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/theresa/front.svg",
  9075. extra: 3575 / 3346,
  9076. bottom: 0.03
  9077. }
  9078. },
  9079. },
  9080. [
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(14, "feet"),
  9084. default: true
  9085. },
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9090. {
  9091. front: {
  9092. height: math.unit(6, "feet"),
  9093. weight: math.unit(3, "kg"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/ine/front.svg",
  9097. extra: 678 / 539,
  9098. bottom: 0.023
  9099. }
  9100. },
  9101. },
  9102. [
  9103. {
  9104. name: "Normal",
  9105. height: math.unit(2.265, "feet"),
  9106. default: true
  9107. },
  9108. ]
  9109. ))
  9110. characterMakers.push(() => makeCharacter(
  9111. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9112. {
  9113. front: {
  9114. height: math.unit(5, "feet"),
  9115. weight: math.unit(30, "kg"),
  9116. name: "Front",
  9117. image: {
  9118. source: "./media/characters/vial/front.svg",
  9119. extra: 1365 / 1277,
  9120. bottom: 0.04
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Normal",
  9127. height: math.unit(5, "feet"),
  9128. default: true
  9129. },
  9130. ]
  9131. ))
  9132. characterMakers.push(() => makeCharacter(
  9133. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9134. {
  9135. side: {
  9136. height: math.unit(3.4, "meters"),
  9137. weight: math.unit(1000, "lb"),
  9138. name: "Side",
  9139. image: {
  9140. source: "./media/characters/rovoska/side.svg",
  9141. extra: 4403 / 1515
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Normal",
  9148. height: math.unit(3.4, "meters"),
  9149. default: true
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(8, "feet"),
  9158. weight: math.unit(315, "lb"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/gunner-rotthbauer/front.svg"
  9162. }
  9163. },
  9164. back: {
  9165. height: math.unit(8, "feet"),
  9166. weight: math.unit(315, "lb"),
  9167. name: "Back",
  9168. image: {
  9169. source: "./media/characters/gunner-rotthbauer/back.svg"
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Micro",
  9176. height: math.unit(3.5, "inches")
  9177. },
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(8, "feet"),
  9181. default: true
  9182. },
  9183. {
  9184. name: "Macro",
  9185. height: math.unit(250, "feet")
  9186. },
  9187. {
  9188. name: "Megamacro",
  9189. height: math.unit(1, "AU")
  9190. },
  9191. ]
  9192. ))
  9193. characterMakers.push(() => makeCharacter(
  9194. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9195. {
  9196. front: {
  9197. height: math.unit(5 + 5 / 12, "feet"),
  9198. weight: math.unit(140, "lb"),
  9199. name: "Front",
  9200. image: {
  9201. source: "./media/characters/allatia/front.svg",
  9202. extra: 1227 / 1180,
  9203. bottom: 0.027
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Normal",
  9210. height: math.unit(5 + 5 / 12, "feet")
  9211. },
  9212. {
  9213. name: "Macro",
  9214. height: math.unit(250, "feet"),
  9215. default: true
  9216. },
  9217. {
  9218. name: "Megamacro",
  9219. height: math.unit(8, "miles")
  9220. }
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(6, "feet"),
  9228. weight: math.unit(120, "lb"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/tene/front.svg",
  9232. extra: 1728 / 1578,
  9233. bottom: 0.022
  9234. }
  9235. },
  9236. stomping: {
  9237. height: math.unit(2.025, "meters"),
  9238. weight: math.unit(120, "lb"),
  9239. name: "Stomping",
  9240. image: {
  9241. source: "./media/characters/tene/stomping.svg",
  9242. extra: 938 / 873,
  9243. bottom: 0.01
  9244. }
  9245. },
  9246. sitting: {
  9247. height: math.unit(1, "meter"),
  9248. weight: math.unit(120, "lb"),
  9249. name: "Sitting",
  9250. image: {
  9251. source: "./media/characters/tene/sitting.svg",
  9252. extra: 437 / 415,
  9253. bottom: 0.1
  9254. }
  9255. },
  9256. feral: {
  9257. height: math.unit(3.9, "feet"),
  9258. weight: math.unit(250, "lb"),
  9259. name: "Feral",
  9260. image: {
  9261. source: "./media/characters/tene/feral.svg",
  9262. extra: 717 / 458,
  9263. bottom: 0.179
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Normal",
  9270. height: math.unit(6, "feet")
  9271. },
  9272. {
  9273. name: "Macro",
  9274. height: math.unit(300, "feet"),
  9275. default: true
  9276. },
  9277. {
  9278. name: "Megamacro",
  9279. height: math.unit(5, "miles")
  9280. },
  9281. ]
  9282. ))
  9283. characterMakers.push(() => makeCharacter(
  9284. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9285. {
  9286. side: {
  9287. height: math.unit(6, "feet"),
  9288. name: "Side",
  9289. image: {
  9290. source: "./media/characters/evander/side.svg",
  9291. extra: 877 / 477
  9292. }
  9293. },
  9294. },
  9295. [
  9296. {
  9297. name: "Normal",
  9298. height: math.unit(0.83, "meters"),
  9299. default: true
  9300. },
  9301. ]
  9302. ))
  9303. characterMakers.push(() => makeCharacter(
  9304. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9305. {
  9306. front: {
  9307. height: math.unit(12, "feet"),
  9308. weight: math.unit(1000, "lb"),
  9309. name: "Front",
  9310. image: {
  9311. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9312. extra: 1762 / 1611
  9313. }
  9314. },
  9315. back: {
  9316. height: math.unit(12, "feet"),
  9317. weight: math.unit(1000, "lb"),
  9318. name: "Back",
  9319. image: {
  9320. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9321. extra: 1762 / 1611
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(12, "feet"),
  9329. default: true
  9330. },
  9331. {
  9332. name: "Kaiju",
  9333. height: math.unit(150, "feet")
  9334. },
  9335. ]
  9336. ))
  9337. characterMakers.push(() => makeCharacter(
  9338. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9339. {
  9340. front: {
  9341. height: math.unit(6, "feet"),
  9342. weight: math.unit(150, "lb"),
  9343. name: "Front",
  9344. image: {
  9345. source: "./media/characters/zero-alurus/front.svg"
  9346. }
  9347. },
  9348. back: {
  9349. height: math.unit(6, "feet"),
  9350. weight: math.unit(150, "lb"),
  9351. name: "Back",
  9352. image: {
  9353. source: "./media/characters/zero-alurus/back.svg"
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Normal",
  9360. height: math.unit(5 + 10 / 12, "feet")
  9361. },
  9362. {
  9363. name: "Macro",
  9364. height: math.unit(60, "feet"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Macro+",
  9369. height: math.unit(450, "feet")
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9375. {
  9376. front: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(200, "lb"),
  9379. name: "Front",
  9380. image: {
  9381. source: "./media/characters/mega-shi/front.svg",
  9382. extra: 1279 / 1250,
  9383. bottom: 0.02
  9384. }
  9385. },
  9386. back: {
  9387. height: math.unit(6, "feet"),
  9388. weight: math.unit(200, "lb"),
  9389. name: "Back",
  9390. image: {
  9391. source: "./media/characters/mega-shi/back.svg",
  9392. extra: 1279 / 1250,
  9393. bottom: 0.02
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Micro",
  9400. height: math.unit(16 + 6 / 12, "feet")
  9401. },
  9402. {
  9403. name: "Third Dimension",
  9404. height: math.unit(40, "meters")
  9405. },
  9406. {
  9407. name: "Normal",
  9408. height: math.unit(660, "feet"),
  9409. default: true
  9410. },
  9411. {
  9412. name: "Megamacro",
  9413. height: math.unit(10, "miles")
  9414. },
  9415. {
  9416. name: "Planetary Launch",
  9417. height: math.unit(500, "miles")
  9418. },
  9419. {
  9420. name: "Interstellar",
  9421. height: math.unit(1e9, "miles")
  9422. },
  9423. {
  9424. name: "Leaving the Universe",
  9425. height: math.unit(1, "gigaparsec")
  9426. },
  9427. {
  9428. name: "Travelling Universes",
  9429. height: math.unit(30e15, "parsecs")
  9430. },
  9431. ]
  9432. ))
  9433. characterMakers.push(() => makeCharacter(
  9434. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9435. {
  9436. front: {
  9437. height: math.unit(6, "feet"),
  9438. weight: math.unit(150, "lb"),
  9439. name: "Front",
  9440. image: {
  9441. source: "./media/characters/odyssey/front.svg",
  9442. extra: 1782 / 1582,
  9443. bottom: 0.01
  9444. }
  9445. },
  9446. side: {
  9447. height: math.unit(5.7, "feet"),
  9448. weight: math.unit(140, "lb"),
  9449. name: "Side",
  9450. image: {
  9451. source: "./media/characters/odyssey/side.svg",
  9452. extra: 6462 / 5700
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Normal",
  9459. height: math.unit(5 + 4 / 12, "feet")
  9460. },
  9461. {
  9462. name: "Macro",
  9463. height: math.unit(1, "km")
  9464. },
  9465. {
  9466. name: "Megamacro",
  9467. height: math.unit(3000, "km")
  9468. },
  9469. {
  9470. name: "Gigamacro",
  9471. height: math.unit(1, "AU"),
  9472. default: true
  9473. },
  9474. {
  9475. name: "Omniversal",
  9476. height: math.unit(100e14, "lightyears")
  9477. },
  9478. ]
  9479. ))
  9480. characterMakers.push(() => makeCharacter(
  9481. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9482. {
  9483. front: {
  9484. height: math.unit(6, "feet"),
  9485. weight: math.unit(300, "lb"),
  9486. name: "Front",
  9487. image: {
  9488. source: "./media/characters/mekuto/front.svg",
  9489. extra: 921 / 832,
  9490. bottom: 0.03
  9491. }
  9492. },
  9493. hand: {
  9494. height: math.unit(6 / 10.24, "feet"),
  9495. name: "Hand",
  9496. image: {
  9497. source: "./media/characters/mekuto/hand.svg"
  9498. }
  9499. },
  9500. foot: {
  9501. height: math.unit(6 / 5.05, "feet"),
  9502. name: "Foot",
  9503. image: {
  9504. source: "./media/characters/mekuto/foot.svg"
  9505. }
  9506. },
  9507. },
  9508. [
  9509. {
  9510. name: "Minimicro",
  9511. height: math.unit(0.2, "inches")
  9512. },
  9513. {
  9514. name: "Micro",
  9515. height: math.unit(1.5, "inches")
  9516. },
  9517. {
  9518. name: "Normal",
  9519. height: math.unit(5 + 11 / 12, "feet"),
  9520. default: true
  9521. },
  9522. {
  9523. name: "Minimacro",
  9524. height: math.unit(17 + 9 / 12, "feet")
  9525. },
  9526. {
  9527. name: "Macro",
  9528. height: math.unit(177.5, "feet")
  9529. },
  9530. {
  9531. name: "Megamacro",
  9532. height: math.unit(152, "miles")
  9533. },
  9534. ]
  9535. ))
  9536. characterMakers.push(() => makeCharacter(
  9537. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9538. {
  9539. front: {
  9540. height: math.unit(6.5, "inches"),
  9541. weight: math.unit(13, "oz"),
  9542. name: "Front",
  9543. image: {
  9544. source: "./media/characters/dafydd-tomos/front.svg",
  9545. extra: 2990 / 2603,
  9546. bottom: 0.03
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Micro",
  9553. height: math.unit(6.5, "inches"),
  9554. default: true
  9555. },
  9556. ]
  9557. ))
  9558. characterMakers.push(() => makeCharacter(
  9559. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9560. {
  9561. front: {
  9562. height: math.unit(6, "feet"),
  9563. weight: math.unit(150, "lb"),
  9564. name: "Front",
  9565. image: {
  9566. source: "./media/characters/splinter/front.svg",
  9567. extra: 2990 / 2882,
  9568. bottom: 0.04
  9569. }
  9570. },
  9571. back: {
  9572. height: math.unit(6, "feet"),
  9573. weight: math.unit(150, "lb"),
  9574. name: "Back",
  9575. image: {
  9576. source: "./media/characters/splinter/back.svg",
  9577. extra: 2990 / 2882,
  9578. bottom: 0.04
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Normal",
  9585. height: math.unit(6, "feet")
  9586. },
  9587. {
  9588. name: "Macro",
  9589. height: math.unit(230, "meters"),
  9590. default: true
  9591. },
  9592. ]
  9593. ))
  9594. characterMakers.push(() => makeCharacter(
  9595. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9596. {
  9597. front: {
  9598. height: math.unit(4 + 10 / 12, "feet"),
  9599. weight: math.unit(480, "lb"),
  9600. name: "Front",
  9601. image: {
  9602. source: "./media/characters/snow-gabumon/front.svg",
  9603. extra: 1140 / 963,
  9604. bottom: 0.058
  9605. }
  9606. },
  9607. back: {
  9608. height: math.unit(4 + 10 / 12, "feet"),
  9609. weight: math.unit(480, "lb"),
  9610. name: "Back",
  9611. image: {
  9612. source: "./media/characters/snow-gabumon/back.svg",
  9613. extra: 1115 / 962,
  9614. bottom: 0.041
  9615. }
  9616. },
  9617. frontUndresed: {
  9618. height: math.unit(4 + 10 / 12, "feet"),
  9619. weight: math.unit(480, "lb"),
  9620. name: "Front (Undressed)",
  9621. image: {
  9622. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9623. extra: 1061 / 960,
  9624. bottom: 0.045
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Micro",
  9631. height: math.unit(1, "inch")
  9632. },
  9633. {
  9634. name: "Normal",
  9635. height: math.unit(4 + 10 / 12, "feet"),
  9636. default: true
  9637. },
  9638. {
  9639. name: "Macro",
  9640. height: math.unit(200, "feet")
  9641. },
  9642. {
  9643. name: "Megamacro",
  9644. height: math.unit(120, "miles")
  9645. },
  9646. {
  9647. name: "Gigamacro",
  9648. height: math.unit(9800, "miles")
  9649. },
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9654. {
  9655. front: {
  9656. height: math.unit(1.7, "meters"),
  9657. weight: math.unit(140, "lb"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/moody/front.svg",
  9661. extra: 3226 / 3007,
  9662. bottom: 0.087
  9663. }
  9664. },
  9665. },
  9666. [
  9667. {
  9668. name: "Micro",
  9669. height: math.unit(1, "mm")
  9670. },
  9671. {
  9672. name: "Normal",
  9673. height: math.unit(1.7, "meters"),
  9674. default: true
  9675. },
  9676. {
  9677. name: "Macro",
  9678. height: math.unit(80, "meters")
  9679. },
  9680. {
  9681. name: "Macro+",
  9682. height: math.unit(500, "meters")
  9683. },
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9688. {
  9689. front: {
  9690. height: math.unit(6, "feet"),
  9691. weight: math.unit(150, "lb"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/zyas/front.svg",
  9695. extra: 1180 / 1120,
  9696. bottom: 0.045
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Normal",
  9703. height: math.unit(10, "feet"),
  9704. default: true
  9705. },
  9706. {
  9707. name: "Macro",
  9708. height: math.unit(500, "feet")
  9709. },
  9710. {
  9711. name: "Megamacro",
  9712. height: math.unit(5, "miles")
  9713. },
  9714. {
  9715. name: "Teramacro",
  9716. height: math.unit(150000, "miles")
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9722. {
  9723. front: {
  9724. height: math.unit(6, "feet"),
  9725. weight: math.unit(150, "lb"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/cuon/front.svg",
  9729. extra: 1390 / 1320,
  9730. bottom: 0.008
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Micro",
  9737. height: math.unit(3, "inches")
  9738. },
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(18 + 9 / 12, "feet"),
  9742. default: true
  9743. },
  9744. {
  9745. name: "Macro",
  9746. height: math.unit(360, "feet")
  9747. },
  9748. {
  9749. name: "Megamacro",
  9750. height: math.unit(360, "miles")
  9751. },
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(2.4, "meters"),
  9759. weight: math.unit(70, "kg"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/nyanuxk/front.svg",
  9763. extra: 1172 / 1084,
  9764. bottom: 0.065
  9765. }
  9766. },
  9767. side: {
  9768. height: math.unit(2.4, "meters"),
  9769. weight: math.unit(70, "kg"),
  9770. name: "Side",
  9771. image: {
  9772. source: "./media/characters/nyanuxk/side.svg",
  9773. extra: 1190 / 1132,
  9774. bottom: 0.007
  9775. }
  9776. },
  9777. back: {
  9778. height: math.unit(2.4, "meters"),
  9779. weight: math.unit(70, "kg"),
  9780. name: "Back",
  9781. image: {
  9782. source: "./media/characters/nyanuxk/back.svg",
  9783. extra: 1200 / 1141,
  9784. bottom: 0.015
  9785. }
  9786. },
  9787. foot: {
  9788. height: math.unit(0.52, "meters"),
  9789. name: "Foot",
  9790. image: {
  9791. source: "./media/characters/nyanuxk/foot.svg"
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Micro",
  9798. height: math.unit(2, "cm")
  9799. },
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(2.4, "meters"),
  9803. default: true
  9804. },
  9805. {
  9806. name: "Smaller Macro",
  9807. height: math.unit(120, "meters")
  9808. },
  9809. {
  9810. name: "Bigger Macro",
  9811. height: math.unit(1.2, "km")
  9812. },
  9813. {
  9814. name: "Megamacro",
  9815. height: math.unit(15, "kilometers")
  9816. },
  9817. {
  9818. name: "Gigamacro",
  9819. height: math.unit(2000, "km")
  9820. },
  9821. {
  9822. name: "Teramacro",
  9823. height: math.unit(500000, "km")
  9824. },
  9825. ]
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9829. {
  9830. side: {
  9831. height: math.unit(6, "feet"),
  9832. name: "Side",
  9833. image: {
  9834. source: "./media/characters/ailbhe/side.svg",
  9835. extra: 757 / 464,
  9836. bottom: 0.041
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(1.07, "meters"),
  9844. default: true
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9850. {
  9851. front: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(120, "kg"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/zevulfius/front.svg",
  9857. extra: 965 / 903
  9858. }
  9859. },
  9860. side: {
  9861. height: math.unit(6, "feet"),
  9862. weight: math.unit(120, "kg"),
  9863. name: "Side",
  9864. image: {
  9865. source: "./media/characters/zevulfius/side.svg",
  9866. extra: 939 / 900
  9867. }
  9868. },
  9869. back: {
  9870. height: math.unit(6, "feet"),
  9871. weight: math.unit(120, "kg"),
  9872. name: "Back",
  9873. image: {
  9874. source: "./media/characters/zevulfius/back.svg",
  9875. extra: 918 / 854,
  9876. bottom: 0.005
  9877. }
  9878. },
  9879. foot: {
  9880. height: math.unit(6 / 3.72, "feet"),
  9881. name: "Foot",
  9882. image: {
  9883. source: "./media/characters/zevulfius/foot.svg"
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Macro",
  9890. height: math.unit(750, "meters")
  9891. },
  9892. {
  9893. name: "Megamacro",
  9894. height: math.unit(20, "km"),
  9895. default: true
  9896. },
  9897. {
  9898. name: "Gigamacro",
  9899. height: math.unit(2000, "km")
  9900. },
  9901. {
  9902. name: "Teramacro",
  9903. height: math.unit(250000, "km")
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(100, "feet"),
  9912. weight: math.unit(350, "kg"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/rikes/front.svg",
  9916. extra: 1565 / 1483,
  9917. bottom: 0.017
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Macro",
  9924. height: math.unit(100, "feet"),
  9925. default: true
  9926. },
  9927. ]
  9928. ))
  9929. characterMakers.push(() => makeCharacter(
  9930. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9931. {
  9932. anthro: {
  9933. height: math.unit(8, "feet"),
  9934. weight: math.unit(120, "kg"),
  9935. name: "Anthro",
  9936. image: {
  9937. source: "./media/characters/adam-silver-mane/anthro.svg",
  9938. extra: 5743 / 5339,
  9939. bottom: 0.07
  9940. }
  9941. },
  9942. taur: {
  9943. height: math.unit(16, "feet"),
  9944. weight: math.unit(1500, "kg"),
  9945. name: "Taur",
  9946. image: {
  9947. source: "./media/characters/adam-silver-mane/taur.svg",
  9948. extra: 1713 / 1571,
  9949. bottom: 0.01
  9950. }
  9951. },
  9952. },
  9953. [
  9954. {
  9955. name: "Normal",
  9956. height: math.unit(8, "feet")
  9957. },
  9958. {
  9959. name: "Minimacro",
  9960. height: math.unit(80, "feet")
  9961. },
  9962. {
  9963. name: "Macro",
  9964. height: math.unit(800, "feet"),
  9965. default: true
  9966. },
  9967. {
  9968. name: "Megamacro",
  9969. height: math.unit(8000, "feet")
  9970. },
  9971. {
  9972. name: "Gigamacro",
  9973. height: math.unit(800, "miles")
  9974. },
  9975. {
  9976. name: "Teramacro",
  9977. height: math.unit(80000, "miles")
  9978. },
  9979. {
  9980. name: "Celestial",
  9981. height: math.unit(8e6, "miles")
  9982. },
  9983. {
  9984. name: "Star Dragon",
  9985. height: math.unit(800000, "parsecs")
  9986. },
  9987. {
  9988. name: "Godly",
  9989. height: math.unit(800, "teraparsecs")
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(150, "lb"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/ky'owin/front.svg",
  10002. extra: 3888 / 3068,
  10003. bottom: 0.015
  10004. }
  10005. },
  10006. },
  10007. [
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(6 + 8 / 12, "feet")
  10011. },
  10012. {
  10013. name: "Large",
  10014. height: math.unit(68, "feet")
  10015. },
  10016. {
  10017. name: "Macro",
  10018. height: math.unit(132, "feet")
  10019. },
  10020. {
  10021. name: "Macro+",
  10022. height: math.unit(340, "feet")
  10023. },
  10024. {
  10025. name: "Macro++",
  10026. height: math.unit(680, "feet"),
  10027. default: true
  10028. },
  10029. {
  10030. name: "Megamacro",
  10031. height: math.unit(1, "mile")
  10032. },
  10033. {
  10034. name: "Megamacro+",
  10035. height: math.unit(10, "miles")
  10036. },
  10037. ]
  10038. ))
  10039. characterMakers.push(() => makeCharacter(
  10040. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10041. {
  10042. front: {
  10043. height: math.unit(4, "feet"),
  10044. weight: math.unit(50, "lb"),
  10045. name: "Front",
  10046. image: {
  10047. source: "./media/characters/mal/front.svg",
  10048. extra: 785 / 724,
  10049. bottom: 0.07
  10050. }
  10051. },
  10052. },
  10053. [
  10054. {
  10055. name: "Micro",
  10056. height: math.unit(4, "inches")
  10057. },
  10058. {
  10059. name: "Normal",
  10060. height: math.unit(4, "feet"),
  10061. default: true
  10062. },
  10063. {
  10064. name: "Macro",
  10065. height: math.unit(200, "feet")
  10066. },
  10067. ]
  10068. ))
  10069. characterMakers.push(() => makeCharacter(
  10070. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10071. {
  10072. front: {
  10073. height: math.unit(6, "feet"),
  10074. weight: math.unit(150, "lb"),
  10075. name: "Front",
  10076. image: {
  10077. source: "./media/characters/jordan-deware/front.svg",
  10078. extra: 1191 / 1012
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Nano",
  10085. height: math.unit(0.01, "mm")
  10086. },
  10087. {
  10088. name: "Minimicro",
  10089. height: math.unit(1, "mm")
  10090. },
  10091. {
  10092. name: "Micro",
  10093. height: math.unit(0.5, "inches")
  10094. },
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(4, "feet"),
  10098. default: true
  10099. },
  10100. {
  10101. name: "Minimacro",
  10102. height: math.unit(40, "meters")
  10103. },
  10104. {
  10105. name: "Small Macro",
  10106. height: math.unit(400, "meters")
  10107. },
  10108. {
  10109. name: "Macro",
  10110. height: math.unit(4, "miles")
  10111. },
  10112. {
  10113. name: "Megamacro",
  10114. height: math.unit(40, "miles")
  10115. },
  10116. {
  10117. name: "Megamacro+",
  10118. height: math.unit(400, "miles")
  10119. },
  10120. {
  10121. name: "Gigamacro",
  10122. height: math.unit(400000, "miles")
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10128. {
  10129. side: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(150, "lb"),
  10132. name: "Side",
  10133. image: {
  10134. source: "./media/characters/kimiko/side.svg",
  10135. extra: 600 / 358
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Normal",
  10142. height: math.unit(15, "feet"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Macro",
  10147. height: math.unit(220, "feet")
  10148. },
  10149. {
  10150. name: "Macro+",
  10151. height: math.unit(1450, "feet")
  10152. },
  10153. {
  10154. name: "Megamacro",
  10155. height: math.unit(11500, "feet")
  10156. },
  10157. {
  10158. name: "Gigamacro",
  10159. height: math.unit(9500, "miles")
  10160. },
  10161. {
  10162. name: "Teramacro",
  10163. height: math.unit(2208005005, "miles")
  10164. },
  10165. {
  10166. name: "Examacro",
  10167. height: math.unit(2750, "parsecs")
  10168. },
  10169. {
  10170. name: "Zettamacro",
  10171. height: math.unit(101500, "parsecs")
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(6, "feet"),
  10180. weight: math.unit(70, "kg"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/andrew-sleepy/front.svg"
  10184. }
  10185. },
  10186. side: {
  10187. height: math.unit(6, "feet"),
  10188. weight: math.unit(70, "kg"),
  10189. name: "Side",
  10190. image: {
  10191. source: "./media/characters/andrew-sleepy/side.svg"
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Micro",
  10198. height: math.unit(1, "mm"),
  10199. default: true
  10200. },
  10201. ]
  10202. ))
  10203. characterMakers.push(() => makeCharacter(
  10204. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10205. {
  10206. front: {
  10207. height: math.unit(6, "feet"),
  10208. weight: math.unit(150, "lb"),
  10209. name: "Front",
  10210. image: {
  10211. source: "./media/characters/judio/front.svg",
  10212. extra: 1258 / 1110
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(5 + 6 / 12, "feet")
  10220. },
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(1000, "feet"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(10, "miles")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(68, "kg"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/nomaxice/front.svg",
  10241. extra: 1498 / 1073,
  10242. bottom: 0.075
  10243. }
  10244. },
  10245. foot: {
  10246. height: math.unit(1.1, "feet"),
  10247. name: "Foot",
  10248. image: {
  10249. source: "./media/characters/nomaxice/foot.svg"
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Micro",
  10256. height: math.unit(8, "cm")
  10257. },
  10258. {
  10259. name: "Norm",
  10260. height: math.unit(1.82, "m")
  10261. },
  10262. {
  10263. name: "Norm+",
  10264. height: math.unit(8.8, "feet")
  10265. },
  10266. {
  10267. name: "Big",
  10268. height: math.unit(8, "meters"),
  10269. default: true
  10270. },
  10271. {
  10272. name: "Macro",
  10273. height: math.unit(18, "meters")
  10274. },
  10275. {
  10276. name: "Macro+",
  10277. height: math.unit(88, "meters")
  10278. },
  10279. ]
  10280. ))
  10281. characterMakers.push(() => makeCharacter(
  10282. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10283. {
  10284. front: {
  10285. height: math.unit(12, "feet"),
  10286. weight: math.unit(1.5, "tons"),
  10287. name: "Front",
  10288. image: {
  10289. source: "./media/characters/dydros/front.svg",
  10290. extra: 863 / 800,
  10291. bottom: 0.015
  10292. }
  10293. },
  10294. back: {
  10295. height: math.unit(12, "feet"),
  10296. weight: math.unit(1.5, "tons"),
  10297. name: "Back",
  10298. image: {
  10299. source: "./media/characters/dydros/back.svg",
  10300. extra: 900 / 843,
  10301. bottom: 0.005
  10302. }
  10303. },
  10304. },
  10305. [
  10306. {
  10307. name: "Normal",
  10308. height: math.unit(12, "feet"),
  10309. default: true
  10310. },
  10311. ]
  10312. ))
  10313. characterMakers.push(() => makeCharacter(
  10314. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10315. {
  10316. front: {
  10317. height: math.unit(6, "feet"),
  10318. weight: math.unit(100, "kg"),
  10319. name: "Front",
  10320. image: {
  10321. source: "./media/characters/riggi/front.svg",
  10322. extra: 5787 / 5303
  10323. }
  10324. },
  10325. hyper: {
  10326. height: math.unit(6 * 5 / 3, "feet"),
  10327. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10328. name: "Hyper",
  10329. image: {
  10330. source: "./media/characters/riggi/hyper.svg",
  10331. extra: 3595 / 3485
  10332. }
  10333. },
  10334. },
  10335. [
  10336. {
  10337. name: "Small Macro",
  10338. height: math.unit(50, "feet")
  10339. },
  10340. {
  10341. name: "Default",
  10342. height: math.unit(200, "feet"),
  10343. default: true
  10344. },
  10345. {
  10346. name: "Loom",
  10347. height: math.unit(10000, "feet")
  10348. },
  10349. {
  10350. name: "Cruising Altitude",
  10351. height: math.unit(30000, "feet")
  10352. },
  10353. {
  10354. name: "Megamacro",
  10355. height: math.unit(100, "miles")
  10356. },
  10357. {
  10358. name: "Continent Sized",
  10359. height: math.unit(2800, "miles")
  10360. },
  10361. {
  10362. name: "Earth Sized",
  10363. height: math.unit(8000, "miles")
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(250, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/alexi/front.svg",
  10376. extra: 3483 / 3291,
  10377. bottom: 0.04
  10378. }
  10379. },
  10380. back: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(250, "lb"),
  10383. name: "Back",
  10384. image: {
  10385. source: "./media/characters/alexi/back.svg",
  10386. extra: 3533 / 3356,
  10387. bottom: 0.021
  10388. }
  10389. },
  10390. frontTransforming: {
  10391. height: math.unit(8.58, "feet"),
  10392. weight: math.unit(1300, "lb"),
  10393. name: "Transforming",
  10394. image: {
  10395. source: "./media/characters/alexi/front-transforming.svg",
  10396. extra: 437 / 409,
  10397. bottom: 19 / 458.66
  10398. }
  10399. },
  10400. frontTransformed: {
  10401. height: math.unit(12.5, "feet"),
  10402. weight: math.unit(4000, "lb"),
  10403. name: "Transformed",
  10404. image: {
  10405. source: "./media/characters/alexi/front-transformed.svg",
  10406. extra: 639 / 614,
  10407. bottom: 30.55 / 671
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Normal",
  10414. height: math.unit(14, "feet"),
  10415. default: true
  10416. },
  10417. {
  10418. name: "Minimacro",
  10419. height: math.unit(30, "meters")
  10420. },
  10421. {
  10422. name: "Macro",
  10423. height: math.unit(500, "meters")
  10424. },
  10425. {
  10426. name: "Megamacro",
  10427. height: math.unit(9000, "km")
  10428. },
  10429. {
  10430. name: "Teramacro",
  10431. height: math.unit(384000, "km")
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(6, "feet"),
  10440. weight: math.unit(150, "lb"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/kayroo/front.svg",
  10444. extra: 1153 / 1038,
  10445. bottom: 0.06
  10446. }
  10447. },
  10448. foot: {
  10449. height: math.unit(6, "feet"),
  10450. weight: math.unit(150, "lb"),
  10451. name: "Foot",
  10452. image: {
  10453. source: "./media/characters/kayroo/foot.svg"
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Normal",
  10460. height: math.unit(8, "feet"),
  10461. default: true
  10462. },
  10463. {
  10464. name: "Minimacro",
  10465. height: math.unit(250, "feet")
  10466. },
  10467. {
  10468. name: "Macro",
  10469. height: math.unit(2800, "feet")
  10470. },
  10471. {
  10472. name: "Megamacro",
  10473. height: math.unit(5200, "feet")
  10474. },
  10475. {
  10476. name: "Gigamacro",
  10477. height: math.unit(27000, "feet")
  10478. },
  10479. {
  10480. name: "Omega",
  10481. height: math.unit(45000, "feet")
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10487. {
  10488. front: {
  10489. height: math.unit(18, "feet"),
  10490. weight: math.unit(5800, "lb"),
  10491. name: "Front",
  10492. image: {
  10493. source: "./media/characters/rhys/front.svg",
  10494. extra: 3386 / 3090,
  10495. bottom: 0.07
  10496. }
  10497. },
  10498. },
  10499. [
  10500. {
  10501. name: "Normal",
  10502. height: math.unit(18, "feet"),
  10503. default: true
  10504. },
  10505. {
  10506. name: "Working Size",
  10507. height: math.unit(200, "feet")
  10508. },
  10509. {
  10510. name: "Demolition Size",
  10511. height: math.unit(2000, "feet")
  10512. },
  10513. {
  10514. name: "Maximum Licensed Size",
  10515. height: math.unit(5, "miles")
  10516. },
  10517. {
  10518. name: "Maximum Observed Size",
  10519. height: math.unit(10, "yottameters")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10525. {
  10526. front: {
  10527. height: math.unit(6, "feet"),
  10528. weight: math.unit(250, "lb"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/toto/front.svg",
  10532. extra: 527 / 479,
  10533. bottom: 0.05
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Micro",
  10540. height: math.unit(3, "feet")
  10541. },
  10542. {
  10543. name: "Normal",
  10544. height: math.unit(10, "feet")
  10545. },
  10546. {
  10547. name: "Macro",
  10548. height: math.unit(150, "feet"),
  10549. default: true
  10550. },
  10551. {
  10552. name: "Megamacro",
  10553. height: math.unit(1200, "feet")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "King", species: ["lion"], tags: ["anthro"] },
  10559. {
  10560. back: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(150, "lb"),
  10563. name: "Back",
  10564. image: {
  10565. source: "./media/characters/king/back.svg"
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Micro",
  10572. height: math.unit(2, "inches")
  10573. },
  10574. {
  10575. name: "Normal",
  10576. height: math.unit(8, "feet")
  10577. },
  10578. {
  10579. name: "Macro",
  10580. height: math.unit(200, "feet"),
  10581. default: true
  10582. },
  10583. {
  10584. name: "Megamacro",
  10585. height: math.unit(50, "miles")
  10586. },
  10587. ]
  10588. ))
  10589. characterMakers.push(() => makeCharacter(
  10590. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10591. {
  10592. anthro: {
  10593. height: math.unit(6 + 5 / 12, "feet"),
  10594. weight: math.unit(280, "lb"),
  10595. name: "Anthro",
  10596. image: {
  10597. source: "./media/characters/cordite/anthro.svg",
  10598. extra: 1986 / 1905,
  10599. bottom: 0.025
  10600. }
  10601. },
  10602. feral: {
  10603. height: math.unit(2, "feet"),
  10604. weight: math.unit(90, "lb"),
  10605. name: "Feral",
  10606. image: {
  10607. source: "./media/characters/cordite/feral.svg",
  10608. extra: 1260 / 755,
  10609. bottom: 0.05
  10610. }
  10611. },
  10612. },
  10613. [
  10614. {
  10615. name: "Normal",
  10616. height: math.unit(6 + 5 / 12, "feet"),
  10617. default: true
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(150, "lb"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/pianostrong/front.svg",
  10630. extra: 6577 / 6254,
  10631. bottom: 0.02
  10632. }
  10633. },
  10634. side: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(150, "lb"),
  10637. name: "Side",
  10638. image: {
  10639. source: "./media/characters/pianostrong/side.svg",
  10640. extra: 6106 / 5730
  10641. }
  10642. },
  10643. back: {
  10644. height: math.unit(6, "feet"),
  10645. weight: math.unit(150, "lb"),
  10646. name: "Back",
  10647. image: {
  10648. source: "./media/characters/pianostrong/back.svg",
  10649. extra: 6085 / 5733,
  10650. bottom: 0.01
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Macro",
  10657. height: math.unit(100, "feet")
  10658. },
  10659. {
  10660. name: "Macro+",
  10661. height: math.unit(300, "feet"),
  10662. default: true
  10663. },
  10664. {
  10665. name: "Macro++",
  10666. height: math.unit(1000, "feet")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10672. {
  10673. front: {
  10674. height: math.unit(6, "feet"),
  10675. weight: math.unit(150, "lb"),
  10676. name: "Front",
  10677. image: {
  10678. source: "./media/characters/kona/front.svg",
  10679. extra: 2960 / 2629,
  10680. bottom: 0.005
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Normal",
  10687. height: math.unit(11 + 8 / 12, "feet")
  10688. },
  10689. {
  10690. name: "Macro",
  10691. height: math.unit(850, "feet"),
  10692. default: true
  10693. },
  10694. {
  10695. name: "Macro+",
  10696. height: math.unit(1.5, "km"),
  10697. default: true
  10698. },
  10699. {
  10700. name: "Megamacro",
  10701. height: math.unit(80, "miles")
  10702. },
  10703. {
  10704. name: "Gigamacro",
  10705. height: math.unit(3500, "miles")
  10706. },
  10707. ]
  10708. ))
  10709. characterMakers.push(() => makeCharacter(
  10710. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10711. {
  10712. side: {
  10713. height: math.unit(1.9, "meters"),
  10714. weight: math.unit(326, "kg"),
  10715. name: "Side",
  10716. image: {
  10717. source: "./media/characters/levi/side.svg",
  10718. extra: 1704 / 1334,
  10719. bottom: 0.02
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Normal",
  10726. height: math.unit(1.9, "meters"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "Macro",
  10731. height: math.unit(20, "meters")
  10732. },
  10733. {
  10734. name: "Macro+",
  10735. height: math.unit(200, "meters")
  10736. },
  10737. {
  10738. name: "Megamacro",
  10739. height: math.unit(2, "km")
  10740. },
  10741. {
  10742. name: "Megamacro+",
  10743. height: math.unit(20, "km")
  10744. },
  10745. {
  10746. name: "Gigamacro",
  10747. height: math.unit(2500, "km")
  10748. },
  10749. {
  10750. name: "Gigamacro+",
  10751. height: math.unit(120000, "km")
  10752. },
  10753. {
  10754. name: "Teramacro",
  10755. height: math.unit(7.77e6, "km")
  10756. },
  10757. ]
  10758. ))
  10759. characterMakers.push(() => makeCharacter(
  10760. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10761. {
  10762. front: {
  10763. height: math.unit(6 + 4 / 12, "feet"),
  10764. weight: math.unit(188, "lb"),
  10765. name: "Front",
  10766. image: {
  10767. source: "./media/characters/bmc/front.svg",
  10768. extra: 1067 / 1022,
  10769. bottom: 0.047
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Human-sized",
  10776. height: math.unit(6 + 4 / 12, "feet")
  10777. },
  10778. {
  10779. name: "Small",
  10780. height: math.unit(250, "feet")
  10781. },
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(1250, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Good Day",
  10789. height: math.unit(88, "miles")
  10790. },
  10791. {
  10792. name: "Largest Measured Size",
  10793. height: math.unit(11.2e6, "lightyears")
  10794. },
  10795. ]
  10796. ))
  10797. characterMakers.push(() => makeCharacter(
  10798. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10799. {
  10800. front: {
  10801. height: math.unit(20, "feet"),
  10802. weight: math.unit(2016, "kg"),
  10803. name: "Front",
  10804. image: {
  10805. source: "./media/characters/sven-the-kaiju/front.svg",
  10806. extra: 1479 / 1449,
  10807. bottom: 0.05
  10808. }
  10809. },
  10810. },
  10811. [
  10812. {
  10813. name: "Fairy",
  10814. height: math.unit(6, "inches")
  10815. },
  10816. {
  10817. name: "Normal",
  10818. height: math.unit(20, "feet"),
  10819. default: true
  10820. },
  10821. {
  10822. name: "Rampage",
  10823. height: math.unit(200, "feet")
  10824. },
  10825. {
  10826. name: "Archfey Forest Guardian",
  10827. height: math.unit(1, "mile")
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10833. {
  10834. front: {
  10835. height: math.unit(4, "meters"),
  10836. weight: math.unit(2, "tons"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/marik/front.svg",
  10840. extra: 1057 / 1003,
  10841. bottom: 0.08
  10842. }
  10843. },
  10844. },
  10845. [
  10846. {
  10847. name: "Normal",
  10848. height: math.unit(4, "meters"),
  10849. default: true
  10850. },
  10851. {
  10852. name: "Macro",
  10853. height: math.unit(20, "meters")
  10854. },
  10855. {
  10856. name: "Megamacro",
  10857. height: math.unit(50, "km")
  10858. },
  10859. {
  10860. name: "Gigamacro",
  10861. height: math.unit(100, "km")
  10862. },
  10863. {
  10864. name: "Alpha Macro",
  10865. height: math.unit(7.88e7, "yottameters")
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10871. {
  10872. front: {
  10873. height: math.unit(6, "feet"),
  10874. weight: math.unit(110, "lb"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/mel/front.svg",
  10878. extra: 736 / 617,
  10879. bottom: 0.017
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Pico",
  10886. height: math.unit(3, "pm")
  10887. },
  10888. {
  10889. name: "Nano",
  10890. height: math.unit(3, "nm")
  10891. },
  10892. {
  10893. name: "Micro",
  10894. height: math.unit(0.3, "mm"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Micro+",
  10899. height: math.unit(3, "mm")
  10900. },
  10901. {
  10902. name: "Normal",
  10903. height: math.unit(5 + 10.5 / 12, "feet")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10909. {
  10910. kaiju: {
  10911. height: math.unit(1.75, "meters"),
  10912. weight: math.unit(55, "kg"),
  10913. name: "Kaiju",
  10914. image: {
  10915. source: "./media/characters/lykonous/kaiju.svg",
  10916. extra: 1055 / 946,
  10917. bottom: 0.135
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Normal",
  10924. height: math.unit(2.5, "meters"),
  10925. default: true
  10926. },
  10927. {
  10928. name: "Kaiju Dragon",
  10929. height: math.unit(60, "meters")
  10930. },
  10931. {
  10932. name: "Mega Kaiju",
  10933. height: math.unit(120, "km")
  10934. },
  10935. {
  10936. name: "Giga Kaiju",
  10937. height: math.unit(200, "megameters")
  10938. },
  10939. {
  10940. name: "Terra Kaiju",
  10941. height: math.unit(400, "gigameters")
  10942. },
  10943. {
  10944. name: "Kaiju Dragon God",
  10945. height: math.unit(13000, "exaparsecs")
  10946. },
  10947. ]
  10948. ))
  10949. characterMakers.push(() => makeCharacter(
  10950. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10951. {
  10952. front: {
  10953. height: math.unit(6, "feet"),
  10954. weight: math.unit(150, "lb"),
  10955. name: "Front",
  10956. image: {
  10957. source: "./media/characters/blü/front.svg",
  10958. extra: 1883 / 1564,
  10959. bottom: 0.031
  10960. }
  10961. },
  10962. },
  10963. [
  10964. {
  10965. name: "Normal",
  10966. height: math.unit(13, "feet"),
  10967. default: true
  10968. },
  10969. {
  10970. name: "Big Boi",
  10971. height: math.unit(150, "meters")
  10972. },
  10973. {
  10974. name: "Mini Stomper",
  10975. height: math.unit(300, "meters")
  10976. },
  10977. {
  10978. name: "Macro",
  10979. height: math.unit(1000, "meters")
  10980. },
  10981. {
  10982. name: "Megamacro",
  10983. height: math.unit(11000, "meters")
  10984. },
  10985. {
  10986. name: "Gigamacro",
  10987. height: math.unit(11000, "km")
  10988. },
  10989. {
  10990. name: "Teramacro",
  10991. height: math.unit(420000, "km")
  10992. },
  10993. {
  10994. name: "Examacro",
  10995. height: math.unit(120, "parsecs")
  10996. },
  10997. {
  10998. name: "God Tho",
  10999. height: math.unit(98000000000, "parsecs")
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11005. {
  11006. taurFront: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(200, "lb"),
  11009. name: "Taur (Front)",
  11010. image: {
  11011. source: "./media/characters/scales/taur-front.svg",
  11012. extra: 1,
  11013. bottom: 0.05
  11014. }
  11015. },
  11016. taurBack: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(200, "lb"),
  11019. name: "Taur (Back)",
  11020. image: {
  11021. source: "./media/characters/scales/taur-back.svg",
  11022. extra: 1,
  11023. bottom: 0.08
  11024. }
  11025. },
  11026. anthro: {
  11027. height: math.unit(6 * 7 / 12, "feet"),
  11028. weight: math.unit(100, "lb"),
  11029. name: "Anthro",
  11030. image: {
  11031. source: "./media/characters/scales/anthro.svg",
  11032. extra: 1,
  11033. bottom: 0.06
  11034. }
  11035. },
  11036. },
  11037. [
  11038. {
  11039. name: "Normal",
  11040. height: math.unit(12, "feet"),
  11041. default: true
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11047. {
  11048. front: {
  11049. height: math.unit(6, "feet"),
  11050. weight: math.unit(150, "lb"),
  11051. name: "Front",
  11052. image: {
  11053. source: "./media/characters/koragos/front.svg",
  11054. extra: 841 / 794,
  11055. bottom: 0.035
  11056. }
  11057. },
  11058. back: {
  11059. height: math.unit(6, "feet"),
  11060. weight: math.unit(150, "lb"),
  11061. name: "Back",
  11062. image: {
  11063. source: "./media/characters/koragos/back.svg",
  11064. extra: 841 / 810,
  11065. bottom: 0.022
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(6 + 11 / 12, "feet"),
  11073. default: true
  11074. },
  11075. {
  11076. name: "Macro",
  11077. height: math.unit(490, "feet")
  11078. },
  11079. {
  11080. name: "Megamacro",
  11081. height: math.unit(10, "miles")
  11082. },
  11083. {
  11084. name: "Gigamacro",
  11085. height: math.unit(50, "miles")
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(250, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/xylrem/front.svg",
  11098. extra: 3323 / 3050,
  11099. bottom: 0.065
  11100. }
  11101. },
  11102. },
  11103. [
  11104. {
  11105. name: "Micro",
  11106. height: math.unit(4, "feet")
  11107. },
  11108. {
  11109. name: "Normal",
  11110. height: math.unit(16, "feet"),
  11111. default: true
  11112. },
  11113. {
  11114. name: "Macro",
  11115. height: math.unit(2720, "feet")
  11116. },
  11117. {
  11118. name: "Megamacro",
  11119. height: math.unit(25000, "miles")
  11120. },
  11121. ]
  11122. ))
  11123. characterMakers.push(() => makeCharacter(
  11124. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11125. {
  11126. front: {
  11127. height: math.unit(8, "feet"),
  11128. weight: math.unit(250, "kg"),
  11129. name: "Front",
  11130. image: {
  11131. source: "./media/characters/ikideru/front.svg",
  11132. extra: 930 / 870,
  11133. bottom: 0.087
  11134. }
  11135. },
  11136. back: {
  11137. height: math.unit(8, "feet"),
  11138. weight: math.unit(250, "kg"),
  11139. name: "Back",
  11140. image: {
  11141. source: "./media/characters/ikideru/back.svg",
  11142. extra: 919 / 852,
  11143. bottom: 0.055
  11144. }
  11145. },
  11146. },
  11147. [
  11148. {
  11149. name: "Rare",
  11150. height: math.unit(8, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Playful Loom",
  11155. height: math.unit(80, "feet")
  11156. },
  11157. {
  11158. name: "City Leaner",
  11159. height: math.unit(230, "feet")
  11160. },
  11161. {
  11162. name: "Megamacro",
  11163. height: math.unit(2500, "feet")
  11164. },
  11165. {
  11166. name: "Gigamacro",
  11167. height: math.unit(26400, "feet")
  11168. },
  11169. {
  11170. name: "Tectonic Shifter",
  11171. height: math.unit(1.7, "megameters")
  11172. },
  11173. {
  11174. name: "Planet Carer",
  11175. height: math.unit(21, "megameters")
  11176. },
  11177. {
  11178. name: "God",
  11179. height: math.unit(11157.22, "parsecs")
  11180. },
  11181. ]
  11182. ))
  11183. characterMakers.push(() => makeCharacter(
  11184. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11185. {
  11186. front: {
  11187. height: math.unit(6, "feet"),
  11188. weight: math.unit(120, "lb"),
  11189. name: "Front",
  11190. image: {
  11191. source: "./media/characters/neo/front.svg"
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Micro",
  11198. height: math.unit(2, "inches"),
  11199. default: true
  11200. },
  11201. {
  11202. name: "Human Size",
  11203. height: math.unit(5 + 8 / 12, "feet")
  11204. },
  11205. ]
  11206. ))
  11207. characterMakers.push(() => makeCharacter(
  11208. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11209. {
  11210. front: {
  11211. height: math.unit(13 + 10 / 12, "feet"),
  11212. weight: math.unit(5320, "lb"),
  11213. name: "Front",
  11214. image: {
  11215. source: "./media/characters/chauncey-chantz/front.svg",
  11216. extra: 1587 / 1435,
  11217. bottom: 0.02
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(13 + 10 / 12, "feet"),
  11225. default: true
  11226. },
  11227. {
  11228. name: "Macro",
  11229. height: math.unit(45, "feet")
  11230. },
  11231. {
  11232. name: "Megamacro",
  11233. height: math.unit(250, "miles")
  11234. },
  11235. {
  11236. name: "Planetary",
  11237. height: math.unit(10000, "miles")
  11238. },
  11239. {
  11240. name: "Galactic",
  11241. height: math.unit(40000, "parsecs")
  11242. },
  11243. {
  11244. name: "Universal",
  11245. height: math.unit(1, "yottameter")
  11246. },
  11247. ]
  11248. ))
  11249. characterMakers.push(() => makeCharacter(
  11250. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11251. {
  11252. front: {
  11253. height: math.unit(6, "feet"),
  11254. weight: math.unit(150, "lb"),
  11255. name: "Front",
  11256. image: {
  11257. source: "./media/characters/epifox/front.svg",
  11258. extra: 1,
  11259. bottom: 0.075
  11260. }
  11261. },
  11262. },
  11263. [
  11264. {
  11265. name: "Micro",
  11266. height: math.unit(6, "inches")
  11267. },
  11268. {
  11269. name: "Normal",
  11270. height: math.unit(12, "feet"),
  11271. default: true
  11272. },
  11273. {
  11274. name: "Macro",
  11275. height: math.unit(3810, "feet")
  11276. },
  11277. {
  11278. name: "Megamacro",
  11279. height: math.unit(500, "miles")
  11280. },
  11281. ]
  11282. ))
  11283. characterMakers.push(() => makeCharacter(
  11284. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11285. {
  11286. front: {
  11287. height: math.unit(1.8796, "m"),
  11288. weight: math.unit(230, "lb"),
  11289. name: "Front",
  11290. image: {
  11291. source: "./media/characters/colin-t/front.svg",
  11292. extra: 1272 / 1193,
  11293. bottom: 0.07
  11294. }
  11295. },
  11296. },
  11297. [
  11298. {
  11299. name: "Micro",
  11300. height: math.unit(0.571, "meters")
  11301. },
  11302. {
  11303. name: "Normal",
  11304. height: math.unit(1.8796, "meters"),
  11305. default: true
  11306. },
  11307. {
  11308. name: "Tall",
  11309. height: math.unit(4, "meters")
  11310. },
  11311. {
  11312. name: "Macro",
  11313. height: math.unit(67.241, "meters")
  11314. },
  11315. {
  11316. name: "Megamacro",
  11317. height: math.unit(371.856, "meters")
  11318. },
  11319. {
  11320. name: "Planetary",
  11321. height: math.unit(12631.5689, "km")
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11327. {
  11328. front: {
  11329. height: math.unit(1.85, "meters"),
  11330. weight: math.unit(80, "kg"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/matvei/front.svg",
  11334. extra: 614 / 594,
  11335. bottom: 0.01
  11336. }
  11337. },
  11338. },
  11339. [
  11340. {
  11341. name: "Normal",
  11342. height: math.unit(1.85, "meters"),
  11343. default: true
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(5 + 9 / 12, "feet"),
  11352. weight: math.unit(70, "lb"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/quincy/front.svg",
  11356. extra: 3041 / 2751
  11357. }
  11358. },
  11359. back: {
  11360. height: math.unit(5 + 9 / 12, "feet"),
  11361. weight: math.unit(70, "lb"),
  11362. name: "Back",
  11363. image: {
  11364. source: "./media/characters/quincy/back.svg",
  11365. extra: 3041 / 2751
  11366. }
  11367. },
  11368. flying: {
  11369. height: math.unit(5 + 4 / 12, "feet"),
  11370. weight: math.unit(70, "lb"),
  11371. name: "Flying",
  11372. image: {
  11373. source: "./media/characters/quincy/flying.svg",
  11374. extra: 1044 / 930
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Micro",
  11381. height: math.unit(3, "cm")
  11382. },
  11383. {
  11384. name: "Normal",
  11385. height: math.unit(5 + 9 / 12, "feet")
  11386. },
  11387. {
  11388. name: "Macro",
  11389. height: math.unit(200, "meters"),
  11390. default: true
  11391. },
  11392. {
  11393. name: "Megamacro",
  11394. height: math.unit(1000, "meters")
  11395. },
  11396. ]
  11397. ))
  11398. characterMakers.push(() => makeCharacter(
  11399. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11400. {
  11401. front: {
  11402. height: math.unit(4 + 7 / 12, "feet"),
  11403. weight: math.unit(50, "lb"),
  11404. name: "Front",
  11405. image: {
  11406. source: "./media/characters/vanrel/front.svg",
  11407. extra: 1,
  11408. bottom: 0.02
  11409. }
  11410. },
  11411. frontAlt: {
  11412. height: math.unit(4 + 7 / 12, "feet"),
  11413. weight: math.unit(50, "lb"),
  11414. name: "Front-alt",
  11415. image: {
  11416. source: "./media/characters/vanrel/front-alt.svg",
  11417. extra: 1,
  11418. bottom: 15 / 1511
  11419. }
  11420. },
  11421. elemental: {
  11422. height: math.unit(3, "feet"),
  11423. weight: math.unit(50, "lb"),
  11424. name: "Elemental",
  11425. image: {
  11426. source: "./media/characters/vanrel/elemental.svg",
  11427. extra: 192.3 / 162.8,
  11428. bottom: 1.79 / 194.17
  11429. }
  11430. },
  11431. side: {
  11432. height: math.unit(4 + 7 / 12, "feet"),
  11433. weight: math.unit(50, "lb"),
  11434. name: "Side",
  11435. image: {
  11436. source: "./media/characters/vanrel/side.svg",
  11437. extra: 1,
  11438. bottom: 0.025
  11439. }
  11440. },
  11441. tome: {
  11442. height: math.unit(1.35, "feet"),
  11443. weight: math.unit(10, "lb"),
  11444. name: "Vanrel's Tome",
  11445. rename: true,
  11446. image: {
  11447. source: "./media/characters/vanrel/tome.svg"
  11448. }
  11449. },
  11450. beans: {
  11451. height: math.unit(0.89, "feet"),
  11452. name: "Beans",
  11453. image: {
  11454. source: "./media/characters/vanrel/beans.svg"
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Normal",
  11461. height: math.unit(4 + 7 / 12, "feet"),
  11462. default: true
  11463. },
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11468. {
  11469. front: {
  11470. height: math.unit(7 + 5 / 12, "feet"),
  11471. weight: math.unit(150, "lb"),
  11472. name: "Front",
  11473. image: {
  11474. source: "./media/characters/kuiper-vanrel/front.svg",
  11475. extra: 1118 / 1068,
  11476. bottom: 0.09
  11477. }
  11478. },
  11479. foot: {
  11480. height: math.unit(0.55, "meters"),
  11481. name: "Foot",
  11482. image: {
  11483. source: "./media/characters/kuiper-vanrel/foot.svg",
  11484. }
  11485. },
  11486. battle: {
  11487. height: math.unit(6.824, "feet"),
  11488. weight: math.unit(150, "lb"),
  11489. name: "Battle",
  11490. image: {
  11491. source: "./media/characters/kuiper-vanrel/battle.svg",
  11492. extra: 1466 / 1327,
  11493. bottom: 29 / 1492.5
  11494. }
  11495. },
  11496. battleAlt: {
  11497. height: math.unit(6.824, "feet"),
  11498. weight: math.unit(150, "lb"),
  11499. name: "Battle (Alt)",
  11500. image: {
  11501. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11502. extra: 2081 / 1965,
  11503. bottom: 40 / 2121
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Normal",
  11510. height: math.unit(7 + 5 / 12, "feet"),
  11511. default: true
  11512. },
  11513. ]
  11514. ))
  11515. characterMakers.push(() => makeCharacter(
  11516. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11517. {
  11518. front: {
  11519. height: math.unit(8 + 5 / 12, "feet"),
  11520. weight: math.unit(150, "lb"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/keset-vanrel/front.svg",
  11524. extra: 1150 / 1084,
  11525. bottom: 0.05
  11526. }
  11527. },
  11528. hand: {
  11529. height: math.unit(0.6, "meters"),
  11530. name: "Hand",
  11531. image: {
  11532. source: "./media/characters/keset-vanrel/hand.svg"
  11533. }
  11534. },
  11535. foot: {
  11536. height: math.unit(0.94978, "meters"),
  11537. name: "Foot",
  11538. image: {
  11539. source: "./media/characters/keset-vanrel/foot.svg"
  11540. }
  11541. },
  11542. battle: {
  11543. height: math.unit(7.408, "feet"),
  11544. weight: math.unit(150, "lb"),
  11545. name: "Battle",
  11546. image: {
  11547. source: "./media/characters/keset-vanrel/battle.svg",
  11548. extra: 1890 / 1386,
  11549. bottom: 73.28 / 1970
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(8 + 5 / 12, "feet"),
  11557. default: true
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(6, "feet"),
  11566. weight: math.unit(150, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/neos/front.svg",
  11570. extra: 1696 / 992,
  11571. bottom: 0.14
  11572. }
  11573. },
  11574. },
  11575. [
  11576. {
  11577. name: "Normal",
  11578. height: math.unit(54, "cm"),
  11579. default: true
  11580. },
  11581. {
  11582. name: "Macro",
  11583. height: math.unit(100, "m")
  11584. },
  11585. {
  11586. name: "Megamacro",
  11587. height: math.unit(10, "km")
  11588. },
  11589. {
  11590. name: "Megamacro+",
  11591. height: math.unit(100, "km")
  11592. },
  11593. {
  11594. name: "Gigamacro",
  11595. height: math.unit(100, "Mm")
  11596. },
  11597. {
  11598. name: "Teramacro",
  11599. height: math.unit(100, "Gm")
  11600. },
  11601. {
  11602. name: "Examacro",
  11603. height: math.unit(100, "Em")
  11604. },
  11605. {
  11606. name: "Godly",
  11607. height: math.unit(10000, "Ym")
  11608. },
  11609. {
  11610. name: "Beyond Godly",
  11611. height: math.unit(25, "multiverses")
  11612. },
  11613. ]
  11614. ))
  11615. characterMakers.push(() => makeCharacter(
  11616. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11617. {
  11618. feminine: {
  11619. height: math.unit(5, "feet"),
  11620. weight: math.unit(100, "lb"),
  11621. name: "Feminine",
  11622. image: {
  11623. source: "./media/characters/sammy-mouse/feminine.svg",
  11624. extra: 2526 / 2425,
  11625. bottom: 0.123
  11626. }
  11627. },
  11628. masculine: {
  11629. height: math.unit(5, "feet"),
  11630. weight: math.unit(100, "lb"),
  11631. name: "Masculine",
  11632. image: {
  11633. source: "./media/characters/sammy-mouse/masculine.svg",
  11634. extra: 2526 / 2425,
  11635. bottom: 0.123
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Micro",
  11642. height: math.unit(5, "inches")
  11643. },
  11644. {
  11645. name: "Normal",
  11646. height: math.unit(5, "feet"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Macro",
  11651. height: math.unit(60, "feet")
  11652. },
  11653. ]
  11654. ))
  11655. characterMakers.push(() => makeCharacter(
  11656. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11657. {
  11658. front: {
  11659. height: math.unit(4, "feet"),
  11660. weight: math.unit(50, "lb"),
  11661. name: "Front",
  11662. image: {
  11663. source: "./media/characters/kole/front.svg",
  11664. extra: 1423 / 1303,
  11665. bottom: 0.025
  11666. }
  11667. },
  11668. back: {
  11669. height: math.unit(4, "feet"),
  11670. weight: math.unit(50, "lb"),
  11671. name: "Back",
  11672. image: {
  11673. source: "./media/characters/kole/back.svg",
  11674. extra: 1426 / 1280,
  11675. bottom: 0.02
  11676. }
  11677. },
  11678. },
  11679. [
  11680. {
  11681. name: "Normal",
  11682. height: math.unit(4, "feet"),
  11683. default: true
  11684. },
  11685. ]
  11686. ))
  11687. characterMakers.push(() => makeCharacter(
  11688. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11689. {
  11690. front: {
  11691. height: math.unit(2 + 6 / 12, "feet"),
  11692. weight: math.unit(20, "lb"),
  11693. name: "Front",
  11694. image: {
  11695. source: "./media/characters/rufran/front.svg",
  11696. extra: 2041 / 1839,
  11697. bottom: 0.055
  11698. }
  11699. },
  11700. back: {
  11701. height: math.unit(2 + 6 / 12, "feet"),
  11702. weight: math.unit(20, "lb"),
  11703. name: "Back",
  11704. image: {
  11705. source: "./media/characters/rufran/back.svg",
  11706. extra: 2054 / 1839,
  11707. bottom: 0.01
  11708. }
  11709. },
  11710. hand: {
  11711. height: math.unit(0.2166, "meters"),
  11712. name: "Hand",
  11713. image: {
  11714. source: "./media/characters/rufran/hand.svg"
  11715. }
  11716. },
  11717. foot: {
  11718. height: math.unit(0.185, "meters"),
  11719. name: "Foot",
  11720. image: {
  11721. source: "./media/characters/rufran/foot.svg"
  11722. }
  11723. },
  11724. },
  11725. [
  11726. {
  11727. name: "Micro",
  11728. height: math.unit(1, "inch")
  11729. },
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(2 + 6 / 12, "feet"),
  11733. default: true
  11734. },
  11735. {
  11736. name: "Big",
  11737. height: math.unit(60, "feet")
  11738. },
  11739. {
  11740. name: "Macro",
  11741. height: math.unit(325, "feet")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(0.3, "meters"),
  11750. weight: math.unit(3.5, "kg"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/chip/front.svg",
  11754. extra: 748 / 674
  11755. }
  11756. },
  11757. },
  11758. [
  11759. {
  11760. name: "Micro",
  11761. height: math.unit(1, "inch"),
  11762. default: true
  11763. },
  11764. ]
  11765. ))
  11766. characterMakers.push(() => makeCharacter(
  11767. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11768. {
  11769. side: {
  11770. height: math.unit(2.3, "meters"),
  11771. weight: math.unit(3500, "lb"),
  11772. name: "Side",
  11773. image: {
  11774. source: "./media/characters/torvid/side.svg",
  11775. extra: 1972 / 722,
  11776. bottom: 0.035
  11777. }
  11778. },
  11779. },
  11780. [
  11781. {
  11782. name: "Normal",
  11783. height: math.unit(2.3, "meters"),
  11784. default: true
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(2, "meters"),
  11793. weight: math.unit(150.5, "kg"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/susan/front.svg",
  11797. extra: 693 / 635,
  11798. bottom: 0.05
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Megamacro",
  11805. height: math.unit(505, "miles"),
  11806. default: true
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11812. {
  11813. front: {
  11814. height: math.unit(6, "feet"),
  11815. weight: math.unit(150, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/raindrops/front.svg",
  11819. extra: 2655 / 2461,
  11820. bottom: 49 / 2705
  11821. }
  11822. },
  11823. back: {
  11824. height: math.unit(6, "feet"),
  11825. weight: math.unit(150, "lb"),
  11826. name: "Back",
  11827. image: {
  11828. source: "./media/characters/raindrops/back.svg",
  11829. extra: 2574 / 2400,
  11830. bottom: 65 / 2634
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Micro",
  11837. height: math.unit(6, "inches")
  11838. },
  11839. {
  11840. name: "Normal",
  11841. height: math.unit(6 + 2 / 12, "feet")
  11842. },
  11843. {
  11844. name: "Macro",
  11845. height: math.unit(131, "feet"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Megamacro",
  11850. height: math.unit(15, "miles")
  11851. },
  11852. {
  11853. name: "Gigamacro",
  11854. height: math.unit(4000, "miles")
  11855. },
  11856. {
  11857. name: "Teramacro",
  11858. height: math.unit(315000, "miles")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(2.794, "meters"),
  11867. weight: math.unit(325, "kg"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/tezwa/front.svg",
  11871. extra: 2083 / 1906,
  11872. bottom: 0.031
  11873. }
  11874. },
  11875. foot: {
  11876. height: math.unit(0.687, "meters"),
  11877. name: "Foot",
  11878. image: {
  11879. source: "./media/characters/tezwa/foot.svg"
  11880. }
  11881. },
  11882. },
  11883. [
  11884. {
  11885. name: "Normal",
  11886. height: math.unit(9 + 2 / 12, "feet"),
  11887. default: true
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(58, "feet"),
  11896. weight: math.unit(89000, "lb"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/typhus/front.svg",
  11900. extra: 816 / 800,
  11901. bottom: 0.065
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Macro",
  11908. height: math.unit(58, "feet"),
  11909. default: true
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(12, "feet"),
  11918. weight: math.unit(6, "tonnes"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/lyra-von-wulf/front.svg",
  11922. extra: 1,
  11923. bottom: 0.10
  11924. }
  11925. },
  11926. frontMecha: {
  11927. height: math.unit(12, "feet"),
  11928. weight: math.unit(12, "tonnes"),
  11929. name: "Front (Mecha)",
  11930. image: {
  11931. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11932. extra: 1,
  11933. bottom: 0.042
  11934. }
  11935. },
  11936. maw: {
  11937. height: math.unit(2.2, "feet"),
  11938. name: "Maw",
  11939. image: {
  11940. source: "./media/characters/lyra-von-wulf/maw.svg"
  11941. }
  11942. },
  11943. },
  11944. [
  11945. {
  11946. name: "Normal",
  11947. height: math.unit(12, "feet"),
  11948. default: true
  11949. },
  11950. {
  11951. name: "Classic",
  11952. height: math.unit(50, "feet")
  11953. },
  11954. {
  11955. name: "Macro",
  11956. height: math.unit(500, "feet")
  11957. },
  11958. {
  11959. name: "Megamacro",
  11960. height: math.unit(1, "mile")
  11961. },
  11962. {
  11963. name: "Gigamacro",
  11964. height: math.unit(400, "miles")
  11965. },
  11966. {
  11967. name: "Teramacro",
  11968. height: math.unit(22000, "miles")
  11969. },
  11970. {
  11971. name: "Solarmacro",
  11972. height: math.unit(8600000, "miles")
  11973. },
  11974. {
  11975. name: "Galactic",
  11976. height: math.unit(1057000, "lightyears")
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(6 + 10 / 12, "feet"),
  11985. weight: math.unit(150, "lb"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/dixon/front.svg",
  11989. extra: 3361 / 3209,
  11990. bottom: 0.01
  11991. }
  11992. },
  11993. },
  11994. [
  11995. {
  11996. name: "Normal",
  11997. height: math.unit(6 + 10 / 12, "feet"),
  11998. default: true
  11999. },
  12000. {
  12001. name: "Big",
  12002. height: math.unit(12, "meters")
  12003. },
  12004. {
  12005. name: "Macro",
  12006. height: math.unit(500, "meters")
  12007. },
  12008. {
  12009. name: "Megamacro",
  12010. height: math.unit(2, "km")
  12011. },
  12012. ]
  12013. ))
  12014. characterMakers.push(() => makeCharacter(
  12015. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12016. {
  12017. front: {
  12018. height: math.unit(185, "cm"),
  12019. weight: math.unit(68, "kg"),
  12020. name: "Front",
  12021. image: {
  12022. source: "./media/characters/kauko/front.svg",
  12023. extra: 1455 / 1421,
  12024. bottom: 0.03
  12025. }
  12026. },
  12027. back: {
  12028. height: math.unit(185, "cm"),
  12029. weight: math.unit(68, "kg"),
  12030. name: "Back",
  12031. image: {
  12032. source: "./media/characters/kauko/back.svg",
  12033. extra: 1455 / 1421,
  12034. bottom: 0.004
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(185, "cm"),
  12042. default: true
  12043. },
  12044. ]
  12045. ))
  12046. characterMakers.push(() => makeCharacter(
  12047. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12048. {
  12049. front: {
  12050. height: math.unit(6, "feet"),
  12051. weight: math.unit(150, "kg"),
  12052. name: "Front",
  12053. image: {
  12054. source: "./media/characters/varg/front.svg",
  12055. extra: 1108 / 1018,
  12056. bottom: 0.0375
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Normal",
  12063. height: math.unit(5, "meters")
  12064. },
  12065. {
  12066. name: "Macro",
  12067. height: math.unit(200, "meters")
  12068. },
  12069. {
  12070. name: "Megamacro",
  12071. height: math.unit(20, "kilometers")
  12072. },
  12073. {
  12074. name: "True Size",
  12075. height: math.unit(211, "km"),
  12076. default: true
  12077. },
  12078. {
  12079. name: "Gigamacro",
  12080. height: math.unit(1000, "km")
  12081. },
  12082. {
  12083. name: "Gigamacro+",
  12084. height: math.unit(8000, "km")
  12085. },
  12086. {
  12087. name: "Teramacro",
  12088. height: math.unit(1000000, "km")
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12094. {
  12095. front: {
  12096. height: math.unit(7 + 7 / 12, "feet"),
  12097. weight: math.unit(267, "lb"),
  12098. name: "Front",
  12099. image: {
  12100. source: "./media/characters/dayza/front.svg",
  12101. extra: 1262 / 1200,
  12102. bottom: 0.035
  12103. }
  12104. },
  12105. side: {
  12106. height: math.unit(7 + 7 / 12, "feet"),
  12107. weight: math.unit(267, "lb"),
  12108. name: "Side",
  12109. image: {
  12110. source: "./media/characters/dayza/side.svg",
  12111. extra: 1295 / 1245,
  12112. bottom: 0.05
  12113. }
  12114. },
  12115. back: {
  12116. height: math.unit(7 + 7 / 12, "feet"),
  12117. weight: math.unit(267, "lb"),
  12118. name: "Back",
  12119. image: {
  12120. source: "./media/characters/dayza/back.svg",
  12121. extra: 1241 / 1170
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Normal",
  12128. height: math.unit(7 + 7 / 12, "feet"),
  12129. default: true
  12130. },
  12131. {
  12132. name: "Macro",
  12133. height: math.unit(155, "feet")
  12134. },
  12135. ]
  12136. ))
  12137. characterMakers.push(() => makeCharacter(
  12138. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12139. {
  12140. front: {
  12141. height: math.unit(6 + 5 / 12, "feet"),
  12142. weight: math.unit(160, "lb"),
  12143. name: "Front",
  12144. image: {
  12145. source: "./media/characters/xanthos/front.svg",
  12146. extra: 1,
  12147. bottom: 0.04
  12148. }
  12149. },
  12150. back: {
  12151. height: math.unit(6 + 5 / 12, "feet"),
  12152. weight: math.unit(160, "lb"),
  12153. name: "Back",
  12154. image: {
  12155. source: "./media/characters/xanthos/back.svg",
  12156. extra: 1,
  12157. bottom: 0.03
  12158. }
  12159. },
  12160. hand: {
  12161. height: math.unit(0.928, "feet"),
  12162. name: "Hand",
  12163. image: {
  12164. source: "./media/characters/xanthos/hand.svg"
  12165. }
  12166. },
  12167. foot: {
  12168. height: math.unit(1.286, "feet"),
  12169. name: "Foot",
  12170. image: {
  12171. source: "./media/characters/xanthos/foot.svg"
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(6 + 5 / 12, "feet"),
  12179. default: true
  12180. },
  12181. {
  12182. name: "Normal+",
  12183. height: math.unit(6, "meters")
  12184. },
  12185. {
  12186. name: "Macro",
  12187. height: math.unit(40, "feet")
  12188. },
  12189. {
  12190. name: "Macro+",
  12191. height: math.unit(200, "meters")
  12192. },
  12193. {
  12194. name: "Megamacro",
  12195. height: math.unit(20, "km")
  12196. },
  12197. {
  12198. name: "Megamacro+",
  12199. height: math.unit(100, "km")
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(6 + 3 / 12, "feet"),
  12208. weight: math.unit(215, "lb"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/grynn/front.svg",
  12212. extra: 4627 / 4209,
  12213. bottom: 0.047
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Micro",
  12220. height: math.unit(6, "inches")
  12221. },
  12222. {
  12223. name: "Normal",
  12224. height: math.unit(6 + 3 / 12, "feet"),
  12225. default: true
  12226. },
  12227. {
  12228. name: "Big",
  12229. height: math.unit(104, "feet")
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(944, "feet")
  12234. },
  12235. {
  12236. name: "Macro+",
  12237. height: math.unit(9480, "feet")
  12238. },
  12239. {
  12240. name: "Megamacro",
  12241. height: math.unit(78752, "feet")
  12242. },
  12243. {
  12244. name: "Megamacro+",
  12245. height: math.unit(630128, "feet")
  12246. },
  12247. {
  12248. name: "Megamacro++",
  12249. height: math.unit(3150695, "feet")
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(7 + 5 / 12, "feet"),
  12258. weight: math.unit(450, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/mocha-aura/front.svg",
  12262. extra: 1907 / 1817,
  12263. bottom: 0.04
  12264. }
  12265. },
  12266. back: {
  12267. height: math.unit(7 + 5 / 12, "feet"),
  12268. weight: math.unit(450, "lb"),
  12269. name: "Back",
  12270. image: {
  12271. source: "./media/characters/mocha-aura/back.svg",
  12272. extra: 1900 / 1825,
  12273. bottom: 0.045
  12274. }
  12275. },
  12276. },
  12277. [
  12278. {
  12279. name: "Nano",
  12280. height: math.unit(1, "nm")
  12281. },
  12282. {
  12283. name: "Megamicro",
  12284. height: math.unit(1, "mm")
  12285. },
  12286. {
  12287. name: "Micro",
  12288. height: math.unit(3, "inches")
  12289. },
  12290. {
  12291. name: "Normal",
  12292. height: math.unit(7 + 5 / 12, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Macro",
  12297. height: math.unit(30, "feet")
  12298. },
  12299. {
  12300. name: "Megamacro",
  12301. height: math.unit(3500, "feet")
  12302. },
  12303. {
  12304. name: "Teramacro",
  12305. height: math.unit(500000, "miles")
  12306. },
  12307. {
  12308. name: "Petamacro",
  12309. height: math.unit(50000000000000000, "parsecs")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(6, "feet"),
  12318. weight: math.unit(150, "lb"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/ilisha-devya/front.svg",
  12322. extra: 1,
  12323. bottom: 0.175
  12324. }
  12325. },
  12326. back: {
  12327. height: math.unit(6, "feet"),
  12328. weight: math.unit(150, "lb"),
  12329. name: "Back",
  12330. image: {
  12331. source: "./media/characters/ilisha-devya/back.svg",
  12332. extra: 1,
  12333. bottom: 0.015
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(500, "feet"),
  12341. default: true
  12342. },
  12343. {
  12344. name: "Megamacro",
  12345. height: math.unit(10, "miles")
  12346. },
  12347. {
  12348. name: "Gigamacro",
  12349. height: math.unit(100000, "miles")
  12350. },
  12351. {
  12352. name: "Examacro",
  12353. height: math.unit(1e9, "lightyears")
  12354. },
  12355. {
  12356. name: "Omniversal",
  12357. height: math.unit(1e33, "lightyears")
  12358. },
  12359. {
  12360. name: "Beyond Infinite",
  12361. height: math.unit(1e100, "lightyears")
  12362. },
  12363. ]
  12364. ))
  12365. characterMakers.push(() => makeCharacter(
  12366. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12367. {
  12368. Side: {
  12369. height: math.unit(6, "feet"),
  12370. weight: math.unit(150, "lb"),
  12371. name: "Side",
  12372. image: {
  12373. source: "./media/characters/mira/side.svg",
  12374. extra: 900 / 799,
  12375. bottom: 0.02
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Human Size",
  12382. height: math.unit(6, "feet")
  12383. },
  12384. {
  12385. name: "Macro",
  12386. height: math.unit(100, "feet"),
  12387. default: true
  12388. },
  12389. {
  12390. name: "Megamacro",
  12391. height: math.unit(10, "miles")
  12392. },
  12393. {
  12394. name: "Gigamacro",
  12395. height: math.unit(25000, "miles")
  12396. },
  12397. {
  12398. name: "Teramacro",
  12399. height: math.unit(300, "AU")
  12400. },
  12401. {
  12402. name: "Full Size",
  12403. height: math.unit(4.5e10, "lightyears")
  12404. },
  12405. ]
  12406. ))
  12407. characterMakers.push(() => makeCharacter(
  12408. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12409. {
  12410. front: {
  12411. height: math.unit(6, "feet"),
  12412. weight: math.unit(150, "lb"),
  12413. name: "Front",
  12414. image: {
  12415. source: "./media/characters/holly/front.svg",
  12416. extra: 639 / 606
  12417. }
  12418. },
  12419. back: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "lb"),
  12422. name: "Back",
  12423. image: {
  12424. source: "./media/characters/holly/back.svg",
  12425. extra: 623 / 598
  12426. }
  12427. },
  12428. frontWorking: {
  12429. height: math.unit(6, "feet"),
  12430. weight: math.unit(150, "lb"),
  12431. name: "Front (Working)",
  12432. image: {
  12433. source: "./media/characters/holly/front-working.svg",
  12434. extra: 607 / 577,
  12435. bottom: 0.048
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Normal",
  12442. height: math.unit(12 + 3 / 12, "feet"),
  12443. default: true
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(6, "feet"),
  12452. weight: math.unit(150, "lb"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/porter/front.svg",
  12456. extra: 1,
  12457. bottom: 0.01
  12458. }
  12459. },
  12460. frontRobes: {
  12461. height: math.unit(6, "feet"),
  12462. weight: math.unit(150, "lb"),
  12463. name: "Front (Robes)",
  12464. image: {
  12465. source: "./media/characters/porter/front-robes.svg",
  12466. extra: 1.01,
  12467. bottom: 0.01
  12468. }
  12469. },
  12470. },
  12471. [
  12472. {
  12473. name: "Normal",
  12474. height: math.unit(11 + 9 / 12, "feet"),
  12475. default: true
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12481. {
  12482. legendary: {
  12483. height: math.unit(6, "feet"),
  12484. weight: math.unit(150, "lb"),
  12485. name: "Legendary",
  12486. image: {
  12487. source: "./media/characters/lucy/legendary.svg",
  12488. extra: 1355 / 1100,
  12489. bottom: 0.045
  12490. }
  12491. },
  12492. },
  12493. [
  12494. {
  12495. name: "Legendary",
  12496. height: math.unit(86882 * 2, "miles"),
  12497. default: true
  12498. },
  12499. ]
  12500. ))
  12501. characterMakers.push(() => makeCharacter(
  12502. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12503. {
  12504. front: {
  12505. height: math.unit(6, "feet"),
  12506. weight: math.unit(150, "lb"),
  12507. name: "Front",
  12508. image: {
  12509. source: "./media/characters/drusilla/front.svg",
  12510. extra: 678 / 635,
  12511. bottom: 0.03
  12512. }
  12513. },
  12514. back: {
  12515. height: math.unit(6, "feet"),
  12516. weight: math.unit(150, "lb"),
  12517. name: "Back",
  12518. image: {
  12519. source: "./media/characters/drusilla/back.svg",
  12520. extra: 678 / 635,
  12521. bottom: 0.005
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Macro",
  12528. height: math.unit(100, "feet")
  12529. },
  12530. {
  12531. name: "Canon Height",
  12532. height: math.unit(2000, "feet"),
  12533. default: true
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(180, "lb"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/renard-thatch/front.svg",
  12546. extra: 2411 / 2275,
  12547. bottom: 0.01
  12548. }
  12549. },
  12550. frontPosing: {
  12551. height: math.unit(6, "feet"),
  12552. weight: math.unit(180, "lb"),
  12553. name: "Front (Posing)",
  12554. image: {
  12555. source: "./media/characters/renard-thatch/front-posing.svg",
  12556. extra: 2381 / 2261,
  12557. bottom: 0.01
  12558. }
  12559. },
  12560. back: {
  12561. height: math.unit(6, "feet"),
  12562. weight: math.unit(180, "lb"),
  12563. name: "Back",
  12564. image: {
  12565. source: "./media/characters/renard-thatch/back.svg",
  12566. extra: 2428 / 2288
  12567. }
  12568. },
  12569. },
  12570. [
  12571. {
  12572. name: "Micro",
  12573. height: math.unit(3, "inches")
  12574. },
  12575. {
  12576. name: "Default",
  12577. height: math.unit(6, "feet"),
  12578. default: true
  12579. },
  12580. {
  12581. name: "Macro",
  12582. height: math.unit(75, "feet")
  12583. },
  12584. ]
  12585. ))
  12586. characterMakers.push(() => makeCharacter(
  12587. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12588. {
  12589. front: {
  12590. height: math.unit(1450, "feet"),
  12591. weight: math.unit(1.21e6, "tons"),
  12592. name: "Front",
  12593. image: {
  12594. source: "./media/characters/sekvra/front.svg",
  12595. extra: 1,
  12596. bottom: 0.03
  12597. }
  12598. },
  12599. frontClothed: {
  12600. height: math.unit(1450, "feet"),
  12601. weight: math.unit(1.21e6, "tons"),
  12602. name: "Front (Clothed)",
  12603. image: {
  12604. source: "./media/characters/sekvra/front-clothed.svg",
  12605. extra: 1,
  12606. bottom: 0.03
  12607. }
  12608. },
  12609. side: {
  12610. height: math.unit(1450, "feet"),
  12611. weight: math.unit(1.21e6, "tons"),
  12612. name: "Side",
  12613. image: {
  12614. source: "./media/characters/sekvra/side.svg",
  12615. extra: 1,
  12616. bottom: 0.025
  12617. }
  12618. },
  12619. back: {
  12620. height: math.unit(1450, "feet"),
  12621. weight: math.unit(1.21e6, "tons"),
  12622. name: "Back",
  12623. image: {
  12624. source: "./media/characters/sekvra/back.svg",
  12625. extra: 1,
  12626. bottom: 0.005
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Macro",
  12633. height: math.unit(1450, "feet"),
  12634. default: true
  12635. },
  12636. {
  12637. name: "Megamacro",
  12638. height: math.unit(15000, "feet")
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(150, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/carmine/front.svg",
  12651. extra: 1,
  12652. bottom: 0.035
  12653. }
  12654. },
  12655. frontArmor: {
  12656. height: math.unit(6, "feet"),
  12657. weight: math.unit(150, "lb"),
  12658. name: "Front (Armor)",
  12659. image: {
  12660. source: "./media/characters/carmine/front-armor.svg",
  12661. extra: 1,
  12662. bottom: 0.035
  12663. }
  12664. },
  12665. },
  12666. [
  12667. {
  12668. name: "Large",
  12669. height: math.unit(1, "mile")
  12670. },
  12671. {
  12672. name: "Huge",
  12673. height: math.unit(40, "miles"),
  12674. default: true
  12675. },
  12676. {
  12677. name: "Colossal",
  12678. height: math.unit(2500, "miles")
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12684. {
  12685. front: {
  12686. height: math.unit(6, "feet"),
  12687. weight: math.unit(150, "lb"),
  12688. name: "Front",
  12689. image: {
  12690. source: "./media/characters/elyssia/front.svg",
  12691. extra: 2201 / 2035,
  12692. bottom: 0.05
  12693. }
  12694. },
  12695. frontClothed: {
  12696. height: math.unit(6, "feet"),
  12697. weight: math.unit(150, "lb"),
  12698. name: "Front (Clothed)",
  12699. image: {
  12700. source: "./media/characters/elyssia/front-clothed.svg",
  12701. extra: 2201 / 2035,
  12702. bottom: 0.05
  12703. }
  12704. },
  12705. back: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(150, "lb"),
  12708. name: "Back",
  12709. image: {
  12710. source: "./media/characters/elyssia/back.svg",
  12711. extra: 2201 / 2035,
  12712. bottom: 0.013
  12713. }
  12714. },
  12715. },
  12716. [
  12717. {
  12718. name: "Smaller",
  12719. height: math.unit(150, "feet")
  12720. },
  12721. {
  12722. name: "Standard",
  12723. height: math.unit(1400, "feet"),
  12724. default: true
  12725. },
  12726. {
  12727. name: "Distracted",
  12728. height: math.unit(15000, "feet")
  12729. },
  12730. ]
  12731. ))
  12732. characterMakers.push(() => makeCharacter(
  12733. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12734. {
  12735. front: {
  12736. height: math.unit(7 + 4 / 12, "feet"),
  12737. weight: math.unit(500, "lb"),
  12738. name: "Front",
  12739. image: {
  12740. source: "./media/characters/geno-maxwell/front.svg",
  12741. extra: 2207 / 2040,
  12742. bottom: 0.015
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Micro",
  12749. height: math.unit(3, "inches")
  12750. },
  12751. {
  12752. name: "Normal",
  12753. height: math.unit(7 + 4 / 12, "feet"),
  12754. default: true
  12755. },
  12756. {
  12757. name: "Macro",
  12758. height: math.unit(220, "feet")
  12759. },
  12760. {
  12761. name: "Megamacro",
  12762. height: math.unit(11, "miles")
  12763. },
  12764. ]
  12765. ))
  12766. characterMakers.push(() => makeCharacter(
  12767. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12768. {
  12769. front: {
  12770. height: math.unit(7 + 4 / 12, "feet"),
  12771. weight: math.unit(500, "lb"),
  12772. name: "Front",
  12773. image: {
  12774. source: "./media/characters/regena-maxwell/front.svg",
  12775. extra: 3115 / 2770,
  12776. bottom: 0.02
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(7 + 4 / 12, "feet"),
  12784. default: true
  12785. },
  12786. {
  12787. name: "Macro",
  12788. height: math.unit(220, "feet")
  12789. },
  12790. {
  12791. name: "Megamacro",
  12792. height: math.unit(11, "miles")
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12798. {
  12799. front: {
  12800. height: math.unit(6, "feet"),
  12801. weight: math.unit(150, "lb"),
  12802. name: "Front",
  12803. image: {
  12804. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12805. extra: 860 / 690,
  12806. bottom: 0.03
  12807. }
  12808. },
  12809. },
  12810. [
  12811. {
  12812. name: "Normal",
  12813. height: math.unit(1.7, "meters"),
  12814. default: true
  12815. },
  12816. ]
  12817. ))
  12818. characterMakers.push(() => makeCharacter(
  12819. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12820. {
  12821. front: {
  12822. height: math.unit(6, "feet"),
  12823. weight: math.unit(150, "lb"),
  12824. name: "Front",
  12825. image: {
  12826. source: "./media/characters/quilly/front.svg",
  12827. extra: 890 / 776
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Gigamacro",
  12834. height: math.unit(404090, "miles"),
  12835. default: true
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(7 + 8 / 12, "feet"),
  12844. weight: math.unit(350, "lb"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/tempest/front.svg",
  12848. extra: 1175 / 1086,
  12849. bottom: 0.02
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(7 + 8 / 12, "feet"),
  12857. default: true
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12863. {
  12864. side: {
  12865. height: math.unit(4 + 5 / 12, "feet"),
  12866. weight: math.unit(80, "lb"),
  12867. name: "Side",
  12868. image: {
  12869. source: "./media/characters/rodger/side.svg",
  12870. extra: 1235 / 1118
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Micro",
  12877. height: math.unit(1, "inch")
  12878. },
  12879. {
  12880. name: "Normal",
  12881. height: math.unit(4 + 5 / 12, "feet"),
  12882. default: true
  12883. },
  12884. {
  12885. name: "Macro",
  12886. height: math.unit(120, "feet")
  12887. },
  12888. ]
  12889. ))
  12890. characterMakers.push(() => makeCharacter(
  12891. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12892. {
  12893. front: {
  12894. height: math.unit(6, "feet"),
  12895. weight: math.unit(150, "lb"),
  12896. name: "Front",
  12897. image: {
  12898. source: "./media/characters/danyel/front.svg",
  12899. extra: 1185 / 1123,
  12900. bottom: 0.05
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Shrunken",
  12907. height: math.unit(0.5, "mm")
  12908. },
  12909. {
  12910. name: "Micro",
  12911. height: math.unit(1, "mm"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Upsized",
  12916. height: math.unit(5 + 5 / 12, "feet")
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12922. {
  12923. front: {
  12924. height: math.unit(5 + 6 / 12, "feet"),
  12925. weight: math.unit(200, "lb"),
  12926. name: "Front",
  12927. image: {
  12928. source: "./media/characters/vivian-bijoux/front.svg",
  12929. extra: 1,
  12930. bottom: 0.072
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Normal",
  12937. height: math.unit(5 + 6 / 12, "feet"),
  12938. default: true
  12939. },
  12940. {
  12941. name: "Bad Dream",
  12942. height: math.unit(500, "feet")
  12943. },
  12944. {
  12945. name: "Nightmare",
  12946. height: math.unit(500, "miles")
  12947. },
  12948. ]
  12949. ))
  12950. characterMakers.push(() => makeCharacter(
  12951. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12952. {
  12953. front: {
  12954. height: math.unit(6 + 1 / 12, "feet"),
  12955. weight: math.unit(260, "lb"),
  12956. name: "Front",
  12957. image: {
  12958. source: "./media/characters/zeta/front.svg",
  12959. extra: 1968 / 1889,
  12960. bottom: 0.06
  12961. }
  12962. },
  12963. back: {
  12964. height: math.unit(6 + 1 / 12, "feet"),
  12965. weight: math.unit(260, "lb"),
  12966. name: "Back",
  12967. image: {
  12968. source: "./media/characters/zeta/back.svg",
  12969. extra: 1944 / 1858,
  12970. bottom: 0.03
  12971. }
  12972. },
  12973. hand: {
  12974. height: math.unit(1.112, "feet"),
  12975. name: "Hand",
  12976. image: {
  12977. source: "./media/characters/zeta/hand.svg"
  12978. }
  12979. },
  12980. foot: {
  12981. height: math.unit(1.48, "feet"),
  12982. name: "Foot",
  12983. image: {
  12984. source: "./media/characters/zeta/foot.svg"
  12985. }
  12986. },
  12987. },
  12988. [
  12989. {
  12990. name: "Micro",
  12991. height: math.unit(6, "inches")
  12992. },
  12993. {
  12994. name: "Normal",
  12995. height: math.unit(6 + 1 / 12, "feet"),
  12996. default: true
  12997. },
  12998. {
  12999. name: "Macro",
  13000. height: math.unit(20, "feet")
  13001. },
  13002. ]
  13003. ))
  13004. characterMakers.push(() => makeCharacter(
  13005. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13006. {
  13007. front: {
  13008. height: math.unit(6, "feet"),
  13009. weight: math.unit(150, "lb"),
  13010. name: "Front",
  13011. image: {
  13012. source: "./media/characters/jamie-larsen/front.svg",
  13013. extra: 962 / 933,
  13014. bottom: 0.02
  13015. }
  13016. },
  13017. back: {
  13018. height: math.unit(6, "feet"),
  13019. weight: math.unit(150, "lb"),
  13020. name: "Back",
  13021. image: {
  13022. source: "./media/characters/jamie-larsen/back.svg",
  13023. extra: 997 / 946
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Macro",
  13030. height: math.unit(28 + 7 / 12, "feet"),
  13031. default: true
  13032. },
  13033. {
  13034. name: "Macro+",
  13035. height: math.unit(180, "feet")
  13036. },
  13037. {
  13038. name: "Megamacro",
  13039. height: math.unit(10, "miles")
  13040. },
  13041. {
  13042. name: "Gigamacro",
  13043. height: math.unit(200000, "miles")
  13044. },
  13045. ]
  13046. ))
  13047. characterMakers.push(() => makeCharacter(
  13048. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13049. {
  13050. front: {
  13051. height: math.unit(6, "feet"),
  13052. weight: math.unit(120, "lb"),
  13053. name: "Front",
  13054. image: {
  13055. source: "./media/characters/vance/front.svg",
  13056. extra: 1980 / 1890,
  13057. bottom: 0.09
  13058. }
  13059. },
  13060. back: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(120, "lb"),
  13063. name: "Back",
  13064. image: {
  13065. source: "./media/characters/vance/back.svg",
  13066. extra: 2081 / 1994,
  13067. bottom: 0.014
  13068. }
  13069. },
  13070. hand: {
  13071. height: math.unit(0.88, "feet"),
  13072. name: "Hand",
  13073. image: {
  13074. source: "./media/characters/vance/hand.svg"
  13075. }
  13076. },
  13077. foot: {
  13078. height: math.unit(0.64, "feet"),
  13079. name: "Foot",
  13080. image: {
  13081. source: "./media/characters/vance/foot.svg"
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Small",
  13088. height: math.unit(90, "feet"),
  13089. default: true
  13090. },
  13091. {
  13092. name: "Macro",
  13093. height: math.unit(100, "meters")
  13094. },
  13095. {
  13096. name: "Megamacro",
  13097. height: math.unit(15, "miles")
  13098. },
  13099. ]
  13100. ))
  13101. characterMakers.push(() => makeCharacter(
  13102. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13103. {
  13104. front: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(180, "lb"),
  13107. name: "Front",
  13108. image: {
  13109. source: "./media/characters/xochitl/front.svg",
  13110. extra: 2297 / 2261,
  13111. bottom: 0.065
  13112. }
  13113. },
  13114. back: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(180, "lb"),
  13117. name: "Back",
  13118. image: {
  13119. source: "./media/characters/xochitl/back.svg",
  13120. extra: 2386 / 2354,
  13121. bottom: 0.01
  13122. }
  13123. },
  13124. foot: {
  13125. height: math.unit(6 / 5 * 1.15, "feet"),
  13126. weight: math.unit(150, "lb"),
  13127. name: "Foot",
  13128. image: {
  13129. source: "./media/characters/xochitl/foot.svg"
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Macro",
  13136. height: math.unit(80, "feet")
  13137. },
  13138. {
  13139. name: "Macro+",
  13140. height: math.unit(400, "feet"),
  13141. default: true
  13142. },
  13143. {
  13144. name: "Gigamacro",
  13145. height: math.unit(80000, "miles")
  13146. },
  13147. {
  13148. name: "Gigamacro+",
  13149. height: math.unit(400000, "miles")
  13150. },
  13151. {
  13152. name: "Teramacro",
  13153. height: math.unit(300, "AU")
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/vincent/front.svg",
  13166. extra: 1130 / 1080,
  13167. bottom: 0.055
  13168. }
  13169. },
  13170. beak: {
  13171. height: math.unit(6 * 0.1, "feet"),
  13172. name: "Beak",
  13173. image: {
  13174. source: "./media/characters/vincent/beak.svg"
  13175. }
  13176. },
  13177. hand: {
  13178. height: math.unit(6 * 0.85, "feet"),
  13179. weight: math.unit(150, "lb"),
  13180. name: "Hand",
  13181. image: {
  13182. source: "./media/characters/vincent/hand.svg"
  13183. }
  13184. },
  13185. foot: {
  13186. height: math.unit(6 * 0.19, "feet"),
  13187. weight: math.unit(150, "lb"),
  13188. name: "Foot",
  13189. image: {
  13190. source: "./media/characters/vincent/foot.svg"
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Base",
  13197. height: math.unit(6 + 5 / 12, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Macro",
  13202. height: math.unit(300, "feet")
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(2, "miles")
  13207. },
  13208. {
  13209. name: "Gigamacro",
  13210. height: math.unit(1000, "miles")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(6 + 2 / 12, "feet"),
  13219. weight: math.unit(265, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/jay/front.svg",
  13223. extra: 1510 / 1430,
  13224. bottom: 0.042
  13225. }
  13226. },
  13227. back: {
  13228. height: math.unit(6 + 2 / 12, "feet"),
  13229. weight: math.unit(265, "lb"),
  13230. name: "Back",
  13231. image: {
  13232. source: "./media/characters/jay/back.svg",
  13233. extra: 1510 / 1430,
  13234. bottom: 0.025
  13235. }
  13236. },
  13237. clothed: {
  13238. height: math.unit(6 + 2 / 12, "feet"),
  13239. weight: math.unit(265, "lb"),
  13240. name: "Front (Clothed)",
  13241. image: {
  13242. source: "./media/characters/jay/clothed.svg",
  13243. extra: 744 / 699,
  13244. bottom: 0.043
  13245. }
  13246. },
  13247. head: {
  13248. height: math.unit(1.772, "feet"),
  13249. name: "Head",
  13250. image: {
  13251. source: "./media/characters/jay/head.svg"
  13252. }
  13253. },
  13254. sizeRay: {
  13255. height: math.unit(1.331, "feet"),
  13256. name: "Size Ray",
  13257. image: {
  13258. source: "./media/characters/jay/size-ray.svg"
  13259. }
  13260. },
  13261. },
  13262. [
  13263. {
  13264. name: "Micro",
  13265. height: math.unit(1, "inch")
  13266. },
  13267. {
  13268. name: "Normal",
  13269. height: math.unit(6 + 2 / 12, "feet"),
  13270. default: true
  13271. },
  13272. {
  13273. name: "Macro",
  13274. height: math.unit(1, "mile")
  13275. },
  13276. {
  13277. name: "Megamacro",
  13278. height: math.unit(100, "miles")
  13279. },
  13280. ]
  13281. ))
  13282. characterMakers.push(() => makeCharacter(
  13283. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13284. {
  13285. front: {
  13286. height: math.unit(2, "meters"),
  13287. weight: math.unit(500, "kg"),
  13288. name: "Front",
  13289. image: {
  13290. source: "./media/characters/coatl/front.svg",
  13291. extra: 3948 / 3500,
  13292. bottom: 0.082
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Normal",
  13299. height: math.unit(4, "meters")
  13300. },
  13301. {
  13302. name: "Macro",
  13303. height: math.unit(100, "meters"),
  13304. default: true
  13305. },
  13306. {
  13307. name: "Macro+",
  13308. height: math.unit(300, "meters")
  13309. },
  13310. {
  13311. name: "Megamacro",
  13312. height: math.unit(3, "gigameters")
  13313. },
  13314. {
  13315. name: "Megamacro+",
  13316. height: math.unit(300, "terameters")
  13317. },
  13318. {
  13319. name: "Megamacro++",
  13320. height: math.unit(3, "lightyears")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(50, "kg"),
  13330. name: "front",
  13331. image: {
  13332. source: "./media/characters/shiroryu/front.svg",
  13333. extra: 1990 / 1935
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Mortal Mingling",
  13340. height: math.unit(3, "meters")
  13341. },
  13342. {
  13343. name: "Kaiju-ish",
  13344. height: math.unit(250, "meters")
  13345. },
  13346. {
  13347. name: "Somewhat Godly",
  13348. height: math.unit(400, "km"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Planetary",
  13353. height: math.unit(300, "megameters")
  13354. },
  13355. {
  13356. name: "Galaxy-dwarfing",
  13357. height: math.unit(450, "kiloparsecs")
  13358. },
  13359. {
  13360. name: "Universe Eater",
  13361. height: math.unit(150, "gigaparsecs")
  13362. },
  13363. {
  13364. name: "Almost Immeasurable",
  13365. height: math.unit(1.3e266, "yottaparsecs")
  13366. },
  13367. ]
  13368. ))
  13369. characterMakers.push(() => makeCharacter(
  13370. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13371. {
  13372. front: {
  13373. height: math.unit(6, "feet"),
  13374. weight: math.unit(150, "lb"),
  13375. name: "Front",
  13376. image: {
  13377. source: "./media/characters/umeko/front.svg",
  13378. extra: 1,
  13379. bottom: 0.019
  13380. }
  13381. },
  13382. frontArmored: {
  13383. height: math.unit(6, "feet"),
  13384. weight: math.unit(150, "lb"),
  13385. name: "Front (Armored)",
  13386. image: {
  13387. source: "./media/characters/umeko/front-armored.svg",
  13388. extra: 1,
  13389. bottom: 0.021
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Macro",
  13396. height: math.unit(220, "feet"),
  13397. default: true
  13398. },
  13399. {
  13400. name: "Guardian Dragon",
  13401. height: math.unit(50, "miles")
  13402. },
  13403. {
  13404. name: "Cosmic",
  13405. height: math.unit(800000, "miles")
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13411. {
  13412. front: {
  13413. height: math.unit(6, "feet"),
  13414. weight: math.unit(150, "lb"),
  13415. name: "Front",
  13416. image: {
  13417. source: "./media/characters/cassidy/front.svg",
  13418. extra: 1,
  13419. bottom: 0.043
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Canon Height",
  13426. height: math.unit(120, "feet"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Macro+",
  13431. height: math.unit(400, "feet")
  13432. },
  13433. {
  13434. name: "Macro++",
  13435. height: math.unit(4000, "feet")
  13436. },
  13437. {
  13438. name: "Megamacro",
  13439. height: math.unit(3, "miles")
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13445. {
  13446. front: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(150, "lb"),
  13449. name: "Front",
  13450. image: {
  13451. source: "./media/characters/isaac/front.svg",
  13452. extra: 896 / 815,
  13453. bottom: 0.11
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Human Size",
  13460. height: math.unit(8, "feet"),
  13461. default: true
  13462. },
  13463. {
  13464. name: "Macro",
  13465. height: math.unit(400, "feet")
  13466. },
  13467. {
  13468. name: "Megamacro",
  13469. height: math.unit(50, "miles")
  13470. },
  13471. {
  13472. name: "Canon Height",
  13473. height: math.unit(200, "AU")
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(72, "kg"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/sleekit/front.svg",
  13486. extra: 4693 / 4487,
  13487. bottom: 0.012
  13488. }
  13489. },
  13490. },
  13491. [
  13492. {
  13493. name: "Minimum Height",
  13494. height: math.unit(10, "meters")
  13495. },
  13496. {
  13497. name: "Smaller",
  13498. height: math.unit(25, "meters")
  13499. },
  13500. {
  13501. name: "Larger",
  13502. height: math.unit(38, "meters"),
  13503. default: true
  13504. },
  13505. {
  13506. name: "Maximum height",
  13507. height: math.unit(100, "meters")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13513. {
  13514. front: {
  13515. height: math.unit(6, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Front",
  13518. image: {
  13519. source: "./media/characters/nillia/front.svg",
  13520. extra: 2195 / 2037,
  13521. bottom: 0.005
  13522. }
  13523. },
  13524. back: {
  13525. height: math.unit(6, "feet"),
  13526. weight: math.unit(150, "lb"),
  13527. name: "Back",
  13528. image: {
  13529. source: "./media/characters/nillia/back.svg",
  13530. extra: 2195 / 2037,
  13531. bottom: 0.005
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Canon Height",
  13538. height: math.unit(489, "feet"),
  13539. default: true
  13540. }
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(6, "feet"),
  13548. weight: math.unit(150, "lb"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/mesmyriza/front.svg",
  13552. extra: 2067 / 1784,
  13553. bottom: 0.035
  13554. }
  13555. },
  13556. foot: {
  13557. height: math.unit(6 / (250 / 35), "feet"),
  13558. name: "Foot",
  13559. image: {
  13560. source: "./media/characters/mesmyriza/foot.svg"
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Macro",
  13567. height: math.unit(457, "meters"),
  13568. default: true
  13569. },
  13570. {
  13571. name: "Megamacro",
  13572. height: math.unit(8, "megameters")
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13578. {
  13579. front: {
  13580. height: math.unit(6, "feet"),
  13581. weight: math.unit(250, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/saudade/front.svg",
  13585. extra: 1172 / 1139,
  13586. bottom: 0.035
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Micro",
  13593. height: math.unit(3, "inches")
  13594. },
  13595. {
  13596. name: "Normal",
  13597. height: math.unit(6, "feet"),
  13598. default: true
  13599. },
  13600. {
  13601. name: "Macro",
  13602. height: math.unit(50, "feet")
  13603. },
  13604. {
  13605. name: "Megamacro",
  13606. height: math.unit(2800, "feet")
  13607. },
  13608. ]
  13609. ))
  13610. characterMakers.push(() => makeCharacter(
  13611. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13612. {
  13613. front: {
  13614. height: math.unit(5 + 4 / 12, "feet"),
  13615. weight: math.unit(100, "lb"),
  13616. name: "Front",
  13617. image: {
  13618. source: "./media/characters/keireer/front.svg",
  13619. extra: 716 / 666,
  13620. bottom: 0.05
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Normal",
  13627. height: math.unit(5 + 4 / 12, "feet"),
  13628. default: true
  13629. },
  13630. ]
  13631. ))
  13632. characterMakers.push(() => makeCharacter(
  13633. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13634. {
  13635. front: {
  13636. height: math.unit(6, "feet"),
  13637. weight: math.unit(90, "kg"),
  13638. name: "Front",
  13639. image: {
  13640. source: "./media/characters/mirja/front.svg",
  13641. extra: 1789 / 1683,
  13642. bottom: 0.05
  13643. }
  13644. },
  13645. frontDressed: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(90, "lb"),
  13648. name: "Front (Dressed)",
  13649. image: {
  13650. source: "./media/characters/mirja/front-dressed.svg",
  13651. extra: 1789 / 1683,
  13652. bottom: 0.05
  13653. }
  13654. },
  13655. back: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(90, "lb"),
  13658. name: "Back",
  13659. image: {
  13660. source: "./media/characters/mirja/back.svg",
  13661. extra: 953 / 917,
  13662. bottom: 0.017
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "\"Incognito\"",
  13669. height: math.unit(3, "meters")
  13670. },
  13671. {
  13672. name: "Strolling Size",
  13673. height: math.unit(15, "km")
  13674. },
  13675. {
  13676. name: "Larger Strolling Size",
  13677. height: math.unit(400, "km")
  13678. },
  13679. {
  13680. name: "Preferred Size",
  13681. height: math.unit(5000, "km")
  13682. },
  13683. {
  13684. name: "True Size",
  13685. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13686. default: true
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13692. {
  13693. front: {
  13694. height: math.unit(15, "feet"),
  13695. weight: math.unit(880, "kg"),
  13696. name: "Front",
  13697. image: {
  13698. source: "./media/characters/nightraver/front.svg",
  13699. extra: 2444 / 2160,
  13700. bottom: 0.027
  13701. }
  13702. },
  13703. back: {
  13704. height: math.unit(15, "feet"),
  13705. weight: math.unit(880, "kg"),
  13706. name: "Back",
  13707. image: {
  13708. source: "./media/characters/nightraver/back.svg",
  13709. extra: 2309 / 2180,
  13710. bottom: 0.005
  13711. }
  13712. },
  13713. sole: {
  13714. height: math.unit(2.878, "feet"),
  13715. name: "Sole",
  13716. image: {
  13717. source: "./media/characters/nightraver/sole.svg"
  13718. }
  13719. },
  13720. foot: {
  13721. height: math.unit(2.285, "feet"),
  13722. name: "Foot",
  13723. image: {
  13724. source: "./media/characters/nightraver/foot.svg"
  13725. }
  13726. },
  13727. maw: {
  13728. height: math.unit(2.67, "feet"),
  13729. name: "Maw",
  13730. image: {
  13731. source: "./media/characters/nightraver/maw.svg"
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Micro",
  13738. height: math.unit(1, "cm")
  13739. },
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(15, "feet"),
  13743. default: true
  13744. },
  13745. {
  13746. name: "Macro",
  13747. height: math.unit(300, "feet")
  13748. },
  13749. {
  13750. name: "Megamacro",
  13751. height: math.unit(300, "miles")
  13752. },
  13753. {
  13754. name: "Gigamacro",
  13755. height: math.unit(10000, "miles")
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13761. {
  13762. side: {
  13763. height: math.unit(2, "inches"),
  13764. weight: math.unit(5, "grams"),
  13765. name: "Side",
  13766. image: {
  13767. source: "./media/characters/arc/side.svg"
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Micro",
  13774. height: math.unit(2, "inches"),
  13775. default: true
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(1.1938, "meters"),
  13784. weight: math.unit(54, "kg"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/nebula-shahar/front.svg",
  13788. extra: 1642 / 1436,
  13789. bottom: 0.06
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Megamicro",
  13796. height: math.unit(0.3, "mm")
  13797. },
  13798. {
  13799. name: "Micro",
  13800. height: math.unit(3, "cm")
  13801. },
  13802. {
  13803. name: "Normal",
  13804. height: math.unit(138, "cm"),
  13805. default: true
  13806. },
  13807. {
  13808. name: "Macro",
  13809. height: math.unit(30, "m")
  13810. },
  13811. ]
  13812. ))
  13813. characterMakers.push(() => makeCharacter(
  13814. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13815. {
  13816. front: {
  13817. height: math.unit(5.24, "feet"),
  13818. weight: math.unit(150, "lb"),
  13819. name: "Front",
  13820. image: {
  13821. source: "./media/characters/shayla/front.svg",
  13822. extra: 1512 / 1414,
  13823. bottom: 0.01
  13824. }
  13825. },
  13826. back: {
  13827. height: math.unit(5.24, "feet"),
  13828. weight: math.unit(150, "lb"),
  13829. name: "Back",
  13830. image: {
  13831. source: "./media/characters/shayla/back.svg",
  13832. extra: 1512 / 1414
  13833. }
  13834. },
  13835. hand: {
  13836. height: math.unit(0.7781496062992126, "feet"),
  13837. name: "Hand",
  13838. image: {
  13839. source: "./media/characters/shayla/hand.svg"
  13840. }
  13841. },
  13842. foot: {
  13843. height: math.unit(1.4206036745406823, "feet"),
  13844. name: "Foot",
  13845. image: {
  13846. source: "./media/characters/shayla/foot.svg"
  13847. }
  13848. },
  13849. },
  13850. [
  13851. {
  13852. name: "Micro",
  13853. height: math.unit(0.32, "feet")
  13854. },
  13855. {
  13856. name: "Normal",
  13857. height: math.unit(5.24, "feet"),
  13858. default: true
  13859. },
  13860. {
  13861. name: "Macro",
  13862. height: math.unit(492.12, "feet")
  13863. },
  13864. {
  13865. name: "Megamacro",
  13866. height: math.unit(186.41, "miles")
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13872. {
  13873. front: {
  13874. height: math.unit(2.2, "m"),
  13875. weight: math.unit(120, "kg"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/pia-jr/front.svg",
  13879. extra: 1000 / 970,
  13880. bottom: 0.035
  13881. }
  13882. },
  13883. hand: {
  13884. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13885. name: "Hand",
  13886. image: {
  13887. source: "./media/characters/pia-jr/hand.svg"
  13888. }
  13889. },
  13890. paw: {
  13891. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13892. name: "Paw",
  13893. image: {
  13894. source: "./media/characters/pia-jr/paw.svg"
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Micro",
  13901. height: math.unit(1.2, "cm")
  13902. },
  13903. {
  13904. name: "Normal",
  13905. height: math.unit(2.2, "m"),
  13906. default: true
  13907. },
  13908. {
  13909. name: "Macro",
  13910. height: math.unit(180, "m")
  13911. },
  13912. {
  13913. name: "Megamacro",
  13914. height: math.unit(420, "km")
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(2, "m"),
  13923. weight: math.unit(115, "kg"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/pia-sr/front.svg",
  13927. extra: 760 / 730,
  13928. bottom: 0.015
  13929. }
  13930. },
  13931. back: {
  13932. height: math.unit(2, "m"),
  13933. weight: math.unit(115, "kg"),
  13934. name: "Back",
  13935. image: {
  13936. source: "./media/characters/pia-sr/back.svg",
  13937. extra: 760 / 730,
  13938. bottom: 0.01
  13939. }
  13940. },
  13941. hand: {
  13942. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13943. name: "Hand",
  13944. image: {
  13945. source: "./media/characters/pia-sr/hand.svg"
  13946. }
  13947. },
  13948. foot: {
  13949. height: math.unit(1.83, "feet"),
  13950. name: "Foot",
  13951. image: {
  13952. source: "./media/characters/pia-sr/foot.svg"
  13953. }
  13954. },
  13955. },
  13956. [
  13957. {
  13958. name: "Micro",
  13959. height: math.unit(88, "mm")
  13960. },
  13961. {
  13962. name: "Normal",
  13963. height: math.unit(2, "m"),
  13964. default: true
  13965. },
  13966. {
  13967. name: "Macro",
  13968. height: math.unit(200, "m")
  13969. },
  13970. {
  13971. name: "Megamacro",
  13972. height: math.unit(420, "km")
  13973. },
  13974. ]
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13978. {
  13979. front: {
  13980. height: math.unit(8 + 2 / 12, "feet"),
  13981. weight: math.unit(300, "lb"),
  13982. name: "Front",
  13983. image: {
  13984. source: "./media/characters/kibibyte/front.svg",
  13985. extra: 2221 / 2098,
  13986. bottom: 0.04
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Normal",
  13993. height: math.unit(8 + 2 / 12, "feet"),
  13994. default: true
  13995. },
  13996. {
  13997. name: "Socialable Macro",
  13998. height: math.unit(50, "feet")
  13999. },
  14000. {
  14001. name: "Macro",
  14002. height: math.unit(300, "feet")
  14003. },
  14004. {
  14005. name: "Megamacro",
  14006. height: math.unit(500, "miles")
  14007. },
  14008. ]
  14009. ))
  14010. characterMakers.push(() => makeCharacter(
  14011. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14012. {
  14013. front: {
  14014. height: math.unit(6, "feet"),
  14015. weight: math.unit(150, "lb"),
  14016. name: "Front",
  14017. image: {
  14018. source: "./media/characters/felix/front.svg",
  14019. extra: 762 / 722,
  14020. bottom: 0.02
  14021. }
  14022. },
  14023. frontClothed: {
  14024. height: math.unit(6, "feet"),
  14025. weight: math.unit(150, "lb"),
  14026. name: "Front (Clothed)",
  14027. image: {
  14028. source: "./media/characters/felix/front-clothed.svg",
  14029. extra: 762 / 722,
  14030. bottom: 0.02
  14031. }
  14032. },
  14033. },
  14034. [
  14035. {
  14036. name: "Normal",
  14037. height: math.unit(6 + 8 / 12, "feet"),
  14038. default: true
  14039. },
  14040. {
  14041. name: "Macro",
  14042. height: math.unit(2600, "feet")
  14043. },
  14044. {
  14045. name: "Megamacro",
  14046. height: math.unit(450, "miles")
  14047. },
  14048. ]
  14049. ))
  14050. characterMakers.push(() => makeCharacter(
  14051. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14052. {
  14053. front: {
  14054. height: math.unit(6 + 1 / 12, "feet"),
  14055. weight: math.unit(250, "lb"),
  14056. name: "Front",
  14057. image: {
  14058. source: "./media/characters/tobo/front.svg",
  14059. extra: 608 / 586,
  14060. bottom: 0.023
  14061. }
  14062. },
  14063. back: {
  14064. height: math.unit(6 + 1 / 12, "feet"),
  14065. weight: math.unit(250, "lb"),
  14066. name: "Back",
  14067. image: {
  14068. source: "./media/characters/tobo/back.svg",
  14069. extra: 608 / 586
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Nano",
  14076. height: math.unit(2, "nm")
  14077. },
  14078. {
  14079. name: "Megamicro",
  14080. height: math.unit(0.1, "mm")
  14081. },
  14082. {
  14083. name: "Micro",
  14084. height: math.unit(1, "inch"),
  14085. default: true
  14086. },
  14087. {
  14088. name: "Human-sized",
  14089. height: math.unit(6 + 1 / 12, "feet")
  14090. },
  14091. {
  14092. name: "Macro",
  14093. height: math.unit(250, "feet")
  14094. },
  14095. {
  14096. name: "Megamacro",
  14097. height: math.unit(75, "miles")
  14098. },
  14099. {
  14100. name: "Texas-sized",
  14101. height: math.unit(750, "miles")
  14102. },
  14103. {
  14104. name: "Teramacro",
  14105. height: math.unit(50000, "miles")
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(269, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/danny-kapowsky/front.svg",
  14118. extra: 766 / 736,
  14119. bottom: 0.044
  14120. }
  14121. },
  14122. back: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(269, "lb"),
  14125. name: "Back",
  14126. image: {
  14127. source: "./media/characters/danny-kapowsky/back.svg",
  14128. extra: 797 / 760,
  14129. bottom: 0.025
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Macro",
  14136. height: math.unit(150, "feet"),
  14137. default: true
  14138. },
  14139. {
  14140. name: "Macro+",
  14141. height: math.unit(200, "feet")
  14142. },
  14143. {
  14144. name: "Macro++",
  14145. height: math.unit(300, "feet")
  14146. },
  14147. {
  14148. name: "Macro+++",
  14149. height: math.unit(400, "feet")
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14155. {
  14156. side: {
  14157. height: math.unit(6, "feet"),
  14158. weight: math.unit(170, "lb"),
  14159. name: "Side",
  14160. image: {
  14161. source: "./media/characters/finn/side.svg",
  14162. extra: 1953 / 1807,
  14163. bottom: 0.057
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Megamacro",
  14170. height: math.unit(14445, "feet"),
  14171. default: true
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(5 + 6 / 12, "feet"),
  14180. weight: math.unit(125, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/roy/front.svg",
  14184. extra: 1,
  14185. bottom: 0.11
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Micro",
  14192. height: math.unit(3, "inches"),
  14193. default: true
  14194. },
  14195. {
  14196. name: "Normal",
  14197. height: math.unit(5 + 6 / 12, "feet")
  14198. },
  14199. {
  14200. name: "Lesser Macro",
  14201. height: math.unit(60, "feet")
  14202. },
  14203. {
  14204. name: "Greater Macro",
  14205. height: math.unit(120, "feet")
  14206. },
  14207. ]
  14208. ))
  14209. characterMakers.push(() => makeCharacter(
  14210. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14211. {
  14212. front: {
  14213. height: math.unit(6, "feet"),
  14214. weight: math.unit(100, "lb"),
  14215. name: "Front",
  14216. image: {
  14217. source: "./media/characters/aevsivs/front.svg",
  14218. extra: 1,
  14219. bottom: 0.03
  14220. }
  14221. },
  14222. back: {
  14223. height: math.unit(6, "feet"),
  14224. weight: math.unit(100, "lb"),
  14225. name: "Back",
  14226. image: {
  14227. source: "./media/characters/aevsivs/back.svg"
  14228. }
  14229. },
  14230. },
  14231. [
  14232. {
  14233. name: "Micro",
  14234. height: math.unit(2, "inches"),
  14235. default: true
  14236. },
  14237. {
  14238. name: "Normal",
  14239. height: math.unit(5, "feet")
  14240. },
  14241. ]
  14242. ))
  14243. characterMakers.push(() => makeCharacter(
  14244. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14245. {
  14246. front: {
  14247. height: math.unit(5 + 7 / 12, "feet"),
  14248. weight: math.unit(159, "lb"),
  14249. name: "Front",
  14250. image: {
  14251. source: "./media/characters/hildegard/front.svg",
  14252. extra: 289 / 269,
  14253. bottom: 7.63 / 297.8
  14254. }
  14255. },
  14256. back: {
  14257. height: math.unit(5 + 7 / 12, "feet"),
  14258. weight: math.unit(159, "lb"),
  14259. name: "Back",
  14260. image: {
  14261. source: "./media/characters/hildegard/back.svg",
  14262. extra: 280 / 260,
  14263. bottom: 2.3 / 282
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(5 + 7 / 12, "feet"),
  14271. default: true
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14277. {
  14278. bernard: {
  14279. height: math.unit(2 + 7 / 12, "feet"),
  14280. weight: math.unit(66, "lb"),
  14281. name: "Bernard",
  14282. rename: true,
  14283. image: {
  14284. source: "./media/characters/bernard-wilder/bernard.svg",
  14285. extra: 192 / 128,
  14286. bottom: 0.05
  14287. }
  14288. },
  14289. wilder: {
  14290. height: math.unit(5 + 8 / 12, "feet"),
  14291. weight: math.unit(143, "lb"),
  14292. name: "Wilder",
  14293. rename: true,
  14294. image: {
  14295. source: "./media/characters/bernard-wilder/wilder.svg",
  14296. extra: 361 / 312,
  14297. bottom: 0.02
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(2 + 7 / 12, "feet"),
  14305. default: true
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14311. {
  14312. anthro: {
  14313. height: math.unit(6 + 1 / 12, "feet"),
  14314. weight: math.unit(155, "lb"),
  14315. name: "Anthro",
  14316. image: {
  14317. source: "./media/characters/hearth/anthro.svg",
  14318. extra: 260 / 250,
  14319. bottom: 0.02
  14320. }
  14321. },
  14322. feral: {
  14323. height: math.unit(3.78, "feet"),
  14324. weight: math.unit(35, "kg"),
  14325. name: "Feral",
  14326. image: {
  14327. source: "./media/characters/hearth/feral.svg",
  14328. extra: 153 / 135,
  14329. bottom: 0.03
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(6 + 1 / 12, "feet"),
  14337. default: true
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(6, "feet"),
  14346. weight: math.unit(182, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/ingrid/front.svg",
  14350. extra: 294 / 268,
  14351. bottom: 0.027
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(6, "feet"),
  14359. default: true
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14365. {
  14366. eevee: {
  14367. height: math.unit(2 + 10 / 12, "feet"),
  14368. weight: math.unit(86, "lb"),
  14369. name: "Malgam",
  14370. image: {
  14371. source: "./media/characters/malgam/eevee.svg",
  14372. extra: 218 / 180,
  14373. bottom: 0.2
  14374. }
  14375. },
  14376. sylveon: {
  14377. height: math.unit(4, "feet"),
  14378. weight: math.unit(101, "lb"),
  14379. name: "Future Malgam",
  14380. rename: true,
  14381. image: {
  14382. source: "./media/characters/malgam/sylveon.svg",
  14383. extra: 371 / 325,
  14384. bottom: 0.015
  14385. }
  14386. },
  14387. gigantamax: {
  14388. height: math.unit(50, "feet"),
  14389. name: "Gigantamax Malgam",
  14390. rename: true,
  14391. image: {
  14392. source: "./media/characters/malgam/gigantamax.svg"
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Normal",
  14399. height: math.unit(2 + 10 / 12, "feet"),
  14400. default: true
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14406. {
  14407. front: {
  14408. height: math.unit(5 + 11 / 12, "feet"),
  14409. weight: math.unit(188, "lb"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/fleur/front.svg",
  14413. extra: 309 / 283,
  14414. bottom: 0.007
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(5 + 11 / 12, "feet"),
  14422. default: true
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(5 + 4 / 12, "feet"),
  14431. weight: math.unit(122, "lb"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/jude/front.svg",
  14435. extra: 288 / 273,
  14436. bottom: 0.03
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Normal",
  14443. height: math.unit(5 + 4 / 12, "feet"),
  14444. default: true
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14450. {
  14451. front: {
  14452. height: math.unit(5 + 11 / 12, "feet"),
  14453. weight: math.unit(190, "lb"),
  14454. name: "Front",
  14455. image: {
  14456. source: "./media/characters/seara/front.svg",
  14457. extra: 1,
  14458. bottom: 0.05
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Normal",
  14465. height: math.unit(5 + 11 / 12, "feet"),
  14466. default: true
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14472. {
  14473. front: {
  14474. height: math.unit(16 + 5 / 12, "feet"),
  14475. weight: math.unit(524, "lb"),
  14476. name: "Front",
  14477. image: {
  14478. source: "./media/characters/caspian/front.svg",
  14479. extra: 1,
  14480. bottom: 0.04
  14481. }
  14482. },
  14483. },
  14484. [
  14485. {
  14486. name: "Normal",
  14487. height: math.unit(16 + 5 / 12, "feet"),
  14488. default: true
  14489. },
  14490. ]
  14491. ))
  14492. characterMakers.push(() => makeCharacter(
  14493. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14494. {
  14495. front: {
  14496. height: math.unit(5 + 7 / 12, "feet"),
  14497. weight: math.unit(170, "lb"),
  14498. name: "Front",
  14499. image: {
  14500. source: "./media/characters/mika/front.svg",
  14501. extra: 1,
  14502. bottom: 0.016
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Normal",
  14509. height: math.unit(5 + 7 / 12, "feet"),
  14510. default: true
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14516. {
  14517. front: {
  14518. height: math.unit(6 + 2 / 12, "feet"),
  14519. weight: math.unit(268, "lb"),
  14520. name: "Front",
  14521. image: {
  14522. source: "./media/characters/sol/front.svg",
  14523. extra: 247 / 231,
  14524. bottom: 0.05
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(6 + 2 / 12, "feet"),
  14532. default: true
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14538. {
  14539. buizel: {
  14540. height: math.unit(2 + 5 / 12, "feet"),
  14541. weight: math.unit(87, "lb"),
  14542. name: "Buizel",
  14543. image: {
  14544. source: "./media/characters/umiko/buizel.svg",
  14545. extra: 172 / 157,
  14546. bottom: 0.01
  14547. }
  14548. },
  14549. floatzel: {
  14550. height: math.unit(5 + 9 / 12, "feet"),
  14551. weight: math.unit(250, "lb"),
  14552. name: "Floatzel",
  14553. image: {
  14554. source: "./media/characters/umiko/floatzel.svg",
  14555. extra: 262 / 248
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(2 + 5 / 12, "feet"),
  14563. default: true
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14569. {
  14570. front: {
  14571. height: math.unit(6 + 2 / 12, "feet"),
  14572. weight: math.unit(146, "lb"),
  14573. name: "Front",
  14574. image: {
  14575. source: "./media/characters/iliac/front.svg",
  14576. extra: 389 / 365,
  14577. bottom: 0.035
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "Normal",
  14584. height: math.unit(6 + 2 / 12, "feet"),
  14585. default: true
  14586. },
  14587. ]
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14591. {
  14592. front: {
  14593. height: math.unit(6, "feet"),
  14594. weight: math.unit(170, "lb"),
  14595. name: "Front",
  14596. image: {
  14597. source: "./media/characters/topaz/front.svg",
  14598. extra: 317 / 303,
  14599. bottom: 0.055
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(6, "feet"),
  14607. default: true
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14613. {
  14614. front: {
  14615. height: math.unit(5 + 11 / 12, "feet"),
  14616. weight: math.unit(144, "lb"),
  14617. name: "Front",
  14618. image: {
  14619. source: "./media/characters/gabriel/front.svg",
  14620. extra: 285 / 262,
  14621. bottom: 0.004
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(5 + 11 / 12, "feet"),
  14629. default: true
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14635. {
  14636. side: {
  14637. height: math.unit(6 + 5 / 12, "feet"),
  14638. weight: math.unit(300, "lb"),
  14639. name: "Side",
  14640. image: {
  14641. source: "./media/characters/tempest-suicune/side.svg",
  14642. extra: 195 / 154,
  14643. bottom: 0.04
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(6 + 5 / 12, "feet"),
  14651. default: true
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14657. {
  14658. front: {
  14659. height: math.unit(7 + 2 / 12, "feet"),
  14660. weight: math.unit(322, "lb"),
  14661. name: "Front",
  14662. image: {
  14663. source: "./media/characters/vulcan/front.svg",
  14664. extra: 154 / 147,
  14665. bottom: 0.04
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(7 + 2 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(5 + 10 / 12, "feet"),
  14682. weight: math.unit(264, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/gault/front.svg",
  14686. extra: 161 / 140,
  14687. bottom: 0.028
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(5 + 10 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(6, "feet"),
  14704. weight: math.unit(150, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/shard/front.svg",
  14708. extra: 273 / 238,
  14709. bottom: 0.02
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(3 + 6 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(5 + 11 / 12, "feet"),
  14726. weight: math.unit(146, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/ashe/front.svg",
  14730. extra: 400 / 373,
  14731. bottom: 0.01
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(5 + 11 / 12, "feet"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(5 + 5 / 12, "feet"),
  14748. weight: math.unit(135, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/beatrix/front.svg",
  14752. extra: 392 / 379,
  14753. bottom: 0.01
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(6, "feet"),
  14761. default: true
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14767. {
  14768. front: {
  14769. height: math.unit(6, "feet"),
  14770. weight: math.unit(150, "lb"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/ignatius/front.svg",
  14774. extra: 245 / 222,
  14775. bottom: 0.01
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Normal",
  14782. height: math.unit(5 + 5 / 12, "feet"),
  14783. default: true
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(6 + 2 / 12, "feet"),
  14792. weight: math.unit(138, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/mei-li/front.svg",
  14796. extra: 237 / 229,
  14797. bottom: 0.03
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Normal",
  14804. height: math.unit(6 + 2 / 12, "feet"),
  14805. default: true
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(2 + 4 / 12, "feet"),
  14814. weight: math.unit(62, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/puru/front.svg",
  14818. extra: 206 / 149,
  14819. bottom: 0.06
  14820. }
  14821. },
  14822. },
  14823. [
  14824. {
  14825. name: "Normal",
  14826. height: math.unit(2 + 4 / 12, "feet"),
  14827. default: true
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14833. {
  14834. taur: {
  14835. height: math.unit(11, "feet"),
  14836. weight: math.unit(500, "lb"),
  14837. name: "Taur",
  14838. image: {
  14839. source: "./media/characters/kee/taur.svg",
  14840. extra: 1,
  14841. bottom: 0.04
  14842. }
  14843. },
  14844. },
  14845. [
  14846. {
  14847. name: "Normal",
  14848. height: math.unit(11, "feet"),
  14849. default: true
  14850. },
  14851. ]
  14852. ))
  14853. characterMakers.push(() => makeCharacter(
  14854. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14855. {
  14856. anthro: {
  14857. height: math.unit(7, "feet"),
  14858. weight: math.unit(190, "lb"),
  14859. name: "Anthro",
  14860. image: {
  14861. source: "./media/characters/cobalt-dracha/anthro.svg",
  14862. extra: 231 / 225,
  14863. bottom: 0.04
  14864. }
  14865. },
  14866. feral: {
  14867. height: math.unit(9 + 7 / 12, "feet"),
  14868. weight: math.unit(294, "lb"),
  14869. name: "Feral",
  14870. image: {
  14871. source: "./media/characters/cobalt-dracha/feral.svg",
  14872. extra: 692 / 633,
  14873. bottom: 0.05
  14874. }
  14875. },
  14876. },
  14877. [
  14878. {
  14879. name: "Normal",
  14880. height: math.unit(7, "feet"),
  14881. default: true
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14887. {
  14888. fallen: {
  14889. height: math.unit(11 + 8 / 12, "feet"),
  14890. weight: math.unit(485, "lb"),
  14891. name: "Java (Fallen)",
  14892. rename: true,
  14893. image: {
  14894. source: "./media/characters/java/fallen.svg",
  14895. extra: 226 / 208,
  14896. bottom: 0.005
  14897. }
  14898. },
  14899. godkin: {
  14900. height: math.unit(10 + 6 / 12, "feet"),
  14901. weight: math.unit(328, "lb"),
  14902. name: "Java (Godkin)",
  14903. rename: true,
  14904. image: {
  14905. source: "./media/characters/java/godkin.svg",
  14906. extra: 270 / 262,
  14907. bottom: 0.02
  14908. }
  14909. },
  14910. },
  14911. [
  14912. {
  14913. name: "Normal",
  14914. height: math.unit(11 + 8 / 12, "feet"),
  14915. default: true
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(7 + 8 / 12, "feet"),
  14924. weight: math.unit(320, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/skoll/front.svg",
  14928. extra: 232 / 220,
  14929. bottom: 0.02
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(7 + 8 / 12, "feet"),
  14937. default: true
  14938. },
  14939. ]
  14940. ))
  14941. characterMakers.push(() => makeCharacter(
  14942. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14943. {
  14944. front: {
  14945. height: math.unit(5 + 9 / 12, "feet"),
  14946. weight: math.unit(170, "lb"),
  14947. name: "Front",
  14948. image: {
  14949. source: "./media/characters/purna/front.svg",
  14950. extra: 239 / 229,
  14951. bottom: 0.01
  14952. }
  14953. },
  14954. },
  14955. [
  14956. {
  14957. name: "Normal",
  14958. height: math.unit(5 + 9 / 12, "feet"),
  14959. default: true
  14960. },
  14961. ]
  14962. ))
  14963. characterMakers.push(() => makeCharacter(
  14964. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14965. {
  14966. front: {
  14967. height: math.unit(5 + 9 / 12, "feet"),
  14968. weight: math.unit(142, "lb"),
  14969. name: "Front",
  14970. image: {
  14971. source: "./media/characters/kuva/front.svg",
  14972. extra: 281 / 271,
  14973. bottom: 0.006
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Normal",
  14980. height: math.unit(5 + 9 / 12, "feet"),
  14981. default: true
  14982. },
  14983. ]
  14984. ))
  14985. characterMakers.push(() => makeCharacter(
  14986. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14987. {
  14988. anthro: {
  14989. height: math.unit(9 + 2 / 12, "feet"),
  14990. weight: math.unit(270, "lb"),
  14991. name: "Anthro",
  14992. image: {
  14993. source: "./media/characters/embra/anthro.svg",
  14994. extra: 200 / 187,
  14995. bottom: 0.02
  14996. }
  14997. },
  14998. feral: {
  14999. height: math.unit(18 + 8 / 12, "feet"),
  15000. weight: math.unit(576, "lb"),
  15001. name: "Feral",
  15002. image: {
  15003. source: "./media/characters/embra/feral.svg",
  15004. extra: 152 / 137,
  15005. bottom: 0.037
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Normal",
  15012. height: math.unit(9 + 2 / 12, "feet"),
  15013. default: true
  15014. },
  15015. ]
  15016. ))
  15017. characterMakers.push(() => makeCharacter(
  15018. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15019. {
  15020. anthro: {
  15021. height: math.unit(10 + 9 / 12, "feet"),
  15022. weight: math.unit(224, "lb"),
  15023. name: "Anthro",
  15024. image: {
  15025. source: "./media/characters/grottos/anthro.svg",
  15026. extra: 350 / 332,
  15027. bottom: 0.045
  15028. }
  15029. },
  15030. feral: {
  15031. height: math.unit(20 + 7 / 12, "feet"),
  15032. weight: math.unit(629, "lb"),
  15033. name: "Feral",
  15034. image: {
  15035. source: "./media/characters/grottos/feral.svg",
  15036. extra: 207 / 190,
  15037. bottom: 0.05
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(10 + 9 / 12, "feet"),
  15045. default: true
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15051. {
  15052. anthro: {
  15053. height: math.unit(9 + 6 / 12, "feet"),
  15054. weight: math.unit(298, "lb"),
  15055. name: "Anthro",
  15056. image: {
  15057. source: "./media/characters/frifna/anthro.svg",
  15058. extra: 282 / 269,
  15059. bottom: 0.015
  15060. }
  15061. },
  15062. feral: {
  15063. height: math.unit(16 + 2 / 12, "feet"),
  15064. weight: math.unit(624, "lb"),
  15065. name: "Feral",
  15066. image: {
  15067. source: "./media/characters/frifna/feral.svg"
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Normal",
  15074. height: math.unit(9 + 6 / 12, "feet"),
  15075. default: true
  15076. },
  15077. ]
  15078. ))
  15079. characterMakers.push(() => makeCharacter(
  15080. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15081. {
  15082. front: {
  15083. height: math.unit(6 + 2 / 12, "feet"),
  15084. weight: math.unit(168, "lb"),
  15085. name: "Front",
  15086. image: {
  15087. source: "./media/characters/elise/front.svg",
  15088. extra: 276 / 271
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(6 + 2 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(5 + 10 / 12, "feet"),
  15105. weight: math.unit(210, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/glade/front.svg",
  15109. extra: 258 / 247,
  15110. bottom: 0.008
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(5 + 10 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(5 + 10 / 12, "feet"),
  15127. weight: math.unit(129, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/rina/front.svg",
  15131. extra: 266 / 255,
  15132. bottom: 0.005
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(5 + 10 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(6 + 1 / 12, "feet"),
  15149. weight: math.unit(192, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/veronica/front.svg",
  15153. extra: 319 / 309,
  15154. bottom: 0.005
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(6 + 1 / 12, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(9 + 3 / 12, "feet"),
  15171. weight: math.unit(1100, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/braxton/front.svg",
  15175. extra: 1057 / 984,
  15176. bottom: 0.05
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(9 + 3 / 12, "feet")
  15184. },
  15185. {
  15186. name: "Giant",
  15187. height: math.unit(300, "feet"),
  15188. default: true
  15189. },
  15190. {
  15191. name: "Macro",
  15192. height: math.unit(700, "feet")
  15193. },
  15194. {
  15195. name: "Megamacro",
  15196. height: math.unit(6000, "feet")
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(6 + 7 / 12, "feet"),
  15205. weight: math.unit(150, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/blue-feyonics/front.svg",
  15209. extra: 1403 / 1306,
  15210. bottom: 0.047
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(6 + 7 / 12, "feet"),
  15218. default: true
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(1.8, "meters"),
  15227. weight: math.unit(60, "kg"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/maxwell/front.svg",
  15231. extra: 2060 / 1873
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Micro",
  15238. height: math.unit(1, "mm")
  15239. },
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(1.8, "meter"),
  15243. default: true
  15244. },
  15245. {
  15246. name: "Macro",
  15247. height: math.unit(30, "meters")
  15248. },
  15249. {
  15250. name: "Megamacro",
  15251. height: math.unit(10, "km")
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(6, "feet"),
  15260. weight: math.unit(150, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/jack/front.svg",
  15264. extra: 1754 / 1640,
  15265. bottom: 0.01
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Normal",
  15272. height: math.unit(80000, "feet"),
  15273. default: true
  15274. },
  15275. {
  15276. name: "Max size",
  15277. height: math.unit(10, "lightyears")
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15283. {
  15284. upright: {
  15285. height: math.unit(7, "feet"),
  15286. weight: math.unit(170, "lb"),
  15287. name: "Upright",
  15288. image: {
  15289. source: "./media/characters/cafat/upright.svg",
  15290. bottom: 0.01
  15291. }
  15292. },
  15293. uprightFull: {
  15294. height: math.unit(7, "feet"),
  15295. weight: math.unit(170, "lb"),
  15296. name: "Upright (Full)",
  15297. image: {
  15298. source: "./media/characters/cafat/upright-full.svg",
  15299. bottom: 0.01
  15300. }
  15301. },
  15302. side: {
  15303. height: math.unit(5, "feet"),
  15304. weight: math.unit(150, "lb"),
  15305. name: "Side",
  15306. image: {
  15307. source: "./media/characters/cafat/side.svg"
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Small",
  15314. height: math.unit(7, "feet"),
  15315. default: true
  15316. },
  15317. {
  15318. name: "Large",
  15319. height: math.unit(15.5, "feet")
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(6, "feet"),
  15328. weight: math.unit(150, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/verin-raharra/front.svg",
  15332. extra: 5019 / 4835,
  15333. bottom: 0.023
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(7 + 5 / 12, "feet"),
  15341. default: true
  15342. },
  15343. {
  15344. name: "Upsized",
  15345. height: math.unit(20, "feet")
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(7, "feet"),
  15354. weight: math.unit(230, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/nakata/front.svg",
  15358. extra: 1.005,
  15359. bottom: 0.01
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(7, "feet"),
  15367. default: true
  15368. },
  15369. {
  15370. name: "Big",
  15371. height: math.unit(14, "feet")
  15372. },
  15373. {
  15374. name: "Macro",
  15375. height: math.unit(400, "feet")
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(4.91, "feet"),
  15384. weight: math.unit(100, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/lily/front.svg",
  15388. extra: 1585 / 1415,
  15389. bottom: 0.02
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(4.91, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15403. {
  15404. laying: {
  15405. height: math.unit(4 + 4 / 12, "feet"),
  15406. weight: math.unit(600, "lb"),
  15407. name: "Laying",
  15408. image: {
  15409. source: "./media/characters/sheila/laying.svg",
  15410. extra: 1333 / 1265,
  15411. bottom: 0.16
  15412. }
  15413. },
  15414. },
  15415. [
  15416. {
  15417. name: "Normal",
  15418. height: math.unit(4 + 4 / 12, "feet"),
  15419. default: true
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(6, "feet"),
  15428. weight: math.unit(190, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/sax/front.svg",
  15432. extra: 1187 / 973,
  15433. bottom: 0.042
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Micro",
  15440. height: math.unit(4, "inches"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15447. {
  15448. front: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/pandora/front.svg",
  15454. extra: 2720 / 2556,
  15455. bottom: 0.015
  15456. }
  15457. },
  15458. back: {
  15459. height: math.unit(6, "feet"),
  15460. weight: math.unit(150, "lb"),
  15461. name: "Back",
  15462. image: {
  15463. source: "./media/characters/pandora/back.svg",
  15464. extra: 2720 / 2556,
  15465. bottom: 0.01
  15466. }
  15467. },
  15468. beans: {
  15469. height: math.unit(6 / 8, "feet"),
  15470. name: "Beans",
  15471. image: {
  15472. source: "./media/characters/pandora/beans.svg"
  15473. }
  15474. },
  15475. skirt: {
  15476. height: math.unit(6, "feet"),
  15477. weight: math.unit(150, "lb"),
  15478. name: "Skirt",
  15479. image: {
  15480. source: "./media/characters/pandora/skirt.svg",
  15481. extra: 1622 / 1525,
  15482. bottom: 0.015
  15483. }
  15484. },
  15485. hoodie: {
  15486. height: math.unit(6, "feet"),
  15487. weight: math.unit(150, "lb"),
  15488. name: "Hoodie",
  15489. image: {
  15490. source: "./media/characters/pandora/hoodie.svg",
  15491. extra: 1622 / 1525,
  15492. bottom: 0.015
  15493. }
  15494. },
  15495. casual: {
  15496. height: math.unit(6, "feet"),
  15497. weight: math.unit(150, "lb"),
  15498. name: "Casual",
  15499. image: {
  15500. source: "./media/characters/pandora/casual.svg",
  15501. extra: 1622 / 1525,
  15502. bottom: 0.015
  15503. }
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Normal",
  15509. height: math.unit(6, "feet")
  15510. },
  15511. {
  15512. name: "Big Steppy",
  15513. height: math.unit(1, "km"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15520. {
  15521. side: {
  15522. height: math.unit(10, "feet"),
  15523. weight: math.unit(800, "kg"),
  15524. name: "Side",
  15525. image: {
  15526. source: "./media/characters/venio-darcony/side.svg",
  15527. extra: 1373 / 1003,
  15528. bottom: 0.037
  15529. }
  15530. },
  15531. front: {
  15532. height: math.unit(19, "feet"),
  15533. weight: math.unit(800, "kg"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/venio-darcony/front.svg"
  15537. }
  15538. },
  15539. back: {
  15540. height: math.unit(19, "feet"),
  15541. weight: math.unit(800, "kg"),
  15542. name: "Back",
  15543. image: {
  15544. source: "./media/characters/venio-darcony/back.svg"
  15545. }
  15546. },
  15547. sideNsfw: {
  15548. height: math.unit(10, "feet"),
  15549. weight: math.unit(800, "kg"),
  15550. name: "Side (NSFW)",
  15551. image: {
  15552. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15553. extra: 1373 / 1003,
  15554. bottom: 0.037
  15555. }
  15556. },
  15557. frontNsfw: {
  15558. height: math.unit(19, "feet"),
  15559. weight: math.unit(800, "kg"),
  15560. name: "Front (NSFW)",
  15561. image: {
  15562. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15563. }
  15564. },
  15565. backNsfw: {
  15566. height: math.unit(19, "feet"),
  15567. weight: math.unit(800, "kg"),
  15568. name: "Back (NSFW)",
  15569. image: {
  15570. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15571. }
  15572. },
  15573. sideArmored: {
  15574. height: math.unit(10, "feet"),
  15575. weight: math.unit(800, "kg"),
  15576. name: "Side (Armored)",
  15577. image: {
  15578. source: "./media/characters/venio-darcony/side-armored.svg",
  15579. extra: 1373 / 1003,
  15580. bottom: 0.037
  15581. }
  15582. },
  15583. frontArmored: {
  15584. height: math.unit(19, "feet"),
  15585. weight: math.unit(900, "kg"),
  15586. name: "Front (Armored)",
  15587. image: {
  15588. source: "./media/characters/venio-darcony/front-armored.svg"
  15589. }
  15590. },
  15591. backArmored: {
  15592. height: math.unit(19, "feet"),
  15593. weight: math.unit(900, "kg"),
  15594. name: "Back (Armored)",
  15595. image: {
  15596. source: "./media/characters/venio-darcony/back-armored.svg"
  15597. }
  15598. },
  15599. sword: {
  15600. height: math.unit(10, "feet"),
  15601. weight: math.unit(50, "lb"),
  15602. name: "Sword",
  15603. image: {
  15604. source: "./media/characters/venio-darcony/sword.svg"
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Normal",
  15611. height: math.unit(10, "feet")
  15612. },
  15613. {
  15614. name: "Macro",
  15615. height: math.unit(130, "feet"),
  15616. default: true
  15617. },
  15618. {
  15619. name: "Macro+",
  15620. height: math.unit(240, "feet")
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(150, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/veski/front.svg",
  15633. extra: 1299 / 1225,
  15634. bottom: 0.04
  15635. }
  15636. },
  15637. back: {
  15638. height: math.unit(6, "feet"),
  15639. weight: math.unit(150, "lb"),
  15640. name: "Back",
  15641. image: {
  15642. source: "./media/characters/veski/back.svg",
  15643. extra: 1299 / 1225,
  15644. bottom: 0.008
  15645. }
  15646. },
  15647. maw: {
  15648. height: math.unit(1.5 * 1.21, "feet"),
  15649. name: "Maw",
  15650. image: {
  15651. source: "./media/characters/veski/maw.svg"
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Macro",
  15658. height: math.unit(2, "km"),
  15659. default: true
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15665. {
  15666. front: {
  15667. height: math.unit(5 + 7 / 12, "feet"),
  15668. name: "Front",
  15669. image: {
  15670. source: "./media/characters/isabelle/front.svg",
  15671. extra: 2130 / 1976,
  15672. bottom: 0.05
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Supermicro",
  15679. height: math.unit(10, "micrometers")
  15680. },
  15681. {
  15682. name: "Micro",
  15683. height: math.unit(1, "inch")
  15684. },
  15685. {
  15686. name: "Tiny",
  15687. height: math.unit(5, "inches")
  15688. },
  15689. {
  15690. name: "Standard",
  15691. height: math.unit(5 + 7 / 12, "inches")
  15692. },
  15693. {
  15694. name: "Macro",
  15695. height: math.unit(80, "meters"),
  15696. default: true
  15697. },
  15698. {
  15699. name: "Megamacro",
  15700. height: math.unit(250, "meters")
  15701. },
  15702. {
  15703. name: "Gigamacro",
  15704. height: math.unit(5, "km")
  15705. },
  15706. {
  15707. name: "Cosmic",
  15708. height: math.unit(2.5e6, "miles")
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(6, "feet"),
  15717. weight: math.unit(150, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/hanzo/front.svg",
  15721. extra: 374 / 344,
  15722. bottom: 0.02
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(8, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(7, "feet"),
  15739. weight: math.unit(130, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/anna/front.svg",
  15743. extra: 169 / 145,
  15744. bottom: 0.06
  15745. }
  15746. },
  15747. full: {
  15748. height: math.unit(4.96, "feet"),
  15749. weight: math.unit(220, "lb"),
  15750. name: "Full",
  15751. image: {
  15752. source: "./media/characters/anna/full.svg",
  15753. extra: 138 / 114,
  15754. bottom: 0.15
  15755. }
  15756. },
  15757. tongue: {
  15758. height: math.unit(2.53, "feet"),
  15759. name: "Tongue",
  15760. image: {
  15761. source: "./media/characters/anna/tongue.svg"
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Normal",
  15768. height: math.unit(7, "feet"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(7, "feet"),
  15778. weight: math.unit(150, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/ian-corvid/front.svg",
  15782. extra: 150 / 142,
  15783. bottom: 0.02
  15784. }
  15785. },
  15786. back: {
  15787. height: math.unit(7, "feet"),
  15788. weight: math.unit(150, "lb"),
  15789. name: "Back",
  15790. image: {
  15791. source: "./media/characters/ian-corvid/back.svg",
  15792. extra: 150 / 143,
  15793. bottom: 0.01
  15794. }
  15795. },
  15796. stomping: {
  15797. height: math.unit(7, "feet"),
  15798. weight: math.unit(150, "lb"),
  15799. name: "Stomping",
  15800. image: {
  15801. source: "./media/characters/ian-corvid/stomping.svg",
  15802. extra: 76 / 72
  15803. }
  15804. },
  15805. sitting: {
  15806. height: math.unit(7 / 1.8, "feet"),
  15807. weight: math.unit(150, "lb"),
  15808. name: "Sitting",
  15809. image: {
  15810. source: "./media/characters/ian-corvid/sitting.svg",
  15811. extra: 1400 / 1269,
  15812. bottom: 0.15
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Tiny Microw",
  15819. height: math.unit(1, "inch")
  15820. },
  15821. {
  15822. name: "Microw",
  15823. height: math.unit(6, "inches")
  15824. },
  15825. {
  15826. name: "Crow",
  15827. height: math.unit(7 + 1 / 12, "feet"),
  15828. default: true
  15829. },
  15830. {
  15831. name: "Macrow",
  15832. height: math.unit(176, "feet")
  15833. },
  15834. ]
  15835. ))
  15836. characterMakers.push(() => makeCharacter(
  15837. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15838. {
  15839. front: {
  15840. height: math.unit(5 + 7 / 12, "feet"),
  15841. weight: math.unit(147, "lb"),
  15842. name: "Front",
  15843. image: {
  15844. source: "./media/characters/natalie-kellon/front.svg",
  15845. extra: 1214 / 1141,
  15846. bottom: 0.02
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Micro",
  15853. height: math.unit(1 / 16, "inch")
  15854. },
  15855. {
  15856. name: "Tiny",
  15857. height: math.unit(4, "inches")
  15858. },
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(5 + 7 / 12, "feet"),
  15862. default: true
  15863. },
  15864. {
  15865. name: "Amazon",
  15866. height: math.unit(12, "feet")
  15867. },
  15868. {
  15869. name: "Giantess",
  15870. height: math.unit(160, "meters")
  15871. },
  15872. {
  15873. name: "Titaness",
  15874. height: math.unit(800, "meters")
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(6, "feet"),
  15883. weight: math.unit(150, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/alluria/front.svg",
  15887. extra: 806 / 738,
  15888. bottom: 0.01
  15889. }
  15890. },
  15891. side: {
  15892. height: math.unit(6, "feet"),
  15893. weight: math.unit(150, "lb"),
  15894. name: "Side",
  15895. image: {
  15896. source: "./media/characters/alluria/side.svg",
  15897. extra: 800 / 750,
  15898. }
  15899. },
  15900. back: {
  15901. height: math.unit(6, "feet"),
  15902. weight: math.unit(150, "lb"),
  15903. name: "Back",
  15904. image: {
  15905. source: "./media/characters/alluria/back.svg",
  15906. extra: 806 / 738,
  15907. }
  15908. },
  15909. frontMaid: {
  15910. height: math.unit(6, "feet"),
  15911. weight: math.unit(150, "lb"),
  15912. name: "Front (Maid)",
  15913. image: {
  15914. source: "./media/characters/alluria/front-maid.svg",
  15915. extra: 806 / 738,
  15916. bottom: 0.01
  15917. }
  15918. },
  15919. sideMaid: {
  15920. height: math.unit(6, "feet"),
  15921. weight: math.unit(150, "lb"),
  15922. name: "Side (Maid)",
  15923. image: {
  15924. source: "./media/characters/alluria/side-maid.svg",
  15925. extra: 800 / 750,
  15926. bottom: 0.005
  15927. }
  15928. },
  15929. backMaid: {
  15930. height: math.unit(6, "feet"),
  15931. weight: math.unit(150, "lb"),
  15932. name: "Back (Maid)",
  15933. image: {
  15934. source: "./media/characters/alluria/back-maid.svg",
  15935. extra: 806 / 738,
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Micro",
  15942. height: math.unit(6, "inches"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(6, "feet"),
  15952. weight: math.unit(150, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/kyle/front.svg",
  15956. extra: 1069 / 962,
  15957. bottom: 77.228 / 1727.45
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Macro",
  15964. height: math.unit(150, "feet"),
  15965. default: true
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(6, "feet"),
  15974. weight: math.unit(300, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/duncan/front.svg",
  15978. extra: 1650 / 1482,
  15979. bottom: 0.05
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Macro",
  15986. height: math.unit(100, "feet"),
  15987. default: true
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(5 + 4 / 12, "feet"),
  15996. weight: math.unit(220, "lb"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/memory/front.svg",
  16000. extra: 3641 / 3545,
  16001. bottom: 0.03
  16002. }
  16003. },
  16004. back: {
  16005. height: math.unit(5 + 4 / 12, "feet"),
  16006. weight: math.unit(220, "lb"),
  16007. name: "Back",
  16008. image: {
  16009. source: "./media/characters/memory/back.svg",
  16010. extra: 3641 / 3545,
  16011. bottom: 0.025
  16012. }
  16013. },
  16014. frontSkirt: {
  16015. height: math.unit(5 + 4 / 12, "feet"),
  16016. weight: math.unit(220, "lb"),
  16017. name: "Front (Skirt)",
  16018. image: {
  16019. source: "./media/characters/memory/front-skirt.svg",
  16020. extra: 3641 / 3545,
  16021. bottom: 0.03
  16022. }
  16023. },
  16024. frontDress: {
  16025. height: math.unit(5 + 4 / 12, "feet"),
  16026. weight: math.unit(220, "lb"),
  16027. name: "Front (Dress)",
  16028. image: {
  16029. source: "./media/characters/memory/front-dress.svg",
  16030. extra: 3641 / 3545,
  16031. bottom: 0.03
  16032. }
  16033. },
  16034. },
  16035. [
  16036. {
  16037. name: "Micro",
  16038. height: math.unit(6, "inches"),
  16039. default: true
  16040. },
  16041. {
  16042. name: "Normal",
  16043. height: math.unit(5 + 4 / 12, "feet")
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(4 + 11 / 12, "feet"),
  16052. weight: math.unit(100, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/luno/front.svg",
  16056. extra: 1535 / 1487,
  16057. bottom: 0.03
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Micro",
  16064. height: math.unit(3, "inches")
  16065. },
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(4 + 11 / 12, "feet"),
  16069. default: true
  16070. },
  16071. {
  16072. name: "Macro",
  16073. height: math.unit(300, "feet")
  16074. },
  16075. {
  16076. name: "Megamacro",
  16077. height: math.unit(700, "miles")
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16083. {
  16084. front: {
  16085. height: math.unit(6 + 2 / 12, "feet"),
  16086. weight: math.unit(170, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/jamesy/front.svg",
  16090. extra: 440 / 382,
  16091. bottom: 0.005
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Micro",
  16098. height: math.unit(3, "inches")
  16099. },
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(6 + 2 / 12, "feet"),
  16103. default: true
  16104. },
  16105. {
  16106. name: "Macro",
  16107. height: math.unit(300, "feet")
  16108. },
  16109. {
  16110. name: "Megamacro",
  16111. height: math.unit(700, "miles")
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16117. {
  16118. front: {
  16119. height: math.unit(6, "feet"),
  16120. weight: math.unit(160, "lb"),
  16121. name: "Front",
  16122. image: {
  16123. source: "./media/characters/mark/front.svg",
  16124. extra: 3300 / 3100,
  16125. bottom: 136.42 / 3440.47
  16126. }
  16127. },
  16128. },
  16129. [
  16130. {
  16131. name: "Macro",
  16132. height: math.unit(120, "meters")
  16133. },
  16134. {
  16135. name: "Bigger Macro",
  16136. height: math.unit(350, "meters")
  16137. },
  16138. {
  16139. name: "Megamacro",
  16140. height: math.unit(8, "km"),
  16141. default: true
  16142. },
  16143. {
  16144. name: "Continental",
  16145. height: math.unit(4550, "km")
  16146. },
  16147. {
  16148. name: "Planetary",
  16149. height: math.unit(65000, "km")
  16150. },
  16151. ]
  16152. ))
  16153. characterMakers.push(() => makeCharacter(
  16154. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16155. {
  16156. front: {
  16157. height: math.unit(6, "feet"),
  16158. weight: math.unit(400, "lb"),
  16159. name: "Front",
  16160. image: {
  16161. source: "./media/characters/mac/front.svg",
  16162. extra: 1048 / 987.7,
  16163. bottom: 60 / 1107.6,
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Macro",
  16170. height: math.unit(500, "feet"),
  16171. default: true
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16177. {
  16178. front: {
  16179. height: math.unit(5 + 2 / 12, "feet"),
  16180. weight: math.unit(190, "lb"),
  16181. name: "Front",
  16182. image: {
  16183. source: "./media/characters/bari/front.svg",
  16184. extra: 3156 / 2880,
  16185. bottom: 0.03
  16186. }
  16187. },
  16188. back: {
  16189. height: math.unit(5 + 2 / 12, "feet"),
  16190. weight: math.unit(190, "lb"),
  16191. name: "Back",
  16192. image: {
  16193. source: "./media/characters/bari/back.svg",
  16194. extra: 3260 / 2834,
  16195. bottom: 0.025
  16196. }
  16197. },
  16198. frontPlush: {
  16199. height: math.unit(5 + 2 / 12, "feet"),
  16200. weight: math.unit(190, "lb"),
  16201. name: "Front (Plush)",
  16202. image: {
  16203. source: "./media/characters/bari/front-plush.svg",
  16204. extra: 1112 / 1061,
  16205. bottom: 0.002
  16206. }
  16207. },
  16208. },
  16209. [
  16210. {
  16211. name: "Micro",
  16212. height: math.unit(3, "inches")
  16213. },
  16214. {
  16215. name: "Normal",
  16216. height: math.unit(5 + 2 / 12, "feet"),
  16217. default: true
  16218. },
  16219. {
  16220. name: "Macro",
  16221. height: math.unit(20, "feet")
  16222. },
  16223. ]
  16224. ))
  16225. characterMakers.push(() => makeCharacter(
  16226. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16227. {
  16228. front: {
  16229. height: math.unit(6 + 1 / 12, "feet"),
  16230. weight: math.unit(275, "lb"),
  16231. name: "Front",
  16232. image: {
  16233. source: "./media/characters/hunter-misha-raven/front.svg"
  16234. }
  16235. },
  16236. },
  16237. [
  16238. {
  16239. name: "Mortal",
  16240. height: math.unit(6 + 1 / 12, "feet")
  16241. },
  16242. {
  16243. name: "Divine",
  16244. height: math.unit(1.12134e34, "parsecs"),
  16245. default: true
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(6 + 3 / 12, "feet"),
  16254. weight: math.unit(220, "lb"),
  16255. name: "Front",
  16256. image: {
  16257. source: "./media/characters/max-calore/front.svg",
  16258. extra: 1700 / 1648,
  16259. bottom: 0.01
  16260. }
  16261. },
  16262. back: {
  16263. height: math.unit(6 + 3 / 12, "feet"),
  16264. weight: math.unit(220, "lb"),
  16265. name: "Back",
  16266. image: {
  16267. source: "./media/characters/max-calore/back.svg",
  16268. extra: 1700 / 1648,
  16269. bottom: 0.01
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Normal",
  16276. height: math.unit(6 + 3 / 12, "feet"),
  16277. default: true
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16283. {
  16284. side: {
  16285. height: math.unit(2 + 8 / 12, "feet"),
  16286. weight: math.unit(99, "lb"),
  16287. name: "Side",
  16288. image: {
  16289. source: "./media/characters/aspen/side.svg",
  16290. extra: 152 / 138,
  16291. bottom: 0.032
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Normal",
  16298. height: math.unit(2 + 8 / 12, "feet"),
  16299. default: true
  16300. },
  16301. ]
  16302. ))
  16303. characterMakers.push(() => makeCharacter(
  16304. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16305. {
  16306. side: {
  16307. height: math.unit(3 + 2 / 12, "feet"),
  16308. weight: math.unit(224, "lb"),
  16309. name: "Side",
  16310. image: {
  16311. source: "./media/characters/sheila-feral-wolf/side.svg",
  16312. extra: 179 / 166,
  16313. bottom: 0.03
  16314. }
  16315. },
  16316. },
  16317. [
  16318. {
  16319. name: "Normal",
  16320. height: math.unit(3 + 2 / 12, "feet"),
  16321. default: true
  16322. },
  16323. ]
  16324. ))
  16325. characterMakers.push(() => makeCharacter(
  16326. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16327. {
  16328. side: {
  16329. height: math.unit(1 + 9 / 12, "feet"),
  16330. weight: math.unit(38, "lb"),
  16331. name: "Side",
  16332. image: {
  16333. source: "./media/characters/michelle/side.svg",
  16334. extra: 147 / 136.7,
  16335. bottom: 0.03
  16336. }
  16337. },
  16338. },
  16339. [
  16340. {
  16341. name: "Normal",
  16342. height: math.unit(1 + 9 / 12, "feet"),
  16343. default: true
  16344. },
  16345. ]
  16346. ))
  16347. characterMakers.push(() => makeCharacter(
  16348. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16349. {
  16350. front: {
  16351. height: math.unit(1 + 1 / 12, "feet"),
  16352. weight: math.unit(18, "lb"),
  16353. name: "Front",
  16354. image: {
  16355. source: "./media/characters/nino/front.svg"
  16356. }
  16357. },
  16358. },
  16359. [
  16360. {
  16361. name: "Normal",
  16362. height: math.unit(1 + 1 / 12, "feet"),
  16363. default: true
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16369. {
  16370. front: {
  16371. height: math.unit(1, "feet"),
  16372. weight: math.unit(16, "lb"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/viola/front.svg"
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(1, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(6 + 5 / 12, "feet"),
  16392. weight: math.unit(580, "lb"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/atlas/front.svg",
  16396. extra: 298.5 / 290,
  16397. bottom: 0.015
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(6 + 5 / 12, "feet"),
  16405. default: true
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16411. {
  16412. side: {
  16413. height: math.unit(1 + 10 / 12, "feet"),
  16414. weight: math.unit(25, "lb"),
  16415. name: "Side",
  16416. image: {
  16417. source: "./media/characters/davy/side.svg",
  16418. extra: 200 / 170,
  16419. bottom: 0.01
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Normal",
  16426. height: math.unit(1 + 10 / 12, "feet"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16433. {
  16434. side: {
  16435. height: math.unit(4 + 8 / 12, "feet"),
  16436. weight: math.unit(166, "lb"),
  16437. name: "Side",
  16438. image: {
  16439. source: "./media/characters/fiona/side.svg",
  16440. extra: 232 / 220,
  16441. bottom: 0.03
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(4 + 8 / 12, "feet"),
  16449. default: true
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16455. {
  16456. front: {
  16457. height: math.unit(2, "feet"),
  16458. weight: math.unit(62, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/lyla/front.svg",
  16462. bottom: 0.1
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Normal",
  16469. height: math.unit(2, "feet"),
  16470. default: true
  16471. },
  16472. ]
  16473. ))
  16474. characterMakers.push(() => makeCharacter(
  16475. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16476. {
  16477. side: {
  16478. height: math.unit(1.8, "feet"),
  16479. weight: math.unit(44, "lb"),
  16480. name: "Side",
  16481. image: {
  16482. source: "./media/characters/perseus/side.svg",
  16483. bottom: 0.21
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(1.8, "feet"),
  16491. default: true
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16497. {
  16498. side: {
  16499. height: math.unit(4 + 2 / 12, "feet"),
  16500. weight: math.unit(20, "lb"),
  16501. name: "Side",
  16502. image: {
  16503. source: "./media/characters/remus/side.svg"
  16504. }
  16505. },
  16506. },
  16507. [
  16508. {
  16509. name: "Normal",
  16510. height: math.unit(4 + 2 / 12, "feet"),
  16511. default: true
  16512. },
  16513. ]
  16514. ))
  16515. characterMakers.push(() => makeCharacter(
  16516. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16517. {
  16518. front: {
  16519. height: math.unit(4 + 11 / 12, "feet"),
  16520. weight: math.unit(114, "lb"),
  16521. name: "Front",
  16522. image: {
  16523. source: "./media/characters/raf/front.svg",
  16524. bottom: 20.5 / 1863
  16525. }
  16526. },
  16527. side: {
  16528. height: math.unit(4 + 11 / 12, "feet"),
  16529. weight: math.unit(114, "lb"),
  16530. name: "Side",
  16531. image: {
  16532. source: "./media/characters/raf/side.svg",
  16533. bottom: 22 / 1822
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Micro",
  16540. height: math.unit(2, "inches")
  16541. },
  16542. {
  16543. name: "Normal",
  16544. height: math.unit(4 + 11 / 12, "feet"),
  16545. default: true
  16546. },
  16547. {
  16548. name: "Macro",
  16549. height: math.unit(70, "feet")
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16555. {
  16556. front: {
  16557. height: math.unit(1.5, "meters"),
  16558. weight: math.unit(68, "kg"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/liam-einarr/front.svg",
  16562. extra: 2822 / 2666
  16563. }
  16564. },
  16565. back: {
  16566. height: math.unit(1.5, "meters"),
  16567. weight: math.unit(68, "kg"),
  16568. name: "Back",
  16569. image: {
  16570. source: "./media/characters/liam-einarr/back.svg",
  16571. extra: 2822 / 2666,
  16572. bottom: 0.015
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Normal",
  16579. height: math.unit(1.5, "meters"),
  16580. default: true
  16581. },
  16582. {
  16583. name: "Macro",
  16584. height: math.unit(150, "meters")
  16585. },
  16586. {
  16587. name: "Megamacro",
  16588. height: math.unit(35, "km")
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16594. {
  16595. front: {
  16596. height: math.unit(6, "feet"),
  16597. weight: math.unit(75, "kg"),
  16598. name: "Front",
  16599. image: {
  16600. source: "./media/characters/linda/front.svg",
  16601. extra: 930 / 874,
  16602. bottom: 0.004
  16603. }
  16604. },
  16605. },
  16606. [
  16607. {
  16608. name: "Normal",
  16609. height: math.unit(6, "feet"),
  16610. default: true
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16616. {
  16617. front: {
  16618. height: math.unit(6 + 8 / 12, "feet"),
  16619. weight: math.unit(220, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/caylex/front.svg",
  16623. extra: 821 / 772,
  16624. bottom: 0.07
  16625. }
  16626. },
  16627. back: {
  16628. height: math.unit(6 + 8 / 12, "feet"),
  16629. weight: math.unit(220, "lb"),
  16630. name: "Back",
  16631. image: {
  16632. source: "./media/characters/caylex/back.svg",
  16633. extra: 821 / 772,
  16634. bottom: 0.022
  16635. }
  16636. },
  16637. hand: {
  16638. height: math.unit(1.25, "feet"),
  16639. name: "Hand",
  16640. image: {
  16641. source: "./media/characters/caylex/hand.svg"
  16642. }
  16643. },
  16644. foot: {
  16645. height: math.unit(1.6, "feet"),
  16646. name: "Foot",
  16647. image: {
  16648. source: "./media/characters/caylex/foot.svg"
  16649. }
  16650. },
  16651. armored: {
  16652. height: math.unit(6 + 8 / 12, "feet"),
  16653. weight: math.unit(250, "lb"),
  16654. name: "Armored",
  16655. image: {
  16656. source: "./media/characters/caylex/armored.svg",
  16657. extra: 1420 / 1310,
  16658. bottom: 0.045
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Normal",
  16665. height: math.unit(6 + 8 / 12, "feet"),
  16666. default: true
  16667. },
  16668. {
  16669. name: "Normal+",
  16670. height: math.unit(12, "feet")
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16676. {
  16677. front: {
  16678. height: math.unit(7 + 6 / 12, "feet"),
  16679. weight: math.unit(288, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/alana/front.svg",
  16683. extra: 679 / 653,
  16684. bottom: 22.5 / 701
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Normal",
  16691. height: math.unit(7 + 6 / 12, "feet")
  16692. },
  16693. {
  16694. name: "Large",
  16695. height: math.unit(50, "feet")
  16696. },
  16697. {
  16698. name: "Macro",
  16699. height: math.unit(100, "feet"),
  16700. default: true
  16701. },
  16702. {
  16703. name: "Macro+",
  16704. height: math.unit(200, "feet")
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16710. {
  16711. front: {
  16712. height: math.unit(6 + 1 / 12, "feet"),
  16713. weight: math.unit(210, "lb"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/hasani/front.svg",
  16717. extra: 244 / 232,
  16718. bottom: 0.01
  16719. }
  16720. },
  16721. back: {
  16722. height: math.unit(6 + 1 / 12, "feet"),
  16723. weight: math.unit(210, "lb"),
  16724. name: "Back",
  16725. image: {
  16726. source: "./media/characters/hasani/back.svg",
  16727. extra: 244 / 232,
  16728. bottom: 0.01
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(6 + 1 / 12, "feet")
  16736. },
  16737. {
  16738. name: "Macro",
  16739. height: math.unit(175, "feet"),
  16740. default: true
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16746. {
  16747. front: {
  16748. height: math.unit(1.82, "meters"),
  16749. weight: math.unit(140, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/nita/front.svg",
  16753. extra: 2473 / 2363,
  16754. bottom: 0.01
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Normal",
  16761. height: math.unit(1.82, "m")
  16762. },
  16763. {
  16764. name: "Macro",
  16765. height: math.unit(300, "m")
  16766. },
  16767. {
  16768. name: "Mistake Canon",
  16769. height: math.unit(0.5, "miles"),
  16770. default: true
  16771. },
  16772. {
  16773. name: "Big Mistake",
  16774. height: math.unit(13, "miles")
  16775. },
  16776. {
  16777. name: "Playing God",
  16778. height: math.unit(2450, "miles")
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(4, "feet"),
  16787. weight: math.unit(120, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/shiriko/front.svg",
  16791. extra: 195 / 188
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(4, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6, "feet"),
  16808. name: "front",
  16809. image: {
  16810. source: "./media/characters/deja/front.svg",
  16811. extra: 926 / 840,
  16812. bottom: 0.07
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Planck Length",
  16819. height: math.unit(1.6e-35, "meters")
  16820. },
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(30.48, "meters"),
  16824. default: true
  16825. },
  16826. {
  16827. name: "Universal",
  16828. height: math.unit(8.8e26, "meters")
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16834. {
  16835. side: {
  16836. height: math.unit(8, "feet"),
  16837. weight: math.unit(6300, "lb"),
  16838. name: "Side",
  16839. image: {
  16840. source: "./media/characters/anima/side.svg",
  16841. bottom: 0.035
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(8, "feet"),
  16849. default: true
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16855. {
  16856. front: {
  16857. height: math.unit(8, "feet"),
  16858. weight: math.unit(350, "lb"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/bianca/front.svg",
  16862. extra: 234 / 225,
  16863. bottom: 0.03
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(8, "feet"),
  16871. default: true
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(6, "feet"),
  16880. weight: math.unit(150, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/adinia/front.svg",
  16884. extra: 1845 / 1672,
  16885. bottom: 0.02
  16886. }
  16887. },
  16888. back: {
  16889. height: math.unit(6, "feet"),
  16890. weight: math.unit(150, "lb"),
  16891. name: "Back",
  16892. image: {
  16893. source: "./media/characters/adinia/back.svg",
  16894. extra: 1845 / 1672,
  16895. bottom: 0.002
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(11 + 5 / 12, "feet"),
  16903. default: true
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(3, "meters"),
  16912. weight: math.unit(200, "kg"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/lykasa/front.svg",
  16916. extra: 1076 / 976,
  16917. bottom: 0.06
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Normal",
  16924. height: math.unit(3, "meters")
  16925. },
  16926. {
  16927. name: "Kaiju",
  16928. height: math.unit(120, "meters"),
  16929. default: true
  16930. },
  16931. {
  16932. name: "Mega Kaiju",
  16933. height: math.unit(240, "km")
  16934. },
  16935. {
  16936. name: "Giga Kaiju",
  16937. height: math.unit(400, "megameters")
  16938. },
  16939. {
  16940. name: "Tera Kaiju",
  16941. height: math.unit(800, "gigameters")
  16942. },
  16943. {
  16944. name: "Kaiju Dragon Goddess",
  16945. height: math.unit(26, "zettaparsecs")
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16951. {
  16952. side: {
  16953. height: math.unit(283 / 124 * 6, "feet"),
  16954. weight: math.unit(35000, "lb"),
  16955. name: "Side",
  16956. image: {
  16957. source: "./media/characters/malfaren/side.svg",
  16958. extra: 2500 / 1010,
  16959. bottom: 0.01
  16960. }
  16961. },
  16962. front: {
  16963. height: math.unit(22.36, "feet"),
  16964. weight: math.unit(35000, "lb"),
  16965. name: "Front",
  16966. image: {
  16967. source: "./media/characters/malfaren/front.svg",
  16968. extra: 1631 / 1476,
  16969. bottom: 0.01
  16970. }
  16971. },
  16972. maw: {
  16973. height: math.unit(6.9, "feet"),
  16974. name: "Maw",
  16975. image: {
  16976. source: "./media/characters/malfaren/maw.svg"
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Big",
  16983. height: math.unit(283 / 162 * 6, "feet"),
  16984. },
  16985. {
  16986. name: "Bigger",
  16987. height: math.unit(283 / 124 * 6, "feet")
  16988. },
  16989. {
  16990. name: "Massive",
  16991. height: math.unit(283 / 92 * 6, "feet"),
  16992. default: true
  16993. },
  16994. {
  16995. name: "👀💦",
  16996. height: math.unit(283 / 73 * 6, "feet"),
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17002. {
  17003. front: {
  17004. height: math.unit(1.7, "m"),
  17005. weight: math.unit(70, "kg"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/kernel/front.svg",
  17009. extra: 222 / 210,
  17010. bottom: 0.007
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Nano",
  17017. height: math.unit(17, "micrometers")
  17018. },
  17019. {
  17020. name: "Micro",
  17021. height: math.unit(1.7, "mm")
  17022. },
  17023. {
  17024. name: "Small",
  17025. height: math.unit(1.7, "cm")
  17026. },
  17027. {
  17028. name: "Normal",
  17029. height: math.unit(1.7, "m"),
  17030. default: true
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17036. {
  17037. front: {
  17038. height: math.unit(1.75, "meters"),
  17039. weight: math.unit(65, "kg"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/jayne-folest/front.svg",
  17043. extra: 2115 / 2007,
  17044. bottom: 0.02
  17045. }
  17046. },
  17047. back: {
  17048. height: math.unit(1.75, "meters"),
  17049. weight: math.unit(65, "kg"),
  17050. name: "Back",
  17051. image: {
  17052. source: "./media/characters/jayne-folest/back.svg",
  17053. extra: 2115 / 2007,
  17054. bottom: 0.005
  17055. }
  17056. },
  17057. frontClothed: {
  17058. height: math.unit(1.75, "meters"),
  17059. weight: math.unit(65, "kg"),
  17060. name: "Front (Clothed)",
  17061. image: {
  17062. source: "./media/characters/jayne-folest/front-clothed.svg",
  17063. extra: 2115 / 2007,
  17064. bottom: 0.035
  17065. }
  17066. },
  17067. hand: {
  17068. height: math.unit(1 / 1.260, "feet"),
  17069. name: "Hand",
  17070. image: {
  17071. source: "./media/characters/jayne-folest/hand.svg"
  17072. }
  17073. },
  17074. foot: {
  17075. height: math.unit(1 / 0.918, "feet"),
  17076. name: "Foot",
  17077. image: {
  17078. source: "./media/characters/jayne-folest/foot.svg"
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Micro",
  17085. height: math.unit(4, "cm")
  17086. },
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(1.75, "meters")
  17090. },
  17091. {
  17092. name: "Macro",
  17093. height: math.unit(47.5, "meters"),
  17094. default: true
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(180, "cm"),
  17103. weight: math.unit(70, "kg"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/algier/front.svg",
  17107. extra: 596 / 572,
  17108. bottom: 0.04
  17109. }
  17110. },
  17111. back: {
  17112. height: math.unit(180, "cm"),
  17113. weight: math.unit(70, "kg"),
  17114. name: "Back",
  17115. image: {
  17116. source: "./media/characters/algier/back.svg",
  17117. extra: 596 / 572,
  17118. bottom: 0.025
  17119. }
  17120. },
  17121. frontdressed: {
  17122. height: math.unit(180, "cm"),
  17123. weight: math.unit(150, "kg"),
  17124. name: "Front-dressed",
  17125. image: {
  17126. source: "./media/characters/algier/front-dressed.svg",
  17127. extra: 596 / 572,
  17128. bottom: 0.038
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Micro",
  17135. height: math.unit(5, "cm")
  17136. },
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(180, "cm"),
  17140. default: true
  17141. },
  17142. {
  17143. name: "Macro",
  17144. height: math.unit(64, "m")
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17150. {
  17151. upright: {
  17152. height: math.unit(7, "feet"),
  17153. weight: math.unit(300, "lb"),
  17154. name: "Upright",
  17155. image: {
  17156. source: "./media/characters/pretzel/upright.svg",
  17157. extra: 534 / 522,
  17158. bottom: 0.065
  17159. }
  17160. },
  17161. sprawling: {
  17162. height: math.unit(3.75, "feet"),
  17163. weight: math.unit(300, "lb"),
  17164. name: "Sprawling",
  17165. image: {
  17166. source: "./media/characters/pretzel/sprawling.svg",
  17167. extra: 314 / 281,
  17168. bottom: 0.1
  17169. }
  17170. },
  17171. tongue: {
  17172. height: math.unit(2, "feet"),
  17173. name: "Tongue",
  17174. image: {
  17175. source: "./media/characters/pretzel/tongue.svg"
  17176. }
  17177. },
  17178. },
  17179. [
  17180. {
  17181. name: "Normal",
  17182. height: math.unit(7, "feet"),
  17183. default: true
  17184. },
  17185. {
  17186. name: "Oversized",
  17187. height: math.unit(15, "feet")
  17188. },
  17189. {
  17190. name: "Huge",
  17191. height: math.unit(30, "feet")
  17192. },
  17193. {
  17194. name: "Macro",
  17195. height: math.unit(250, "feet")
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17201. {
  17202. sideFront: {
  17203. height: math.unit(5 + 2 / 12, "feet"),
  17204. weight: math.unit(120, "lb"),
  17205. name: "Front Side",
  17206. image: {
  17207. source: "./media/characters/roxi/side-front.svg",
  17208. extra: 2924 / 2717,
  17209. bottom: 0.08
  17210. }
  17211. },
  17212. sideBack: {
  17213. height: math.unit(5 + 2 / 12, "feet"),
  17214. weight: math.unit(120, "lb"),
  17215. name: "Back Side",
  17216. image: {
  17217. source: "./media/characters/roxi/side-back.svg",
  17218. extra: 2904 / 2693,
  17219. bottom: 0.06
  17220. }
  17221. },
  17222. front: {
  17223. height: math.unit(5 + 2 / 12, "feet"),
  17224. weight: math.unit(120, "lb"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/roxi/front.svg",
  17228. extra: 2028 / 1907,
  17229. bottom: 0.01
  17230. }
  17231. },
  17232. frontAlt: {
  17233. height: math.unit(5 + 2 / 12, "feet"),
  17234. weight: math.unit(120, "lb"),
  17235. name: "Front (Alt)",
  17236. image: {
  17237. source: "./media/characters/roxi/front-alt.svg",
  17238. extra: 1828 / 1798,
  17239. bottom: 0.01
  17240. }
  17241. },
  17242. sitting: {
  17243. height: math.unit(2.8, "feet"),
  17244. weight: math.unit(120, "lb"),
  17245. name: "Sitting",
  17246. image: {
  17247. source: "./media/characters/roxi/sitting.svg",
  17248. extra: 2660 / 2462,
  17249. bottom: 0.1
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(5 + 2 / 12, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17263. {
  17264. side: {
  17265. height: math.unit(55, "feet"),
  17266. weight: math.unit(153, "tons"),
  17267. name: "Side",
  17268. image: {
  17269. source: "./media/characters/shadow/side.svg",
  17270. extra: 701 / 628,
  17271. bottom: 0.02
  17272. }
  17273. },
  17274. flying: {
  17275. height: math.unit(145, "feet"),
  17276. weight: math.unit(153, "tons"),
  17277. name: "Flying",
  17278. image: {
  17279. source: "./media/characters/shadow/flying.svg"
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(55, "feet"),
  17287. default: true
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(6, "feet"),
  17296. weight: math.unit(200, "lb"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/marcie/front.svg",
  17300. extra: 960 / 876,
  17301. bottom: 58 / 1017.87
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Macro",
  17308. height: math.unit(1, "mile"),
  17309. default: true
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17315. {
  17316. front: {
  17317. height: math.unit(7, "feet"),
  17318. weight: math.unit(200, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/kachina/front.svg",
  17322. extra: 1290.68 / 1119,
  17323. bottom: 36.5 / 1327.18
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Normal",
  17330. height: math.unit(7, "feet"),
  17331. default: true
  17332. },
  17333. ]
  17334. ))
  17335. characterMakers.push(() => makeCharacter(
  17336. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17337. {
  17338. looking: {
  17339. height: math.unit(2, "meters"),
  17340. weight: math.unit(300, "kg"),
  17341. name: "Looking",
  17342. image: {
  17343. source: "./media/characters/kash/looking.svg",
  17344. extra: 474 / 344,
  17345. bottom: 0.03
  17346. }
  17347. },
  17348. side: {
  17349. height: math.unit(2, "meters"),
  17350. weight: math.unit(300, "kg"),
  17351. name: "Side",
  17352. image: {
  17353. source: "./media/characters/kash/side.svg",
  17354. extra: 302 / 251,
  17355. bottom: 0.03
  17356. }
  17357. },
  17358. front: {
  17359. height: math.unit(2, "meters"),
  17360. weight: math.unit(300, "kg"),
  17361. name: "Front",
  17362. image: {
  17363. source: "./media/characters/kash/front.svg",
  17364. extra: 495 / 360,
  17365. bottom: 0.015
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Normal",
  17372. height: math.unit(2, "meters"),
  17373. default: true
  17374. },
  17375. {
  17376. name: "Big",
  17377. height: math.unit(3, "meters")
  17378. },
  17379. {
  17380. name: "Large",
  17381. height: math.unit(5, "meters")
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17387. {
  17388. feeding: {
  17389. height: math.unit(6.7, "feet"),
  17390. weight: math.unit(350, "lb"),
  17391. name: "Feeding",
  17392. image: {
  17393. source: "./media/characters/lalim/feeding.svg",
  17394. }
  17395. },
  17396. },
  17397. [
  17398. {
  17399. name: "Normal",
  17400. height: math.unit(6.7, "feet"),
  17401. default: true
  17402. },
  17403. ]
  17404. ))
  17405. characterMakers.push(() => makeCharacter(
  17406. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17407. {
  17408. front: {
  17409. height: math.unit(9.5, "feet"),
  17410. weight: math.unit(600, "lb"),
  17411. name: "Front",
  17412. image: {
  17413. source: "./media/characters/de'vout/front.svg",
  17414. extra: 1443 / 1328,
  17415. bottom: 0.025
  17416. }
  17417. },
  17418. back: {
  17419. height: math.unit(9.5, "feet"),
  17420. weight: math.unit(600, "lb"),
  17421. name: "Back",
  17422. image: {
  17423. source: "./media/characters/de'vout/back.svg",
  17424. extra: 1443 / 1328
  17425. }
  17426. },
  17427. frontDressed: {
  17428. height: math.unit(9.5, "feet"),
  17429. weight: math.unit(600, "lb"),
  17430. name: "Front (Dressed",
  17431. image: {
  17432. source: "./media/characters/de'vout/front-dressed.svg",
  17433. extra: 1443 / 1328,
  17434. bottom: 0.025
  17435. }
  17436. },
  17437. backDressed: {
  17438. height: math.unit(9.5, "feet"),
  17439. weight: math.unit(600, "lb"),
  17440. name: "Back (Dressed",
  17441. image: {
  17442. source: "./media/characters/de'vout/back-dressed.svg",
  17443. extra: 1443 / 1328
  17444. }
  17445. },
  17446. },
  17447. [
  17448. {
  17449. name: "Normal",
  17450. height: math.unit(9.5, "feet"),
  17451. default: true
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(8, "feet"),
  17460. weight: math.unit(225, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/talana/front.svg",
  17464. extra: 1410 / 1300,
  17465. bottom: 0.015
  17466. }
  17467. },
  17468. frontDressed: {
  17469. height: math.unit(8, "feet"),
  17470. weight: math.unit(225, "lb"),
  17471. name: "Front (Dressed",
  17472. image: {
  17473. source: "./media/characters/talana/front-dressed.svg",
  17474. extra: 1410 / 1300,
  17475. bottom: 0.015
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(8, "feet"),
  17483. default: true
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17489. {
  17490. side: {
  17491. height: math.unit(7.2, "feet"),
  17492. weight: math.unit(150, "lb"),
  17493. name: "Side",
  17494. image: {
  17495. source: "./media/characters/xeauvok/side.svg",
  17496. extra: 1975 / 1523,
  17497. bottom: 0.07
  17498. }
  17499. },
  17500. },
  17501. [
  17502. {
  17503. name: "Normal",
  17504. height: math.unit(7.2, "feet"),
  17505. default: true
  17506. },
  17507. ]
  17508. ))
  17509. characterMakers.push(() => makeCharacter(
  17510. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17511. {
  17512. side: {
  17513. height: math.unit(10, "feet"),
  17514. weight: math.unit(900, "kg"),
  17515. name: "Side",
  17516. image: {
  17517. source: "./media/characters/zara/side.svg",
  17518. extra: 504 / 498
  17519. }
  17520. },
  17521. },
  17522. [
  17523. {
  17524. name: "Normal",
  17525. height: math.unit(10, "feet"),
  17526. default: true
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17532. {
  17533. side: {
  17534. height: math.unit(6, "feet"),
  17535. weight: math.unit(150, "lb"),
  17536. name: "Side",
  17537. image: {
  17538. source: "./media/characters/richard-dragon/side.svg",
  17539. extra: 845 / 340,
  17540. bottom: 0.017
  17541. }
  17542. },
  17543. maw: {
  17544. height: math.unit(2.97, "feet"),
  17545. name: "Maw",
  17546. image: {
  17547. source: "./media/characters/richard-dragon/maw.svg"
  17548. }
  17549. },
  17550. },
  17551. [
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17556. {
  17557. front: {
  17558. height: math.unit(4, "feet"),
  17559. weight: math.unit(100, "lb"),
  17560. name: "Front",
  17561. image: {
  17562. source: "./media/characters/richard-smeargle/front.svg",
  17563. extra: 2952 / 2820,
  17564. bottom: 0.028
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(4, "feet"),
  17572. default: true
  17573. },
  17574. {
  17575. name: "Dynamax",
  17576. height: math.unit(20, "meters")
  17577. },
  17578. ]
  17579. ))
  17580. characterMakers.push(() => makeCharacter(
  17581. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17582. {
  17583. front: {
  17584. height: math.unit(6, "feet"),
  17585. weight: math.unit(110, "lb"),
  17586. name: "Front",
  17587. image: {
  17588. source: "./media/characters/klay/front.svg",
  17589. extra: 962 / 883,
  17590. bottom: 0.04
  17591. }
  17592. },
  17593. back: {
  17594. height: math.unit(6, "feet"),
  17595. weight: math.unit(110, "lb"),
  17596. name: "Back",
  17597. image: {
  17598. source: "./media/characters/klay/back.svg",
  17599. extra: 962 / 883
  17600. }
  17601. },
  17602. beans: {
  17603. height: math.unit(1.15, "feet"),
  17604. name: "Beans",
  17605. image: {
  17606. source: "./media/characters/klay/beans.svg"
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Micro",
  17613. height: math.unit(6, "inches")
  17614. },
  17615. {
  17616. name: "Mini",
  17617. height: math.unit(3, "feet")
  17618. },
  17619. {
  17620. name: "Normal",
  17621. height: math.unit(6, "feet"),
  17622. default: true
  17623. },
  17624. {
  17625. name: "Big",
  17626. height: math.unit(25, "feet")
  17627. },
  17628. {
  17629. name: "Macro",
  17630. height: math.unit(100, "feet")
  17631. },
  17632. {
  17633. name: "Megamacro",
  17634. height: math.unit(400, "feet")
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(6, "feet"),
  17643. weight: math.unit(160, "lb"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/marcus/front.svg",
  17647. extra: 734 / 676,
  17648. bottom: 0.03
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Little",
  17655. height: math.unit(6, "feet")
  17656. },
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(110, "feet"),
  17660. default: true
  17661. },
  17662. {
  17663. name: "Macro",
  17664. height: math.unit(250, "feet")
  17665. },
  17666. {
  17667. name: "Megamacro",
  17668. height: math.unit(1000, "feet")
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17674. {
  17675. front: {
  17676. height: math.unit(7, "feet"),
  17677. weight: math.unit(275, "lb"),
  17678. name: "Front",
  17679. image: {
  17680. source: "./media/characters/claude-delroute/front.svg",
  17681. extra: 230 / 214,
  17682. bottom: 0.007
  17683. }
  17684. },
  17685. side: {
  17686. height: math.unit(7, "feet"),
  17687. weight: math.unit(275, "lb"),
  17688. name: "Side",
  17689. image: {
  17690. source: "./media/characters/claude-delroute/side.svg",
  17691. extra: 222 / 214,
  17692. bottom: 0.01
  17693. }
  17694. },
  17695. back: {
  17696. height: math.unit(7, "feet"),
  17697. weight: math.unit(275, "lb"),
  17698. name: "Back",
  17699. image: {
  17700. source: "./media/characters/claude-delroute/back.svg",
  17701. extra: 230 / 214,
  17702. bottom: 0.015
  17703. }
  17704. },
  17705. maw: {
  17706. height: math.unit(0.6407, "meters"),
  17707. name: "Maw",
  17708. image: {
  17709. source: "./media/characters/claude-delroute/maw.svg"
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(7, "feet"),
  17717. default: true
  17718. },
  17719. {
  17720. name: "Lorge",
  17721. height: math.unit(20, "feet")
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(8 + 4 / 12, "feet"),
  17730. weight: math.unit(600, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/dragonien/front.svg",
  17734. extra: 100 / 94,
  17735. bottom: 3.3 / 103.3445
  17736. }
  17737. },
  17738. back: {
  17739. height: math.unit(8 + 4 / 12, "feet"),
  17740. weight: math.unit(600, "lb"),
  17741. name: "Back",
  17742. image: {
  17743. source: "./media/characters/dragonien/back.svg",
  17744. extra: 776 / 746,
  17745. bottom: 6.4 / 782.0616
  17746. }
  17747. },
  17748. foot: {
  17749. height: math.unit(1.54, "feet"),
  17750. name: "Foot",
  17751. image: {
  17752. source: "./media/characters/dragonien/foot.svg",
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Normal",
  17759. height: math.unit(8 + 4 / 12, "feet"),
  17760. default: true
  17761. },
  17762. {
  17763. name: "Macro",
  17764. height: math.unit(200, "feet")
  17765. },
  17766. {
  17767. name: "Megamacro",
  17768. height: math.unit(1, "mile")
  17769. },
  17770. {
  17771. name: "Gigamacro",
  17772. height: math.unit(1000, "miles")
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17778. {
  17779. front: {
  17780. height: math.unit(5 + 2 / 12, "feet"),
  17781. weight: math.unit(110, "lb"),
  17782. name: "Front",
  17783. image: {
  17784. source: "./media/characters/desta/front.svg",
  17785. extra: 767 / 726,
  17786. bottom: 11.7 / 779
  17787. }
  17788. },
  17789. back: {
  17790. height: math.unit(5 + 2 / 12, "feet"),
  17791. weight: math.unit(110, "lb"),
  17792. name: "Back",
  17793. image: {
  17794. source: "./media/characters/desta/back.svg",
  17795. extra: 777 / 728,
  17796. bottom: 6 / 784
  17797. }
  17798. },
  17799. frontAlt: {
  17800. height: math.unit(5 + 2 / 12, "feet"),
  17801. weight: math.unit(110, "lb"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/desta/front-alt.svg",
  17805. extra: 1482 / 1417
  17806. }
  17807. },
  17808. side: {
  17809. height: math.unit(5 + 2 / 12, "feet"),
  17810. weight: math.unit(110, "lb"),
  17811. name: "Side",
  17812. image: {
  17813. source: "./media/characters/desta/side.svg",
  17814. extra: 2579 / 2491,
  17815. bottom: 0.053
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Micro",
  17822. height: math.unit(6, "inches")
  17823. },
  17824. {
  17825. name: "Normal",
  17826. height: math.unit(5 + 2 / 12, "feet"),
  17827. default: true
  17828. },
  17829. {
  17830. name: "Macro",
  17831. height: math.unit(62, "feet")
  17832. },
  17833. {
  17834. name: "Megamacro",
  17835. height: math.unit(1800, "feet")
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17841. {
  17842. front: {
  17843. height: math.unit(10, "feet"),
  17844. weight: math.unit(700, "lb"),
  17845. name: "Front",
  17846. image: {
  17847. source: "./media/characters/storm-alystar/front.svg",
  17848. extra: 2112 / 1898,
  17849. bottom: 0.034
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Micro",
  17856. height: math.unit(3.5, "inches")
  17857. },
  17858. {
  17859. name: "Normal",
  17860. height: math.unit(10, "feet"),
  17861. default: true
  17862. },
  17863. {
  17864. name: "Macro",
  17865. height: math.unit(400, "feet")
  17866. },
  17867. {
  17868. name: "Deific",
  17869. height: math.unit(60, "miles")
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(2.35, "meters"),
  17878. weight: math.unit(119, "kg"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/ilia/front.svg",
  17882. extra: 1285 / 1255,
  17883. bottom: 0.06
  17884. }
  17885. },
  17886. },
  17887. [
  17888. {
  17889. name: "Normal",
  17890. height: math.unit(2.35, "meters")
  17891. },
  17892. {
  17893. name: "Macro",
  17894. height: math.unit(140, "meters"),
  17895. default: true
  17896. },
  17897. {
  17898. name: "Megamacro",
  17899. height: math.unit(100, "miles")
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17905. {
  17906. front: {
  17907. height: math.unit(6 + 5 / 12, "feet"),
  17908. weight: math.unit(190, "lb"),
  17909. name: "Front",
  17910. image: {
  17911. source: "./media/characters/kingdead/front.svg",
  17912. extra: 1228 / 1177
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Micro",
  17919. height: math.unit(7, "inches")
  17920. },
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(6 + 5 / 12, "feet")
  17924. },
  17925. {
  17926. name: "Macro",
  17927. height: math.unit(150, "feet"),
  17928. default: true
  17929. },
  17930. {
  17931. name: "Megamacro",
  17932. height: math.unit(200, "miles")
  17933. },
  17934. ]
  17935. ))
  17936. characterMakers.push(() => makeCharacter(
  17937. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17938. {
  17939. front: {
  17940. height: math.unit(8, "feet"),
  17941. weight: math.unit(600, "lb"),
  17942. name: "Front",
  17943. image: {
  17944. source: "./media/characters/kyrehx/front.svg",
  17945. extra: 1195 / 1095,
  17946. bottom: 0.034
  17947. }
  17948. },
  17949. },
  17950. [
  17951. {
  17952. name: "Micro",
  17953. height: math.unit(2, "inches")
  17954. },
  17955. {
  17956. name: "Normal",
  17957. height: math.unit(8, "feet"),
  17958. default: true
  17959. },
  17960. {
  17961. name: "Macro",
  17962. height: math.unit(255, "feet")
  17963. },
  17964. ]
  17965. ))
  17966. characterMakers.push(() => makeCharacter(
  17967. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17968. {
  17969. front: {
  17970. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17971. weight: math.unit(184, "lb"),
  17972. name: "Front",
  17973. image: {
  17974. source: "./media/characters/xang/front.svg",
  17975. extra: 845 / 755
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17983. default: true
  17984. },
  17985. {
  17986. name: "Macro",
  17987. height: math.unit(0.935 * 146, "feet")
  17988. },
  17989. {
  17990. name: "Megamacro",
  17991. height: math.unit(0.935 * 3, "miles")
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17997. {
  17998. frontDressed: {
  17999. height: math.unit(5 + 7 / 12, "feet"),
  18000. weight: math.unit(140, "lb"),
  18001. name: "Front (Dressed)",
  18002. image: {
  18003. source: "./media/characters/doc-weardno/front-dressed.svg",
  18004. extra: 263 / 234
  18005. }
  18006. },
  18007. backDressed: {
  18008. height: math.unit(5 + 7 / 12, "feet"),
  18009. weight: math.unit(140, "lb"),
  18010. name: "Back (Dressed)",
  18011. image: {
  18012. source: "./media/characters/doc-weardno/back-dressed.svg",
  18013. extra: 266 / 238
  18014. }
  18015. },
  18016. front: {
  18017. height: math.unit(5 + 7 / 12, "feet"),
  18018. weight: math.unit(140, "lb"),
  18019. name: "Front",
  18020. image: {
  18021. source: "./media/characters/doc-weardno/front.svg",
  18022. extra: 254 / 233
  18023. }
  18024. },
  18025. },
  18026. [
  18027. {
  18028. name: "Micro",
  18029. height: math.unit(3, "inches")
  18030. },
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(5 + 7 / 12, "feet"),
  18034. default: true
  18035. },
  18036. {
  18037. name: "Macro",
  18038. height: math.unit(25, "feet")
  18039. },
  18040. {
  18041. name: "Megamacro",
  18042. height: math.unit(2, "miles")
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18048. {
  18049. front: {
  18050. height: math.unit(6 + 2 / 12, "feet"),
  18051. weight: math.unit(153, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/seth-whilst/front.svg",
  18055. bottom: 0.07
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Micro",
  18062. height: math.unit(5, "inches")
  18063. },
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(6 + 2 / 12, "feet"),
  18067. default: true
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18073. {
  18074. front: {
  18075. height: math.unit(3, "inches"),
  18076. weight: math.unit(8, "grams"),
  18077. name: "Front",
  18078. image: {
  18079. source: "./media/characters/pocket-jabari/front.svg",
  18080. extra: 1024 / 974,
  18081. bottom: 0.039
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Minimicro",
  18088. height: math.unit(8, "mm")
  18089. },
  18090. {
  18091. name: "Micro",
  18092. height: math.unit(3, "inches"),
  18093. default: true
  18094. },
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(3, "feet")
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18103. {
  18104. front: {
  18105. height: math.unit(15, "feet"),
  18106. weight: math.unit(3280, "lb"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/sapphy/front.svg",
  18110. extra: 671 / 577,
  18111. bottom: 0.085
  18112. }
  18113. },
  18114. back: {
  18115. height: math.unit(15, "feet"),
  18116. weight: math.unit(3280, "lb"),
  18117. name: "Back",
  18118. image: {
  18119. source: "./media/characters/sapphy/back.svg",
  18120. extra: 631 / 607,
  18121. bottom: 0.045
  18122. }
  18123. },
  18124. },
  18125. [
  18126. {
  18127. name: "Normal",
  18128. height: math.unit(15, "feet")
  18129. },
  18130. {
  18131. name: "Casual Macro",
  18132. height: math.unit(120, "feet")
  18133. },
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(2150, "feet"),
  18137. default: true
  18138. },
  18139. {
  18140. name: "Megamacro",
  18141. height: math.unit(8, "miles")
  18142. },
  18143. {
  18144. name: "Galaxy Mom",
  18145. height: math.unit(6, "megalightyears")
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18151. {
  18152. front: {
  18153. height: math.unit(6, "feet"),
  18154. weight: math.unit(170, "lb"),
  18155. name: "Front",
  18156. image: {
  18157. source: "./media/characters/kiro/front.svg",
  18158. extra: 1064 / 1012,
  18159. bottom: 0.052
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Micro",
  18166. height: math.unit(6, "inches")
  18167. },
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(6, "feet"),
  18171. default: true
  18172. },
  18173. {
  18174. name: "Macro",
  18175. height: math.unit(72, "feet")
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18181. {
  18182. front: {
  18183. height: math.unit(5 + 9 / 12, "feet"),
  18184. weight: math.unit(175, "lb"),
  18185. name: "Front",
  18186. image: {
  18187. source: "./media/characters/irishfox/front.svg",
  18188. extra: 1912 / 1680,
  18189. bottom: 0.02
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Nano",
  18196. height: math.unit(1, "mm")
  18197. },
  18198. {
  18199. name: "Micro",
  18200. height: math.unit(2, "inches")
  18201. },
  18202. {
  18203. name: "Normal",
  18204. height: math.unit(5 + 9 / 12, "feet"),
  18205. default: true
  18206. },
  18207. {
  18208. name: "Macro",
  18209. height: math.unit(45, "feet")
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18215. {
  18216. front: {
  18217. height: math.unit(6 + 1 / 12, "feet"),
  18218. weight: math.unit(150, "lb"),
  18219. name: "Front",
  18220. image: {
  18221. source: "./media/characters/aronai-sieyes/front.svg",
  18222. extra: 1556 / 1480,
  18223. bottom: 0.015
  18224. }
  18225. },
  18226. side: {
  18227. height: math.unit(6 + 1 / 12, "feet"),
  18228. weight: math.unit(150, "lb"),
  18229. name: "Side",
  18230. image: {
  18231. source: "./media/characters/aronai-sieyes/side.svg",
  18232. extra: 1433 / 1390,
  18233. bottom: 0.0393
  18234. }
  18235. },
  18236. back: {
  18237. height: math.unit(6 + 1 / 12, "feet"),
  18238. weight: math.unit(150, "lb"),
  18239. name: "Back",
  18240. image: {
  18241. source: "./media/characters/aronai-sieyes/back.svg",
  18242. extra: 1544 / 1494,
  18243. bottom: 0.02
  18244. }
  18245. },
  18246. frontClothed: {
  18247. height: math.unit(6 + 1 / 12, "feet"),
  18248. weight: math.unit(150, "lb"),
  18249. name: "Front (Clothed)",
  18250. image: {
  18251. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18252. extra: 1582 / 1527
  18253. }
  18254. },
  18255. feral: {
  18256. height: math.unit(18, "feet"),
  18257. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18258. name: "Feral",
  18259. image: {
  18260. source: "./media/characters/aronai-sieyes/feral.svg",
  18261. extra: 1530 / 1240,
  18262. bottom: 0.035
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Micro",
  18269. height: math.unit(2, "inches")
  18270. },
  18271. {
  18272. name: "Normal",
  18273. height: math.unit(6 + 1 / 12, "feet"),
  18274. default: true
  18275. }
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18280. {
  18281. front: {
  18282. height: math.unit(12, "feet"),
  18283. weight: math.unit(410, "kg"),
  18284. name: "Front",
  18285. image: {
  18286. source: "./media/characters/xuna/front.svg",
  18287. extra: 2184 / 1980
  18288. }
  18289. },
  18290. side: {
  18291. height: math.unit(12, "feet"),
  18292. weight: math.unit(410, "kg"),
  18293. name: "Side",
  18294. image: {
  18295. source: "./media/characters/xuna/side.svg",
  18296. extra: 2184 / 1980
  18297. }
  18298. },
  18299. back: {
  18300. height: math.unit(12, "feet"),
  18301. weight: math.unit(410, "kg"),
  18302. name: "Back",
  18303. image: {
  18304. source: "./media/characters/xuna/back.svg",
  18305. extra: 2184 / 1980
  18306. }
  18307. },
  18308. },
  18309. [
  18310. {
  18311. name: "Nano glow",
  18312. height: math.unit(10, "nm")
  18313. },
  18314. {
  18315. name: "Micro floof",
  18316. height: math.unit(0.3, "m")
  18317. },
  18318. {
  18319. name: "Huggable softy boi",
  18320. height: math.unit(3.6576, "m"),
  18321. default: true
  18322. },
  18323. {
  18324. name: "Admirable floof",
  18325. height: math.unit(80, "meters")
  18326. },
  18327. {
  18328. name: "Gentle macro",
  18329. height: math.unit(300, "meters")
  18330. },
  18331. {
  18332. name: "Very careful floof",
  18333. height: math.unit(3200, "meters")
  18334. },
  18335. {
  18336. name: "The mega floof",
  18337. height: math.unit(36000, "meters")
  18338. },
  18339. {
  18340. name: "Giga-fur-Wicker",
  18341. height: math.unit(4800000, "meters")
  18342. },
  18343. {
  18344. name: "Licky world",
  18345. height: math.unit(20000000, "meters")
  18346. },
  18347. {
  18348. name: "Floofy cyan sun",
  18349. height: math.unit(1500000000, "meters")
  18350. },
  18351. {
  18352. name: "Milky Wicker",
  18353. height: math.unit(1000000000000000000000, "meters")
  18354. },
  18355. {
  18356. name: "The observing Wicker",
  18357. height: math.unit(999999999999999999999999999, "meters")
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18363. {
  18364. front: {
  18365. height: math.unit(5 + 9 / 12, "feet"),
  18366. weight: math.unit(150, "lb"),
  18367. name: "Front",
  18368. image: {
  18369. source: "./media/characters/arokha-sieyes/front.svg",
  18370. extra: 1425 / 1284,
  18371. bottom: 0.05
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(5 + 9 / 12, "feet")
  18379. },
  18380. {
  18381. name: "Macro",
  18382. height: math.unit(30, "meters"),
  18383. default: true
  18384. },
  18385. ]
  18386. ))
  18387. characterMakers.push(() => makeCharacter(
  18388. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18389. {
  18390. front: {
  18391. height: math.unit(6, "feet"),
  18392. weight: math.unit(180, "lb"),
  18393. name: "Front",
  18394. image: {
  18395. source: "./media/characters/arokh-sieyes/front.svg",
  18396. extra: 1830 / 1769,
  18397. bottom: 0.01
  18398. }
  18399. },
  18400. },
  18401. [
  18402. {
  18403. name: "Normal",
  18404. height: math.unit(6, "feet")
  18405. },
  18406. {
  18407. name: "Macro",
  18408. height: math.unit(30, "meters"),
  18409. default: true
  18410. },
  18411. ]
  18412. ))
  18413. characterMakers.push(() => makeCharacter(
  18414. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18415. {
  18416. side: {
  18417. height: math.unit(13 + 1 / 12, "feet"),
  18418. weight: math.unit(8.5, "tonnes"),
  18419. name: "Side",
  18420. image: {
  18421. source: "./media/characters/goldeneye/side.svg",
  18422. extra: 1182 / 778,
  18423. bottom: 0.067
  18424. }
  18425. },
  18426. paw: {
  18427. height: math.unit(3.4, "feet"),
  18428. name: "Paw",
  18429. image: {
  18430. source: "./media/characters/goldeneye/paw.svg"
  18431. }
  18432. },
  18433. },
  18434. [
  18435. {
  18436. name: "Normal",
  18437. height: math.unit(13 + 1 / 12, "feet"),
  18438. default: true
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18444. {
  18445. front: {
  18446. height: math.unit(6 + 1 / 12, "feet"),
  18447. weight: math.unit(210, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/leonardo-lycheborne/front.svg",
  18451. extra: 390 / 365,
  18452. bottom: 0.032
  18453. }
  18454. },
  18455. side: {
  18456. height: math.unit(6 + 1 / 12, "feet"),
  18457. weight: math.unit(210, "lb"),
  18458. name: "Side",
  18459. image: {
  18460. source: "./media/characters/leonardo-lycheborne/side.svg",
  18461. extra: 390 / 365,
  18462. bottom: 0.005
  18463. }
  18464. },
  18465. back: {
  18466. height: math.unit(6 + 1 / 12, "feet"),
  18467. weight: math.unit(210, "lb"),
  18468. name: "Back",
  18469. image: {
  18470. source: "./media/characters/leonardo-lycheborne/back.svg",
  18471. extra: 392 / 366,
  18472. bottom: 0.01
  18473. }
  18474. },
  18475. hand: {
  18476. height: math.unit(1.08, "feet"),
  18477. name: "Hand",
  18478. image: {
  18479. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18480. }
  18481. },
  18482. foot: {
  18483. height: math.unit(1.32, "feet"),
  18484. name: "Foot",
  18485. image: {
  18486. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18487. }
  18488. },
  18489. were: {
  18490. height: math.unit(20, "feet"),
  18491. weight: math.unit(7800, "lb"),
  18492. name: "Were",
  18493. image: {
  18494. source: "./media/characters/leonardo-lycheborne/were.svg",
  18495. extra: 308 / 294,
  18496. bottom: 0.048
  18497. }
  18498. },
  18499. feral: {
  18500. height: math.unit(7.5, "feet"),
  18501. weight: math.unit(600, "lb"),
  18502. name: "Feral",
  18503. image: {
  18504. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18505. extra: 210 / 186,
  18506. bottom: 0.108
  18507. }
  18508. },
  18509. taur: {
  18510. height: math.unit(11, "feet"),
  18511. weight: math.unit(3300, "lb"),
  18512. name: "Taur",
  18513. image: {
  18514. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18515. extra: 320 / 303,
  18516. bottom: 0.025
  18517. }
  18518. },
  18519. barghest: {
  18520. height: math.unit(11, "feet"),
  18521. weight: math.unit(1300, "lb"),
  18522. name: "Barghest",
  18523. image: {
  18524. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18525. extra: 323 / 302,
  18526. bottom: 0.027
  18527. }
  18528. },
  18529. dick: {
  18530. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18531. name: "Dick",
  18532. image: {
  18533. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18534. }
  18535. },
  18536. dickWere: {
  18537. height: math.unit((20) / 3.8, "feet"),
  18538. name: "Dick (Were)",
  18539. image: {
  18540. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(6 + 1 / 12, "feet"),
  18548. default: true
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18554. {
  18555. front: {
  18556. height: math.unit(10, "feet"),
  18557. weight: math.unit(350, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/jet/front.svg",
  18561. extra: 2050 / 1980,
  18562. bottom: 0.013
  18563. }
  18564. },
  18565. back: {
  18566. height: math.unit(10, "feet"),
  18567. weight: math.unit(350, "lb"),
  18568. name: "Back",
  18569. image: {
  18570. source: "./media/characters/jet/back.svg",
  18571. extra: 2050 / 1980,
  18572. bottom: 0.013
  18573. }
  18574. },
  18575. },
  18576. [
  18577. {
  18578. name: "Micro",
  18579. height: math.unit(6, "inches")
  18580. },
  18581. {
  18582. name: "Normal",
  18583. height: math.unit(10, "feet"),
  18584. default: true
  18585. },
  18586. {
  18587. name: "Macro",
  18588. height: math.unit(100, "feet")
  18589. },
  18590. ]
  18591. ))
  18592. characterMakers.push(() => makeCharacter(
  18593. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18594. {
  18595. front: {
  18596. height: math.unit(15, "feet"),
  18597. weight: math.unit(2800, "lb"),
  18598. name: "Front",
  18599. image: {
  18600. source: "./media/characters/tanarath/front.svg",
  18601. extra: 2392 / 2220,
  18602. bottom: 0.03
  18603. }
  18604. },
  18605. back: {
  18606. height: math.unit(15, "feet"),
  18607. weight: math.unit(2800, "lb"),
  18608. name: "Back",
  18609. image: {
  18610. source: "./media/characters/tanarath/back.svg",
  18611. extra: 2392 / 2220,
  18612. bottom: 0.03
  18613. }
  18614. },
  18615. },
  18616. [
  18617. {
  18618. name: "Normal",
  18619. height: math.unit(15, "feet"),
  18620. default: true
  18621. },
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18626. {
  18627. front: {
  18628. height: math.unit(7 + 1 / 12, "feet"),
  18629. weight: math.unit(175, "lb"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/patty-cattybatty/front.svg",
  18633. extra: 908 / 874,
  18634. bottom: 0.025
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Micro",
  18641. height: math.unit(1, "inch")
  18642. },
  18643. {
  18644. name: "Normal",
  18645. height: math.unit(7 + 1 / 12, "feet")
  18646. },
  18647. {
  18648. name: "Mini Macro",
  18649. height: math.unit(155, "feet")
  18650. },
  18651. {
  18652. name: "Macro",
  18653. height: math.unit(1077, "feet")
  18654. },
  18655. {
  18656. name: "Mega Macro",
  18657. height: math.unit(47650, "feet"),
  18658. default: true
  18659. },
  18660. {
  18661. name: "Giga Macro",
  18662. height: math.unit(440, "miles")
  18663. },
  18664. {
  18665. name: "Tera Macro",
  18666. height: math.unit(8700, "miles")
  18667. },
  18668. {
  18669. name: "Planetary Macro",
  18670. height: math.unit(32700, "miles")
  18671. },
  18672. {
  18673. name: "Solar Macro",
  18674. height: math.unit(550000, "miles")
  18675. },
  18676. {
  18677. name: "Celestial Macro",
  18678. height: math.unit(2.5, "AU")
  18679. },
  18680. ]
  18681. ))
  18682. characterMakers.push(() => makeCharacter(
  18683. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18684. {
  18685. front: {
  18686. height: math.unit(4 + 5 / 12, "feet"),
  18687. weight: math.unit(90, "lb"),
  18688. name: "Front",
  18689. image: {
  18690. source: "./media/characters/cappu/front.svg",
  18691. extra: 1247 / 1152,
  18692. bottom: 0.012
  18693. }
  18694. },
  18695. },
  18696. [
  18697. {
  18698. name: "Normal",
  18699. height: math.unit(4 + 5 / 12, "feet"),
  18700. default: true
  18701. },
  18702. ]
  18703. ))
  18704. characterMakers.push(() => makeCharacter(
  18705. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18706. {
  18707. frontDressed: {
  18708. height: math.unit(70, "cm"),
  18709. weight: math.unit(6, "kg"),
  18710. name: "Front (Dressed)",
  18711. image: {
  18712. source: "./media/characters/sebi/front-dressed.svg",
  18713. extra: 713.5 / 686.5,
  18714. bottom: 0.003
  18715. }
  18716. },
  18717. front: {
  18718. height: math.unit(70, "cm"),
  18719. weight: math.unit(5, "kg"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/sebi/front.svg",
  18723. extra: 713.5 / 686.5,
  18724. bottom: 0.003
  18725. }
  18726. }
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(70, "cm"),
  18732. default: true
  18733. },
  18734. {
  18735. name: "Macro",
  18736. height: math.unit(8, "meters")
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(6, "feet"),
  18745. weight: math.unit(150, "lb"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/typhek/front.svg",
  18749. extra: 1948 / 1929,
  18750. bottom: 0.025
  18751. }
  18752. },
  18753. side: {
  18754. height: math.unit(6, "feet"),
  18755. weight: math.unit(150, "lb"),
  18756. name: "Side",
  18757. image: {
  18758. source: "./media/characters/typhek/side.svg",
  18759. extra: 2034 / 2010,
  18760. bottom: 0.003
  18761. }
  18762. },
  18763. back: {
  18764. height: math.unit(6, "feet"),
  18765. weight: math.unit(150, "lb"),
  18766. name: "Back",
  18767. image: {
  18768. source: "./media/characters/typhek/back.svg",
  18769. extra: 2005 / 1978,
  18770. bottom: 0.004
  18771. }
  18772. },
  18773. palm: {
  18774. height: math.unit(1.2, "feet"),
  18775. name: "Palm",
  18776. image: {
  18777. source: "./media/characters/typhek/palm.svg"
  18778. }
  18779. },
  18780. fist: {
  18781. height: math.unit(1.1, "feet"),
  18782. name: "Fist",
  18783. image: {
  18784. source: "./media/characters/typhek/fist.svg"
  18785. }
  18786. },
  18787. foot: {
  18788. height: math.unit(1.57, "feet"),
  18789. name: "Foot",
  18790. image: {
  18791. source: "./media/characters/typhek/foot.svg"
  18792. }
  18793. },
  18794. sole: {
  18795. height: math.unit(2.05, "feet"),
  18796. name: "Sole",
  18797. image: {
  18798. source: "./media/characters/typhek/sole.svg"
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Macro",
  18805. height: math.unit(40, "stories"),
  18806. default: true
  18807. },
  18808. {
  18809. name: "Megamacro",
  18810. height: math.unit(1, "mile")
  18811. },
  18812. {
  18813. name: "Gigamacro",
  18814. height: math.unit(4000, "solarradii")
  18815. },
  18816. {
  18817. name: "Universal",
  18818. height: math.unit(1.1, "universes")
  18819. }
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18824. {
  18825. side: {
  18826. height: math.unit(5 + 7 / 12, "feet"),
  18827. weight: math.unit(150, "lb"),
  18828. name: "Side",
  18829. image: {
  18830. source: "./media/characters/kassy/side.svg",
  18831. extra: 1280 / 1225,
  18832. bottom: 0.002
  18833. }
  18834. },
  18835. front: {
  18836. height: math.unit(5 + 7 / 12, "feet"),
  18837. weight: math.unit(150, "lb"),
  18838. name: "Front",
  18839. image: {
  18840. source: "./media/characters/kassy/front.svg",
  18841. extra: 1280 / 1225,
  18842. bottom: 0.025
  18843. }
  18844. },
  18845. back: {
  18846. height: math.unit(5 + 7 / 12, "feet"),
  18847. weight: math.unit(150, "lb"),
  18848. name: "Back",
  18849. image: {
  18850. source: "./media/characters/kassy/back.svg",
  18851. extra: 1280 / 1225,
  18852. bottom: 0.002
  18853. }
  18854. },
  18855. foot: {
  18856. height: math.unit(1.266, "feet"),
  18857. name: "Foot",
  18858. image: {
  18859. source: "./media/characters/kassy/foot.svg"
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(5 + 7 / 12, "feet")
  18867. },
  18868. {
  18869. name: "Macro",
  18870. height: math.unit(137, "feet"),
  18871. default: true
  18872. },
  18873. {
  18874. name: "Megamacro",
  18875. height: math.unit(1, "mile")
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(6 + 1 / 12, "feet"),
  18884. weight: math.unit(200, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/neil/front.svg",
  18888. extra: 1326 / 1250,
  18889. bottom: 0.023
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(6 + 1 / 12, "feet"),
  18897. default: true
  18898. },
  18899. {
  18900. name: "Macro",
  18901. height: math.unit(200, "feet")
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(5 + 9 / 12, "feet"),
  18910. weight: math.unit(190, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/atticus/front.svg",
  18914. extra: 2934 / 2785,
  18915. bottom: 0.025
  18916. }
  18917. },
  18918. },
  18919. [
  18920. {
  18921. name: "Normal",
  18922. height: math.unit(5 + 9 / 12, "feet"),
  18923. default: true
  18924. },
  18925. {
  18926. name: "Macro",
  18927. height: math.unit(180, "feet")
  18928. },
  18929. ]
  18930. ))
  18931. characterMakers.push(() => makeCharacter(
  18932. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18933. {
  18934. side: {
  18935. height: math.unit(9, "feet"),
  18936. weight: math.unit(650, "lb"),
  18937. name: "Side",
  18938. image: {
  18939. source: "./media/characters/milo/side.svg",
  18940. extra: 2644 / 2310,
  18941. bottom: 0.032
  18942. }
  18943. },
  18944. },
  18945. [
  18946. {
  18947. name: "Normal",
  18948. height: math.unit(9, "feet"),
  18949. default: true
  18950. },
  18951. {
  18952. name: "Macro",
  18953. height: math.unit(300, "feet")
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18959. {
  18960. side: {
  18961. height: math.unit(8, "meters"),
  18962. weight: math.unit(90000, "kg"),
  18963. name: "Side",
  18964. image: {
  18965. source: "./media/characters/ijzer/side.svg",
  18966. extra: 2756 / 1600,
  18967. bottom: 0.01
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Small",
  18974. height: math.unit(3, "meters")
  18975. },
  18976. {
  18977. name: "Normal",
  18978. height: math.unit(8, "meters"),
  18979. default: true
  18980. },
  18981. {
  18982. name: "Normal+",
  18983. height: math.unit(10, "meters")
  18984. },
  18985. {
  18986. name: "Bigger",
  18987. height: math.unit(24, "meters")
  18988. },
  18989. {
  18990. name: "Huge",
  18991. height: math.unit(80, "meters")
  18992. },
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18997. {
  18998. front: {
  18999. height: math.unit(6 + 2 / 12, "feet"),
  19000. weight: math.unit(153, "lb"),
  19001. name: "Front",
  19002. image: {
  19003. source: "./media/characters/luca-cervicum/front.svg",
  19004. extra: 370 / 327,
  19005. bottom: 0.015
  19006. }
  19007. },
  19008. back: {
  19009. height: math.unit(6 + 2 / 12, "feet"),
  19010. weight: math.unit(153, "lb"),
  19011. name: "Back",
  19012. image: {
  19013. source: "./media/characters/luca-cervicum/back.svg",
  19014. extra: 367 / 333,
  19015. bottom: 0.005
  19016. }
  19017. },
  19018. frontGear: {
  19019. height: math.unit(6 + 2 / 12, "feet"),
  19020. weight: math.unit(173, "lb"),
  19021. name: "Front (Gear)",
  19022. image: {
  19023. source: "./media/characters/luca-cervicum/front-gear.svg",
  19024. extra: 377 / 333,
  19025. bottom: 0.006
  19026. }
  19027. },
  19028. },
  19029. [
  19030. {
  19031. name: "Normal",
  19032. height: math.unit(6 + 2 / 12, "feet"),
  19033. default: true
  19034. },
  19035. ]
  19036. ))
  19037. characterMakers.push(() => makeCharacter(
  19038. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19039. {
  19040. front: {
  19041. height: math.unit(6 + 1 / 12, "feet"),
  19042. weight: math.unit(304, "lb"),
  19043. name: "Front",
  19044. image: {
  19045. source: "./media/characters/oliver/front.svg",
  19046. extra: 157 / 143,
  19047. bottom: 0.08
  19048. }
  19049. },
  19050. },
  19051. [
  19052. {
  19053. name: "Normal",
  19054. height: math.unit(6 + 1 / 12, "feet"),
  19055. default: true
  19056. },
  19057. ]
  19058. ))
  19059. characterMakers.push(() => makeCharacter(
  19060. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19061. {
  19062. front: {
  19063. height: math.unit(5 + 7 / 12, "feet"),
  19064. weight: math.unit(140, "lb"),
  19065. name: "Front",
  19066. image: {
  19067. source: "./media/characters/shane/front.svg",
  19068. extra: 304 / 289,
  19069. bottom: 0.005
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Normal",
  19076. height: math.unit(5 + 7 / 12, "feet"),
  19077. default: true
  19078. },
  19079. ]
  19080. ))
  19081. characterMakers.push(() => makeCharacter(
  19082. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19083. {
  19084. front: {
  19085. height: math.unit(5 + 9 / 12, "feet"),
  19086. weight: math.unit(178, "lb"),
  19087. name: "Front",
  19088. image: {
  19089. source: "./media/characters/shin/front.svg",
  19090. extra: 159 / 151,
  19091. bottom: 0.015
  19092. }
  19093. },
  19094. },
  19095. [
  19096. {
  19097. name: "Normal",
  19098. height: math.unit(5 + 9 / 12, "feet"),
  19099. default: true
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(5 + 10 / 12, "feet"),
  19108. weight: math.unit(168, "lb"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/xerxes/front.svg",
  19112. extra: 282 / 260,
  19113. bottom: 0.045
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(5 + 10 / 12, "feet"),
  19121. default: true
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(6 + 7 / 12, "feet"),
  19130. weight: math.unit(208, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/chaska/front.svg",
  19134. extra: 332 / 319,
  19135. bottom: 0.015
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Normal",
  19142. height: math.unit(6 + 7 / 12, "feet"),
  19143. default: true
  19144. },
  19145. ]
  19146. ))
  19147. characterMakers.push(() => makeCharacter(
  19148. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19149. {
  19150. front: {
  19151. height: math.unit(5 + 8 / 12, "feet"),
  19152. weight: math.unit(208, "lb"),
  19153. name: "Front",
  19154. image: {
  19155. source: "./media/characters/enuk/front.svg",
  19156. extra: 437 / 406,
  19157. bottom: 0.02
  19158. }
  19159. },
  19160. },
  19161. [
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(5 + 8 / 12, "feet"),
  19165. default: true
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(5 + 10 / 12, "feet"),
  19174. weight: math.unit(252, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/bruun/front.svg",
  19178. extra: 197 / 187,
  19179. bottom: 0.012
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(5 + 10 / 12, "feet"),
  19187. default: true
  19188. },
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19193. {
  19194. front: {
  19195. height: math.unit(6 + 10 / 12, "feet"),
  19196. weight: math.unit(255, "lb"),
  19197. name: "Front",
  19198. image: {
  19199. source: "./media/characters/alexeev/front.svg",
  19200. extra: 213 / 200,
  19201. bottom: 0.05
  19202. }
  19203. },
  19204. },
  19205. [
  19206. {
  19207. name: "Normal",
  19208. height: math.unit(6 + 10 / 12, "feet"),
  19209. default: true
  19210. },
  19211. ]
  19212. ))
  19213. characterMakers.push(() => makeCharacter(
  19214. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19215. {
  19216. front: {
  19217. height: math.unit(2 + 8 / 12, "feet"),
  19218. weight: math.unit(22, "lb"),
  19219. name: "Front",
  19220. image: {
  19221. source: "./media/characters/evelyn/front.svg",
  19222. extra: 208 / 180
  19223. }
  19224. },
  19225. },
  19226. [
  19227. {
  19228. name: "Normal",
  19229. height: math.unit(2 + 8 / 12, "feet"),
  19230. default: true
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(5 + 9 / 12, "feet"),
  19239. weight: math.unit(139, "lb"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/inca/front.svg",
  19243. extra: 294 / 291,
  19244. bottom: 0.03
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(5 + 9 / 12, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(5 + 1 / 12, "feet"),
  19261. weight: math.unit(84, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/magdalene/front.svg",
  19265. extra: 293 / 273
  19266. }
  19267. },
  19268. },
  19269. [
  19270. {
  19271. name: "Normal",
  19272. height: math.unit(5 + 1 / 12, "feet"),
  19273. default: true
  19274. },
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19279. {
  19280. front: {
  19281. height: math.unit(6 + 3 / 12, "feet"),
  19282. weight: math.unit(185, "lb"),
  19283. name: "Front",
  19284. image: {
  19285. source: "./media/characters/mera/front.svg",
  19286. extra: 291 / 277,
  19287. bottom: 0.03
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Normal",
  19294. height: math.unit(6 + 3 / 12, "feet"),
  19295. default: true
  19296. },
  19297. ]
  19298. ))
  19299. characterMakers.push(() => makeCharacter(
  19300. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19301. {
  19302. front: {
  19303. height: math.unit(6 + 7 / 12, "feet"),
  19304. weight: math.unit(160, "lb"),
  19305. name: "Front",
  19306. image: {
  19307. source: "./media/characters/ceres/front.svg",
  19308. extra: 1023 / 950,
  19309. bottom: 0.027
  19310. }
  19311. },
  19312. back: {
  19313. height: math.unit(6 + 7 / 12, "feet"),
  19314. weight: math.unit(160, "lb"),
  19315. name: "Back",
  19316. image: {
  19317. source: "./media/characters/ceres/back.svg",
  19318. extra: 1023 / 950
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Normal",
  19325. height: math.unit(6 + 7 / 12, "feet"),
  19326. default: true
  19327. },
  19328. ]
  19329. ))
  19330. characterMakers.push(() => makeCharacter(
  19331. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19332. {
  19333. front: {
  19334. height: math.unit(5 + 10 / 12, "feet"),
  19335. weight: math.unit(150, "lb"),
  19336. name: "Front",
  19337. image: {
  19338. source: "./media/characters/kris/front.svg",
  19339. extra: 885 / 803,
  19340. bottom: 0.03
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Normal",
  19347. height: math.unit(5 + 10 / 12, "feet"),
  19348. default: true
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19354. {
  19355. front: {
  19356. height: math.unit(7, "feet"),
  19357. weight: math.unit(120, "kg"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/taluthus/front.svg",
  19361. extra: 903 / 833,
  19362. bottom: 0.015
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(7, "feet"),
  19370. default: true
  19371. },
  19372. {
  19373. name: "Macro",
  19374. height: math.unit(300, "feet")
  19375. },
  19376. ]
  19377. ))
  19378. characterMakers.push(() => makeCharacter(
  19379. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19380. {
  19381. front: {
  19382. height: math.unit(5 + 9 / 12, "feet"),
  19383. weight: math.unit(145, "lb"),
  19384. name: "Front",
  19385. image: {
  19386. source: "./media/characters/dawn/front.svg",
  19387. extra: 2094 / 2016,
  19388. bottom: 0.025
  19389. }
  19390. },
  19391. back: {
  19392. height: math.unit(5 + 9 / 12, "feet"),
  19393. weight: math.unit(160, "lb"),
  19394. name: "Back",
  19395. image: {
  19396. source: "./media/characters/dawn/back.svg",
  19397. extra: 2112 / 2080,
  19398. bottom: 0.005
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(6 + 7 / 12, "feet"),
  19406. default: true
  19407. },
  19408. ]
  19409. ))
  19410. characterMakers.push(() => makeCharacter(
  19411. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19412. {
  19413. anthro: {
  19414. height: math.unit(8 + 3 / 12, "feet"),
  19415. weight: math.unit(450, "lb"),
  19416. name: "Anthro",
  19417. image: {
  19418. source: "./media/characters/arador/anthro.svg",
  19419. extra: 1835 / 1718,
  19420. bottom: 0.025
  19421. }
  19422. },
  19423. feral: {
  19424. height: math.unit(4, "feet"),
  19425. weight: math.unit(200, "lb"),
  19426. name: "Feral",
  19427. image: {
  19428. source: "./media/characters/arador/feral.svg",
  19429. extra: 1683 / 1514,
  19430. bottom: 0.07
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(8 + 3 / 12, "feet")
  19438. },
  19439. {
  19440. name: "Macro",
  19441. height: math.unit(82.5, "feet"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19448. {
  19449. front: {
  19450. height: math.unit(5 + 10 / 12, "feet"),
  19451. weight: math.unit(125, "lb"),
  19452. name: "Front",
  19453. image: {
  19454. source: "./media/characters/dharsi/front.svg",
  19455. extra: 716 / 630,
  19456. bottom: 0.035
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Nano",
  19463. height: math.unit(100, "nm")
  19464. },
  19465. {
  19466. name: "Micro",
  19467. height: math.unit(2, "inches")
  19468. },
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(5 + 10 / 12, "feet"),
  19472. default: true
  19473. },
  19474. {
  19475. name: "Macro",
  19476. height: math.unit(1000, "feet")
  19477. },
  19478. {
  19479. name: "Megamacro",
  19480. height: math.unit(10, "miles")
  19481. },
  19482. {
  19483. name: "Gigamacro",
  19484. height: math.unit(3000, "miles")
  19485. },
  19486. {
  19487. name: "Teramacro",
  19488. height: math.unit(500000, "miles")
  19489. },
  19490. {
  19491. name: "Teramacro+",
  19492. height: math.unit(30, "galaxies")
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(6, "feet"),
  19501. weight: math.unit(150, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/deathy/front.svg",
  19505. extra: 1552 / 1463,
  19506. bottom: 0.025
  19507. }
  19508. },
  19509. side: {
  19510. height: math.unit(6, "feet"),
  19511. weight: math.unit(150, "lb"),
  19512. name: "Side",
  19513. image: {
  19514. source: "./media/characters/deathy/side.svg",
  19515. extra: 1604 / 1455,
  19516. bottom: 0.025
  19517. }
  19518. },
  19519. back: {
  19520. height: math.unit(6, "feet"),
  19521. weight: math.unit(150, "lb"),
  19522. name: "Back",
  19523. image: {
  19524. source: "./media/characters/deathy/back.svg",
  19525. extra: 1580 / 1463,
  19526. bottom: 0.005
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Micro",
  19533. height: math.unit(5, "millimeters")
  19534. },
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(6 + 5 / 12, "feet"),
  19538. default: true
  19539. },
  19540. ]
  19541. ))
  19542. characterMakers.push(() => makeCharacter(
  19543. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19544. {
  19545. front: {
  19546. height: math.unit(16, "feet"),
  19547. weight: math.unit(4000, "lb"),
  19548. name: "Front",
  19549. image: {
  19550. source: "./media/characters/juniper/front.svg",
  19551. bottom: 0.04
  19552. }
  19553. },
  19554. },
  19555. [
  19556. {
  19557. name: "Normal",
  19558. height: math.unit(16, "feet"),
  19559. default: true
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19565. {
  19566. front: {
  19567. height: math.unit(6, "feet"),
  19568. weight: math.unit(150, "lb"),
  19569. name: "Front",
  19570. image: {
  19571. source: "./media/characters/hipster/front.svg",
  19572. extra: 1312 / 1209,
  19573. bottom: 0.025
  19574. }
  19575. },
  19576. back: {
  19577. height: math.unit(6, "feet"),
  19578. weight: math.unit(150, "lb"),
  19579. name: "Back",
  19580. image: {
  19581. source: "./media/characters/hipster/back.svg",
  19582. extra: 1281 / 1196,
  19583. bottom: 0.01
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Micro",
  19590. height: math.unit(1, "mm")
  19591. },
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(4, "inches"),
  19595. default: true
  19596. },
  19597. {
  19598. name: "Macro",
  19599. height: math.unit(500, "feet")
  19600. },
  19601. {
  19602. name: "Megamacro",
  19603. height: math.unit(1000, "miles")
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19609. {
  19610. front: {
  19611. height: math.unit(6, "feet"),
  19612. weight: math.unit(150, "lb"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/tendirmuldr/front.svg",
  19616. extra: 1878 / 1772,
  19617. bottom: 0.015
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Megamacro",
  19624. height: math.unit(1500, "miles"),
  19625. default: true
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19631. {
  19632. front: {
  19633. height: math.unit(14, "feet"),
  19634. weight: math.unit(12000, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/mort/front.svg",
  19638. extra: 365 / 318,
  19639. bottom: 0.01
  19640. }
  19641. },
  19642. side: {
  19643. height: math.unit(14, "feet"),
  19644. weight: math.unit(12000, "lb"),
  19645. name: "Side",
  19646. image: {
  19647. source: "./media/characters/mort/side.svg",
  19648. extra: 365 / 318,
  19649. bottom: 0.052
  19650. },
  19651. default: true
  19652. },
  19653. back: {
  19654. height: math.unit(14, "feet"),
  19655. weight: math.unit(12000, "lb"),
  19656. name: "Back",
  19657. image: {
  19658. source: "./media/characters/mort/back.svg",
  19659. extra: 371 / 332,
  19660. bottom: 0.18
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(14, "feet"),
  19668. default: true
  19669. },
  19670. ]
  19671. ))
  19672. characterMakers.push(() => makeCharacter(
  19673. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19674. {
  19675. front: {
  19676. height: math.unit(8, "feet"),
  19677. weight: math.unit(1, "ton"),
  19678. name: "Front",
  19679. image: {
  19680. source: "./media/characters/lycoa/front.svg",
  19681. extra: 1875 / 1789,
  19682. bottom: 0.022
  19683. }
  19684. },
  19685. back: {
  19686. height: math.unit(8, "feet"),
  19687. weight: math.unit(1, "ton"),
  19688. name: "Back",
  19689. image: {
  19690. source: "./media/characters/lycoa/back.svg",
  19691. extra: 1835 / 1781,
  19692. bottom: 0.03
  19693. }
  19694. },
  19695. head: {
  19696. height: math.unit(2.1, "feet"),
  19697. name: "Head",
  19698. image: {
  19699. source: "./media/characters/lycoa/head.svg"
  19700. }
  19701. },
  19702. tailmaw: {
  19703. height: math.unit(1.9, "feet"),
  19704. name: "Tailmaw",
  19705. image: {
  19706. source: "./media/characters/lycoa/tailmaw.svg"
  19707. }
  19708. },
  19709. tentacles: {
  19710. height: math.unit(2.1, "feet"),
  19711. name: "Tentacles",
  19712. image: {
  19713. source: "./media/characters/lycoa/tentacles.svg"
  19714. }
  19715. },
  19716. dick: {
  19717. height: math.unit(1.73, "feet"),
  19718. name: "Dick",
  19719. image: {
  19720. source: "./media/characters/lycoa/dick.svg"
  19721. }
  19722. },
  19723. },
  19724. [
  19725. {
  19726. name: "Normal",
  19727. height: math.unit(8, "feet"),
  19728. default: true
  19729. },
  19730. {
  19731. name: "Macro",
  19732. height: math.unit(30, "feet")
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19738. {
  19739. front: {
  19740. height: math.unit(4 + 2 / 12, "feet"),
  19741. weight: math.unit(70, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/naldara/front.svg",
  19745. extra: 841 / 720,
  19746. bottom: 0.04
  19747. }
  19748. },
  19749. naga: {
  19750. height: math.unit(23, "feet"),
  19751. weight: math.unit(15000, "kg"),
  19752. name: "Naga",
  19753. image: {
  19754. source: "./media/characters/naldara/naga.svg",
  19755. extra: 3290 / 2959,
  19756. bottom: 124 / 3432
  19757. }
  19758. },
  19759. },
  19760. [
  19761. {
  19762. name: "Normal",
  19763. height: math.unit(4 + 2 / 12, "feet"),
  19764. default: true
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19770. {
  19771. front: {
  19772. height: math.unit(13 + 7 / 12, "feet"),
  19773. weight: math.unit(1500, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/briar/front.svg",
  19777. extra: 626 / 596,
  19778. bottom: 0.08
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(13 + 7 / 12, "feet"),
  19786. default: true
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19792. {
  19793. side: {
  19794. height: math.unit(10, "feet"),
  19795. weight: math.unit(500, "lb"),
  19796. name: "Side",
  19797. image: {
  19798. source: "./media/characters/vanguard/side.svg",
  19799. extra: 502 / 425,
  19800. bottom: 0.087
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(10, "feet"),
  19808. default: true
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19814. {
  19815. front: {
  19816. height: math.unit(7.5, "feet"),
  19817. weight: math.unit(2, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/artemis/front.svg",
  19821. extra: 1192 / 1075,
  19822. bottom: 0.07
  19823. }
  19824. },
  19825. frontNsfw: {
  19826. height: math.unit(7.5, "feet"),
  19827. weight: math.unit(2, "lb"),
  19828. name: "Front (NSFW)",
  19829. image: {
  19830. source: "./media/characters/artemis/front-nsfw.svg",
  19831. extra: 1192 / 1075,
  19832. bottom: 0.07
  19833. }
  19834. },
  19835. frontNsfwer: {
  19836. height: math.unit(7.5, "feet"),
  19837. weight: math.unit(2, "lb"),
  19838. name: "Front (NSFW-er)",
  19839. image: {
  19840. source: "./media/characters/artemis/front-nsfwer.svg",
  19841. extra: 1192 / 1075,
  19842. bottom: 0.07
  19843. }
  19844. },
  19845. side: {
  19846. height: math.unit(7.5, "feet"),
  19847. weight: math.unit(2, "lb"),
  19848. name: "Side",
  19849. image: {
  19850. source: "./media/characters/artemis/side.svg",
  19851. extra: 1192 / 1075,
  19852. bottom: 0.07
  19853. }
  19854. },
  19855. sideNsfw: {
  19856. height: math.unit(7.5, "feet"),
  19857. weight: math.unit(2, "lb"),
  19858. name: "Side (NSFW)",
  19859. image: {
  19860. source: "./media/characters/artemis/side-nsfw.svg",
  19861. extra: 1192 / 1075,
  19862. bottom: 0.07
  19863. }
  19864. },
  19865. sideNsfwer: {
  19866. height: math.unit(7.5, "feet"),
  19867. weight: math.unit(2, "lb"),
  19868. name: "Side (NSFW-er)",
  19869. image: {
  19870. source: "./media/characters/artemis/side-nsfwer.svg",
  19871. extra: 1192 / 1075,
  19872. bottom: 0.07
  19873. }
  19874. },
  19875. maw: {
  19876. height: math.unit(1.1, "feet"),
  19877. name: "Maw",
  19878. image: {
  19879. source: "./media/characters/artemis/maw.svg"
  19880. }
  19881. },
  19882. stomach: {
  19883. height: math.unit(0.95, "feet"),
  19884. name: "Stomach",
  19885. image: {
  19886. source: "./media/characters/artemis/stomach.svg"
  19887. }
  19888. },
  19889. dickCanine: {
  19890. height: math.unit(1, "feet"),
  19891. name: "Dick (Canine)",
  19892. image: {
  19893. source: "./media/characters/artemis/dick-canine.svg"
  19894. }
  19895. },
  19896. dickEquine: {
  19897. height: math.unit(0.85, "feet"),
  19898. name: "Dick (Equine)",
  19899. image: {
  19900. source: "./media/characters/artemis/dick-equine.svg"
  19901. }
  19902. },
  19903. dickExotic: {
  19904. height: math.unit(0.85, "feet"),
  19905. name: "Dick (Exotic)",
  19906. image: {
  19907. source: "./media/characters/artemis/dick-exotic.svg"
  19908. }
  19909. },
  19910. },
  19911. [
  19912. {
  19913. name: "Normal",
  19914. height: math.unit(7.5, "feet"),
  19915. default: true
  19916. },
  19917. {
  19918. name: "Enlarged",
  19919. height: math.unit(12, "feet")
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19925. {
  19926. front: {
  19927. height: math.unit(5 + 3 / 12, "feet"),
  19928. weight: math.unit(160, "lb"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/kira/front.svg",
  19932. extra: 906 / 786,
  19933. bottom: 0.01
  19934. }
  19935. },
  19936. back: {
  19937. height: math.unit(5 + 3 / 12, "feet"),
  19938. weight: math.unit(160, "lb"),
  19939. name: "Back",
  19940. image: {
  19941. source: "./media/characters/kira/back.svg",
  19942. extra: 882 / 757,
  19943. bottom: 0.005
  19944. }
  19945. },
  19946. frontDressed: {
  19947. height: math.unit(5 + 3 / 12, "feet"),
  19948. weight: math.unit(160, "lb"),
  19949. name: "Front (Dressed)",
  19950. image: {
  19951. source: "./media/characters/kira/front-dressed.svg",
  19952. extra: 906 / 786,
  19953. bottom: 0.01
  19954. }
  19955. },
  19956. beans: {
  19957. height: math.unit(0.92, "feet"),
  19958. name: "Beans",
  19959. image: {
  19960. source: "./media/characters/kira/beans.svg"
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(5 + 3 / 12, "feet"),
  19968. default: true
  19969. },
  19970. ]
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19974. {
  19975. front: {
  19976. height: math.unit(5 + 4 / 12, "feet"),
  19977. weight: math.unit(145, "lb"),
  19978. name: "Front",
  19979. image: {
  19980. source: "./media/characters/scramble/front.svg",
  19981. extra: 763 / 727,
  19982. bottom: 0.05
  19983. }
  19984. },
  19985. back: {
  19986. height: math.unit(5 + 4 / 12, "feet"),
  19987. weight: math.unit(145, "lb"),
  19988. name: "Back",
  19989. image: {
  19990. source: "./media/characters/scramble/back.svg",
  19991. extra: 826 / 737,
  19992. bottom: 0.002
  19993. }
  19994. },
  19995. },
  19996. [
  19997. {
  19998. name: "Normal",
  19999. height: math.unit(5 + 4 / 12, "feet"),
  20000. default: true
  20001. },
  20002. ]
  20003. ))
  20004. characterMakers.push(() => makeCharacter(
  20005. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20006. {
  20007. side: {
  20008. height: math.unit(6 + 2 / 12, "feet"),
  20009. weight: math.unit(190, "lb"),
  20010. name: "Side",
  20011. image: {
  20012. source: "./media/characters/biscuit/side.svg",
  20013. extra: 858 / 791,
  20014. bottom: 0.044
  20015. }
  20016. },
  20017. },
  20018. [
  20019. {
  20020. name: "Normal",
  20021. height: math.unit(6 + 2 / 12, "feet"),
  20022. default: true
  20023. },
  20024. ]
  20025. ))
  20026. characterMakers.push(() => makeCharacter(
  20027. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20028. {
  20029. front: {
  20030. height: math.unit(5 + 2 / 12, "feet"),
  20031. weight: math.unit(120, "lb"),
  20032. name: "Front",
  20033. image: {
  20034. source: "./media/characters/poffin/front.svg",
  20035. extra: 786 / 680,
  20036. bottom: 0.005
  20037. }
  20038. },
  20039. },
  20040. [
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(5 + 2 / 12, "feet"),
  20044. default: true
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20050. {
  20051. front: {
  20052. height: math.unit(6 + 3 / 12, "feet"),
  20053. weight: math.unit(519, "lb"),
  20054. name: "Front",
  20055. image: {
  20056. source: "./media/characters/dhari/front.svg",
  20057. extra: 1048 / 946,
  20058. bottom: 0.015
  20059. }
  20060. },
  20061. back: {
  20062. height: math.unit(6 + 3 / 12, "feet"),
  20063. weight: math.unit(519, "lb"),
  20064. name: "Back",
  20065. image: {
  20066. source: "./media/characters/dhari/back.svg",
  20067. extra: 1048 / 931,
  20068. bottom: 0.005
  20069. }
  20070. },
  20071. frontDressed: {
  20072. height: math.unit(6 + 3 / 12, "feet"),
  20073. weight: math.unit(519, "lb"),
  20074. name: "Front (Dressed)",
  20075. image: {
  20076. source: "./media/characters/dhari/front-dressed.svg",
  20077. extra: 1713 / 1546,
  20078. bottom: 0.02
  20079. }
  20080. },
  20081. backDressed: {
  20082. height: math.unit(6 + 3 / 12, "feet"),
  20083. weight: math.unit(519, "lb"),
  20084. name: "Back (Dressed)",
  20085. image: {
  20086. source: "./media/characters/dhari/back-dressed.svg",
  20087. extra: 1699 / 1537,
  20088. bottom: 0.01
  20089. }
  20090. },
  20091. maw: {
  20092. height: math.unit(0.95, "feet"),
  20093. name: "Maw",
  20094. image: {
  20095. source: "./media/characters/dhari/maw.svg"
  20096. }
  20097. },
  20098. wereFront: {
  20099. height: math.unit(12 + 8 / 12, "feet"),
  20100. weight: math.unit(4000, "lb"),
  20101. name: "Front (Were)",
  20102. image: {
  20103. source: "./media/characters/dhari/were-front.svg",
  20104. extra: 1065 / 969,
  20105. bottom: 0.015
  20106. }
  20107. },
  20108. wereBack: {
  20109. height: math.unit(12 + 8 / 12, "feet"),
  20110. weight: math.unit(4000, "lb"),
  20111. name: "Back (Were)",
  20112. image: {
  20113. source: "./media/characters/dhari/were-back.svg",
  20114. extra: 1065 / 969,
  20115. bottom: 0.012
  20116. }
  20117. },
  20118. wereMaw: {
  20119. height: math.unit(0.625, "meters"),
  20120. name: "Maw (Were)",
  20121. image: {
  20122. source: "./media/characters/dhari/were-maw.svg"
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(6 + 3 / 12, "feet"),
  20130. default: true
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20136. {
  20137. anthro: {
  20138. height: math.unit(5 + 7 / 12, "feet"),
  20139. weight: math.unit(175, "lb"),
  20140. name: "Anthro",
  20141. image: {
  20142. source: "./media/characters/rena-dyne/anthro.svg",
  20143. extra: 1849 / 1785,
  20144. bottom: 0.005
  20145. }
  20146. },
  20147. taur: {
  20148. height: math.unit(15 + 6 / 12, "feet"),
  20149. weight: math.unit(8000, "lb"),
  20150. name: "Taur",
  20151. image: {
  20152. source: "./media/characters/rena-dyne/taur.svg",
  20153. extra: 2315 / 2234,
  20154. bottom: 0.033
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(5 + 7 / 12, "feet"),
  20162. default: true
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20168. {
  20169. front: {
  20170. height: math.unit(8, "feet"),
  20171. weight: math.unit(600, "lb"),
  20172. name: "Front",
  20173. image: {
  20174. source: "./media/characters/weremeep/front.svg",
  20175. extra: 967 / 862,
  20176. bottom: 0.01
  20177. }
  20178. },
  20179. },
  20180. [
  20181. {
  20182. name: "Normal",
  20183. height: math.unit(8, "feet"),
  20184. default: true
  20185. },
  20186. {
  20187. name: "Lorg",
  20188. height: math.unit(12, "feet")
  20189. },
  20190. {
  20191. name: "Oh Lawd She Comin'",
  20192. height: math.unit(20, "feet")
  20193. },
  20194. ]
  20195. ))
  20196. characterMakers.push(() => makeCharacter(
  20197. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20198. {
  20199. front: {
  20200. height: math.unit(4, "feet"),
  20201. weight: math.unit(90, "lb"),
  20202. name: "Front",
  20203. image: {
  20204. source: "./media/characters/reza/front.svg",
  20205. extra: 1183 / 1111,
  20206. bottom: 0.017
  20207. }
  20208. },
  20209. back: {
  20210. height: math.unit(4, "feet"),
  20211. weight: math.unit(90, "lb"),
  20212. name: "Back",
  20213. image: {
  20214. source: "./media/characters/reza/back.svg",
  20215. extra: 1183 / 1111,
  20216. bottom: 0.01
  20217. }
  20218. },
  20219. drake: {
  20220. height: math.unit(30, "feet"),
  20221. weight: math.unit(246960, "lb"),
  20222. name: "Drake",
  20223. image: {
  20224. source: "./media/characters/reza/drake.svg",
  20225. extra: 2350 / 2024,
  20226. bottom: 60.7 / 2403
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Normal",
  20233. height: math.unit(4, "feet"),
  20234. default: true
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20240. {
  20241. side: {
  20242. height: math.unit(15, "feet"),
  20243. weight: math.unit(14, "tons"),
  20244. name: "Side",
  20245. image: {
  20246. source: "./media/characters/athea/side.svg",
  20247. extra: 960 / 540,
  20248. bottom: 0.003
  20249. }
  20250. },
  20251. sitting: {
  20252. height: math.unit(6 * 2.85, "feet"),
  20253. weight: math.unit(14, "tons"),
  20254. name: "Sitting",
  20255. image: {
  20256. source: "./media/characters/athea/sitting.svg",
  20257. extra: 621 / 581,
  20258. bottom: 0.075
  20259. }
  20260. },
  20261. maw: {
  20262. height: math.unit(7.59498031496063, "feet"),
  20263. name: "Maw",
  20264. image: {
  20265. source: "./media/characters/athea/maw.svg"
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Lap Cat",
  20272. height: math.unit(2.5, "feet")
  20273. },
  20274. {
  20275. name: "Minimacro",
  20276. height: math.unit(15, "feet"),
  20277. default: true
  20278. },
  20279. {
  20280. name: "Macro",
  20281. height: math.unit(120, "feet")
  20282. },
  20283. {
  20284. name: "Macro+",
  20285. height: math.unit(640, "feet")
  20286. },
  20287. {
  20288. name: "Colossus",
  20289. height: math.unit(2.2, "miles")
  20290. },
  20291. ]
  20292. ))
  20293. characterMakers.push(() => makeCharacter(
  20294. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20295. {
  20296. front: {
  20297. height: math.unit(8 + 8 / 12, "feet"),
  20298. weight: math.unit(130, "kg"),
  20299. name: "Front",
  20300. image: {
  20301. source: "./media/characters/seroko/front.svg",
  20302. extra: 1385 / 1280,
  20303. bottom: 0.025
  20304. }
  20305. },
  20306. back: {
  20307. height: math.unit(8 + 8 / 12, "feet"),
  20308. weight: math.unit(130, "kg"),
  20309. name: "Back",
  20310. image: {
  20311. source: "./media/characters/seroko/back.svg",
  20312. extra: 1369 / 1238,
  20313. bottom: 0.018
  20314. }
  20315. },
  20316. frontDressed: {
  20317. height: math.unit(8 + 8 / 12, "feet"),
  20318. weight: math.unit(130, "kg"),
  20319. name: "Front (Dressed)",
  20320. image: {
  20321. source: "./media/characters/seroko/front-dressed.svg",
  20322. extra: 1366 / 1275,
  20323. bottom: 0.03
  20324. }
  20325. },
  20326. },
  20327. [
  20328. {
  20329. name: "Normal",
  20330. height: math.unit(8 + 8 / 12, "feet"),
  20331. default: true
  20332. },
  20333. ]
  20334. ))
  20335. characterMakers.push(() => makeCharacter(
  20336. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20337. {
  20338. front: {
  20339. height: math.unit(5.5, "feet"),
  20340. weight: math.unit(160, "lb"),
  20341. name: "Front",
  20342. image: {
  20343. source: "./media/characters/quatzi/front.svg",
  20344. extra: 2346 / 2242,
  20345. bottom: 0.015
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(5.5, "feet"),
  20353. default: true
  20354. },
  20355. {
  20356. name: "Big",
  20357. height: math.unit(7.7, "feet")
  20358. },
  20359. ]
  20360. ))
  20361. characterMakers.push(() => makeCharacter(
  20362. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20363. {
  20364. front: {
  20365. height: math.unit(5 + 11 / 12, "feet"),
  20366. weight: math.unit(180, "lb"),
  20367. name: "Front",
  20368. image: {
  20369. source: "./media/characters/sen/front.svg",
  20370. extra: 1321 / 1254,
  20371. bottom: 0.015
  20372. }
  20373. },
  20374. side: {
  20375. height: math.unit(5 + 11 / 12, "feet"),
  20376. weight: math.unit(180, "lb"),
  20377. name: "Side",
  20378. image: {
  20379. source: "./media/characters/sen/side.svg",
  20380. extra: 1321 / 1254,
  20381. bottom: 0.007
  20382. }
  20383. },
  20384. back: {
  20385. height: math.unit(5 + 11 / 12, "feet"),
  20386. weight: math.unit(180, "lb"),
  20387. name: "Back",
  20388. image: {
  20389. source: "./media/characters/sen/back.svg",
  20390. extra: 1321 / 1254
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(5 + 11 / 12, "feet"),
  20398. default: true
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(166.6, "cm"),
  20407. weight: math.unit(66.6, "kg"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/fruity/front.svg",
  20411. extra: 1510 / 1386,
  20412. bottom: 0.04
  20413. }
  20414. },
  20415. back: {
  20416. height: math.unit(166.6, "cm"),
  20417. weight: math.unit(66.6, "lb"),
  20418. name: "Back",
  20419. image: {
  20420. source: "./media/characters/fruity/back.svg",
  20421. extra: 1563 / 1435,
  20422. bottom: 0.005
  20423. }
  20424. },
  20425. },
  20426. [
  20427. {
  20428. name: "Normal",
  20429. height: math.unit(166.6, "cm"),
  20430. default: true
  20431. },
  20432. {
  20433. name: "Demonic",
  20434. height: math.unit(166.6, "feet")
  20435. },
  20436. ]
  20437. ))
  20438. characterMakers.push(() => makeCharacter(
  20439. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20440. {
  20441. side: {
  20442. height: math.unit(10, "feet"),
  20443. weight: math.unit(500, "lb"),
  20444. name: "Side",
  20445. image: {
  20446. source: "./media/characters/zost/side.svg",
  20447. extra: 966 / 880,
  20448. bottom: 0.075
  20449. }
  20450. },
  20451. mawFront: {
  20452. height: math.unit(1.08, "meters"),
  20453. name: "Maw (Front)",
  20454. image: {
  20455. source: "./media/characters/zost/maw-front.svg"
  20456. }
  20457. },
  20458. mawSide: {
  20459. height: math.unit(2.66, "feet"),
  20460. name: "Maw (Side)",
  20461. image: {
  20462. source: "./media/characters/zost/maw-side.svg"
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(10, "feet"),
  20470. default: true
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20476. {
  20477. front: {
  20478. height: math.unit(5 + 4 / 12, "feet"),
  20479. weight: math.unit(120, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/luci/front.svg",
  20483. extra: 1985 / 1884,
  20484. bottom: 0.04
  20485. }
  20486. },
  20487. back: {
  20488. height: math.unit(5 + 4 / 12, "feet"),
  20489. weight: math.unit(120, "lb"),
  20490. name: "Back",
  20491. image: {
  20492. source: "./media/characters/luci/back.svg",
  20493. extra: 1892 / 1791,
  20494. bottom: 0.002
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(5 + 4 / 12, "feet"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(1500, "feet"),
  20511. weight: math.unit(3.8e6, "tons"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/2th/front.svg",
  20515. extra: 3489 / 3350,
  20516. bottom: 0.1
  20517. }
  20518. },
  20519. foot: {
  20520. height: math.unit(461, "feet"),
  20521. name: "Foot",
  20522. image: {
  20523. source: "./media/characters/2th/foot.svg"
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "\"Micro\"",
  20530. height: math.unit(15 + 7 / 12, "feet")
  20531. },
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(1500, "feet"),
  20535. default: true
  20536. },
  20537. {
  20538. name: "Macro",
  20539. height: math.unit(5000, "feet")
  20540. },
  20541. {
  20542. name: "Megamacro",
  20543. height: math.unit(15, "miles")
  20544. },
  20545. {
  20546. name: "Gigamacro",
  20547. height: math.unit(4000, "miles")
  20548. },
  20549. {
  20550. name: "Galactic",
  20551. height: math.unit(50, "AU")
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(5 + 6 / 12, "feet"),
  20560. weight: math.unit(220, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/amethyst/front.svg",
  20564. extra: 2078 / 2040,
  20565. bottom: 0.045
  20566. }
  20567. },
  20568. back: {
  20569. height: math.unit(5 + 6 / 12, "feet"),
  20570. weight: math.unit(220, "lb"),
  20571. name: "Back",
  20572. image: {
  20573. source: "./media/characters/amethyst/back.svg",
  20574. extra: 2021 / 1989,
  20575. bottom: 0.02
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(5 + 6 / 12, "feet"),
  20583. default: true
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(4 + 11 / 12, "feet"),
  20592. weight: math.unit(120, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/yumi-akiyama/front.svg",
  20596. extra: 1327 / 1235,
  20597. bottom: 0.02
  20598. }
  20599. },
  20600. back: {
  20601. height: math.unit(4 + 11 / 12, "feet"),
  20602. weight: math.unit(120, "lb"),
  20603. name: "Back",
  20604. image: {
  20605. source: "./media/characters/yumi-akiyama/back.svg",
  20606. extra: 1287 / 1245,
  20607. bottom: 0.002
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Galactic",
  20614. height: math.unit(50, "galaxies"),
  20615. default: true
  20616. },
  20617. {
  20618. name: "Universal",
  20619. height: math.unit(100, "universes")
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20625. {
  20626. front: {
  20627. height: math.unit(8, "feet"),
  20628. weight: math.unit(500, "lb"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/rifter-yrmori/front.svg",
  20632. extra: 1180 / 1125,
  20633. bottom: 0.02
  20634. }
  20635. },
  20636. back: {
  20637. height: math.unit(8, "feet"),
  20638. weight: math.unit(500, "lb"),
  20639. name: "Back",
  20640. image: {
  20641. source: "./media/characters/rifter-yrmori/back.svg",
  20642. extra: 1190 / 1145,
  20643. bottom: 0.001
  20644. }
  20645. },
  20646. wings: {
  20647. height: math.unit(7.75, "feet"),
  20648. weight: math.unit(500, "lb"),
  20649. name: "Wings",
  20650. image: {
  20651. source: "./media/characters/rifter-yrmori/wings.svg",
  20652. extra: 1357 / 1285
  20653. }
  20654. },
  20655. maw: {
  20656. height: math.unit(0.8, "feet"),
  20657. name: "Maw",
  20658. image: {
  20659. source: "./media/characters/rifter-yrmori/maw.svg"
  20660. }
  20661. },
  20662. mawfront: {
  20663. height: math.unit(1.45, "feet"),
  20664. name: "Maw (Front)",
  20665. image: {
  20666. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(8, "feet"),
  20674. default: true
  20675. },
  20676. {
  20677. name: "Macro",
  20678. height: math.unit(42, "meters")
  20679. },
  20680. ]
  20681. ))
  20682. characterMakers.push(() => makeCharacter(
  20683. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20684. {
  20685. were: {
  20686. height: math.unit(25 + 6 / 12, "feet"),
  20687. weight: math.unit(10000, "lb"),
  20688. name: "Were",
  20689. image: {
  20690. source: "./media/characters/tahajin/were.svg",
  20691. extra: 801 / 770,
  20692. bottom: 0.042
  20693. }
  20694. },
  20695. aquatic: {
  20696. height: math.unit(6 + 4 / 12, "feet"),
  20697. weight: math.unit(160, "lb"),
  20698. name: "Aquatic",
  20699. image: {
  20700. source: "./media/characters/tahajin/aquatic.svg",
  20701. extra: 572 / 542,
  20702. bottom: 0.04
  20703. }
  20704. },
  20705. chow: {
  20706. height: math.unit(8 + 11 / 12, "feet"),
  20707. weight: math.unit(450, "lb"),
  20708. name: "Chow",
  20709. image: {
  20710. source: "./media/characters/tahajin/chow.svg",
  20711. extra: 660 / 640,
  20712. bottom: 0.015
  20713. }
  20714. },
  20715. demiNaga: {
  20716. height: math.unit(6 + 8 / 12, "feet"),
  20717. weight: math.unit(300, "lb"),
  20718. name: "Demi Naga",
  20719. image: {
  20720. source: "./media/characters/tahajin/demi-naga.svg",
  20721. extra: 643 / 615,
  20722. bottom: 0.1
  20723. }
  20724. },
  20725. data: {
  20726. height: math.unit(5, "inches"),
  20727. weight: math.unit(0.1, "lb"),
  20728. name: "Data",
  20729. image: {
  20730. source: "./media/characters/tahajin/data.svg"
  20731. }
  20732. },
  20733. fluu: {
  20734. height: math.unit(5 + 7 / 12, "feet"),
  20735. weight: math.unit(140, "lb"),
  20736. name: "Fluu",
  20737. image: {
  20738. source: "./media/characters/tahajin/fluu.svg",
  20739. extra: 628 / 592,
  20740. bottom: 0.02
  20741. }
  20742. },
  20743. starWarrior: {
  20744. height: math.unit(4 + 5 / 12, "feet"),
  20745. weight: math.unit(50, "lb"),
  20746. name: "Star Warrior",
  20747. image: {
  20748. source: "./media/characters/tahajin/star-warrior.svg"
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Normal",
  20755. height: math.unit(25 + 6 / 12, "feet"),
  20756. default: true
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20762. {
  20763. front: {
  20764. height: math.unit(8, "feet"),
  20765. weight: math.unit(350, "lb"),
  20766. name: "Front",
  20767. image: {
  20768. source: "./media/characters/gabira/front.svg",
  20769. extra: 608 / 580,
  20770. bottom: 0.03
  20771. }
  20772. },
  20773. back: {
  20774. height: math.unit(8, "feet"),
  20775. weight: math.unit(350, "lb"),
  20776. name: "Back",
  20777. image: {
  20778. source: "./media/characters/gabira/back.svg",
  20779. extra: 608 / 580,
  20780. bottom: 0.03
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Normal",
  20787. height: math.unit(8, "feet"),
  20788. default: true
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20794. {
  20795. front: {
  20796. height: math.unit(5 + 3 / 12, "feet"),
  20797. weight: math.unit(137, "lb"),
  20798. name: "Front",
  20799. image: {
  20800. source: "./media/characters/sasha-katraine/front.svg",
  20801. bottom: 0.045
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Micro",
  20808. height: math.unit(5, "inches")
  20809. },
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(5 + 3 / 12, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20819. {
  20820. side: {
  20821. height: math.unit(4, "inches"),
  20822. weight: math.unit(200, "grams"),
  20823. name: "Side",
  20824. image: {
  20825. source: "./media/characters/der/side.svg",
  20826. extra: 719 / 400,
  20827. bottom: 30.6 / 749.9187
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "Micro",
  20834. height: math.unit(4, "inches"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20841. {
  20842. side: {
  20843. height: math.unit(30, "meters"),
  20844. weight: math.unit(700, "tonnes"),
  20845. name: "Side",
  20846. image: {
  20847. source: "./media/characters/fixerdragon/side.svg",
  20848. extra: (1293.0514 - 116.03) / 1106.86,
  20849. bottom: 116.03 / 1293.0514
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Planck",
  20856. height: math.unit(1.6e-35, "meters")
  20857. },
  20858. {
  20859. name: "Micro",
  20860. height: math.unit(0.4, "meters")
  20861. },
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(30, "meters"),
  20865. default: true
  20866. },
  20867. {
  20868. name: "Megamacro",
  20869. height: math.unit(1.2, "megameters")
  20870. },
  20871. {
  20872. name: "Teramacro",
  20873. height: math.unit(130, "terameters")
  20874. },
  20875. {
  20876. name: "Yottamacro",
  20877. height: math.unit(6200, "yottameters")
  20878. },
  20879. ]
  20880. ));
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(8, "feet"),
  20886. weight: math.unit(250, "lb"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/kite/front.svg",
  20890. extra: 2796 / 2659,
  20891. bottom: 0.002
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(8, "feet"),
  20899. default: true
  20900. },
  20901. {
  20902. name: "Macro",
  20903. height: math.unit(360, "feet")
  20904. },
  20905. {
  20906. name: "Megamacro",
  20907. height: math.unit(1500, "feet")
  20908. },
  20909. ]
  20910. ))
  20911. characterMakers.push(() => makeCharacter(
  20912. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20913. {
  20914. front: {
  20915. height: math.unit(5 + 10 / 12, "feet"),
  20916. weight: math.unit(150, "lb"),
  20917. name: "Front",
  20918. image: {
  20919. source: "./media/characters/poojawa-vynar/front.svg",
  20920. extra: (1506.1547 - 55) / 1356.6,
  20921. bottom: 55 / 1506.1547
  20922. }
  20923. },
  20924. frontTailless: {
  20925. height: math.unit(5 + 10 / 12, "feet"),
  20926. weight: math.unit(150, "lb"),
  20927. name: "Front (Tailless)",
  20928. image: {
  20929. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20930. extra: (1506.1547 - 55) / 1356.6,
  20931. bottom: 55 / 1506.1547
  20932. }
  20933. },
  20934. },
  20935. [
  20936. {
  20937. name: "Normal",
  20938. height: math.unit(5 + 10 / 12, "feet"),
  20939. default: true
  20940. },
  20941. ]
  20942. ))
  20943. characterMakers.push(() => makeCharacter(
  20944. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20945. {
  20946. front: {
  20947. height: math.unit(293, "meters"),
  20948. weight: math.unit(70400, "tons"),
  20949. name: "Front",
  20950. image: {
  20951. source: "./media/characters/violette/front.svg",
  20952. extra: 1227 / 1180,
  20953. bottom: 0.005
  20954. }
  20955. },
  20956. back: {
  20957. height: math.unit(293, "meters"),
  20958. weight: math.unit(70400, "tons"),
  20959. name: "Back",
  20960. image: {
  20961. source: "./media/characters/violette/back.svg",
  20962. extra: 1227 / 1180,
  20963. bottom: 0.005
  20964. }
  20965. },
  20966. },
  20967. [
  20968. {
  20969. name: "Macro",
  20970. height: math.unit(293, "meters"),
  20971. default: true
  20972. },
  20973. ]
  20974. ))
  20975. characterMakers.push(() => makeCharacter(
  20976. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20977. {
  20978. front: {
  20979. height: math.unit(1050, "feet"),
  20980. weight: math.unit(200000, "tons"),
  20981. name: "Front",
  20982. image: {
  20983. source: "./media/characters/alessandra/front.svg",
  20984. extra: 960 / 912,
  20985. bottom: 0.06
  20986. }
  20987. },
  20988. },
  20989. [
  20990. {
  20991. name: "Macro",
  20992. height: math.unit(1050, "feet")
  20993. },
  20994. {
  20995. name: "Macro+",
  20996. height: math.unit(900, "meters"),
  20997. default: true
  20998. },
  20999. ]
  21000. ))
  21001. characterMakers.push(() => makeCharacter(
  21002. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21003. {
  21004. front: {
  21005. height: math.unit(5, "feet"),
  21006. weight: math.unit(187, "lb"),
  21007. name: "Front",
  21008. image: {
  21009. source: "./media/characters/person/front.svg",
  21010. extra: 3087 / 2945,
  21011. bottom: 91 / 3181
  21012. }
  21013. },
  21014. },
  21015. [
  21016. {
  21017. name: "Micro",
  21018. height: math.unit(3, "inches")
  21019. },
  21020. {
  21021. name: "Normal",
  21022. height: math.unit(5, "feet"),
  21023. default: true
  21024. },
  21025. {
  21026. name: "Macro",
  21027. height: math.unit(90, "feet")
  21028. },
  21029. {
  21030. name: "Max Size",
  21031. height: math.unit(280, "feet")
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21037. {
  21038. front: {
  21039. height: math.unit(4.5, "meters"),
  21040. weight: math.unit(3200, "lb"),
  21041. name: "Front",
  21042. image: {
  21043. source: "./media/characters/ty/front.svg",
  21044. extra: 1038 / 960,
  21045. bottom: 31.156 / 1068
  21046. }
  21047. },
  21048. back: {
  21049. height: math.unit(4.5, "meters"),
  21050. weight: math.unit(3200, "lb"),
  21051. name: "Back",
  21052. image: {
  21053. source: "./media/characters/ty/back.svg",
  21054. extra: 1044 / 966,
  21055. bottom: 7.48 / 1049
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Normal",
  21062. height: math.unit(4.5, "meters"),
  21063. default: true
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21069. {
  21070. front: {
  21071. height: math.unit(5 + 4 / 12, "feet"),
  21072. weight: math.unit(115, "lb"),
  21073. name: "Front",
  21074. image: {
  21075. source: "./media/characters/rocky/front.svg",
  21076. extra: 1012 / 975,
  21077. bottom: 54 / 1066
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Normal",
  21084. height: math.unit(5 + 4 / 12, "feet"),
  21085. default: true
  21086. },
  21087. ]
  21088. ))
  21089. characterMakers.push(() => makeCharacter(
  21090. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21091. {
  21092. upright: {
  21093. height: math.unit(6, "meters"),
  21094. weight: math.unit(4000, "kg"),
  21095. name: "Upright",
  21096. image: {
  21097. source: "./media/characters/ruin/upright.svg",
  21098. extra: 668 / 661,
  21099. bottom: 42 / 799.8396
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(6, "meters"),
  21107. default: true
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(5, "feet"),
  21116. weight: math.unit(106, "lb"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/robin/front.svg",
  21120. extra: 862 / 799,
  21121. bottom: 42.4 / 914.8856
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Normal",
  21128. height: math.unit(5, "feet"),
  21129. default: true
  21130. },
  21131. ]
  21132. ))
  21133. characterMakers.push(() => makeCharacter(
  21134. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21135. {
  21136. side: {
  21137. height: math.unit(3, "feet"),
  21138. weight: math.unit(225, "lb"),
  21139. name: "Side",
  21140. image: {
  21141. source: "./media/characters/saian/side.svg",
  21142. extra: 566 / 356,
  21143. bottom: 79.7 / 643
  21144. }
  21145. },
  21146. maw: {
  21147. height: math.unit(2.85, "feet"),
  21148. name: "Maw",
  21149. image: {
  21150. source: "./media/characters/saian/maw.svg"
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Normal",
  21157. height: math.unit(3, "feet"),
  21158. default: true
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21164. {
  21165. side: {
  21166. height: math.unit(8, "feet"),
  21167. weight: math.unit(300, "lb"),
  21168. name: "Side",
  21169. image: {
  21170. source: "./media/characters/equus-silvermane/side.svg",
  21171. extra: 2176 / 2050,
  21172. bottom: 65.7 / 2245
  21173. }
  21174. },
  21175. front: {
  21176. height: math.unit(8, "feet"),
  21177. weight: math.unit(300, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/equus-silvermane/front.svg",
  21181. extra: 4633 / 4400,
  21182. bottom: 71.3 / 4706.915
  21183. }
  21184. },
  21185. sideStepping: {
  21186. height: math.unit(8, "feet"),
  21187. weight: math.unit(300, "lb"),
  21188. name: "Side (Stepping)",
  21189. image: {
  21190. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21191. extra: 1968 / 1860,
  21192. bottom: 16.4 / 1989
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(8, "feet")
  21200. },
  21201. {
  21202. name: "Minimacro",
  21203. height: math.unit(75, "feet"),
  21204. default: true
  21205. },
  21206. {
  21207. name: "Macro",
  21208. height: math.unit(150, "feet")
  21209. },
  21210. {
  21211. name: "Macro+",
  21212. height: math.unit(1000, "feet")
  21213. },
  21214. {
  21215. name: "Megamacro",
  21216. height: math.unit(1, "mile")
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21222. {
  21223. side: {
  21224. height: math.unit(20, "feet"),
  21225. weight: math.unit(30000, "kg"),
  21226. name: "Side",
  21227. image: {
  21228. source: "./media/characters/windar/side.svg",
  21229. extra: 1491 / 1248,
  21230. bottom: 82.56 / 1568
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(20, "feet"),
  21238. default: true
  21239. },
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21244. {
  21245. side: {
  21246. height: math.unit(15.66, "feet"),
  21247. weight: math.unit(150, "lb"),
  21248. name: "Side",
  21249. image: {
  21250. source: "./media/characters/melody/side.svg",
  21251. extra: 1097 / 944,
  21252. bottom: 11.8 / 1109
  21253. }
  21254. },
  21255. sideOutfit: {
  21256. height: math.unit(15.66, "feet"),
  21257. weight: math.unit(150, "lb"),
  21258. name: "Side (Outfit)",
  21259. image: {
  21260. source: "./media/characters/melody/side-outfit.svg",
  21261. extra: 1097 / 944,
  21262. bottom: 11.8 / 1109
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Normal",
  21269. height: math.unit(15.66, "feet"),
  21270. default: true
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(8, "feet"),
  21279. weight: math.unit(325, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/windera/front.svg",
  21283. extra: 3180 / 2845,
  21284. bottom: 178 / 3365
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Normal",
  21291. height: math.unit(8, "feet"),
  21292. default: true
  21293. },
  21294. ]
  21295. ))
  21296. characterMakers.push(() => makeCharacter(
  21297. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21298. {
  21299. front: {
  21300. height: math.unit(28.75, "feet"),
  21301. weight: math.unit(2000, "kg"),
  21302. name: "Front",
  21303. image: {
  21304. source: "./media/characters/sonear/front.svg",
  21305. extra: 1041.1 / 964.9,
  21306. bottom: 53.7 / 1096.6
  21307. }
  21308. },
  21309. },
  21310. [
  21311. {
  21312. name: "Normal",
  21313. height: math.unit(28.75, "feet"),
  21314. default: true
  21315. },
  21316. ]
  21317. ))
  21318. characterMakers.push(() => makeCharacter(
  21319. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21320. {
  21321. side: {
  21322. height: math.unit(25.5, "feet"),
  21323. weight: math.unit(23000, "kg"),
  21324. name: "Side",
  21325. image: {
  21326. source: "./media/characters/kanara/side.svg"
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(25.5, "feet"),
  21334. default: true
  21335. },
  21336. ]
  21337. ))
  21338. characterMakers.push(() => makeCharacter(
  21339. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21340. {
  21341. side: {
  21342. height: math.unit(10, "feet"),
  21343. weight: math.unit(1000, "kg"),
  21344. name: "Side",
  21345. image: {
  21346. source: "./media/characters/ereus/side.svg",
  21347. extra: 1157 / 959,
  21348. bottom: 153 / 1312.5
  21349. }
  21350. },
  21351. },
  21352. [
  21353. {
  21354. name: "Normal",
  21355. height: math.unit(10, "feet"),
  21356. default: true
  21357. },
  21358. ]
  21359. ))
  21360. characterMakers.push(() => makeCharacter(
  21361. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21362. {
  21363. side: {
  21364. height: math.unit(4.5, "feet"),
  21365. weight: math.unit(500, "lb"),
  21366. name: "Side",
  21367. image: {
  21368. source: "./media/characters/e-ter/side.svg",
  21369. extra: 1550 / 1248,
  21370. bottom: 146 / 1694
  21371. }
  21372. },
  21373. },
  21374. [
  21375. {
  21376. name: "Normal",
  21377. height: math.unit(4.5, "feet"),
  21378. default: true
  21379. },
  21380. ]
  21381. ))
  21382. characterMakers.push(() => makeCharacter(
  21383. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21384. {
  21385. side: {
  21386. height: math.unit(9.7, "feet"),
  21387. weight: math.unit(4000, "kg"),
  21388. name: "Side",
  21389. image: {
  21390. source: "./media/characters/yamie/side.svg"
  21391. }
  21392. },
  21393. },
  21394. [
  21395. {
  21396. name: "Normal",
  21397. height: math.unit(9.7, "feet"),
  21398. default: true
  21399. },
  21400. ]
  21401. ))
  21402. characterMakers.push(() => makeCharacter(
  21403. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21404. {
  21405. front: {
  21406. height: math.unit(50, "feet"),
  21407. weight: math.unit(50000, "kg"),
  21408. name: "Front",
  21409. image: {
  21410. source: "./media/characters/anders/front.svg",
  21411. extra: 570 / 539,
  21412. bottom: 14.7 / 586.7
  21413. }
  21414. },
  21415. },
  21416. [
  21417. {
  21418. name: "Large",
  21419. height: math.unit(50, "feet")
  21420. },
  21421. {
  21422. name: "Macro",
  21423. height: math.unit(2000, "feet"),
  21424. default: true
  21425. },
  21426. {
  21427. name: "Megamacro",
  21428. height: math.unit(12, "miles")
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21434. {
  21435. front: {
  21436. height: math.unit(7 + 2 / 12, "feet"),
  21437. weight: math.unit(300, "lb"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/reban/front.svg",
  21441. extra: 516 / 487,
  21442. bottom: 42.82 / 558.356
  21443. }
  21444. },
  21445. dick: {
  21446. height: math.unit(7 / 5, "feet"),
  21447. name: "Dick",
  21448. image: {
  21449. source: "./media/characters/reban/dick.svg"
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Natural Height",
  21456. height: math.unit(7 + 2 / 12, "feet")
  21457. },
  21458. {
  21459. name: "Macro",
  21460. height: math.unit(500, "feet"),
  21461. default: true
  21462. },
  21463. {
  21464. name: "Canon Height",
  21465. height: math.unit(50, "AU")
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(6, "feet"),
  21474. weight: math.unit(150, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/terrance-keayes/front.svg",
  21478. extra: 1.005,
  21479. bottom: 151 / 1615
  21480. }
  21481. },
  21482. side: {
  21483. height: math.unit(6, "feet"),
  21484. weight: math.unit(150, "lb"),
  21485. name: "Side",
  21486. image: {
  21487. source: "./media/characters/terrance-keayes/side.svg",
  21488. extra: 1.005,
  21489. bottom: 129.4 / 1544
  21490. }
  21491. },
  21492. back: {
  21493. height: math.unit(6, "feet"),
  21494. weight: math.unit(150, "lb"),
  21495. name: "Back",
  21496. image: {
  21497. source: "./media/characters/terrance-keayes/back.svg",
  21498. extra: 1.005,
  21499. bottom: 58.4 / 1557.3
  21500. }
  21501. },
  21502. dick: {
  21503. height: math.unit(6 * 0.208, "feet"),
  21504. name: "Dick",
  21505. image: {
  21506. source: "./media/characters/terrance-keayes/dick.svg"
  21507. }
  21508. },
  21509. },
  21510. [
  21511. {
  21512. name: "Canon Height",
  21513. height: math.unit(35, "miles"),
  21514. default: true
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21520. {
  21521. front: {
  21522. height: math.unit(6, "feet"),
  21523. weight: math.unit(150, "lb"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/ofelia/front.svg",
  21527. extra: 546 / 541,
  21528. bottom: 39 / 583
  21529. }
  21530. },
  21531. back: {
  21532. height: math.unit(6, "feet"),
  21533. weight: math.unit(150, "lb"),
  21534. name: "Back",
  21535. image: {
  21536. source: "./media/characters/ofelia/back.svg",
  21537. extra: 564 / 559.5,
  21538. bottom: 8.69 / 573.02
  21539. }
  21540. },
  21541. maw: {
  21542. height: math.unit(1, "feet"),
  21543. name: "Maw",
  21544. image: {
  21545. source: "./media/characters/ofelia/maw.svg"
  21546. }
  21547. },
  21548. foot: {
  21549. height: math.unit(1.949, "feet"),
  21550. name: "Foot",
  21551. image: {
  21552. source: "./media/characters/ofelia/foot.svg"
  21553. }
  21554. },
  21555. },
  21556. [
  21557. {
  21558. name: "Canon Height",
  21559. height: math.unit(2000, "miles"),
  21560. default: true
  21561. },
  21562. ]
  21563. ))
  21564. characterMakers.push(() => makeCharacter(
  21565. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21566. {
  21567. front: {
  21568. height: math.unit(6, "feet"),
  21569. weight: math.unit(150, "lb"),
  21570. name: "Front",
  21571. image: {
  21572. source: "./media/characters/samuel/front.svg",
  21573. extra: 265 / 258,
  21574. bottom: 2 / 266.1566
  21575. }
  21576. },
  21577. },
  21578. [
  21579. {
  21580. name: "Macro",
  21581. height: math.unit(100, "feet"),
  21582. default: true
  21583. },
  21584. {
  21585. name: "Full Size",
  21586. height: math.unit(1000, "miles")
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21592. {
  21593. front: {
  21594. height: math.unit(6, "feet"),
  21595. weight: math.unit(300, "lb"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/beishir-kiel/front.svg",
  21599. extra: 569 / 547,
  21600. bottom: 41.9 / 609
  21601. }
  21602. },
  21603. maw: {
  21604. height: math.unit(6 * 0.202, "feet"),
  21605. name: "Maw",
  21606. image: {
  21607. source: "./media/characters/beishir-kiel/maw.svg"
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Macro",
  21614. height: math.unit(300, "feet"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21621. {
  21622. front: {
  21623. height: math.unit(5 + 8 / 12, "feet"),
  21624. weight: math.unit(120, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/logan-grey/front.svg",
  21628. extra: 2539 / 2393,
  21629. bottom: 97.6 / 2636.37
  21630. }
  21631. },
  21632. frontAlt: {
  21633. height: math.unit(5 + 8 / 12, "feet"),
  21634. weight: math.unit(120, "lb"),
  21635. name: "Front (Alt)",
  21636. image: {
  21637. source: "./media/characters/logan-grey/front-alt.svg",
  21638. extra: 958 / 893,
  21639. bottom: 15 / 970.768
  21640. }
  21641. },
  21642. back: {
  21643. height: math.unit(5 + 8 / 12, "feet"),
  21644. weight: math.unit(120, "lb"),
  21645. name: "Back",
  21646. image: {
  21647. source: "./media/characters/logan-grey/back.svg",
  21648. extra: 958 / 893,
  21649. bottom: 2.1881 / 970.9788
  21650. }
  21651. },
  21652. dick: {
  21653. height: math.unit(1.437, "feet"),
  21654. name: "Dick",
  21655. image: {
  21656. source: "./media/characters/logan-grey/dick.svg"
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Normal",
  21663. height: math.unit(5 + 8 / 12, "feet")
  21664. },
  21665. {
  21666. name: "The 500 Foot Femboy",
  21667. height: math.unit(500, "feet"),
  21668. default: true
  21669. },
  21670. {
  21671. name: "Megmacro",
  21672. height: math.unit(20, "miles")
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21678. {
  21679. front: {
  21680. height: math.unit(8 + 2 / 12, "feet"),
  21681. weight: math.unit(275, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/draganta/front.svg",
  21685. extra: 1177 / 1135,
  21686. bottom: 33.46 / 1212.1
  21687. }
  21688. },
  21689. },
  21690. [
  21691. {
  21692. name: "Normal",
  21693. height: math.unit(8 + 6 / 12, "feet"),
  21694. default: true
  21695. },
  21696. {
  21697. name: "Macro",
  21698. height: math.unit(150, "feet")
  21699. },
  21700. {
  21701. name: "Megamacro",
  21702. height: math.unit(1000, "miles")
  21703. },
  21704. ]
  21705. ))
  21706. characterMakers.push(() => makeCharacter(
  21707. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21708. {
  21709. front: {
  21710. height: math.unit(1.72, "m"),
  21711. weight: math.unit(80, "lb"),
  21712. name: "Front",
  21713. image: {
  21714. source: "./media/characters/voski/front.svg",
  21715. extra: 2076.22 / 2022.4,
  21716. bottom: 102.7 / 2177.3866
  21717. }
  21718. },
  21719. frontNsfw: {
  21720. height: math.unit(1.72, "m"),
  21721. weight: math.unit(80, "lb"),
  21722. name: "Front (NSFW)",
  21723. image: {
  21724. source: "./media/characters/voski/front-nsfw.svg",
  21725. extra: 2076.22 / 2022.4,
  21726. bottom: 102.7 / 2177.3866
  21727. }
  21728. },
  21729. back: {
  21730. height: math.unit(1.72, "m"),
  21731. weight: math.unit(80, "lb"),
  21732. name: "Back",
  21733. image: {
  21734. source: "./media/characters/voski/back.svg",
  21735. extra: 2104 / 2051,
  21736. bottom: 10.45 / 2113.63
  21737. }
  21738. },
  21739. },
  21740. [
  21741. {
  21742. name: "Normal",
  21743. height: math.unit(1.72, "m")
  21744. },
  21745. {
  21746. name: "Macro",
  21747. height: math.unit(55, "m"),
  21748. default: true
  21749. },
  21750. {
  21751. name: "Macro+",
  21752. height: math.unit(300, "m")
  21753. },
  21754. {
  21755. name: "Macro++",
  21756. height: math.unit(700, "m")
  21757. },
  21758. {
  21759. name: "Macro+++",
  21760. height: math.unit(4500, "m")
  21761. },
  21762. {
  21763. name: "Macro++++",
  21764. height: math.unit(45, "km")
  21765. },
  21766. {
  21767. name: "Macro+++++",
  21768. height: math.unit(1220, "km")
  21769. },
  21770. ]
  21771. ))
  21772. characterMakers.push(() => makeCharacter(
  21773. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21774. {
  21775. front: {
  21776. height: math.unit(2.3, "m"),
  21777. weight: math.unit(304, "kg"),
  21778. name: "Front",
  21779. image: {
  21780. source: "./media/characters/icowom-lee/front.svg",
  21781. extra: 985 / 955,
  21782. bottom: 25.4 / 1012
  21783. }
  21784. },
  21785. fronttentacles: {
  21786. height: math.unit(2.3, "m"),
  21787. weight: math.unit(304, "kg"),
  21788. name: "Front-tentacles",
  21789. image: {
  21790. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21791. extra: 985 / 955,
  21792. bottom: 25.4 / 1012
  21793. }
  21794. },
  21795. back: {
  21796. height: math.unit(2.3, "m"),
  21797. weight: math.unit(304, "kg"),
  21798. name: "Back",
  21799. image: {
  21800. source: "./media/characters/icowom-lee/back.svg",
  21801. extra: 975 / 954,
  21802. bottom: 9.5 / 985
  21803. }
  21804. },
  21805. backtentacles: {
  21806. height: math.unit(2.3, "m"),
  21807. weight: math.unit(304, "kg"),
  21808. name: "Back-tentacles",
  21809. image: {
  21810. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21811. extra: 975 / 954,
  21812. bottom: 9.5 / 985
  21813. }
  21814. },
  21815. frontDressed: {
  21816. height: math.unit(2.3, "m"),
  21817. weight: math.unit(304, "kg"),
  21818. name: "Front (Dressed)",
  21819. image: {
  21820. source: "./media/characters/icowom-lee/front-dressed.svg",
  21821. extra: 3076 / 2933,
  21822. bottom: 51.4 / 3125.1889
  21823. }
  21824. },
  21825. rump: {
  21826. height: math.unit(0.776, "meters"),
  21827. name: "Rump",
  21828. image: {
  21829. source: "./media/characters/icowom-lee/rump.svg"
  21830. }
  21831. },
  21832. genitals: {
  21833. height: math.unit(0.78, "meters"),
  21834. name: "Genitals",
  21835. image: {
  21836. source: "./media/characters/icowom-lee/genitals.svg"
  21837. }
  21838. },
  21839. },
  21840. [
  21841. {
  21842. name: "Normal",
  21843. height: math.unit(2.3, "meters"),
  21844. default: true
  21845. },
  21846. {
  21847. name: "Macro",
  21848. height: math.unit(94, "meters"),
  21849. default: true
  21850. },
  21851. ]
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21855. {
  21856. front: {
  21857. height: math.unit(22, "meters"),
  21858. weight: math.unit(21000, "kg"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/shock-diamond/front.svg",
  21862. extra: 2204 / 2053,
  21863. bottom: 65 / 2239.47
  21864. }
  21865. },
  21866. frontNude: {
  21867. height: math.unit(22, "meters"),
  21868. weight: math.unit(21000, "kg"),
  21869. name: "Front (Nude)",
  21870. image: {
  21871. source: "./media/characters/shock-diamond/front-nude.svg",
  21872. extra: 2514 / 2285,
  21873. bottom: 13 / 2527.56
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(3, "meters")
  21881. },
  21882. {
  21883. name: "Macro",
  21884. height: math.unit(22, "meters"),
  21885. default: true
  21886. },
  21887. ]
  21888. ))
  21889. characterMakers.push(() => makeCharacter(
  21890. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21891. {
  21892. front: {
  21893. height: math.unit(5 + 4 / 12, "feet"),
  21894. weight: math.unit(120, "lb"),
  21895. name: "Front",
  21896. image: {
  21897. source: "./media/characters/rory/front.svg",
  21898. extra: 589 / 556,
  21899. bottom: 45.7 / 635.76
  21900. }
  21901. },
  21902. frontNude: {
  21903. height: math.unit(5 + 4 / 12, "feet"),
  21904. weight: math.unit(120, "lb"),
  21905. name: "Front (Nude)",
  21906. image: {
  21907. source: "./media/characters/rory/front-nude.svg",
  21908. extra: 589 / 556,
  21909. bottom: 45.7 / 635.76
  21910. }
  21911. },
  21912. side: {
  21913. height: math.unit(5 + 4 / 12, "feet"),
  21914. weight: math.unit(120, "lb"),
  21915. name: "Side",
  21916. image: {
  21917. source: "./media/characters/rory/side.svg",
  21918. extra: 597 / 564,
  21919. bottom: 55 / 653
  21920. }
  21921. },
  21922. back: {
  21923. height: math.unit(5 + 4 / 12, "feet"),
  21924. weight: math.unit(120, "lb"),
  21925. name: "Back",
  21926. image: {
  21927. source: "./media/characters/rory/back.svg",
  21928. extra: 620 / 585,
  21929. bottom: 8.86 / 630.43
  21930. }
  21931. },
  21932. dick: {
  21933. height: math.unit(0.86, "feet"),
  21934. name: "Dick",
  21935. image: {
  21936. source: "./media/characters/rory/dick.svg"
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Normal",
  21943. height: math.unit(5 + 4 / 12, "feet"),
  21944. default: true
  21945. },
  21946. {
  21947. name: "Macro",
  21948. height: math.unit(100, "feet")
  21949. },
  21950. {
  21951. name: "Macro+",
  21952. height: math.unit(140, "feet")
  21953. },
  21954. {
  21955. name: "Macro++",
  21956. height: math.unit(300, "feet")
  21957. },
  21958. ]
  21959. ))
  21960. characterMakers.push(() => makeCharacter(
  21961. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21962. {
  21963. front: {
  21964. height: math.unit(5 + 9 / 12, "feet"),
  21965. weight: math.unit(190, "lb"),
  21966. name: "Front",
  21967. image: {
  21968. source: "./media/characters/sprisk/front.svg",
  21969. extra: 1225 / 1180,
  21970. bottom: 42.7 / 1266.4
  21971. }
  21972. },
  21973. frontNsfw: {
  21974. height: math.unit(5 + 9 / 12, "feet"),
  21975. weight: math.unit(190, "lb"),
  21976. name: "Front (NSFW)",
  21977. image: {
  21978. source: "./media/characters/sprisk/front-nsfw.svg",
  21979. extra: 1225 / 1180,
  21980. bottom: 42.7 / 1266.4
  21981. }
  21982. },
  21983. back: {
  21984. height: math.unit(5 + 9 / 12, "feet"),
  21985. weight: math.unit(190, "lb"),
  21986. name: "Back",
  21987. image: {
  21988. source: "./media/characters/sprisk/back.svg",
  21989. extra: 1247 / 1200,
  21990. bottom: 5.6 / 1253.04
  21991. }
  21992. },
  21993. },
  21994. [
  21995. {
  21996. name: "Tiny",
  21997. height: math.unit(2, "inches")
  21998. },
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(5 + 9 / 12, "feet"),
  22002. default: true
  22003. },
  22004. {
  22005. name: "Mini Macro",
  22006. height: math.unit(18, "feet")
  22007. },
  22008. {
  22009. name: "Macro",
  22010. height: math.unit(100, "feet")
  22011. },
  22012. {
  22013. name: "MACRO",
  22014. height: math.unit(50, "miles")
  22015. },
  22016. {
  22017. name: "M A C R O",
  22018. height: math.unit(300, "miles")
  22019. },
  22020. ]
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22024. {
  22025. side: {
  22026. height: math.unit(15.6, "meters"),
  22027. weight: math.unit(700000, "kg"),
  22028. name: "Side",
  22029. image: {
  22030. source: "./media/characters/bunsen/side.svg",
  22031. extra: 1644 / 358
  22032. }
  22033. },
  22034. foot: {
  22035. height: math.unit(1.611 * 1644 / 358, "meter"),
  22036. name: "Foot",
  22037. image: {
  22038. source: "./media/characters/bunsen/foot.svg"
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Small",
  22045. height: math.unit(10, "feet")
  22046. },
  22047. {
  22048. name: "Normal",
  22049. height: math.unit(15.6, "meters"),
  22050. default: true
  22051. },
  22052. ]
  22053. ))
  22054. characterMakers.push(() => makeCharacter(
  22055. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22056. {
  22057. front: {
  22058. height: math.unit(4 + 11 / 12, "feet"),
  22059. weight: math.unit(140, "lb"),
  22060. name: "Front",
  22061. image: {
  22062. source: "./media/characters/sesh/front.svg",
  22063. extra: 3420 / 3231,
  22064. bottom: 72 / 3949.5
  22065. }
  22066. },
  22067. },
  22068. [
  22069. {
  22070. name: "Normal",
  22071. height: math.unit(4 + 11 / 12, "feet")
  22072. },
  22073. {
  22074. name: "Grown",
  22075. height: math.unit(15, "feet"),
  22076. default: true
  22077. },
  22078. {
  22079. name: "Macro",
  22080. height: math.unit(1500, "feet")
  22081. },
  22082. {
  22083. name: "Megamacro",
  22084. height: math.unit(30, "miles")
  22085. },
  22086. {
  22087. name: "Continental",
  22088. height: math.unit(3000, "miles")
  22089. },
  22090. {
  22091. name: "Gravity Mass",
  22092. height: math.unit(300000, "miles")
  22093. },
  22094. {
  22095. name: "Planet Buster",
  22096. height: math.unit(30000000, "miles")
  22097. },
  22098. {
  22099. name: "Big",
  22100. height: math.unit(3000000000, "miles")
  22101. },
  22102. ]
  22103. ))
  22104. characterMakers.push(() => makeCharacter(
  22105. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22106. {
  22107. front: {
  22108. height: math.unit(9, "feet"),
  22109. weight: math.unit(350, "lb"),
  22110. name: "Front",
  22111. image: {
  22112. source: "./media/characters/pepper/front.svg",
  22113. extra: 1448 / 1312,
  22114. bottom: 9.4 / 1457.88
  22115. }
  22116. },
  22117. back: {
  22118. height: math.unit(9, "feet"),
  22119. weight: math.unit(350, "lb"),
  22120. name: "Back",
  22121. image: {
  22122. source: "./media/characters/pepper/back.svg",
  22123. extra: 1423 / 1300,
  22124. bottom: 4.6 / 1429
  22125. }
  22126. },
  22127. maw: {
  22128. height: math.unit(0.932, "feet"),
  22129. name: "Maw",
  22130. image: {
  22131. source: "./media/characters/pepper/maw.svg"
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(9, "feet"),
  22139. default: true
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22145. {
  22146. front: {
  22147. height: math.unit(6, "feet"),
  22148. weight: math.unit(150, "lb"),
  22149. name: "Front",
  22150. image: {
  22151. source: "./media/characters/maelstrom/front.svg",
  22152. extra: 2100 / 1883,
  22153. bottom: 94 / 2196.7
  22154. }
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Less Kaiju",
  22160. height: math.unit(200, "feet")
  22161. },
  22162. {
  22163. name: "Kaiju",
  22164. height: math.unit(400, "feet"),
  22165. default: true
  22166. },
  22167. {
  22168. name: "Kaiju-er",
  22169. height: math.unit(600, "feet")
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(6 + 5 / 12, "feet"),
  22178. weight: math.unit(180, "lb"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/lexir/front.svg",
  22182. extra: 180 / 172,
  22183. bottom: 12 / 192
  22184. }
  22185. },
  22186. back: {
  22187. height: math.unit(6 + 5 / 12, "feet"),
  22188. weight: math.unit(180, "lb"),
  22189. name: "Back",
  22190. image: {
  22191. source: "./media/characters/lexir/back.svg",
  22192. extra: 183.84 / 175.5,
  22193. bottom: 3.1 / 187
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Very Smal",
  22200. height: math.unit(1, "nm")
  22201. },
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(6 + 5 / 12, "feet"),
  22205. default: true
  22206. },
  22207. {
  22208. name: "Macro",
  22209. height: math.unit(1, "mile")
  22210. },
  22211. {
  22212. name: "Megamacro",
  22213. height: math.unit(50, "miles")
  22214. },
  22215. ]
  22216. ))
  22217. characterMakers.push(() => makeCharacter(
  22218. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22219. {
  22220. front: {
  22221. height: math.unit(1.5, "meters"),
  22222. weight: math.unit(100, "lb"),
  22223. name: "Front",
  22224. image: {
  22225. source: "./media/characters/maksio/front.svg",
  22226. extra: 1549 / 1531,
  22227. bottom: 123.7 / 1674.5429
  22228. }
  22229. },
  22230. back: {
  22231. height: math.unit(1.5, "meters"),
  22232. weight: math.unit(100, "lb"),
  22233. name: "Back",
  22234. image: {
  22235. source: "./media/characters/maksio/back.svg",
  22236. extra: 1541 / 1509,
  22237. bottom: 97 / 1639
  22238. }
  22239. },
  22240. hand: {
  22241. height: math.unit(0.621, "feet"),
  22242. name: "Hand",
  22243. image: {
  22244. source: "./media/characters/maksio/hand.svg"
  22245. }
  22246. },
  22247. foot: {
  22248. height: math.unit(1.611, "feet"),
  22249. name: "Foot",
  22250. image: {
  22251. source: "./media/characters/maksio/foot.svg"
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Shrunken",
  22258. height: math.unit(10, "cm")
  22259. },
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(150, "cm"),
  22263. default: true
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22269. {
  22270. front: {
  22271. height: math.unit(100, "feet"),
  22272. name: "Front",
  22273. image: {
  22274. source: "./media/characters/erza-bear/front.svg",
  22275. extra: 2449 / 2390,
  22276. bottom: 46 / 2494
  22277. }
  22278. },
  22279. back: {
  22280. height: math.unit(100, "feet"),
  22281. name: "Back",
  22282. image: {
  22283. source: "./media/characters/erza-bear/back.svg",
  22284. extra: 2489 / 2430,
  22285. bottom: 85.4 / 2480
  22286. }
  22287. },
  22288. tail: {
  22289. height: math.unit(42, "feet"),
  22290. name: "Tail",
  22291. image: {
  22292. source: "./media/characters/erza-bear/tail.svg"
  22293. }
  22294. },
  22295. tongue: {
  22296. height: math.unit(8, "feet"),
  22297. name: "Tongue",
  22298. image: {
  22299. source: "./media/characters/erza-bear/tongue.svg"
  22300. }
  22301. },
  22302. dick: {
  22303. height: math.unit(10.5, "feet"),
  22304. name: "Dick",
  22305. image: {
  22306. source: "./media/characters/erza-bear/dick.svg"
  22307. }
  22308. },
  22309. dickVertical: {
  22310. height: math.unit(16.9, "feet"),
  22311. name: "Dick (Vertical)",
  22312. image: {
  22313. source: "./media/characters/erza-bear/dick-vertical.svg"
  22314. }
  22315. },
  22316. },
  22317. [
  22318. {
  22319. name: "Macro",
  22320. height: math.unit(100, "feet"),
  22321. default: true
  22322. },
  22323. ]
  22324. ))
  22325. characterMakers.push(() => makeCharacter(
  22326. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22327. {
  22328. front: {
  22329. height: math.unit(172, "cm"),
  22330. weight: math.unit(73, "kg"),
  22331. name: "Front",
  22332. image: {
  22333. source: "./media/characters/violet-flor/front.svg",
  22334. extra: 1530 / 1442,
  22335. bottom: 61.9 / 1588.8
  22336. }
  22337. },
  22338. back: {
  22339. height: math.unit(180, "cm"),
  22340. weight: math.unit(73, "kg"),
  22341. name: "Back",
  22342. image: {
  22343. source: "./media/characters/violet-flor/back.svg",
  22344. extra: 1692 / 1630,
  22345. bottom: 20 / 1712
  22346. }
  22347. },
  22348. },
  22349. [
  22350. {
  22351. name: "Normal",
  22352. height: math.unit(172, "cm"),
  22353. default: true
  22354. },
  22355. ]
  22356. ))
  22357. characterMakers.push(() => makeCharacter(
  22358. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22359. {
  22360. front: {
  22361. height: math.unit(6, "feet"),
  22362. weight: math.unit(220, "lb"),
  22363. name: "Front",
  22364. image: {
  22365. source: "./media/characters/lynn-rhea/front.svg",
  22366. extra: 310 / 273
  22367. }
  22368. },
  22369. back: {
  22370. height: math.unit(6, "feet"),
  22371. weight: math.unit(220, "lb"),
  22372. name: "Back",
  22373. image: {
  22374. source: "./media/characters/lynn-rhea/back.svg",
  22375. extra: 310 / 273
  22376. }
  22377. },
  22378. dicks: {
  22379. height: math.unit(0.9, "feet"),
  22380. name: "Dicks",
  22381. image: {
  22382. source: "./media/characters/lynn-rhea/dicks.svg"
  22383. }
  22384. },
  22385. slit: {
  22386. height: math.unit(0.4, "feet"),
  22387. name: "Slit",
  22388. image: {
  22389. source: "./media/characters/lynn-rhea/slit.svg"
  22390. }
  22391. },
  22392. },
  22393. [
  22394. {
  22395. name: "Micro",
  22396. height: math.unit(1, "inch")
  22397. },
  22398. {
  22399. name: "Macro",
  22400. height: math.unit(60, "feet"),
  22401. default: true
  22402. },
  22403. {
  22404. name: "Megamacro",
  22405. height: math.unit(2, "miles")
  22406. },
  22407. {
  22408. name: "Gigamacro",
  22409. height: math.unit(3, "earths")
  22410. },
  22411. {
  22412. name: "Galactic",
  22413. height: math.unit(0.8, "galaxies")
  22414. },
  22415. ]
  22416. ))
  22417. characterMakers.push(() => makeCharacter(
  22418. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22419. {
  22420. front: {
  22421. height: math.unit(1600, "feet"),
  22422. weight: math.unit(85758785169, "kg"),
  22423. name: "Front",
  22424. image: {
  22425. source: "./media/characters/valathos/front.svg",
  22426. extra: 1451 / 1339
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Macro",
  22433. height: math.unit(1600, "feet"),
  22434. default: true
  22435. },
  22436. ]
  22437. ))
  22438. characterMakers.push(() => makeCharacter(
  22439. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22440. {
  22441. front: {
  22442. height: math.unit(7 + 5 / 12, "feet"),
  22443. weight: math.unit(300, "lb"),
  22444. name: "Front",
  22445. image: {
  22446. source: "./media/characters/azula/front.svg",
  22447. extra: 3208 / 2880,
  22448. bottom: 80.2 / 3277
  22449. }
  22450. },
  22451. back: {
  22452. height: math.unit(7 + 5 / 12, "feet"),
  22453. weight: math.unit(300, "lb"),
  22454. name: "Back",
  22455. image: {
  22456. source: "./media/characters/azula/back.svg",
  22457. extra: 3169 / 2822,
  22458. bottom: 150.6 / 3321
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Normal",
  22465. height: math.unit(7 + 5 / 12, "feet"),
  22466. default: true
  22467. },
  22468. {
  22469. name: "Big",
  22470. height: math.unit(20, "feet")
  22471. },
  22472. ]
  22473. ))
  22474. characterMakers.push(() => makeCharacter(
  22475. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22476. {
  22477. front: {
  22478. height: math.unit(5 + 1 / 12, "feet"),
  22479. weight: math.unit(110, "lb"),
  22480. name: "Front",
  22481. image: {
  22482. source: "./media/characters/rupert/front.svg",
  22483. extra: 1549 / 1495,
  22484. bottom: 54.2 / 1604.4
  22485. }
  22486. },
  22487. },
  22488. [
  22489. {
  22490. name: "Normal",
  22491. height: math.unit(5 + 1 / 12, "feet"),
  22492. default: true
  22493. },
  22494. ]
  22495. ))
  22496. characterMakers.push(() => makeCharacter(
  22497. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22498. {
  22499. front: {
  22500. height: math.unit(8 + 4 / 12, "feet"),
  22501. weight: math.unit(350, "lb"),
  22502. name: "Front",
  22503. image: {
  22504. source: "./media/characters/sheera-castellar/front.svg",
  22505. extra: 1957 / 1894,
  22506. bottom: 26.97 / 1975.017
  22507. }
  22508. },
  22509. side: {
  22510. height: math.unit(8 + 4 / 12, "feet"),
  22511. weight: math.unit(350, "lb"),
  22512. name: "Side",
  22513. image: {
  22514. source: "./media/characters/sheera-castellar/side.svg",
  22515. extra: 1957 / 1894
  22516. }
  22517. },
  22518. back: {
  22519. height: math.unit(8 + 4 / 12, "feet"),
  22520. weight: math.unit(350, "lb"),
  22521. name: "Back",
  22522. image: {
  22523. source: "./media/characters/sheera-castellar/back.svg",
  22524. extra: 1957 / 1894
  22525. }
  22526. },
  22527. angled: {
  22528. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22529. weight: math.unit(350, "lb"),
  22530. name: "Angled",
  22531. image: {
  22532. source: "./media/characters/sheera-castellar/angled.svg",
  22533. extra: 1807 / 1707,
  22534. bottom: 68 / 1875
  22535. }
  22536. },
  22537. genitals: {
  22538. height: math.unit(2.2, "feet"),
  22539. name: "Genitals",
  22540. image: {
  22541. source: "./media/characters/sheera-castellar/genitals.svg"
  22542. }
  22543. },
  22544. },
  22545. [
  22546. {
  22547. name: "Normal",
  22548. height: math.unit(8 + 4 / 12, "feet")
  22549. },
  22550. {
  22551. name: "Macro",
  22552. height: math.unit(150, "feet"),
  22553. default: true
  22554. },
  22555. {
  22556. name: "Macro+",
  22557. height: math.unit(800, "feet")
  22558. },
  22559. ]
  22560. ))
  22561. characterMakers.push(() => makeCharacter(
  22562. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22563. {
  22564. front: {
  22565. height: math.unit(6, "feet"),
  22566. weight: math.unit(150, "lb"),
  22567. name: "Front",
  22568. image: {
  22569. source: "./media/characters/jaipur/front.svg",
  22570. extra: 3860 / 3731,
  22571. bottom: 287 / 4140
  22572. }
  22573. },
  22574. back: {
  22575. height: math.unit(6, "feet"),
  22576. weight: math.unit(150, "lb"),
  22577. name: "Back",
  22578. image: {
  22579. source: "./media/characters/jaipur/back.svg",
  22580. extra: 4060 / 3930,
  22581. bottom: 151 / 4200
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Normal",
  22588. height: math.unit(1.85, "meters"),
  22589. default: true
  22590. },
  22591. {
  22592. name: "Macro",
  22593. height: math.unit(150, "meters")
  22594. },
  22595. {
  22596. name: "Macro+",
  22597. height: math.unit(0.5, "miles")
  22598. },
  22599. {
  22600. name: "Macro++",
  22601. height: math.unit(2.5, "miles")
  22602. },
  22603. {
  22604. name: "Macro+++",
  22605. height: math.unit(12, "miles")
  22606. },
  22607. {
  22608. name: "Macro++++",
  22609. height: math.unit(120, "miles")
  22610. },
  22611. {
  22612. name: "Macro+++++",
  22613. height: math.unit(1200, "miles")
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22619. {
  22620. front: {
  22621. height: math.unit(6, "feet"),
  22622. weight: math.unit(150, "lb"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/sheila-wolf/front.svg",
  22626. extra: 1931 / 1808,
  22627. bottom: 29.5 / 1960
  22628. }
  22629. },
  22630. dick: {
  22631. height: math.unit(1.464, "feet"),
  22632. name: "Dick",
  22633. image: {
  22634. source: "./media/characters/sheila-wolf/dick.svg"
  22635. }
  22636. },
  22637. muzzle: {
  22638. height: math.unit(0.513, "feet"),
  22639. name: "Muzzle",
  22640. image: {
  22641. source: "./media/characters/sheila-wolf/muzzle.svg"
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Macro",
  22648. height: math.unit(70, "feet"),
  22649. default: true
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22655. {
  22656. front: {
  22657. height: math.unit(32, "meters"),
  22658. weight: math.unit(300000, "kg"),
  22659. name: "Front",
  22660. image: {
  22661. source: "./media/characters/almor/front.svg",
  22662. extra: 1408 / 1322,
  22663. bottom: 94.6 / 1506.5
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Macro",
  22670. height: math.unit(32, "meters"),
  22671. default: true
  22672. },
  22673. ]
  22674. ))
  22675. characterMakers.push(() => makeCharacter(
  22676. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22677. {
  22678. front: {
  22679. height: math.unit(7, "feet"),
  22680. weight: math.unit(200, "lb"),
  22681. name: "Front",
  22682. image: {
  22683. source: "./media/characters/silver/front.svg",
  22684. extra: 472.1 / 450.5,
  22685. bottom: 26.5 / 499.424
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Normal",
  22692. height: math.unit(7, "feet"),
  22693. default: true
  22694. },
  22695. {
  22696. name: "Macro",
  22697. height: math.unit(800, "feet")
  22698. },
  22699. {
  22700. name: "Megamacro",
  22701. height: math.unit(250, "miles")
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22707. {
  22708. front: {
  22709. height: math.unit(6, "feet"),
  22710. weight: math.unit(150, "lb"),
  22711. name: "Front",
  22712. image: {
  22713. source: "./media/characters/pliskin/front.svg",
  22714. extra: 1469 / 1359,
  22715. bottom: 70 / 1540
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Micro",
  22722. height: math.unit(3, "inches")
  22723. },
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(5 + 11 / 12, "feet"),
  22727. default: true
  22728. },
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(120, "feet")
  22732. },
  22733. ]
  22734. ))
  22735. characterMakers.push(() => makeCharacter(
  22736. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22737. {
  22738. front: {
  22739. height: math.unit(6, "feet"),
  22740. weight: math.unit(150, "lb"),
  22741. name: "Front",
  22742. image: {
  22743. source: "./media/characters/sammy/front.svg",
  22744. extra: 1193 / 1089,
  22745. bottom: 30.5 / 1226
  22746. }
  22747. },
  22748. },
  22749. [
  22750. {
  22751. name: "Macro",
  22752. height: math.unit(1700, "feet"),
  22753. default: true
  22754. },
  22755. {
  22756. name: "Examacro",
  22757. height: math.unit(2.5e9, "lightyears")
  22758. },
  22759. ]
  22760. ))
  22761. characterMakers.push(() => makeCharacter(
  22762. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22763. {
  22764. front: {
  22765. height: math.unit(21, "meters"),
  22766. weight: math.unit(12, "tonnes"),
  22767. name: "Front",
  22768. image: {
  22769. source: "./media/characters/kuru/front.svg",
  22770. extra: 4301 / 3785,
  22771. bottom: 371.3 / 4691
  22772. }
  22773. },
  22774. },
  22775. [
  22776. {
  22777. name: "Macro",
  22778. height: math.unit(21, "meters"),
  22779. default: true
  22780. },
  22781. ]
  22782. ))
  22783. characterMakers.push(() => makeCharacter(
  22784. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22785. {
  22786. front: {
  22787. height: math.unit(23, "meters"),
  22788. weight: math.unit(12.2, "tonnes"),
  22789. name: "Front",
  22790. image: {
  22791. source: "./media/characters/rakka/front.svg",
  22792. extra: 4670 / 4169,
  22793. bottom: 301 / 4968.7
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Macro",
  22800. height: math.unit(23, "meters"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(6, "feet"),
  22810. weight: math.unit(150, "lb"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/rhys-feline/front.svg",
  22814. extra: 2488 / 2308,
  22815. bottom: 35.67 / 2519.19
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Really Small",
  22822. height: math.unit(1, "nm")
  22823. },
  22824. {
  22825. name: "Micro",
  22826. height: math.unit(4, "inches")
  22827. },
  22828. {
  22829. name: "Normal",
  22830. height: math.unit(4 + 10 / 12, "feet"),
  22831. default: true
  22832. },
  22833. {
  22834. name: "Macro",
  22835. height: math.unit(100, "feet")
  22836. },
  22837. {
  22838. name: "Megamacto",
  22839. height: math.unit(50, "miles")
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22845. {
  22846. side: {
  22847. height: math.unit(30, "feet"),
  22848. weight: math.unit(35000, "kg"),
  22849. name: "Side",
  22850. image: {
  22851. source: "./media/characters/alydar/side.svg",
  22852. extra: 234 / 222,
  22853. bottom: 6.5 / 241
  22854. }
  22855. },
  22856. front: {
  22857. height: math.unit(30, "feet"),
  22858. weight: math.unit(35000, "kg"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/alydar/front.svg",
  22862. extra: 223.37 / 210.2,
  22863. bottom: 22.3 / 246.76
  22864. }
  22865. },
  22866. top: {
  22867. height: math.unit(64.54, "feet"),
  22868. weight: math.unit(35000, "kg"),
  22869. name: "Top",
  22870. image: {
  22871. source: "./media/characters/alydar/top.svg"
  22872. }
  22873. },
  22874. anthro: {
  22875. height: math.unit(30, "feet"),
  22876. weight: math.unit(9000, "kg"),
  22877. name: "Anthro",
  22878. image: {
  22879. source: "./media/characters/alydar/anthro.svg",
  22880. extra: 432 / 421,
  22881. bottom: 7.18 / 440
  22882. }
  22883. },
  22884. maw: {
  22885. height: math.unit(11.693, "feet"),
  22886. name: "Maw",
  22887. image: {
  22888. source: "./media/characters/alydar/maw.svg"
  22889. }
  22890. },
  22891. head: {
  22892. height: math.unit(11.693, "feet"),
  22893. name: "Head",
  22894. image: {
  22895. source: "./media/characters/alydar/head.svg"
  22896. }
  22897. },
  22898. headAlt: {
  22899. height: math.unit(12.861, "feet"),
  22900. name: "Head (Alt)",
  22901. image: {
  22902. source: "./media/characters/alydar/head-alt.svg"
  22903. }
  22904. },
  22905. wing: {
  22906. height: math.unit(20.712, "feet"),
  22907. name: "Wing",
  22908. image: {
  22909. source: "./media/characters/alydar/wing.svg"
  22910. }
  22911. },
  22912. wingFeather: {
  22913. height: math.unit(9.662, "feet"),
  22914. name: "Wing Feather",
  22915. image: {
  22916. source: "./media/characters/alydar/wing-feather.svg"
  22917. }
  22918. },
  22919. countourFeather: {
  22920. height: math.unit(4.154, "feet"),
  22921. name: "Contour Feather",
  22922. image: {
  22923. source: "./media/characters/alydar/contour-feather.svg"
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Diplomatic",
  22930. height: math.unit(13, "feet"),
  22931. default: true
  22932. },
  22933. {
  22934. name: "Small",
  22935. height: math.unit(30, "feet")
  22936. },
  22937. {
  22938. name: "Normal",
  22939. height: math.unit(95, "feet"),
  22940. default: true
  22941. },
  22942. {
  22943. name: "Large",
  22944. height: math.unit(285, "feet")
  22945. },
  22946. {
  22947. name: "Incomprehensible",
  22948. height: math.unit(450, "megameters")
  22949. },
  22950. ]
  22951. ))
  22952. characterMakers.push(() => makeCharacter(
  22953. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22954. {
  22955. side: {
  22956. height: math.unit(11, "feet"),
  22957. weight: math.unit(1750, "kg"),
  22958. name: "Side",
  22959. image: {
  22960. source: "./media/characters/selicia/side.svg",
  22961. extra: 440 / 396,
  22962. bottom: 24.8 / 465.979
  22963. }
  22964. },
  22965. maw: {
  22966. height: math.unit(4.665, "feet"),
  22967. name: "Maw",
  22968. image: {
  22969. source: "./media/characters/selicia/maw.svg"
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Normal",
  22976. height: math.unit(11, "feet"),
  22977. default: true
  22978. },
  22979. ]
  22980. ))
  22981. characterMakers.push(() => makeCharacter(
  22982. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22983. {
  22984. side: {
  22985. height: math.unit(2 + 6 / 12, "feet"),
  22986. weight: math.unit(30, "lb"),
  22987. name: "Side",
  22988. image: {
  22989. source: "./media/characters/layla/side.svg",
  22990. extra: 244 / 188,
  22991. bottom: 18.2 / 262.1
  22992. }
  22993. },
  22994. back: {
  22995. height: math.unit(2 + 6 / 12, "feet"),
  22996. weight: math.unit(30, "lb"),
  22997. name: "Back",
  22998. image: {
  22999. source: "./media/characters/layla/back.svg",
  23000. extra: 308 / 241.5,
  23001. bottom: 8.9 / 316.8
  23002. }
  23003. },
  23004. cumming: {
  23005. height: math.unit(2 + 6 / 12, "feet"),
  23006. weight: math.unit(30, "lb"),
  23007. name: "Cumming",
  23008. image: {
  23009. source: "./media/characters/layla/cumming.svg",
  23010. extra: 342 / 279,
  23011. bottom: 595 / 938
  23012. }
  23013. },
  23014. dickFlaccid: {
  23015. height: math.unit(2.595, "feet"),
  23016. name: "Flaccid Genitals",
  23017. image: {
  23018. source: "./media/characters/layla/dick-flaccid.svg"
  23019. }
  23020. },
  23021. dickErect: {
  23022. height: math.unit(2.359, "feet"),
  23023. name: "Erect Genitals",
  23024. image: {
  23025. source: "./media/characters/layla/dick-erect.svg"
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Micro",
  23032. height: math.unit(1, "inch")
  23033. },
  23034. {
  23035. name: "Small",
  23036. height: math.unit(1, "foot")
  23037. },
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(2 + 6 / 12, "feet"),
  23041. default: true
  23042. },
  23043. {
  23044. name: "Macro",
  23045. height: math.unit(200, "feet")
  23046. },
  23047. {
  23048. name: "Megamacro",
  23049. height: math.unit(1000, "miles")
  23050. },
  23051. {
  23052. name: "Planetary",
  23053. height: math.unit(8000, "miles")
  23054. },
  23055. {
  23056. name: "True Layla",
  23057. height: math.unit(200000 * 7, "multiverses")
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23063. {
  23064. back: {
  23065. height: math.unit(10.5, "feet"),
  23066. weight: math.unit(800, "lb"),
  23067. name: "Back",
  23068. image: {
  23069. source: "./media/characters/knox/back.svg",
  23070. extra: 1486 / 1089,
  23071. bottom: 107 / 1601.4
  23072. }
  23073. },
  23074. side: {
  23075. height: math.unit(10.5, "feet"),
  23076. weight: math.unit(800, "lb"),
  23077. name: "Side",
  23078. image: {
  23079. source: "./media/characters/knox/side.svg",
  23080. extra: 244 / 218,
  23081. bottom: 14 / 260
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Compact",
  23088. height: math.unit(10.5, "feet"),
  23089. default: true
  23090. },
  23091. {
  23092. name: "Dynamax",
  23093. height: math.unit(210, "feet")
  23094. },
  23095. {
  23096. name: "Full Macro",
  23097. height: math.unit(850, "feet")
  23098. },
  23099. ]
  23100. ))
  23101. characterMakers.push(() => makeCharacter(
  23102. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23103. {
  23104. front: {
  23105. height: math.unit(6, "feet"),
  23106. weight: math.unit(152, "lb"),
  23107. name: "Front",
  23108. image: {
  23109. source: "./media/characters/shin-pikachu/front.svg",
  23110. extra: 1574 / 1480,
  23111. bottom: 53.3 / 1626
  23112. }
  23113. },
  23114. hand: {
  23115. height: math.unit(1.055, "feet"),
  23116. name: "Hand",
  23117. image: {
  23118. source: "./media/characters/shin-pikachu/hand.svg"
  23119. }
  23120. },
  23121. foot: {
  23122. height: math.unit(1.1, "feet"),
  23123. name: "Foot",
  23124. image: {
  23125. source: "./media/characters/shin-pikachu/foot.svg"
  23126. }
  23127. },
  23128. collar: {
  23129. height: math.unit(0.386, "feet"),
  23130. name: "Collar",
  23131. image: {
  23132. source: "./media/characters/shin-pikachu/collar.svg"
  23133. }
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Smallest",
  23139. height: math.unit(0.5, "inches")
  23140. },
  23141. {
  23142. name: "Micro",
  23143. height: math.unit(6, "inches")
  23144. },
  23145. {
  23146. name: "Normal",
  23147. height: math.unit(6, "feet"),
  23148. default: true
  23149. },
  23150. {
  23151. name: "Macro",
  23152. height: math.unit(150, "feet")
  23153. },
  23154. ]
  23155. ))
  23156. characterMakers.push(() => makeCharacter(
  23157. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23158. {
  23159. front: {
  23160. height: math.unit(28, "feet"),
  23161. weight: math.unit(10500, "lb"),
  23162. name: "Front",
  23163. image: {
  23164. source: "./media/characters/kayda/front.svg",
  23165. extra: 1536 / 1428,
  23166. bottom: 68.7 / 1603
  23167. }
  23168. },
  23169. back: {
  23170. height: math.unit(28, "feet"),
  23171. weight: math.unit(10500, "lb"),
  23172. name: "Back",
  23173. image: {
  23174. source: "./media/characters/kayda/back.svg",
  23175. extra: 1557 / 1464,
  23176. bottom: 39.5 / 1597.49
  23177. }
  23178. },
  23179. dick: {
  23180. height: math.unit(3.858, "feet"),
  23181. name: "Dick",
  23182. image: {
  23183. source: "./media/characters/kayda/dick.svg"
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Macro",
  23190. height: math.unit(28, "feet"),
  23191. default: true
  23192. },
  23193. ]
  23194. ))
  23195. characterMakers.push(() => makeCharacter(
  23196. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23197. {
  23198. front: {
  23199. height: math.unit(10 + 11 / 12, "feet"),
  23200. weight: math.unit(1400, "lb"),
  23201. name: "Front",
  23202. image: {
  23203. source: "./media/characters/brian/front.svg",
  23204. extra: 737 / 692,
  23205. bottom: 55.4 / 785
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Normal",
  23212. height: math.unit(10 + 11 / 12, "feet"),
  23213. default: true
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(5 + 8 / 12, "feet"),
  23222. weight: math.unit(140, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/khemri/front.svg",
  23226. extra: 4780 / 4059,
  23227. bottom: 80.1 / 4859.25
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Micro",
  23234. height: math.unit(6, "inches")
  23235. },
  23236. {
  23237. name: "Normal",
  23238. height: math.unit(5 + 8 / 12, "feet"),
  23239. default: true
  23240. },
  23241. ]
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23245. {
  23246. front: {
  23247. height: math.unit(13, "feet"),
  23248. weight: math.unit(1700, "lb"),
  23249. name: "Front",
  23250. image: {
  23251. source: "./media/characters/felix-braveheart/front.svg",
  23252. extra: 1222 / 1157,
  23253. bottom: 53.2 / 1280
  23254. }
  23255. },
  23256. back: {
  23257. height: math.unit(13, "feet"),
  23258. weight: math.unit(1700, "lb"),
  23259. name: "Back",
  23260. image: {
  23261. source: "./media/characters/felix-braveheart/back.svg",
  23262. extra: 1277 / 1203,
  23263. bottom: 50.2 / 1327
  23264. }
  23265. },
  23266. feral: {
  23267. height: math.unit(6, "feet"),
  23268. weight: math.unit(400, "lb"),
  23269. name: "Feral",
  23270. image: {
  23271. source: "./media/characters/felix-braveheart/feral.svg",
  23272. extra: 682 / 625,
  23273. bottom: 6.9 / 688
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Normal",
  23280. height: math.unit(13, "feet"),
  23281. default: true
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23287. {
  23288. side: {
  23289. height: math.unit(5 + 11 / 12, "feet"),
  23290. weight: math.unit(1400, "lb"),
  23291. name: "Side",
  23292. image: {
  23293. source: "./media/characters/shadow-blade/side.svg",
  23294. extra: 1726 / 1267,
  23295. bottom: 58.4 / 1785
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Normal",
  23302. height: math.unit(5 + 11 / 12, "feet"),
  23303. default: true
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23309. {
  23310. front: {
  23311. height: math.unit(1 + 6 / 12, "feet"),
  23312. weight: math.unit(25, "lb"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/karla-halldor/front.svg",
  23316. extra: 1459 / 1383,
  23317. bottom: 12 / 1472
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Normal",
  23324. height: math.unit(1 + 6 / 12, "feet"),
  23325. default: true
  23326. },
  23327. ]
  23328. ))
  23329. characterMakers.push(() => makeCharacter(
  23330. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23331. {
  23332. front: {
  23333. height: math.unit(6 + 2 / 12, "feet"),
  23334. weight: math.unit(160, "lb"),
  23335. name: "Front",
  23336. image: {
  23337. source: "./media/characters/ariam/front.svg",
  23338. extra: 714 / 617,
  23339. bottom: 23.4 / 737,
  23340. }
  23341. },
  23342. squatting: {
  23343. height: math.unit(4.1, "feet"),
  23344. weight: math.unit(160, "lb"),
  23345. name: "Squatting",
  23346. image: {
  23347. source: "./media/characters/ariam/squatting.svg",
  23348. extra: 2617 / 2112,
  23349. bottom: 61.2 / 2681,
  23350. }
  23351. },
  23352. },
  23353. [
  23354. {
  23355. name: "Normal",
  23356. height: math.unit(6 + 2 / 12, "feet"),
  23357. default: true
  23358. },
  23359. {
  23360. name: "Normal+",
  23361. height: math.unit(4, "meters")
  23362. },
  23363. {
  23364. name: "Macro",
  23365. height: math.unit(50, "meters")
  23366. },
  23367. {
  23368. name: "Macro+",
  23369. height: math.unit(100, "meters")
  23370. },
  23371. {
  23372. name: "Megamacro",
  23373. height: math.unit(20, "km")
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23379. {
  23380. front: {
  23381. height: math.unit(1.67, "meters"),
  23382. weight: math.unit(140, "lb"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23386. extra: 438 / 410,
  23387. bottom: 0.75 / 439
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Shrunken",
  23394. height: math.unit(7.6, "cm")
  23395. },
  23396. {
  23397. name: "Human Scale",
  23398. height: math.unit(1.67, "meters")
  23399. },
  23400. {
  23401. name: "Wolxi Scale",
  23402. height: math.unit(36.7, "meters"),
  23403. default: true
  23404. },
  23405. ]
  23406. ))
  23407. characterMakers.push(() => makeCharacter(
  23408. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23409. {
  23410. front: {
  23411. height: math.unit(1.73, "meters"),
  23412. weight: math.unit(240, "lb"),
  23413. name: "Front",
  23414. image: {
  23415. source: "./media/characters/izue-two-mothers/front.svg",
  23416. extra: 469 / 437,
  23417. bottom: 1.24 / 470.6
  23418. }
  23419. },
  23420. },
  23421. [
  23422. {
  23423. name: "Shrunken",
  23424. height: math.unit(7.86, "cm")
  23425. },
  23426. {
  23427. name: "Human Scale",
  23428. height: math.unit(1.73, "meters")
  23429. },
  23430. {
  23431. name: "Wolxi Scale",
  23432. height: math.unit(38, "meters"),
  23433. default: true
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23439. {
  23440. front: {
  23441. height: math.unit(1.55, "meters"),
  23442. weight: math.unit(120, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/teeku-love-shack/front.svg",
  23446. extra: 387 / 362,
  23447. bottom: 1.51 / 388
  23448. }
  23449. },
  23450. },
  23451. [
  23452. {
  23453. name: "Shrunken",
  23454. height: math.unit(7, "cm")
  23455. },
  23456. {
  23457. name: "Human Scale",
  23458. height: math.unit(1.55, "meters")
  23459. },
  23460. {
  23461. name: "Wolxi Scale",
  23462. height: math.unit(34.1, "meters"),
  23463. default: true
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23469. {
  23470. front: {
  23471. height: math.unit(1.83, "meters"),
  23472. weight: math.unit(135, "lb"),
  23473. name: "Front",
  23474. image: {
  23475. source: "./media/characters/dejma-the-red/front.svg",
  23476. extra: 480 / 458,
  23477. bottom: 1.8 / 482
  23478. }
  23479. },
  23480. },
  23481. [
  23482. {
  23483. name: "Shrunken",
  23484. height: math.unit(8.3, "cm")
  23485. },
  23486. {
  23487. name: "Human Scale",
  23488. height: math.unit(1.83, "meters")
  23489. },
  23490. {
  23491. name: "Wolxi Scale",
  23492. height: math.unit(40, "meters"),
  23493. default: true
  23494. },
  23495. ]
  23496. ))
  23497. characterMakers.push(() => makeCharacter(
  23498. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23499. {
  23500. front: {
  23501. height: math.unit(1.78, "meters"),
  23502. weight: math.unit(65, "kg"),
  23503. name: "Front",
  23504. image: {
  23505. source: "./media/characters/aki/front.svg",
  23506. extra: 452 / 415
  23507. }
  23508. },
  23509. frontNsfw: {
  23510. height: math.unit(1.78, "meters"),
  23511. weight: math.unit(65, "kg"),
  23512. name: "Front (NSFW)",
  23513. image: {
  23514. source: "./media/characters/aki/front-nsfw.svg",
  23515. extra: 452 / 415
  23516. }
  23517. },
  23518. back: {
  23519. height: math.unit(1.78, "meters"),
  23520. weight: math.unit(65, "kg"),
  23521. name: "Back",
  23522. image: {
  23523. source: "./media/characters/aki/back.svg",
  23524. extra: 452 / 415
  23525. }
  23526. },
  23527. rump: {
  23528. height: math.unit(2.05, "feet"),
  23529. name: "Rump",
  23530. image: {
  23531. source: "./media/characters/aki/rump.svg"
  23532. }
  23533. },
  23534. dick: {
  23535. height: math.unit(0.95, "feet"),
  23536. name: "Dick",
  23537. image: {
  23538. source: "./media/characters/aki/dick.svg"
  23539. }
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Micro",
  23545. height: math.unit(15, "cm")
  23546. },
  23547. {
  23548. name: "Normal",
  23549. height: math.unit(178, "cm"),
  23550. default: true
  23551. },
  23552. {
  23553. name: "Macro",
  23554. height: math.unit(214, "m")
  23555. },
  23556. {
  23557. name: "Macro+",
  23558. height: math.unit(534, "m")
  23559. },
  23560. ]
  23561. ))
  23562. characterMakers.push(() => makeCharacter(
  23563. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23564. {
  23565. front: {
  23566. height: math.unit(5 + 5 / 12, "feet"),
  23567. weight: math.unit(120, "lb"),
  23568. name: "Front",
  23569. image: {
  23570. source: "./media/characters/ari/front.svg",
  23571. extra: 714.5 / 682,
  23572. bottom: 8 / 722.5
  23573. }
  23574. },
  23575. },
  23576. [
  23577. {
  23578. name: "Normal",
  23579. height: math.unit(5 + 5 / 12, "feet")
  23580. },
  23581. {
  23582. name: "Macro",
  23583. height: math.unit(100, "feet"),
  23584. default: true
  23585. },
  23586. {
  23587. name: "Megamacro",
  23588. height: math.unit(100, "miles")
  23589. },
  23590. {
  23591. name: "Gigamacro",
  23592. height: math.unit(80000, "miles")
  23593. },
  23594. ]
  23595. ))
  23596. characterMakers.push(() => makeCharacter(
  23597. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23598. {
  23599. side: {
  23600. height: math.unit(9, "feet"),
  23601. weight: math.unit(400, "kg"),
  23602. name: "Side",
  23603. image: {
  23604. source: "./media/characters/bolt/side.svg",
  23605. extra: 1126 / 896,
  23606. bottom: 60 / 1187.3,
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Micro",
  23613. height: math.unit(5, "inches")
  23614. },
  23615. {
  23616. name: "Normal",
  23617. height: math.unit(9, "feet"),
  23618. default: true
  23619. },
  23620. {
  23621. name: "Macro",
  23622. height: math.unit(700, "feet")
  23623. },
  23624. {
  23625. name: "Max Size",
  23626. height: math.unit(1.52e22, "yottameters")
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23632. {
  23633. front: {
  23634. height: math.unit(4.53, "meters"),
  23635. weight: math.unit(3, "tons"),
  23636. name: "Front",
  23637. image: {
  23638. source: "./media/characters/draekon-sylviar/front.svg",
  23639. extra: 1228 / 1068,
  23640. bottom: 41 / 1270
  23641. }
  23642. },
  23643. tail: {
  23644. height: math.unit(1.772, "meter"),
  23645. name: "Tail",
  23646. image: {
  23647. source: "./media/characters/draekon-sylviar/tail.svg"
  23648. }
  23649. },
  23650. head: {
  23651. height: math.unit(1.331, "meter"),
  23652. name: "Head",
  23653. image: {
  23654. source: "./media/characters/draekon-sylviar/head.svg"
  23655. }
  23656. },
  23657. hand: {
  23658. height: math.unit(0.564, "meter"),
  23659. name: "Hand",
  23660. image: {
  23661. source: "./media/characters/draekon-sylviar/hand.svg"
  23662. }
  23663. },
  23664. foot: {
  23665. height: math.unit(0.621, "meter"),
  23666. name: "Foot",
  23667. image: {
  23668. source: "./media/characters/draekon-sylviar/foot.svg",
  23669. bottom: 32 / 324
  23670. }
  23671. },
  23672. dick: {
  23673. height: math.unit(61, "cm"),
  23674. name: "Dick",
  23675. image: {
  23676. source: "./media/characters/draekon-sylviar/dick.svg"
  23677. }
  23678. },
  23679. dickseparated: {
  23680. height: math.unit(61, "cm"),
  23681. name: "Dick-separated",
  23682. image: {
  23683. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Small",
  23690. height: math.unit(4.53 / 2, "meters"),
  23691. default: true
  23692. },
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(4.53, "meters"),
  23696. default: true
  23697. },
  23698. {
  23699. name: "Large",
  23700. height: math.unit(4.53 * 2, "meters"),
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23706. {
  23707. front: {
  23708. height: math.unit(6 + 2 / 12, "feet"),
  23709. weight: math.unit(180, "lb"),
  23710. name: "Front",
  23711. image: {
  23712. source: "./media/characters/brawler/front.svg",
  23713. extra: 3301 / 3027,
  23714. bottom: 138 / 3439
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Normal",
  23721. height: math.unit(6 + 2 / 12, "feet"),
  23722. default: true
  23723. },
  23724. ]
  23725. ))
  23726. characterMakers.push(() => makeCharacter(
  23727. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23728. {
  23729. front: {
  23730. height: math.unit(11, "feet"),
  23731. weight: math.unit(1000, "lb"),
  23732. name: "Front",
  23733. image: {
  23734. source: "./media/characters/alex/front.svg",
  23735. bottom: 44.5 / 620
  23736. }
  23737. },
  23738. },
  23739. [
  23740. {
  23741. name: "Micro",
  23742. height: math.unit(5, "inches")
  23743. },
  23744. {
  23745. name: "Normal",
  23746. height: math.unit(11, "feet"),
  23747. default: true
  23748. },
  23749. {
  23750. name: "Macro",
  23751. height: math.unit(9.5e9, "feet")
  23752. },
  23753. {
  23754. name: "Max Size",
  23755. height: math.unit(1.4e283, "yottameters")
  23756. },
  23757. ]
  23758. ))
  23759. characterMakers.push(() => makeCharacter(
  23760. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23761. {
  23762. female: {
  23763. height: math.unit(29.9, "m"),
  23764. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23765. name: "Female",
  23766. image: {
  23767. source: "./media/characters/zenari/female.svg",
  23768. extra: 3281.6 / 3217,
  23769. bottom: 72.2 / 3353
  23770. }
  23771. },
  23772. male: {
  23773. height: math.unit(27.7, "m"),
  23774. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23775. name: "Male",
  23776. image: {
  23777. source: "./media/characters/zenari/male.svg",
  23778. extra: 3008 / 2991,
  23779. bottom: 54.6 / 3069
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Macro",
  23786. height: math.unit(29.7, "meters"),
  23787. default: true
  23788. },
  23789. ]
  23790. ))
  23791. characterMakers.push(() => makeCharacter(
  23792. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23793. {
  23794. female: {
  23795. height: math.unit(23.8, "m"),
  23796. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23797. name: "Female",
  23798. image: {
  23799. source: "./media/characters/mactarian/female.svg",
  23800. extra: 2662 / 2569,
  23801. bottom: 73 / 2736
  23802. }
  23803. },
  23804. male: {
  23805. height: math.unit(23.8, "m"),
  23806. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23807. name: "Male",
  23808. image: {
  23809. source: "./media/characters/mactarian/male.svg",
  23810. extra: 2673 / 2600,
  23811. bottom: 76 / 2750
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Macro",
  23818. height: math.unit(23.8, "meters"),
  23819. default: true
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23825. {
  23826. female: {
  23827. height: math.unit(19.3, "m"),
  23828. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23829. name: "Female",
  23830. image: {
  23831. source: "./media/characters/umok/female.svg",
  23832. extra: 2186 / 2078,
  23833. bottom: 87 / 2277
  23834. }
  23835. },
  23836. male: {
  23837. height: math.unit(19.5, "m"),
  23838. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23839. name: "Male",
  23840. image: {
  23841. source: "./media/characters/umok/male.svg",
  23842. extra: 2233 / 2140,
  23843. bottom: 24.4 / 2258
  23844. }
  23845. },
  23846. },
  23847. [
  23848. {
  23849. name: "Macro",
  23850. height: math.unit(19.3, "meters"),
  23851. default: true
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23857. {
  23858. female: {
  23859. height: math.unit(26.15, "m"),
  23860. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23861. name: "Female",
  23862. image: {
  23863. source: "./media/characters/joraxian/female.svg",
  23864. extra: 2912 / 2824,
  23865. bottom: 36 / 2956
  23866. }
  23867. },
  23868. male: {
  23869. height: math.unit(25.4, "m"),
  23870. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23871. name: "Male",
  23872. image: {
  23873. source: "./media/characters/joraxian/male.svg",
  23874. extra: 2877 / 2721,
  23875. bottom: 82 / 2967
  23876. }
  23877. },
  23878. },
  23879. [
  23880. {
  23881. name: "Macro",
  23882. height: math.unit(26.15, "meters"),
  23883. default: true
  23884. },
  23885. ]
  23886. ))
  23887. characterMakers.push(() => makeCharacter(
  23888. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23889. {
  23890. female: {
  23891. height: math.unit(21.6, "m"),
  23892. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23893. name: "Female",
  23894. image: {
  23895. source: "./media/characters/sthara/female.svg",
  23896. extra: 2516 / 2347,
  23897. bottom: 21.5 / 2537
  23898. }
  23899. },
  23900. male: {
  23901. height: math.unit(24, "m"),
  23902. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23903. name: "Male",
  23904. image: {
  23905. source: "./media/characters/sthara/male.svg",
  23906. extra: 2732 / 2607,
  23907. bottom: 23 / 2732
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Macro",
  23914. height: math.unit(21.6, "meters"),
  23915. default: true
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23921. {
  23922. front: {
  23923. height: math.unit(6 + 4 / 12, "feet"),
  23924. weight: math.unit(175, "lb"),
  23925. name: "Front",
  23926. image: {
  23927. source: "./media/characters/luka-bryzant/front.svg",
  23928. extra: 311 / 289,
  23929. bottom: 4 / 315
  23930. }
  23931. },
  23932. back: {
  23933. height: math.unit(6 + 4 / 12, "feet"),
  23934. weight: math.unit(175, "lb"),
  23935. name: "Back",
  23936. image: {
  23937. source: "./media/characters/luka-bryzant/back.svg",
  23938. extra: 311 / 289,
  23939. bottom: 3.8 / 313.7
  23940. }
  23941. },
  23942. },
  23943. [
  23944. {
  23945. name: "Micro",
  23946. height: math.unit(10, "inches")
  23947. },
  23948. {
  23949. name: "Normal",
  23950. height: math.unit(6 + 4 / 12, "feet"),
  23951. default: true
  23952. },
  23953. {
  23954. name: "Large",
  23955. height: math.unit(12, "feet")
  23956. },
  23957. ]
  23958. ))
  23959. characterMakers.push(() => makeCharacter(
  23960. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23961. {
  23962. front: {
  23963. height: math.unit(5 + 7 / 12, "feet"),
  23964. weight: math.unit(185, "lb"),
  23965. name: "Front",
  23966. image: {
  23967. source: "./media/characters/aman-aquila/front.svg",
  23968. extra: 1013 / 976,
  23969. bottom: 45.6 / 1057
  23970. }
  23971. },
  23972. side: {
  23973. height: math.unit(5 + 7 / 12, "feet"),
  23974. weight: math.unit(185, "lb"),
  23975. name: "Side",
  23976. image: {
  23977. source: "./media/characters/aman-aquila/side.svg",
  23978. extra: 1054 / 1011,
  23979. bottom: 15 / 1070
  23980. }
  23981. },
  23982. back: {
  23983. height: math.unit(5 + 7 / 12, "feet"),
  23984. weight: math.unit(185, "lb"),
  23985. name: "Back",
  23986. image: {
  23987. source: "./media/characters/aman-aquila/back.svg",
  23988. extra: 1026 / 970,
  23989. bottom: 12 / 1039
  23990. }
  23991. },
  23992. head: {
  23993. height: math.unit(1.211, "feet"),
  23994. name: "Head",
  23995. image: {
  23996. source: "./media/characters/aman-aquila/head.svg",
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Minimicro",
  24003. height: math.unit(0.057, "inches")
  24004. },
  24005. {
  24006. name: "Micro",
  24007. height: math.unit(7, "inches")
  24008. },
  24009. {
  24010. name: "Mini",
  24011. height: math.unit(3 + 7 / 12, "feet")
  24012. },
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(5 + 7 / 12, "feet"),
  24016. default: true
  24017. },
  24018. {
  24019. name: "Macro",
  24020. height: math.unit(157 + 7 / 12, "feet")
  24021. },
  24022. {
  24023. name: "Megamacro",
  24024. height: math.unit(1557 + 7 / 12, "feet")
  24025. },
  24026. {
  24027. name: "Gigamacro",
  24028. height: math.unit(15557 + 7 / 12, "feet")
  24029. },
  24030. ]
  24031. ))
  24032. characterMakers.push(() => makeCharacter(
  24033. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24034. {
  24035. front: {
  24036. height: math.unit(3 + 2 / 12, "inches"),
  24037. weight: math.unit(0.3, "ounces"),
  24038. name: "Front",
  24039. image: {
  24040. source: "./media/characters/hiphae/front.svg",
  24041. extra: 1931 / 1683,
  24042. bottom: 24 / 1955
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(3 + 1 / 2, "inches"),
  24050. default: true
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24056. {
  24057. front: {
  24058. height: math.unit(5 + 10 / 12, "feet"),
  24059. weight: math.unit(165, "lb"),
  24060. name: "Front",
  24061. image: {
  24062. source: "./media/characters/nicky/front.svg",
  24063. extra: 3144 / 2886,
  24064. bottom: 45.6 / 3192
  24065. }
  24066. },
  24067. back: {
  24068. height: math.unit(5 + 10 / 12, "feet"),
  24069. weight: math.unit(165, "lb"),
  24070. name: "Back",
  24071. image: {
  24072. source: "./media/characters/nicky/back.svg",
  24073. extra: 3055 / 2804,
  24074. bottom: 28.4 / 3087
  24075. }
  24076. },
  24077. frontclothed: {
  24078. height: math.unit(5 + 10 / 12, "feet"),
  24079. weight: math.unit(165, "lb"),
  24080. name: "Front-clothed",
  24081. image: {
  24082. source: "./media/characters/nicky/front-clothed.svg",
  24083. extra: 3184.9 / 2926.9,
  24084. bottom: 86.5 / 3239.9
  24085. }
  24086. },
  24087. foot: {
  24088. height: math.unit(1.16, "feet"),
  24089. name: "Foot",
  24090. image: {
  24091. source: "./media/characters/nicky/foot.svg"
  24092. }
  24093. },
  24094. feet: {
  24095. height: math.unit(1.34, "feet"),
  24096. name: "Feet",
  24097. image: {
  24098. source: "./media/characters/nicky/feet.svg"
  24099. }
  24100. },
  24101. maw: {
  24102. height: math.unit(0.9, "feet"),
  24103. name: "Maw",
  24104. image: {
  24105. source: "./media/characters/nicky/maw.svg"
  24106. }
  24107. },
  24108. },
  24109. [
  24110. {
  24111. name: "Normal",
  24112. height: math.unit(5 + 10 / 12, "feet"),
  24113. default: true
  24114. },
  24115. {
  24116. name: "Macro",
  24117. height: math.unit(60, "feet")
  24118. },
  24119. {
  24120. name: "Megamacro",
  24121. height: math.unit(1, "mile")
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24127. {
  24128. side: {
  24129. height: math.unit(10, "feet"),
  24130. weight: math.unit(600, "lb"),
  24131. name: "Side",
  24132. image: {
  24133. source: "./media/characters/blair/side.svg",
  24134. bottom: 16.6 / 475,
  24135. extra: 458 / 431
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Micro",
  24142. height: math.unit(8, "inches")
  24143. },
  24144. {
  24145. name: "Normal",
  24146. height: math.unit(10, "feet"),
  24147. default: true
  24148. },
  24149. {
  24150. name: "Macro",
  24151. height: math.unit(180, "feet")
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24157. {
  24158. front: {
  24159. height: math.unit(5 + 4 / 12, "feet"),
  24160. weight: math.unit(125, "lb"),
  24161. name: "Front",
  24162. image: {
  24163. source: "./media/characters/fisher/front.svg",
  24164. extra: 444 / 390,
  24165. bottom: 2 / 444.8
  24166. }
  24167. },
  24168. },
  24169. [
  24170. {
  24171. name: "Micro",
  24172. height: math.unit(4, "inches")
  24173. },
  24174. {
  24175. name: "Normal",
  24176. height: math.unit(5 + 4 / 12, "feet"),
  24177. default: true
  24178. },
  24179. {
  24180. name: "Macro",
  24181. height: math.unit(100, "feet")
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24187. {
  24188. front: {
  24189. height: math.unit(6.71, "feet"),
  24190. weight: math.unit(200, "lb"),
  24191. capacity: math.unit(1000000, "people"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/gliss/front.svg",
  24195. extra: 2347 / 2231,
  24196. bottom: 113 / 2462
  24197. }
  24198. },
  24199. hammerspaceSize: {
  24200. height: math.unit(6.71 * 717, "feet"),
  24201. weight: math.unit(200, "lb"),
  24202. capacity: math.unit(1000000, "people"),
  24203. name: "Hammerspace Size",
  24204. image: {
  24205. source: "./media/characters/gliss/front.svg",
  24206. extra: 2347 / 2231,
  24207. bottom: 113 / 2462
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Normal",
  24214. height: math.unit(6.71, "feet"),
  24215. default: true
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24221. {
  24222. side: {
  24223. height: math.unit(1.44, "m"),
  24224. weight: math.unit(80, "kg"),
  24225. name: "Side",
  24226. image: {
  24227. source: "./media/characters/dune-anderson/side.svg",
  24228. bottom: 49 / 1426
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Wolf-sized",
  24235. height: math.unit(1.44, "meters")
  24236. },
  24237. {
  24238. name: "Normal",
  24239. height: math.unit(5.05, "meters"),
  24240. default: true
  24241. },
  24242. {
  24243. name: "Big",
  24244. height: math.unit(14.4, "meters")
  24245. },
  24246. {
  24247. name: "Huge",
  24248. height: math.unit(144, "meters")
  24249. },
  24250. ]
  24251. ))
  24252. characterMakers.push(() => makeCharacter(
  24253. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24254. {
  24255. front: {
  24256. height: math.unit(7, "feet"),
  24257. weight: math.unit(425, "lb"),
  24258. name: "Front",
  24259. image: {
  24260. source: "./media/characters/hind/front.svg",
  24261. extra: 2091 / 1860,
  24262. bottom: 129 / 2220
  24263. }
  24264. },
  24265. back: {
  24266. height: math.unit(7, "feet"),
  24267. weight: math.unit(425, "lb"),
  24268. name: "Back",
  24269. image: {
  24270. source: "./media/characters/hind/back.svg",
  24271. extra: 2091 / 1860,
  24272. bottom: 24.6 / 2309
  24273. }
  24274. },
  24275. tail: {
  24276. height: math.unit(2.8, "feet"),
  24277. name: "Tail",
  24278. image: {
  24279. source: "./media/characters/hind/tail.svg"
  24280. }
  24281. },
  24282. head: {
  24283. height: math.unit(2.55, "feet"),
  24284. name: "Head",
  24285. image: {
  24286. source: "./media/characters/hind/head.svg"
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "XS",
  24293. height: math.unit(0.7, "feet")
  24294. },
  24295. {
  24296. name: "Normal",
  24297. height: math.unit(7, "feet"),
  24298. default: true
  24299. },
  24300. {
  24301. name: "XL",
  24302. height: math.unit(70, "feet")
  24303. },
  24304. ]
  24305. ))
  24306. characterMakers.push(() => makeCharacter(
  24307. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24308. {
  24309. front: {
  24310. height: math.unit(6, "feet"),
  24311. weight: math.unit(150, "lb"),
  24312. name: "Front",
  24313. image: {
  24314. source: "./media/characters/dylan-skaven/front.svg",
  24315. extra: 2318 / 2063,
  24316. bottom: 93.4 / 2410
  24317. }
  24318. },
  24319. },
  24320. [
  24321. {
  24322. name: "Nano",
  24323. height: math.unit(1, "mm")
  24324. },
  24325. {
  24326. name: "Micro",
  24327. height: math.unit(1, "cm")
  24328. },
  24329. {
  24330. name: "Normal",
  24331. height: math.unit(2.1, "meters"),
  24332. default: true
  24333. },
  24334. ]
  24335. ))
  24336. characterMakers.push(() => makeCharacter(
  24337. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24338. {
  24339. front: {
  24340. height: math.unit(7 + 5 / 12, "feet"),
  24341. weight: math.unit(357, "lb"),
  24342. name: "Front",
  24343. image: {
  24344. source: "./media/characters/solex-draconov/front.svg",
  24345. extra: 1993 / 1865,
  24346. bottom: 117 / 2111
  24347. }
  24348. },
  24349. },
  24350. [
  24351. {
  24352. name: "Natural Height",
  24353. height: math.unit(7 + 5 / 12, "feet"),
  24354. default: true
  24355. },
  24356. {
  24357. name: "Macro",
  24358. height: math.unit(350, "feet")
  24359. },
  24360. {
  24361. name: "Macro+",
  24362. height: math.unit(1000, "feet")
  24363. },
  24364. {
  24365. name: "Megamacro",
  24366. height: math.unit(20, "km")
  24367. },
  24368. {
  24369. name: "Megamacro+",
  24370. height: math.unit(1000, "km")
  24371. },
  24372. {
  24373. name: "Gigamacro",
  24374. height: math.unit(2.5, "Gm")
  24375. },
  24376. {
  24377. name: "Teramacro",
  24378. height: math.unit(15, "Tm")
  24379. },
  24380. {
  24381. name: "Galactic",
  24382. height: math.unit(30, "Zm")
  24383. },
  24384. {
  24385. name: "Universal",
  24386. height: math.unit(21000, "Ym")
  24387. },
  24388. {
  24389. name: "Omniversal",
  24390. height: math.unit(9.861e50, "Ym")
  24391. },
  24392. {
  24393. name: "Existential",
  24394. height: math.unit(1e300, "meters")
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24400. {
  24401. side: {
  24402. height: math.unit(25, "feet"),
  24403. weight: math.unit(90000, "lb"),
  24404. name: "Side",
  24405. image: {
  24406. source: "./media/characters/mandarax/side.svg",
  24407. extra: 614 / 332,
  24408. bottom: 55 / 630
  24409. }
  24410. },
  24411. head: {
  24412. height: math.unit(11.4, "feet"),
  24413. name: "Head",
  24414. image: {
  24415. source: "./media/characters/mandarax/head.svg"
  24416. }
  24417. },
  24418. belly: {
  24419. height: math.unit(33, "feet"),
  24420. name: "Belly",
  24421. capacity: math.unit(500, "people"),
  24422. image: {
  24423. source: "./media/characters/mandarax/belly.svg"
  24424. }
  24425. },
  24426. dick: {
  24427. height: math.unit(8.46, "feet"),
  24428. name: "Dick",
  24429. image: {
  24430. source: "./media/characters/mandarax/dick.svg"
  24431. }
  24432. },
  24433. top: {
  24434. height: math.unit(28, "meters"),
  24435. name: "Top",
  24436. image: {
  24437. source: "./media/characters/mandarax/top.svg"
  24438. }
  24439. },
  24440. },
  24441. [
  24442. {
  24443. name: "Normal",
  24444. height: math.unit(25, "feet"),
  24445. default: true
  24446. },
  24447. ]
  24448. ))
  24449. characterMakers.push(() => makeCharacter(
  24450. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24451. {
  24452. front: {
  24453. height: math.unit(5, "feet"),
  24454. weight: math.unit(90, "lb"),
  24455. name: "Front",
  24456. image: {
  24457. source: "./media/characters/pixil/front.svg",
  24458. extra: 2000 / 1618,
  24459. bottom: 12.3 / 2011
  24460. }
  24461. },
  24462. },
  24463. [
  24464. {
  24465. name: "Normal",
  24466. height: math.unit(5, "feet"),
  24467. default: true
  24468. },
  24469. {
  24470. name: "Megamacro",
  24471. height: math.unit(10, "miles"),
  24472. },
  24473. ]
  24474. ))
  24475. characterMakers.push(() => makeCharacter(
  24476. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24477. {
  24478. front: {
  24479. height: math.unit(7 + 2 / 12, "feet"),
  24480. weight: math.unit(200, "lb"),
  24481. name: "Front",
  24482. image: {
  24483. source: "./media/characters/angel/front.svg",
  24484. extra: 1830 / 1737,
  24485. bottom: 22.6 / 1854,
  24486. }
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Normal",
  24492. height: math.unit(7 + 2 / 12, "feet"),
  24493. default: true
  24494. },
  24495. {
  24496. name: "Macro",
  24497. height: math.unit(1000, "feet")
  24498. },
  24499. {
  24500. name: "Megamacro",
  24501. height: math.unit(2, "miles")
  24502. },
  24503. {
  24504. name: "Gigamacro",
  24505. height: math.unit(20, "earths")
  24506. },
  24507. ]
  24508. ))
  24509. characterMakers.push(() => makeCharacter(
  24510. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24511. {
  24512. front: {
  24513. height: math.unit(5, "feet"),
  24514. weight: math.unit(180, "lb"),
  24515. name: "Front",
  24516. image: {
  24517. source: "./media/characters/mekana/front.svg",
  24518. extra: 1671 / 1605,
  24519. bottom: 3.5 / 1691
  24520. }
  24521. },
  24522. side: {
  24523. height: math.unit(5, "feet"),
  24524. weight: math.unit(180, "lb"),
  24525. name: "Side",
  24526. image: {
  24527. source: "./media/characters/mekana/side.svg",
  24528. extra: 1671 / 1605,
  24529. bottom: 3.5 / 1691
  24530. }
  24531. },
  24532. back: {
  24533. height: math.unit(5, "feet"),
  24534. weight: math.unit(180, "lb"),
  24535. name: "Back",
  24536. image: {
  24537. source: "./media/characters/mekana/back.svg",
  24538. extra: 1671 / 1605,
  24539. bottom: 3.5 / 1691
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Normal",
  24546. height: math.unit(5, "feet"),
  24547. default: true
  24548. },
  24549. ]
  24550. ))
  24551. characterMakers.push(() => makeCharacter(
  24552. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24553. {
  24554. front: {
  24555. height: math.unit(4 + 6 / 12, "feet"),
  24556. weight: math.unit(80, "lb"),
  24557. name: "Front",
  24558. image: {
  24559. source: "./media/characters/pixie/front.svg",
  24560. extra: 1924 / 1825,
  24561. bottom: 22.4 / 1946
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Normal",
  24568. height: math.unit(4 + 6 / 12, "feet"),
  24569. default: true
  24570. },
  24571. {
  24572. name: "Macro",
  24573. height: math.unit(40, "feet")
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24579. {
  24580. front: {
  24581. height: math.unit(2.1, "meters"),
  24582. weight: math.unit(200, "lb"),
  24583. name: "Front",
  24584. image: {
  24585. source: "./media/characters/the-lascivious/front.svg",
  24586. extra: 1 / 0.893,
  24587. bottom: 3.5 / 573.7
  24588. }
  24589. },
  24590. },
  24591. [
  24592. {
  24593. name: "Human Scale",
  24594. height: math.unit(2.1, "meters")
  24595. },
  24596. {
  24597. name: "Wolxi Scale",
  24598. height: math.unit(46.2, "m"),
  24599. default: true
  24600. },
  24601. {
  24602. name: "Boinker of Buildings",
  24603. height: math.unit(10, "km")
  24604. },
  24605. {
  24606. name: "Shagger of Skyscrapers",
  24607. height: math.unit(40, "km")
  24608. },
  24609. {
  24610. name: "Banger of Boroughs",
  24611. height: math.unit(4000, "km")
  24612. },
  24613. {
  24614. name: "Screwer of States",
  24615. height: math.unit(100000, "km")
  24616. },
  24617. {
  24618. name: "Pounder of Planets",
  24619. height: math.unit(2000000, "km")
  24620. },
  24621. ]
  24622. ))
  24623. characterMakers.push(() => makeCharacter(
  24624. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24625. {
  24626. front: {
  24627. height: math.unit(6, "feet"),
  24628. weight: math.unit(150, "lb"),
  24629. name: "Front",
  24630. image: {
  24631. source: "./media/characters/aj/front.svg",
  24632. extra: 2039 / 1562,
  24633. bottom: 40 / 2079
  24634. }
  24635. },
  24636. },
  24637. [
  24638. {
  24639. name: "Normal",
  24640. height: math.unit(11 + 6 / 12, "feet"),
  24641. default: true
  24642. },
  24643. {
  24644. name: "Megamacro",
  24645. height: math.unit(60, "megameters")
  24646. },
  24647. ]
  24648. ))
  24649. characterMakers.push(() => makeCharacter(
  24650. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24651. {
  24652. side: {
  24653. height: math.unit(31 + 8 / 12, "feet"),
  24654. weight: math.unit(75000, "kg"),
  24655. name: "Side",
  24656. image: {
  24657. source: "./media/characters/koros/side.svg",
  24658. extra: 1442 / 1297,
  24659. bottom: 122.7 / 1562
  24660. }
  24661. },
  24662. dicksKingsCrown: {
  24663. height: math.unit(6, "feet"),
  24664. name: "Dicks (King's Crown)",
  24665. image: {
  24666. source: "./media/characters/koros/dicks-kings-crown.svg"
  24667. }
  24668. },
  24669. dicksTailSet: {
  24670. height: math.unit(3, "feet"),
  24671. name: "Dicks (Tail Set)",
  24672. image: {
  24673. source: "./media/characters/koros/dicks-tail-set.svg"
  24674. }
  24675. },
  24676. dickCumming: {
  24677. height: math.unit(7.98, "feet"),
  24678. name: "Dick (Cumming)",
  24679. image: {
  24680. source: "./media/characters/koros/dick-cumming.svg"
  24681. }
  24682. },
  24683. dicksBack: {
  24684. height: math.unit(5.9, "feet"),
  24685. name: "Dicks (Back)",
  24686. image: {
  24687. source: "./media/characters/koros/dicks-back.svg"
  24688. }
  24689. },
  24690. dicksFront: {
  24691. height: math.unit(3.72, "feet"),
  24692. name: "Dicks (Front)",
  24693. image: {
  24694. source: "./media/characters/koros/dicks-front.svg"
  24695. }
  24696. },
  24697. dicksPeeking: {
  24698. height: math.unit(3.0, "feet"),
  24699. name: "Dicks (Peeking)",
  24700. image: {
  24701. source: "./media/characters/koros/dicks-peeking.svg"
  24702. }
  24703. },
  24704. eye: {
  24705. height: math.unit(1.7, "feet"),
  24706. name: "Eye",
  24707. image: {
  24708. source: "./media/characters/koros/eye.svg"
  24709. }
  24710. },
  24711. headFront: {
  24712. height: math.unit(11.69, "feet"),
  24713. name: "Head (Front)",
  24714. image: {
  24715. source: "./media/characters/koros/head-front.svg"
  24716. }
  24717. },
  24718. headSide: {
  24719. height: math.unit(14, "feet"),
  24720. name: "Head (Side)",
  24721. image: {
  24722. source: "./media/characters/koros/head-side.svg"
  24723. }
  24724. },
  24725. leg: {
  24726. height: math.unit(17, "feet"),
  24727. name: "Leg",
  24728. image: {
  24729. source: "./media/characters/koros/leg.svg"
  24730. }
  24731. },
  24732. mawSide: {
  24733. height: math.unit(12.8, "feet"),
  24734. name: "Maw (Side)",
  24735. image: {
  24736. source: "./media/characters/koros/maw-side.svg"
  24737. }
  24738. },
  24739. mawSpitting: {
  24740. height: math.unit(17, "feet"),
  24741. name: "Maw (Spitting)",
  24742. image: {
  24743. source: "./media/characters/koros/maw-spitting.svg"
  24744. }
  24745. },
  24746. slit: {
  24747. height: math.unit(2.8, "feet"),
  24748. name: "Slit",
  24749. image: {
  24750. source: "./media/characters/koros/slit.svg"
  24751. }
  24752. },
  24753. stomach: {
  24754. height: math.unit(6.8, "feet"),
  24755. capacity: math.unit(20, "people"),
  24756. name: "Stomach",
  24757. image: {
  24758. source: "./media/characters/koros/stomach.svg"
  24759. }
  24760. },
  24761. wingspanBottom: {
  24762. height: math.unit(114, "feet"),
  24763. name: "Wingspan (Bottom)",
  24764. image: {
  24765. source: "./media/characters/koros/wingspan-bottom.svg"
  24766. }
  24767. },
  24768. wingspanTop: {
  24769. height: math.unit(104, "feet"),
  24770. name: "Wingspan (Top)",
  24771. image: {
  24772. source: "./media/characters/koros/wingspan-top.svg"
  24773. }
  24774. },
  24775. },
  24776. [
  24777. {
  24778. name: "Normal",
  24779. height: math.unit(31 + 8 / 12, "feet"),
  24780. default: true
  24781. },
  24782. ]
  24783. ))
  24784. characterMakers.push(() => makeCharacter(
  24785. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24786. {
  24787. front: {
  24788. height: math.unit(18 + 5 / 12, "feet"),
  24789. weight: math.unit(3750, "kg"),
  24790. name: "Front",
  24791. image: {
  24792. source: "./media/characters/vexx/front.svg",
  24793. extra: 426 / 396,
  24794. bottom: 31.5 / 458
  24795. }
  24796. },
  24797. maw: {
  24798. height: math.unit(6, "feet"),
  24799. name: "Maw",
  24800. image: {
  24801. source: "./media/characters/vexx/maw.svg"
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Normal",
  24808. height: math.unit(18 + 5 / 12, "feet"),
  24809. default: true
  24810. },
  24811. ]
  24812. ))
  24813. characterMakers.push(() => makeCharacter(
  24814. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24815. {
  24816. front: {
  24817. height: math.unit(17 + 6 / 12, "feet"),
  24818. weight: math.unit(150, "lb"),
  24819. name: "Front",
  24820. image: {
  24821. source: "./media/characters/baadra/front.svg",
  24822. extra: 3137 / 2890,
  24823. bottom: 168.4 / 3305
  24824. }
  24825. },
  24826. back: {
  24827. height: math.unit(17 + 6 / 12, "feet"),
  24828. weight: math.unit(150, "lb"),
  24829. name: "Back",
  24830. image: {
  24831. source: "./media/characters/baadra/back.svg",
  24832. extra: 3142 / 2890,
  24833. bottom: 220 / 3371
  24834. }
  24835. },
  24836. head: {
  24837. height: math.unit(5.45, "feet"),
  24838. name: "Head",
  24839. image: {
  24840. source: "./media/characters/baadra/head.svg"
  24841. }
  24842. },
  24843. headAngry: {
  24844. height: math.unit(4.95, "feet"),
  24845. name: "Head (Angry)",
  24846. image: {
  24847. source: "./media/characters/baadra/head-angry.svg"
  24848. }
  24849. },
  24850. headOpen: {
  24851. height: math.unit(6, "feet"),
  24852. name: "Head (Open)",
  24853. image: {
  24854. source: "./media/characters/baadra/head-open.svg"
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(17 + 6 / 12, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(7 + 3 / 12, "feet"),
  24871. weight: math.unit(180, "lb"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/juri/front.svg",
  24875. extra: 1401 / 1237,
  24876. bottom: 18.5 / 1418
  24877. }
  24878. },
  24879. side: {
  24880. height: math.unit(7 + 3 / 12, "feet"),
  24881. weight: math.unit(180, "lb"),
  24882. name: "Side",
  24883. image: {
  24884. source: "./media/characters/juri/side.svg",
  24885. extra: 1424 / 1242,
  24886. bottom: 18.5 / 1447
  24887. }
  24888. },
  24889. sitting: {
  24890. height: math.unit(6, "feet"),
  24891. weight: math.unit(180, "lb"),
  24892. name: "Sitting",
  24893. image: {
  24894. source: "./media/characters/juri/sitting.svg",
  24895. extra: 1270 / 1143,
  24896. bottom: 100 / 1343
  24897. }
  24898. },
  24899. back: {
  24900. height: math.unit(7 + 3 / 12, "feet"),
  24901. weight: math.unit(180, "lb"),
  24902. name: "Back",
  24903. image: {
  24904. source: "./media/characters/juri/back.svg",
  24905. extra: 1377 / 1240,
  24906. bottom: 23.7 / 1405
  24907. }
  24908. },
  24909. maw: {
  24910. height: math.unit(2.8, "feet"),
  24911. name: "Maw",
  24912. image: {
  24913. source: "./media/characters/juri/maw.svg"
  24914. }
  24915. },
  24916. stomach: {
  24917. height: math.unit(0.89, "feet"),
  24918. capacity: math.unit(4, "liters"),
  24919. name: "Stomach",
  24920. image: {
  24921. source: "./media/characters/juri/stomach.svg"
  24922. }
  24923. },
  24924. },
  24925. [
  24926. {
  24927. name: "Normal",
  24928. height: math.unit(7 + 3 / 12, "feet"),
  24929. default: true
  24930. },
  24931. ]
  24932. ))
  24933. characterMakers.push(() => makeCharacter(
  24934. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24935. {
  24936. fox: {
  24937. height: math.unit(5 + 6 / 12, "feet"),
  24938. weight: math.unit(140, "lb"),
  24939. name: "Fox",
  24940. image: {
  24941. source: "./media/characters/maxene-sita/fox.svg",
  24942. extra: 146 / 138,
  24943. bottom: 2.1 / 148.19
  24944. }
  24945. },
  24946. foxLaying: {
  24947. height: math.unit(1.70, "feet"),
  24948. weight: math.unit(140, "lb"),
  24949. name: "Fox (Laying)",
  24950. image: {
  24951. source: "./media/characters/maxene-sita/fox-laying.svg",
  24952. extra: 910 / 572,
  24953. bottom: 71 / 981
  24954. }
  24955. },
  24956. kitsune: {
  24957. height: math.unit(10, "feet"),
  24958. weight: math.unit(800, "lb"),
  24959. name: "Kitsune",
  24960. image: {
  24961. source: "./media/characters/maxene-sita/kitsune.svg",
  24962. extra: 185 / 176,
  24963. bottom: 4.7 / 189.9
  24964. }
  24965. },
  24966. hellhound: {
  24967. height: math.unit(10, "feet"),
  24968. weight: math.unit(700, "lb"),
  24969. name: "Hellhound",
  24970. image: {
  24971. source: "./media/characters/maxene-sita/hellhound.svg",
  24972. extra: 1600 / 1545,
  24973. bottom: 81 / 1681
  24974. }
  24975. },
  24976. },
  24977. [
  24978. {
  24979. name: "Normal",
  24980. height: math.unit(5 + 6 / 12, "feet"),
  24981. default: true
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24987. {
  24988. front: {
  24989. height: math.unit(3 + 4 / 12, "feet"),
  24990. weight: math.unit(70, "lb"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/maia/front.svg",
  24994. extra: 227 / 219.5,
  24995. bottom: 40 / 267
  24996. }
  24997. },
  24998. back: {
  24999. height: math.unit(3 + 4 / 12, "feet"),
  25000. weight: math.unit(70, "lb"),
  25001. name: "Back",
  25002. image: {
  25003. source: "./media/characters/maia/back.svg",
  25004. extra: 237 / 225
  25005. }
  25006. },
  25007. },
  25008. [
  25009. {
  25010. name: "Normal",
  25011. height: math.unit(3 + 4 / 12, "feet"),
  25012. default: true
  25013. },
  25014. ]
  25015. ))
  25016. characterMakers.push(() => makeCharacter(
  25017. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25018. {
  25019. front: {
  25020. height: math.unit(5 + 10 / 12, "feet"),
  25021. weight: math.unit(197, "lb"),
  25022. name: "Front",
  25023. image: {
  25024. source: "./media/characters/jabaro/front.svg",
  25025. extra: 225 / 216,
  25026. bottom: 5.06 / 230
  25027. }
  25028. },
  25029. back: {
  25030. height: math.unit(5 + 10 / 12, "feet"),
  25031. weight: math.unit(197, "lb"),
  25032. name: "Back",
  25033. image: {
  25034. source: "./media/characters/jabaro/back.svg",
  25035. extra: 225 / 219,
  25036. bottom: 1.9 / 227
  25037. }
  25038. },
  25039. },
  25040. [
  25041. {
  25042. name: "Normal",
  25043. height: math.unit(5 + 10 / 12, "feet"),
  25044. default: true
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25050. {
  25051. front: {
  25052. height: math.unit(5 + 8 / 12, "feet"),
  25053. weight: math.unit(139, "lb"),
  25054. name: "Front",
  25055. image: {
  25056. source: "./media/characters/risa/front.svg",
  25057. extra: 270 / 260,
  25058. bottom: 11.2 / 282
  25059. }
  25060. },
  25061. back: {
  25062. height: math.unit(5 + 8 / 12, "feet"),
  25063. weight: math.unit(139, "lb"),
  25064. name: "Back",
  25065. image: {
  25066. source: "./media/characters/risa/back.svg",
  25067. extra: 264 / 255,
  25068. bottom: 4 / 268
  25069. }
  25070. },
  25071. },
  25072. [
  25073. {
  25074. name: "Normal",
  25075. height: math.unit(5 + 8 / 12, "feet"),
  25076. default: true
  25077. },
  25078. ]
  25079. ))
  25080. characterMakers.push(() => makeCharacter(
  25081. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25082. {
  25083. front: {
  25084. height: math.unit(2 + 11 / 12, "feet"),
  25085. weight: math.unit(30, "lb"),
  25086. name: "Front",
  25087. image: {
  25088. source: "./media/characters/weatley/front.svg",
  25089. bottom: 10.7 / 414,
  25090. extra: 403.5 / 362
  25091. }
  25092. },
  25093. back: {
  25094. height: math.unit(2 + 11 / 12, "feet"),
  25095. weight: math.unit(30, "lb"),
  25096. name: "Back",
  25097. image: {
  25098. source: "./media/characters/weatley/back.svg",
  25099. bottom: 10.7 / 414,
  25100. extra: 403.5 / 362
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Normal",
  25107. height: math.unit(2 + 11 / 12, "feet"),
  25108. default: true
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(5 + 2 / 12, "feet"),
  25117. weight: math.unit(50, "kg"),
  25118. name: "Front",
  25119. image: {
  25120. source: "./media/characters/mercury-crescent/front.svg",
  25121. extra: 1088 / 1033,
  25122. bottom: 18.9 / 1109
  25123. }
  25124. },
  25125. },
  25126. [
  25127. {
  25128. name: "Normal",
  25129. height: math.unit(5 + 2 / 12, "feet"),
  25130. default: true
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25136. {
  25137. front: {
  25138. height: math.unit(2, "feet"),
  25139. weight: math.unit(15, "kg"),
  25140. name: "Front",
  25141. image: {
  25142. source: "./media/characters/diamond-jones/front.svg",
  25143. bottom: 16 / 568
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Normal",
  25150. height: math.unit(2, "feet"),
  25151. default: true
  25152. },
  25153. ]
  25154. ))
  25155. characterMakers.push(() => makeCharacter(
  25156. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25157. {
  25158. front: {
  25159. height: math.unit(3, "feet"),
  25160. weight: math.unit(30, "kg"),
  25161. name: "Front",
  25162. image: {
  25163. source: "./media/characters/sweet-bit/front.svg",
  25164. extra: 675 / 567,
  25165. bottom: 27.7 / 703
  25166. }
  25167. },
  25168. },
  25169. [
  25170. {
  25171. name: "Normal",
  25172. height: math.unit(3, "feet"),
  25173. default: true
  25174. },
  25175. ]
  25176. ))
  25177. characterMakers.push(() => makeCharacter(
  25178. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25179. {
  25180. side: {
  25181. height: math.unit(9.178, "feet"),
  25182. weight: math.unit(500, "lb"),
  25183. name: "Side",
  25184. image: {
  25185. source: "./media/characters/umbrazen/side.svg",
  25186. extra: 1730 / 1473,
  25187. bottom: 34.6 / 1765
  25188. }
  25189. },
  25190. },
  25191. [
  25192. {
  25193. name: "Normal",
  25194. height: math.unit(9.178, "feet"),
  25195. default: true
  25196. },
  25197. ]
  25198. ))
  25199. characterMakers.push(() => makeCharacter(
  25200. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25201. {
  25202. front: {
  25203. height: math.unit(10, "feet"),
  25204. weight: math.unit(750, "lb"),
  25205. name: "Front",
  25206. image: {
  25207. source: "./media/characters/arlist/front.svg",
  25208. extra: 961 / 778,
  25209. bottom: 6.2 / 986
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Normal",
  25216. height: math.unit(10, "feet"),
  25217. default: true
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(5 + 1 / 12, "feet"),
  25226. weight: math.unit(110, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/aradel/front.svg",
  25230. extra: 324 / 303,
  25231. bottom: 3.6 / 329.4
  25232. }
  25233. },
  25234. },
  25235. [
  25236. {
  25237. name: "Normal",
  25238. height: math.unit(5 + 1 / 12, "feet"),
  25239. default: true
  25240. },
  25241. ]
  25242. ))
  25243. characterMakers.push(() => makeCharacter(
  25244. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25245. {
  25246. front: {
  25247. height: math.unit(3 + 8 / 12, "feet"),
  25248. weight: math.unit(50, "lb"),
  25249. name: "Front",
  25250. image: {
  25251. source: "./media/characters/serryn/front.svg",
  25252. extra: 1792 / 1656,
  25253. bottom: 43.5 / 1840
  25254. }
  25255. },
  25256. },
  25257. [
  25258. {
  25259. name: "Normal",
  25260. height: math.unit(3 + 8 / 12, "feet"),
  25261. default: true
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Xavier Thyme" },
  25267. {
  25268. front: {
  25269. height: math.unit(7 + 10 / 12, "feet"),
  25270. weight: math.unit(255, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/xavier-thyme/front.svg",
  25274. extra: 3733 / 3642,
  25275. bottom: 131 / 3869
  25276. }
  25277. },
  25278. frontRaven: {
  25279. height: math.unit(7 + 10 / 12, "feet"),
  25280. weight: math.unit(255, "lb"),
  25281. name: "Front (Raven)",
  25282. image: {
  25283. source: "./media/characters/xavier-thyme/front-raven.svg",
  25284. extra: 4385 / 3642,
  25285. bottom: 131 / 4517
  25286. }
  25287. },
  25288. },
  25289. [
  25290. {
  25291. name: "Normal",
  25292. height: math.unit(7 + 10 / 12, "feet"),
  25293. default: true
  25294. },
  25295. ]
  25296. ))
  25297. characterMakers.push(() => makeCharacter(
  25298. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25299. {
  25300. front: {
  25301. height: math.unit(1.6, "m"),
  25302. weight: math.unit(50, "kg"),
  25303. name: "Front",
  25304. image: {
  25305. source: "./media/characters/kiki/front.svg",
  25306. extra: 4682 / 3610,
  25307. bottom: 115 / 4777
  25308. }
  25309. },
  25310. },
  25311. [
  25312. {
  25313. name: "Normal",
  25314. height: math.unit(1.6, "meters"),
  25315. default: true
  25316. },
  25317. ]
  25318. ))
  25319. characterMakers.push(() => makeCharacter(
  25320. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25321. {
  25322. front: {
  25323. height: math.unit(50, "m"),
  25324. weight: math.unit(500, "tonnes"),
  25325. name: "Front",
  25326. image: {
  25327. source: "./media/characters/ryoko/front.svg",
  25328. extra: 4632 / 3926,
  25329. bottom: 193 / 4823
  25330. }
  25331. },
  25332. },
  25333. [
  25334. {
  25335. name: "Normal",
  25336. height: math.unit(50, "meters"),
  25337. default: true
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25343. {
  25344. front: {
  25345. height: math.unit(30, "m"),
  25346. weight: math.unit(22, "tonnes"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/elio/front.svg",
  25350. extra: 4582 / 3720,
  25351. bottom: 236 / 4828
  25352. }
  25353. },
  25354. },
  25355. [
  25356. {
  25357. name: "Normal",
  25358. height: math.unit(30, "meters"),
  25359. default: true
  25360. },
  25361. ]
  25362. ))
  25363. characterMakers.push(() => makeCharacter(
  25364. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25365. {
  25366. front: {
  25367. height: math.unit(6 + 3 / 12, "feet"),
  25368. weight: math.unit(120, "lb"),
  25369. name: "Front",
  25370. image: {
  25371. source: "./media/characters/azura/front.svg",
  25372. extra: 1149 / 1135,
  25373. bottom: 45 / 1194
  25374. }
  25375. },
  25376. frontClothed: {
  25377. height: math.unit(6 + 3 / 12, "feet"),
  25378. weight: math.unit(120, "lb"),
  25379. name: "Front (Clothed)",
  25380. image: {
  25381. source: "./media/characters/azura/front-clothed.svg",
  25382. extra: 1149 / 1135,
  25383. bottom: 45 / 1194
  25384. }
  25385. },
  25386. },
  25387. [
  25388. {
  25389. name: "Normal",
  25390. height: math.unit(6 + 3 / 12, "feet"),
  25391. default: true
  25392. },
  25393. {
  25394. name: "Macro",
  25395. height: math.unit(20 + 6 / 12, "feet")
  25396. },
  25397. {
  25398. name: "Megamacro",
  25399. height: math.unit(12, "miles")
  25400. },
  25401. {
  25402. name: "Gigamacro",
  25403. height: math.unit(10000, "miles")
  25404. },
  25405. {
  25406. name: "Teramacro",
  25407. height: math.unit(900000, "miles")
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25413. {
  25414. front: {
  25415. height: math.unit(12, "feet"),
  25416. weight: math.unit(1, "ton"),
  25417. capacity: math.unit(660000, "gallons"),
  25418. name: "Front",
  25419. image: {
  25420. source: "./media/characters/zeus/front.svg",
  25421. extra: 5005 / 4717,
  25422. bottom: 363 / 5388
  25423. }
  25424. },
  25425. },
  25426. [
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(12, "feet")
  25430. },
  25431. {
  25432. name: "Preferred Size",
  25433. height: math.unit(0.5, "miles"),
  25434. default: true
  25435. },
  25436. {
  25437. name: "Giga Horse",
  25438. height: math.unit(300, "miles")
  25439. },
  25440. {
  25441. name: "Riding Planets",
  25442. height: math.unit(30, "megameters")
  25443. },
  25444. {
  25445. name: "Cosmic Giant",
  25446. height: math.unit(3, "zettameters")
  25447. },
  25448. {
  25449. name: "Breeding God",
  25450. height: math.unit(9.92e22, "yottameters")
  25451. },
  25452. ]
  25453. ))
  25454. characterMakers.push(() => makeCharacter(
  25455. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25456. {
  25457. side: {
  25458. height: math.unit(9, "feet"),
  25459. weight: math.unit(1500, "kg"),
  25460. name: "Side",
  25461. image: {
  25462. source: "./media/characters/fang/side.svg",
  25463. extra: 924 / 866,
  25464. bottom: 47.5 / 972.3
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Normal",
  25471. height: math.unit(9, "feet"),
  25472. default: true
  25473. },
  25474. {
  25475. name: "Macro",
  25476. height: math.unit(75 + 6 / 12, "feet")
  25477. },
  25478. {
  25479. name: "Teramacro",
  25480. height: math.unit(50000, "miles")
  25481. },
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25486. {
  25487. front: {
  25488. height: math.unit(10, "feet"),
  25489. weight: math.unit(2, "tons"),
  25490. name: "Front",
  25491. image: {
  25492. source: "./media/characters/rekhit/front.svg",
  25493. extra: 2796 / 2590,
  25494. bottom: 225 / 3022
  25495. }
  25496. },
  25497. },
  25498. [
  25499. {
  25500. name: "Normal",
  25501. height: math.unit(10, "feet"),
  25502. default: true
  25503. },
  25504. {
  25505. name: "Macro",
  25506. height: math.unit(500, "feet")
  25507. },
  25508. ]
  25509. ))
  25510. characterMakers.push(() => makeCharacter(
  25511. { name: "Dahlia Verrick" },
  25512. {
  25513. front: {
  25514. height: math.unit(7 + 6.451 / 12, "feet"),
  25515. weight: math.unit(310, "lb"),
  25516. name: "Front",
  25517. image: {
  25518. source: "./media/characters/dahlia-verrick/front.svg",
  25519. extra: 1488 / 1365,
  25520. bottom: 6.2 / 1495
  25521. }
  25522. },
  25523. back: {
  25524. height: math.unit(7 + 6.451 / 12, "feet"),
  25525. weight: math.unit(310, "lb"),
  25526. name: "Back",
  25527. image: {
  25528. source: "./media/characters/dahlia-verrick/back.svg",
  25529. extra: 1472 / 1351,
  25530. bottom: 5.28 / 1477
  25531. }
  25532. },
  25533. frontBusiness: {
  25534. height: math.unit(7 + 6.451 / 12, "feet"),
  25535. weight: math.unit(200, "lb"),
  25536. name: "Front (Business)",
  25537. image: {
  25538. source: "./media/characters/dahlia-verrick/front-business.svg",
  25539. extra: 1478 / 1381,
  25540. bottom: 5.5 / 1484
  25541. }
  25542. },
  25543. frontCasual: {
  25544. height: math.unit(7 + 6.451 / 12, "feet"),
  25545. weight: math.unit(200, "lb"),
  25546. name: "Front (Casual)",
  25547. image: {
  25548. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25549. extra: 1478 / 1381,
  25550. bottom: 5.5 / 1484
  25551. }
  25552. },
  25553. },
  25554. [
  25555. {
  25556. name: "Travel-Sized",
  25557. height: math.unit(7.45, "inches")
  25558. },
  25559. {
  25560. name: "Normal",
  25561. height: math.unit(7 + 6.451 / 12, "feet"),
  25562. default: true
  25563. },
  25564. {
  25565. name: "Hitting the Town",
  25566. height: math.unit(37 + 8 / 12, "feet")
  25567. },
  25568. {
  25569. name: "Stomp in the Suburbs",
  25570. height: math.unit(964 + 9.728 / 12, "feet")
  25571. },
  25572. {
  25573. name: "Sit on the City",
  25574. height: math.unit(61747 + 10.592 / 12, "feet")
  25575. },
  25576. {
  25577. name: "Glomp the Globe",
  25578. height: math.unit(252919327 + 4.832 / 12, "feet")
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25584. {
  25585. front: {
  25586. height: math.unit(6 + 4 / 12, "feet"),
  25587. weight: math.unit(320, "lb"),
  25588. name: "Front",
  25589. image: {
  25590. source: "./media/characters/balina-mahigan/front.svg",
  25591. extra: 447 / 428,
  25592. bottom: 18 / 466
  25593. }
  25594. },
  25595. back: {
  25596. height: math.unit(6 + 4 / 12, "feet"),
  25597. weight: math.unit(320, "lb"),
  25598. name: "Back",
  25599. image: {
  25600. source: "./media/characters/balina-mahigan/back.svg",
  25601. extra: 445 / 428,
  25602. bottom: 4.07 / 448
  25603. }
  25604. },
  25605. arm: {
  25606. height: math.unit(1.88, "feet"),
  25607. name: "Arm",
  25608. image: {
  25609. source: "./media/characters/balina-mahigan/arm.svg"
  25610. }
  25611. },
  25612. backPort: {
  25613. height: math.unit(0.685, "feet"),
  25614. name: "Back Port",
  25615. image: {
  25616. source: "./media/characters/balina-mahigan/back-port.svg"
  25617. }
  25618. },
  25619. hoofpaw: {
  25620. height: math.unit(1.41, "feet"),
  25621. name: "Hoofpaw",
  25622. image: {
  25623. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25624. }
  25625. },
  25626. leftHandBack: {
  25627. height: math.unit(0.938, "feet"),
  25628. name: "Left Hand (Back)",
  25629. image: {
  25630. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25631. }
  25632. },
  25633. leftHandFront: {
  25634. height: math.unit(0.938, "feet"),
  25635. name: "Left Hand (Front)",
  25636. image: {
  25637. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25638. }
  25639. },
  25640. rightHandBack: {
  25641. height: math.unit(0.95, "feet"),
  25642. name: "Right Hand (Back)",
  25643. image: {
  25644. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25645. }
  25646. },
  25647. rightHandFront: {
  25648. height: math.unit(0.95, "feet"),
  25649. name: "Right Hand (Front)",
  25650. image: {
  25651. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25652. }
  25653. },
  25654. },
  25655. [
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(6 + 4 / 12, "feet"),
  25659. default: true
  25660. },
  25661. ]
  25662. ))
  25663. characterMakers.push(() => makeCharacter(
  25664. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25665. {
  25666. front: {
  25667. height: math.unit(6, "feet"),
  25668. weight: math.unit(320, "lb"),
  25669. name: "Front",
  25670. image: {
  25671. source: "./media/characters/balina-mejeri/front.svg",
  25672. extra: 517 / 488,
  25673. bottom: 44.2 / 561
  25674. }
  25675. },
  25676. },
  25677. [
  25678. {
  25679. name: "Normal",
  25680. height: math.unit(6 + 4 / 12, "feet")
  25681. },
  25682. {
  25683. name: "Business",
  25684. height: math.unit(155, "feet"),
  25685. default: true
  25686. },
  25687. ]
  25688. ))
  25689. characterMakers.push(() => makeCharacter(
  25690. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25691. {
  25692. kneeling: {
  25693. height: math.unit(6 + 4 / 12, "feet"),
  25694. weight: math.unit(300 * 20, "lb"),
  25695. name: "Kneeling",
  25696. image: {
  25697. source: "./media/characters/balbarian/kneeling.svg",
  25698. extra: 922 / 862,
  25699. bottom: 42.4 / 965
  25700. }
  25701. },
  25702. },
  25703. [
  25704. {
  25705. name: "Normal",
  25706. height: math.unit(6 + 4 / 12, "feet")
  25707. },
  25708. {
  25709. name: "Treasured",
  25710. height: math.unit(18 + 9 / 12, "feet"),
  25711. default: true
  25712. },
  25713. {
  25714. name: "Macro",
  25715. height: math.unit(900, "feet")
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25721. {
  25722. front: {
  25723. height: math.unit(6 + 4 / 12, "feet"),
  25724. weight: math.unit(325, "lb"),
  25725. name: "Front",
  25726. image: {
  25727. source: "./media/characters/balina-amarini/front.svg",
  25728. extra: 415 / 403,
  25729. bottom: 19 / 433.4
  25730. }
  25731. },
  25732. back: {
  25733. height: math.unit(6 + 4 / 12, "feet"),
  25734. weight: math.unit(325, "lb"),
  25735. name: "Back",
  25736. image: {
  25737. source: "./media/characters/balina-amarini/back.svg",
  25738. extra: 415 / 403,
  25739. bottom: 13.5 / 432
  25740. }
  25741. },
  25742. overdrive: {
  25743. height: math.unit(6 + 4 / 12, "feet"),
  25744. weight: math.unit(400, "lb"),
  25745. name: "Overdrive",
  25746. image: {
  25747. source: "./media/characters/balina-amarini/overdrive.svg",
  25748. extra: 269 / 259,
  25749. bottom: 12 / 282
  25750. }
  25751. },
  25752. },
  25753. [
  25754. {
  25755. name: "Boom",
  25756. height: math.unit(9 + 10 / 12, "feet"),
  25757. default: true
  25758. },
  25759. {
  25760. name: "Macro",
  25761. height: math.unit(280, "feet")
  25762. },
  25763. ]
  25764. ))
  25765. characterMakers.push(() => makeCharacter(
  25766. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25767. {
  25768. goddess: {
  25769. height: math.unit(600, "feet"),
  25770. weight: math.unit(2000000, "tons"),
  25771. name: "Goddess",
  25772. image: {
  25773. source: "./media/characters/lady-kubwa/goddess.svg",
  25774. extra: 1240.5 / 1223,
  25775. bottom: 22 / 1263
  25776. }
  25777. },
  25778. goddesser: {
  25779. height: math.unit(900, "feet"),
  25780. weight: math.unit(20000000, "lb"),
  25781. name: "Goddess-er",
  25782. image: {
  25783. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25784. extra: 899 / 888,
  25785. bottom: 12.6 / 912
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Macro",
  25792. height: math.unit(600, "feet"),
  25793. default: true
  25794. },
  25795. {
  25796. name: "Megamacro",
  25797. height: math.unit(250, "miles")
  25798. },
  25799. ]
  25800. ))
  25801. characterMakers.push(() => makeCharacter(
  25802. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25803. {
  25804. front: {
  25805. height: math.unit(7 + 7 / 12, "feet"),
  25806. weight: math.unit(250, "lb"),
  25807. name: "Front",
  25808. image: {
  25809. source: "./media/characters/tala-grovehorn/front.svg",
  25810. extra: 2636 / 2525,
  25811. bottom: 147 / 2781
  25812. }
  25813. },
  25814. back: {
  25815. height: math.unit(7 + 7 / 12, "feet"),
  25816. weight: math.unit(250, "lb"),
  25817. name: "Back",
  25818. image: {
  25819. source: "./media/characters/tala-grovehorn/back.svg",
  25820. extra: 2635 / 2539,
  25821. bottom: 100 / 2732.8
  25822. }
  25823. },
  25824. mouth: {
  25825. height: math.unit(1.15, "feet"),
  25826. name: "Mouth",
  25827. image: {
  25828. source: "./media/characters/tala-grovehorn/mouth.svg"
  25829. }
  25830. },
  25831. dick: {
  25832. height: math.unit(2.36, "feet"),
  25833. name: "Dick",
  25834. image: {
  25835. source: "./media/characters/tala-grovehorn/dick.svg"
  25836. }
  25837. },
  25838. slit: {
  25839. height: math.unit(0.61, "feet"),
  25840. name: "Slit",
  25841. image: {
  25842. source: "./media/characters/tala-grovehorn/slit.svg"
  25843. }
  25844. },
  25845. },
  25846. [
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(7 + 7 / 12, "feet"),
  25854. weight: math.unit(225, "lb"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/epona/front.svg",
  25858. extra: 2445 / 2290,
  25859. bottom: 251 / 2696
  25860. }
  25861. },
  25862. back: {
  25863. height: math.unit(7 + 7 / 12, "feet"),
  25864. weight: math.unit(225, "lb"),
  25865. name: "Back",
  25866. image: {
  25867. source: "./media/characters/epona/back.svg",
  25868. extra: 2546 / 2408,
  25869. bottom: 44 / 2589
  25870. }
  25871. },
  25872. genitals: {
  25873. height: math.unit(1.5, "feet"),
  25874. name: "Genitals",
  25875. image: {
  25876. source: "./media/characters/epona/genitals.svg"
  25877. }
  25878. },
  25879. },
  25880. [
  25881. {
  25882. name: "Normal",
  25883. height: math.unit(7 + 7 / 12, "feet"),
  25884. default: true
  25885. },
  25886. ]
  25887. ))
  25888. characterMakers.push(() => makeCharacter(
  25889. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25890. {
  25891. front: {
  25892. height: math.unit(7, "feet"),
  25893. weight: math.unit(518, "lb"),
  25894. name: "Front",
  25895. image: {
  25896. source: "./media/characters/avia-bloodbourn/front.svg",
  25897. extra: 1466 / 1350,
  25898. bottom: 65 / 1527
  25899. }
  25900. },
  25901. },
  25902. [
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25907. {
  25908. front: {
  25909. height: math.unit(9.35, "feet"),
  25910. weight: math.unit(600, "lb"),
  25911. name: "Front",
  25912. image: {
  25913. source: "./media/characters/amera/front.svg",
  25914. extra: 891 / 818,
  25915. bottom: 30 / 922.7
  25916. }
  25917. },
  25918. back: {
  25919. height: math.unit(9.35, "feet"),
  25920. weight: math.unit(600, "lb"),
  25921. name: "Back",
  25922. image: {
  25923. source: "./media/characters/amera/back.svg",
  25924. extra: 876 / 824,
  25925. bottom: 6.8 / 884
  25926. }
  25927. },
  25928. dick: {
  25929. height: math.unit(2.14, "feet"),
  25930. name: "Dick",
  25931. image: {
  25932. source: "./media/characters/amera/dick.svg"
  25933. }
  25934. },
  25935. },
  25936. [
  25937. {
  25938. name: "Normal",
  25939. height: math.unit(9.35, "feet"),
  25940. default: true
  25941. },
  25942. ]
  25943. ))
  25944. characterMakers.push(() => makeCharacter(
  25945. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25946. {
  25947. kneeling: {
  25948. height: math.unit(3 + 4 / 12, "feet"),
  25949. weight: math.unit(90, "lb"),
  25950. name: "Kneeling",
  25951. image: {
  25952. source: "./media/characters/rosewen/kneeling.svg",
  25953. extra: 1835 / 1571,
  25954. bottom: 27.7 / 1862
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Normal",
  25961. height: math.unit(3 + 4 / 12, "feet"),
  25962. default: true
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25968. {
  25969. front: {
  25970. height: math.unit(5 + 10 / 12, "feet"),
  25971. weight: math.unit(200, "lb"),
  25972. name: "Front",
  25973. image: {
  25974. source: "./media/characters/sabah/front.svg",
  25975. extra: 849 / 763,
  25976. bottom: 33.9 / 881
  25977. }
  25978. },
  25979. },
  25980. [
  25981. {
  25982. name: "Normal",
  25983. height: math.unit(5 + 10 / 12, "feet"),
  25984. default: true
  25985. },
  25986. ]
  25987. ))
  25988. characterMakers.push(() => makeCharacter(
  25989. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25990. {
  25991. front: {
  25992. height: math.unit(3 + 5 / 12, "feet"),
  25993. weight: math.unit(40, "kg"),
  25994. name: "Front",
  25995. image: {
  25996. source: "./media/characters/purple-flame/front.svg",
  25997. extra: 1577 / 1412,
  25998. bottom: 97 / 1694
  25999. }
  26000. },
  26001. frontDressed: {
  26002. height: math.unit(3 + 5 / 12, "feet"),
  26003. weight: math.unit(40, "kg"),
  26004. name: "Front (Dressed)",
  26005. image: {
  26006. source: "./media/characters/purple-flame/front-dressed.svg",
  26007. extra: 1577 / 1412,
  26008. bottom: 97 / 1694
  26009. }
  26010. },
  26011. headphones: {
  26012. height: math.unit(0.85, "feet"),
  26013. name: "Headphones",
  26014. image: {
  26015. source: "./media/characters/purple-flame/headphones.svg"
  26016. }
  26017. },
  26018. },
  26019. [
  26020. {
  26021. name: "Really Small",
  26022. height: math.unit(5, "cm")
  26023. },
  26024. {
  26025. name: "Micro",
  26026. height: math.unit(1 + 5 / 12, "feet")
  26027. },
  26028. {
  26029. name: "Normal",
  26030. height: math.unit(3 + 5 / 12, "feet"),
  26031. default: true
  26032. },
  26033. {
  26034. name: "Minimacro",
  26035. height: math.unit(125, "feet")
  26036. },
  26037. {
  26038. name: "Macro",
  26039. height: math.unit(0.5, "miles")
  26040. },
  26041. {
  26042. name: "Megamacro",
  26043. height: math.unit(50, "miles")
  26044. },
  26045. {
  26046. name: "Gigantic",
  26047. height: math.unit(750, "miles")
  26048. },
  26049. {
  26050. name: "Planetary",
  26051. height: math.unit(15000, "miles")
  26052. },
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26057. {
  26058. front: {
  26059. height: math.unit(14, "feet"),
  26060. weight: math.unit(959, "lb"),
  26061. name: "Front",
  26062. image: {
  26063. source: "./media/characters/arsenal/front.svg",
  26064. extra: 2357 / 2157,
  26065. bottom: 93 / 2458
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Normal",
  26072. height: math.unit(14, "feet"),
  26073. default: true
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26079. {
  26080. front: {
  26081. height: math.unit(6, "feet"),
  26082. weight: math.unit(150, "lb"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/adira/front.svg",
  26086. extra: 1078 / 1029,
  26087. bottom: 87 / 1166
  26088. }
  26089. },
  26090. },
  26091. [
  26092. {
  26093. name: "Micro",
  26094. height: math.unit(4, "inches"),
  26095. default: true
  26096. },
  26097. {
  26098. name: "Macro",
  26099. height: math.unit(50, "feet")
  26100. },
  26101. ]
  26102. ))
  26103. characterMakers.push(() => makeCharacter(
  26104. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26105. {
  26106. front: {
  26107. height: math.unit(16, "feet"),
  26108. weight: math.unit(1000, "lb"),
  26109. name: "Front",
  26110. image: {
  26111. source: "./media/characters/grim/front.svg",
  26112. extra: 622 / 614,
  26113. bottom: 18.1 / 642
  26114. }
  26115. },
  26116. back: {
  26117. height: math.unit(16, "feet"),
  26118. weight: math.unit(1000, "lb"),
  26119. name: "Back",
  26120. image: {
  26121. source: "./media/characters/grim/back.svg",
  26122. extra: 610.6 / 602,
  26123. bottom: 40.8 / 652
  26124. }
  26125. },
  26126. hunched: {
  26127. height: math.unit(9.75, "feet"),
  26128. weight: math.unit(1000, "lb"),
  26129. name: "Hunched",
  26130. image: {
  26131. source: "./media/characters/grim/hunched.svg",
  26132. extra: 304 / 297,
  26133. bottom: 35.4 / 394
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "Normal",
  26140. height: math.unit(16, "feet"),
  26141. default: true
  26142. },
  26143. ]
  26144. ))
  26145. characterMakers.push(() => makeCharacter(
  26146. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26147. {
  26148. front: {
  26149. height: math.unit(2.3, "meters"),
  26150. weight: math.unit(300, "lb"),
  26151. name: "Front",
  26152. image: {
  26153. source: "./media/characters/sinja/front-sfw.svg",
  26154. extra: 1393 / 1294,
  26155. bottom: 70 / 1463
  26156. }
  26157. },
  26158. frontNsfw: {
  26159. height: math.unit(2.3, "meters"),
  26160. weight: math.unit(300, "lb"),
  26161. name: "Front (NSFW)",
  26162. image: {
  26163. source: "./media/characters/sinja/front-nsfw.svg",
  26164. extra: 1393 / 1294,
  26165. bottom: 70 / 1463
  26166. }
  26167. },
  26168. back: {
  26169. height: math.unit(2.3, "meters"),
  26170. weight: math.unit(300, "lb"),
  26171. name: "Back",
  26172. image: {
  26173. source: "./media/characters/sinja/back.svg",
  26174. extra: 1393 / 1294,
  26175. bottom: 70 / 1463
  26176. }
  26177. },
  26178. head: {
  26179. height: math.unit(1.771, "feet"),
  26180. name: "Head",
  26181. image: {
  26182. source: "./media/characters/sinja/head.svg"
  26183. }
  26184. },
  26185. slit: {
  26186. height: math.unit(0.8, "feet"),
  26187. name: "Slit",
  26188. image: {
  26189. source: "./media/characters/sinja/slit.svg"
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Normal",
  26196. height: math.unit(2.3, "meters")
  26197. },
  26198. {
  26199. name: "Macro",
  26200. height: math.unit(91, "meters"),
  26201. default: true
  26202. },
  26203. {
  26204. name: "Megamacro",
  26205. height: math.unit(91440, "meters")
  26206. },
  26207. {
  26208. name: "Gigamacro",
  26209. height: math.unit(60960000, "meters")
  26210. },
  26211. {
  26212. name: "Teramacro",
  26213. height: math.unit(9144000000, "meters")
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(1.7, "meters"),
  26222. weight: math.unit(130, "lb"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/kyu/front.svg",
  26226. extra: 415 / 395,
  26227. bottom: 5 / 420
  26228. }
  26229. },
  26230. head: {
  26231. height: math.unit(1.75, "feet"),
  26232. name: "Head",
  26233. image: {
  26234. source: "./media/characters/kyu/head.svg"
  26235. }
  26236. },
  26237. foot: {
  26238. height: math.unit(0.81, "feet"),
  26239. name: "Foot",
  26240. image: {
  26241. source: "./media/characters/kyu/foot.svg"
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Normal",
  26248. height: math.unit(1.7, "meters")
  26249. },
  26250. {
  26251. name: "Macro",
  26252. height: math.unit(131, "feet"),
  26253. default: true
  26254. },
  26255. {
  26256. name: "Megamacro",
  26257. height: math.unit(91440, "meters")
  26258. },
  26259. {
  26260. name: "Gigamacro",
  26261. height: math.unit(60960000, "meters")
  26262. },
  26263. {
  26264. name: "Teramacro",
  26265. height: math.unit(9144000000, "meters")
  26266. },
  26267. ]
  26268. ))
  26269. characterMakers.push(() => makeCharacter(
  26270. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26271. {
  26272. front: {
  26273. height: math.unit(7 + 1 / 12, "feet"),
  26274. weight: math.unit(250, "lb"),
  26275. name: "Front",
  26276. image: {
  26277. source: "./media/characters/joey/front.svg",
  26278. extra: 1791 / 1537,
  26279. bottom: 28 / 1816
  26280. }
  26281. },
  26282. },
  26283. [
  26284. {
  26285. name: "Micro",
  26286. height: math.unit(3, "inches")
  26287. },
  26288. {
  26289. name: "Normal",
  26290. height: math.unit(7 + 1 / 12, "feet"),
  26291. default: true
  26292. },
  26293. ]
  26294. ))
  26295. characterMakers.push(() => makeCharacter(
  26296. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26297. {
  26298. front: {
  26299. height: math.unit(165, "cm"),
  26300. weight: math.unit(140, "lb"),
  26301. name: "Front",
  26302. image: {
  26303. source: "./media/characters/sam-evans/front.svg",
  26304. extra: 3417 / 3230,
  26305. bottom: 41.3 / 3417
  26306. }
  26307. },
  26308. frontSixTails: {
  26309. height: math.unit(165, "cm"),
  26310. weight: math.unit(140, "lb"),
  26311. name: "Front-six-tails",
  26312. image: {
  26313. source: "./media/characters/sam-evans/front-six-tails.svg",
  26314. extra: 3417 / 3230,
  26315. bottom: 41.3 / 3417
  26316. }
  26317. },
  26318. back: {
  26319. height: math.unit(165, "cm"),
  26320. weight: math.unit(140, "lb"),
  26321. name: "Back",
  26322. image: {
  26323. source: "./media/characters/sam-evans/back.svg",
  26324. extra: 3227 / 3032,
  26325. bottom: 6.8 / 3234
  26326. }
  26327. },
  26328. face: {
  26329. height: math.unit(0.68, "feet"),
  26330. name: "Face",
  26331. image: {
  26332. source: "./media/characters/sam-evans/face.svg"
  26333. }
  26334. },
  26335. },
  26336. [
  26337. {
  26338. name: "Normal",
  26339. height: math.unit(165, "cm"),
  26340. default: true
  26341. },
  26342. {
  26343. name: "Macro",
  26344. height: math.unit(100, "meters")
  26345. },
  26346. {
  26347. name: "Macro+",
  26348. height: math.unit(800, "meters")
  26349. },
  26350. {
  26351. name: "Macro++",
  26352. height: math.unit(3, "km")
  26353. },
  26354. {
  26355. name: "Macro+++",
  26356. height: math.unit(30, "km")
  26357. },
  26358. ]
  26359. ))
  26360. characterMakers.push(() => makeCharacter(
  26361. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26362. {
  26363. front: {
  26364. height: math.unit(10, "feet"),
  26365. weight: math.unit(750, "lb"),
  26366. name: "Front",
  26367. image: {
  26368. source: "./media/characters/juliet-a/front.svg",
  26369. extra: 1766 / 1720,
  26370. bottom: 43 / 1809
  26371. }
  26372. },
  26373. back: {
  26374. height: math.unit(10, "feet"),
  26375. weight: math.unit(750, "lb"),
  26376. name: "Back",
  26377. image: {
  26378. source: "./media/characters/juliet-a/back.svg",
  26379. extra: 1781 / 1734,
  26380. bottom: 35 / 1810,
  26381. }
  26382. },
  26383. },
  26384. [
  26385. {
  26386. name: "Normal",
  26387. height: math.unit(10, "feet"),
  26388. default: true
  26389. },
  26390. {
  26391. name: "Dragon Form",
  26392. height: math.unit(250, "feet")
  26393. },
  26394. {
  26395. name: "Macro",
  26396. height: math.unit(1000, "feet")
  26397. },
  26398. {
  26399. name: "Megamacro",
  26400. height: math.unit(10000, "feet")
  26401. }
  26402. ]
  26403. ))
  26404. characterMakers.push(() => makeCharacter(
  26405. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26406. {
  26407. regular: {
  26408. height: math.unit(7 + 3 / 12, "feet"),
  26409. weight: math.unit(260, "lb"),
  26410. name: "Regular",
  26411. image: {
  26412. source: "./media/characters/wild/regular.svg",
  26413. extra: 97.45 / 92,
  26414. bottom: 6.8 / 104.3
  26415. }
  26416. },
  26417. biggums: {
  26418. height: math.unit(8 + 6 / 12, "feet"),
  26419. weight: math.unit(425, "lb"),
  26420. name: "Biggums",
  26421. image: {
  26422. source: "./media/characters/wild/biggums.svg",
  26423. extra: 97.45 / 92,
  26424. bottom: 7.5 / 132.34
  26425. }
  26426. },
  26427. mawRegular: {
  26428. height: math.unit(1.24, "feet"),
  26429. name: "Maw (Regular)",
  26430. image: {
  26431. source: "./media/characters/wild/maw.svg"
  26432. }
  26433. },
  26434. mawBiggums: {
  26435. height: math.unit(1.47, "feet"),
  26436. name: "Maw (Biggums)",
  26437. image: {
  26438. source: "./media/characters/wild/maw.svg"
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Normal",
  26445. height: math.unit(7 + 3 / 12, "feet"),
  26446. default: true
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26452. {
  26453. front: {
  26454. height: math.unit(2.5, "meters"),
  26455. weight: math.unit(200, "kg"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/vidar/front.svg",
  26459. extra: 2994 / 2795,
  26460. bottom: 56 / 3061
  26461. }
  26462. },
  26463. back: {
  26464. height: math.unit(2.5, "meters"),
  26465. weight: math.unit(200, "kg"),
  26466. name: "Back",
  26467. image: {
  26468. source: "./media/characters/vidar/back.svg",
  26469. extra: 3131 / 2928,
  26470. bottom: 13.5 / 3141.5
  26471. }
  26472. },
  26473. feral: {
  26474. height: math.unit(2.5, "meters"),
  26475. weight: math.unit(2000, "kg"),
  26476. name: "Feral",
  26477. image: {
  26478. source: "./media/characters/vidar/feral.svg",
  26479. extra: 2790 / 1765,
  26480. bottom: 6 / 2796
  26481. }
  26482. },
  26483. },
  26484. [
  26485. {
  26486. name: "Normal",
  26487. height: math.unit(2.5, "meters"),
  26488. default: true
  26489. },
  26490. {
  26491. name: "Macro",
  26492. height: math.unit(100, "meters")
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26498. {
  26499. front: {
  26500. height: math.unit(5 + 9 / 12, "feet"),
  26501. weight: math.unit(120, "lb"),
  26502. name: "Front",
  26503. image: {
  26504. source: "./media/characters/ash/front.svg",
  26505. extra: 2189 / 1961,
  26506. bottom: 5.2 / 2194
  26507. }
  26508. },
  26509. },
  26510. [
  26511. {
  26512. name: "Normal",
  26513. height: math.unit(5 + 9 / 12, "feet"),
  26514. default: true
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(9, "feet"),
  26523. weight: math.unit(10000, "lb"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/gygabite/front.svg",
  26527. bottom: 31.7 / 537.8,
  26528. extra: 505 / 370
  26529. }
  26530. },
  26531. },
  26532. [
  26533. {
  26534. name: "Normal",
  26535. height: math.unit(9, "feet"),
  26536. default: true
  26537. },
  26538. ]
  26539. ))
  26540. characterMakers.push(() => makeCharacter(
  26541. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26542. {
  26543. front: {
  26544. height: math.unit(12, "feet"),
  26545. weight: math.unit(35000, "lb"),
  26546. name: "Front",
  26547. image: {
  26548. source: "./media/characters/p0tat0/front.svg",
  26549. extra: 1065 / 921,
  26550. bottom: 55.7 / 1121.25
  26551. }
  26552. },
  26553. },
  26554. [
  26555. {
  26556. name: "Normal",
  26557. height: math.unit(12, "feet"),
  26558. default: true
  26559. },
  26560. ]
  26561. ))
  26562. characterMakers.push(() => makeCharacter(
  26563. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26564. {
  26565. side: {
  26566. height: math.unit(6.5, "feet"),
  26567. weight: math.unit(800, "lb"),
  26568. name: "Side",
  26569. image: {
  26570. source: "./media/characters/dusk/side.svg",
  26571. extra: 615 / 373,
  26572. bottom: 53 / 664
  26573. }
  26574. },
  26575. sitting: {
  26576. height: math.unit(7, "feet"),
  26577. weight: math.unit(800, "lb"),
  26578. name: "Sitting",
  26579. image: {
  26580. source: "./media/characters/dusk/sitting.svg",
  26581. extra: 753 / 425,
  26582. bottom: 33 / 774
  26583. }
  26584. },
  26585. head: {
  26586. height: math.unit(6.1, "feet"),
  26587. name: "Head",
  26588. image: {
  26589. source: "./media/characters/dusk/head.svg"
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Normal",
  26596. height: math.unit(7, "feet"),
  26597. default: true
  26598. },
  26599. ]
  26600. ))
  26601. characterMakers.push(() => makeCharacter(
  26602. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26603. {
  26604. front: {
  26605. height: math.unit(15, "feet"),
  26606. weight: math.unit(7000, "lb"),
  26607. name: "Front",
  26608. image: {
  26609. source: "./media/characters/jay-direwolf/front.svg",
  26610. extra: 1810 / 1732,
  26611. bottom: 66 / 1892
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(15, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(4 + 9 / 12, "feet"),
  26628. weight: math.unit(130, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/anchovie/front.svg",
  26632. extra: 382 / 350,
  26633. bottom: 25 / 409
  26634. }
  26635. },
  26636. back: {
  26637. height: math.unit(4 + 9 / 12, "feet"),
  26638. weight: math.unit(130, "lb"),
  26639. name: "Back",
  26640. image: {
  26641. source: "./media/characters/anchovie/back.svg",
  26642. extra: 385 / 352,
  26643. bottom: 16.6 / 402
  26644. }
  26645. },
  26646. frontDressed: {
  26647. height: math.unit(4 + 9 / 12, "feet"),
  26648. weight: math.unit(130, "lb"),
  26649. name: "Front (Dressed)",
  26650. image: {
  26651. source: "./media/characters/anchovie/front-dressed.svg",
  26652. extra: 382 / 350,
  26653. bottom: 25 / 409
  26654. }
  26655. },
  26656. backDressed: {
  26657. height: math.unit(4 + 9 / 12, "feet"),
  26658. weight: math.unit(130, "lb"),
  26659. name: "Back (Dressed)",
  26660. image: {
  26661. source: "./media/characters/anchovie/back-dressed.svg",
  26662. extra: 385 / 352,
  26663. bottom: 16.6 / 402
  26664. }
  26665. },
  26666. },
  26667. [
  26668. {
  26669. name: "Micro",
  26670. height: math.unit(6.4, "inches")
  26671. },
  26672. {
  26673. name: "Normal",
  26674. height: math.unit(4 + 9 / 12, "feet"),
  26675. default: true
  26676. },
  26677. ]
  26678. ))
  26679. characterMakers.push(() => makeCharacter(
  26680. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26681. {
  26682. front: {
  26683. height: math.unit(2, "meters"),
  26684. weight: math.unit(180, "lb"),
  26685. name: "Front",
  26686. image: {
  26687. source: "./media/characters/acidrenamon/front.svg",
  26688. extra: 987 / 890,
  26689. bottom: 22.8 / 1009
  26690. }
  26691. },
  26692. back: {
  26693. height: math.unit(2, "meters"),
  26694. weight: math.unit(180, "lb"),
  26695. name: "Back",
  26696. image: {
  26697. source: "./media/characters/acidrenamon/back.svg",
  26698. extra: 983 / 891,
  26699. bottom: 8.4 / 992
  26700. }
  26701. },
  26702. head: {
  26703. height: math.unit(1.92, "feet"),
  26704. name: "Head",
  26705. image: {
  26706. source: "./media/characters/acidrenamon/head.svg"
  26707. }
  26708. },
  26709. rump: {
  26710. height: math.unit(1.72, "feet"),
  26711. name: "Rump",
  26712. image: {
  26713. source: "./media/characters/acidrenamon/rump.svg"
  26714. }
  26715. },
  26716. tail: {
  26717. height: math.unit(4.2, "feet"),
  26718. name: "Tail",
  26719. image: {
  26720. source: "./media/characters/acidrenamon/tail.svg"
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(2, "meters"),
  26728. default: true
  26729. },
  26730. {
  26731. name: "Minimacro",
  26732. height: math.unit(7, "meters")
  26733. },
  26734. {
  26735. name: "Macro",
  26736. height: math.unit(200, "meters")
  26737. },
  26738. {
  26739. name: "Gigamacro",
  26740. height: math.unit(0.2, "earths")
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(6, "feet"),
  26749. weight: math.unit(150, "lb"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/kenzie-lee/front.svg",
  26753. extra: 1525 / 1465,
  26754. bottom: 45 / 1570
  26755. }
  26756. },
  26757. side: {
  26758. height: math.unit(6, "feet"),
  26759. weight: math.unit(150, "lb"),
  26760. name: "Side",
  26761. image: {
  26762. source: "./media/characters/kenzie-lee/side.svg",
  26763. extra: 5505 / 5383,
  26764. bottom: 60 / 5573
  26765. }
  26766. },
  26767. paw: {
  26768. height: math.unit(6, "feet"),
  26769. name: "Paw",
  26770. image: {
  26771. source: "./media/characters/kenzie-lee/paw.svg"
  26772. }
  26773. },
  26774. },
  26775. [
  26776. {
  26777. name: "Normal",
  26778. height: math.unit(152, "feet"),
  26779. default: true
  26780. },
  26781. {
  26782. name: "Megamacro",
  26783. height: math.unit(7, "miles")
  26784. },
  26785. {
  26786. name: "Gigamacro",
  26787. height: math.unit(8000, "miles")
  26788. },
  26789. ]
  26790. ))
  26791. characterMakers.push(() => makeCharacter(
  26792. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26793. {
  26794. side: {
  26795. height: math.unit(6, "feet"),
  26796. weight: math.unit(150, "lb"),
  26797. name: "Side",
  26798. image: {
  26799. source: "./media/characters/withers/side.svg",
  26800. extra: 1830 / 1728,
  26801. bottom: 96 / 1927
  26802. }
  26803. },
  26804. front: {
  26805. height: math.unit(6, "feet"),
  26806. weight: math.unit(150, "lb"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/withers/front.svg",
  26810. extra: 1514 / 1438,
  26811. bottom: 118 / 1632
  26812. }
  26813. },
  26814. },
  26815. [
  26816. {
  26817. name: "Macro",
  26818. height: math.unit(168, "feet"),
  26819. default: true
  26820. },
  26821. {
  26822. name: "Megamacro",
  26823. height: math.unit(15, "miles")
  26824. }
  26825. ]
  26826. ))
  26827. characterMakers.push(() => makeCharacter(
  26828. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26829. {
  26830. front: {
  26831. height: math.unit(6 + 7 / 12, "feet"),
  26832. weight: math.unit(250, "lb"),
  26833. name: "Front",
  26834. image: {
  26835. source: "./media/characters/nemoskii/front.svg",
  26836. extra: 2270 / 1734,
  26837. bottom: 86 / 2354
  26838. }
  26839. },
  26840. back: {
  26841. height: math.unit(6 + 7 / 12, "feet"),
  26842. weight: math.unit(250, "lb"),
  26843. name: "Back",
  26844. image: {
  26845. source: "./media/characters/nemoskii/back.svg",
  26846. extra: 1845 / 1788,
  26847. bottom: 10.5 / 1852
  26848. }
  26849. },
  26850. head: {
  26851. height: math.unit(1.31, "feet"),
  26852. name: "Head",
  26853. image: {
  26854. source: "./media/characters/nemoskii/head.svg"
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Normal",
  26861. height: math.unit(6 + 7 / 12, "feet"),
  26862. default: true
  26863. },
  26864. ]
  26865. ))
  26866. characterMakers.push(() => makeCharacter(
  26867. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26868. {
  26869. front: {
  26870. height: math.unit(1, "mile"),
  26871. weight: math.unit(265261.9, "lb"),
  26872. name: "Front",
  26873. image: {
  26874. source: "./media/characters/shui/front.svg",
  26875. extra: 1633 / 1564,
  26876. bottom: 91.5 / 1726
  26877. }
  26878. },
  26879. },
  26880. [
  26881. {
  26882. name: "Macro",
  26883. height: math.unit(1, "mile"),
  26884. default: true
  26885. },
  26886. ]
  26887. ))
  26888. characterMakers.push(() => makeCharacter(
  26889. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26890. {
  26891. front: {
  26892. height: math.unit(12 + 6 / 12, "feet"),
  26893. weight: math.unit(1342, "lb"),
  26894. name: "Front",
  26895. image: {
  26896. source: "./media/characters/arokh-takakura/front.svg",
  26897. extra: 1089 / 1043,
  26898. bottom: 77.4 / 1176.7
  26899. }
  26900. },
  26901. back: {
  26902. height: math.unit(12 + 6 / 12, "feet"),
  26903. weight: math.unit(1342, "lb"),
  26904. name: "Back",
  26905. image: {
  26906. source: "./media/characters/arokh-takakura/back.svg",
  26907. extra: 1046 / 1019,
  26908. bottom: 102 / 1150
  26909. }
  26910. },
  26911. },
  26912. [
  26913. {
  26914. name: "Big",
  26915. height: math.unit(12 + 6 / 12, "feet"),
  26916. default: true
  26917. },
  26918. ]
  26919. ))
  26920. characterMakers.push(() => makeCharacter(
  26921. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26922. {
  26923. front: {
  26924. height: math.unit(5 + 6 / 12, "feet"),
  26925. weight: math.unit(150, "lb"),
  26926. name: "Front",
  26927. image: {
  26928. source: "./media/characters/theo/front.svg",
  26929. extra: 1184 / 1131,
  26930. bottom: 7.4 / 1191
  26931. }
  26932. },
  26933. },
  26934. [
  26935. {
  26936. name: "Micro",
  26937. height: math.unit(5, "inches")
  26938. },
  26939. {
  26940. name: "Normal",
  26941. height: math.unit(5 + 6 / 12, "feet"),
  26942. default: true
  26943. },
  26944. ]
  26945. ))
  26946. characterMakers.push(() => makeCharacter(
  26947. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26948. {
  26949. front: {
  26950. height: math.unit(5 + 9 / 12, "feet"),
  26951. weight: math.unit(130, "lb"),
  26952. name: "Front",
  26953. image: {
  26954. source: "./media/characters/cecelia-swift/front.svg",
  26955. extra: 502 / 484,
  26956. bottom: 23 / 523
  26957. }
  26958. },
  26959. back: {
  26960. height: math.unit(5 + 9 / 12, "feet"),
  26961. weight: math.unit(130, "lb"),
  26962. name: "Back",
  26963. image: {
  26964. source: "./media/characters/cecelia-swift/back.svg",
  26965. extra: 499 / 485,
  26966. bottom: 12 / 511
  26967. }
  26968. },
  26969. head: {
  26970. height: math.unit(0.90, "feet"),
  26971. name: "Head",
  26972. image: {
  26973. source: "./media/characters/cecelia-swift/head.svg"
  26974. }
  26975. },
  26976. rump: {
  26977. height: math.unit(1.75, "feet"),
  26978. name: "Rump",
  26979. image: {
  26980. source: "./media/characters/cecelia-swift/rump.svg"
  26981. }
  26982. },
  26983. },
  26984. [
  26985. {
  26986. name: "Normal",
  26987. height: math.unit(5 + 9 / 12, "feet"),
  26988. default: true
  26989. },
  26990. {
  26991. name: "Big",
  26992. height: math.unit(50, "feet")
  26993. },
  26994. {
  26995. name: "Macro",
  26996. height: math.unit(100, "feet")
  26997. },
  26998. {
  26999. name: "Macro+",
  27000. height: math.unit(500, "feet")
  27001. },
  27002. {
  27003. name: "Macro++",
  27004. height: math.unit(1000, "feet")
  27005. },
  27006. ]
  27007. ))
  27008. characterMakers.push(() => makeCharacter(
  27009. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27010. {
  27011. front: {
  27012. height: math.unit(6, "feet"),
  27013. weight: math.unit(150, "lb"),
  27014. name: "Front",
  27015. image: {
  27016. source: "./media/characters/kaunan/front.svg",
  27017. extra: 2890 / 2523,
  27018. bottom: 49 / 2939
  27019. }
  27020. },
  27021. },
  27022. [
  27023. {
  27024. name: "Macro",
  27025. height: math.unit(150, "feet"),
  27026. default: true
  27027. },
  27028. ]
  27029. ))
  27030. characterMakers.push(() => makeCharacter(
  27031. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27032. {
  27033. front: {
  27034. height: math.unit(175, "cm"),
  27035. weight: math.unit(60, "kg"),
  27036. name: "Front",
  27037. image: {
  27038. source: "./media/characters/fei/front.svg",
  27039. extra: 2581 / 2400,
  27040. bottom: 82.2 / 2663
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Mortal",
  27047. height: math.unit(175, "cm")
  27048. },
  27049. {
  27050. name: "Normal",
  27051. height: math.unit(3500, "m"),
  27052. default: true
  27053. },
  27054. {
  27055. name: "Stroll",
  27056. height: math.unit(17.5, "km")
  27057. },
  27058. {
  27059. name: "Showoff",
  27060. height: math.unit(175, "km")
  27061. },
  27062. ]
  27063. ))
  27064. characterMakers.push(() => makeCharacter(
  27065. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27066. {
  27067. front: {
  27068. height: math.unit(7, "feet"),
  27069. weight: math.unit(1000, "kg"),
  27070. name: "Front",
  27071. image: {
  27072. source: "./media/characters/edrax/front.svg",
  27073. extra: 2838 / 2550,
  27074. bottom: 130 / 2968
  27075. }
  27076. },
  27077. },
  27078. [
  27079. {
  27080. name: "Small",
  27081. height: math.unit(7, "feet")
  27082. },
  27083. {
  27084. name: "Normal",
  27085. height: math.unit(1500, "meters")
  27086. },
  27087. {
  27088. name: "Mega",
  27089. height: math.unit(12000000, "km"),
  27090. default: true
  27091. },
  27092. {
  27093. name: "Megamacro",
  27094. height: math.unit(10600000, "lightyears")
  27095. },
  27096. {
  27097. name: "Hypermacro",
  27098. height: math.unit(256, "yottameters")
  27099. },
  27100. ]
  27101. ))
  27102. characterMakers.push(() => makeCharacter(
  27103. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27104. {
  27105. front: {
  27106. height: math.unit(10, "feet"),
  27107. weight: math.unit(750, "lb"),
  27108. name: "Front",
  27109. image: {
  27110. source: "./media/characters/clove/front.svg",
  27111. extra: 2031 / 1860,
  27112. bottom: 47.8 / 2080
  27113. }
  27114. },
  27115. back: {
  27116. height: math.unit(10, "feet"),
  27117. weight: math.unit(750, "lb"),
  27118. name: "Back",
  27119. image: {
  27120. source: "./media/characters/clove/back.svg",
  27121. extra: 2025 / 1859,
  27122. bottom: 46 / 2071
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(10, "feet"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(4, "feet"),
  27139. weight: math.unit(50, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/alex-rabbit/front.svg",
  27143. extra: 507 / 458,
  27144. bottom: 18.5 / 527
  27145. }
  27146. },
  27147. back: {
  27148. height: math.unit(4, "feet"),
  27149. weight: math.unit(50, "lb"),
  27150. name: "Back",
  27151. image: {
  27152. source: "./media/characters/alex-rabbit/back.svg",
  27153. extra: 502 / 460,
  27154. bottom: 18.9 / 521
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(4, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(1 + 3 / 12, "feet"),
  27171. weight: math.unit(80, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/zander-rose/front.svg",
  27175. extra: 916 / 797,
  27176. bottom: 17 / 933
  27177. }
  27178. },
  27179. back: {
  27180. height: math.unit(1 + 3 / 12, "feet"),
  27181. weight: math.unit(80, "lb"),
  27182. name: "Back",
  27183. image: {
  27184. source: "./media/characters/zander-rose/back.svg",
  27185. extra: 903 / 779,
  27186. bottom: 31 / 934
  27187. }
  27188. },
  27189. },
  27190. [
  27191. {
  27192. name: "Normal",
  27193. height: math.unit(1 + 3 / 12, "feet"),
  27194. default: true
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27200. {
  27201. anthro: {
  27202. height: math.unit(6, "feet"),
  27203. weight: math.unit(150, "lb"),
  27204. name: "Anthro",
  27205. image: {
  27206. source: "./media/characters/razz/anthro.svg",
  27207. extra: 1437 / 1343,
  27208. bottom: 48 / 1485
  27209. }
  27210. },
  27211. feral: {
  27212. height: math.unit(6, "feet"),
  27213. weight: math.unit(150, "lb"),
  27214. name: "Feral",
  27215. image: {
  27216. source: "./media/characters/razz/feral.svg",
  27217. extra: 2569 / 1385,
  27218. bottom: 95 / 2664
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(6, "feet"),
  27226. default: true
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(9 + 4 / 12, "feet"),
  27235. weight: math.unit(500, "lb"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/morrigan/front.svg",
  27239. extra: 2707 / 2579,
  27240. bottom: 156 / 2863
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Normal",
  27247. height: math.unit(9 + 4 / 12, "feet"),
  27248. default: true
  27249. },
  27250. ]
  27251. ))
  27252. characterMakers.push(() => makeCharacter(
  27253. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27254. {
  27255. front: {
  27256. height: math.unit(5, "stories"),
  27257. weight: math.unit(4000, "lb"),
  27258. name: "Front",
  27259. image: {
  27260. source: "./media/characters/jenene/front.svg",
  27261. extra: 1780 / 1710,
  27262. bottom: 57 / 1837
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(5, "stories"),
  27270. default: true
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(6, "feet"),
  27279. weight: math.unit(150, "lb"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/vix-archaser/front.svg",
  27283. extra: 2767 / 2562,
  27284. bottom: 36 / 2803
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Micro",
  27291. height: math.unit(1, "foot")
  27292. },
  27293. {
  27294. name: "Normal",
  27295. height: math.unit(6 + 5 / 12, "feet")
  27296. },
  27297. {
  27298. name: "Minimacro",
  27299. height: math.unit(500, "feet")
  27300. },
  27301. {
  27302. name: "Macro",
  27303. height: math.unit(4, "miles")
  27304. },
  27305. {
  27306. name: "Megamacro",
  27307. height: math.unit(250, "miles"),
  27308. default: true
  27309. },
  27310. {
  27311. name: "Gigamacro",
  27312. height: math.unit(1, "universe")
  27313. },
  27314. {
  27315. name: "Endgame",
  27316. height: math.unit(100, "multiverses")
  27317. }
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27322. {
  27323. taurSfw: {
  27324. height: math.unit(10, "meters"),
  27325. weight: math.unit(17500, "kg"),
  27326. name: "Taur",
  27327. image: {
  27328. source: "./media/characters/faey/taur-sfw.svg",
  27329. extra: 1200 / 968,
  27330. bottom: 41 / 1241
  27331. }
  27332. },
  27333. chestmaw: {
  27334. height: math.unit(2.01, "meters"),
  27335. name: "Chestmaw",
  27336. image: {
  27337. source: "./media/characters/faey/chestmaw.svg"
  27338. }
  27339. },
  27340. foot: {
  27341. height: math.unit(2.43, "meters"),
  27342. name: "Foot",
  27343. image: {
  27344. source: "./media/characters/faey/foot.svg"
  27345. }
  27346. },
  27347. jaws: {
  27348. height: math.unit(1.66, "meters"),
  27349. name: "Jaws",
  27350. image: {
  27351. source: "./media/characters/faey/jaws.svg"
  27352. }
  27353. },
  27354. tongues: {
  27355. height: math.unit(2.01, "meters"),
  27356. name: "Tongues",
  27357. image: {
  27358. source: "./media/characters/faey/tongues.svg"
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Small",
  27365. height: math.unit(10, "meters"),
  27366. default: true
  27367. },
  27368. {
  27369. name: "Big",
  27370. height: math.unit(500000, "km")
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27376. {
  27377. front: {
  27378. height: math.unit(7, "feet"),
  27379. weight: math.unit(275, "lb"),
  27380. name: "Front",
  27381. image: {
  27382. source: "./media/characters/roku/front.svg",
  27383. extra: 903 / 878,
  27384. bottom: 37 / 940
  27385. }
  27386. },
  27387. },
  27388. [
  27389. {
  27390. name: "Normal",
  27391. height: math.unit(7, "feet"),
  27392. default: true
  27393. },
  27394. {
  27395. name: "Macro",
  27396. height: math.unit(500, "feet")
  27397. },
  27398. {
  27399. name: "Megamacro",
  27400. height: math.unit(200, "miles")
  27401. },
  27402. ]
  27403. ))
  27404. characterMakers.push(() => makeCharacter(
  27405. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27406. {
  27407. front: {
  27408. height: math.unit(6 + 2 / 12, "feet"),
  27409. weight: math.unit(150, "lb"),
  27410. name: "Front",
  27411. image: {
  27412. source: "./media/characters/lira/front.svg",
  27413. extra: 1727 / 1605,
  27414. bottom: 26 / 1753
  27415. }
  27416. },
  27417. back: {
  27418. height: math.unit(6 + 2 / 12, "feet"),
  27419. weight: math.unit(150, "lb"),
  27420. name: "Back",
  27421. image: {
  27422. source: "./media/characters/lira/back.svg",
  27423. extra: 1713 / 159,
  27424. bottom: 20 / 1733
  27425. }
  27426. },
  27427. hand: {
  27428. height: math.unit(0.75, "feet"),
  27429. name: "Hand",
  27430. image: {
  27431. source: "./media/characters/lira/hand.svg"
  27432. }
  27433. },
  27434. maw: {
  27435. height: math.unit(0.65, "feet"),
  27436. name: "Maw",
  27437. image: {
  27438. source: "./media/characters/lira/maw.svg"
  27439. }
  27440. },
  27441. pawDigi: {
  27442. height: math.unit(1.6, "feet"),
  27443. name: "Paw Digi",
  27444. image: {
  27445. source: "./media/characters/lira/paw-digi.svg"
  27446. }
  27447. },
  27448. pawPlanti: {
  27449. height: math.unit(1.4, "feet"),
  27450. name: "Paw Planti",
  27451. image: {
  27452. source: "./media/characters/lira/paw-planti.svg"
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(6 + 2 / 12, "feet"),
  27460. default: true
  27461. },
  27462. {
  27463. name: "Macro",
  27464. height: math.unit(100, "feet")
  27465. },
  27466. {
  27467. name: "Macro²",
  27468. height: math.unit(1600, "feet")
  27469. },
  27470. {
  27471. name: "Planetary",
  27472. height: math.unit(20, "earths")
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27478. {
  27479. front: {
  27480. height: math.unit(6, "feet"),
  27481. weight: math.unit(150, "lb"),
  27482. name: "Front",
  27483. image: {
  27484. source: "./media/characters/hadjet/front.svg",
  27485. extra: 1480 / 1346,
  27486. bottom: 26 / 1506
  27487. }
  27488. },
  27489. frontNsfw: {
  27490. height: math.unit(6, "feet"),
  27491. weight: math.unit(150, "lb"),
  27492. name: "Front (NSFW)",
  27493. image: {
  27494. source: "./media/characters/hadjet/front-nsfw.svg",
  27495. extra: 1440 / 1358,
  27496. bottom: 52 / 1492
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Macro",
  27503. height: math.unit(10, "stories"),
  27504. default: true
  27505. },
  27506. {
  27507. name: "Megamacro",
  27508. height: math.unit(1.5, "miles")
  27509. },
  27510. {
  27511. name: "Megamacro+",
  27512. height: math.unit(5, "miles")
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27518. {
  27519. side: {
  27520. height: math.unit(106, "feet"),
  27521. weight: math.unit(500, "tonnes"),
  27522. name: "Side",
  27523. image: {
  27524. source: "./media/characters/kodran/side.svg",
  27525. extra: 553 / 480,
  27526. bottom: 33 / 586
  27527. }
  27528. },
  27529. front: {
  27530. height: math.unit(132, "feet"),
  27531. weight: math.unit(500, "tonnes"),
  27532. name: "Front",
  27533. image: {
  27534. source: "./media/characters/kodran/front.svg",
  27535. extra: 667 / 643,
  27536. bottom: 42 / 709
  27537. }
  27538. },
  27539. flying: {
  27540. height: math.unit(350, "feet"),
  27541. weight: math.unit(500, "tonnes"),
  27542. name: "Flying",
  27543. image: {
  27544. source: "./media/characters/kodran/flying.svg"
  27545. }
  27546. },
  27547. foot: {
  27548. height: math.unit(33, "feet"),
  27549. name: "Foot",
  27550. image: {
  27551. source: "./media/characters/kodran/foot.svg"
  27552. }
  27553. },
  27554. footFront: {
  27555. height: math.unit(19, "feet"),
  27556. name: "Foot (Front)",
  27557. image: {
  27558. source: "./media/characters/kodran/foot-front.svg",
  27559. extra: 261 / 261,
  27560. bottom: 91 / 352
  27561. }
  27562. },
  27563. headFront: {
  27564. height: math.unit(53, "feet"),
  27565. name: "Head (Front)",
  27566. image: {
  27567. source: "./media/characters/kodran/head-front.svg"
  27568. }
  27569. },
  27570. headSide: {
  27571. height: math.unit(65, "feet"),
  27572. name: "Head (Side)",
  27573. image: {
  27574. source: "./media/characters/kodran/head-side.svg"
  27575. }
  27576. },
  27577. throat: {
  27578. height: math.unit(79, "feet"),
  27579. name: "Throat",
  27580. image: {
  27581. source: "./media/characters/kodran/throat.svg"
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Large",
  27588. height: math.unit(106, "feet"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27595. {
  27596. side: {
  27597. height: math.unit(11, "feet"),
  27598. weight: math.unit(150, "lb"),
  27599. name: "Side",
  27600. image: {
  27601. source: "./media/characters/pyxaron/side.svg",
  27602. extra: 305 / 195,
  27603. bottom: 17 / 322
  27604. }
  27605. },
  27606. },
  27607. [
  27608. {
  27609. name: "Normal",
  27610. height: math.unit(11, "feet"),
  27611. default: true
  27612. },
  27613. ]
  27614. ))
  27615. characterMakers.push(() => makeCharacter(
  27616. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27617. {
  27618. front: {
  27619. height: math.unit(6, "feet"),
  27620. weight: math.unit(150, "lb"),
  27621. name: "Front",
  27622. image: {
  27623. source: "./media/characters/meep/front.svg",
  27624. extra: 88 / 80,
  27625. bottom: 6 / 94
  27626. }
  27627. },
  27628. },
  27629. [
  27630. {
  27631. name: "Fun Sized",
  27632. height: math.unit(2, "inches"),
  27633. default: true
  27634. },
  27635. {
  27636. name: "Friend Sized",
  27637. height: math.unit(8, "inches")
  27638. },
  27639. ]
  27640. ))
  27641. characterMakers.push(() => makeCharacter(
  27642. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27643. {
  27644. front: {
  27645. height: math.unit(15, "feet"),
  27646. weight: math.unit(2500, "lb"),
  27647. name: "Front",
  27648. image: {
  27649. source: "./media/characters/holly-rabbit/front.svg",
  27650. extra: 1433 / 1233,
  27651. bottom: 125 / 1558
  27652. }
  27653. },
  27654. dick: {
  27655. height: math.unit(4.6, "feet"),
  27656. name: "Dick",
  27657. image: {
  27658. source: "./media/characters/holly-rabbit/dick.svg"
  27659. }
  27660. },
  27661. },
  27662. [
  27663. {
  27664. name: "Normal",
  27665. height: math.unit(15, "feet"),
  27666. default: true
  27667. },
  27668. {
  27669. name: "Macro",
  27670. height: math.unit(250, "feet")
  27671. },
  27672. {
  27673. name: "Macro+",
  27674. height: math.unit(2500, "feet")
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27680. {
  27681. front: {
  27682. height: math.unit(3.02, "meters"),
  27683. weight: math.unit(500, "kg"),
  27684. name: "Front",
  27685. image: {
  27686. source: "./media/characters/drena/front.svg",
  27687. extra: 282 / 243,
  27688. bottom: 8 / 290
  27689. }
  27690. },
  27691. side: {
  27692. height: math.unit(3.02, "meters"),
  27693. weight: math.unit(500, "kg"),
  27694. name: "Side",
  27695. image: {
  27696. source: "./media/characters/drena/side.svg",
  27697. extra: 280 / 245,
  27698. bottom: 10 / 290
  27699. }
  27700. },
  27701. back: {
  27702. height: math.unit(3.02, "meters"),
  27703. weight: math.unit(500, "kg"),
  27704. name: "Back",
  27705. image: {
  27706. source: "./media/characters/drena/back.svg",
  27707. extra: 278 / 243,
  27708. bottom: 2 / 280
  27709. }
  27710. },
  27711. foot: {
  27712. height: math.unit(0.75, "meters"),
  27713. name: "Foot",
  27714. image: {
  27715. source: "./media/characters/drena/foot.svg"
  27716. }
  27717. },
  27718. maw: {
  27719. height: math.unit(0.82, "meters"),
  27720. name: "Maw",
  27721. image: {
  27722. source: "./media/characters/drena/maw.svg"
  27723. }
  27724. },
  27725. rump: {
  27726. height: math.unit(0.93, "meters"),
  27727. name: "Rump",
  27728. image: {
  27729. source: "./media/characters/drena/rump.svg"
  27730. }
  27731. },
  27732. },
  27733. [
  27734. {
  27735. name: "Normal",
  27736. height: math.unit(3.02, "meters"),
  27737. default: true
  27738. },
  27739. ]
  27740. ))
  27741. characterMakers.push(() => makeCharacter(
  27742. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27743. {
  27744. front: {
  27745. height: math.unit(6 + 4 / 12, "feet"),
  27746. weight: math.unit(250, "lb"),
  27747. name: "Front",
  27748. image: {
  27749. source: "./media/characters/remmyzilla/front.svg",
  27750. extra: 4033 / 3588,
  27751. bottom: 123 / 4156
  27752. }
  27753. },
  27754. back: {
  27755. height: math.unit(6 + 4 / 12, "feet"),
  27756. weight: math.unit(250, "lb"),
  27757. name: "Back",
  27758. image: {
  27759. source: "./media/characters/remmyzilla/back.svg",
  27760. extra: 2687 / 2555,
  27761. bottom: 48 / 2735
  27762. }
  27763. },
  27764. frontFancy: {
  27765. height: math.unit(6 + 4 / 12, "feet"),
  27766. weight: math.unit(250, "lb"),
  27767. name: "Front (Fancy)",
  27768. image: {
  27769. source: "./media/characters/remmyzilla/front-fancy.svg",
  27770. extra: 4119 / 3419,
  27771. bottom: 237 / 4356
  27772. }
  27773. },
  27774. paw: {
  27775. height: math.unit(1.73, "feet"),
  27776. name: "Paw",
  27777. image: {
  27778. source: "./media/characters/remmyzilla/paw.svg"
  27779. }
  27780. },
  27781. maw: {
  27782. height: math.unit(1.73, "feet"),
  27783. name: "Maw",
  27784. image: {
  27785. source: "./media/characters/remmyzilla/maw.svg"
  27786. }
  27787. },
  27788. },
  27789. [
  27790. {
  27791. name: "Normal",
  27792. height: math.unit(6 + 4 / 12, "feet")
  27793. },
  27794. {
  27795. name: "Minimacro",
  27796. height: math.unit(12 + 8 / 12, "feet")
  27797. },
  27798. {
  27799. name: "Normal",
  27800. height: math.unit(640, "feet"),
  27801. default: true
  27802. },
  27803. {
  27804. name: "Megamacro",
  27805. height: math.unit(6400, "feet")
  27806. },
  27807. {
  27808. name: "Gigamacro",
  27809. height: math.unit(64000, "miles")
  27810. },
  27811. ]
  27812. ))
  27813. characterMakers.push(() => makeCharacter(
  27814. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27815. {
  27816. front: {
  27817. height: math.unit(2.5, "meters"),
  27818. weight: math.unit(300, "lb"),
  27819. name: "Front",
  27820. image: {
  27821. source: "./media/characters/lawrence/front.svg",
  27822. extra: 357 / 335,
  27823. bottom: 30 / 387
  27824. }
  27825. },
  27826. back: {
  27827. height: math.unit(2.5, "meters"),
  27828. weight: math.unit(300, "lb"),
  27829. name: "Back",
  27830. image: {
  27831. source: "./media/characters/lawrence/back.svg",
  27832. extra: 357 / 338,
  27833. bottom: 16 / 373
  27834. }
  27835. },
  27836. head: {
  27837. height: math.unit(0.9, "meter"),
  27838. name: "Head",
  27839. image: {
  27840. source: "./media/characters/lawrence/head.svg"
  27841. }
  27842. },
  27843. maw: {
  27844. height: math.unit(0.7, "meter"),
  27845. name: "Maw",
  27846. image: {
  27847. source: "./media/characters/lawrence/maw.svg"
  27848. }
  27849. },
  27850. footBottom: {
  27851. height: math.unit(0.5, "meter"),
  27852. name: "Foot (Bottom)",
  27853. image: {
  27854. source: "./media/characters/lawrence/foot-bottom.svg"
  27855. }
  27856. },
  27857. footTop: {
  27858. height: math.unit(0.5, "meter"),
  27859. name: "Foot (Top)",
  27860. image: {
  27861. source: "./media/characters/lawrence/foot-top.svg"
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Normal",
  27868. height: math.unit(2.5, "meters"),
  27869. default: true
  27870. },
  27871. {
  27872. name: "Macro",
  27873. height: math.unit(95, "meters")
  27874. },
  27875. {
  27876. name: "Megamacro",
  27877. height: math.unit(150, "km")
  27878. },
  27879. ]
  27880. ))
  27881. characterMakers.push(() => makeCharacter(
  27882. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27883. {
  27884. front: {
  27885. height: math.unit(4.2, "meters"),
  27886. name: "Front",
  27887. image: {
  27888. source: "./media/characters/sydney/front.svg",
  27889. extra: 1323 / 1277,
  27890. bottom: 111 / 1434
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(4.2, "meters"),
  27898. default: true
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27904. {
  27905. back: {
  27906. height: math.unit(201, "feet"),
  27907. name: "Back",
  27908. image: {
  27909. source: "./media/characters/jessica/back.svg",
  27910. extra: 273 / 259,
  27911. bottom: 7 / 280
  27912. }
  27913. },
  27914. },
  27915. [
  27916. {
  27917. name: "Normal",
  27918. height: math.unit(201, "feet"),
  27919. default: true
  27920. },
  27921. {
  27922. name: "Megamacro",
  27923. height: math.unit(8, "miles")
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27929. {
  27930. side: {
  27931. height: math.unit(320, "cm"),
  27932. name: "Side",
  27933. image: {
  27934. source: "./media/characters/victoria/side.svg",
  27935. extra: 778 / 346,
  27936. bottom: 56 / 834
  27937. }
  27938. },
  27939. maw: {
  27940. height: math.unit(5.9, "feet"),
  27941. name: "Maw",
  27942. image: {
  27943. source: "./media/characters/victoria/maw.svg"
  27944. }
  27945. },
  27946. },
  27947. [
  27948. {
  27949. name: "Normal",
  27950. height: math.unit(320, "cm"),
  27951. default: true
  27952. },
  27953. ]
  27954. ))
  27955. characterMakers.push(() => makeCharacter(
  27956. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27957. {
  27958. front: {
  27959. height: math.unit(5 + 6 / 12, "feet"),
  27960. name: "Front",
  27961. image: {
  27962. source: "./media/characters/cat/front.svg",
  27963. extra: 1374 / 1257,
  27964. bottom: 59 / 1433
  27965. }
  27966. },
  27967. back: {
  27968. height: math.unit(5 + 6 / 12, "feet"),
  27969. name: "Back",
  27970. image: {
  27971. source: "./media/characters/cat/back.svg",
  27972. extra: 1337 / 1226,
  27973. bottom: 34 / 1371
  27974. }
  27975. },
  27976. taur: {
  27977. height: math.unit(7, "feet"),
  27978. name: "Taur",
  27979. image: {
  27980. source: "./media/characters/cat/taur.svg",
  27981. extra: 1345 / 1231,
  27982. bottom: 66 / 1411
  27983. }
  27984. },
  27985. lucario: {
  27986. height: math.unit(4, "feet"),
  27987. name: "Lucario",
  27988. image: {
  27989. source: "./media/characters/cat/lucario.svg",
  27990. extra: 1470 / 1318,
  27991. bottom: 65 / 1535
  27992. }
  27993. },
  27994. megaLucario: {
  27995. height: math.unit(4, "feet"),
  27996. name: "Mega Lucario",
  27997. image: {
  27998. source: "./media/characters/cat/mega-lucario.svg",
  27999. extra: 1515 / 1319,
  28000. bottom: 63 / 1578
  28001. }
  28002. },
  28003. nickit: {
  28004. height: math.unit(2, "feet"),
  28005. name: "Nickit",
  28006. image: {
  28007. source: "./media/characters/cat/nickit.svg",
  28008. extra: 1980 / 1585,
  28009. bottom: 102 / 2082
  28010. }
  28011. },
  28012. lopunnyFront: {
  28013. height: math.unit(5, "feet"),
  28014. name: "Lopunny (Front)",
  28015. image: {
  28016. source: "./media/characters/cat/lopunny-front.svg",
  28017. extra: 1782 / 1469,
  28018. bottom: 38 / 1820
  28019. }
  28020. },
  28021. lopunnyBack: {
  28022. height: math.unit(5, "feet"),
  28023. name: "Lopunny (Back)",
  28024. image: {
  28025. source: "./media/characters/cat/lopunny-back.svg",
  28026. extra: 1660 / 1490,
  28027. bottom: 25 / 1685
  28028. }
  28029. },
  28030. },
  28031. [
  28032. {
  28033. name: "Really small",
  28034. height: math.unit(1, "nm")
  28035. },
  28036. {
  28037. name: "Micro",
  28038. height: math.unit(5, "inches")
  28039. },
  28040. {
  28041. name: "Normal",
  28042. height: math.unit(5 + 6 / 12, "feet"),
  28043. default: true
  28044. },
  28045. {
  28046. name: "Macro",
  28047. height: math.unit(50, "feet")
  28048. },
  28049. {
  28050. name: "Macro+",
  28051. height: math.unit(150, "feet")
  28052. },
  28053. {
  28054. name: "Megamacro",
  28055. height: math.unit(100, "miles")
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28061. {
  28062. front: {
  28063. height: math.unit(63.4, "meters"),
  28064. weight: math.unit(3.28349e+6, "kilograms"),
  28065. name: "Front",
  28066. image: {
  28067. source: "./media/characters/kirina-violet/front.svg",
  28068. extra: 2812 / 2725,
  28069. bottom: 0 / 2812
  28070. }
  28071. },
  28072. back: {
  28073. height: math.unit(63.4, "meters"),
  28074. weight: math.unit(3.28349e+6, "kilograms"),
  28075. name: "Back",
  28076. image: {
  28077. source: "./media/characters/kirina-violet/back.svg",
  28078. extra: 2812 / 2725,
  28079. bottom: 0 / 2812
  28080. }
  28081. },
  28082. mouth: {
  28083. height: math.unit(4.35, "meters"),
  28084. name: "Mouth",
  28085. image: {
  28086. source: "./media/characters/kirina-violet/mouth.svg"
  28087. }
  28088. },
  28089. paw: {
  28090. height: math.unit(5.6, "meters"),
  28091. name: "Paw",
  28092. image: {
  28093. source: "./media/characters/kirina-violet/paw.svg"
  28094. }
  28095. },
  28096. tail: {
  28097. height: math.unit(18, "meters"),
  28098. name: "Tail",
  28099. image: {
  28100. source: "./media/characters/kirina-violet/tail.svg"
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Macro",
  28107. height: math.unit(63.4, "meters"),
  28108. default: true
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28114. {
  28115. front: {
  28116. height: math.unit(60, "feet"),
  28117. name: "Front",
  28118. image: {
  28119. source: "./media/characters/cat-gigachu/front.svg",
  28120. extra: 1024 / 780,
  28121. bottom: 23 / 1047
  28122. }
  28123. },
  28124. back: {
  28125. height: math.unit(60, "feet"),
  28126. name: "Back",
  28127. image: {
  28128. source: "./media/characters/cat-gigachu/back.svg",
  28129. extra: 1024 / 780,
  28130. bottom: 23 / 1047
  28131. }
  28132. },
  28133. },
  28134. [
  28135. {
  28136. name: "Dynamax",
  28137. height: math.unit(60, "feet"),
  28138. default: true
  28139. },
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28144. {
  28145. front: {
  28146. height: math.unit(6, "feet"),
  28147. weight: math.unit(150, "lb"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/sfaiyan/front.svg",
  28151. extra: 999 / 978,
  28152. bottom: 5 / 1004
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(1.82, "meters")
  28160. },
  28161. {
  28162. name: "Giant",
  28163. height: math.unit(2.27, "km"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(179, "cm"),
  28173. weight: math.unit(100, "kg"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/raunehkeli/front.svg",
  28177. extra: 1934 / 1926,
  28178. bottom: 0 / 1934
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(179, "cm")
  28186. },
  28187. {
  28188. name: "Maximum",
  28189. height: math.unit(575, "meters"),
  28190. default: true
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28196. {
  28197. front: {
  28198. height: math.unit(6, "feet"),
  28199. weight: math.unit(150, "lb"),
  28200. name: "Front",
  28201. image: {
  28202. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28203. extra: 2625 / 2518,
  28204. bottom: 60 / 2685
  28205. }
  28206. },
  28207. },
  28208. [
  28209. {
  28210. name: "Normal",
  28211. height: math.unit(6 + 2 / 12, "feet"),
  28212. default: true
  28213. },
  28214. {
  28215. name: "Macro",
  28216. height: math.unit(1180, "feet")
  28217. },
  28218. ]
  28219. ))
  28220. characterMakers.push(() => makeCharacter(
  28221. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28222. {
  28223. front: {
  28224. height: math.unit(5 + 6 / 12, "feet"),
  28225. weight: math.unit(108, "lb"),
  28226. name: "Front",
  28227. image: {
  28228. source: "./media/characters/lilith-zott/front.svg",
  28229. extra: 2510 / 2238,
  28230. bottom: 100 / 2610
  28231. }
  28232. },
  28233. frontDressed: {
  28234. height: math.unit(5 + 6 / 12, "feet"),
  28235. weight: math.unit(108, "lb"),
  28236. name: "Front (Dressed)",
  28237. image: {
  28238. source: "./media/characters/lilith-zott/front-dressed.svg",
  28239. extra: 2510 / 2238,
  28240. bottom: 100 / 2610
  28241. }
  28242. },
  28243. },
  28244. [
  28245. {
  28246. name: "Normal",
  28247. height: math.unit(5 + 6 / 12, "feet")
  28248. },
  28249. {
  28250. name: "Macro",
  28251. height: math.unit(200, "feet"),
  28252. default: true
  28253. },
  28254. {
  28255. name: "Macro+",
  28256. height: math.unit(1030, "feet")
  28257. },
  28258. ]
  28259. ))
  28260. characterMakers.push(() => makeCharacter(
  28261. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28262. {
  28263. front: {
  28264. height: math.unit(6, "feet"),
  28265. weight: math.unit(150, "lb"),
  28266. name: "Front",
  28267. image: {
  28268. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28269. extra: 2567 / 2435,
  28270. bottom: 39 / 2606
  28271. }
  28272. },
  28273. frontSuper: {
  28274. height: math.unit(6, "feet"),
  28275. name: "Front (Super)",
  28276. image: {
  28277. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28278. extra: 2567 / 2435,
  28279. bottom: 39 / 2606
  28280. }
  28281. },
  28282. },
  28283. [
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(5 + 10 / 12, "feet")
  28287. },
  28288. {
  28289. name: "Macro",
  28290. height: math.unit(220, "feet"),
  28291. default: true
  28292. },
  28293. {
  28294. name: "Macro+",
  28295. height: math.unit(1100, "feet")
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(100, "miles"),
  28304. name: "Front",
  28305. image: {
  28306. source: "./media/characters/sona/front.svg",
  28307. extra: 2433 / 2201,
  28308. bottom: 53 / 2486
  28309. }
  28310. },
  28311. foot: {
  28312. height: math.unit(16.1, "miles"),
  28313. name: "Foot",
  28314. image: {
  28315. source: "./media/characters/sona/foot.svg"
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Macro",
  28322. height: math.unit(100, "miles"),
  28323. default: true
  28324. },
  28325. ]
  28326. ))
  28327. characterMakers.push(() => makeCharacter(
  28328. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28329. {
  28330. front: {
  28331. height: math.unit(6, "feet"),
  28332. weight: math.unit(150, "lb"),
  28333. name: "Front",
  28334. image: {
  28335. source: "./media/characters/bailey/front.svg",
  28336. extra: 1778 / 1724,
  28337. bottom: 30 / 1808
  28338. }
  28339. },
  28340. },
  28341. [
  28342. {
  28343. name: "Micro",
  28344. height: math.unit(4, "inches")
  28345. },
  28346. {
  28347. name: "Normal",
  28348. height: math.unit(5 + 5 / 12, "feet"),
  28349. default: true
  28350. },
  28351. {
  28352. name: "Macro",
  28353. height: math.unit(250, "feet")
  28354. },
  28355. {
  28356. name: "Megamacro",
  28357. height: math.unit(100, "miles")
  28358. },
  28359. ]
  28360. ))
  28361. characterMakers.push(() => makeCharacter(
  28362. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28363. {
  28364. front: {
  28365. height: math.unit(5 + 2 / 12, "feet"),
  28366. weight: math.unit(120, "lb"),
  28367. name: "Front",
  28368. image: {
  28369. source: "./media/characters/snaps/front.svg",
  28370. extra: 2370 / 2177,
  28371. bottom: 48 / 2418
  28372. }
  28373. },
  28374. back: {
  28375. height: math.unit(5 + 2 / 12, "feet"),
  28376. weight: math.unit(120, "lb"),
  28377. name: "Back",
  28378. image: {
  28379. source: "./media/characters/snaps/back.svg",
  28380. extra: 2408 / 2258,
  28381. bottom: 15 / 2423
  28382. }
  28383. },
  28384. },
  28385. [
  28386. {
  28387. name: "Micro",
  28388. height: math.unit(9, "inches")
  28389. },
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(5 + 2 / 12, "feet"),
  28393. default: true
  28394. },
  28395. {
  28396. name: "Mini Macro",
  28397. height: math.unit(10, "feet")
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(1.8, "meters"),
  28406. weight: math.unit(85, "kg"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/azteck/front.svg",
  28410. extra: 2815 / 2625,
  28411. bottom: 89 / 2904
  28412. }
  28413. },
  28414. back: {
  28415. height: math.unit(1.8, "meters"),
  28416. weight: math.unit(85, "kg"),
  28417. name: "Back",
  28418. image: {
  28419. source: "./media/characters/azteck/back.svg",
  28420. extra: 2856 / 2648,
  28421. bottom: 85 / 2941
  28422. }
  28423. },
  28424. frontDressed: {
  28425. height: math.unit(1.8, "meters"),
  28426. weight: math.unit(85, "kg"),
  28427. name: "Front (Dressed)",
  28428. image: {
  28429. source: "./media/characters/azteck/front-dressed.svg",
  28430. extra: 2147 / 2003,
  28431. bottom: 68 / 2215
  28432. }
  28433. },
  28434. head: {
  28435. height: math.unit(0.47, "meters"),
  28436. weight: math.unit(85, "kg"),
  28437. name: "Head",
  28438. image: {
  28439. source: "./media/characters/azteck/head.svg"
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Bite sized",
  28446. height: math.unit(16, "cm")
  28447. },
  28448. {
  28449. name: "Normal",
  28450. height: math.unit(1.8, "meters"),
  28451. default: true
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(6, "feet"),
  28460. weight: math.unit(150, "lb"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/pidge/front.svg",
  28464. extra: 620 / 588,
  28465. bottom: 9 / 629
  28466. }
  28467. },
  28468. back: {
  28469. height: math.unit(6, "feet"),
  28470. weight: math.unit(150, "lb"),
  28471. name: "Back",
  28472. image: {
  28473. source: "./media/characters/pidge/back.svg",
  28474. extra: 620 / 588,
  28475. bottom: 9 / 629
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Macro",
  28482. height: math.unit(1, "mile"),
  28483. default: true
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(6, "feet"),
  28492. weight: math.unit(150, "lb"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/en/front.svg",
  28496. extra: 1697 / 1563,
  28497. bottom: 103 / 1800
  28498. }
  28499. },
  28500. back: {
  28501. height: math.unit(6, "feet"),
  28502. weight: math.unit(150, "lb"),
  28503. name: "Back",
  28504. image: {
  28505. source: "./media/characters/en/back.svg",
  28506. extra: 1700 / 1570,
  28507. bottom: 51 / 1751
  28508. }
  28509. },
  28510. frontDressed: {
  28511. height: math.unit(6, "feet"),
  28512. weight: math.unit(150, "lb"),
  28513. name: "Front (Dressed)",
  28514. image: {
  28515. source: "./media/characters/en/front-dressed.svg",
  28516. extra: 1697 / 1563,
  28517. bottom: 103 / 1800
  28518. }
  28519. },
  28520. backDressed: {
  28521. height: math.unit(6, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Back (Dressed)",
  28524. image: {
  28525. source: "./media/characters/en/back-dressed.svg",
  28526. extra: 1700 / 1570,
  28527. bottom: 51 / 1751
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Macro",
  28534. height: math.unit(210, "feet"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(6, "feet"),
  28544. weight: math.unit(150, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/haze-orris/front.svg",
  28548. extra: 3975 / 3525,
  28549. bottom: 137 / 4112
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Micro",
  28556. height: math.unit(150, "mm"),
  28557. default: true
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28563. {
  28564. front: {
  28565. height: math.unit(6, "feet"),
  28566. weight: math.unit(150, "lb"),
  28567. name: "Front",
  28568. image: {
  28569. source: "./media/characters/casselene-yaro/front.svg",
  28570. extra: 4721 / 4541,
  28571. bottom: 82 / 4803
  28572. }
  28573. },
  28574. back: {
  28575. height: math.unit(6, "feet"),
  28576. weight: math.unit(150, "lb"),
  28577. name: "Back",
  28578. image: {
  28579. source: "./media/characters/casselene-yaro/back.svg",
  28580. extra: 4569 / 4377,
  28581. bottom: 69 / 4638
  28582. }
  28583. },
  28584. frontDressed: {
  28585. height: math.unit(6, "feet"),
  28586. weight: math.unit(150, "lb"),
  28587. name: "Front-dressed",
  28588. image: {
  28589. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28590. extra: 4721 / 4541,
  28591. bottom: 82 / 4803
  28592. }
  28593. },
  28594. },
  28595. [
  28596. {
  28597. name: "Macro",
  28598. height: math.unit(190, "feet"),
  28599. default: true
  28600. },
  28601. ]
  28602. ))
  28603. characterMakers.push(() => makeCharacter(
  28604. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28605. {
  28606. front: {
  28607. height: math.unit(6, "feet"),
  28608. weight: math.unit(150, "lb"),
  28609. name: "Front",
  28610. image: {
  28611. source: "./media/characters/myra-rue-delore/front.svg",
  28612. extra: 1340 / 1308,
  28613. bottom: 67 / 1407
  28614. }
  28615. },
  28616. back: {
  28617. height: math.unit(6, "feet"),
  28618. weight: math.unit(150, "lb"),
  28619. name: "Back",
  28620. image: {
  28621. source: "./media/characters/myra-rue-delore/back.svg",
  28622. extra: 1341 / 1310,
  28623. bottom: 40 / 1381
  28624. }
  28625. },
  28626. frontDressed: {
  28627. height: math.unit(6, "feet"),
  28628. weight: math.unit(150, "lb"),
  28629. name: "Front (Dressed)",
  28630. image: {
  28631. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28632. extra: 1340 / 1308,
  28633. bottom: 67 / 1407
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Macro",
  28640. height: math.unit(150, "feet"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(10, "feet"),
  28650. weight: math.unit(15015, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/fem!plat/front.svg",
  28654. extra: 2799 / 2604,
  28655. bottom: 149 / 2948
  28656. }
  28657. },
  28658. },
  28659. [
  28660. {
  28661. name: "Normal",
  28662. height: math.unit(10, "feet"),
  28663. default: true
  28664. },
  28665. {
  28666. name: "Macro",
  28667. height: math.unit(100, "feet")
  28668. },
  28669. {
  28670. name: "Megamacro",
  28671. height: math.unit(1000, "feet")
  28672. },
  28673. ]
  28674. ))
  28675. characterMakers.push(() => makeCharacter(
  28676. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28677. {
  28678. front: {
  28679. height: math.unit(15 + 5 / 12, "feet"),
  28680. weight: math.unit(4600, "lb"),
  28681. name: "Front",
  28682. image: {
  28683. source: "./media/characters/neapolitan-ananassa/front.svg",
  28684. extra: 2903 / 2736,
  28685. bottom: 0 / 2903
  28686. }
  28687. },
  28688. side: {
  28689. height: math.unit(15 + 5 / 12, "feet"),
  28690. weight: math.unit(4600, "lb"),
  28691. name: "Side",
  28692. image: {
  28693. source: "./media/characters/neapolitan-ananassa/side.svg",
  28694. extra: 2925 / 2719,
  28695. bottom: 0 / 2925
  28696. }
  28697. },
  28698. back: {
  28699. height: math.unit(15 + 5 / 12, "feet"),
  28700. weight: math.unit(4600, "lb"),
  28701. name: "Back",
  28702. image: {
  28703. source: "./media/characters/neapolitan-ananassa/back.svg",
  28704. extra: 2903 / 2736,
  28705. bottom: 0 / 2903
  28706. }
  28707. },
  28708. },
  28709. [
  28710. {
  28711. name: "Normal",
  28712. height: math.unit(15 + 5 / 12, "feet"),
  28713. default: true
  28714. },
  28715. {
  28716. name: "Post-Millenium",
  28717. height: math.unit(35 + 5 / 12, "feet")
  28718. },
  28719. {
  28720. name: "Post-Era",
  28721. height: math.unit(450 + 5 / 12, "feet")
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28727. {
  28728. front: {
  28729. height: math.unit(300, "meters"),
  28730. weight: math.unit(125000, "tonnes"),
  28731. name: "Front",
  28732. image: {
  28733. source: "./media/characters/pazuzu/front.svg",
  28734. extra: 877 / 794,
  28735. bottom: 47 / 924
  28736. }
  28737. },
  28738. },
  28739. [
  28740. {
  28741. name: "Macro",
  28742. height: math.unit(300, "meters"),
  28743. default: true
  28744. },
  28745. ]
  28746. ))
  28747. characterMakers.push(() => makeCharacter(
  28748. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28749. {
  28750. side: {
  28751. height: math.unit(10 + 7 / 12, "feet"),
  28752. weight: math.unit(2.5, "tons"),
  28753. name: "Side",
  28754. image: {
  28755. source: "./media/characters/aasha/side.svg",
  28756. extra: 1345 / 1245,
  28757. bottom: 111 / 1456
  28758. }
  28759. },
  28760. back: {
  28761. height: math.unit(10 + 7 / 12, "feet"),
  28762. weight: math.unit(2.5, "tons"),
  28763. name: "Back",
  28764. image: {
  28765. source: "./media/characters/aasha/back.svg",
  28766. extra: 1133 / 1057,
  28767. bottom: 257 / 1390
  28768. }
  28769. },
  28770. },
  28771. [
  28772. {
  28773. name: "Normal",
  28774. height: math.unit(10 + 7 / 12, "feet"),
  28775. default: true
  28776. },
  28777. ]
  28778. ))
  28779. characterMakers.push(() => makeCharacter(
  28780. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28781. {
  28782. front: {
  28783. height: math.unit(6 + 3 / 12, "feet"),
  28784. name: "Front",
  28785. image: {
  28786. source: "./media/characters/nevan/front.svg",
  28787. extra: 704 / 704,
  28788. bottom: 28 / 732
  28789. }
  28790. },
  28791. back: {
  28792. height: math.unit(6 + 3 / 12, "feet"),
  28793. name: "Back",
  28794. image: {
  28795. source: "./media/characters/nevan/back.svg",
  28796. extra: 714 / 714,
  28797. bottom: 21 / 735
  28798. }
  28799. },
  28800. frontFlaccid: {
  28801. height: math.unit(6 + 3 / 12, "feet"),
  28802. name: "Front (Flaccid)",
  28803. image: {
  28804. source: "./media/characters/nevan/front-flaccid.svg",
  28805. extra: 704 / 704,
  28806. bottom: 28 / 732
  28807. }
  28808. },
  28809. frontErect: {
  28810. height: math.unit(6 + 3 / 12, "feet"),
  28811. name: "Front (Erect)",
  28812. image: {
  28813. source: "./media/characters/nevan/front-erect.svg",
  28814. extra: 704 / 704,
  28815. bottom: 28 / 732
  28816. }
  28817. },
  28818. backFlaccid: {
  28819. height: math.unit(6 + 3 / 12, "feet"),
  28820. name: "Back (Flaccid)",
  28821. image: {
  28822. source: "./media/characters/nevan/back-flaccid.svg",
  28823. extra: 714 / 714,
  28824. bottom: 21 / 735
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(6 + 3 / 12, "feet"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(4, "feet"),
  28841. name: "Front",
  28842. image: {
  28843. source: "./media/characters/arhan/front.svg",
  28844. extra: 3368 / 3133,
  28845. bottom: 0 / 3368
  28846. }
  28847. },
  28848. side: {
  28849. height: math.unit(4, "feet"),
  28850. name: "Side",
  28851. image: {
  28852. source: "./media/characters/arhan/side.svg",
  28853. extra: 3347 / 3105,
  28854. bottom: 0 / 3347
  28855. }
  28856. },
  28857. tongue: {
  28858. height: math.unit(1.42, "feet"),
  28859. name: "Tongue",
  28860. image: {
  28861. source: "./media/characters/arhan/tongue.svg"
  28862. }
  28863. },
  28864. head: {
  28865. height: math.unit(0.85, "feet"),
  28866. name: "Head",
  28867. image: {
  28868. source: "./media/characters/arhan/head.svg"
  28869. }
  28870. },
  28871. },
  28872. [
  28873. {
  28874. name: "Normal",
  28875. height: math.unit(4, "feet"),
  28876. default: true
  28877. },
  28878. ]
  28879. ))
  28880. characterMakers.push(() => makeCharacter(
  28881. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28882. {
  28883. front: {
  28884. height: math.unit(5 + 7.5 / 12, "feet"),
  28885. weight: math.unit(120, "lb"),
  28886. name: "Front",
  28887. image: {
  28888. source: "./media/characters/digi-duncan/front.svg",
  28889. extra: 330 / 326,
  28890. bottom: 16 / 346
  28891. }
  28892. },
  28893. side: {
  28894. height: math.unit(5 + 7.5 / 12, "feet"),
  28895. weight: math.unit(120, "lb"),
  28896. name: "Side",
  28897. image: {
  28898. source: "./media/characters/digi-duncan/side.svg",
  28899. extra: 341 / 337,
  28900. bottom: 1 / 342
  28901. }
  28902. },
  28903. back: {
  28904. height: math.unit(5 + 7.5 / 12, "feet"),
  28905. weight: math.unit(120, "lb"),
  28906. name: "Back",
  28907. image: {
  28908. source: "./media/characters/digi-duncan/back.svg",
  28909. extra: 330 / 326,
  28910. bottom: 12 / 342
  28911. }
  28912. },
  28913. },
  28914. [
  28915. {
  28916. name: "Speck",
  28917. height: math.unit(0.25, "mm")
  28918. },
  28919. {
  28920. name: "Micro",
  28921. height: math.unit(5, "mm")
  28922. },
  28923. {
  28924. name: "Tiny",
  28925. height: math.unit(0.5, "inches"),
  28926. default: true
  28927. },
  28928. {
  28929. name: "Human",
  28930. height: math.unit(5 + 7.5 / 12, "feet")
  28931. },
  28932. {
  28933. name: "Minigiant",
  28934. height: math.unit(8 + 5.25, "feet")
  28935. },
  28936. {
  28937. name: "Giant",
  28938. height: math.unit(2000, "feet")
  28939. },
  28940. {
  28941. name: "Mega",
  28942. height: math.unit(371.1, "miles")
  28943. },
  28944. ]
  28945. ))
  28946. characterMakers.push(() => makeCharacter(
  28947. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28948. {
  28949. front: {
  28950. height: math.unit(2, "meters"),
  28951. weight: math.unit(350, "kg"),
  28952. name: "Front",
  28953. image: {
  28954. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28955. extra: 898 / 838,
  28956. bottom: 9 / 907
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Micro",
  28963. height: math.unit(8, "meters")
  28964. },
  28965. {
  28966. name: "Normal",
  28967. height: math.unit(50, "meters"),
  28968. default: true
  28969. },
  28970. {
  28971. name: "Macro",
  28972. height: math.unit(500, "meters")
  28973. },
  28974. ]
  28975. ))
  28976. characterMakers.push(() => makeCharacter(
  28977. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28978. {
  28979. front: {
  28980. height: math.unit(6 + 6 / 12, "feet"),
  28981. name: "Front",
  28982. image: {
  28983. source: "./media/characters/khardesh/front.svg",
  28984. extra: 888 / 797,
  28985. bottom: 25 / 913
  28986. }
  28987. },
  28988. },
  28989. [
  28990. {
  28991. name: "Normal",
  28992. height: math.unit(6 + 6 / 12, "feet"),
  28993. default: true
  28994. },
  28995. {
  28996. name: "Normal+",
  28997. height: math.unit(4, "meters")
  28998. },
  28999. {
  29000. name: "Macro",
  29001. height: math.unit(50, "meters")
  29002. },
  29003. {
  29004. name: "Macro+",
  29005. height: math.unit(100, "meters")
  29006. },
  29007. {
  29008. name: "Megamacro",
  29009. height: math.unit(20, "km")
  29010. },
  29011. ]
  29012. ))
  29013. characterMakers.push(() => makeCharacter(
  29014. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29015. {
  29016. front: {
  29017. height: math.unit(6, "feet"),
  29018. weight: math.unit(150, "lb"),
  29019. name: "Front",
  29020. image: {
  29021. source: "./media/characters/kosho/front.svg",
  29022. extra: 1847 / 1847,
  29023. bottom: 86 / 1933
  29024. }
  29025. },
  29026. },
  29027. [
  29028. {
  29029. name: "Second-stage micro",
  29030. height: math.unit(0.5, "inches")
  29031. },
  29032. {
  29033. name: "First-stage micro",
  29034. height: math.unit(6, "inches")
  29035. },
  29036. {
  29037. name: "Normal",
  29038. height: math.unit(6, "feet"),
  29039. default: true
  29040. },
  29041. {
  29042. name: "First-stage macro",
  29043. height: math.unit(72, "feet")
  29044. },
  29045. {
  29046. name: "Second-stage macro",
  29047. height: math.unit(864, "feet")
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29053. {
  29054. normal: {
  29055. height: math.unit(4 + 6 / 12, "feet"),
  29056. name: "Normal",
  29057. image: {
  29058. source: "./media/characters/hydra/normal.svg",
  29059. extra: 2833 / 2634,
  29060. bottom: 68 / 2901
  29061. }
  29062. },
  29063. smol: {
  29064. height: math.unit(0.705, "inches"),
  29065. name: "Smol",
  29066. image: {
  29067. source: "./media/characters/hydra/smol.svg",
  29068. extra: 2715 / 2540,
  29069. bottom: 0 / 2715
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Normal",
  29076. height: math.unit(4 + 6 / 12, "feet"),
  29077. default: true
  29078. }
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29083. {
  29084. front: {
  29085. height: math.unit(0.6, "cm"),
  29086. name: "Front",
  29087. image: {
  29088. source: "./media/characters/daz/front.svg",
  29089. extra: 1682 / 1164,
  29090. bottom: 42 / 1724
  29091. }
  29092. },
  29093. },
  29094. [
  29095. {
  29096. name: "Normal",
  29097. height: math.unit(0.6, "cm"),
  29098. default: true
  29099. },
  29100. ]
  29101. ))
  29102. characterMakers.push(() => makeCharacter(
  29103. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29104. {
  29105. front: {
  29106. height: math.unit(6, "feet"),
  29107. weight: math.unit(235, "lb"),
  29108. name: "Front",
  29109. image: {
  29110. source: "./media/characters/theo-pangolin/front.svg",
  29111. extra: 1996 / 1969,
  29112. bottom: 115 / 2111
  29113. }
  29114. },
  29115. back: {
  29116. height: math.unit(6, "feet"),
  29117. weight: math.unit(235, "lb"),
  29118. name: "Back",
  29119. image: {
  29120. source: "./media/characters/theo-pangolin/back.svg",
  29121. extra: 1979 / 1979,
  29122. bottom: 40 / 2019
  29123. }
  29124. },
  29125. feral: {
  29126. height: math.unit(2, "feet"),
  29127. weight: math.unit(30, "lb"),
  29128. name: "Feral",
  29129. image: {
  29130. source: "./media/characters/theo-pangolin/feral.svg",
  29131. extra: 803 / 791,
  29132. bottom: 181 / 984
  29133. }
  29134. },
  29135. footFive: {
  29136. height: math.unit(1.43, "feet"),
  29137. name: "Foot (Five Toes)",
  29138. image: {
  29139. source: "./media/characters/theo-pangolin/foot-five.svg"
  29140. }
  29141. },
  29142. footFour: {
  29143. height: math.unit(1.43, "feet"),
  29144. name: "Foot (Four Toes)",
  29145. image: {
  29146. source: "./media/characters/theo-pangolin/foot-four.svg"
  29147. }
  29148. },
  29149. handFour: {
  29150. height: math.unit(0.81, "feet"),
  29151. name: "Hand (Four Fingers)",
  29152. image: {
  29153. source: "./media/characters/theo-pangolin/hand-four.svg"
  29154. }
  29155. },
  29156. handThree: {
  29157. height: math.unit(0.81, "feet"),
  29158. name: "Hand (Three Fingers)",
  29159. image: {
  29160. source: "./media/characters/theo-pangolin/hand-three.svg"
  29161. }
  29162. },
  29163. headFront: {
  29164. height: math.unit(1.37, "feet"),
  29165. name: "Head (Front)",
  29166. image: {
  29167. source: "./media/characters/theo-pangolin/head-front.svg"
  29168. }
  29169. },
  29170. headSide: {
  29171. height: math.unit(1.43, "feet"),
  29172. name: "Head (Side)",
  29173. image: {
  29174. source: "./media/characters/theo-pangolin/head-side.svg"
  29175. }
  29176. },
  29177. tongue: {
  29178. height: math.unit(2.29, "feet"),
  29179. name: "Tongue",
  29180. image: {
  29181. source: "./media/characters/theo-pangolin/tongue.svg"
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Normal",
  29188. height: math.unit(6, "feet")
  29189. },
  29190. {
  29191. name: "Macro",
  29192. height: math.unit(400, "feet"),
  29193. default: true
  29194. },
  29195. ]
  29196. ))
  29197. characterMakers.push(() => makeCharacter(
  29198. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29199. {
  29200. front: {
  29201. height: math.unit(6, "inches"),
  29202. weight: math.unit(0.036, "kg"),
  29203. name: "Front",
  29204. image: {
  29205. source: "./media/characters/renée/front.svg",
  29206. extra: 900 / 886,
  29207. bottom: 8 / 908
  29208. }
  29209. },
  29210. },
  29211. [
  29212. {
  29213. name: "Nano",
  29214. height: math.unit(1, "nm")
  29215. },
  29216. {
  29217. name: "Micro",
  29218. height: math.unit(1, "mm")
  29219. },
  29220. {
  29221. name: "Normal",
  29222. height: math.unit(6, "inches")
  29223. },
  29224. {
  29225. name: "Macro",
  29226. height: math.unit(2000, "feet"),
  29227. default: true
  29228. },
  29229. {
  29230. name: "Megamacro",
  29231. height: math.unit(2, "km")
  29232. },
  29233. {
  29234. name: "Gigamacro",
  29235. height: math.unit(2000, "km")
  29236. },
  29237. {
  29238. name: "Teramacro",
  29239. height: math.unit(250000, "km")
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(4, "meters"),
  29248. weight: math.unit(150, "kg"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/caledvwlch/front.svg",
  29252. extra: 1760 / 1551,
  29253. bottom: 28 / 1788
  29254. }
  29255. },
  29256. side: {
  29257. height: math.unit(4, "meters"),
  29258. weight: math.unit(150, "kg"),
  29259. name: "Side",
  29260. image: {
  29261. source: "./media/characters/caledvwlch/side.svg",
  29262. extra: 1605 / 1536,
  29263. bottom: 31 / 1636
  29264. }
  29265. },
  29266. back: {
  29267. height: math.unit(4, "meters"),
  29268. weight: math.unit(150, "kg"),
  29269. name: "Back",
  29270. image: {
  29271. source: "./media/characters/caledvwlch/back.svg",
  29272. extra: 1635 / 1565,
  29273. bottom: 27 / 1662
  29274. }
  29275. },
  29276. },
  29277. [
  29278. {
  29279. name: "\"Incognito\"",
  29280. height: math.unit(4, "meters")
  29281. },
  29282. {
  29283. name: "Small rampage",
  29284. height: math.unit(600, "meters")
  29285. },
  29286. {
  29287. name: "Mega",
  29288. height: math.unit(30, "km")
  29289. },
  29290. {
  29291. name: "Home-size",
  29292. height: math.unit(50, "km"),
  29293. default: true
  29294. },
  29295. {
  29296. name: "Giga",
  29297. height: math.unit(300, "km")
  29298. },
  29299. {
  29300. name: "Lounging",
  29301. height: math.unit(11000, "km")
  29302. },
  29303. {
  29304. name: "Planet snacking",
  29305. height: math.unit(2000000, "km")
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29311. {
  29312. front: {
  29313. height: math.unit(6, "feet"),
  29314. weight: math.unit(215, "lb"),
  29315. name: "Front",
  29316. image: {
  29317. source: "./media/characters/sapphire-svell/front.svg",
  29318. extra: 495 / 455,
  29319. bottom: 20 / 515
  29320. }
  29321. },
  29322. back: {
  29323. height: math.unit(6, "feet"),
  29324. weight: math.unit(216, "lb"),
  29325. name: "Back",
  29326. image: {
  29327. source: "./media/characters/sapphire-svell/back.svg",
  29328. extra: 497 / 477,
  29329. bottom: 7 / 504
  29330. }
  29331. },
  29332. maw: {
  29333. height: math.unit(1.57, "feet"),
  29334. name: "Maw",
  29335. image: {
  29336. source: "./media/characters/sapphire-svell/maw.svg"
  29337. }
  29338. },
  29339. foot: {
  29340. height: math.unit(1.07, "feet"),
  29341. name: "Foot",
  29342. image: {
  29343. source: "./media/characters/sapphire-svell/foot.svg"
  29344. }
  29345. },
  29346. toering: {
  29347. height: math.unit(1.7, "inch"),
  29348. name: "Toering",
  29349. image: {
  29350. source: "./media/characters/sapphire-svell/toering.svg"
  29351. }
  29352. },
  29353. },
  29354. [
  29355. {
  29356. name: "Normal",
  29357. height: math.unit(300, "feet"),
  29358. default: true
  29359. },
  29360. {
  29361. name: "Augmented",
  29362. height: math.unit(1250, "feet")
  29363. },
  29364. {
  29365. name: "Unleashed",
  29366. height: math.unit(3000, "feet")
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29372. {
  29373. side: {
  29374. height: math.unit(2 + 3 / 12, "feet"),
  29375. weight: math.unit(110, "lb"),
  29376. name: "Side",
  29377. image: {
  29378. source: "./media/characters/glitch-flux/side.svg",
  29379. extra: 997 / 805,
  29380. bottom: 20 / 1017
  29381. }
  29382. },
  29383. },
  29384. [
  29385. {
  29386. name: "Normal",
  29387. height: math.unit(2 + 3 / 12, "feet"),
  29388. default: true
  29389. },
  29390. ]
  29391. ))
  29392. characterMakers.push(() => makeCharacter(
  29393. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29394. {
  29395. front: {
  29396. height: math.unit(4, "meters"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/mid/front.svg",
  29400. extra: 507 / 476,
  29401. bottom: 17 / 524
  29402. }
  29403. },
  29404. back: {
  29405. height: math.unit(4, "meters"),
  29406. name: "Back",
  29407. image: {
  29408. source: "./media/characters/mid/back.svg",
  29409. extra: 519 / 487,
  29410. bottom: 7 / 526
  29411. }
  29412. },
  29413. stuck: {
  29414. height: math.unit(2.2, "meters"),
  29415. name: "Stuck",
  29416. image: {
  29417. source: "./media/characters/mid/stuck.svg",
  29418. extra: 1951 / 1869,
  29419. bottom: 88 / 2039
  29420. }
  29421. }
  29422. },
  29423. [
  29424. {
  29425. name: "Normal",
  29426. height: math.unit(4, "meters"),
  29427. default: true
  29428. },
  29429. {
  29430. name: "Big",
  29431. height: math.unit(10, "meters")
  29432. },
  29433. {
  29434. name: "Macro",
  29435. height: math.unit(800, "meters")
  29436. },
  29437. {
  29438. name: "Megamacro",
  29439. height: math.unit(100, "km")
  29440. },
  29441. {
  29442. name: "Overgrown",
  29443. height: math.unit(1, "parsec")
  29444. },
  29445. ]
  29446. ))
  29447. characterMakers.push(() => makeCharacter(
  29448. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29449. {
  29450. front: {
  29451. height: math.unit(2.5, "meters"),
  29452. weight: math.unit(225, "kg"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/iris/front.svg",
  29456. extra: 3348 / 3251,
  29457. bottom: 205 / 3553
  29458. }
  29459. },
  29460. maw: {
  29461. height: math.unit(0.56, "meter"),
  29462. name: "Maw",
  29463. image: {
  29464. source: "./media/characters/iris/maw.svg"
  29465. }
  29466. },
  29467. },
  29468. [
  29469. {
  29470. name: "Mewter cat",
  29471. height: math.unit(1.2, "meters")
  29472. },
  29473. {
  29474. name: "Minimacro",
  29475. height: math.unit(2.5, "meters"),
  29476. default: true
  29477. },
  29478. {
  29479. name: "Macro",
  29480. height: math.unit(180, "meters")
  29481. },
  29482. {
  29483. name: "Megamacro",
  29484. height: math.unit(2746, "meters")
  29485. },
  29486. ]
  29487. ))
  29488. characterMakers.push(() => makeCharacter(
  29489. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29490. {
  29491. front: {
  29492. height: math.unit(6, "feet"),
  29493. weight: math.unit(135, "lb"),
  29494. name: "Front",
  29495. image: {
  29496. source: "./media/characters/axel/front.svg",
  29497. extra: 908 / 908,
  29498. bottom: 58 / 966
  29499. }
  29500. },
  29501. side: {
  29502. height: math.unit(6, "feet"),
  29503. weight: math.unit(135, "lb"),
  29504. name: "Side",
  29505. image: {
  29506. source: "./media/characters/axel/side.svg",
  29507. extra: 958 / 958,
  29508. bottom: 11 / 969
  29509. }
  29510. },
  29511. back: {
  29512. height: math.unit(6, "feet"),
  29513. weight: math.unit(135, "lb"),
  29514. name: "Back",
  29515. image: {
  29516. source: "./media/characters/axel/back.svg",
  29517. extra: 887 / 887,
  29518. bottom: 34 / 921
  29519. }
  29520. },
  29521. head: {
  29522. height: math.unit(1.07, "feet"),
  29523. name: "Head",
  29524. image: {
  29525. source: "./media/characters/axel/head.svg"
  29526. }
  29527. },
  29528. beak: {
  29529. height: math.unit(1.4, "feet"),
  29530. name: "Beak",
  29531. image: {
  29532. source: "./media/characters/axel/beak.svg"
  29533. }
  29534. },
  29535. beakSide: {
  29536. height: math.unit(1.4, "feet"),
  29537. name: "Beak Side",
  29538. image: {
  29539. source: "./media/characters/axel/beak-side.svg"
  29540. }
  29541. },
  29542. sheath: {
  29543. height: math.unit(0.5, "feet"),
  29544. name: "Sheath",
  29545. image: {
  29546. source: "./media/characters/axel/sheath.svg"
  29547. }
  29548. },
  29549. dick: {
  29550. height: math.unit(0.98, "feet"),
  29551. name: "Dick",
  29552. image: {
  29553. source: "./media/characters/axel/dick.svg"
  29554. }
  29555. },
  29556. },
  29557. [
  29558. {
  29559. name: "Macro",
  29560. height: math.unit(68, "meters"),
  29561. default: true
  29562. },
  29563. ]
  29564. ))
  29565. characterMakers.push(() => makeCharacter(
  29566. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29567. {
  29568. front: {
  29569. height: math.unit(3.5, "meters"),
  29570. weight: math.unit(1200, "kg"),
  29571. name: "Front",
  29572. image: {
  29573. source: "./media/characters/joanna/front.svg",
  29574. extra: 1596 / 1488,
  29575. bottom: 29 / 1625
  29576. }
  29577. },
  29578. back: {
  29579. height: math.unit(3.5, "meters"),
  29580. weight: math.unit(1200, "kg"),
  29581. name: "Back",
  29582. image: {
  29583. source: "./media/characters/joanna/back.svg",
  29584. extra: 1594 / 1495,
  29585. bottom: 26 / 1620
  29586. }
  29587. },
  29588. frontShorts: {
  29589. height: math.unit(3.5, "meters"),
  29590. weight: math.unit(1200, "kg"),
  29591. name: "Front (Shorts)",
  29592. image: {
  29593. source: "./media/characters/joanna/front-shorts.svg",
  29594. extra: 1596 / 1488,
  29595. bottom: 29 / 1625
  29596. }
  29597. },
  29598. frontBiker: {
  29599. height: math.unit(3.5, "meters"),
  29600. weight: math.unit(1200, "kg"),
  29601. name: "Front (Biker)",
  29602. image: {
  29603. source: "./media/characters/joanna/front-biker.svg",
  29604. extra: 1596 / 1488,
  29605. bottom: 29 / 1625
  29606. }
  29607. },
  29608. backBiker: {
  29609. height: math.unit(3.5, "meters"),
  29610. weight: math.unit(1200, "kg"),
  29611. name: "Back (Biker)",
  29612. image: {
  29613. source: "./media/characters/joanna/back-biker.svg",
  29614. extra: 1594 / 1495,
  29615. bottom: 88 / 1682
  29616. }
  29617. },
  29618. bikeLeft: {
  29619. height: math.unit(2.4, "meters"),
  29620. weight: math.unit(1600, "kg"),
  29621. name: "Bike (Left)",
  29622. image: {
  29623. source: "./media/characters/joanna/bike-left.svg",
  29624. extra: 720 / 720,
  29625. bottom: 8 / 728
  29626. }
  29627. },
  29628. bikeRight: {
  29629. height: math.unit(2.4, "meters"),
  29630. weight: math.unit(1600, "kg"),
  29631. name: "Bike (Right)",
  29632. image: {
  29633. source: "./media/characters/joanna/bike-right.svg",
  29634. extra: 720 / 720,
  29635. bottom: 8 / 728
  29636. }
  29637. },
  29638. },
  29639. [
  29640. {
  29641. name: "Incognito",
  29642. height: math.unit(3.5, "meters")
  29643. },
  29644. {
  29645. name: "Casual Big",
  29646. height: math.unit(200, "meters")
  29647. },
  29648. {
  29649. name: "Macro",
  29650. height: math.unit(600, "meters")
  29651. },
  29652. {
  29653. name: "Original",
  29654. height: math.unit(20, "km"),
  29655. default: true
  29656. },
  29657. {
  29658. name: "Giga",
  29659. height: math.unit(400, "km")
  29660. },
  29661. {
  29662. name: "Lounging",
  29663. height: math.unit(1500, "km")
  29664. },
  29665. {
  29666. name: "Planetary",
  29667. height: math.unit(200000, "km")
  29668. },
  29669. ]
  29670. ))
  29671. characterMakers.push(() => makeCharacter(
  29672. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29673. {
  29674. front: {
  29675. height: math.unit(6, "feet"),
  29676. weight: math.unit(150, "lb"),
  29677. name: "Front",
  29678. image: {
  29679. source: "./media/characters/hugo-sigil/front.svg",
  29680. extra: 522 / 500,
  29681. bottom: 2 / 524
  29682. }
  29683. },
  29684. back: {
  29685. height: math.unit(6, "feet"),
  29686. weight: math.unit(150, "lb"),
  29687. name: "Back",
  29688. image: {
  29689. source: "./media/characters/hugo-sigil/back.svg",
  29690. extra: 519 / 495,
  29691. bottom: 5 / 524
  29692. }
  29693. },
  29694. maw: {
  29695. height: math.unit(1.4, "feet"),
  29696. weight: math.unit(150, "lb"),
  29697. name: "Maw",
  29698. image: {
  29699. source: "./media/characters/hugo-sigil/maw.svg"
  29700. }
  29701. },
  29702. feet: {
  29703. height: math.unit(1.56, "feet"),
  29704. weight: math.unit(150, "lb"),
  29705. name: "Feet",
  29706. image: {
  29707. source: "./media/characters/hugo-sigil/feet.svg",
  29708. extra: 177 / 177,
  29709. bottom: 12 / 189
  29710. }
  29711. },
  29712. },
  29713. [
  29714. {
  29715. name: "Normal",
  29716. height: math.unit(6, "feet")
  29717. },
  29718. {
  29719. name: "Macro",
  29720. height: math.unit(200, "feet"),
  29721. default: true
  29722. },
  29723. ]
  29724. ))
  29725. characterMakers.push(() => makeCharacter(
  29726. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29727. {
  29728. front: {
  29729. height: math.unit(6, "feet"),
  29730. weight: math.unit(150, "lb"),
  29731. name: "Front",
  29732. image: {
  29733. source: "./media/characters/peri/front.svg",
  29734. extra: 2354 / 2233,
  29735. bottom: 49 / 2403
  29736. }
  29737. },
  29738. },
  29739. [
  29740. {
  29741. name: "Really Small",
  29742. height: math.unit(1, "nm")
  29743. },
  29744. {
  29745. name: "Micro",
  29746. height: math.unit(4, "inches")
  29747. },
  29748. {
  29749. name: "Normal",
  29750. height: math.unit(7, "inches"),
  29751. default: true
  29752. },
  29753. {
  29754. name: "Macro",
  29755. height: math.unit(400, "feet")
  29756. },
  29757. {
  29758. name: "Megamacro",
  29759. height: math.unit(100, "miles")
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29765. {
  29766. frontSlim: {
  29767. height: math.unit(7, "feet"),
  29768. name: "Front (Slim)",
  29769. image: {
  29770. source: "./media/characters/issilora/front-slim.svg",
  29771. extra: 529 / 449,
  29772. bottom: 53 / 582
  29773. }
  29774. },
  29775. sideSlim: {
  29776. height: math.unit(7, "feet"),
  29777. name: "Side (Slim)",
  29778. image: {
  29779. source: "./media/characters/issilora/side-slim.svg",
  29780. extra: 570 / 480,
  29781. bottom: 30 / 600
  29782. }
  29783. },
  29784. backSlim: {
  29785. height: math.unit(7, "feet"),
  29786. name: "Back (Slim)",
  29787. image: {
  29788. source: "./media/characters/issilora/back-slim.svg",
  29789. extra: 537 / 455,
  29790. bottom: 46 / 583
  29791. }
  29792. },
  29793. frontBuff: {
  29794. height: math.unit(7, "feet"),
  29795. name: "Front (Buff)",
  29796. image: {
  29797. source: "./media/characters/issilora/front-buff.svg",
  29798. extra: 2310 / 2035,
  29799. bottom: 335 / 2645
  29800. }
  29801. },
  29802. head: {
  29803. height: math.unit(1.94, "feet"),
  29804. name: "Head",
  29805. image: {
  29806. source: "./media/characters/issilora/head.svg"
  29807. }
  29808. },
  29809. },
  29810. [
  29811. {
  29812. name: "Minimum",
  29813. height: math.unit(7, "feet")
  29814. },
  29815. {
  29816. name: "Comfortable",
  29817. height: math.unit(17, "feet")
  29818. },
  29819. {
  29820. name: "Fun Size",
  29821. height: math.unit(47, "feet")
  29822. },
  29823. {
  29824. name: "Natural Macro",
  29825. height: math.unit(137, "feet"),
  29826. default: true
  29827. },
  29828. {
  29829. name: "Maximum Kaiju",
  29830. height: math.unit(397, "feet")
  29831. },
  29832. ]
  29833. ))
  29834. characterMakers.push(() => makeCharacter(
  29835. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29836. {
  29837. front: {
  29838. height: math.unit(50 + 9/12, "feet"),
  29839. weight: math.unit(32.8, "tons"),
  29840. name: "Front",
  29841. image: {
  29842. source: "./media/characters/irb'iiritaahn/front.svg",
  29843. extra: 1878/1826,
  29844. bottom: 326/2204
  29845. }
  29846. },
  29847. back: {
  29848. height: math.unit(50 + 9/12, "feet"),
  29849. weight: math.unit(32.8, "tons"),
  29850. name: "Back",
  29851. image: {
  29852. source: "./media/characters/irb'iiritaahn/back.svg",
  29853. extra: 2052/2018,
  29854. bottom: 152/2204
  29855. }
  29856. },
  29857. head: {
  29858. height: math.unit(12.86, "feet"),
  29859. name: "Head",
  29860. image: {
  29861. source: "./media/characters/irb'iiritaahn/head.svg"
  29862. }
  29863. },
  29864. maw: {
  29865. height: math.unit(9.66, "feet"),
  29866. name: "Maw",
  29867. image: {
  29868. source: "./media/characters/irb'iiritaahn/maw.svg"
  29869. }
  29870. },
  29871. frontDick: {
  29872. height: math.unit(8.78461, "feet"),
  29873. name: "Front Dick",
  29874. image: {
  29875. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29876. }
  29877. },
  29878. rearDick: {
  29879. height: math.unit(8.78461, "feet"),
  29880. name: "Rear Dick",
  29881. image: {
  29882. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29883. }
  29884. },
  29885. rearDickUnfolded: {
  29886. height: math.unit(8.78, "feet"),
  29887. name: "Rear Dick (Unfolded)",
  29888. image: {
  29889. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29890. }
  29891. },
  29892. wings: {
  29893. height: math.unit(43, "feet"),
  29894. name: "Wings",
  29895. image: {
  29896. source: "./media/characters/irb'iiritaahn/wings.svg"
  29897. }
  29898. },
  29899. },
  29900. [
  29901. {
  29902. name: "Macro",
  29903. height: math.unit(50 + 9/12, "feet"),
  29904. default: true
  29905. },
  29906. ]
  29907. ))
  29908. characterMakers.push(() => makeCharacter(
  29909. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29910. {
  29911. front: {
  29912. height: math.unit(205, "cm"),
  29913. weight: math.unit(102, "kg"),
  29914. name: "Front",
  29915. image: {
  29916. source: "./media/characters/irbisgreif/front.svg",
  29917. extra: 785/706,
  29918. bottom: 13/798
  29919. }
  29920. },
  29921. back: {
  29922. height: math.unit(205, "cm"),
  29923. weight: math.unit(102, "kg"),
  29924. name: "Back",
  29925. image: {
  29926. source: "./media/characters/irbisgreif/back.svg",
  29927. extra: 713/701,
  29928. bottom: 26/739
  29929. }
  29930. },
  29931. frontDressed: {
  29932. height: math.unit(216, "cm"),
  29933. weight: math.unit(102, "kg"),
  29934. name: "Front-dressed",
  29935. image: {
  29936. source: "./media/characters/irbisgreif/front-dressed.svg",
  29937. extra: 902/776,
  29938. bottom: 14/916
  29939. }
  29940. },
  29941. sideDressed: {
  29942. height: math.unit(195, "cm"),
  29943. weight: math.unit(102, "kg"),
  29944. name: "Side-dressed",
  29945. image: {
  29946. source: "./media/characters/irbisgreif/side-dressed.svg",
  29947. extra: 788/688,
  29948. bottom: 21/809
  29949. }
  29950. },
  29951. backDressed: {
  29952. height: math.unit(216, "cm"),
  29953. weight: math.unit(102, "kg"),
  29954. name: "Back-dressed",
  29955. image: {
  29956. source: "./media/characters/irbisgreif/back-dressed.svg",
  29957. extra: 901/783,
  29958. bottom: 10/911
  29959. }
  29960. },
  29961. dick: {
  29962. height: math.unit(0.49, "feet"),
  29963. name: "Dick",
  29964. image: {
  29965. source: "./media/characters/irbisgreif/dick.svg"
  29966. }
  29967. },
  29968. wingTop: {
  29969. height: math.unit(1.93 , "feet"),
  29970. name: "Wing-top",
  29971. image: {
  29972. source: "./media/characters/irbisgreif/wing-top.svg"
  29973. }
  29974. },
  29975. wingBottom: {
  29976. height: math.unit(1.93 , "feet"),
  29977. name: "Wing-bottom",
  29978. image: {
  29979. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29980. }
  29981. },
  29982. },
  29983. [
  29984. {
  29985. name: "Normal",
  29986. height: math.unit(216, "cm"),
  29987. default: true
  29988. },
  29989. ]
  29990. ))
  29991. characterMakers.push(() => makeCharacter(
  29992. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29993. {
  29994. front: {
  29995. height: math.unit(6, "feet"),
  29996. weight: math.unit(150, "lb"),
  29997. name: "Front",
  29998. image: {
  29999. source: "./media/characters/pride/front.svg",
  30000. extra: 1299/1230,
  30001. bottom: 18/1317
  30002. }
  30003. },
  30004. },
  30005. [
  30006. {
  30007. name: "Normal",
  30008. height: math.unit(7, "feet")
  30009. },
  30010. {
  30011. name: "Mini-macro",
  30012. height: math.unit(11, "feet")
  30013. },
  30014. {
  30015. name: "Macro",
  30016. height: math.unit(15, "meters"),
  30017. default: true
  30018. },
  30019. {
  30020. name: "Macro+",
  30021. height: math.unit(40, "meters")
  30022. },
  30023. ]
  30024. ))
  30025. characterMakers.push(() => makeCharacter(
  30026. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30027. {
  30028. front: {
  30029. height: math.unit(4 + 2 / 12, "feet"),
  30030. weight: math.unit(95, "lb"),
  30031. name: "Front",
  30032. image: {
  30033. source: "./media/characters/vaelophis-nyx/front.svg",
  30034. extra: 2532/2330,
  30035. bottom: 0/2532
  30036. }
  30037. },
  30038. back: {
  30039. height: math.unit(4 + 2 / 12, "feet"),
  30040. weight: math.unit(95, "lb"),
  30041. name: "Back",
  30042. image: {
  30043. source: "./media/characters/vaelophis-nyx/back.svg",
  30044. extra: 2484/2361,
  30045. bottom: 0/2484
  30046. }
  30047. },
  30048. feralSide: {
  30049. height: math.unit(2 + 1/12, "feet"),
  30050. weight: math.unit(20, "lb"),
  30051. name: "Feral (Side)",
  30052. image: {
  30053. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30054. extra: 1721/1581,
  30055. bottom: 70/1791
  30056. }
  30057. },
  30058. feralLazing: {
  30059. height: math.unit(1.08, "feet"),
  30060. weight: math.unit(20, "lb"),
  30061. name: "Feral (Lazing)",
  30062. image: {
  30063. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30064. extra: 822/822,
  30065. bottom: 248/1070
  30066. }
  30067. },
  30068. ear: {
  30069. height: math.unit(0.416, "feet"),
  30070. name: "Ear",
  30071. image: {
  30072. source: "./media/characters/vaelophis-nyx/ear.svg"
  30073. }
  30074. },
  30075. eye: {
  30076. height: math.unit(0.0748, "feet"),
  30077. name: "Eye",
  30078. image: {
  30079. source: "./media/characters/vaelophis-nyx/eye.svg"
  30080. }
  30081. },
  30082. mouth: {
  30083. height: math.unit(0.378, "feet"),
  30084. name: "Mouth",
  30085. image: {
  30086. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30087. }
  30088. },
  30089. spade: {
  30090. height: math.unit(0.55, "feet"),
  30091. name: "Spade",
  30092. image: {
  30093. source: "./media/characters/vaelophis-nyx/spade.svg"
  30094. }
  30095. },
  30096. },
  30097. [
  30098. {
  30099. name: "Normal",
  30100. height: math.unit(4 + 2/12, "feet"),
  30101. default: true
  30102. },
  30103. ]
  30104. ))
  30105. characterMakers.push(() => makeCharacter(
  30106. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30107. {
  30108. front: {
  30109. height: math.unit(7, "feet"),
  30110. weight: math.unit(231, "lb"),
  30111. name: "Front",
  30112. image: {
  30113. source: "./media/characters/flux/front.svg",
  30114. extra: 919/871,
  30115. bottom: 0/919
  30116. }
  30117. },
  30118. back: {
  30119. height: math.unit(7, "feet"),
  30120. weight: math.unit(231, "lb"),
  30121. name: "Back",
  30122. image: {
  30123. source: "./media/characters/flux/back.svg",
  30124. extra: 1040/992,
  30125. bottom: 0/1040
  30126. }
  30127. },
  30128. frontDressed: {
  30129. height: math.unit(7, "feet"),
  30130. weight: math.unit(231, "lb"),
  30131. name: "Front (Dressed)",
  30132. image: {
  30133. source: "./media/characters/flux/front-dressed.svg",
  30134. extra: 919/871,
  30135. bottom: 0/919
  30136. }
  30137. },
  30138. feralSide: {
  30139. height: math.unit(5, "feet"),
  30140. weight: math.unit(150, "lb"),
  30141. name: "Feral (Side)",
  30142. image: {
  30143. source: "./media/characters/flux/feral-side.svg",
  30144. extra: 598/528,
  30145. bottom: 28/626
  30146. }
  30147. },
  30148. head: {
  30149. height: math.unit(1.585, "feet"),
  30150. name: "Head",
  30151. image: {
  30152. source: "./media/characters/flux/head.svg"
  30153. }
  30154. },
  30155. headSide: {
  30156. height: math.unit(1.74, "feet"),
  30157. name: "Head (Side)",
  30158. image: {
  30159. source: "./media/characters/flux/head-side.svg"
  30160. }
  30161. },
  30162. headSideFire: {
  30163. height: math.unit(1.76, "feet"),
  30164. name: "Head (Side, Fire)",
  30165. image: {
  30166. source: "./media/characters/flux/head-side-fire.svg"
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Normal",
  30173. height: math.unit(7, "feet"),
  30174. default: true
  30175. },
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30180. {
  30181. front: {
  30182. height: math.unit(9, "feet"),
  30183. weight: math.unit(1012, "lb"),
  30184. name: "Front",
  30185. image: {
  30186. source: "./media/characters/ulfra-lupae/front.svg",
  30187. extra: 1083/1011,
  30188. bottom: 67/1150
  30189. }
  30190. },
  30191. },
  30192. [
  30193. {
  30194. name: "Micro",
  30195. height: math.unit(6, "inches")
  30196. },
  30197. {
  30198. name: "Socializing",
  30199. height: math.unit(6 + 5/12, "feet")
  30200. },
  30201. {
  30202. name: "Normal",
  30203. height: math.unit(9, "feet"),
  30204. default: true
  30205. },
  30206. {
  30207. name: "Macro",
  30208. height: math.unit(150, "feet")
  30209. },
  30210. ]
  30211. ))
  30212. characterMakers.push(() => makeCharacter(
  30213. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30214. {
  30215. front: {
  30216. height: math.unit(5 + 2/12, "feet"),
  30217. weight: math.unit(120, "lb"),
  30218. name: "Front",
  30219. image: {
  30220. source: "./media/characters/timber/front.svg",
  30221. extra: 2814/2705,
  30222. bottom: 181/2995
  30223. }
  30224. },
  30225. },
  30226. [
  30227. {
  30228. name: "Normal",
  30229. height: math.unit(5 + 2/12, "feet"),
  30230. default: true
  30231. },
  30232. ]
  30233. ))
  30234. characterMakers.push(() => makeCharacter(
  30235. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30236. {
  30237. front: {
  30238. height: math.unit(5 + 7/12, "feet"),
  30239. weight: math.unit(220, "lb"),
  30240. name: "Front",
  30241. image: {
  30242. source: "./media/characters/nicki/front.svg",
  30243. extra: 453/419,
  30244. bottom: 7/460
  30245. }
  30246. },
  30247. frontAlt: {
  30248. height: math.unit(5 + 7/12, "feet"),
  30249. weight: math.unit(220, "lb"),
  30250. name: "Front-alt",
  30251. image: {
  30252. source: "./media/characters/nicki/front-alt.svg",
  30253. extra: 435/411,
  30254. bottom: 12/447
  30255. }
  30256. },
  30257. back: {
  30258. height: math.unit(5 + 7/12, "feet"),
  30259. weight: math.unit(220, "lb"),
  30260. name: "Back",
  30261. image: {
  30262. source: "./media/characters/nicki/back.svg",
  30263. extra: 440/413,
  30264. bottom: 19/459
  30265. }
  30266. },
  30267. taur: {
  30268. height: math.unit(7 + 6/12, "feet"),
  30269. weight: math.unit(700, "lb"),
  30270. name: "Taur",
  30271. image: {
  30272. source: "./media/characters/nicki/taur.svg",
  30273. extra: 975/773,
  30274. bottom: 0/975
  30275. }
  30276. },
  30277. frontNsfw: {
  30278. height: math.unit(5 + 7/12, "feet"),
  30279. weight: math.unit(220, "lb"),
  30280. name: "Front (NSFW)",
  30281. image: {
  30282. source: "./media/characters/nicki/front-nsfw.svg",
  30283. extra: 453/419,
  30284. bottom: 7/460
  30285. }
  30286. },
  30287. frontNsfwAlt: {
  30288. height: math.unit(5 + 7/12, "feet"),
  30289. weight: math.unit(220, "lb"),
  30290. name: "Front (Alt, NSFW)",
  30291. image: {
  30292. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30293. extra: 435/411,
  30294. bottom: 12/447
  30295. }
  30296. },
  30297. backNsfw: {
  30298. height: math.unit(5 + 7/12, "feet"),
  30299. weight: math.unit(220, "lb"),
  30300. name: "Back (NSFW)",
  30301. image: {
  30302. source: "./media/characters/nicki/back-nsfw.svg",
  30303. extra: 440/413,
  30304. bottom: 19/459
  30305. }
  30306. },
  30307. head: {
  30308. height: math.unit(2.1, "feet"),
  30309. name: "Head",
  30310. image: {
  30311. source: "./media/characters/nicki/head.svg"
  30312. }
  30313. },
  30314. paw: {
  30315. height: math.unit(1.88, "feet"),
  30316. name: "Paw",
  30317. image: {
  30318. source: "./media/characters/nicki/paw.svg"
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(5 + 7/12, "feet"),
  30326. default: true
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(7 + 10/12, "feet"),
  30335. weight: math.unit(3.5, "tons"),
  30336. name: "Front",
  30337. image: {
  30338. source: "./media/characters/lee/front.svg",
  30339. extra: 1773/1615,
  30340. bottom: 86/1859
  30341. }
  30342. },
  30343. hand: {
  30344. height: math.unit(1.78, "feet"),
  30345. name: "Hand",
  30346. image: {
  30347. source: "./media/characters/lee/hand.svg"
  30348. }
  30349. },
  30350. maw: {
  30351. height: math.unit(1.18, "feet"),
  30352. name: "Maw",
  30353. image: {
  30354. source: "./media/characters/lee/maw.svg"
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(7 + 10/12, "feet"),
  30362. default: true
  30363. },
  30364. ]
  30365. ))
  30366. characterMakers.push(() => makeCharacter(
  30367. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30368. {
  30369. front: {
  30370. height: math.unit(9, "feet"),
  30371. name: "Front",
  30372. image: {
  30373. source: "./media/characters/guti/front.svg",
  30374. extra: 4551/4355,
  30375. bottom: 123/4674
  30376. }
  30377. },
  30378. tongue: {
  30379. height: math.unit(1, "feet"),
  30380. name: "Tongue",
  30381. image: {
  30382. source: "./media/characters/guti/tongue.svg"
  30383. }
  30384. },
  30385. paw: {
  30386. height: math.unit(1.18, "feet"),
  30387. name: "Paw",
  30388. image: {
  30389. source: "./media/characters/guti/paw.svg"
  30390. }
  30391. },
  30392. },
  30393. [
  30394. {
  30395. name: "Normal",
  30396. height: math.unit(9, "feet"),
  30397. default: true
  30398. },
  30399. ]
  30400. ))
  30401. characterMakers.push(() => makeCharacter(
  30402. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30403. {
  30404. side: {
  30405. height: math.unit(5, "meters"),
  30406. name: "Side",
  30407. image: {
  30408. source: "./media/characters/vesper/side.svg",
  30409. extra: 1605/1518,
  30410. bottom: 0/1605
  30411. }
  30412. },
  30413. },
  30414. [
  30415. {
  30416. name: "Small",
  30417. height: math.unit(5, "meters")
  30418. },
  30419. {
  30420. name: "Sage",
  30421. height: math.unit(100, "meters"),
  30422. default: true
  30423. },
  30424. {
  30425. name: "Fun Size",
  30426. height: math.unit(600, "meters")
  30427. },
  30428. {
  30429. name: "Goddess",
  30430. height: math.unit(20000, "km")
  30431. },
  30432. {
  30433. name: "Maximum",
  30434. height: math.unit(5, "galaxies")
  30435. },
  30436. ]
  30437. ))
  30438. characterMakers.push(() => makeCharacter(
  30439. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30440. {
  30441. front: {
  30442. height: math.unit(6 + 3/12, "feet"),
  30443. weight: math.unit(190, "lb"),
  30444. name: "Front",
  30445. image: {
  30446. source: "./media/characters/gawain/front.svg",
  30447. extra: 2222/2139,
  30448. bottom: 90/2312
  30449. }
  30450. },
  30451. back: {
  30452. height: math.unit(6 + 3/12, "feet"),
  30453. weight: math.unit(190, "lb"),
  30454. name: "Back",
  30455. image: {
  30456. source: "./media/characters/gawain/back.svg",
  30457. extra: 2199/2111,
  30458. bottom: 73/2272
  30459. }
  30460. },
  30461. },
  30462. [
  30463. {
  30464. name: "Normal",
  30465. height: math.unit(6 + 3/12, "feet"),
  30466. default: true
  30467. },
  30468. ]
  30469. ))
  30470. characterMakers.push(() => makeCharacter(
  30471. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30472. {
  30473. side: {
  30474. height: math.unit(3.5, "meters"),
  30475. weight: math.unit(16000, "lb"),
  30476. name: "Side",
  30477. image: {
  30478. source: "./media/characters/dascalti/side.svg",
  30479. extra: 392/273,
  30480. bottom: 47/439
  30481. }
  30482. },
  30483. breath: {
  30484. height: math.unit(7.4, "feet"),
  30485. name: "Breath",
  30486. image: {
  30487. source: "./media/characters/dascalti/breath.svg"
  30488. }
  30489. },
  30490. fed: {
  30491. height: math.unit(3.6, "meters"),
  30492. weight: math.unit(16000, "lb"),
  30493. name: "Fed",
  30494. image: {
  30495. source: "./media/characters/dascalti/fed.svg",
  30496. extra: 1419/820,
  30497. bottom: 95/1514
  30498. }
  30499. },
  30500. },
  30501. [
  30502. {
  30503. name: "Normal",
  30504. height: math.unit(3.5, "meters"),
  30505. default: true
  30506. },
  30507. ]
  30508. ))
  30509. characterMakers.push(() => makeCharacter(
  30510. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30511. {
  30512. front: {
  30513. height: math.unit(3 + 5/12, "feet"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/mauve/front.svg",
  30517. extra: 1126/1033,
  30518. bottom: 65/1191
  30519. }
  30520. },
  30521. side: {
  30522. height: math.unit(3 + 5/12, "feet"),
  30523. name: "Side",
  30524. image: {
  30525. source: "./media/characters/mauve/side.svg",
  30526. extra: 1089/1001,
  30527. bottom: 29/1118
  30528. }
  30529. },
  30530. back: {
  30531. height: math.unit(3 + 5/12, "feet"),
  30532. name: "Back",
  30533. image: {
  30534. source: "./media/characters/mauve/back.svg",
  30535. extra: 1173/1053,
  30536. bottom: 109/1282
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Normal",
  30543. height: math.unit(3 + 5/12, "feet"),
  30544. default: true
  30545. },
  30546. ]
  30547. ))
  30548. characterMakers.push(() => makeCharacter(
  30549. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30550. {
  30551. front: {
  30552. height: math.unit(6 + 3/12, "feet"),
  30553. weight: math.unit(430, "lb"),
  30554. name: "Front",
  30555. image: {
  30556. source: "./media/characters/carlos/front.svg",
  30557. extra: 1964/1913,
  30558. bottom: 70/2034
  30559. }
  30560. },
  30561. },
  30562. [
  30563. {
  30564. name: "Normal",
  30565. height: math.unit(6 + 3/12, "feet"),
  30566. default: true
  30567. },
  30568. ]
  30569. ))
  30570. characterMakers.push(() => makeCharacter(
  30571. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30572. {
  30573. back: {
  30574. height: math.unit(5 + 10/12, "feet"),
  30575. weight: math.unit(200, "lb"),
  30576. name: "Back",
  30577. image: {
  30578. source: "./media/characters/jax/back.svg",
  30579. extra: 764/739,
  30580. bottom: 25/789
  30581. }
  30582. },
  30583. },
  30584. [
  30585. {
  30586. name: "Normal",
  30587. height: math.unit(5 + 10/12, "feet"),
  30588. default: true
  30589. },
  30590. ]
  30591. ))
  30592. characterMakers.push(() => makeCharacter(
  30593. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30594. {
  30595. front: {
  30596. height: math.unit(8, "feet"),
  30597. weight: math.unit(250, "lb"),
  30598. name: "Front",
  30599. image: {
  30600. source: "./media/characters/eikthynir/front.svg",
  30601. extra: 1332/1166,
  30602. bottom: 82/1414
  30603. }
  30604. },
  30605. back: {
  30606. height: math.unit(8, "feet"),
  30607. weight: math.unit(250, "lb"),
  30608. name: "Back",
  30609. image: {
  30610. source: "./media/characters/eikthynir/back.svg",
  30611. extra: 1342/1190,
  30612. bottom: 19/1361
  30613. }
  30614. },
  30615. dick: {
  30616. height: math.unit(2.35, "feet"),
  30617. name: "Dick",
  30618. image: {
  30619. source: "./media/characters/eikthynir/dick.svg"
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Normal",
  30626. height: math.unit(8, "feet"),
  30627. default: true
  30628. },
  30629. ]
  30630. ))
  30631. characterMakers.push(() => makeCharacter(
  30632. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30633. {
  30634. front: {
  30635. height: math.unit(99, "meters"),
  30636. weight: math.unit(13000, "tons"),
  30637. name: "Front",
  30638. image: {
  30639. source: "./media/characters/zlmos/front.svg",
  30640. extra: 2202/1992,
  30641. bottom: 315/2517
  30642. }
  30643. },
  30644. },
  30645. [
  30646. {
  30647. name: "Macro",
  30648. height: math.unit(99, "meters"),
  30649. default: true
  30650. },
  30651. ]
  30652. ))
  30653. characterMakers.push(() => makeCharacter(
  30654. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30655. {
  30656. front: {
  30657. height: math.unit(6 + 5/12, "feet"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/purri/front.svg",
  30661. extra: 1698/1610,
  30662. bottom: 32/1730
  30663. }
  30664. },
  30665. frontAlt: {
  30666. height: math.unit(6 + 5/12, "feet"),
  30667. name: "Front (Alt)",
  30668. image: {
  30669. source: "./media/characters/purri/front-alt.svg",
  30670. extra: 450/420,
  30671. bottom: 26/476
  30672. }
  30673. },
  30674. boots: {
  30675. height: math.unit(5.5, "feet"),
  30676. name: "Boots",
  30677. image: {
  30678. source: "./media/characters/purri/boots.svg",
  30679. extra: 905/853,
  30680. bottom: 18/923
  30681. }
  30682. },
  30683. lying: {
  30684. height: math.unit(2, "feet"),
  30685. name: "Lying",
  30686. image: {
  30687. source: "./media/characters/purri/lying.svg",
  30688. extra: 940/843,
  30689. bottom: 146/1086
  30690. }
  30691. },
  30692. devious: {
  30693. height: math.unit(1.77, "feet"),
  30694. name: "Devious",
  30695. image: {
  30696. source: "./media/characters/purri/devious.svg",
  30697. extra: 1440/1155,
  30698. bottom: 147/1587
  30699. }
  30700. },
  30701. bean: {
  30702. height: math.unit(1.94, "feet"),
  30703. name: "Bean",
  30704. image: {
  30705. source: "./media/characters/purri/bean.svg"
  30706. }
  30707. },
  30708. },
  30709. [
  30710. {
  30711. name: "Micro",
  30712. height: math.unit(1, "mm")
  30713. },
  30714. {
  30715. name: "Normal",
  30716. height: math.unit(6 + 5/12, "feet"),
  30717. default: true
  30718. },
  30719. {
  30720. name: "Macro :3c",
  30721. height: math.unit(2, "miles")
  30722. },
  30723. ]
  30724. ))
  30725. characterMakers.push(() => makeCharacter(
  30726. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30727. {
  30728. front: {
  30729. height: math.unit(6 + 2/12, "feet"),
  30730. weight: math.unit(250, "lb"),
  30731. name: "Front",
  30732. image: {
  30733. source: "./media/characters/moonlight/front.svg",
  30734. extra: 1044/908,
  30735. bottom: 56/1100
  30736. }
  30737. },
  30738. paw: {
  30739. height: math.unit(1, "feet"),
  30740. name: "Paw",
  30741. image: {
  30742. source: "./media/characters/moonlight/paw.svg"
  30743. }
  30744. },
  30745. paws: {
  30746. height: math.unit(0.98, "feet"),
  30747. name: "Paws",
  30748. image: {
  30749. source: "./media/characters/moonlight/paws.svg",
  30750. extra: 939/939,
  30751. bottom: 50/989
  30752. }
  30753. },
  30754. mouth: {
  30755. height: math.unit(0.48, "feet"),
  30756. name: "Mouth",
  30757. image: {
  30758. source: "./media/characters/moonlight/mouth.svg"
  30759. }
  30760. },
  30761. dick: {
  30762. height: math.unit(1.46, "feet"),
  30763. name: "Dick",
  30764. image: {
  30765. source: "./media/characters/moonlight/dick.svg"
  30766. }
  30767. },
  30768. },
  30769. [
  30770. {
  30771. name: "Normal",
  30772. height: math.unit(6 + 2/12, "feet"),
  30773. default: true
  30774. },
  30775. {
  30776. name: "Macro",
  30777. height: math.unit(300, "feet")
  30778. },
  30779. {
  30780. name: "Macro+",
  30781. height: math.unit(1, "mile")
  30782. },
  30783. {
  30784. name: "Mt. Moon",
  30785. height: math.unit(5, "miles")
  30786. },
  30787. {
  30788. name: "Megamacro",
  30789. height: math.unit(15, "miles")
  30790. },
  30791. ]
  30792. ))
  30793. characterMakers.push(() => makeCharacter(
  30794. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30795. {
  30796. back: {
  30797. height: math.unit(6, "feet"),
  30798. weight: math.unit(150, "lb"),
  30799. name: "Back",
  30800. image: {
  30801. source: "./media/characters/sylen/back.svg",
  30802. extra: 1335/1273,
  30803. bottom: 107/1442
  30804. }
  30805. },
  30806. },
  30807. [
  30808. {
  30809. name: "Normal",
  30810. height: math.unit(5 + 5/12, "feet")
  30811. },
  30812. {
  30813. name: "Megamacro",
  30814. height: math.unit(3, "miles"),
  30815. default: true
  30816. },
  30817. ]
  30818. ))
  30819. characterMakers.push(() => makeCharacter(
  30820. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30821. {
  30822. front: {
  30823. height: math.unit(6, "feet"),
  30824. weight: math.unit(190, "lb"),
  30825. name: "Front",
  30826. image: {
  30827. source: "./media/characters/huttser/front.svg",
  30828. extra: 1152/1058,
  30829. bottom: 23/1175
  30830. }
  30831. },
  30832. side: {
  30833. height: math.unit(6, "feet"),
  30834. weight: math.unit(190, "lb"),
  30835. name: "Side",
  30836. image: {
  30837. source: "./media/characters/huttser/side.svg",
  30838. extra: 1174/1065,
  30839. bottom: 18/1192
  30840. }
  30841. },
  30842. back: {
  30843. height: math.unit(6, "feet"),
  30844. weight: math.unit(190, "lb"),
  30845. name: "Back",
  30846. image: {
  30847. source: "./media/characters/huttser/back.svg",
  30848. extra: 1158/1056,
  30849. bottom: 12/1170
  30850. }
  30851. },
  30852. },
  30853. [
  30854. ]
  30855. ))
  30856. characterMakers.push(() => makeCharacter(
  30857. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30858. {
  30859. side: {
  30860. height: math.unit(12 + 9/12, "feet"),
  30861. weight: math.unit(15000, "lb"),
  30862. name: "Side",
  30863. image: {
  30864. source: "./media/characters/faan/side.svg",
  30865. extra: 2747/2697,
  30866. bottom: 0/2747
  30867. }
  30868. },
  30869. front: {
  30870. height: math.unit(12 + 9/12, "feet"),
  30871. weight: math.unit(15000, "lb"),
  30872. name: "Front",
  30873. image: {
  30874. source: "./media/characters/faan/front.svg",
  30875. extra: 607/571,
  30876. bottom: 24/631
  30877. }
  30878. },
  30879. head: {
  30880. height: math.unit(2.85, "feet"),
  30881. name: "Head",
  30882. image: {
  30883. source: "./media/characters/faan/head.svg"
  30884. }
  30885. },
  30886. headAlt: {
  30887. height: math.unit(3.13, "feet"),
  30888. name: "Head-alt",
  30889. image: {
  30890. source: "./media/characters/faan/head-alt.svg"
  30891. }
  30892. },
  30893. },
  30894. [
  30895. {
  30896. name: "Normal",
  30897. height: math.unit(12 + 9/12, "feet"),
  30898. default: true
  30899. },
  30900. ]
  30901. ))
  30902. characterMakers.push(() => makeCharacter(
  30903. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30904. {
  30905. front: {
  30906. height: math.unit(6, "feet"),
  30907. weight: math.unit(300, "lb"),
  30908. name: "Front",
  30909. image: {
  30910. source: "./media/characters/tanio/front.svg",
  30911. extra: 711/673,
  30912. bottom: 25/736
  30913. }
  30914. },
  30915. },
  30916. [
  30917. {
  30918. name: "Normal",
  30919. height: math.unit(6, "feet"),
  30920. default: true
  30921. },
  30922. ]
  30923. ))
  30924. characterMakers.push(() => makeCharacter(
  30925. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30926. {
  30927. front: {
  30928. height: math.unit(3, "inches"),
  30929. name: "Front",
  30930. image: {
  30931. source: "./media/characters/noboru/front.svg",
  30932. extra: 1039/932,
  30933. bottom: 18/1057
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Micro",
  30940. height: math.unit(3, "inches"),
  30941. default: true
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30947. {
  30948. front: {
  30949. height: math.unit(1.85, "meters"),
  30950. weight: math.unit(80, "kg"),
  30951. name: "Front",
  30952. image: {
  30953. source: "./media/characters/daniel-barrett/front.svg",
  30954. extra: 355/337,
  30955. bottom: 9/364
  30956. }
  30957. },
  30958. },
  30959. [
  30960. {
  30961. name: "Pico",
  30962. height: math.unit(0.0433, "mm")
  30963. },
  30964. {
  30965. name: "Nano",
  30966. height: math.unit(1.5, "mm")
  30967. },
  30968. {
  30969. name: "Micro",
  30970. height: math.unit(5.3, "cm"),
  30971. default: true
  30972. },
  30973. {
  30974. name: "Normal",
  30975. height: math.unit(1.85, "meters")
  30976. },
  30977. {
  30978. name: "Macro",
  30979. height: math.unit(64.7, "meters")
  30980. },
  30981. {
  30982. name: "Megamacro",
  30983. height: math.unit(2.26, "km")
  30984. },
  30985. {
  30986. name: "Gigamacro",
  30987. height: math.unit(79, "km")
  30988. },
  30989. {
  30990. name: "Teramacro",
  30991. height: math.unit(2765, "km")
  30992. },
  30993. {
  30994. name: "Petamacro",
  30995. height: math.unit(96678, "km")
  30996. },
  30997. ]
  30998. ))
  30999. characterMakers.push(() => makeCharacter(
  31000. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31001. {
  31002. front: {
  31003. height: math.unit(30, "meters"),
  31004. weight: math.unit(400, "tons"),
  31005. name: "Front",
  31006. image: {
  31007. source: "./media/characters/zeel/front.svg",
  31008. extra: 2599/2599,
  31009. bottom: 226/2825
  31010. }
  31011. },
  31012. },
  31013. [
  31014. {
  31015. name: "Macro",
  31016. height: math.unit(30, "meters"),
  31017. default: true
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31023. {
  31024. front: {
  31025. height: math.unit(6 + 7/12, "feet"),
  31026. weight: math.unit(210, "lb"),
  31027. name: "Front",
  31028. image: {
  31029. source: "./media/characters/tarn/front.svg",
  31030. extra: 3517/3220,
  31031. bottom: 91/3608
  31032. }
  31033. },
  31034. back: {
  31035. height: math.unit(6 + 7/12, "feet"),
  31036. weight: math.unit(210, "lb"),
  31037. name: "Back",
  31038. image: {
  31039. source: "./media/characters/tarn/back.svg",
  31040. extra: 3566/3241,
  31041. bottom: 34/3600
  31042. }
  31043. },
  31044. dick: {
  31045. height: math.unit(1.65, "feet"),
  31046. name: "Dick",
  31047. image: {
  31048. source: "./media/characters/tarn/dick.svg"
  31049. }
  31050. },
  31051. paw: {
  31052. height: math.unit(1.80, "feet"),
  31053. name: "Paw",
  31054. image: {
  31055. source: "./media/characters/tarn/paw.svg"
  31056. }
  31057. },
  31058. tongue: {
  31059. height: math.unit(0.97, "feet"),
  31060. name: "Tongue",
  31061. image: {
  31062. source: "./media/characters/tarn/tongue.svg"
  31063. }
  31064. },
  31065. },
  31066. [
  31067. {
  31068. name: "Micro",
  31069. height: math.unit(4, "inches")
  31070. },
  31071. {
  31072. name: "Normal",
  31073. height: math.unit(6 + 7/12, "feet"),
  31074. default: true
  31075. },
  31076. {
  31077. name: "Macro",
  31078. height: math.unit(300, "feet")
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(5 + 7/12, "feet"),
  31087. weight: math.unit(80, "kg"),
  31088. name: "Front",
  31089. image: {
  31090. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31091. extra: 3023/2865,
  31092. bottom: 33/3056
  31093. }
  31094. },
  31095. back: {
  31096. height: math.unit(5 + 7/12, "feet"),
  31097. weight: math.unit(80, "kg"),
  31098. name: "Back",
  31099. image: {
  31100. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31101. extra: 3020/2886,
  31102. bottom: 30/3050
  31103. }
  31104. },
  31105. dick: {
  31106. height: math.unit(0.98, "feet"),
  31107. name: "Dick",
  31108. image: {
  31109. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31110. }
  31111. },
  31112. anatomy: {
  31113. height: math.unit(2.86, "feet"),
  31114. name: "Anatomy",
  31115. image: {
  31116. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31117. }
  31118. },
  31119. },
  31120. [
  31121. {
  31122. name: "Really Small",
  31123. height: math.unit(2, "inches")
  31124. },
  31125. {
  31126. name: "Micro",
  31127. height: math.unit(5.583, "inches")
  31128. },
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(5 + 7/12, "feet"),
  31132. default: true
  31133. },
  31134. {
  31135. name: "Macro",
  31136. height: math.unit(67, "feet")
  31137. },
  31138. {
  31139. name: "Megamacro",
  31140. height: math.unit(134, "feet")
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31146. {
  31147. front: {
  31148. height: math.unit(9, "feet"),
  31149. weight: math.unit(120, "lb"),
  31150. name: "Front",
  31151. image: {
  31152. source: "./media/characters/sally/front.svg",
  31153. extra: 1506/1349,
  31154. bottom: 66/1572
  31155. }
  31156. },
  31157. },
  31158. [
  31159. {
  31160. name: "Normal",
  31161. height: math.unit(9, "feet"),
  31162. default: true
  31163. },
  31164. ]
  31165. ))
  31166. characterMakers.push(() => makeCharacter(
  31167. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31168. {
  31169. front: {
  31170. height: math.unit(8, "feet"),
  31171. weight: math.unit(900, "lb"),
  31172. name: "Front",
  31173. image: {
  31174. source: "./media/characters/owen/front.svg",
  31175. extra: 1761/1657,
  31176. bottom: 74/1835
  31177. }
  31178. },
  31179. side: {
  31180. height: math.unit(8, "feet"),
  31181. weight: math.unit(900, "lb"),
  31182. name: "Side",
  31183. image: {
  31184. source: "./media/characters/owen/side.svg",
  31185. extra: 1797/1734,
  31186. bottom: 30/1827
  31187. }
  31188. },
  31189. back: {
  31190. height: math.unit(8, "feet"),
  31191. weight: math.unit(900, "lb"),
  31192. name: "Back",
  31193. image: {
  31194. source: "./media/characters/owen/back.svg",
  31195. extra: 1796/1706,
  31196. bottom: 59/1855
  31197. }
  31198. },
  31199. maw: {
  31200. height: math.unit(1.76, "feet"),
  31201. name: "Maw",
  31202. image: {
  31203. source: "./media/characters/owen/maw.svg"
  31204. }
  31205. },
  31206. },
  31207. [
  31208. {
  31209. name: "Normal",
  31210. height: math.unit(8, "feet"),
  31211. default: true
  31212. },
  31213. ]
  31214. ))
  31215. characterMakers.push(() => makeCharacter(
  31216. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31217. {
  31218. front: {
  31219. height: math.unit(4, "feet"),
  31220. weight: math.unit(400, "lb"),
  31221. name: "Front",
  31222. image: {
  31223. source: "./media/characters/ryth/front.svg",
  31224. extra: 876/691,
  31225. bottom: 25/901
  31226. }
  31227. },
  31228. },
  31229. [
  31230. {
  31231. name: "Normal",
  31232. height: math.unit(4, "feet"),
  31233. default: true
  31234. },
  31235. ]
  31236. ))
  31237. characterMakers.push(() => makeCharacter(
  31238. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31239. {
  31240. front: {
  31241. height: math.unit(7, "feet"),
  31242. weight: math.unit(180, "lb"),
  31243. name: "Front",
  31244. image: {
  31245. source: "./media/characters/necrolance/front.svg",
  31246. extra: 1062/947,
  31247. bottom: 41/1103
  31248. }
  31249. },
  31250. back: {
  31251. height: math.unit(7, "feet"),
  31252. weight: math.unit(180, "lb"),
  31253. name: "Back",
  31254. image: {
  31255. source: "./media/characters/necrolance/back.svg",
  31256. extra: 1045/984,
  31257. bottom: 14/1059
  31258. }
  31259. },
  31260. wing: {
  31261. height: math.unit(2.67, "feet"),
  31262. name: "Wing",
  31263. image: {
  31264. source: "./media/characters/necrolance/wing.svg"
  31265. }
  31266. },
  31267. },
  31268. [
  31269. {
  31270. name: "Normal",
  31271. height: math.unit(7, "feet"),
  31272. default: true
  31273. },
  31274. ]
  31275. ))
  31276. characterMakers.push(() => makeCharacter(
  31277. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31278. {
  31279. front: {
  31280. height: math.unit(76, "meters"),
  31281. weight: math.unit(30000, "tons"),
  31282. name: "Front",
  31283. image: {
  31284. source: "./media/characters/tyler/front.svg",
  31285. extra: 1640/1640,
  31286. bottom: 114/1754
  31287. }
  31288. },
  31289. },
  31290. [
  31291. {
  31292. name: "Macro",
  31293. height: math.unit(76, "meters"),
  31294. default: true
  31295. },
  31296. ]
  31297. ))
  31298. characterMakers.push(() => makeCharacter(
  31299. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31300. {
  31301. front: {
  31302. height: math.unit(4 + 11/12, "feet"),
  31303. weight: math.unit(132, "lb"),
  31304. name: "Front",
  31305. image: {
  31306. source: "./media/characters/icey/front.svg",
  31307. extra: 2750/2550,
  31308. bottom: 33/2783
  31309. }
  31310. },
  31311. back: {
  31312. height: math.unit(4 + 11/12, "feet"),
  31313. weight: math.unit(132, "lb"),
  31314. name: "Back",
  31315. image: {
  31316. source: "./media/characters/icey/back.svg",
  31317. extra: 2624/2481,
  31318. bottom: 35/2659
  31319. }
  31320. },
  31321. },
  31322. [
  31323. {
  31324. name: "Normal",
  31325. height: math.unit(4 + 11/12, "feet"),
  31326. default: true
  31327. },
  31328. ]
  31329. ))
  31330. characterMakers.push(() => makeCharacter(
  31331. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31332. {
  31333. front: {
  31334. height: math.unit(100, "feet"),
  31335. weight: math.unit(0, "lb"),
  31336. name: "Front",
  31337. image: {
  31338. source: "./media/characters/smile/front.svg",
  31339. extra: 2983/2912,
  31340. bottom: 162/3145
  31341. }
  31342. },
  31343. back: {
  31344. height: math.unit(100, "feet"),
  31345. weight: math.unit(0, "lb"),
  31346. name: "Back",
  31347. image: {
  31348. source: "./media/characters/smile/back.svg",
  31349. extra: 3143/3031,
  31350. bottom: 91/3234
  31351. }
  31352. },
  31353. head: {
  31354. height: math.unit(26.3, "feet"),
  31355. weight: math.unit(0, "lb"),
  31356. name: "Head",
  31357. image: {
  31358. source: "./media/characters/smile/head.svg"
  31359. }
  31360. },
  31361. collar: {
  31362. height: math.unit(5.3, "feet"),
  31363. weight: math.unit(0, "lb"),
  31364. name: "Collar",
  31365. image: {
  31366. source: "./media/characters/smile/collar.svg"
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Macro",
  31373. height: math.unit(100, "feet"),
  31374. default: true
  31375. },
  31376. ]
  31377. ))
  31378. characterMakers.push(() => makeCharacter(
  31379. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31380. {
  31381. dragon: {
  31382. height: math.unit(26, "feet"),
  31383. weight: math.unit(36, "tons"),
  31384. name: "Dragon",
  31385. image: {
  31386. source: "./media/characters/arimphae/dragon.svg",
  31387. extra: 1574/983,
  31388. bottom: 357/1931
  31389. }
  31390. },
  31391. drake: {
  31392. height: math.unit(9, "feet"),
  31393. weight: math.unit(1.5, "tons"),
  31394. name: "Drake",
  31395. image: {
  31396. source: "./media/characters/arimphae/drake.svg",
  31397. extra: 1120/925,
  31398. bottom: 435/1555
  31399. }
  31400. },
  31401. },
  31402. [
  31403. {
  31404. name: "Small",
  31405. height: math.unit(26*5/9, "feet")
  31406. },
  31407. {
  31408. name: "Normal",
  31409. height: math.unit(26, "feet"),
  31410. default: true
  31411. },
  31412. ]
  31413. ))
  31414. characterMakers.push(() => makeCharacter(
  31415. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31416. {
  31417. front: {
  31418. height: math.unit(8 + 9/12, "feet"),
  31419. name: "Front",
  31420. image: {
  31421. source: "./media/characters/xander/front.svg",
  31422. extra: 848/673,
  31423. bottom: 62/910
  31424. }
  31425. },
  31426. },
  31427. [
  31428. {
  31429. name: "Normal",
  31430. height: math.unit(8 + 9/12, "feet"),
  31431. default: true
  31432. },
  31433. {
  31434. name: "Gaze Grabber",
  31435. height: math.unit(13 + 8/12, "feet")
  31436. },
  31437. {
  31438. name: "Jaw Dropper",
  31439. height: math.unit(27, "feet")
  31440. },
  31441. {
  31442. name: "Show Stopper",
  31443. height: math.unit(136, "feet")
  31444. },
  31445. {
  31446. name: "Superstar",
  31447. height: math.unit(1.9e6, "miles")
  31448. },
  31449. ]
  31450. ))
  31451. //characters
  31452. function makeCharacters() {
  31453. const results = [];
  31454. characterMakers.forEach(character => {
  31455. results.push(character());
  31456. });
  31457. return results;
  31458. }