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

28821 lines
719 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. }
  1360. //species
  1361. function getSpeciesInfo(speciesList) {
  1362. let result = new Set();
  1363. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1364. result.add(entry)
  1365. });
  1366. return Array.from(result);
  1367. };
  1368. function getSpeciesInfoHelper(species) {
  1369. if (!speciesData[species]) {
  1370. console.warn(species + " doesn't exist");
  1371. return [];
  1372. }
  1373. if (speciesData[species].parents) {
  1374. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1375. } else {
  1376. return [species];
  1377. }
  1378. }
  1379. characterMakers.push(() => makeCharacter(
  1380. {
  1381. name: "Fen",
  1382. species: ["crux"],
  1383. description: {
  1384. title: "Bio",
  1385. text: "Very furry. Sheds on everything."
  1386. },
  1387. tags: [
  1388. "anthro",
  1389. "goo"
  1390. ]
  1391. },
  1392. {
  1393. back: {
  1394. height: math.unit(2.2428, "meter"),
  1395. weight: math.unit(124.738, "kg"),
  1396. name: "Back",
  1397. image: {
  1398. source: "./media/characters/fen/back.svg",
  1399. extra: 2024 / 1867,
  1400. bottom: 13 / 2037
  1401. },
  1402. info: {
  1403. description: {
  1404. mode: "append",
  1405. text: "\n\nHe is not currently looking at you."
  1406. }
  1407. }
  1408. },
  1409. full: {
  1410. height: math.unit(1.34, "meter"),
  1411. weight: math.unit(225, "kg"),
  1412. name: "Full",
  1413. image: {
  1414. source: "./media/characters/fen/full.svg"
  1415. },
  1416. info: {
  1417. description: {
  1418. mode: "append",
  1419. text: "\n\nMunch."
  1420. }
  1421. }
  1422. },
  1423. kneeling: {
  1424. height: math.unit(5.4, "feet"),
  1425. weight: math.unit(124.738, "kg"),
  1426. name: "Kneeling",
  1427. image: {
  1428. source: "./media/characters/fen/kneeling.svg",
  1429. extra: 563 / 507
  1430. }
  1431. },
  1432. goo: {
  1433. height: math.unit(2.8, "feet"),
  1434. weight: math.unit(125, "kg"),
  1435. capacity: math.unit(1, "people"),
  1436. name: "Goo",
  1437. image: {
  1438. source: "./media/characters/fen/goo.svg",
  1439. bottom: 116 / 613
  1440. }
  1441. },
  1442. lounging: {
  1443. height: math.unit(6.5, "feet"),
  1444. weight: math.unit(125, "kg"),
  1445. name: "Lounging",
  1446. image: {
  1447. source: "./media/characters/fen/lounging.svg"
  1448. }
  1449. },
  1450. },
  1451. [
  1452. {
  1453. name: "Normal",
  1454. height: math.unit(2.2428, "meter")
  1455. },
  1456. {
  1457. name: "Big",
  1458. height: math.unit(12, "feet")
  1459. },
  1460. {
  1461. name: "Minimacro",
  1462. height: math.unit(40, "feet"),
  1463. default: true,
  1464. info: {
  1465. description: {
  1466. mode: "append",
  1467. text: "\n\nTOO DAMN BIG"
  1468. }
  1469. }
  1470. },
  1471. {
  1472. name: "Macro",
  1473. height: math.unit(100, "feet"),
  1474. info: {
  1475. description: {
  1476. mode: "append",
  1477. text: "\n\nTOO DAMN BIG"
  1478. }
  1479. }
  1480. },
  1481. {
  1482. name: "Macro+",
  1483. height: math.unit(300, "feet")
  1484. },
  1485. {
  1486. name: "Megamacro",
  1487. height: math.unit(2, "miles")
  1488. }
  1489. ]
  1490. ))
  1491. characterMakers.push(() => makeCharacter(
  1492. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1493. {
  1494. front: {
  1495. height: math.unit(183, "cm"),
  1496. weight: math.unit(80, "kg"),
  1497. name: "Front",
  1498. image: {
  1499. source: "./media/characters/sofia-fluttertail/front.svg",
  1500. bottom: 0.01,
  1501. extra: 2154 / 2081
  1502. }
  1503. },
  1504. frontAlt: {
  1505. height: math.unit(183, "cm"),
  1506. weight: math.unit(80, "kg"),
  1507. name: "Front (alt)",
  1508. image: {
  1509. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1510. }
  1511. },
  1512. back: {
  1513. height: math.unit(183, "cm"),
  1514. weight: math.unit(80, "kg"),
  1515. name: "Back",
  1516. image: {
  1517. source: "./media/characters/sofia-fluttertail/back.svg"
  1518. }
  1519. },
  1520. kneeling: {
  1521. height: math.unit(125, "cm"),
  1522. weight: math.unit(80, "kg"),
  1523. name: "Kneeling",
  1524. image: {
  1525. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1526. extra: 1033 / 977,
  1527. bottom: 23.7 / 1057
  1528. }
  1529. },
  1530. maw: {
  1531. height: math.unit(183 / 5, "cm"),
  1532. name: "Maw",
  1533. image: {
  1534. source: "./media/characters/sofia-fluttertail/maw.svg"
  1535. }
  1536. },
  1537. mawcloseup: {
  1538. height: math.unit(183 / 5 * 0.41, "cm"),
  1539. name: "Maw (Closeup)",
  1540. image: {
  1541. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1542. }
  1543. },
  1544. },
  1545. [
  1546. {
  1547. name: "Normal",
  1548. height: math.unit(1.83, "meter")
  1549. },
  1550. {
  1551. name: "Size Thief",
  1552. height: math.unit(18, "feet")
  1553. },
  1554. {
  1555. name: "50 Foot Collie",
  1556. height: math.unit(50, "feet")
  1557. },
  1558. {
  1559. name: "Macro",
  1560. height: math.unit(96, "feet"),
  1561. default: true
  1562. },
  1563. {
  1564. name: "Megamerger",
  1565. height: math.unit(650, "feet")
  1566. },
  1567. ]
  1568. ))
  1569. characterMakers.push(() => makeCharacter(
  1570. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1571. {
  1572. front: {
  1573. height: math.unit(7, "feet"),
  1574. weight: math.unit(100, "kg"),
  1575. name: "Front",
  1576. image: {
  1577. source: "./media/characters/march/front.svg",
  1578. extra: 1,
  1579. bottom: 0.015
  1580. }
  1581. },
  1582. foot: {
  1583. height: math.unit(0.9, "feet"),
  1584. name: "Foot",
  1585. image: {
  1586. source: "./media/characters/march/foot.svg"
  1587. }
  1588. },
  1589. },
  1590. [
  1591. {
  1592. name: "Normal",
  1593. height: math.unit(7.9, "feet")
  1594. },
  1595. {
  1596. name: "Macro",
  1597. height: math.unit(220, "meters")
  1598. },
  1599. {
  1600. name: "Megamacro",
  1601. height: math.unit(2.98, "km"),
  1602. default: true
  1603. },
  1604. {
  1605. name: "Gigamacro",
  1606. height: math.unit(15963, "km")
  1607. },
  1608. {
  1609. name: "Teramacro",
  1610. height: math.unit(2980000000, "km")
  1611. },
  1612. {
  1613. name: "Examacro",
  1614. height: math.unit(250, "parsecs")
  1615. },
  1616. ]
  1617. ))
  1618. characterMakers.push(() => makeCharacter(
  1619. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1620. {
  1621. front: {
  1622. height: math.unit(6, "feet"),
  1623. weight: math.unit(60, "kg"),
  1624. name: "Front",
  1625. image: {
  1626. source: "./media/characters/noir/front.svg",
  1627. extra: 1,
  1628. bottom: 0.032
  1629. }
  1630. },
  1631. },
  1632. [
  1633. {
  1634. name: "Normal",
  1635. height: math.unit(6.6, "feet")
  1636. },
  1637. {
  1638. name: "Macro",
  1639. height: math.unit(500, "feet")
  1640. },
  1641. {
  1642. name: "Megamacro",
  1643. height: math.unit(2.5, "km"),
  1644. default: true
  1645. },
  1646. {
  1647. name: "Gigamacro",
  1648. height: math.unit(22500, "km")
  1649. },
  1650. {
  1651. name: "Teramacro",
  1652. height: math.unit(2500000000, "km")
  1653. },
  1654. {
  1655. name: "Examacro",
  1656. height: math.unit(200, "parsecs")
  1657. },
  1658. ]
  1659. ))
  1660. characterMakers.push(() => makeCharacter(
  1661. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1662. {
  1663. front: {
  1664. height: math.unit(7, "feet"),
  1665. weight: math.unit(100, "kg"),
  1666. name: "Front",
  1667. image: {
  1668. source: "./media/characters/okuri/front.svg",
  1669. extra: 1,
  1670. bottom: 0.037
  1671. }
  1672. },
  1673. back: {
  1674. height: math.unit(7, "feet"),
  1675. weight: math.unit(100, "kg"),
  1676. name: "Back",
  1677. image: {
  1678. source: "./media/characters/okuri/back.svg",
  1679. extra: 1,
  1680. bottom: 0.007
  1681. }
  1682. },
  1683. },
  1684. [
  1685. {
  1686. name: "Megamacro",
  1687. height: math.unit(100, "miles"),
  1688. default: true
  1689. },
  1690. ]
  1691. ))
  1692. characterMakers.push(() => makeCharacter(
  1693. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1694. {
  1695. front: {
  1696. height: math.unit(7, "feet"),
  1697. weight: math.unit(100, "kg"),
  1698. name: "Front",
  1699. image: {
  1700. source: "./media/characters/manny/front.svg",
  1701. extra: 1,
  1702. bottom: 0.06
  1703. }
  1704. },
  1705. back: {
  1706. height: math.unit(7, "feet"),
  1707. weight: math.unit(100, "kg"),
  1708. name: "Back",
  1709. image: {
  1710. source: "./media/characters/manny/back.svg",
  1711. extra: 1,
  1712. bottom: 0.014
  1713. }
  1714. },
  1715. },
  1716. [
  1717. {
  1718. name: "Normal",
  1719. height: math.unit(7, "feet"),
  1720. },
  1721. {
  1722. name: "Macro",
  1723. height: math.unit(78, "feet"),
  1724. default: true
  1725. },
  1726. {
  1727. name: "Macro+",
  1728. height: math.unit(300, "meters")
  1729. },
  1730. {
  1731. name: "Macro++",
  1732. height: math.unit(2400, "meters")
  1733. },
  1734. {
  1735. name: "Megamacro",
  1736. height: math.unit(5167, "meters")
  1737. },
  1738. {
  1739. name: "Gigamacro",
  1740. height: math.unit(41769, "miles")
  1741. },
  1742. ]
  1743. ))
  1744. characterMakers.push(() => makeCharacter(
  1745. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1746. {
  1747. front: {
  1748. height: math.unit(7, "feet"),
  1749. weight: math.unit(100, "kg"),
  1750. name: "Front",
  1751. image: {
  1752. source: "./media/characters/adake/front-1.svg"
  1753. }
  1754. },
  1755. frontAlt: {
  1756. height: math.unit(7, "feet"),
  1757. weight: math.unit(100, "kg"),
  1758. name: "Front (Alt)",
  1759. image: {
  1760. source: "./media/characters/adake/front-2.svg",
  1761. extra: 1,
  1762. bottom: 0.01
  1763. }
  1764. },
  1765. back: {
  1766. height: math.unit(7, "feet"),
  1767. weight: math.unit(100, "kg"),
  1768. name: "Back",
  1769. image: {
  1770. source: "./media/characters/adake/back.svg",
  1771. }
  1772. },
  1773. kneel: {
  1774. height: math.unit(5.385, "feet"),
  1775. weight: math.unit(100, "kg"),
  1776. name: "Kneeling",
  1777. image: {
  1778. source: "./media/characters/adake/kneel.svg",
  1779. bottom: 0.052
  1780. }
  1781. },
  1782. },
  1783. [
  1784. {
  1785. name: "Normal",
  1786. height: math.unit(7, "feet"),
  1787. },
  1788. {
  1789. name: "Macro",
  1790. height: math.unit(78, "feet"),
  1791. default: true
  1792. },
  1793. {
  1794. name: "Macro+",
  1795. height: math.unit(300, "meters")
  1796. },
  1797. {
  1798. name: "Macro++",
  1799. height: math.unit(2400, "meters")
  1800. },
  1801. {
  1802. name: "Megamacro",
  1803. height: math.unit(5167, "meters")
  1804. },
  1805. {
  1806. name: "Gigamacro",
  1807. height: math.unit(41769, "miles")
  1808. },
  1809. ]
  1810. ))
  1811. characterMakers.push(() => makeCharacter(
  1812. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1813. {
  1814. front: {
  1815. height: math.unit(1.65, "meters"),
  1816. weight: math.unit(50, "kg"),
  1817. name: "Front",
  1818. image: {
  1819. source: "./media/characters/elijah/front.svg",
  1820. extra: 858 / 830,
  1821. bottom: 95.5 / 953.8559
  1822. }
  1823. },
  1824. back: {
  1825. height: math.unit(1.65, "meters"),
  1826. weight: math.unit(50, "kg"),
  1827. name: "Back",
  1828. image: {
  1829. source: "./media/characters/elijah/back.svg",
  1830. extra: 895 / 850,
  1831. bottom: 5.3 / 897.956
  1832. }
  1833. },
  1834. frontNsfw: {
  1835. height: math.unit(1.65, "meters"),
  1836. weight: math.unit(50, "kg"),
  1837. name: "Front (NSFW)",
  1838. image: {
  1839. source: "./media/characters/elijah/front-nsfw.svg",
  1840. extra: 858 / 830,
  1841. bottom: 95.5 / 953.8559
  1842. }
  1843. },
  1844. backNsfw: {
  1845. height: math.unit(1.65, "meters"),
  1846. weight: math.unit(50, "kg"),
  1847. name: "Back (NSFW)",
  1848. image: {
  1849. source: "./media/characters/elijah/back-nsfw.svg",
  1850. extra: 895 / 850,
  1851. bottom: 5.3 / 897.956
  1852. }
  1853. },
  1854. dick: {
  1855. height: math.unit(1, "feet"),
  1856. name: "Dick",
  1857. image: {
  1858. source: "./media/characters/elijah/dick.svg"
  1859. }
  1860. },
  1861. beakOpen: {
  1862. height: math.unit(1.25, "feet"),
  1863. name: "Beak (Open)",
  1864. image: {
  1865. source: "./media/characters/elijah/beak-open.svg"
  1866. }
  1867. },
  1868. beakShut: {
  1869. height: math.unit(1.25, "feet"),
  1870. name: "Beak (Shut)",
  1871. image: {
  1872. source: "./media/characters/elijah/beak-shut.svg"
  1873. }
  1874. },
  1875. footFlexing: {
  1876. height: math.unit(1.61, "feet"),
  1877. name: "Foot (Flexing)",
  1878. image: {
  1879. source: "./media/characters/elijah/foot-flexing.svg"
  1880. }
  1881. },
  1882. footStepping: {
  1883. height: math.unit(1.44, "feet"),
  1884. name: "Foot (Stepping)",
  1885. image: {
  1886. source: "./media/characters/elijah/foot-stepping.svg"
  1887. }
  1888. },
  1889. plantigradeLeg: {
  1890. height: math.unit(2.34, "feet"),
  1891. name: "Plantigrade Leg",
  1892. image: {
  1893. source: "./media/characters/elijah/plantigrade-leg.svg"
  1894. }
  1895. },
  1896. plantigradeFootLeft: {
  1897. height: math.unit(0.9, "feet"),
  1898. name: "Plantigrade Foot (Left)",
  1899. image: {
  1900. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1901. }
  1902. },
  1903. plantigradeFootRight: {
  1904. height: math.unit(0.9, "feet"),
  1905. name: "Plantigrade Foot (Right)",
  1906. image: {
  1907. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1908. }
  1909. },
  1910. },
  1911. [
  1912. {
  1913. name: "Normal",
  1914. height: math.unit(1.65, "meters")
  1915. },
  1916. {
  1917. name: "Macro",
  1918. height: math.unit(55, "meters"),
  1919. default: true
  1920. },
  1921. {
  1922. name: "Macro+",
  1923. height: math.unit(105, "meters")
  1924. },
  1925. ]
  1926. ))
  1927. characterMakers.push(() => makeCharacter(
  1928. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1929. {
  1930. front: {
  1931. height: math.unit(11, "feet"),
  1932. weight: math.unit(80, "kg"),
  1933. name: "Front",
  1934. image: {
  1935. source: "./media/characters/rai/front.svg",
  1936. extra: 1,
  1937. bottom: 0.03
  1938. }
  1939. },
  1940. side: {
  1941. height: math.unit(11, "feet"),
  1942. weight: math.unit(80, "kg"),
  1943. name: "Side",
  1944. image: {
  1945. source: "./media/characters/rai/side.svg"
  1946. }
  1947. },
  1948. back: {
  1949. height: math.unit(11, "feet"),
  1950. weight: math.unit(80, "lb"),
  1951. name: "Back",
  1952. image: {
  1953. source: "./media/characters/rai/back.svg",
  1954. extra: 1,
  1955. bottom: 0.01
  1956. }
  1957. },
  1958. feral: {
  1959. height: math.unit(11, "feet"),
  1960. weight: math.unit(800, "lb"),
  1961. name: "Feral",
  1962. image: {
  1963. source: "./media/characters/rai/feral.svg",
  1964. extra: 1050 / 659,
  1965. bottom: 0.07
  1966. }
  1967. },
  1968. dragon: {
  1969. height: math.unit(23, "feet"),
  1970. weight: math.unit(50000, "lb"),
  1971. name: "Dragon",
  1972. image: {
  1973. source: "./media/characters/rai/dragon.svg",
  1974. extra: 2498 / 2030,
  1975. bottom: 85.2 / 2584
  1976. }
  1977. },
  1978. maw: {
  1979. height: math.unit(6 / 3.81416, "feet"),
  1980. name: "Maw",
  1981. image: {
  1982. source: "./media/characters/rai/maw.svg"
  1983. }
  1984. },
  1985. },
  1986. [
  1987. {
  1988. name: "Normal",
  1989. height: math.unit(11, "feet")
  1990. },
  1991. {
  1992. name: "Macro",
  1993. height: math.unit(302, "feet"),
  1994. default: true
  1995. },
  1996. ]
  1997. ))
  1998. characterMakers.push(() => makeCharacter(
  1999. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2000. {
  2001. frontDressed: {
  2002. height: math.unit(216, "feet"),
  2003. weight: math.unit(7000000, "lb"),
  2004. name: "Front (Dressed)",
  2005. image: {
  2006. source: "./media/characters/jazzy/front-dressed.svg",
  2007. extra: 2738 / 2651,
  2008. bottom: 41.8 / 2786
  2009. }
  2010. },
  2011. backDressed: {
  2012. height: math.unit(216, "feet"),
  2013. weight: math.unit(7000000, "lb"),
  2014. name: "Back (Dressed)",
  2015. image: {
  2016. source: "./media/characters/jazzy/back-dressed.svg",
  2017. extra: 2775 / 2673,
  2018. bottom: 36.8 / 2817
  2019. }
  2020. },
  2021. front: {
  2022. height: math.unit(216, "feet"),
  2023. weight: math.unit(7000000, "lb"),
  2024. name: "Front",
  2025. image: {
  2026. source: "./media/characters/jazzy/front.svg",
  2027. extra: 2738 / 2651,
  2028. bottom: 41.8 / 2786
  2029. }
  2030. },
  2031. back: {
  2032. height: math.unit(216, "feet"),
  2033. weight: math.unit(7000000, "lb"),
  2034. name: "Back",
  2035. image: {
  2036. source: "./media/characters/jazzy/back.svg",
  2037. extra: 2775 / 2673,
  2038. bottom: 36.8 / 2817
  2039. }
  2040. },
  2041. maw: {
  2042. height: math.unit(20, "feet"),
  2043. name: "Maw",
  2044. image: {
  2045. source: "./media/characters/jazzy/maw.svg"
  2046. }
  2047. },
  2048. paws: {
  2049. height: math.unit(27.5, "feet"),
  2050. name: "Paws",
  2051. image: {
  2052. source: "./media/characters/jazzy/paws.svg"
  2053. }
  2054. },
  2055. eye: {
  2056. height: math.unit(4.4, "feet"),
  2057. name: "Eye",
  2058. image: {
  2059. source: "./media/characters/jazzy/eye.svg"
  2060. }
  2061. },
  2062. droneOffense: {
  2063. height: math.unit(9.5, "inches"),
  2064. name: "Drone (Offense)",
  2065. image: {
  2066. source: "./media/characters/jazzy/drone-offense.svg"
  2067. }
  2068. },
  2069. droneRecon: {
  2070. height: math.unit(9.5, "inches"),
  2071. name: "Drone (Recon)",
  2072. image: {
  2073. source: "./media/characters/jazzy/drone-recon.svg"
  2074. }
  2075. },
  2076. droneDefense: {
  2077. height: math.unit(9.5, "inches"),
  2078. name: "Drone (Defense)",
  2079. image: {
  2080. source: "./media/characters/jazzy/drone-defense.svg"
  2081. }
  2082. },
  2083. },
  2084. [
  2085. {
  2086. name: "Macro",
  2087. height: math.unit(216, "feet"),
  2088. default: true
  2089. },
  2090. ]
  2091. ))
  2092. characterMakers.push(() => makeCharacter(
  2093. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2094. {
  2095. front: {
  2096. height: math.unit(7, "feet"),
  2097. weight: math.unit(80, "kg"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/flamm/front.svg",
  2101. extra: 1794 / 1677,
  2102. bottom: 31.7 / 1828.5
  2103. }
  2104. },
  2105. },
  2106. [
  2107. {
  2108. name: "Normal",
  2109. height: math.unit(9.5, "feet")
  2110. },
  2111. {
  2112. name: "Macro",
  2113. height: math.unit(200, "feet"),
  2114. default: true
  2115. },
  2116. ]
  2117. ))
  2118. characterMakers.push(() => makeCharacter(
  2119. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2120. {
  2121. front: {
  2122. height: math.unit(7, "feet"),
  2123. weight: math.unit(80, "kg"),
  2124. name: "Front",
  2125. image: {
  2126. source: "./media/characters/zephiro/front.svg",
  2127. extra: 2309 / 2162,
  2128. bottom: 0.069
  2129. }
  2130. },
  2131. side: {
  2132. height: math.unit(7, "feet"),
  2133. weight: math.unit(80, "kg"),
  2134. name: "Side",
  2135. image: {
  2136. source: "./media/characters/zephiro/side.svg",
  2137. extra: 2403 / 2279,
  2138. bottom: 0.015
  2139. }
  2140. },
  2141. back: {
  2142. height: math.unit(7, "feet"),
  2143. weight: math.unit(80, "kg"),
  2144. name: "Back",
  2145. image: {
  2146. source: "./media/characters/zephiro/back.svg",
  2147. extra: 2373 / 2244,
  2148. bottom: 0.013
  2149. }
  2150. },
  2151. },
  2152. [
  2153. {
  2154. name: "Micro",
  2155. height: math.unit(3, "inches")
  2156. },
  2157. {
  2158. name: "Normal",
  2159. height: math.unit(5 + 3 / 12, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Macro",
  2164. height: math.unit(118, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(5, "feet"),
  2173. weight: math.unit(90, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/fory/front.svg",
  2177. extra: 2862 / 2674,
  2178. bottom: 180 / 3043.8
  2179. }
  2180. },
  2181. back: {
  2182. height: math.unit(5, "feet"),
  2183. weight: math.unit(90, "kg"),
  2184. name: "Back",
  2185. image: {
  2186. source: "./media/characters/fory/back.svg",
  2187. extra: 2962 / 2791,
  2188. bottom: 106 / 3071.8
  2189. }
  2190. },
  2191. foot: {
  2192. height: math.unit(2.14, "feet"),
  2193. name: "Foot",
  2194. image: {
  2195. source: "./media/characters/fory/foot.svg"
  2196. }
  2197. },
  2198. },
  2199. [
  2200. {
  2201. name: "Normal",
  2202. height: math.unit(5, "feet")
  2203. },
  2204. {
  2205. name: "Macro",
  2206. height: math.unit(50, "feet"),
  2207. default: true
  2208. },
  2209. {
  2210. name: "Megamacro",
  2211. height: math.unit(10, "miles")
  2212. },
  2213. {
  2214. name: "Gigamacro",
  2215. height: math.unit(5, "earths")
  2216. },
  2217. ]
  2218. ))
  2219. characterMakers.push(() => makeCharacter(
  2220. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2221. {
  2222. front: {
  2223. height: math.unit(7, "feet"),
  2224. weight: math.unit(90, "kg"),
  2225. name: "Front",
  2226. image: {
  2227. source: "./media/characters/kurrikage/front.svg",
  2228. extra: 1,
  2229. bottom: 0.035
  2230. }
  2231. },
  2232. back: {
  2233. height: math.unit(7, "feet"),
  2234. weight: math.unit(90, "lb"),
  2235. name: "Back",
  2236. image: {
  2237. source: "./media/characters/kurrikage/back.svg"
  2238. }
  2239. },
  2240. paw: {
  2241. height: math.unit(1.5, "feet"),
  2242. name: "Paw",
  2243. image: {
  2244. source: "./media/characters/kurrikage/paw.svg"
  2245. }
  2246. },
  2247. staff: {
  2248. height: math.unit(6.7, "feet"),
  2249. name: "Staff",
  2250. image: {
  2251. source: "./media/characters/kurrikage/staff.svg"
  2252. }
  2253. },
  2254. peek: {
  2255. height: math.unit(1.05, "feet"),
  2256. name: "Peeking",
  2257. image: {
  2258. source: "./media/characters/kurrikage/peek.svg",
  2259. bottom: 0.08
  2260. }
  2261. },
  2262. },
  2263. [
  2264. {
  2265. name: "Normal",
  2266. height: math.unit(12, "feet"),
  2267. default: true
  2268. },
  2269. {
  2270. name: "Big",
  2271. height: math.unit(20, "feet")
  2272. },
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(500, "feet")
  2276. },
  2277. {
  2278. name: "Megamacro",
  2279. height: math.unit(20, "miles")
  2280. },
  2281. ]
  2282. ))
  2283. characterMakers.push(() => makeCharacter(
  2284. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2285. {
  2286. front: {
  2287. height: math.unit(6, "feet"),
  2288. weight: math.unit(75, "kg"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/shingo/front.svg",
  2292. extra: 3511 / 3338,
  2293. bottom: 0.005
  2294. }
  2295. },
  2296. paw: {
  2297. height: math.unit(1, "feet"),
  2298. name: "Paw",
  2299. image: {
  2300. source: "./media/characters/shingo/paw.svg"
  2301. }
  2302. },
  2303. },
  2304. [
  2305. {
  2306. name: "Micro",
  2307. height: math.unit(4, "inches")
  2308. },
  2309. {
  2310. name: "Normal",
  2311. height: math.unit(6, "feet"),
  2312. default: true
  2313. },
  2314. {
  2315. name: "Macro",
  2316. height: math.unit(108, "feet")
  2317. }
  2318. ]
  2319. ))
  2320. characterMakers.push(() => makeCharacter(
  2321. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2322. {
  2323. side: {
  2324. height: math.unit(6, "feet"),
  2325. weight: math.unit(75, "kg"),
  2326. name: "Side",
  2327. image: {
  2328. source: "./media/characters/aigey/side.svg"
  2329. }
  2330. },
  2331. },
  2332. [
  2333. {
  2334. name: "Macro",
  2335. height: math.unit(200, "feet"),
  2336. default: true
  2337. },
  2338. {
  2339. name: "Megamacro",
  2340. height: math.unit(100, "miles")
  2341. },
  2342. ]
  2343. )
  2344. )
  2345. characterMakers.push(() => makeCharacter(
  2346. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2347. {
  2348. front: {
  2349. height: math.unit(5 + 5 / 12, "feet"),
  2350. weight: math.unit(75, "kg"),
  2351. name: "Front",
  2352. image: {
  2353. source: "./media/characters/natasha/front.svg",
  2354. extra: 859 / 824,
  2355. bottom: 23 / 879.6
  2356. }
  2357. },
  2358. frontNsfw: {
  2359. height: math.unit(5 + 5 / 12, "feet"),
  2360. weight: math.unit(75, "kg"),
  2361. name: "Front (NSFW)",
  2362. image: {
  2363. source: "./media/characters/natasha/front-nsfw.svg",
  2364. extra: 859 / 824,
  2365. bottom: 23 / 879.6
  2366. }
  2367. },
  2368. frontErect: {
  2369. height: math.unit(5 + 5 / 12, "feet"),
  2370. weight: math.unit(75, "kg"),
  2371. name: "Front (Erect)",
  2372. image: {
  2373. source: "./media/characters/natasha/front-erect.svg",
  2374. extra: 859 / 824,
  2375. bottom: 23 / 879.6
  2376. }
  2377. },
  2378. back: {
  2379. height: math.unit(5 + 5 / 12, "feet"),
  2380. weight: math.unit(75, "kg"),
  2381. name: "Back",
  2382. image: {
  2383. source: "./media/characters/natasha/back.svg",
  2384. extra: 887.9 / 852.6,
  2385. bottom: 9.7 / 896.4
  2386. }
  2387. },
  2388. backAlt: {
  2389. height: math.unit(5 + 5 / 12, "feet"),
  2390. weight: math.unit(75, "kg"),
  2391. name: "Back (Alt)",
  2392. image: {
  2393. source: "./media/characters/natasha/back-alt.svg",
  2394. extra: 1236.7 / 1192,
  2395. bottom: 22.3 / 1258.2
  2396. }
  2397. },
  2398. dick: {
  2399. height: math.unit(1.772, "feet"),
  2400. name: "Dick",
  2401. image: {
  2402. source: "./media/characters/natasha/dick.svg"
  2403. }
  2404. },
  2405. paw: {
  2406. height: math.unit(0.250, "meters"),
  2407. name: "Paw",
  2408. image: {
  2409. source: "./media/characters/natasha/paw.svg"
  2410. }
  2411. },
  2412. },
  2413. [
  2414. {
  2415. name: "Normal",
  2416. height: math.unit(5 + 5 / 12, "feet")
  2417. },
  2418. {
  2419. name: "Large",
  2420. height: math.unit(12, "feet")
  2421. },
  2422. {
  2423. name: "Macro",
  2424. height: math.unit(100, "feet"),
  2425. default: true
  2426. },
  2427. {
  2428. name: "Macro+",
  2429. height: math.unit(260, "feet")
  2430. },
  2431. {
  2432. name: "Macro++",
  2433. height: math.unit(1, "mile")
  2434. },
  2435. ]
  2436. ))
  2437. characterMakers.push(() => makeCharacter(
  2438. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2439. {
  2440. front: {
  2441. height: math.unit(6, "feet"),
  2442. weight: math.unit(75, "kg"),
  2443. name: "Front",
  2444. image: {
  2445. source: "./media/characters/malik/front.svg"
  2446. }
  2447. },
  2448. side: {
  2449. height: math.unit(6, "feet"),
  2450. weight: math.unit(75, "kg"),
  2451. name: "Side",
  2452. image: {
  2453. source: "./media/characters/malik/side.svg",
  2454. extra: 1.1539
  2455. }
  2456. },
  2457. back: {
  2458. height: math.unit(6, "feet"),
  2459. weight: math.unit(75, "kg"),
  2460. name: "Back",
  2461. image: {
  2462. source: "./media/characters/malik/back.svg"
  2463. }
  2464. },
  2465. },
  2466. [
  2467. {
  2468. name: "Macro",
  2469. height: math.unit(156, "feet"),
  2470. default: true
  2471. },
  2472. {
  2473. name: "Macro+",
  2474. height: math.unit(1188, "feet")
  2475. },
  2476. ]
  2477. ))
  2478. characterMakers.push(() => makeCharacter(
  2479. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2480. {
  2481. front: {
  2482. height: math.unit(6, "feet"),
  2483. weight: math.unit(75, "kg"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/sefer/front.svg",
  2487. extra: 848 / 659,
  2488. bottom: 28.3 / 876.442
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(6, "feet"),
  2493. weight: math.unit(75, "kg"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/sefer/back.svg",
  2497. extra: 864 / 695,
  2498. bottom: 10 / 871
  2499. }
  2500. },
  2501. frontDressed: {
  2502. height: math.unit(6, "feet"),
  2503. weight: math.unit(75, "kg"),
  2504. name: "Front (Dressed)",
  2505. image: {
  2506. source: "./media/characters/sefer/front-dressed.svg",
  2507. extra: 839 / 653,
  2508. bottom: 37.6 / 878
  2509. }
  2510. },
  2511. },
  2512. [
  2513. {
  2514. name: "Normal",
  2515. height: math.unit(6, "feet"),
  2516. default: true
  2517. },
  2518. ]
  2519. ))
  2520. characterMakers.push(() => makeCharacter(
  2521. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2522. {
  2523. body: {
  2524. height: math.unit(2.2428, "meter"),
  2525. weight: math.unit(124.738, "kg"),
  2526. name: "Body",
  2527. image: {
  2528. extra: 1225 / 1050,
  2529. source: "./media/characters/north/front.svg"
  2530. }
  2531. }
  2532. },
  2533. [
  2534. {
  2535. name: "Micro",
  2536. height: math.unit(4, "inches")
  2537. },
  2538. {
  2539. name: "Macro",
  2540. height: math.unit(63, "meters")
  2541. },
  2542. {
  2543. name: "Megamacro",
  2544. height: math.unit(101, "miles"),
  2545. default: true
  2546. }
  2547. ]
  2548. ))
  2549. characterMakers.push(() => makeCharacter(
  2550. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2551. {
  2552. angled: {
  2553. height: math.unit(4, "meter"),
  2554. weight: math.unit(150, "kg"),
  2555. name: "Angled",
  2556. image: {
  2557. source: "./media/characters/talan/angled-sfw.svg",
  2558. bottom: 29 / 3734
  2559. }
  2560. },
  2561. angledNsfw: {
  2562. height: math.unit(4, "meter"),
  2563. weight: math.unit(150, "kg"),
  2564. name: "Angled (NSFW)",
  2565. image: {
  2566. source: "./media/characters/talan/angled-nsfw.svg",
  2567. bottom: 29 / 3734
  2568. }
  2569. },
  2570. frontNsfw: {
  2571. height: math.unit(4, "meter"),
  2572. weight: math.unit(150, "kg"),
  2573. name: "Front (NSFW)",
  2574. image: {
  2575. source: "./media/characters/talan/front-nsfw.svg",
  2576. bottom: 29 / 3734
  2577. }
  2578. },
  2579. sideNsfw: {
  2580. height: math.unit(4, "meter"),
  2581. weight: math.unit(150, "kg"),
  2582. name: "Side (NSFW)",
  2583. image: {
  2584. source: "./media/characters/talan/side-nsfw.svg",
  2585. bottom: 29 / 3734
  2586. }
  2587. },
  2588. back: {
  2589. height: math.unit(4, "meter"),
  2590. weight: math.unit(150, "kg"),
  2591. name: "Back",
  2592. image: {
  2593. source: "./media/characters/talan/back.svg"
  2594. }
  2595. },
  2596. dickBottom: {
  2597. height: math.unit(0.621, "meter"),
  2598. name: "Dick (Bottom)",
  2599. image: {
  2600. source: "./media/characters/talan/dick-bottom.svg"
  2601. }
  2602. },
  2603. dickTop: {
  2604. height: math.unit(0.621, "meter"),
  2605. name: "Dick (Top)",
  2606. image: {
  2607. source: "./media/characters/talan/dick-top.svg"
  2608. }
  2609. },
  2610. dickSide: {
  2611. height: math.unit(0.305, "meter"),
  2612. name: "Dick (Side)",
  2613. image: {
  2614. source: "./media/characters/talan/dick-side.svg"
  2615. }
  2616. },
  2617. dickFront: {
  2618. height: math.unit(0.305, "meter"),
  2619. name: "Dick (Front)",
  2620. image: {
  2621. source: "./media/characters/talan/dick-front.svg"
  2622. }
  2623. },
  2624. },
  2625. [
  2626. {
  2627. name: "Normal",
  2628. height: math.unit(4, "meters")
  2629. },
  2630. {
  2631. name: "Macro",
  2632. height: math.unit(100, "meters")
  2633. },
  2634. {
  2635. name: "Megamacro",
  2636. height: math.unit(2, "miles"),
  2637. default: true
  2638. },
  2639. {
  2640. name: "Gigamacro",
  2641. height: math.unit(5000, "miles")
  2642. },
  2643. {
  2644. name: "Teramacro",
  2645. height: math.unit(100, "parsecs")
  2646. }
  2647. ]
  2648. ))
  2649. characterMakers.push(() => makeCharacter(
  2650. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2651. {
  2652. front: {
  2653. height: math.unit(2, "meter"),
  2654. weight: math.unit(90, "kg"),
  2655. name: "Front",
  2656. image: {
  2657. source: "./media/characters/gael'rathus/front.svg"
  2658. }
  2659. },
  2660. frontAlt: {
  2661. height: math.unit(2, "meter"),
  2662. weight: math.unit(90, "kg"),
  2663. name: "Front (alt)",
  2664. image: {
  2665. source: "./media/characters/gael'rathus/front-alt.svg"
  2666. }
  2667. },
  2668. frontAlt2: {
  2669. height: math.unit(2, "meter"),
  2670. weight: math.unit(90, "kg"),
  2671. name: "Front (alt 2)",
  2672. image: {
  2673. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2674. }
  2675. }
  2676. },
  2677. [
  2678. {
  2679. name: "Normal",
  2680. height: math.unit(9, "feet"),
  2681. default: true
  2682. },
  2683. {
  2684. name: "Large",
  2685. height: math.unit(25, "feet")
  2686. },
  2687. {
  2688. name: "Macro",
  2689. height: math.unit(0.25, "miles")
  2690. },
  2691. {
  2692. name: "Megamacro",
  2693. height: math.unit(10, "miles")
  2694. }
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2699. {
  2700. side: {
  2701. height: math.unit(2, "meter"),
  2702. weight: math.unit(140, "kg"),
  2703. name: "Side",
  2704. image: {
  2705. source: "./media/characters/sosha/side.svg",
  2706. bottom: 0.042
  2707. }
  2708. },
  2709. },
  2710. [
  2711. {
  2712. name: "Normal",
  2713. height: math.unit(12, "feet"),
  2714. default: true
  2715. }
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2720. {
  2721. side: {
  2722. height: math.unit(5 + 5 / 12, "feet"),
  2723. weight: math.unit(170, "kg"),
  2724. name: "Side",
  2725. image: {
  2726. source: "./media/characters/runnola/side.svg",
  2727. extra: 741 / 448,
  2728. bottom: 0.05
  2729. }
  2730. },
  2731. },
  2732. [
  2733. {
  2734. name: "Small",
  2735. height: math.unit(3, "feet")
  2736. },
  2737. {
  2738. name: "Normal",
  2739. height: math.unit(5 + 5 / 12, "feet"),
  2740. default: true
  2741. },
  2742. {
  2743. name: "Big",
  2744. height: math.unit(10, "feet")
  2745. },
  2746. ]
  2747. ))
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(2, "meter"),
  2753. weight: math.unit(50, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/kurribird/front.svg",
  2757. bottom: 0.015
  2758. }
  2759. },
  2760. frontAlt: {
  2761. height: math.unit(1.5, "meter"),
  2762. weight: math.unit(50, "kg"),
  2763. name: "Front (Alt)",
  2764. image: {
  2765. source: "./media/characters/kurribird/front-alt.svg",
  2766. extra: 1.45
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(7, "feet")
  2774. },
  2775. {
  2776. name: "Big",
  2777. height: math.unit(12, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Macro",
  2782. height: math.unit(1500, "feet")
  2783. },
  2784. {
  2785. name: "Megamacro",
  2786. height: math.unit(2, "miles")
  2787. }
  2788. ]
  2789. ))
  2790. characterMakers.push(() => makeCharacter(
  2791. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2792. {
  2793. front: {
  2794. height: math.unit(2, "meter"),
  2795. weight: math.unit(80, "kg"),
  2796. name: "Front",
  2797. image: {
  2798. source: "./media/characters/elbial/front.svg",
  2799. extra: 1643 / 1556,
  2800. bottom: 60.2 / 1696
  2801. }
  2802. },
  2803. side: {
  2804. height: math.unit(2, "meter"),
  2805. weight: math.unit(80, "kg"),
  2806. name: "Side",
  2807. image: {
  2808. source: "./media/characters/elbial/side.svg",
  2809. extra: 1630 / 1565,
  2810. bottom: 71.5 / 1697
  2811. }
  2812. },
  2813. back: {
  2814. height: math.unit(2, "meter"),
  2815. weight: math.unit(80, "kg"),
  2816. name: "Back",
  2817. image: {
  2818. source: "./media/characters/elbial/back.svg",
  2819. extra: 1668 / 1595,
  2820. bottom: 5.6 / 1672
  2821. }
  2822. },
  2823. frontDressed: {
  2824. height: math.unit(2, "meter"),
  2825. weight: math.unit(80, "kg"),
  2826. name: "Front (Dressed)",
  2827. image: {
  2828. source: "./media/characters/elbial/front-dressed.svg",
  2829. extra: 1653 / 1584,
  2830. bottom: 57 / 1708
  2831. }
  2832. },
  2833. genitals: {
  2834. height: math.unit(2 / 3.367, "meter"),
  2835. name: "Genitals",
  2836. image: {
  2837. source: "./media/characters/elbial/genitals.svg"
  2838. }
  2839. },
  2840. },
  2841. [
  2842. {
  2843. name: "Large",
  2844. height: math.unit(100, "feet")
  2845. },
  2846. {
  2847. name: "Macro",
  2848. height: math.unit(500, "feet"),
  2849. default: true
  2850. },
  2851. {
  2852. name: "Megamacro",
  2853. height: math.unit(10, "miles")
  2854. },
  2855. {
  2856. name: "Gigamacro",
  2857. height: math.unit(25000, "miles")
  2858. },
  2859. {
  2860. name: "Full-Size",
  2861. height: math.unit(8000000, "gigaparsecs")
  2862. }
  2863. ]
  2864. ))
  2865. characterMakers.push(() => makeCharacter(
  2866. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2867. {
  2868. front: {
  2869. height: math.unit(2, "meter"),
  2870. weight: math.unit(60, "kg"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/noah/front.svg"
  2874. }
  2875. },
  2876. talons: {
  2877. height: math.unit(0.315, "meter"),
  2878. name: "Talons",
  2879. image: {
  2880. source: "./media/characters/noah/talons.svg"
  2881. }
  2882. }
  2883. },
  2884. [
  2885. {
  2886. name: "Large",
  2887. height: math.unit(50, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(750, "feet"),
  2892. default: true
  2893. },
  2894. {
  2895. name: "Megamacro",
  2896. height: math.unit(50, "miles")
  2897. },
  2898. {
  2899. name: "Gigamacro",
  2900. height: math.unit(100000, "miles")
  2901. },
  2902. {
  2903. name: "Full-Size",
  2904. height: math.unit(3000000000, "miles")
  2905. }
  2906. ]
  2907. ))
  2908. characterMakers.push(() => makeCharacter(
  2909. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2910. {
  2911. front: {
  2912. height: math.unit(2, "meter"),
  2913. weight: math.unit(80, "kg"),
  2914. name: "Front",
  2915. image: {
  2916. source: "./media/characters/natalya/front.svg"
  2917. }
  2918. },
  2919. back: {
  2920. height: math.unit(2, "meter"),
  2921. weight: math.unit(80, "kg"),
  2922. name: "Back",
  2923. image: {
  2924. source: "./media/characters/natalya/back.svg"
  2925. }
  2926. }
  2927. },
  2928. [
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(150, "feet"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Megamacro",
  2936. height: math.unit(5, "miles")
  2937. },
  2938. {
  2939. name: "Full-Size",
  2940. height: math.unit(600, "kiloparsecs")
  2941. }
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2946. {
  2947. front: {
  2948. height: math.unit(2, "meter"),
  2949. weight: math.unit(50, "kg"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/erestrebah/front.svg",
  2953. extra: 208 / 193,
  2954. bottom: 0.055
  2955. }
  2956. },
  2957. back: {
  2958. height: math.unit(2, "meter"),
  2959. weight: math.unit(50, "kg"),
  2960. name: "Back",
  2961. image: {
  2962. source: "./media/characters/erestrebah/back.svg",
  2963. extra: 1.3
  2964. }
  2965. }
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(10, "feet")
  2971. },
  2972. {
  2973. name: "Large",
  2974. height: math.unit(50, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(300, "feet")
  2980. },
  2981. {
  2982. name: "Macro+",
  2983. height: math.unit(750, "feet")
  2984. },
  2985. {
  2986. name: "Megamacro",
  2987. height: math.unit(3, "miles")
  2988. }
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(2, "meter"),
  2996. weight: math.unit(80, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/jennifer/front.svg",
  3000. bottom: 0.11,
  3001. extra: 1.16
  3002. }
  3003. },
  3004. frontAlt: {
  3005. height: math.unit(2, "meter"),
  3006. weight: math.unit(80, "kg"),
  3007. name: "Front (Alt)",
  3008. image: {
  3009. source: "./media/characters/jennifer/front-alt.svg"
  3010. }
  3011. }
  3012. },
  3013. [
  3014. {
  3015. name: "Canon Height",
  3016. height: math.unit(120, "feet"),
  3017. default: true
  3018. },
  3019. {
  3020. name: "Macro+",
  3021. height: math.unit(300, "feet")
  3022. },
  3023. {
  3024. name: "Megamacro",
  3025. height: math.unit(20000, "feet")
  3026. }
  3027. ]
  3028. ))
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3031. {
  3032. front: {
  3033. height: math.unit(2, "meter"),
  3034. weight: math.unit(50, "kg"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/kalista/front.svg",
  3038. extra: 1947 / 1700,
  3039. bottom: 76.6 / 1412.98
  3040. }
  3041. },
  3042. back: {
  3043. height: math.unit(2, "meter"),
  3044. weight: math.unit(50, "kg"),
  3045. name: "Back",
  3046. image: {
  3047. source: "./media/characters/kalista/back.svg",
  3048. extra: 1366 / 1156,
  3049. bottom: 33.9 / 1362.78
  3050. }
  3051. }
  3052. },
  3053. [
  3054. {
  3055. name: "Uncomfortably Small",
  3056. height: math.unit(10, "feet")
  3057. },
  3058. {
  3059. name: "Small",
  3060. height: math.unit(30, "feet")
  3061. },
  3062. {
  3063. name: "Macro",
  3064. height: math.unit(100, "feet"),
  3065. default: true
  3066. },
  3067. {
  3068. name: "Macro+",
  3069. height: math.unit(2000, "feet")
  3070. },
  3071. {
  3072. name: "True Form",
  3073. height: math.unit(8924, "miles")
  3074. }
  3075. ]
  3076. ))
  3077. characterMakers.push(() => makeCharacter(
  3078. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3079. {
  3080. front: {
  3081. height: math.unit(2, "meter"),
  3082. weight: math.unit(120, "kg"),
  3083. name: "Front",
  3084. image: {
  3085. source: "./media/characters/ggv/front.svg"
  3086. }
  3087. },
  3088. side: {
  3089. height: math.unit(2, "meter"),
  3090. weight: math.unit(120, "kg"),
  3091. name: "Side",
  3092. image: {
  3093. source: "./media/characters/ggv/side.svg"
  3094. }
  3095. }
  3096. },
  3097. [
  3098. {
  3099. name: "Extremely Puny",
  3100. height: math.unit(9 + 5 / 12, "feet")
  3101. },
  3102. {
  3103. name: "Horribly Small",
  3104. height: math.unit(47.7, "miles"),
  3105. default: true
  3106. },
  3107. {
  3108. name: "Reasonably Sized",
  3109. height: math.unit(25000, "parsecs")
  3110. },
  3111. {
  3112. name: "Slightly Uncompressed",
  3113. height: math.unit(7.77e31, "parsecs")
  3114. },
  3115. {
  3116. name: "Omniversal",
  3117. height: math.unit(1e300, "meters")
  3118. },
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(2, "meter"),
  3126. weight: math.unit(75, "lb"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/napalm/front.svg"
  3130. }
  3131. },
  3132. back: {
  3133. height: math.unit(2, "meter"),
  3134. weight: math.unit(75, "lb"),
  3135. name: "Back",
  3136. image: {
  3137. source: "./media/characters/napalm/back.svg"
  3138. }
  3139. }
  3140. },
  3141. [
  3142. {
  3143. name: "Standard",
  3144. height: math.unit(55, "feet"),
  3145. default: true
  3146. }
  3147. ]
  3148. ))
  3149. characterMakers.push(() => makeCharacter(
  3150. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3151. {
  3152. front: {
  3153. height: math.unit(7 + 5 / 6, "feet"),
  3154. weight: math.unit(325, "lb"),
  3155. name: "Front",
  3156. image: {
  3157. source: "./media/characters/asana/front.svg",
  3158. extra: 1133 / 1060,
  3159. bottom: 15.2 / 1148.6
  3160. }
  3161. },
  3162. back: {
  3163. height: math.unit(7 + 5 / 6, "feet"),
  3164. weight: math.unit(325, "lb"),
  3165. name: "Back",
  3166. image: {
  3167. source: "./media/characters/asana/back.svg",
  3168. extra: 1114 / 1043,
  3169. bottom: 5 / 1120
  3170. }
  3171. },
  3172. dressedDark: {
  3173. height: math.unit(7 + 5 / 6, "feet"),
  3174. weight: math.unit(325, "lb"),
  3175. name: "Dressed (Dark)",
  3176. image: {
  3177. source: "./media/characters/asana/dressed-dark.svg",
  3178. extra: 1133 / 1060,
  3179. bottom: 15.2 / 1148.6
  3180. }
  3181. },
  3182. dressedLight: {
  3183. height: math.unit(7 + 5 / 6, "feet"),
  3184. weight: math.unit(325, "lb"),
  3185. name: "Dressed (Light)",
  3186. image: {
  3187. source: "./media/characters/asana/dressed-light.svg",
  3188. extra: 1133 / 1060,
  3189. bottom: 15.2 / 1148.6
  3190. }
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Standard",
  3196. height: math.unit(7 + 5 / 6, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Large",
  3201. height: math.unit(10, "meters")
  3202. },
  3203. {
  3204. name: "Macro",
  3205. height: math.unit(2500, "meters")
  3206. },
  3207. {
  3208. name: "Megamacro",
  3209. height: math.unit(5e6, "meters")
  3210. },
  3211. {
  3212. name: "Examacro",
  3213. height: math.unit(5e12, "lightyears")
  3214. },
  3215. {
  3216. name: "Max Size",
  3217. height: math.unit(1e31, "lightyears")
  3218. }
  3219. ]
  3220. ))
  3221. characterMakers.push(() => makeCharacter(
  3222. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3223. {
  3224. front: {
  3225. height: math.unit(2, "meter"),
  3226. weight: math.unit(60, "kg"),
  3227. name: "Front",
  3228. image: {
  3229. source: "./media/characters/ebony/front.svg",
  3230. bottom: 0.03,
  3231. extra: 1045 / 810 + 0.03
  3232. }
  3233. },
  3234. side: {
  3235. height: math.unit(2, "meter"),
  3236. weight: math.unit(60, "kg"),
  3237. name: "Side",
  3238. image: {
  3239. source: "./media/characters/ebony/side.svg",
  3240. bottom: 0.03,
  3241. extra: 1045 / 810 + 0.03
  3242. }
  3243. },
  3244. back: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(60, "kg"),
  3247. name: "Back",
  3248. image: {
  3249. source: "./media/characters/ebony/back.svg",
  3250. bottom: 0.01,
  3251. extra: 1045 / 810 + 0.01
  3252. }
  3253. },
  3254. },
  3255. [
  3256. // TODO check why I did this lol
  3257. {
  3258. name: "Standard",
  3259. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3260. default: true
  3261. },
  3262. {
  3263. name: "Macro",
  3264. height: math.unit(200, "feet")
  3265. },
  3266. {
  3267. name: "Gigamacro",
  3268. height: math.unit(13000, "km")
  3269. }
  3270. ]
  3271. ))
  3272. characterMakers.push(() => makeCharacter(
  3273. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3274. {
  3275. front: {
  3276. height: math.unit(6, "feet"),
  3277. weight: math.unit(175, "lb"),
  3278. name: "Front",
  3279. image: {
  3280. source: "./media/characters/mountain/front.svg",
  3281. extra: 972 / 955,
  3282. bottom: 64 / 1036.6
  3283. }
  3284. },
  3285. back: {
  3286. height: math.unit(6, "feet"),
  3287. weight: math.unit(175, "lb"),
  3288. name: "Back",
  3289. image: {
  3290. source: "./media/characters/mountain/back.svg",
  3291. extra: 970 / 950,
  3292. bottom: 28.25 / 999
  3293. }
  3294. },
  3295. },
  3296. [
  3297. {
  3298. name: "Large",
  3299. height: math.unit(20, "meters")
  3300. },
  3301. {
  3302. name: "Macro",
  3303. height: math.unit(300, "meters")
  3304. },
  3305. {
  3306. name: "Gigamacro",
  3307. height: math.unit(10000, "km"),
  3308. default: true
  3309. },
  3310. {
  3311. name: "Examacro",
  3312. height: math.unit(10e9, "lightyears")
  3313. }
  3314. ]
  3315. ))
  3316. characterMakers.push(() => makeCharacter(
  3317. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3318. {
  3319. front: {
  3320. height: math.unit(8, "feet"),
  3321. weight: math.unit(500, "lb"),
  3322. name: "Front",
  3323. image: {
  3324. source: "./media/characters/rick/front.svg"
  3325. }
  3326. }
  3327. },
  3328. [
  3329. {
  3330. name: "Normal",
  3331. height: math.unit(8, "feet"),
  3332. default: true
  3333. },
  3334. {
  3335. name: "Macro",
  3336. height: math.unit(5, "km")
  3337. }
  3338. ]
  3339. ))
  3340. characterMakers.push(() => makeCharacter(
  3341. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3342. {
  3343. front: {
  3344. height: math.unit(8, "feet"),
  3345. weight: math.unit(120, "lb"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/ona/front.svg"
  3349. }
  3350. },
  3351. frontAlt: {
  3352. height: math.unit(8, "feet"),
  3353. weight: math.unit(120, "lb"),
  3354. name: "Front (Alt)",
  3355. image: {
  3356. source: "./media/characters/ona/front-alt.svg"
  3357. }
  3358. },
  3359. back: {
  3360. height: math.unit(8, "feet"),
  3361. weight: math.unit(120, "lb"),
  3362. name: "Back",
  3363. image: {
  3364. source: "./media/characters/ona/back.svg"
  3365. }
  3366. },
  3367. foot: {
  3368. height: math.unit(1.1, "feet"),
  3369. name: "Foot",
  3370. image: {
  3371. source: "./media/characters/ona/foot.svg"
  3372. }
  3373. }
  3374. },
  3375. [
  3376. {
  3377. name: "Megamacro",
  3378. height: math.unit(70, "km"),
  3379. default: true
  3380. },
  3381. {
  3382. name: "Gigamacro",
  3383. height: math.unit(681818, "miles")
  3384. },
  3385. {
  3386. name: "Examacro",
  3387. height: math.unit(3800000, "lightyears")
  3388. },
  3389. ]
  3390. ))
  3391. characterMakers.push(() => makeCharacter(
  3392. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3393. {
  3394. front: {
  3395. height: math.unit(12, "feet"),
  3396. weight: math.unit(3000, "lb"),
  3397. name: "Front",
  3398. image: {
  3399. source: "./media/characters/mech/front.svg",
  3400. bottom: 0.025,
  3401. }
  3402. },
  3403. back: {
  3404. height: math.unit(12, "feet"),
  3405. weight: math.unit(3000, "lb"),
  3406. name: "Back",
  3407. image: {
  3408. source: "./media/characters/mech/back.svg",
  3409. bottom: 0.03,
  3410. }
  3411. }
  3412. },
  3413. [
  3414. {
  3415. name: "Normal",
  3416. height: math.unit(12, "feet")
  3417. },
  3418. {
  3419. name: "Macro",
  3420. height: math.unit(300, "feet"),
  3421. default: true
  3422. },
  3423. {
  3424. name: "Macro+",
  3425. height: math.unit(1500, "feet")
  3426. },
  3427. ]
  3428. ))
  3429. characterMakers.push(() => makeCharacter(
  3430. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3431. {
  3432. front: {
  3433. height: math.unit(1.3, "meter"),
  3434. weight: math.unit(30, "kg"),
  3435. name: "Front",
  3436. image: {
  3437. source: "./media/characters/gregory/front.svg",
  3438. }
  3439. }
  3440. },
  3441. [
  3442. {
  3443. name: "Normal",
  3444. height: math.unit(1.3, "meter"),
  3445. default: true
  3446. },
  3447. {
  3448. name: "Macro",
  3449. height: math.unit(20, "meter")
  3450. }
  3451. ]
  3452. ))
  3453. characterMakers.push(() => makeCharacter(
  3454. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3455. {
  3456. front: {
  3457. height: math.unit(2.8, "meter"),
  3458. weight: math.unit(200, "kg"),
  3459. name: "Front",
  3460. image: {
  3461. source: "./media/characters/elory/front.svg",
  3462. }
  3463. }
  3464. },
  3465. [
  3466. {
  3467. name: "Normal",
  3468. height: math.unit(2.8, "meter"),
  3469. default: true
  3470. },
  3471. {
  3472. name: "Macro",
  3473. height: math.unit(38, "meter")
  3474. }
  3475. ]
  3476. ))
  3477. characterMakers.push(() => makeCharacter(
  3478. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3479. {
  3480. front: {
  3481. height: math.unit(470, "feet"),
  3482. weight: math.unit(924, "tons"),
  3483. name: "Front",
  3484. image: {
  3485. source: "./media/characters/angelpatamon/front.svg",
  3486. }
  3487. }
  3488. },
  3489. [
  3490. {
  3491. name: "Normal",
  3492. height: math.unit(470, "feet"),
  3493. default: true
  3494. },
  3495. {
  3496. name: "Deity Size I",
  3497. height: math.unit(28651.2, "km")
  3498. },
  3499. {
  3500. name: "Deity Size II",
  3501. height: math.unit(171907.2, "km")
  3502. }
  3503. ]
  3504. ))
  3505. characterMakers.push(() => makeCharacter(
  3506. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3507. {
  3508. side: {
  3509. height: math.unit(7.2, "meter"),
  3510. weight: math.unit(8.2, "tons"),
  3511. name: "Side",
  3512. image: {
  3513. source: "./media/characters/cryae/side.svg",
  3514. extra: 3500 / 1500
  3515. }
  3516. }
  3517. },
  3518. [
  3519. {
  3520. name: "Normal",
  3521. height: math.unit(7.2, "meter"),
  3522. default: true
  3523. }
  3524. ]
  3525. ))
  3526. characterMakers.push(() => makeCharacter(
  3527. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3528. {
  3529. front: {
  3530. height: math.unit(6, "feet"),
  3531. weight: math.unit(175, "lb"),
  3532. name: "Front",
  3533. image: {
  3534. source: "./media/characters/xera/front.svg",
  3535. extra: 2377 / 1972,
  3536. bottom: 75.5 / 2452
  3537. }
  3538. },
  3539. side: {
  3540. height: math.unit(6, "feet"),
  3541. weight: math.unit(175, "lb"),
  3542. name: "Side",
  3543. image: {
  3544. source: "./media/characters/xera/side.svg",
  3545. extra: 2345 / 2019,
  3546. bottom: 39.7 / 2384
  3547. }
  3548. },
  3549. back: {
  3550. height: math.unit(6, "feet"),
  3551. weight: math.unit(175, "lb"),
  3552. name: "Back",
  3553. image: {
  3554. source: "./media/characters/xera/back.svg",
  3555. extra: 2095 / 1984,
  3556. bottom: 67 / 2166
  3557. }
  3558. },
  3559. },
  3560. [
  3561. {
  3562. name: "Small",
  3563. height: math.unit(10, "feet")
  3564. },
  3565. {
  3566. name: "Macro",
  3567. height: math.unit(500, "meters"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Macro+",
  3572. height: math.unit(10, "km")
  3573. },
  3574. {
  3575. name: "Gigamacro",
  3576. height: math.unit(25000, "km")
  3577. },
  3578. {
  3579. name: "Teramacro",
  3580. height: math.unit(3e6, "km")
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(6, "feet"),
  3589. weight: math.unit(175, "lb"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/nebula/front.svg",
  3593. extra: 2566 / 2362,
  3594. bottom: 81 / 2644
  3595. }
  3596. }
  3597. },
  3598. [
  3599. {
  3600. name: "Small",
  3601. height: math.unit(4.5, "meters")
  3602. },
  3603. {
  3604. name: "Macro",
  3605. height: math.unit(1500, "meters"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Megamacro",
  3610. height: math.unit(150, "km")
  3611. },
  3612. {
  3613. name: "Gigamacro",
  3614. height: math.unit(27000, "km")
  3615. }
  3616. ]
  3617. ))
  3618. characterMakers.push(() => makeCharacter(
  3619. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3620. {
  3621. front: {
  3622. height: math.unit(6, "feet"),
  3623. weight: math.unit(225, "lb"),
  3624. name: "Front",
  3625. image: {
  3626. source: "./media/characters/abysgar/front.svg"
  3627. }
  3628. }
  3629. },
  3630. [
  3631. {
  3632. name: "Small",
  3633. height: math.unit(4.5, "meters")
  3634. },
  3635. {
  3636. name: "Macro",
  3637. height: math.unit(1250, "meters"),
  3638. default: true
  3639. },
  3640. {
  3641. name: "Megamacro",
  3642. height: math.unit(125, "km")
  3643. },
  3644. {
  3645. name: "Gigamacro",
  3646. height: math.unit(26000, "km")
  3647. }
  3648. ]
  3649. ))
  3650. characterMakers.push(() => makeCharacter(
  3651. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3652. {
  3653. front: {
  3654. height: math.unit(6, "feet"),
  3655. weight: math.unit(180, "lb"),
  3656. name: "Front",
  3657. image: {
  3658. source: "./media/characters/yakuz/front.svg"
  3659. }
  3660. }
  3661. },
  3662. [
  3663. {
  3664. name: "Small",
  3665. height: math.unit(5, "meters")
  3666. },
  3667. {
  3668. name: "Macro",
  3669. height: math.unit(1500, "meters"),
  3670. default: true
  3671. },
  3672. {
  3673. name: "Megamacro",
  3674. height: math.unit(200, "km")
  3675. },
  3676. {
  3677. name: "Gigamacro",
  3678. height: math.unit(100000, "km")
  3679. }
  3680. ]
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3684. {
  3685. front: {
  3686. height: math.unit(6, "feet"),
  3687. weight: math.unit(175, "lb"),
  3688. name: "Front",
  3689. image: {
  3690. source: "./media/characters/mirova/front.svg",
  3691. extra: 3334 / 3071,
  3692. bottom: 42 / 3375.6
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Small",
  3699. height: math.unit(5, "meters")
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(900, "meters"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(135, "km")
  3709. },
  3710. {
  3711. name: "Gigamacro",
  3712. height: math.unit(20000, "km")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3718. {
  3719. side: {
  3720. height: math.unit(28.35, "feet"),
  3721. weight: math.unit(99.75, "tons"),
  3722. name: "Side",
  3723. image: {
  3724. source: "./media/characters/asana-mech/side.svg",
  3725. extra: 923 / 699,
  3726. bottom: 50 / 975
  3727. }
  3728. },
  3729. chaingun: {
  3730. height: math.unit(7, "feet"),
  3731. weight: math.unit(2400, "lb"),
  3732. name: "Chaingun",
  3733. image: {
  3734. source: "./media/characters/asana-mech/chaingun.svg"
  3735. }
  3736. },
  3737. laser: {
  3738. height: math.unit(7.12, "feet"),
  3739. weight: math.unit(2000, "lb"),
  3740. name: "Laser",
  3741. image: {
  3742. source: "./media/characters/asana-mech/laser.svg"
  3743. }
  3744. },
  3745. },
  3746. [
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(28.35, "feet"),
  3750. default: true
  3751. },
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(2500, "feet")
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(25, "miles")
  3759. },
  3760. {
  3761. name: "Examacro",
  3762. height: math.unit(6e8, "lightyears")
  3763. },
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3768. {
  3769. front: {
  3770. height: math.unit(5, "meters"),
  3771. weight: math.unit(1000, "kg"),
  3772. name: "Front",
  3773. image: {
  3774. source: "./media/characters/asche/front.svg",
  3775. extra: 1258 / 1190,
  3776. bottom: 47 / 1305
  3777. }
  3778. },
  3779. frontUnderwear: {
  3780. height: math.unit(5, "meters"),
  3781. weight: math.unit(1000, "kg"),
  3782. name: "Front (Underwear)",
  3783. image: {
  3784. source: "./media/characters/asche/front-underwear.svg",
  3785. extra: 1258 / 1190,
  3786. bottom: 47 / 1305
  3787. }
  3788. },
  3789. frontDressed: {
  3790. height: math.unit(5, "meters"),
  3791. weight: math.unit(1000, "kg"),
  3792. name: "Front (Dressed)",
  3793. image: {
  3794. source: "./media/characters/asche/front-dressed.svg",
  3795. extra: 1258 / 1190,
  3796. bottom: 47 / 1305
  3797. }
  3798. },
  3799. frontArmor: {
  3800. height: math.unit(5, "meters"),
  3801. weight: math.unit(1000, "kg"),
  3802. name: "Front (Armored)",
  3803. image: {
  3804. source: "./media/characters/asche/front-armored.svg",
  3805. extra: 1374 / 1308,
  3806. bottom: 23 / 1397
  3807. }
  3808. },
  3809. mp724: {
  3810. height: math.unit(0.96, "meters"),
  3811. weight: math.unit(38, "kg"),
  3812. name: "H&K MP724",
  3813. image: {
  3814. source: "./media/characters/asche/h&k-mp724.svg"
  3815. }
  3816. },
  3817. side: {
  3818. height: math.unit(5, "meters"),
  3819. weight: math.unit(1000, "kg"),
  3820. name: "Side",
  3821. image: {
  3822. source: "./media/characters/asche/side.svg",
  3823. extra: 1717 / 1609,
  3824. bottom: 0.005
  3825. }
  3826. },
  3827. back: {
  3828. height: math.unit(5, "meters"),
  3829. weight: math.unit(1000, "kg"),
  3830. name: "Back",
  3831. image: {
  3832. source: "./media/characters/asche/back.svg",
  3833. extra: 1570 / 1501
  3834. }
  3835. },
  3836. },
  3837. [
  3838. {
  3839. name: "DEFCON 5",
  3840. height: math.unit(5, "meters")
  3841. },
  3842. {
  3843. name: "DEFCON 4",
  3844. height: math.unit(500, "meters"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "DEFCON 3",
  3849. height: math.unit(5, "km")
  3850. },
  3851. {
  3852. name: "DEFCON 2",
  3853. height: math.unit(500, "km")
  3854. },
  3855. {
  3856. name: "DEFCON 1",
  3857. height: math.unit(500000, "km")
  3858. },
  3859. {
  3860. name: "DEFCON 0",
  3861. height: math.unit(3, "gigaparsecs")
  3862. },
  3863. ]
  3864. ))
  3865. characterMakers.push(() => makeCharacter(
  3866. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3867. {
  3868. front: {
  3869. height: math.unit(2, "meters"),
  3870. weight: math.unit(76, "kg"),
  3871. name: "Front",
  3872. image: {
  3873. source: "./media/characters/gale/front.svg"
  3874. }
  3875. },
  3876. frontAlt1: {
  3877. height: math.unit(2, "meters"),
  3878. weight: math.unit(76, "kg"),
  3879. name: "Front (Alt 1)",
  3880. image: {
  3881. source: "./media/characters/gale/front-alt-1.svg"
  3882. }
  3883. },
  3884. frontAlt2: {
  3885. height: math.unit(2, "meters"),
  3886. weight: math.unit(76, "kg"),
  3887. name: "Front (Alt 2)",
  3888. image: {
  3889. source: "./media/characters/gale/front-alt-2.svg"
  3890. }
  3891. },
  3892. },
  3893. [
  3894. {
  3895. name: "Normal",
  3896. height: math.unit(7, "feet")
  3897. },
  3898. {
  3899. name: "Macro",
  3900. height: math.unit(150, "feet"),
  3901. default: true
  3902. },
  3903. {
  3904. name: "Macro+",
  3905. height: math.unit(300, "feet")
  3906. },
  3907. ]
  3908. ))
  3909. characterMakers.push(() => makeCharacter(
  3910. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3911. {
  3912. front: {
  3913. height: math.unit(2, "meters"),
  3914. weight: math.unit(76, "kg"),
  3915. name: "Front",
  3916. image: {
  3917. source: "./media/characters/draylen/front.svg"
  3918. }
  3919. }
  3920. },
  3921. [
  3922. {
  3923. name: "Macro",
  3924. height: math.unit(150, "feet"),
  3925. default: true
  3926. }
  3927. ]
  3928. ))
  3929. characterMakers.push(() => makeCharacter(
  3930. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3931. {
  3932. front: {
  3933. height: math.unit(7 + 9 / 12, "feet"),
  3934. weight: math.unit(379, "lbs"),
  3935. name: "Front",
  3936. image: {
  3937. source: "./media/characters/chez/front.svg"
  3938. }
  3939. },
  3940. side: {
  3941. height: math.unit(7 + 9 / 12, "feet"),
  3942. weight: math.unit(379, "lbs"),
  3943. name: "Side",
  3944. image: {
  3945. source: "./media/characters/chez/side.svg"
  3946. }
  3947. }
  3948. },
  3949. [
  3950. {
  3951. name: "Normal",
  3952. height: math.unit(7 + 9 / 12, "feet"),
  3953. default: true
  3954. },
  3955. {
  3956. name: "God King",
  3957. height: math.unit(9750000, "meters")
  3958. }
  3959. ]
  3960. ))
  3961. characterMakers.push(() => makeCharacter(
  3962. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3963. {
  3964. front: {
  3965. height: math.unit(6, "feet"),
  3966. weight: math.unit(275, "lbs"),
  3967. name: "Front",
  3968. image: {
  3969. source: "./media/characters/kaylum/front.svg",
  3970. bottom: 0.01,
  3971. extra: 1166 / 1031
  3972. }
  3973. },
  3974. frontWingless: {
  3975. height: math.unit(6, "feet"),
  3976. weight: math.unit(275, "lbs"),
  3977. name: "Front (Wingless)",
  3978. image: {
  3979. source: "./media/characters/kaylum/front-wingless.svg",
  3980. bottom: 0.01,
  3981. extra: 1117 / 1031
  3982. }
  3983. }
  3984. },
  3985. [
  3986. {
  3987. name: "Normal",
  3988. height: math.unit(3.05, "meters")
  3989. },
  3990. {
  3991. name: "Master",
  3992. height: math.unit(5.5, "meters")
  3993. },
  3994. {
  3995. name: "Rampage",
  3996. height: math.unit(19, "meters")
  3997. },
  3998. {
  3999. name: "Macro Lite",
  4000. height: math.unit(37, "meters")
  4001. },
  4002. {
  4003. name: "Hyper Predator",
  4004. height: math.unit(61, "meters")
  4005. },
  4006. {
  4007. name: "Macro",
  4008. height: math.unit(138, "meters"),
  4009. default: true
  4010. }
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4015. {
  4016. front: {
  4017. height: math.unit(6, "feet"),
  4018. weight: math.unit(150, "lbs"),
  4019. name: "Front",
  4020. image: {
  4021. source: "./media/characters/geta/front.svg"
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Micro",
  4028. height: math.unit(3, "inches"),
  4029. default: true
  4030. },
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(5 + 5 / 12, "feet")
  4034. }
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(6, "feet"),
  4042. weight: math.unit(300, "lbs"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/tyrnn/front.svg"
  4046. }
  4047. }
  4048. },
  4049. [
  4050. {
  4051. name: "Main Height",
  4052. height: math.unit(355, "feet"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Fave. Height",
  4057. height: math.unit(2400, "feet")
  4058. }
  4059. ]
  4060. ))
  4061. characterMakers.push(() => makeCharacter(
  4062. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4063. {
  4064. front: {
  4065. height: math.unit(6, "feet"),
  4066. weight: math.unit(300, "lbs"),
  4067. name: "Front",
  4068. image: {
  4069. source: "./media/characters/appledectomy/front.svg"
  4070. }
  4071. }
  4072. },
  4073. [
  4074. {
  4075. name: "Macro",
  4076. height: math.unit(2500, "feet")
  4077. },
  4078. {
  4079. name: "Megamacro",
  4080. height: math.unit(50, "miles"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Gigamacro",
  4085. height: math.unit(5000, "miles")
  4086. },
  4087. {
  4088. name: "Teramacro",
  4089. height: math.unit(250000, "miles")
  4090. },
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4095. {
  4096. front: {
  4097. height: math.unit(6, "feet"),
  4098. weight: math.unit(200, "lbs"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/vulpes/front.svg",
  4102. extra: 573 / 543,
  4103. bottom: 0.033
  4104. }
  4105. },
  4106. side: {
  4107. height: math.unit(6, "feet"),
  4108. weight: math.unit(200, "lbs"),
  4109. name: "Side",
  4110. image: {
  4111. source: "./media/characters/vulpes/side.svg",
  4112. extra: 577 / 549,
  4113. bottom: 11 / 588
  4114. }
  4115. },
  4116. back: {
  4117. height: math.unit(6, "feet"),
  4118. weight: math.unit(200, "lbs"),
  4119. name: "Back",
  4120. image: {
  4121. source: "./media/characters/vulpes/back.svg",
  4122. extra: 573 / 549,
  4123. bottom: 20 / 593
  4124. }
  4125. },
  4126. feet: {
  4127. height: math.unit(1.276, "feet"),
  4128. name: "Feet",
  4129. image: {
  4130. source: "./media/characters/vulpes/feet.svg"
  4131. }
  4132. },
  4133. maw: {
  4134. height: math.unit(1.18, "feet"),
  4135. name: "Maw",
  4136. image: {
  4137. source: "./media/characters/vulpes/maw.svg"
  4138. }
  4139. },
  4140. },
  4141. [
  4142. {
  4143. name: "Micro",
  4144. height: math.unit(2, "inches")
  4145. },
  4146. {
  4147. name: "Normal",
  4148. height: math.unit(6.3, "feet")
  4149. },
  4150. {
  4151. name: "Macro",
  4152. height: math.unit(850, "feet")
  4153. },
  4154. {
  4155. name: "Megamacro",
  4156. height: math.unit(7500, "feet"),
  4157. default: true
  4158. },
  4159. {
  4160. name: "Gigamacro",
  4161. height: math.unit(570000, "miles")
  4162. }
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4167. {
  4168. front: {
  4169. height: math.unit(6, "feet"),
  4170. weight: math.unit(210, "lbs"),
  4171. name: "Front",
  4172. image: {
  4173. source: "./media/characters/rain-fallen/front.svg"
  4174. }
  4175. },
  4176. side: {
  4177. height: math.unit(6, "feet"),
  4178. weight: math.unit(210, "lbs"),
  4179. name: "Side",
  4180. image: {
  4181. source: "./media/characters/rain-fallen/side.svg"
  4182. }
  4183. },
  4184. back: {
  4185. height: math.unit(6, "feet"),
  4186. weight: math.unit(210, "lbs"),
  4187. name: "Back",
  4188. image: {
  4189. source: "./media/characters/rain-fallen/back.svg"
  4190. }
  4191. },
  4192. feral: {
  4193. height: math.unit(9, "feet"),
  4194. weight: math.unit(700, "lbs"),
  4195. name: "Feral",
  4196. image: {
  4197. source: "./media/characters/rain-fallen/feral.svg"
  4198. }
  4199. },
  4200. },
  4201. [
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(5, "meter")
  4205. },
  4206. {
  4207. name: "Macro",
  4208. height: math.unit(150, "meter"),
  4209. default: true
  4210. },
  4211. {
  4212. name: "Megamacro",
  4213. height: math.unit(278e6, "meter")
  4214. },
  4215. {
  4216. name: "Gigamacro",
  4217. height: math.unit(2e9, "meter")
  4218. },
  4219. {
  4220. name: "Teramacro",
  4221. height: math.unit(8e12, "meter")
  4222. },
  4223. {
  4224. name: "Devourer",
  4225. height: math.unit(14, "zettameters")
  4226. },
  4227. {
  4228. name: "Scarlet King",
  4229. height: math.unit(18, "yottameters")
  4230. },
  4231. {
  4232. name: "Void",
  4233. height: math.unit(6.66e66, "yottameters")
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4239. {
  4240. standing: {
  4241. height: math.unit(6, "feet"),
  4242. weight: math.unit(180, "lbs"),
  4243. name: "Standing",
  4244. image: {
  4245. source: "./media/characters/zaakira/standing.svg"
  4246. }
  4247. },
  4248. laying: {
  4249. height: math.unit(3, "feet"),
  4250. weight: math.unit(180, "lbs"),
  4251. name: "Laying",
  4252. image: {
  4253. source: "./media/characters/zaakira/laying.svg"
  4254. }
  4255. },
  4256. },
  4257. [
  4258. {
  4259. name: "Normal",
  4260. height: math.unit(12, "feet")
  4261. },
  4262. {
  4263. name: "Macro",
  4264. height: math.unit(279, "feet"),
  4265. default: true
  4266. }
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4271. {
  4272. femSfw: {
  4273. height: math.unit(8, "feet"),
  4274. weight: math.unit(350, "lb"),
  4275. name: "Fem",
  4276. image: {
  4277. source: "./media/characters/sigvald/fem-sfw.svg",
  4278. extra: 182 / 164,
  4279. bottom: 8.7 / 190.5
  4280. }
  4281. },
  4282. femNsfw: {
  4283. height: math.unit(8, "feet"),
  4284. weight: math.unit(350, "lb"),
  4285. name: "Fem (NSFW)",
  4286. image: {
  4287. source: "./media/characters/sigvald/fem-nsfw.svg",
  4288. extra: 182 / 164,
  4289. bottom: 8.7 / 190.5
  4290. }
  4291. },
  4292. maleNsfw: {
  4293. height: math.unit(8, "feet"),
  4294. weight: math.unit(350, "lb"),
  4295. name: "Male (NSFW)",
  4296. image: {
  4297. source: "./media/characters/sigvald/male-nsfw.svg",
  4298. extra: 182 / 164,
  4299. bottom: 8.7 / 190.5
  4300. }
  4301. },
  4302. hermNsfw: {
  4303. height: math.unit(8, "feet"),
  4304. weight: math.unit(350, "lb"),
  4305. name: "Herm (NSFW)",
  4306. image: {
  4307. source: "./media/characters/sigvald/herm-nsfw.svg",
  4308. extra: 182 / 164,
  4309. bottom: 8.7 / 190.5
  4310. }
  4311. },
  4312. dick: {
  4313. height: math.unit(2.36, "feet"),
  4314. name: "Dick",
  4315. image: {
  4316. source: "./media/characters/sigvald/dick.svg"
  4317. }
  4318. },
  4319. eye: {
  4320. height: math.unit(0.31, "feet"),
  4321. name: "Eye",
  4322. image: {
  4323. source: "./media/characters/sigvald/eye.svg"
  4324. }
  4325. },
  4326. mouth: {
  4327. height: math.unit(0.92, "feet"),
  4328. name: "Mouth",
  4329. image: {
  4330. source: "./media/characters/sigvald/mouth.svg"
  4331. }
  4332. },
  4333. paws: {
  4334. height: math.unit(2.2, "feet"),
  4335. name: "Paws",
  4336. image: {
  4337. source: "./media/characters/sigvald/paws.svg"
  4338. }
  4339. }
  4340. },
  4341. [
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(8, "feet")
  4345. },
  4346. {
  4347. name: "Large",
  4348. height: math.unit(12, "feet")
  4349. },
  4350. {
  4351. name: "Larger",
  4352. height: math.unit(20, "feet")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(150, "feet")
  4357. },
  4358. {
  4359. name: "Macro+",
  4360. height: math.unit(200, "feet"),
  4361. default: true
  4362. },
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4367. {
  4368. side: {
  4369. height: math.unit(12, "feet"),
  4370. weight: math.unit(2000, "kg"),
  4371. name: "Side",
  4372. image: {
  4373. source: "./media/characters/scott/side.svg",
  4374. extra: 754 / 724,
  4375. bottom: 0.069
  4376. }
  4377. },
  4378. upright: {
  4379. height: math.unit(12, "feet"),
  4380. weight: math.unit(2000, "kg"),
  4381. name: "Upright",
  4382. image: {
  4383. source: "./media/characters/scott/upright.svg",
  4384. extra: 3881 / 3722,
  4385. bottom: 0.05
  4386. }
  4387. },
  4388. },
  4389. [
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(12, "feet"),
  4393. default: true
  4394. },
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4399. {
  4400. side: {
  4401. height: math.unit(8, "meters"),
  4402. weight: math.unit(84755, "lbs"),
  4403. name: "Side",
  4404. image: {
  4405. source: "./media/characters/tobias/side.svg",
  4406. extra: 1474 / 1096,
  4407. bottom: 38.9 / 1513.1235
  4408. }
  4409. },
  4410. },
  4411. [
  4412. {
  4413. name: "Normal",
  4414. height: math.unit(8, "meters"),
  4415. default: true
  4416. },
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4421. {
  4422. front: {
  4423. height: math.unit(5.5, "feet"),
  4424. weight: math.unit(400, "lbs"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/kieran/front.svg",
  4428. extra: 2694 / 2364,
  4429. bottom: 217 / 2908
  4430. }
  4431. },
  4432. side: {
  4433. height: math.unit(5.5, "feet"),
  4434. weight: math.unit(400, "lbs"),
  4435. name: "Side",
  4436. image: {
  4437. source: "./media/characters/kieran/side.svg",
  4438. extra: 875 / 777,
  4439. bottom: 84.6 / 959
  4440. }
  4441. },
  4442. },
  4443. [
  4444. {
  4445. name: "Normal",
  4446. height: math.unit(5.5, "feet"),
  4447. default: true
  4448. },
  4449. ]
  4450. ))
  4451. characterMakers.push(() => makeCharacter(
  4452. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4453. {
  4454. side: {
  4455. height: math.unit(2, "meters"),
  4456. weight: math.unit(70, "kg"),
  4457. name: "Side",
  4458. image: {
  4459. source: "./media/characters/sanya/side.svg",
  4460. bottom: 0.02,
  4461. extra: 1.02
  4462. }
  4463. },
  4464. },
  4465. [
  4466. {
  4467. name: "Small",
  4468. height: math.unit(2, "meters")
  4469. },
  4470. {
  4471. name: "Normal",
  4472. height: math.unit(3, "meters")
  4473. },
  4474. {
  4475. name: "Macro",
  4476. height: math.unit(16, "meters"),
  4477. default: true
  4478. },
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4483. {
  4484. front: {
  4485. height: math.unit(2, "meters"),
  4486. weight: math.unit(120, "kg"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/miranda/front.svg",
  4490. extra: 195 / 185,
  4491. bottom: 10.9 / 206.5
  4492. }
  4493. },
  4494. back: {
  4495. height: math.unit(2, "meters"),
  4496. weight: math.unit(120, "kg"),
  4497. name: "Back",
  4498. image: {
  4499. source: "./media/characters/miranda/back.svg",
  4500. extra: 201 / 193,
  4501. bottom: 2.3 / 203.7
  4502. }
  4503. },
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(10, "feet"),
  4509. default: true
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "James", species: ["deer"], tags: ["anthro"] },
  4515. {
  4516. side: {
  4517. height: math.unit(2, "meters"),
  4518. weight: math.unit(100, "kg"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/james/front.svg",
  4522. extra: 10 / 8.5
  4523. }
  4524. },
  4525. },
  4526. [
  4527. {
  4528. name: "Normal",
  4529. height: math.unit(8.5, "feet"),
  4530. default: true
  4531. }
  4532. ]
  4533. ))
  4534. characterMakers.push(() => makeCharacter(
  4535. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4536. {
  4537. side: {
  4538. height: math.unit(9.5, "feet"),
  4539. weight: math.unit(2500, "lbs"),
  4540. name: "Side",
  4541. image: {
  4542. source: "./media/characters/heather/side.svg"
  4543. }
  4544. },
  4545. },
  4546. [
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(9.5, "feet"),
  4550. default: true
  4551. }
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4556. {
  4557. side: {
  4558. height: math.unit(6.5, "feet"),
  4559. weight: math.unit(400, "lbs"),
  4560. name: "Side",
  4561. image: {
  4562. source: "./media/characters/lukas/side.svg",
  4563. extra: 7.25 / 6.5
  4564. }
  4565. },
  4566. },
  4567. [
  4568. {
  4569. name: "Normal",
  4570. height: math.unit(6.5, "feet"),
  4571. default: true
  4572. }
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4577. {
  4578. side: {
  4579. height: math.unit(5, "feet"),
  4580. weight: math.unit(3000, "lbs"),
  4581. name: "Side",
  4582. image: {
  4583. source: "./media/characters/louise/side.svg"
  4584. }
  4585. },
  4586. },
  4587. [
  4588. {
  4589. name: "Normal",
  4590. height: math.unit(5, "feet"),
  4591. default: true
  4592. }
  4593. ]
  4594. ))
  4595. characterMakers.push(() => makeCharacter(
  4596. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4597. {
  4598. side: {
  4599. height: math.unit(6, "feet"),
  4600. weight: math.unit(150, "lbs"),
  4601. name: "Side",
  4602. image: {
  4603. source: "./media/characters/ramona/side.svg"
  4604. }
  4605. },
  4606. },
  4607. [
  4608. {
  4609. name: "Normal",
  4610. height: math.unit(5.3, "meters"),
  4611. default: true
  4612. },
  4613. {
  4614. name: "Macro",
  4615. height: math.unit(20, "stories")
  4616. },
  4617. {
  4618. name: "Macro+",
  4619. height: math.unit(50, "stories")
  4620. },
  4621. ]
  4622. ))
  4623. characterMakers.push(() => makeCharacter(
  4624. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4625. {
  4626. standing: {
  4627. height: math.unit(5.75, "feet"),
  4628. weight: math.unit(160, "lbs"),
  4629. name: "Standing",
  4630. image: {
  4631. source: "./media/characters/deerpuff/standing.svg",
  4632. extra: 682 / 624
  4633. }
  4634. },
  4635. sitting: {
  4636. height: math.unit(5.75 / 1.79, "feet"),
  4637. weight: math.unit(160, "lbs"),
  4638. name: "Sitting",
  4639. image: {
  4640. source: "./media/characters/deerpuff/sitting.svg",
  4641. bottom: 44 / 400,
  4642. extra: 1
  4643. }
  4644. },
  4645. taurLaying: {
  4646. height: math.unit(6, "feet"),
  4647. weight: math.unit(400, "lbs"),
  4648. name: "Taur (Laying)",
  4649. image: {
  4650. source: "./media/characters/deerpuff/taur-laying.svg"
  4651. }
  4652. },
  4653. },
  4654. [
  4655. {
  4656. name: "Puffball",
  4657. height: math.unit(6, "inches")
  4658. },
  4659. {
  4660. name: "Normalpuff",
  4661. height: math.unit(5.75, "feet")
  4662. },
  4663. {
  4664. name: "Macropuff",
  4665. height: math.unit(1500, "feet"),
  4666. default: true
  4667. },
  4668. {
  4669. name: "Megapuff",
  4670. height: math.unit(500, "miles")
  4671. },
  4672. {
  4673. name: "Gigapuff",
  4674. height: math.unit(250000, "miles")
  4675. },
  4676. {
  4677. name: "Omegapuff",
  4678. height: math.unit(1000, "lightyears")
  4679. },
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4684. {
  4685. stomping: {
  4686. height: math.unit(6, "feet"),
  4687. weight: math.unit(170, "lbs"),
  4688. name: "Stomping",
  4689. image: {
  4690. source: "./media/characters/vivian/stomping.svg"
  4691. }
  4692. },
  4693. sitting: {
  4694. height: math.unit(6 / 1.75, "feet"),
  4695. weight: math.unit(170, "lbs"),
  4696. name: "Sitting",
  4697. image: {
  4698. source: "./media/characters/vivian/sitting.svg",
  4699. bottom: 1 / 6.4,
  4700. extra: 1,
  4701. }
  4702. },
  4703. },
  4704. [
  4705. {
  4706. name: "Normal",
  4707. height: math.unit(7, "feet"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(10, "stories")
  4713. },
  4714. {
  4715. name: "Macro+",
  4716. height: math.unit(30, "stories")
  4717. },
  4718. {
  4719. name: "Megamacro",
  4720. height: math.unit(10, "miles")
  4721. },
  4722. {
  4723. name: "Megamacro+",
  4724. height: math.unit(2750000, "meters")
  4725. },
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4730. {
  4731. front: {
  4732. height: math.unit(6, "feet"),
  4733. weight: math.unit(160, "lbs"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/prince/front.svg",
  4737. extra: 3400 / 3000
  4738. }
  4739. },
  4740. jumping: {
  4741. height: math.unit(6, "feet"),
  4742. weight: math.unit(160, "lbs"),
  4743. name: "Jumping",
  4744. image: {
  4745. source: "./media/characters/prince/jump.svg",
  4746. extra: 2555 / 2134
  4747. }
  4748. },
  4749. },
  4750. [
  4751. {
  4752. name: "Normal",
  4753. height: math.unit(7.75, "feet"),
  4754. default: true
  4755. },
  4756. {
  4757. name: "Not cute",
  4758. height: math.unit(17, "feet")
  4759. },
  4760. {
  4761. name: "I said NOT",
  4762. height: math.unit(91, "feet")
  4763. },
  4764. {
  4765. name: "Please stop",
  4766. height: math.unit(560, "feet")
  4767. },
  4768. {
  4769. name: "What have you done",
  4770. height: math.unit(2200, "feet")
  4771. },
  4772. {
  4773. name: "Deer God",
  4774. height: math.unit(3.6, "miles")
  4775. },
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4780. {
  4781. standing: {
  4782. height: math.unit(6, "feet"),
  4783. weight: math.unit(300, "lbs"),
  4784. name: "Standing",
  4785. image: {
  4786. source: "./media/characters/psymon/standing.svg",
  4787. extra: 1888 / 1810,
  4788. bottom: 0.05
  4789. }
  4790. },
  4791. slithering: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(300, "lbs"),
  4794. name: "Slithering",
  4795. image: {
  4796. source: "./media/characters/psymon/slithering.svg",
  4797. extra: 1330 / 1224
  4798. }
  4799. },
  4800. slitheringAlt: {
  4801. height: math.unit(6, "feet"),
  4802. weight: math.unit(300, "lbs"),
  4803. name: "Slithering (Alt)",
  4804. image: {
  4805. source: "./media/characters/psymon/slithering-alt.svg",
  4806. extra: 1330 / 1224
  4807. }
  4808. },
  4809. },
  4810. [
  4811. {
  4812. name: "Normal",
  4813. height: math.unit(11.25, "feet"),
  4814. default: true
  4815. },
  4816. {
  4817. name: "Large",
  4818. height: math.unit(27, "feet")
  4819. },
  4820. {
  4821. name: "Giant",
  4822. height: math.unit(87, "feet")
  4823. },
  4824. {
  4825. name: "Macro",
  4826. height: math.unit(365, "feet")
  4827. },
  4828. {
  4829. name: "Megamacro",
  4830. height: math.unit(3, "miles")
  4831. },
  4832. {
  4833. name: "World Serpent",
  4834. height: math.unit(8000, "miles")
  4835. },
  4836. ]
  4837. ))
  4838. characterMakers.push(() => makeCharacter(
  4839. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4840. {
  4841. front: {
  4842. height: math.unit(6, "feet"),
  4843. weight: math.unit(180, "lbs"),
  4844. name: "Front",
  4845. image: {
  4846. source: "./media/characters/daimos/front.svg",
  4847. extra: 4160 / 3897,
  4848. bottom: 0.021
  4849. }
  4850. }
  4851. },
  4852. [
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(8, "feet"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Big Dog",
  4860. height: math.unit(22, "feet")
  4861. },
  4862. {
  4863. name: "Macro",
  4864. height: math.unit(127, "feet")
  4865. },
  4866. {
  4867. name: "Megamacro",
  4868. height: math.unit(3600, "feet")
  4869. },
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4874. {
  4875. side: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(180, "lbs"),
  4878. name: "Side",
  4879. image: {
  4880. source: "./media/characters/blake/side.svg",
  4881. extra: 1212 / 1120,
  4882. bottom: 0.05
  4883. }
  4884. },
  4885. crouched: {
  4886. height: math.unit(6 * 0.57, "feet"),
  4887. weight: math.unit(180, "lbs"),
  4888. name: "Crouched",
  4889. image: {
  4890. source: "./media/characters/blake/crouched.svg",
  4891. extra: 840 / 587,
  4892. bottom: 0.04
  4893. }
  4894. },
  4895. bent: {
  4896. height: math.unit(6 * 0.75, "feet"),
  4897. weight: math.unit(180, "lbs"),
  4898. name: "Bent",
  4899. image: {
  4900. source: "./media/characters/blake/bent.svg",
  4901. extra: 592 / 544,
  4902. bottom: 0.035
  4903. }
  4904. },
  4905. },
  4906. [
  4907. {
  4908. name: "Normal",
  4909. height: math.unit(8 + 1 / 6, "feet"),
  4910. default: true
  4911. },
  4912. {
  4913. name: "Big Backside",
  4914. height: math.unit(37, "feet")
  4915. },
  4916. {
  4917. name: "Subway Shredder",
  4918. height: math.unit(72, "feet")
  4919. },
  4920. {
  4921. name: "City Carver",
  4922. height: math.unit(1675, "feet")
  4923. },
  4924. {
  4925. name: "Tectonic Tweaker",
  4926. height: math.unit(2300, "miles")
  4927. },
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4932. {
  4933. front: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(180, "lbs"),
  4936. name: "Front",
  4937. image: {
  4938. source: "./media/characters/guisetto/front.svg",
  4939. extra: 856 / 817,
  4940. bottom: 0.06
  4941. }
  4942. },
  4943. airborne: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(180, "lbs"),
  4946. name: "Airborne",
  4947. image: {
  4948. source: "./media/characters/guisetto/airborne.svg",
  4949. extra: 584 / 525
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(10 + 11 / 12, "feet"),
  4957. default: true
  4958. },
  4959. {
  4960. name: "Large",
  4961. height: math.unit(35, "feet")
  4962. },
  4963. {
  4964. name: "Macro",
  4965. height: math.unit(475, "feet")
  4966. },
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4971. {
  4972. front: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(180, "lbs"),
  4975. name: "Front",
  4976. image: {
  4977. source: "./media/characters/luxor/front.svg",
  4978. extra: 2940 / 2152
  4979. }
  4980. },
  4981. back: {
  4982. height: math.unit(6, "feet"),
  4983. weight: math.unit(180, "lbs"),
  4984. name: "Back",
  4985. image: {
  4986. source: "./media/characters/luxor/back.svg",
  4987. extra: 1083 / 960
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(5 + 5 / 6, "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Lamp",
  4999. height: math.unit(50, "feet")
  5000. },
  5001. {
  5002. name: "Lämp",
  5003. height: math.unit(300, "feet")
  5004. },
  5005. {
  5006. name: "The sun is a lamp",
  5007. height: math.unit(250000, "miles")
  5008. },
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5013. {
  5014. front: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(50, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/huoyan/front.svg"
  5020. }
  5021. },
  5022. side: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(180, "lbs"),
  5025. name: "Side",
  5026. image: {
  5027. source: "./media/characters/huoyan/side.svg"
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Chef",
  5034. height: math.unit(9, "feet")
  5035. },
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(65, "feet"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Macro",
  5043. height: math.unit(780, "feet")
  5044. },
  5045. {
  5046. name: "Flaming Mountain",
  5047. height: math.unit(4.8, "miles")
  5048. },
  5049. {
  5050. name: "Celestial",
  5051. height: math.unit(765000, "miles")
  5052. },
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5057. {
  5058. front: {
  5059. height: math.unit(5 + 3 / 4, "feet"),
  5060. weight: math.unit(120, "lbs"),
  5061. name: "Front",
  5062. image: {
  5063. source: "./media/characters/tails/front.svg"
  5064. }
  5065. }
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(5 + 3 / 4, "feet"),
  5071. default: true
  5072. }
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(4, "feet"),
  5080. weight: math.unit(50, "lbs"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/rainy/front.svg"
  5084. }
  5085. }
  5086. },
  5087. [
  5088. {
  5089. name: "Macro",
  5090. height: math.unit(800, "feet"),
  5091. default: true
  5092. }
  5093. ]
  5094. ))
  5095. characterMakers.push(() => makeCharacter(
  5096. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5097. {
  5098. front: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(150, "lbs"),
  5101. name: "Front",
  5102. image: {
  5103. source: "./media/characters/rainier/front.svg"
  5104. }
  5105. }
  5106. },
  5107. [
  5108. {
  5109. name: "Micro",
  5110. height: math.unit(2, "mm"),
  5111. default: true
  5112. }
  5113. ]
  5114. ))
  5115. characterMakers.push(() => makeCharacter(
  5116. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5117. {
  5118. front: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(180, "lbs"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/andy/front.svg"
  5124. }
  5125. }
  5126. },
  5127. [
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(8, "feet"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Macro",
  5135. height: math.unit(1000, "feet")
  5136. },
  5137. {
  5138. name: "Megamacro",
  5139. height: math.unit(5, "miles")
  5140. },
  5141. {
  5142. name: "Gigamacro",
  5143. height: math.unit(5000, "miles")
  5144. },
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(210, "lbs"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/cimmaron/front-sfw.svg",
  5156. extra: 701 / 676,
  5157. bottom: 0.046
  5158. }
  5159. },
  5160. back: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(210, "lbs"),
  5163. name: "Back",
  5164. image: {
  5165. source: "./media/characters/cimmaron/back-sfw.svg",
  5166. extra: 701 / 676,
  5167. bottom: 0.046
  5168. }
  5169. },
  5170. frontNsfw: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(210, "lbs"),
  5173. name: "Front (NSFW)",
  5174. image: {
  5175. source: "./media/characters/cimmaron/front-nsfw.svg",
  5176. extra: 701 / 676,
  5177. bottom: 0.046
  5178. }
  5179. },
  5180. backNsfw: {
  5181. height: math.unit(6, "feet"),
  5182. weight: math.unit(210, "lbs"),
  5183. name: "Back (NSFW)",
  5184. image: {
  5185. source: "./media/characters/cimmaron/back-nsfw.svg",
  5186. extra: 701 / 676,
  5187. bottom: 0.046
  5188. }
  5189. },
  5190. dick: {
  5191. height: math.unit(1.714, "feet"),
  5192. name: "Dick",
  5193. image: {
  5194. source: "./media/characters/cimmaron/dick.svg"
  5195. }
  5196. },
  5197. },
  5198. [
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(6, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Macro Mayor",
  5206. height: math.unit(350, "meters")
  5207. },
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5212. {
  5213. front: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(200, "lbs"),
  5216. name: "Front",
  5217. image: {
  5218. source: "./media/characters/akari/front.svg",
  5219. extra: 962 / 901,
  5220. bottom: 0.04
  5221. }
  5222. }
  5223. },
  5224. [
  5225. {
  5226. name: "Micro",
  5227. height: math.unit(5, "inches"),
  5228. default: true
  5229. },
  5230. {
  5231. name: "Normal",
  5232. height: math.unit(7, "feet")
  5233. },
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5238. {
  5239. front: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(140, "lbs"),
  5242. name: "Front",
  5243. image: {
  5244. source: "./media/characters/cynosura/front.svg",
  5245. extra: 896 / 847
  5246. }
  5247. },
  5248. back: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(140, "lbs"),
  5251. name: "Back",
  5252. image: {
  5253. source: "./media/characters/cynosura/back.svg",
  5254. extra: 1365 / 1250
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Micro",
  5261. height: math.unit(4, "inches")
  5262. },
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(5.75, "feet"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Tall",
  5270. height: math.unit(10, "feet")
  5271. },
  5272. {
  5273. name: "Big",
  5274. height: math.unit(20, "feet")
  5275. },
  5276. {
  5277. name: "Macro",
  5278. height: math.unit(50, "feet")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(170, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/gin/front.svg",
  5291. extra: 1.053,
  5292. bottom: 0.025
  5293. }
  5294. },
  5295. foot: {
  5296. height: math.unit(6 / 4.25, "feet"),
  5297. name: "Foot",
  5298. image: {
  5299. source: "./media/characters/gin/foot.svg"
  5300. }
  5301. },
  5302. sole: {
  5303. height: math.unit(6 / 4.40, "feet"),
  5304. name: "Sole",
  5305. image: {
  5306. source: "./media/characters/gin/sole.svg"
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(13 + 2 / 12, "feet")
  5314. },
  5315. {
  5316. name: "Macro",
  5317. height: math.unit(1500, "feet")
  5318. },
  5319. {
  5320. name: "Megamacro",
  5321. height: math.unit(200, "miles"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "Gigamacro",
  5326. height: math.unit(500, "megameters")
  5327. },
  5328. {
  5329. name: "Teramacro",
  5330. height: math.unit(15, "lightyears")
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(6 + 1 / 6, "feet"),
  5339. weight: math.unit(178, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/guy/front.svg"
  5343. }
  5344. }
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(6 + 1 / 6, "feet"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Large",
  5354. height: math.unit(25 + 7 / 12, "feet")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(60 + 9 / 12, "feet")
  5359. },
  5360. {
  5361. name: "Macro+",
  5362. height: math.unit(246, "feet")
  5363. },
  5364. {
  5365. name: "Macro++",
  5366. height: math.unit(878, "feet")
  5367. }
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(9, "feet"),
  5375. weight: math.unit(800, "lbs"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/tiberius/front.svg",
  5379. extra: 2295 / 2071
  5380. }
  5381. },
  5382. back: {
  5383. height: math.unit(9, "feet"),
  5384. weight: math.unit(800, "lbs"),
  5385. name: "Back",
  5386. image: {
  5387. source: "./media/characters/tiberius/back.svg",
  5388. extra: 2373 / 2160
  5389. }
  5390. },
  5391. },
  5392. [
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(9, "feet"),
  5396. default: true
  5397. }
  5398. ]
  5399. ))
  5400. characterMakers.push(() => makeCharacter(
  5401. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5402. {
  5403. front: {
  5404. height: math.unit(6, "feet"),
  5405. weight: math.unit(600, "lbs"),
  5406. name: "Front",
  5407. image: {
  5408. source: "./media/characters/surgo/front.svg",
  5409. extra: 3591 / 2227
  5410. }
  5411. },
  5412. back: {
  5413. height: math.unit(6, "feet"),
  5414. weight: math.unit(600, "lbs"),
  5415. name: "Back",
  5416. image: {
  5417. source: "./media/characters/surgo/back.svg",
  5418. extra: 3557 / 2228
  5419. }
  5420. },
  5421. laying: {
  5422. height: math.unit(6 * 0.85, "feet"),
  5423. weight: math.unit(600, "lbs"),
  5424. name: "Laying",
  5425. image: {
  5426. source: "./media/characters/surgo/laying.svg"
  5427. }
  5428. },
  5429. },
  5430. [
  5431. {
  5432. name: "Normal",
  5433. height: math.unit(6, "feet"),
  5434. default: true
  5435. }
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5440. {
  5441. side: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(150, "lbs"),
  5444. name: "Side",
  5445. image: {
  5446. source: "./media/characters/cibus/side.svg",
  5447. extra: 800 / 400
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(6, "feet"),
  5455. default: true
  5456. }
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5461. {
  5462. front: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(240, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/nibbles/front.svg"
  5468. }
  5469. },
  5470. side: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(240, "lbs"),
  5473. name: "Side",
  5474. image: {
  5475. source: "./media/characters/nibbles/side.svg"
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "Normal",
  5482. height: math.unit(9, "feet"),
  5483. default: true
  5484. }
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5489. {
  5490. side: {
  5491. height: math.unit(5 + 1 / 6, "feet"),
  5492. weight: math.unit(130, "lbs"),
  5493. name: "Side",
  5494. image: {
  5495. source: "./media/characters/rikky/side.svg",
  5496. extra: 851 / 801
  5497. }
  5498. },
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(5 + 1 / 6, "feet")
  5504. },
  5505. {
  5506. name: "Macro",
  5507. height: math.unit(152, "feet"),
  5508. default: true
  5509. },
  5510. {
  5511. name: "Megamacro",
  5512. height: math.unit(7, "miles")
  5513. }
  5514. ]
  5515. ))
  5516. characterMakers.push(() => makeCharacter(
  5517. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5518. {
  5519. side: {
  5520. height: math.unit(370, "cm"),
  5521. weight: math.unit(350, "lbs"),
  5522. name: "Side",
  5523. image: {
  5524. source: "./media/characters/malfressa/side.svg"
  5525. }
  5526. },
  5527. walking: {
  5528. height: math.unit(370, "cm"),
  5529. weight: math.unit(350, "lbs"),
  5530. name: "Walking",
  5531. image: {
  5532. source: "./media/characters/malfressa/walking.svg"
  5533. }
  5534. },
  5535. feral: {
  5536. height: math.unit(2500, "cm"),
  5537. weight: math.unit(100000, "lbs"),
  5538. name: "Feral",
  5539. image: {
  5540. source: "./media/characters/malfressa/feral.svg",
  5541. extra: 2108 / 837,
  5542. bottom: 0.02
  5543. }
  5544. },
  5545. },
  5546. [
  5547. {
  5548. name: "Normal",
  5549. height: math.unit(370, "cm")
  5550. },
  5551. {
  5552. name: "Macro",
  5553. height: math.unit(300, "meters"),
  5554. default: true
  5555. }
  5556. ]
  5557. ))
  5558. characterMakers.push(() => makeCharacter(
  5559. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5560. {
  5561. front: {
  5562. height: math.unit(6, "feet"),
  5563. weight: math.unit(60, "kg"),
  5564. name: "Front",
  5565. image: {
  5566. source: "./media/characters/jaro/front.svg"
  5567. }
  5568. },
  5569. back: {
  5570. height: math.unit(6, "feet"),
  5571. weight: math.unit(60, "kg"),
  5572. name: "Back",
  5573. image: {
  5574. source: "./media/characters/jaro/back.svg"
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "Micro",
  5581. height: math.unit(7, "inches")
  5582. },
  5583. {
  5584. name: "Normal",
  5585. height: math.unit(5.5, "feet"),
  5586. default: true
  5587. },
  5588. {
  5589. name: "Minimacro",
  5590. height: math.unit(20, "feet")
  5591. },
  5592. {
  5593. name: "Macro",
  5594. height: math.unit(200, "meters")
  5595. }
  5596. ]
  5597. ))
  5598. characterMakers.push(() => makeCharacter(
  5599. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5600. {
  5601. front: {
  5602. height: math.unit(6, "feet"),
  5603. weight: math.unit(195, "lb"),
  5604. name: "Front",
  5605. image: {
  5606. source: "./media/characters/rogue/front.svg"
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Macro",
  5613. height: math.unit(90, "feet"),
  5614. default: true
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5620. {
  5621. front: {
  5622. height: math.unit(5 + 8 / 12, "feet"),
  5623. weight: math.unit(140, "lb"),
  5624. name: "Front",
  5625. image: {
  5626. source: "./media/characters/piper/front.svg",
  5627. extra: 3928 / 3681
  5628. }
  5629. },
  5630. },
  5631. [
  5632. {
  5633. name: "Micro",
  5634. height: math.unit(2, "inches")
  5635. },
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(5 + 8 / 12, "feet")
  5639. },
  5640. {
  5641. name: "Macro",
  5642. height: math.unit(250, "feet"),
  5643. default: true
  5644. },
  5645. {
  5646. name: "Megamacro",
  5647. height: math.unit(7, "miles")
  5648. },
  5649. ]
  5650. ))
  5651. characterMakers.push(() => makeCharacter(
  5652. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5653. {
  5654. front: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(220, "lb"),
  5657. name: "Front",
  5658. image: {
  5659. source: "./media/characters/gemini/front.svg"
  5660. }
  5661. },
  5662. back: {
  5663. height: math.unit(6, "feet"),
  5664. weight: math.unit(220, "lb"),
  5665. name: "Back",
  5666. image: {
  5667. source: "./media/characters/gemini/back.svg"
  5668. }
  5669. },
  5670. kneeling: {
  5671. height: math.unit(6 / 1.5, "feet"),
  5672. weight: math.unit(220, "lb"),
  5673. name: "Kneeling",
  5674. image: {
  5675. source: "./media/characters/gemini/kneeling.svg",
  5676. bottom: 0.02
  5677. }
  5678. },
  5679. },
  5680. [
  5681. {
  5682. name: "Macro",
  5683. height: math.unit(300, "meters"),
  5684. default: true
  5685. },
  5686. {
  5687. name: "Megamacro",
  5688. height: math.unit(6900, "meters")
  5689. },
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5694. {
  5695. anthro: {
  5696. height: math.unit(2.35, "meters"),
  5697. weight: math.unit(73, "kg"),
  5698. name: "Anthro",
  5699. image: {
  5700. source: "./media/characters/alicia/anthro.svg",
  5701. extra: 2571 / 2385,
  5702. bottom: 75 / 2648
  5703. }
  5704. },
  5705. paw: {
  5706. height: math.unit(1.32, "feet"),
  5707. name: "Paw",
  5708. image: {
  5709. source: "./media/characters/alicia/paw.svg"
  5710. }
  5711. },
  5712. feral: {
  5713. height: math.unit(1.69, "meters"),
  5714. weight: math.unit(73, "kg"),
  5715. name: "Feral",
  5716. image: {
  5717. source: "./media/characters/alicia/feral.svg",
  5718. extra: 2123 / 1715,
  5719. bottom: 222 / 2349
  5720. }
  5721. },
  5722. },
  5723. [
  5724. {
  5725. name: "Normal",
  5726. height: math.unit(2.35, "meters")
  5727. },
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(60, "meters"),
  5731. default: true
  5732. },
  5733. {
  5734. name: "Megamacro",
  5735. height: math.unit(10000, "kilometers")
  5736. },
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(7, "feet"),
  5744. weight: math.unit(250, "lbs"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/archy/front.svg"
  5748. }
  5749. }
  5750. },
  5751. [
  5752. {
  5753. name: "Micro",
  5754. height: math.unit(1, "inch")
  5755. },
  5756. {
  5757. name: "Shorty",
  5758. height: math.unit(5, "feet")
  5759. },
  5760. {
  5761. name: "Normal",
  5762. height: math.unit(7, "feet")
  5763. },
  5764. {
  5765. name: "Macro",
  5766. height: math.unit(600, "meters"),
  5767. default: true
  5768. },
  5769. {
  5770. name: "Megamacro",
  5771. height: math.unit(1, "mile")
  5772. },
  5773. ]
  5774. ))
  5775. characterMakers.push(() => makeCharacter(
  5776. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5777. {
  5778. front: {
  5779. height: math.unit(1.65, "meters"),
  5780. weight: math.unit(74, "kg"),
  5781. name: "Front",
  5782. image: {
  5783. source: "./media/characters/berri/front.svg",
  5784. extra: 857 / 837,
  5785. bottom: 18 / 877
  5786. }
  5787. },
  5788. bum: {
  5789. height: math.unit(1.46, "feet"),
  5790. name: "Bum",
  5791. image: {
  5792. source: "./media/characters/berri/bum.svg"
  5793. }
  5794. },
  5795. mouth: {
  5796. height: math.unit(0.44, "feet"),
  5797. name: "Mouth",
  5798. image: {
  5799. source: "./media/characters/berri/mouth.svg"
  5800. }
  5801. },
  5802. paw: {
  5803. height: math.unit(0.826, "feet"),
  5804. name: "Paw",
  5805. image: {
  5806. source: "./media/characters/berri/paw.svg"
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Normal",
  5813. height: math.unit(1.65, "meters")
  5814. },
  5815. {
  5816. name: "Macro",
  5817. height: math.unit(60, "m"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Megamacro",
  5822. height: math.unit(9.213, "km")
  5823. },
  5824. {
  5825. name: "Planet Eater",
  5826. height: math.unit(489, "megameters")
  5827. },
  5828. {
  5829. name: "Teramacro",
  5830. height: math.unit(2471635000000, "meters")
  5831. },
  5832. {
  5833. name: "Examacro",
  5834. height: math.unit(8.0624e+26, "meters")
  5835. }
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(1.72, "meters"),
  5843. weight: math.unit(68, "kg"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/lexi/front.svg"
  5847. }
  5848. }
  5849. },
  5850. [
  5851. {
  5852. name: "Very Smol",
  5853. height: math.unit(10, "mm")
  5854. },
  5855. {
  5856. name: "Micro",
  5857. height: math.unit(6.8, "cm"),
  5858. default: true
  5859. },
  5860. {
  5861. name: "Normal",
  5862. height: math.unit(1.72, "m")
  5863. }
  5864. ]
  5865. ))
  5866. characterMakers.push(() => makeCharacter(
  5867. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5868. {
  5869. front: {
  5870. height: math.unit(1.69, "meters"),
  5871. weight: math.unit(68, "kg"),
  5872. name: "Front",
  5873. image: {
  5874. source: "./media/characters/martin/front.svg",
  5875. extra: 596 / 581
  5876. }
  5877. }
  5878. },
  5879. [
  5880. {
  5881. name: "Micro",
  5882. height: math.unit(6.85, "cm"),
  5883. default: true
  5884. },
  5885. {
  5886. name: "Normal",
  5887. height: math.unit(1.69, "m")
  5888. }
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(1.69, "meters"),
  5896. weight: math.unit(68, "kg"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/juno/front.svg"
  5900. }
  5901. }
  5902. },
  5903. [
  5904. {
  5905. name: "Micro",
  5906. height: math.unit(7, "cm")
  5907. },
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(1.89, "m")
  5911. },
  5912. {
  5913. name: "Macro",
  5914. height: math.unit(353, "meters"),
  5915. default: true
  5916. }
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(1.93, "meters"),
  5924. weight: math.unit(83, "kg"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/samantha/front.svg"
  5928. }
  5929. },
  5930. frontClothed: {
  5931. height: math.unit(1.93, "meters"),
  5932. weight: math.unit(83, "kg"),
  5933. name: "Front (Clothed)",
  5934. image: {
  5935. source: "./media/characters/samantha/front-clothed.svg"
  5936. }
  5937. },
  5938. back: {
  5939. height: math.unit(1.93, "meters"),
  5940. weight: math.unit(83, "kg"),
  5941. name: "Back",
  5942. image: {
  5943. source: "./media/characters/samantha/back.svg"
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(1.93, "m")
  5951. },
  5952. {
  5953. name: "Macro",
  5954. height: math.unit(74, "meters"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Macro+",
  5959. height: math.unit(223, "meters"),
  5960. },
  5961. {
  5962. name: "Megamacro",
  5963. height: math.unit(8381, "meters"),
  5964. },
  5965. {
  5966. name: "Megamacro+",
  5967. height: math.unit(12000, "kilometers")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(1.92, "meters"),
  5976. weight: math.unit(80, "kg"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/dr-clay/front.svg"
  5980. }
  5981. },
  5982. frontClothed: {
  5983. height: math.unit(1.92, "meters"),
  5984. weight: math.unit(80, "kg"),
  5985. name: "Front (Clothed)",
  5986. image: {
  5987. source: "./media/characters/dr-clay/front-clothed.svg"
  5988. }
  5989. }
  5990. },
  5991. [
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(1.92, "m")
  5995. },
  5996. {
  5997. name: "Macro",
  5998. height: math.unit(214, "meters"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Macro+",
  6003. height: math.unit(12.237, "meters"),
  6004. },
  6005. {
  6006. name: "Megamacro",
  6007. height: math.unit(557, "megameters"),
  6008. },
  6009. {
  6010. name: "Unimaginable",
  6011. height: math.unit(120e9, "lightyears")
  6012. },
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6017. {
  6018. front: {
  6019. height: math.unit(2, "meters"),
  6020. weight: math.unit(80, "kg"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6024. }
  6025. }
  6026. },
  6027. [
  6028. {
  6029. name: "Teramacro",
  6030. height: math.unit(500000, "lightyears"),
  6031. default: true
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(2, "meters"),
  6040. weight: math.unit(150, "kg"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/vemus/front.svg",
  6044. extra: 2384 / 2084,
  6045. bottom: 0.0123
  6046. }
  6047. }
  6048. },
  6049. [
  6050. {
  6051. name: "Normal",
  6052. height: math.unit(3.75, "meters"),
  6053. default: true
  6054. },
  6055. {
  6056. name: "Big",
  6057. height: math.unit(8, "meters")
  6058. },
  6059. {
  6060. name: "Macro",
  6061. height: math.unit(100, "meters")
  6062. },
  6063. {
  6064. name: "Macro+",
  6065. height: math.unit(1500, "meters")
  6066. },
  6067. {
  6068. name: "Stellar",
  6069. height: math.unit(14e8, "meters")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(2, "meters"),
  6078. weight: math.unit(70, "kg"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/beherit/front.svg",
  6082. extra: 1408 / 1242
  6083. }
  6084. }
  6085. },
  6086. [
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(6, "feet")
  6090. },
  6091. {
  6092. name: "Lorg",
  6093. height: math.unit(25, "feet"),
  6094. default: true
  6095. },
  6096. {
  6097. name: "Lorger",
  6098. height: math.unit(75, "feet")
  6099. },
  6100. {
  6101. name: "Macro",
  6102. height: math.unit(200, "meters")
  6103. },
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(2, "meters"),
  6111. weight: math.unit(150, "kg"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/everett/front.svg",
  6115. extra: 2038 / 1737,
  6116. bottom: 0.03
  6117. }
  6118. },
  6119. paw: {
  6120. height: math.unit(2 / 3.6, "meters"),
  6121. name: "Paw",
  6122. image: {
  6123. source: "./media/characters/everett/paw.svg"
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(15, "feet"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Lorg",
  6135. height: math.unit(70, "feet"),
  6136. default: true
  6137. },
  6138. {
  6139. name: "Lorger",
  6140. height: math.unit(250, "feet")
  6141. },
  6142. {
  6143. name: "Macro",
  6144. height: math.unit(500, "meters")
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6150. {
  6151. front: {
  6152. height: math.unit(2, "meters"),
  6153. weight: math.unit(86, "kg"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/rose-lion/front.svg"
  6157. }
  6158. },
  6159. bent: {
  6160. height: math.unit(2 / 1.4288, "meters"),
  6161. weight: math.unit(86, "kg"),
  6162. name: "Bent",
  6163. image: {
  6164. source: "./media/characters/rose-lion/bent.svg"
  6165. }
  6166. }
  6167. },
  6168. [
  6169. {
  6170. name: "Mini-Micro",
  6171. height: math.unit(1, "cm")
  6172. },
  6173. {
  6174. name: "Micro",
  6175. height: math.unit(3.5, "inches"),
  6176. default: true
  6177. },
  6178. {
  6179. name: "Normal",
  6180. height: math.unit(6 + 1 / 6, "feet")
  6181. },
  6182. {
  6183. name: "Mini-Macro",
  6184. height: math.unit(9 + 10 / 12, "feet")
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(2, "meters"),
  6193. weight: math.unit(350, "lbs"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/regal/front.svg"
  6197. }
  6198. },
  6199. back: {
  6200. height: math.unit(2, "meters"),
  6201. weight: math.unit(350, "lbs"),
  6202. name: "Back",
  6203. image: {
  6204. source: "./media/characters/regal/back.svg"
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Macro",
  6211. height: math.unit(350, "feet"),
  6212. default: true
  6213. }
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6218. {
  6219. front: {
  6220. height: math.unit(4 + 11 / 12, "feet"),
  6221. weight: math.unit(100, "lbs"),
  6222. name: "Front",
  6223. image: {
  6224. source: "./media/characters/opal/front.svg"
  6225. }
  6226. },
  6227. frontAlt: {
  6228. height: math.unit(4 + 11 / 12, "feet"),
  6229. weight: math.unit(100, "lbs"),
  6230. name: "Front (Alt)",
  6231. image: {
  6232. source: "./media/characters/opal/front-alt.svg"
  6233. }
  6234. },
  6235. },
  6236. [
  6237. {
  6238. name: "Small",
  6239. height: math.unit(4 + 11 / 12, "feet")
  6240. },
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(20, "feet"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(120, "feet")
  6249. },
  6250. {
  6251. name: "Megamacro",
  6252. height: math.unit(80, "miles")
  6253. },
  6254. {
  6255. name: "True Size",
  6256. height: math.unit(100000, "lightyears")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(200, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/vector-wuff/front.svg"
  6269. }
  6270. }
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(2.8, "meters")
  6276. },
  6277. {
  6278. name: "Macro",
  6279. height: math.unit(450, "meters"),
  6280. default: true
  6281. },
  6282. {
  6283. name: "Megamacro",
  6284. height: math.unit(15, "kilometers")
  6285. }
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6290. {
  6291. front: {
  6292. height: math.unit(6, "feet"),
  6293. weight: math.unit(256, "lbs"),
  6294. name: "Front",
  6295. image: {
  6296. source: "./media/characters/dannik/front.svg"
  6297. }
  6298. }
  6299. },
  6300. [
  6301. {
  6302. name: "Macro",
  6303. height: math.unit(69.57, "meters"),
  6304. default: true
  6305. },
  6306. ]
  6307. ))
  6308. characterMakers.push(() => makeCharacter(
  6309. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6310. {
  6311. front: {
  6312. height: math.unit(6, "feet"),
  6313. weight: math.unit(120, "lbs"),
  6314. name: "Front",
  6315. image: {
  6316. source: "./media/characters/azura-saharah/front.svg"
  6317. }
  6318. },
  6319. back: {
  6320. height: math.unit(6, "feet"),
  6321. weight: math.unit(120, "lbs"),
  6322. name: "Back",
  6323. image: {
  6324. source: "./media/characters/azura-saharah/back.svg"
  6325. }
  6326. },
  6327. },
  6328. [
  6329. {
  6330. name: "Macro",
  6331. height: math.unit(100, "feet"),
  6332. default: true
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6338. {
  6339. side: {
  6340. height: math.unit(5 + 4 / 12, "feet"),
  6341. weight: math.unit(163, "lbs"),
  6342. name: "Side",
  6343. image: {
  6344. source: "./media/characters/kennedy/side.svg"
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Standard Doggo",
  6351. height: math.unit(5 + 4 / 12, "feet")
  6352. },
  6353. {
  6354. name: "Big Doggo",
  6355. height: math.unit(25 + 3 / 12, "feet"),
  6356. default: true
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(90, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/odi-lunar/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(3, "inches"),
  6376. default: true
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(5.5, "feet")
  6381. }
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6386. {
  6387. back: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(220, "lbs"),
  6390. name: "Back",
  6391. image: {
  6392. source: "./media/characters/mandake/back.svg"
  6393. }
  6394. }
  6395. },
  6396. [
  6397. {
  6398. name: "Normal",
  6399. height: math.unit(7, "feet"),
  6400. default: true
  6401. },
  6402. {
  6403. name: "Macro",
  6404. height: math.unit(78, "feet")
  6405. },
  6406. {
  6407. name: "Macro+",
  6408. height: math.unit(300, "meters")
  6409. },
  6410. {
  6411. name: "Macro++",
  6412. height: math.unit(2400, "feet")
  6413. },
  6414. {
  6415. name: "Megamacro",
  6416. height: math.unit(5167, "meters")
  6417. },
  6418. {
  6419. name: "Gigamacro",
  6420. height: math.unit(41769, "miles")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(120, "lbs"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/yozey/front.svg"
  6433. }
  6434. },
  6435. frontAlt: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(120, "lbs"),
  6438. name: "Front (Alt)",
  6439. image: {
  6440. source: "./media/characters/yozey/front-alt.svg"
  6441. }
  6442. },
  6443. side: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(120, "lbs"),
  6446. name: "Side",
  6447. image: {
  6448. source: "./media/characters/yozey/side.svg"
  6449. }
  6450. },
  6451. },
  6452. [
  6453. {
  6454. name: "Micro",
  6455. height: math.unit(3, "inches"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Normal",
  6460. height: math.unit(6, "feet")
  6461. }
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6466. {
  6467. front: {
  6468. height: math.unit(6, "feet"),
  6469. weight: math.unit(103, "lbs"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/valeska-voss/front.svg"
  6473. }
  6474. }
  6475. },
  6476. [
  6477. {
  6478. name: "Mini-Sized Sub",
  6479. height: math.unit(3.1, "inches")
  6480. },
  6481. {
  6482. name: "Mid-Sized Sub",
  6483. height: math.unit(6.2, "inches")
  6484. },
  6485. {
  6486. name: "Full-Sized Sub",
  6487. height: math.unit(9.3, "inches")
  6488. },
  6489. {
  6490. name: "Normal",
  6491. height: math.unit(5 + 2 / 12, "foot"),
  6492. default: true
  6493. },
  6494. ]
  6495. ))
  6496. characterMakers.push(() => makeCharacter(
  6497. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6498. {
  6499. front: {
  6500. height: math.unit(6, "feet"),
  6501. weight: math.unit(160, "lbs"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/gene-zeta/front.svg",
  6505. bottom: 0.03,
  6506. extra: 1
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(6.25, "foot"),
  6514. default: true
  6515. },
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6520. {
  6521. front: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(350, "lbs"),
  6524. name: "Front",
  6525. image: {
  6526. source: "./media/characters/razinox/front.svg",
  6527. extra: 1686 / 1548,
  6528. bottom: 28.2 / 1868
  6529. }
  6530. },
  6531. back: {
  6532. height: math.unit(6, "feet"),
  6533. weight: math.unit(350, "lbs"),
  6534. name: "Back",
  6535. image: {
  6536. source: "./media/characters/razinox/back.svg",
  6537. extra: 1660 / 1590,
  6538. bottom: 15 / 1665
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(10 + 8 / 12, "foot")
  6546. },
  6547. {
  6548. name: "Minimacro",
  6549. height: math.unit(15, "foot")
  6550. },
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(60, "foot"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Megamacro",
  6558. height: math.unit(5, "miles")
  6559. },
  6560. {
  6561. name: "Gigamacro",
  6562. height: math.unit(6000, "miles")
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(150, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/cobalt/front.svg"
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(8 + 1 / 12, "foot")
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(111, "foot"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Supracosmic",
  6590. height: math.unit(1e42, "feet")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(140, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/amanda/front.svg"
  6603. }
  6604. }
  6605. },
  6606. [
  6607. {
  6608. name: "Micro",
  6609. height: math.unit(5, "inches"),
  6610. default: true
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(5.59, "feet"),
  6619. weight: math.unit(250, "lbs"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/teal/front.svg"
  6623. }
  6624. },
  6625. frontAlt: {
  6626. height: math.unit(6, "feet"),
  6627. weight: math.unit(250, "lbs"),
  6628. name: "Front (Alt)",
  6629. image: {
  6630. source: "./media/characters/teal/front-alt.svg",
  6631. bottom: 0.04,
  6632. extra: 1
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(12, "feet"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(300, "feet")
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6650. {
  6651. frontCat: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(180, "lbs"),
  6654. name: "Front (Cat)",
  6655. image: {
  6656. source: "./media/characters/ravin-amulet/front-cat.svg"
  6657. }
  6658. },
  6659. frontCatAlt: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(180, "lbs"),
  6662. name: "Front (Alt, Cat)",
  6663. image: {
  6664. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6665. }
  6666. },
  6667. frontWerewolf: {
  6668. height: math.unit(6 * 1.2, "feet"),
  6669. weight: math.unit(225, "lbs"),
  6670. name: "Front (Werewolf)",
  6671. image: {
  6672. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6673. }
  6674. },
  6675. backWerewolf: {
  6676. height: math.unit(6 * 1.2, "feet"),
  6677. weight: math.unit(225, "lbs"),
  6678. name: "Back (Werewolf)",
  6679. image: {
  6680. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Nano",
  6687. height: math.unit(1, "micrometer")
  6688. },
  6689. {
  6690. name: "Micro",
  6691. height: math.unit(1, "inch")
  6692. },
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(6, "feet"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(60, "feet")
  6701. }
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(165, "lbs"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/fluoresce/front.svg"
  6713. }
  6714. }
  6715. },
  6716. [
  6717. {
  6718. name: "Micro",
  6719. height: math.unit(6, "cm")
  6720. },
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(5 + 7 / 12, "feet"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Macro",
  6728. height: math.unit(56, "feet")
  6729. },
  6730. {
  6731. name: "Megamacro",
  6732. height: math.unit(1.9, "miles")
  6733. },
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6738. {
  6739. front: {
  6740. height: math.unit(9 + 6 / 12, "feet"),
  6741. weight: math.unit(523, "lbs"),
  6742. name: "Side",
  6743. image: {
  6744. source: "./media/characters/aurora/side.svg"
  6745. }
  6746. }
  6747. },
  6748. [
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(9 + 6 / 12, "feet")
  6752. },
  6753. {
  6754. name: "Macro",
  6755. height: math.unit(96, "feet"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Macro+",
  6760. height: math.unit(243, "feet")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(194, "cm"),
  6769. weight: math.unit(90, "kg"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/ranek/front.svg"
  6773. }
  6774. },
  6775. side: {
  6776. height: math.unit(194, "cm"),
  6777. weight: math.unit(90, "kg"),
  6778. name: "Side",
  6779. image: {
  6780. source: "./media/characters/ranek/side.svg"
  6781. }
  6782. },
  6783. back: {
  6784. height: math.unit(194, "cm"),
  6785. weight: math.unit(90, "kg"),
  6786. name: "Back",
  6787. image: {
  6788. source: "./media/characters/ranek/back.svg"
  6789. }
  6790. },
  6791. feral: {
  6792. height: math.unit(30, "cm"),
  6793. weight: math.unit(1.6, "lbs"),
  6794. name: "Feral",
  6795. image: {
  6796. source: "./media/characters/ranek/feral.svg"
  6797. }
  6798. },
  6799. },
  6800. [
  6801. {
  6802. name: "Normal",
  6803. height: math.unit(194, "cm"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Macro",
  6808. height: math.unit(100, "meters")
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(5 + 6 / 12, "feet"),
  6817. weight: math.unit(153, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/andrew-cooper/front.svg"
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Nano",
  6827. height: math.unit(1, "mm")
  6828. },
  6829. {
  6830. name: "Micro",
  6831. height: math.unit(2, "inches")
  6832. },
  6833. {
  6834. name: "Normal",
  6835. height: math.unit(5 + 6 / 12, "feet"),
  6836. default: true
  6837. }
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(180, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/akane-sato/front.svg",
  6849. extra: 1219 / 1140
  6850. }
  6851. },
  6852. back: {
  6853. height: math.unit(6, "feet"),
  6854. weight: math.unit(180, "lbs"),
  6855. name: "Back",
  6856. image: {
  6857. source: "./media/characters/akane-sato/back.svg",
  6858. extra: 1219 / 1170
  6859. }
  6860. },
  6861. },
  6862. [
  6863. {
  6864. name: "Normal",
  6865. height: math.unit(2.5, "meters")
  6866. },
  6867. {
  6868. name: "Macro",
  6869. height: math.unit(250, "meters"),
  6870. default: true
  6871. },
  6872. {
  6873. name: "Megamacro",
  6874. height: math.unit(25, "km")
  6875. },
  6876. ]
  6877. ))
  6878. characterMakers.push(() => makeCharacter(
  6879. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6880. {
  6881. front: {
  6882. height: math.unit(6, "feet"),
  6883. weight: math.unit(65, "kg"),
  6884. name: "Front",
  6885. image: {
  6886. source: "./media/characters/rook/front.svg",
  6887. extra: 960 / 950
  6888. }
  6889. }
  6890. },
  6891. [
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(8.8, "feet")
  6895. },
  6896. {
  6897. name: "Macro",
  6898. height: math.unit(88, "feet"),
  6899. default: true
  6900. },
  6901. {
  6902. name: "Megamacro",
  6903. height: math.unit(8, "miles")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(12 + 2 / 12, "feet"),
  6912. weight: math.unit(808, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/prodigy/front.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(12 + 2 / 12, "feet"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Macro",
  6927. height: math.unit(143, "feet")
  6928. },
  6929. {
  6930. name: "Macro+",
  6931. height: math.unit(400, "feet")
  6932. },
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(6, "feet"),
  6940. weight: math.unit(225, "lbs"),
  6941. name: "Front",
  6942. image: {
  6943. source: "./media/characters/daniel/front.svg"
  6944. }
  6945. },
  6946. leaning: {
  6947. height: math.unit(6, "feet"),
  6948. weight: math.unit(225, "lbs"),
  6949. name: "Leaning",
  6950. image: {
  6951. source: "./media/characters/daniel/leaning.svg"
  6952. }
  6953. },
  6954. },
  6955. [
  6956. {
  6957. name: "Macro",
  6958. height: math.unit(1000, "feet"),
  6959. default: true
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(88, "lbs"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/chiros/front.svg",
  6972. extra: 306 / 226
  6973. }
  6974. },
  6975. side: {
  6976. height: math.unit(6, "feet"),
  6977. weight: math.unit(88, "lbs"),
  6978. name: "Side",
  6979. image: {
  6980. source: "./media/characters/chiros/side.svg",
  6981. extra: 306 / 226
  6982. }
  6983. },
  6984. },
  6985. [
  6986. {
  6987. name: "Normal",
  6988. height: math.unit(6, "cm"),
  6989. default: true
  6990. },
  6991. ]
  6992. ))
  6993. characterMakers.push(() => makeCharacter(
  6994. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6995. {
  6996. front: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(100, "lbs"),
  6999. name: "Front",
  7000. image: {
  7001. source: "./media/characters/selka/front.svg",
  7002. extra: 947 / 887
  7003. }
  7004. }
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(5, "cm"),
  7010. default: true
  7011. },
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7016. {
  7017. front: {
  7018. height: math.unit(8 + 3 / 12, "feet"),
  7019. weight: math.unit(424, "lbs"),
  7020. name: "Front",
  7021. image: {
  7022. source: "./media/characters/verin/front.svg",
  7023. extra: 1845 / 1550
  7024. }
  7025. },
  7026. frontArmored: {
  7027. height: math.unit(8 + 3 / 12, "feet"),
  7028. weight: math.unit(424, "lbs"),
  7029. name: "Front (Armored)",
  7030. image: {
  7031. source: "./media/characters/verin/front-armor.svg",
  7032. extra: 1845 / 1550,
  7033. bottom: 0.01
  7034. }
  7035. },
  7036. back: {
  7037. height: math.unit(8 + 3 / 12, "feet"),
  7038. weight: math.unit(424, "lbs"),
  7039. name: "Back",
  7040. image: {
  7041. source: "./media/characters/verin/back.svg",
  7042. bottom: 0.1,
  7043. extra: 1
  7044. }
  7045. },
  7046. foot: {
  7047. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7048. name: "Foot",
  7049. image: {
  7050. source: "./media/characters/verin/foot.svg"
  7051. }
  7052. },
  7053. },
  7054. [
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(8 + 3 / 12, "feet")
  7058. },
  7059. {
  7060. name: "Minimacro",
  7061. height: math.unit(21, "feet"),
  7062. default: true
  7063. },
  7064. {
  7065. name: "Macro",
  7066. height: math.unit(626, "feet")
  7067. },
  7068. ]
  7069. ))
  7070. characterMakers.push(() => makeCharacter(
  7071. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7072. {
  7073. front: {
  7074. height: math.unit(2.718, "meters"),
  7075. weight: math.unit(150, "lbs"),
  7076. name: "Front",
  7077. image: {
  7078. source: "./media/characters/sovrim-terraquian/front.svg"
  7079. }
  7080. },
  7081. back: {
  7082. height: math.unit(2.718, "meters"),
  7083. weight: math.unit(150, "lbs"),
  7084. name: "Back",
  7085. image: {
  7086. source: "./media/characters/sovrim-terraquian/back.svg"
  7087. }
  7088. }
  7089. },
  7090. [
  7091. {
  7092. name: "Micro",
  7093. height: math.unit(2, "inches")
  7094. },
  7095. {
  7096. name: "Small",
  7097. height: math.unit(1, "meter")
  7098. },
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(Math.E, "meters"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Macro",
  7106. height: math.unit(20, "meters")
  7107. },
  7108. {
  7109. name: "Macro+",
  7110. height: math.unit(400, "meters")
  7111. },
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7116. {
  7117. front: {
  7118. height: math.unit(7, "feet"),
  7119. weight: math.unit(489, "lbs"),
  7120. name: "Front",
  7121. image: {
  7122. source: "./media/characters/reece-silvermane/front.svg",
  7123. bottom: 0.02,
  7124. extra: 1
  7125. }
  7126. },
  7127. },
  7128. [
  7129. {
  7130. name: "Macro",
  7131. height: math.unit(1.5, "miles"),
  7132. default: true
  7133. },
  7134. ]
  7135. ))
  7136. characterMakers.push(() => makeCharacter(
  7137. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7138. {
  7139. front: {
  7140. height: math.unit(6, "feet"),
  7141. weight: math.unit(78, "kg"),
  7142. name: "Front",
  7143. image: {
  7144. source: "./media/characters/kane/front.svg",
  7145. extra: 978 / 899
  7146. }
  7147. },
  7148. },
  7149. [
  7150. {
  7151. name: "Normal",
  7152. height: math.unit(2.1, "m"),
  7153. },
  7154. {
  7155. name: "Macro",
  7156. height: math.unit(1, "km"),
  7157. default: true
  7158. },
  7159. ]
  7160. ))
  7161. characterMakers.push(() => makeCharacter(
  7162. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7163. {
  7164. front: {
  7165. height: math.unit(6, "feet"),
  7166. weight: math.unit(200, "kg"),
  7167. name: "Front",
  7168. image: {
  7169. source: "./media/characters/tegon/front.svg",
  7170. bottom: 0.01,
  7171. extra: 1
  7172. }
  7173. },
  7174. },
  7175. [
  7176. {
  7177. name: "Micro",
  7178. height: math.unit(1, "inch")
  7179. },
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(6 + 3 / 12, "feet"),
  7183. default: true
  7184. },
  7185. {
  7186. name: "Macro",
  7187. height: math.unit(300, "feet")
  7188. },
  7189. {
  7190. name: "Megamacro",
  7191. height: math.unit(69, "miles")
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7197. {
  7198. side: {
  7199. height: math.unit(6, "feet"),
  7200. weight: math.unit(2304, "lbs"),
  7201. name: "Side",
  7202. image: {
  7203. source: "./media/characters/arcturax/side.svg",
  7204. extra: 790 / 376,
  7205. bottom: 0.01
  7206. }
  7207. },
  7208. },
  7209. [
  7210. {
  7211. name: "Micro",
  7212. height: math.unit(2, "inch")
  7213. },
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(6, "feet")
  7217. },
  7218. {
  7219. name: "Macro",
  7220. height: math.unit(39, "feet"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Megamacro",
  7225. height: math.unit(7, "miles")
  7226. },
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(6, "feet"),
  7234. weight: math.unit(50, "lbs"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/sentri/front.svg",
  7238. extra: 1750 / 1570,
  7239. bottom: 0.025
  7240. }
  7241. },
  7242. frontAlt: {
  7243. height: math.unit(6, "feet"),
  7244. weight: math.unit(50, "lbs"),
  7245. name: "Front (Alt)",
  7246. image: {
  7247. source: "./media/characters/sentri/front-alt.svg",
  7248. extra: 1750 / 1570,
  7249. bottom: 0.025
  7250. }
  7251. },
  7252. },
  7253. [
  7254. {
  7255. name: "Normal",
  7256. height: math.unit(15, "feet"),
  7257. default: true
  7258. },
  7259. {
  7260. name: "Macro",
  7261. height: math.unit(2500, "feet")
  7262. }
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7267. {
  7268. front: {
  7269. height: math.unit(5 + 8 / 12, "feet"),
  7270. weight: math.unit(130, "lbs"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/corvin/front.svg",
  7274. extra: 1803 / 1629
  7275. }
  7276. },
  7277. frontShirt: {
  7278. height: math.unit(5 + 8 / 12, "feet"),
  7279. weight: math.unit(130, "lbs"),
  7280. name: "Front (Shirt)",
  7281. image: {
  7282. source: "./media/characters/corvin/front-shirt.svg",
  7283. extra: 1803 / 1629
  7284. }
  7285. },
  7286. frontPoncho: {
  7287. height: math.unit(5 + 8 / 12, "feet"),
  7288. weight: math.unit(130, "lbs"),
  7289. name: "Front (Poncho)",
  7290. image: {
  7291. source: "./media/characters/corvin/front-poncho.svg",
  7292. extra: 1803 / 1629
  7293. }
  7294. },
  7295. side: {
  7296. height: math.unit(5 + 8 / 12, "feet"),
  7297. weight: math.unit(130, "lbs"),
  7298. name: "Side",
  7299. image: {
  7300. source: "./media/characters/corvin/side.svg",
  7301. extra: 1012 / 945
  7302. }
  7303. },
  7304. back: {
  7305. height: math.unit(5 + 8 / 12, "feet"),
  7306. weight: math.unit(130, "lbs"),
  7307. name: "Back",
  7308. image: {
  7309. source: "./media/characters/corvin/back.svg",
  7310. extra: 1803 / 1629
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Micro",
  7317. height: math.unit(3, "inches")
  7318. },
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(5 + 8 / 12, "feet")
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(300, "feet"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Megamacro",
  7330. height: math.unit(500, "miles")
  7331. }
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(6, "feet"),
  7339. weight: math.unit(135, "lbs"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/q/front.svg",
  7343. extra: 854 / 752,
  7344. bottom: 0.005
  7345. }
  7346. },
  7347. back: {
  7348. height: math.unit(6, "feet"),
  7349. weight: math.unit(130, "lbs"),
  7350. name: "Back",
  7351. image: {
  7352. source: "./media/characters/q/back.svg",
  7353. extra: 854 / 752
  7354. }
  7355. },
  7356. },
  7357. [
  7358. {
  7359. name: "Macro",
  7360. height: math.unit(90, "feet"),
  7361. default: true
  7362. },
  7363. {
  7364. name: "Extra Macro",
  7365. height: math.unit(300, "feet"),
  7366. },
  7367. {
  7368. name: "BIG WALF",
  7369. height: math.unit(750, "feet"),
  7370. },
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(6, "feet"),
  7378. weight: math.unit(150, "lbs"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/carley/front.svg",
  7382. extra: 3927 / 3540,
  7383. bottom: 29.2 / 735
  7384. }
  7385. }
  7386. },
  7387. [
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(6 + 3 / 12, "feet")
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(185, "feet"),
  7395. default: true
  7396. },
  7397. {
  7398. name: "Megamacro",
  7399. height: math.unit(8, "miles"),
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7405. {
  7406. front: {
  7407. height: math.unit(3, "feet"),
  7408. weight: math.unit(28, "lbs"),
  7409. name: "Front",
  7410. image: {
  7411. source: "./media/characters/citrine/front.svg"
  7412. }
  7413. }
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(3, "feet"),
  7419. default: true
  7420. }
  7421. ]
  7422. ))
  7423. characterMakers.push(() => makeCharacter(
  7424. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7425. {
  7426. front: {
  7427. height: math.unit(14, "feet"),
  7428. weight: math.unit(1450, "kg"),
  7429. capacity: math.unit(15, "people"),
  7430. name: "Front",
  7431. image: {
  7432. source: "./media/characters/aura-starwind/front.svg",
  7433. extra: 1455 / 1335
  7434. }
  7435. },
  7436. side: {
  7437. height: math.unit(14, "feet"),
  7438. weight: math.unit(1450, "kg"),
  7439. capacity: math.unit(15, "people"),
  7440. name: "Side",
  7441. image: {
  7442. source: "./media/characters/aura-starwind/side.svg",
  7443. extra: 1654 / 1497
  7444. }
  7445. },
  7446. taur: {
  7447. height: math.unit(18, "feet"),
  7448. weight: math.unit(5500, "kg"),
  7449. capacity: math.unit(50, "people"),
  7450. name: "Taur",
  7451. image: {
  7452. source: "./media/characters/aura-starwind/taur.svg",
  7453. extra: 1760 / 1650
  7454. }
  7455. },
  7456. feral: {
  7457. height: math.unit(46, "feet"),
  7458. weight: math.unit(25000, "kg"),
  7459. capacity: math.unit(120, "people"),
  7460. name: "Feral",
  7461. image: {
  7462. source: "./media/characters/aura-starwind/feral.svg"
  7463. }
  7464. },
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(14, "feet"),
  7470. default: true
  7471. },
  7472. {
  7473. name: "Macro",
  7474. height: math.unit(50, "meters")
  7475. },
  7476. {
  7477. name: "Megamacro",
  7478. height: math.unit(5000, "meters")
  7479. },
  7480. {
  7481. name: "Gigamacro",
  7482. height: math.unit(100000, "kilometers")
  7483. },
  7484. ]
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7488. {
  7489. front: {
  7490. height: math.unit(2 + 7 / 12, "feet"),
  7491. weight: math.unit(32, "lbs"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/rivet/front.svg",
  7495. extra: 1716 / 1658,
  7496. bottom: 0.03
  7497. }
  7498. },
  7499. foot: {
  7500. height: math.unit(0.551, "feet"),
  7501. name: "Rivet's Foot",
  7502. image: {
  7503. source: "./media/characters/rivet/foot.svg"
  7504. },
  7505. rename: true
  7506. }
  7507. },
  7508. [
  7509. {
  7510. name: "Micro",
  7511. height: math.unit(1.5, "inches"),
  7512. },
  7513. {
  7514. name: "Normal",
  7515. height: math.unit(2 + 7 / 12, "feet"),
  7516. default: true
  7517. },
  7518. {
  7519. name: "Macro",
  7520. height: math.unit(85, "feet")
  7521. },
  7522. {
  7523. name: "Megamacro",
  7524. height: math.unit(2.2, "km")
  7525. }
  7526. ]
  7527. ))
  7528. characterMakers.push(() => makeCharacter(
  7529. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7530. {
  7531. front: {
  7532. height: math.unit(5 + 9 / 12, "feet"),
  7533. weight: math.unit(150, "lbs"),
  7534. name: "Front",
  7535. image: {
  7536. source: "./media/characters/coffee/front.svg",
  7537. extra: 3666 / 3032,
  7538. bottom: 0.04
  7539. }
  7540. },
  7541. foot: {
  7542. height: math.unit(1.29, "feet"),
  7543. name: "Foot",
  7544. image: {
  7545. source: "./media/characters/coffee/foot.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Micro",
  7552. height: math.unit(2, "inches"),
  7553. },
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(5 + 9 / 12, "feet"),
  7557. default: true
  7558. },
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(800, "feet")
  7562. },
  7563. {
  7564. name: "Megamacro",
  7565. height: math.unit(25, "miles")
  7566. }
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(200, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/chari-gal/front.svg",
  7578. extra: 1568 / 1385,
  7579. bottom: 0.047
  7580. }
  7581. },
  7582. gigantamax: {
  7583. height: math.unit(6 * 16, "feet"),
  7584. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7585. name: "Gigantamax",
  7586. image: {
  7587. source: "./media/characters/chari-gal/gigantamax.svg",
  7588. extra: 1124 / 888,
  7589. bottom: 0.03
  7590. }
  7591. },
  7592. },
  7593. [
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(5 + 7 / 12, "feet")
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(200, "feet"),
  7601. default: true
  7602. }
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(150, "lbs"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/nova/front.svg",
  7614. extra: 5000 / 4722,
  7615. bottom: 0.02
  7616. }
  7617. }
  7618. },
  7619. [
  7620. {
  7621. name: "Micro-",
  7622. height: math.unit(0.8, "inches")
  7623. },
  7624. {
  7625. name: "Micro",
  7626. height: math.unit(2, "inches"),
  7627. default: true
  7628. },
  7629. ]
  7630. ))
  7631. characterMakers.push(() => makeCharacter(
  7632. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7633. {
  7634. front: {
  7635. height: math.unit(3 + 1 / 12, "feet"),
  7636. weight: math.unit(21.7, "lbs"),
  7637. name: "Front",
  7638. image: {
  7639. source: "./media/characters/argent/front.svg",
  7640. extra: 1471 / 1331,
  7641. bottom: 100.8 / 1575.5
  7642. }
  7643. }
  7644. },
  7645. [
  7646. {
  7647. name: "Micro",
  7648. height: math.unit(2, "inches")
  7649. },
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(3 + 1 / 12, "feet"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(120, "feet")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7663. {
  7664. lamp: {
  7665. height: math.unit(7 * 1559 / 989, "feet"),
  7666. name: "Magic Lamp",
  7667. image: {
  7668. source: "./media/characters/mira-al-cul/lamp.svg",
  7669. extra: 1617 / 1559
  7670. }
  7671. },
  7672. front: {
  7673. height: math.unit(7, "feet"),
  7674. name: "Front",
  7675. image: {
  7676. source: "./media/characters/mira-al-cul/front.svg",
  7677. extra: 1044 / 990
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Heavily Restricted",
  7684. height: math.unit(7 * 1559 / 989, "feet")
  7685. },
  7686. {
  7687. name: "Freshly Freed",
  7688. height: math.unit(50 * 1559 / 989, "feet")
  7689. },
  7690. {
  7691. name: "World Encompassing",
  7692. height: math.unit(10000 * 1559 / 989, "miles")
  7693. },
  7694. {
  7695. name: "Galactic",
  7696. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7697. },
  7698. {
  7699. name: "Palmed Universe",
  7700. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7701. default: true
  7702. },
  7703. {
  7704. name: "Multiversal Matriarch",
  7705. height: math.unit(8.87e10, "yottameters")
  7706. },
  7707. {
  7708. name: "Void Mother",
  7709. height: math.unit(3.14e110, "yottaparsecs")
  7710. },
  7711. {
  7712. name: "Toying with Transcendence",
  7713. height: math.unit(1e307, "meters")
  7714. },
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7719. {
  7720. front: {
  7721. height: math.unit(17 + 1 / 12, "feet"),
  7722. weight: math.unit(476.2 * 5, "lbs"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/kuro-shi-uchū/front.svg",
  7726. extra: 2329 / 1835,
  7727. bottom: 0.02
  7728. }
  7729. },
  7730. },
  7731. [
  7732. {
  7733. name: "Micro",
  7734. height: math.unit(2, "inches")
  7735. },
  7736. {
  7737. name: "Normal",
  7738. height: math.unit(12, "meters")
  7739. },
  7740. {
  7741. name: "Planetary",
  7742. height: math.unit(0.00929, "AU"),
  7743. default: true
  7744. },
  7745. {
  7746. name: "Universal",
  7747. height: math.unit(20, "gigaparsecs")
  7748. },
  7749. ]
  7750. ))
  7751. characterMakers.push(() => makeCharacter(
  7752. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7753. {
  7754. front: {
  7755. height: math.unit(5 + 2 / 12, "feet"),
  7756. weight: math.unit(120, "lbs"),
  7757. name: "Front",
  7758. image: {
  7759. source: "./media/characters/katherine/front.svg",
  7760. extra: 2075 / 1969
  7761. }
  7762. },
  7763. dress: {
  7764. height: math.unit(5 + 2 / 12, "feet"),
  7765. weight: math.unit(120, "lbs"),
  7766. name: "Dress",
  7767. image: {
  7768. source: "./media/characters/katherine/dress.svg",
  7769. extra: 2258 / 2064
  7770. }
  7771. },
  7772. },
  7773. [
  7774. {
  7775. name: "Micro",
  7776. height: math.unit(1, "inches"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Normal",
  7781. height: math.unit(5 + 2 / 12, "feet")
  7782. },
  7783. {
  7784. name: "Macro",
  7785. height: math.unit(100, "meters")
  7786. },
  7787. {
  7788. name: "Megamacro",
  7789. height: math.unit(80, "miles")
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(7 + 8 / 12, "feet"),
  7798. weight: math.unit(250, "lbs"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/yevis/front.svg",
  7802. extra: 1938 / 1755
  7803. }
  7804. }
  7805. },
  7806. [
  7807. {
  7808. name: "Mortal",
  7809. height: math.unit(7 + 8 / 12, "feet")
  7810. },
  7811. {
  7812. name: "Battle",
  7813. height: math.unit(25 + 11 / 12, "feet")
  7814. },
  7815. {
  7816. name: "Wrath",
  7817. height: math.unit(1654 + 11 / 12, "feet")
  7818. },
  7819. {
  7820. name: "Planet Destroyer",
  7821. height: math.unit(12000, "miles")
  7822. },
  7823. {
  7824. name: "Galaxy Conqueror",
  7825. height: math.unit(1.45, "zettameters"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Universal War",
  7830. height: math.unit(184, "gigaparsecs")
  7831. },
  7832. {
  7833. name: "Eternity War",
  7834. height: math.unit(1.98e55, "yottaparsecs")
  7835. },
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(5 + 8 / 12, "feet"),
  7843. weight: math.unit(63, "kg"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/xavier/front.svg",
  7847. extra: 944 / 883
  7848. }
  7849. },
  7850. frontStretch: {
  7851. height: math.unit(5 + 8 / 12, "feet"),
  7852. weight: math.unit(63, "kg"),
  7853. name: "Stretching",
  7854. image: {
  7855. source: "./media/characters/xavier/front-stretch.svg",
  7856. extra: 962 / 820
  7857. }
  7858. },
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(5 + 8 / 12, "feet")
  7864. },
  7865. {
  7866. name: "Macro",
  7867. height: math.unit(100, "meters"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "McLargeHuge",
  7872. height: math.unit(10, "miles")
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(5 + 5 / 12, "feet"),
  7881. weight: math.unit(150, "lb"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/joshii/front.svg"
  7885. }
  7886. },
  7887. foot: {
  7888. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7889. name: "Foot",
  7890. image: {
  7891. source: "./media/characters/joshii/foot.svg"
  7892. }
  7893. },
  7894. },
  7895. [
  7896. {
  7897. name: "Micro",
  7898. height: math.unit(2, "inches")
  7899. },
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(5 + 5 / 12, "feet"),
  7903. default: true
  7904. },
  7905. {
  7906. name: "Macro",
  7907. height: math.unit(785, "feet")
  7908. },
  7909. {
  7910. name: "Megamacro",
  7911. height: math.unit(24.5, "miles")
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(6, "feet"),
  7920. weight: math.unit(150, "lb"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/goddess-elizabeth/front.svg",
  7924. extra: 1800 / 1525,
  7925. bottom: 0.005
  7926. }
  7927. },
  7928. foot: {
  7929. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7930. name: "Foot",
  7931. image: {
  7932. source: "./media/characters/goddess-elizabeth/foot.svg"
  7933. }
  7934. },
  7935. mouth: {
  7936. height: math.unit(6, "feet"),
  7937. name: "Mouth",
  7938. image: {
  7939. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7940. }
  7941. },
  7942. },
  7943. [
  7944. {
  7945. name: "Micro",
  7946. height: math.unit(12, "feet")
  7947. },
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(80, "miles"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Macro",
  7955. height: math.unit(15000, "parsecs")
  7956. },
  7957. ]
  7958. ))
  7959. characterMakers.push(() => makeCharacter(
  7960. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7961. {
  7962. front: {
  7963. height: math.unit(5 + 9 / 12, "feet"),
  7964. weight: math.unit(144, "lb"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/kara/front.svg"
  7968. }
  7969. },
  7970. feet: {
  7971. height: math.unit(6 / 6.765, "feet"),
  7972. name: "Kara's Feet",
  7973. rename: true,
  7974. image: {
  7975. source: "./media/characters/kara/feet.svg"
  7976. }
  7977. },
  7978. },
  7979. [
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(5 + 9 / 12, "feet")
  7983. },
  7984. {
  7985. name: "Macro",
  7986. height: math.unit(174, "feet"),
  7987. default: true
  7988. },
  7989. ]
  7990. ))
  7991. characterMakers.push(() => makeCharacter(
  7992. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7993. {
  7994. front: {
  7995. height: math.unit(18, "feet"),
  7996. weight: math.unit(4050, "lb"),
  7997. name: "Front",
  7998. image: {
  7999. source: "./media/characters/tyrone/front.svg",
  8000. extra: 2520 / 2402,
  8001. bottom: 0.025
  8002. }
  8003. },
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(18, "feet"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Macro",
  8013. height: math.unit(300, "feet")
  8014. },
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8019. {
  8020. front: {
  8021. height: math.unit(7 + 8 / 12, "feet"),
  8022. weight: math.unit(120, "lb"),
  8023. name: "Front",
  8024. image: {
  8025. source: "./media/characters/danny/front.svg",
  8026. extra: 1490 / 1350
  8027. }
  8028. },
  8029. back: {
  8030. height: math.unit(7 + 8 / 12, "feet"),
  8031. weight: math.unit(120, "lb"),
  8032. name: "Back",
  8033. image: {
  8034. source: "./media/characters/danny/back.svg",
  8035. extra: 1490 / 1350
  8036. }
  8037. },
  8038. },
  8039. [
  8040. {
  8041. name: "Normal",
  8042. height: math.unit(7 + 8 / 12, "feet"),
  8043. default: true
  8044. },
  8045. ]
  8046. ))
  8047. characterMakers.push(() => makeCharacter(
  8048. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8049. {
  8050. front: {
  8051. height: math.unit(3.5, "inches"),
  8052. weight: math.unit(19, "grams"),
  8053. name: "Front",
  8054. image: {
  8055. source: "./media/characters/mallow/front.svg",
  8056. extra: 471 / 431
  8057. }
  8058. },
  8059. back: {
  8060. height: math.unit(3.5, "inches"),
  8061. weight: math.unit(19, "grams"),
  8062. name: "Back",
  8063. image: {
  8064. source: "./media/characters/mallow/back.svg",
  8065. extra: 471 / 431
  8066. }
  8067. },
  8068. },
  8069. [
  8070. {
  8071. name: "Normal",
  8072. height: math.unit(3.5, "inches"),
  8073. default: true
  8074. },
  8075. ]
  8076. ))
  8077. characterMakers.push(() => makeCharacter(
  8078. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8079. {
  8080. front: {
  8081. height: math.unit(9, "feet"),
  8082. weight: math.unit(230, "kg"),
  8083. name: "Front",
  8084. image: {
  8085. source: "./media/characters/starry-aqua/front.svg"
  8086. }
  8087. },
  8088. back: {
  8089. height: math.unit(9, "feet"),
  8090. weight: math.unit(230, "kg"),
  8091. name: "Back",
  8092. image: {
  8093. source: "./media/characters/starry-aqua/back.svg"
  8094. }
  8095. },
  8096. hand: {
  8097. height: math.unit(9 * 0.1168, "feet"),
  8098. name: "Hand",
  8099. image: {
  8100. source: "./media/characters/starry-aqua/hand.svg"
  8101. }
  8102. },
  8103. foot: {
  8104. height: math.unit(9 * 0.18, "feet"),
  8105. name: "Foot",
  8106. image: {
  8107. source: "./media/characters/starry-aqua/foot.svg"
  8108. }
  8109. }
  8110. },
  8111. [
  8112. {
  8113. name: "Micro",
  8114. height: math.unit(3, "inches")
  8115. },
  8116. {
  8117. name: "Normal",
  8118. height: math.unit(9, "feet")
  8119. },
  8120. {
  8121. name: "Macro",
  8122. height: math.unit(300, "feet"),
  8123. default: true
  8124. },
  8125. {
  8126. name: "Megamacro",
  8127. height: math.unit(3200, "feet")
  8128. }
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(6, "feet"),
  8136. weight: math.unit(230, "lb"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/luka/front.svg",
  8140. extra: 1,
  8141. bottom: 0.025
  8142. }
  8143. },
  8144. },
  8145. [
  8146. {
  8147. name: "Normal",
  8148. height: math.unit(12 + 8 / 12, "feet"),
  8149. default: true
  8150. },
  8151. {
  8152. name: "Minimacro",
  8153. height: math.unit(20, "feet")
  8154. },
  8155. {
  8156. name: "Macro",
  8157. height: math.unit(250, "feet")
  8158. },
  8159. {
  8160. name: "Megamacro",
  8161. height: math.unit(5, "miles")
  8162. },
  8163. {
  8164. name: "Gigamacro",
  8165. height: math.unit(8000, "miles")
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(6, "feet"),
  8174. weight: math.unit(150, "lb"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/natalie-nightring/front.svg",
  8178. extra: 1,
  8179. bottom: 0.06
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Uh Oh",
  8186. height: math.unit(0.1, "mm")
  8187. },
  8188. {
  8189. name: "Small",
  8190. height: math.unit(3, "inches")
  8191. },
  8192. {
  8193. name: "Human Scale",
  8194. height: math.unit(6, "feet")
  8195. },
  8196. {
  8197. name: "Librarian",
  8198. height: math.unit(50, "feet"),
  8199. default: true
  8200. },
  8201. {
  8202. name: "Immense",
  8203. height: math.unit(200, "miles")
  8204. },
  8205. ]
  8206. ))
  8207. characterMakers.push(() => makeCharacter(
  8208. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8209. {
  8210. front: {
  8211. height: math.unit(6, "feet"),
  8212. weight: math.unit(180, "lbs"),
  8213. name: "Front",
  8214. image: {
  8215. source: "./media/characters/danni-rosie/front.svg",
  8216. extra: 1260 / 1128,
  8217. bottom: 0.022
  8218. }
  8219. },
  8220. },
  8221. [
  8222. {
  8223. name: "Micro",
  8224. height: math.unit(2, "inches"),
  8225. default: true
  8226. },
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8231. {
  8232. front: {
  8233. height: math.unit(5 + 9 / 12, "feet"),
  8234. weight: math.unit(220, "lb"),
  8235. name: "Front",
  8236. image: {
  8237. source: "./media/characters/samantha-kruse/front.svg",
  8238. extra: (985 / 935),
  8239. bottom: 0.03
  8240. }
  8241. },
  8242. frontUndressed: {
  8243. height: math.unit(5 + 9 / 12, "feet"),
  8244. weight: math.unit(220, "lb"),
  8245. name: "Front (Undressed)",
  8246. image: {
  8247. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8248. extra: (973 / 923),
  8249. bottom: 0.025
  8250. }
  8251. },
  8252. fat: {
  8253. height: math.unit(5 + 9 / 12, "feet"),
  8254. weight: math.unit(900, "lb"),
  8255. name: "Front (Fat)",
  8256. image: {
  8257. source: "./media/characters/samantha-kruse/fat.svg",
  8258. extra: 2688 / 2561
  8259. }
  8260. },
  8261. },
  8262. [
  8263. {
  8264. name: "Normal",
  8265. height: math.unit(5 + 9 / 12, "feet"),
  8266. default: true
  8267. }
  8268. ]
  8269. ))
  8270. characterMakers.push(() => makeCharacter(
  8271. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8272. {
  8273. back: {
  8274. height: math.unit(5 + 4 / 12, "feet"),
  8275. weight: math.unit(4963, "lb"),
  8276. name: "Back",
  8277. image: {
  8278. source: "./media/characters/amelia-rosie/back.svg",
  8279. extra: 1113 / 963,
  8280. bottom: 0.01
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Level 0",
  8287. height: math.unit(5 + 4 / 12, "feet")
  8288. },
  8289. {
  8290. name: "Level 1",
  8291. height: math.unit(164597, "feet"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Level 2",
  8296. height: math.unit(956243, "miles")
  8297. },
  8298. {
  8299. name: "Level 3",
  8300. height: math.unit(29421709423, "miles")
  8301. },
  8302. {
  8303. name: "Level 4",
  8304. height: math.unit(154, "lightyears")
  8305. },
  8306. {
  8307. name: "Level 5",
  8308. height: math.unit(4738272, "lightyears")
  8309. },
  8310. {
  8311. name: "Level 6",
  8312. height: math.unit(145787152896, "lightyears")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(5 + 11 / 12, "feet"),
  8321. weight: math.unit(65, "kg"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/rook-kitara/front.svg",
  8325. extra: 1347 / 1274,
  8326. bottom: 0.005
  8327. }
  8328. },
  8329. },
  8330. [
  8331. {
  8332. name: "Totally Unfair",
  8333. height: math.unit(1.8, "mm")
  8334. },
  8335. {
  8336. name: "Lap Rookie",
  8337. height: math.unit(1.4, "feet")
  8338. },
  8339. {
  8340. name: "Normal",
  8341. height: math.unit(5 + 11 / 12, "feet"),
  8342. default: true
  8343. },
  8344. {
  8345. name: "How Did This Happen",
  8346. height: math.unit(80, "miles")
  8347. }
  8348. ]
  8349. ))
  8350. characterMakers.push(() => makeCharacter(
  8351. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8352. {
  8353. front: {
  8354. height: math.unit(7, "feet"),
  8355. weight: math.unit(300, "lb"),
  8356. name: "Front",
  8357. image: {
  8358. source: "./media/characters/pisces/front.svg",
  8359. extra: 2255 / 2115,
  8360. bottom: 0.03
  8361. }
  8362. },
  8363. back: {
  8364. height: math.unit(7, "feet"),
  8365. weight: math.unit(300, "lb"),
  8366. name: "Back",
  8367. image: {
  8368. source: "./media/characters/pisces/back.svg",
  8369. extra: 2146 / 2055,
  8370. bottom: 0.04
  8371. }
  8372. },
  8373. },
  8374. [
  8375. {
  8376. name: "Normal",
  8377. height: math.unit(7, "feet"),
  8378. default: true
  8379. },
  8380. {
  8381. name: "Swimming Pool",
  8382. height: math.unit(12.2, "meters")
  8383. },
  8384. {
  8385. name: "Olympic Swimming Pool",
  8386. height: math.unit(56.3, "meters")
  8387. },
  8388. {
  8389. name: "Lake Superior",
  8390. height: math.unit(93900, "meters")
  8391. },
  8392. {
  8393. name: "Mediterranean Sea",
  8394. height: math.unit(644457, "meters")
  8395. },
  8396. {
  8397. name: "World's Oceans",
  8398. height: math.unit(4567491, "meters")
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(2.3, "meters"),
  8407. weight: math.unit(120, "kg"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/zelas/front.svg"
  8411. }
  8412. },
  8413. side: {
  8414. height: math.unit(2.3, "meters"),
  8415. weight: math.unit(120, "kg"),
  8416. name: "Side",
  8417. image: {
  8418. source: "./media/characters/zelas/side.svg"
  8419. }
  8420. },
  8421. back: {
  8422. height: math.unit(2.3, "meters"),
  8423. weight: math.unit(120, "kg"),
  8424. name: "Back",
  8425. image: {
  8426. source: "./media/characters/zelas/back.svg"
  8427. }
  8428. },
  8429. foot: {
  8430. height: math.unit(1.116, "feet"),
  8431. name: "Foot",
  8432. image: {
  8433. source: "./media/characters/zelas/foot.svg"
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(2.3, "meters")
  8441. },
  8442. {
  8443. name: "Macro",
  8444. height: math.unit(30, "meters"),
  8445. default: true
  8446. },
  8447. ]
  8448. ))
  8449. characterMakers.push(() => makeCharacter(
  8450. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8451. {
  8452. front: {
  8453. height: math.unit(1, "inch"),
  8454. weight: math.unit(0.21, "grams"),
  8455. name: "Front",
  8456. image: {
  8457. source: "./media/characters/talbot/front.svg",
  8458. extra: 594 / 544
  8459. }
  8460. },
  8461. },
  8462. [
  8463. {
  8464. name: "Micro",
  8465. height: math.unit(1, "inch"),
  8466. default: true
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8472. {
  8473. front: {
  8474. height: math.unit(3 + 3 / 12, "feet"),
  8475. weight: math.unit(51.8, "lb"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/fliss/front.svg",
  8479. extra: 840 / 640
  8480. }
  8481. },
  8482. },
  8483. [
  8484. {
  8485. name: "Teeny Tiny",
  8486. height: math.unit(1, "mm")
  8487. },
  8488. {
  8489. name: "Small",
  8490. height: math.unit(1, "inch"),
  8491. default: true
  8492. },
  8493. {
  8494. name: "Standard Sylveon",
  8495. height: math.unit(3 + 3 / 12, "feet")
  8496. },
  8497. {
  8498. name: "Large Nuisance",
  8499. height: math.unit(33, "feet")
  8500. },
  8501. {
  8502. name: "City Filler",
  8503. height: math.unit(3000, "feet")
  8504. },
  8505. {
  8506. name: "New Horizon",
  8507. height: math.unit(6000, "miles")
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(5, "cm"),
  8516. weight: math.unit(1.94, "g"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/fleta/front.svg",
  8520. extra: 835 / 803
  8521. }
  8522. },
  8523. back: {
  8524. height: math.unit(5, "cm"),
  8525. weight: math.unit(1.94, "g"),
  8526. name: "Back",
  8527. image: {
  8528. source: "./media/characters/fleta/back.svg",
  8529. extra: 835 / 803
  8530. }
  8531. },
  8532. },
  8533. [
  8534. {
  8535. name: "Micro",
  8536. height: math.unit(5, "cm"),
  8537. default: true
  8538. },
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8543. {
  8544. front: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(225, "lb"),
  8547. name: "Front",
  8548. image: {
  8549. source: "./media/characters/dominic/front.svg",
  8550. extra: 1770 / 1620,
  8551. bottom: 0.025
  8552. }
  8553. },
  8554. back: {
  8555. height: math.unit(6, "feet"),
  8556. weight: math.unit(225, "lb"),
  8557. name: "Back",
  8558. image: {
  8559. source: "./media/characters/dominic/back.svg",
  8560. extra: 1745 / 1620,
  8561. bottom: 0.065
  8562. }
  8563. },
  8564. },
  8565. [
  8566. {
  8567. name: "Nano",
  8568. height: math.unit(0.1, "mm")
  8569. },
  8570. {
  8571. name: "Micro-",
  8572. height: math.unit(1, "mm")
  8573. },
  8574. {
  8575. name: "Micro",
  8576. height: math.unit(4, "inches")
  8577. },
  8578. {
  8579. name: "Normal",
  8580. height: math.unit(6 + 4 / 12, "feet"),
  8581. default: true
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(115, "feet")
  8586. },
  8587. {
  8588. name: "Macro+",
  8589. height: math.unit(955, "feet")
  8590. },
  8591. {
  8592. name: "Megamacro",
  8593. height: math.unit(8990, "feet")
  8594. },
  8595. {
  8596. name: "Gigmacro",
  8597. height: math.unit(9310, "miles")
  8598. },
  8599. {
  8600. name: "Teramacro",
  8601. height: math.unit(1567005010, "miles")
  8602. },
  8603. {
  8604. name: "Examacro",
  8605. height: math.unit(1425, "parsecs")
  8606. },
  8607. ]
  8608. ))
  8609. characterMakers.push(() => makeCharacter(
  8610. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8611. {
  8612. front: {
  8613. height: math.unit(400, "feet"),
  8614. weight: math.unit(44444444, "lb"),
  8615. name: "Front",
  8616. image: {
  8617. source: "./media/characters/major-colonel/front.svg"
  8618. }
  8619. },
  8620. back: {
  8621. height: math.unit(400, "feet"),
  8622. weight: math.unit(44444444, "lb"),
  8623. name: "Back",
  8624. image: {
  8625. source: "./media/characters/major-colonel/back.svg"
  8626. }
  8627. },
  8628. },
  8629. [
  8630. {
  8631. name: "Macro",
  8632. height: math.unit(400, "feet"),
  8633. default: true
  8634. },
  8635. ]
  8636. ))
  8637. characterMakers.push(() => makeCharacter(
  8638. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8639. {
  8640. catFront: {
  8641. height: math.unit(6, "feet"),
  8642. weight: math.unit(120, "lb"),
  8643. name: "Front (Cat Side)",
  8644. image: {
  8645. source: "./media/characters/axel-lycan/cat-front.svg",
  8646. extra: 430 / 402,
  8647. bottom: 43 / 472.35
  8648. }
  8649. },
  8650. catBack: {
  8651. height: math.unit(6, "feet"),
  8652. weight: math.unit(120, "lb"),
  8653. name: "Back (Cat Side)",
  8654. image: {
  8655. source: "./media/characters/axel-lycan/cat-back.svg",
  8656. extra: 447 / 419,
  8657. bottom: 23.3 / 469
  8658. }
  8659. },
  8660. wolfFront: {
  8661. height: math.unit(6, "feet"),
  8662. weight: math.unit(120, "lb"),
  8663. name: "Front (Wolf Side)",
  8664. image: {
  8665. source: "./media/characters/axel-lycan/wolf-front.svg",
  8666. extra: 485 / 456,
  8667. bottom: 19 / 504
  8668. }
  8669. },
  8670. wolfBack: {
  8671. height: math.unit(6, "feet"),
  8672. weight: math.unit(120, "lb"),
  8673. name: "Back (Wolf Side)",
  8674. image: {
  8675. source: "./media/characters/axel-lycan/wolf-back.svg",
  8676. extra: 475 / 438,
  8677. bottom: 39.2 / 514
  8678. }
  8679. },
  8680. },
  8681. [
  8682. {
  8683. name: "Macro",
  8684. height: math.unit(1, "km"),
  8685. default: true
  8686. },
  8687. ]
  8688. ))
  8689. characterMakers.push(() => makeCharacter(
  8690. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8691. {
  8692. front: {
  8693. height: math.unit(5 + 9 / 12, "feet"),
  8694. weight: math.unit(175, "lb"),
  8695. name: "Front",
  8696. image: {
  8697. source: "./media/characters/vanrel-hyena/front.svg",
  8698. extra: 1086 / 1010,
  8699. bottom: 0.04
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(5 + 9 / 12, "feet"),
  8707. default: true
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(6, "feet"),
  8716. weight: math.unit(103, "lb"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/abbott-absol/front.svg",
  8720. extra: 2010 / 1842
  8721. }
  8722. },
  8723. },
  8724. [
  8725. {
  8726. name: "Megamicro",
  8727. height: math.unit(0.1, "mm")
  8728. },
  8729. {
  8730. name: "Micro",
  8731. height: math.unit(1, "inch")
  8732. },
  8733. {
  8734. name: "Normal",
  8735. height: math.unit(6, "feet"),
  8736. default: true
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8742. {
  8743. front: {
  8744. height: math.unit(6, "feet"),
  8745. weight: math.unit(264, "lb"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/hector/front.svg",
  8749. extra: 2280 / 2130,
  8750. bottom: 0.07
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(12.25, "foot"),
  8758. default: true
  8759. },
  8760. {
  8761. name: "Macro",
  8762. height: math.unit(160, "feet")
  8763. },
  8764. ]
  8765. ))
  8766. characterMakers.push(() => makeCharacter(
  8767. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8768. {
  8769. front: {
  8770. height: math.unit(6, "feet"),
  8771. weight: math.unit(150, "lb"),
  8772. name: "Front",
  8773. image: {
  8774. source: "./media/characters/sal/front.svg",
  8775. extra: 1846 / 1699,
  8776. bottom: 0.04
  8777. }
  8778. },
  8779. },
  8780. [
  8781. {
  8782. name: "Megamacro",
  8783. height: math.unit(10, "miles"),
  8784. default: true
  8785. },
  8786. ]
  8787. ))
  8788. characterMakers.push(() => makeCharacter(
  8789. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8790. {
  8791. front: {
  8792. height: math.unit(3, "meters"),
  8793. weight: math.unit(450, "kg"),
  8794. name: "front",
  8795. image: {
  8796. source: "./media/characters/ranger/front.svg",
  8797. extra: 2401 / 2243,
  8798. bottom: 0.05
  8799. }
  8800. },
  8801. },
  8802. [
  8803. {
  8804. name: "Normal",
  8805. height: math.unit(3, "meters"),
  8806. default: true
  8807. },
  8808. ]
  8809. ))
  8810. characterMakers.push(() => makeCharacter(
  8811. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8812. {
  8813. front: {
  8814. height: math.unit(14, "feet"),
  8815. weight: math.unit(800, "kg"),
  8816. name: "Front",
  8817. image: {
  8818. source: "./media/characters/theresa/front.svg",
  8819. extra: 3575 / 3346,
  8820. bottom: 0.03
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(14, "feet"),
  8828. default: true
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8834. {
  8835. front: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(3, "kg"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/ine/front.svg",
  8841. extra: 678 / 539,
  8842. bottom: 0.023
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Normal",
  8849. height: math.unit(2.265, "feet"),
  8850. default: true
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8856. {
  8857. front: {
  8858. height: math.unit(5, "feet"),
  8859. weight: math.unit(30, "kg"),
  8860. name: "Front",
  8861. image: {
  8862. source: "./media/characters/vial/front.svg",
  8863. extra: 1365 / 1277,
  8864. bottom: 0.04
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Normal",
  8871. height: math.unit(5, "feet"),
  8872. default: true
  8873. },
  8874. ]
  8875. ))
  8876. characterMakers.push(() => makeCharacter(
  8877. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8878. {
  8879. side: {
  8880. height: math.unit(3.4, "meters"),
  8881. weight: math.unit(1000, "lb"),
  8882. name: "Side",
  8883. image: {
  8884. source: "./media/characters/rovoska/side.svg",
  8885. extra: 4403 / 1515
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(3.4, "meters"),
  8893. default: true
  8894. },
  8895. ]
  8896. ))
  8897. characterMakers.push(() => makeCharacter(
  8898. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8899. {
  8900. front: {
  8901. height: math.unit(8, "feet"),
  8902. weight: math.unit(315, "lb"),
  8903. name: "Front",
  8904. image: {
  8905. source: "./media/characters/gunner-rotthbauer/front.svg"
  8906. }
  8907. },
  8908. back: {
  8909. height: math.unit(8, "feet"),
  8910. weight: math.unit(315, "lb"),
  8911. name: "Back",
  8912. image: {
  8913. source: "./media/characters/gunner-rotthbauer/back.svg"
  8914. }
  8915. },
  8916. },
  8917. [
  8918. {
  8919. name: "Micro",
  8920. height: math.unit(3.5, "inches")
  8921. },
  8922. {
  8923. name: "Normal",
  8924. height: math.unit(8, "feet"),
  8925. default: true
  8926. },
  8927. {
  8928. name: "Macro",
  8929. height: math.unit(250, "feet")
  8930. },
  8931. {
  8932. name: "Megamacro",
  8933. height: math.unit(1, "AU")
  8934. },
  8935. ]
  8936. ))
  8937. characterMakers.push(() => makeCharacter(
  8938. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8939. {
  8940. front: {
  8941. height: math.unit(5 + 5 / 12, "feet"),
  8942. weight: math.unit(140, "lb"),
  8943. name: "Front",
  8944. image: {
  8945. source: "./media/characters/allatia/front.svg",
  8946. extra: 1227 / 1180,
  8947. bottom: 0.027
  8948. }
  8949. },
  8950. },
  8951. [
  8952. {
  8953. name: "Normal",
  8954. height: math.unit(5 + 5 / 12, "feet")
  8955. },
  8956. {
  8957. name: "Macro",
  8958. height: math.unit(250, "feet"),
  8959. default: true
  8960. },
  8961. {
  8962. name: "Megamacro",
  8963. height: math.unit(8, "miles")
  8964. }
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8969. {
  8970. front: {
  8971. height: math.unit(6, "feet"),
  8972. weight: math.unit(120, "lb"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/tene/front.svg",
  8976. extra: 1728 / 1578,
  8977. bottom: 0.022
  8978. }
  8979. },
  8980. stomping: {
  8981. height: math.unit(2.025, "meters"),
  8982. weight: math.unit(120, "lb"),
  8983. name: "Stomping",
  8984. image: {
  8985. source: "./media/characters/tene/stomping.svg",
  8986. extra: 938 / 873,
  8987. bottom: 0.01
  8988. }
  8989. },
  8990. sitting: {
  8991. height: math.unit(1, "meter"),
  8992. weight: math.unit(120, "lb"),
  8993. name: "Sitting",
  8994. image: {
  8995. source: "./media/characters/tene/sitting.svg",
  8996. extra: 437 / 415,
  8997. bottom: 0.1
  8998. }
  8999. },
  9000. feral: {
  9001. height: math.unit(3.9, "feet"),
  9002. weight: math.unit(250, "lb"),
  9003. name: "Feral",
  9004. image: {
  9005. source: "./media/characters/tene/feral.svg",
  9006. extra: 717 / 458,
  9007. bottom: 0.179
  9008. }
  9009. },
  9010. },
  9011. [
  9012. {
  9013. name: "Normal",
  9014. height: math.unit(6, "feet")
  9015. },
  9016. {
  9017. name: "Macro",
  9018. height: math.unit(300, "feet"),
  9019. default: true
  9020. },
  9021. {
  9022. name: "Megamacro",
  9023. height: math.unit(5, "miles")
  9024. },
  9025. ]
  9026. ))
  9027. characterMakers.push(() => makeCharacter(
  9028. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9029. {
  9030. side: {
  9031. height: math.unit(6, "feet"),
  9032. name: "Side",
  9033. image: {
  9034. source: "./media/characters/evander/side.svg",
  9035. extra: 877 / 477
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Normal",
  9042. height: math.unit(0.83, "meters"),
  9043. default: true
  9044. },
  9045. ]
  9046. ))
  9047. characterMakers.push(() => makeCharacter(
  9048. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9049. {
  9050. front: {
  9051. height: math.unit(12, "feet"),
  9052. weight: math.unit(1000, "lb"),
  9053. name: "Front",
  9054. image: {
  9055. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9056. extra: 1762 / 1611
  9057. }
  9058. },
  9059. back: {
  9060. height: math.unit(12, "feet"),
  9061. weight: math.unit(1000, "lb"),
  9062. name: "Back",
  9063. image: {
  9064. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9065. extra: 1762 / 1611
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(12, "feet"),
  9073. default: true
  9074. },
  9075. {
  9076. name: "Kaiju",
  9077. height: math.unit(150, "feet")
  9078. },
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9083. {
  9084. front: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(150, "lb"),
  9087. name: "Front",
  9088. image: {
  9089. source: "./media/characters/zero-alurus/front.svg"
  9090. }
  9091. },
  9092. back: {
  9093. height: math.unit(6, "feet"),
  9094. weight: math.unit(150, "lb"),
  9095. name: "Back",
  9096. image: {
  9097. source: "./media/characters/zero-alurus/back.svg"
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(5 + 10 / 12, "feet")
  9105. },
  9106. {
  9107. name: "Macro",
  9108. height: math.unit(60, "feet"),
  9109. default: true
  9110. },
  9111. {
  9112. name: "Macro+",
  9113. height: math.unit(450, "feet")
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(6, "feet"),
  9122. weight: math.unit(200, "lb"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/mega-shi/front.svg",
  9126. extra: 1279 / 1250,
  9127. bottom: 0.02
  9128. }
  9129. },
  9130. back: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(200, "lb"),
  9133. name: "Back",
  9134. image: {
  9135. source: "./media/characters/mega-shi/back.svg",
  9136. extra: 1279 / 1250,
  9137. bottom: 0.02
  9138. }
  9139. },
  9140. },
  9141. [
  9142. {
  9143. name: "Micro",
  9144. height: math.unit(16 + 6 / 12, "feet")
  9145. },
  9146. {
  9147. name: "Third Dimension",
  9148. height: math.unit(40, "meters")
  9149. },
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(660, "feet"),
  9153. default: true
  9154. },
  9155. {
  9156. name: "Megamacro",
  9157. height: math.unit(10, "miles")
  9158. },
  9159. {
  9160. name: "Planetary Launch",
  9161. height: math.unit(500, "miles")
  9162. },
  9163. {
  9164. name: "Interstellar",
  9165. height: math.unit(1e9, "miles")
  9166. },
  9167. {
  9168. name: "Leaving the Universe",
  9169. height: math.unit(1, "gigaparsec")
  9170. },
  9171. {
  9172. name: "Travelling Universes",
  9173. height: math.unit(30e15, "parsecs")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(6, "feet"),
  9182. weight: math.unit(150, "lb"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/odyssey/front.svg",
  9186. extra: 1782 / 1582,
  9187. bottom: 0.01
  9188. }
  9189. },
  9190. side: {
  9191. height: math.unit(5.7, "feet"),
  9192. weight: math.unit(140, "lb"),
  9193. name: "Side",
  9194. image: {
  9195. source: "./media/characters/odyssey/side.svg",
  9196. extra: 6462 / 5700
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(5 + 4 / 12, "feet")
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(1, "km")
  9208. },
  9209. {
  9210. name: "Megamacro",
  9211. height: math.unit(3000, "km")
  9212. },
  9213. {
  9214. name: "Gigamacro",
  9215. height: math.unit(1, "AU"),
  9216. default: true
  9217. },
  9218. {
  9219. name: "Omniversal",
  9220. height: math.unit(100e14, "lightyears")
  9221. },
  9222. ]
  9223. ))
  9224. characterMakers.push(() => makeCharacter(
  9225. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9226. {
  9227. front: {
  9228. height: math.unit(6, "feet"),
  9229. weight: math.unit(300, "lb"),
  9230. name: "Front",
  9231. image: {
  9232. source: "./media/characters/mekuto/front.svg",
  9233. extra: 921 / 832,
  9234. bottom: 0.03
  9235. }
  9236. },
  9237. hand: {
  9238. height: math.unit(6 / 10.24, "feet"),
  9239. name: "Hand",
  9240. image: {
  9241. source: "./media/characters/mekuto/hand.svg"
  9242. }
  9243. },
  9244. foot: {
  9245. height: math.unit(6 / 5.05, "feet"),
  9246. name: "Foot",
  9247. image: {
  9248. source: "./media/characters/mekuto/foot.svg"
  9249. }
  9250. },
  9251. },
  9252. [
  9253. {
  9254. name: "Minimicro",
  9255. height: math.unit(0.2, "inches")
  9256. },
  9257. {
  9258. name: "Micro",
  9259. height: math.unit(1.5, "inches")
  9260. },
  9261. {
  9262. name: "Normal",
  9263. height: math.unit(5 + 11 / 12, "feet"),
  9264. default: true
  9265. },
  9266. {
  9267. name: "Minimacro",
  9268. height: math.unit(17 + 9 / 12, "feet")
  9269. },
  9270. {
  9271. name: "Macro",
  9272. height: math.unit(177.5, "feet")
  9273. },
  9274. {
  9275. name: "Megamacro",
  9276. height: math.unit(152, "miles")
  9277. },
  9278. ]
  9279. ))
  9280. characterMakers.push(() => makeCharacter(
  9281. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9282. {
  9283. front: {
  9284. height: math.unit(6.5, "inches"),
  9285. weight: math.unit(13, "oz"),
  9286. name: "Front",
  9287. image: {
  9288. source: "./media/characters/dafydd-tomos/front.svg",
  9289. extra: 2990 / 2603,
  9290. bottom: 0.03
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Micro",
  9297. height: math.unit(6.5, "inches"),
  9298. default: true
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(6, "feet"),
  9307. weight: math.unit(150, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/splinter/front.svg",
  9311. extra: 2990 / 2882,
  9312. bottom: 0.04
  9313. }
  9314. },
  9315. back: {
  9316. height: math.unit(6, "feet"),
  9317. weight: math.unit(150, "lb"),
  9318. name: "Back",
  9319. image: {
  9320. source: "./media/characters/splinter/back.svg",
  9321. extra: 2990 / 2882,
  9322. bottom: 0.04
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(6, "feet")
  9330. },
  9331. {
  9332. name: "Macro",
  9333. height: math.unit(230, "meters"),
  9334. default: true
  9335. },
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(4 + 10 / 12, "feet"),
  9343. weight: math.unit(480, "lb"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/snow-gabumon/front.svg",
  9347. extra: 1140 / 963,
  9348. bottom: 0.058
  9349. }
  9350. },
  9351. back: {
  9352. height: math.unit(4 + 10 / 12, "feet"),
  9353. weight: math.unit(480, "lb"),
  9354. name: "Back",
  9355. image: {
  9356. source: "./media/characters/snow-gabumon/back.svg",
  9357. extra: 1115 / 962,
  9358. bottom: 0.041
  9359. }
  9360. },
  9361. frontUndresed: {
  9362. height: math.unit(4 + 10 / 12, "feet"),
  9363. weight: math.unit(480, "lb"),
  9364. name: "Front (Undressed)",
  9365. image: {
  9366. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9367. extra: 1061 / 960,
  9368. bottom: 0.045
  9369. }
  9370. },
  9371. },
  9372. [
  9373. {
  9374. name: "Micro",
  9375. height: math.unit(1, "inch")
  9376. },
  9377. {
  9378. name: "Normal",
  9379. height: math.unit(4 + 10 / 12, "feet"),
  9380. default: true
  9381. },
  9382. {
  9383. name: "Macro",
  9384. height: math.unit(200, "feet")
  9385. },
  9386. {
  9387. name: "Megamacro",
  9388. height: math.unit(120, "miles")
  9389. },
  9390. {
  9391. name: "Gigamacro",
  9392. height: math.unit(9800, "miles")
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9398. {
  9399. front: {
  9400. height: math.unit(1.7, "meters"),
  9401. weight: math.unit(140, "lb"),
  9402. name: "Front",
  9403. image: {
  9404. source: "./media/characters/moody/front.svg",
  9405. extra: 3226 / 3007,
  9406. bottom: 0.087
  9407. }
  9408. },
  9409. },
  9410. [
  9411. {
  9412. name: "Micro",
  9413. height: math.unit(1, "mm")
  9414. },
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(1.7, "meters"),
  9418. default: true
  9419. },
  9420. {
  9421. name: "Macro",
  9422. height: math.unit(80, "meters")
  9423. },
  9424. {
  9425. name: "Macro+",
  9426. height: math.unit(500, "meters")
  9427. },
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(150, "lb"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/zyas/front.svg",
  9439. extra: 1180 / 1120,
  9440. bottom: 0.045
  9441. }
  9442. },
  9443. },
  9444. [
  9445. {
  9446. name: "Normal",
  9447. height: math.unit(10, "feet"),
  9448. default: true
  9449. },
  9450. {
  9451. name: "Macro",
  9452. height: math.unit(500, "feet")
  9453. },
  9454. {
  9455. name: "Megamacro",
  9456. height: math.unit(5, "miles")
  9457. },
  9458. {
  9459. name: "Teramacro",
  9460. height: math.unit(150000, "miles")
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(6, "feet"),
  9469. weight: math.unit(150, "lb"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/cuon/front.svg",
  9473. extra: 1390 / 1320,
  9474. bottom: 0.008
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Micro",
  9481. height: math.unit(3, "inches")
  9482. },
  9483. {
  9484. name: "Normal",
  9485. height: math.unit(18 + 9 / 12, "feet"),
  9486. default: true
  9487. },
  9488. {
  9489. name: "Macro",
  9490. height: math.unit(360, "feet")
  9491. },
  9492. {
  9493. name: "Megamacro",
  9494. height: math.unit(360, "miles")
  9495. },
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9500. {
  9501. front: {
  9502. height: math.unit(2.4, "meters"),
  9503. weight: math.unit(70, "kg"),
  9504. name: "Front",
  9505. image: {
  9506. source: "./media/characters/nyanuxk/front.svg",
  9507. extra: 1172 / 1084,
  9508. bottom: 0.065
  9509. }
  9510. },
  9511. side: {
  9512. height: math.unit(2.4, "meters"),
  9513. weight: math.unit(70, "kg"),
  9514. name: "Side",
  9515. image: {
  9516. source: "./media/characters/nyanuxk/side.svg",
  9517. extra: 1190 / 1132,
  9518. bottom: 0.007
  9519. }
  9520. },
  9521. back: {
  9522. height: math.unit(2.4, "meters"),
  9523. weight: math.unit(70, "kg"),
  9524. name: "Back",
  9525. image: {
  9526. source: "./media/characters/nyanuxk/back.svg",
  9527. extra: 1200 / 1141,
  9528. bottom: 0.015
  9529. }
  9530. },
  9531. foot: {
  9532. height: math.unit(0.52, "meters"),
  9533. name: "Foot",
  9534. image: {
  9535. source: "./media/characters/nyanuxk/foot.svg"
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Micro",
  9542. height: math.unit(2, "cm")
  9543. },
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(2.4, "meters"),
  9547. default: true
  9548. },
  9549. {
  9550. name: "Smaller Macro",
  9551. height: math.unit(120, "meters")
  9552. },
  9553. {
  9554. name: "Bigger Macro",
  9555. height: math.unit(1.2, "km")
  9556. },
  9557. {
  9558. name: "Megamacro",
  9559. height: math.unit(15, "kilometers")
  9560. },
  9561. {
  9562. name: "Gigamacro",
  9563. height: math.unit(2000, "km")
  9564. },
  9565. {
  9566. name: "Teramacro",
  9567. height: math.unit(500000, "km")
  9568. },
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9573. {
  9574. side: {
  9575. height: math.unit(6, "feet"),
  9576. name: "Side",
  9577. image: {
  9578. source: "./media/characters/ailbhe/side.svg",
  9579. extra: 757 / 464,
  9580. bottom: 0.041
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Normal",
  9587. height: math.unit(1.07, "meters"),
  9588. default: true
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9594. {
  9595. front: {
  9596. height: math.unit(6, "feet"),
  9597. weight: math.unit(120, "kg"),
  9598. name: "Front",
  9599. image: {
  9600. source: "./media/characters/zevulfius/front.svg",
  9601. extra: 965 / 903
  9602. }
  9603. },
  9604. side: {
  9605. height: math.unit(6, "feet"),
  9606. weight: math.unit(120, "kg"),
  9607. name: "Side",
  9608. image: {
  9609. source: "./media/characters/zevulfius/side.svg",
  9610. extra: 939 / 900
  9611. }
  9612. },
  9613. back: {
  9614. height: math.unit(6, "feet"),
  9615. weight: math.unit(120, "kg"),
  9616. name: "Back",
  9617. image: {
  9618. source: "./media/characters/zevulfius/back.svg",
  9619. extra: 918 / 854,
  9620. bottom: 0.005
  9621. }
  9622. },
  9623. foot: {
  9624. height: math.unit(6 / 3.72, "feet"),
  9625. name: "Foot",
  9626. image: {
  9627. source: "./media/characters/zevulfius/foot.svg"
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(750, "meters")
  9635. },
  9636. {
  9637. name: "Megamacro",
  9638. height: math.unit(20, "km"),
  9639. default: true
  9640. },
  9641. {
  9642. name: "Gigamacro",
  9643. height: math.unit(2000, "km")
  9644. },
  9645. {
  9646. name: "Teramacro",
  9647. height: math.unit(250000, "km")
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(100, "feet"),
  9656. weight: math.unit(350, "kg"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/rikes/front.svg",
  9660. extra: 1565 / 1483,
  9661. bottom: 0.017
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Macro",
  9668. height: math.unit(100, "feet"),
  9669. default: true
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9675. {
  9676. anthro: {
  9677. height: math.unit(8, "feet"),
  9678. weight: math.unit(120, "kg"),
  9679. name: "Anthro",
  9680. image: {
  9681. source: "./media/characters/adam-silver-mane/anthro.svg",
  9682. extra: 5743 / 5339,
  9683. bottom: 0.07
  9684. }
  9685. },
  9686. taur: {
  9687. height: math.unit(16, "feet"),
  9688. weight: math.unit(1500, "kg"),
  9689. name: "Taur",
  9690. image: {
  9691. source: "./media/characters/adam-silver-mane/taur.svg",
  9692. extra: 1713 / 1571,
  9693. bottom: 0.01
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(8, "feet")
  9701. },
  9702. {
  9703. name: "Minimacro",
  9704. height: math.unit(80, "feet")
  9705. },
  9706. {
  9707. name: "Macro",
  9708. height: math.unit(800, "feet"),
  9709. default: true
  9710. },
  9711. {
  9712. name: "Megamacro",
  9713. height: math.unit(8000, "feet")
  9714. },
  9715. {
  9716. name: "Gigamacro",
  9717. height: math.unit(800, "miles")
  9718. },
  9719. {
  9720. name: "Teramacro",
  9721. height: math.unit(80000, "miles")
  9722. },
  9723. {
  9724. name: "Celestial",
  9725. height: math.unit(8e6, "miles")
  9726. },
  9727. {
  9728. name: "Star Dragon",
  9729. height: math.unit(800000, "parsecs")
  9730. },
  9731. {
  9732. name: "Godly",
  9733. height: math.unit(800, "teraparsecs")
  9734. },
  9735. ]
  9736. ))
  9737. characterMakers.push(() => makeCharacter(
  9738. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9739. {
  9740. front: {
  9741. height: math.unit(6, "feet"),
  9742. weight: math.unit(150, "lb"),
  9743. name: "Front",
  9744. image: {
  9745. source: "./media/characters/ky'owin/front.svg",
  9746. extra: 3888 / 3068,
  9747. bottom: 0.015
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(6 + 8 / 12, "feet")
  9755. },
  9756. {
  9757. name: "Large",
  9758. height: math.unit(68, "feet")
  9759. },
  9760. {
  9761. name: "Macro",
  9762. height: math.unit(132, "feet")
  9763. },
  9764. {
  9765. name: "Macro+",
  9766. height: math.unit(340, "feet")
  9767. },
  9768. {
  9769. name: "Macro++",
  9770. height: math.unit(680, "feet"),
  9771. default: true
  9772. },
  9773. {
  9774. name: "Megamacro",
  9775. height: math.unit(1, "mile")
  9776. },
  9777. {
  9778. name: "Megamacro+",
  9779. height: math.unit(10, "miles")
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9785. {
  9786. front: {
  9787. height: math.unit(4, "feet"),
  9788. weight: math.unit(50, "lb"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/mal/front.svg",
  9792. extra: 785 / 724,
  9793. bottom: 0.07
  9794. }
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Micro",
  9800. height: math.unit(4, "inches")
  9801. },
  9802. {
  9803. name: "Normal",
  9804. height: math.unit(4, "feet"),
  9805. default: true
  9806. },
  9807. {
  9808. name: "Macro",
  9809. height: math.unit(200, "feet")
  9810. },
  9811. ]
  9812. ))
  9813. characterMakers.push(() => makeCharacter(
  9814. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9815. {
  9816. front: {
  9817. height: math.unit(6, "feet"),
  9818. weight: math.unit(150, "lb"),
  9819. name: "Front",
  9820. image: {
  9821. source: "./media/characters/jordan-deware/front.svg",
  9822. extra: 1191 / 1012
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Nano",
  9829. height: math.unit(0.01, "mm")
  9830. },
  9831. {
  9832. name: "Minimicro",
  9833. height: math.unit(1, "mm")
  9834. },
  9835. {
  9836. name: "Micro",
  9837. height: math.unit(0.5, "inches")
  9838. },
  9839. {
  9840. name: "Normal",
  9841. height: math.unit(4, "feet"),
  9842. default: true
  9843. },
  9844. {
  9845. name: "Minimacro",
  9846. height: math.unit(40, "meters")
  9847. },
  9848. {
  9849. name: "Small Macro",
  9850. height: math.unit(400, "meters")
  9851. },
  9852. {
  9853. name: "Macro",
  9854. height: math.unit(4, "miles")
  9855. },
  9856. {
  9857. name: "Megamacro",
  9858. height: math.unit(40, "miles")
  9859. },
  9860. {
  9861. name: "Megamacro+",
  9862. height: math.unit(400, "miles")
  9863. },
  9864. {
  9865. name: "Gigamacro",
  9866. height: math.unit(400000, "miles")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9872. {
  9873. side: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(150, "lb"),
  9876. name: "Side",
  9877. image: {
  9878. source: "./media/characters/kimiko/side.svg",
  9879. extra: 600 / 358
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(15, "feet"),
  9887. default: true
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(220, "feet")
  9892. },
  9893. {
  9894. name: "Macro+",
  9895. height: math.unit(1450, "feet")
  9896. },
  9897. {
  9898. name: "Megamacro",
  9899. height: math.unit(11500, "feet")
  9900. },
  9901. {
  9902. name: "Gigamacro",
  9903. height: math.unit(9500, "miles")
  9904. },
  9905. {
  9906. name: "Teramacro",
  9907. height: math.unit(2208005005, "miles")
  9908. },
  9909. {
  9910. name: "Examacro",
  9911. height: math.unit(2750, "parsecs")
  9912. },
  9913. {
  9914. name: "Zettamacro",
  9915. height: math.unit(101500, "parsecs")
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(6, "feet"),
  9924. weight: math.unit(70, "kg"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/andrew-sleepy/front.svg"
  9928. }
  9929. },
  9930. side: {
  9931. height: math.unit(6, "feet"),
  9932. weight: math.unit(70, "kg"),
  9933. name: "Side",
  9934. image: {
  9935. source: "./media/characters/andrew-sleepy/side.svg"
  9936. }
  9937. },
  9938. },
  9939. [
  9940. {
  9941. name: "Micro",
  9942. height: math.unit(1, "mm"),
  9943. default: true
  9944. },
  9945. ]
  9946. ))
  9947. characterMakers.push(() => makeCharacter(
  9948. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9949. {
  9950. front: {
  9951. height: math.unit(6, "feet"),
  9952. weight: math.unit(150, "lb"),
  9953. name: "Front",
  9954. image: {
  9955. source: "./media/characters/judio/front.svg",
  9956. extra: 1258 / 1110
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(5 + 6 / 12, "feet")
  9964. },
  9965. {
  9966. name: "Macro",
  9967. height: math.unit(1000, "feet"),
  9968. default: true
  9969. },
  9970. {
  9971. name: "Megamacro",
  9972. height: math.unit(10, "miles")
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(6, "feet"),
  9981. weight: math.unit(68, "kg"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/nomaxice/front.svg",
  9985. extra: 1498 / 1073,
  9986. bottom: 0.075
  9987. }
  9988. },
  9989. foot: {
  9990. height: math.unit(1.1, "feet"),
  9991. name: "Foot",
  9992. image: {
  9993. source: "./media/characters/nomaxice/foot.svg"
  9994. }
  9995. },
  9996. },
  9997. [
  9998. {
  9999. name: "Micro",
  10000. height: math.unit(8, "cm")
  10001. },
  10002. {
  10003. name: "Norm",
  10004. height: math.unit(1.82, "m")
  10005. },
  10006. {
  10007. name: "Norm+",
  10008. height: math.unit(8.8, "feet")
  10009. },
  10010. {
  10011. name: "Big",
  10012. height: math.unit(8, "meters"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Macro",
  10017. height: math.unit(18, "meters")
  10018. },
  10019. {
  10020. name: "Macro+",
  10021. height: math.unit(88, "meters")
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(12, "feet"),
  10030. weight: math.unit(1.5, "tons"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/dydros/front.svg",
  10034. extra: 863 / 800,
  10035. bottom: 0.015
  10036. }
  10037. },
  10038. back: {
  10039. height: math.unit(12, "feet"),
  10040. weight: math.unit(1.5, "tons"),
  10041. name: "Back",
  10042. image: {
  10043. source: "./media/characters/dydros/back.svg",
  10044. extra: 900 / 843,
  10045. bottom: 0.005
  10046. }
  10047. },
  10048. },
  10049. [
  10050. {
  10051. name: "Normal",
  10052. height: math.unit(12, "feet"),
  10053. default: true
  10054. },
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10059. {
  10060. front: {
  10061. height: math.unit(6, "feet"),
  10062. weight: math.unit(100, "kg"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/riggi/front.svg",
  10066. extra: 5787 / 5303
  10067. }
  10068. },
  10069. hyper: {
  10070. height: math.unit(6 * 5 / 3, "feet"),
  10071. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10072. name: "Hyper",
  10073. image: {
  10074. source: "./media/characters/riggi/hyper.svg",
  10075. extra: 3595 / 3485
  10076. }
  10077. },
  10078. },
  10079. [
  10080. {
  10081. name: "Small Macro",
  10082. height: math.unit(50, "feet")
  10083. },
  10084. {
  10085. name: "Default",
  10086. height: math.unit(200, "feet"),
  10087. default: true
  10088. },
  10089. {
  10090. name: "Loom",
  10091. height: math.unit(10000, "feet")
  10092. },
  10093. {
  10094. name: "Cruising Altitude",
  10095. height: math.unit(30000, "feet")
  10096. },
  10097. {
  10098. name: "Megamacro",
  10099. height: math.unit(100, "miles")
  10100. },
  10101. {
  10102. name: "Continent Sized",
  10103. height: math.unit(2800, "miles")
  10104. },
  10105. {
  10106. name: "Earth Sized",
  10107. height: math.unit(8000, "miles")
  10108. },
  10109. ]
  10110. ))
  10111. characterMakers.push(() => makeCharacter(
  10112. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10113. {
  10114. front: {
  10115. height: math.unit(6, "feet"),
  10116. weight: math.unit(250, "lb"),
  10117. name: "Front",
  10118. image: {
  10119. source: "./media/characters/alexi/front.svg",
  10120. extra: 3483 / 3291,
  10121. bottom: 0.04
  10122. }
  10123. },
  10124. back: {
  10125. height: math.unit(6, "feet"),
  10126. weight: math.unit(250, "lb"),
  10127. name: "Back",
  10128. image: {
  10129. source: "./media/characters/alexi/back.svg",
  10130. extra: 3533 / 3356,
  10131. bottom: 0.021
  10132. }
  10133. },
  10134. frontTransforming: {
  10135. height: math.unit(8.58, "feet"),
  10136. weight: math.unit(1300, "lb"),
  10137. name: "Transforming",
  10138. image: {
  10139. source: "./media/characters/alexi/front-transforming.svg",
  10140. extra: 437 / 409,
  10141. bottom: 19 / 458.66
  10142. }
  10143. },
  10144. frontTransformed: {
  10145. height: math.unit(12.5, "feet"),
  10146. weight: math.unit(4000, "lb"),
  10147. name: "Transformed",
  10148. image: {
  10149. source: "./media/characters/alexi/front-transformed.svg",
  10150. extra: 639 / 614,
  10151. bottom: 30.55 / 671
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Normal",
  10158. height: math.unit(14, "feet"),
  10159. default: true
  10160. },
  10161. {
  10162. name: "Minimacro",
  10163. height: math.unit(30, "meters")
  10164. },
  10165. {
  10166. name: "Macro",
  10167. height: math.unit(500, "meters")
  10168. },
  10169. {
  10170. name: "Megamacro",
  10171. height: math.unit(9000, "km")
  10172. },
  10173. {
  10174. name: "Teramacro",
  10175. height: math.unit(384000, "km")
  10176. },
  10177. ]
  10178. ))
  10179. characterMakers.push(() => makeCharacter(
  10180. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10181. {
  10182. front: {
  10183. height: math.unit(6, "feet"),
  10184. weight: math.unit(150, "lb"),
  10185. name: "Front",
  10186. image: {
  10187. source: "./media/characters/kayroo/front.svg",
  10188. extra: 1153 / 1038,
  10189. bottom: 0.06
  10190. }
  10191. },
  10192. foot: {
  10193. height: math.unit(6, "feet"),
  10194. weight: math.unit(150, "lb"),
  10195. name: "Foot",
  10196. image: {
  10197. source: "./media/characters/kayroo/foot.svg"
  10198. }
  10199. },
  10200. },
  10201. [
  10202. {
  10203. name: "Normal",
  10204. height: math.unit(8, "feet"),
  10205. default: true
  10206. },
  10207. {
  10208. name: "Minimacro",
  10209. height: math.unit(250, "feet")
  10210. },
  10211. {
  10212. name: "Macro",
  10213. height: math.unit(2800, "feet")
  10214. },
  10215. {
  10216. name: "Megamacro",
  10217. height: math.unit(5200, "feet")
  10218. },
  10219. {
  10220. name: "Gigamacro",
  10221. height: math.unit(27000, "feet")
  10222. },
  10223. {
  10224. name: "Omega",
  10225. height: math.unit(45000, "feet")
  10226. },
  10227. ]
  10228. ))
  10229. characterMakers.push(() => makeCharacter(
  10230. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10231. {
  10232. front: {
  10233. height: math.unit(18, "feet"),
  10234. weight: math.unit(5800, "lb"),
  10235. name: "Front",
  10236. image: {
  10237. source: "./media/characters/rhys/front.svg",
  10238. extra: 3386 / 3090,
  10239. bottom: 0.07
  10240. }
  10241. },
  10242. },
  10243. [
  10244. {
  10245. name: "Normal",
  10246. height: math.unit(18, "feet"),
  10247. default: true
  10248. },
  10249. {
  10250. name: "Working Size",
  10251. height: math.unit(200, "feet")
  10252. },
  10253. {
  10254. name: "Demolition Size",
  10255. height: math.unit(2000, "feet")
  10256. },
  10257. {
  10258. name: "Maximum Licensed Size",
  10259. height: math.unit(5, "miles")
  10260. },
  10261. {
  10262. name: "Maximum Observed Size",
  10263. height: math.unit(10, "yottameters")
  10264. },
  10265. ]
  10266. ))
  10267. characterMakers.push(() => makeCharacter(
  10268. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10269. {
  10270. front: {
  10271. height: math.unit(6, "feet"),
  10272. weight: math.unit(250, "lb"),
  10273. name: "Front",
  10274. image: {
  10275. source: "./media/characters/toto/front.svg",
  10276. extra: 527 / 479,
  10277. bottom: 0.05
  10278. }
  10279. },
  10280. },
  10281. [
  10282. {
  10283. name: "Micro",
  10284. height: math.unit(3, "feet")
  10285. },
  10286. {
  10287. name: "Normal",
  10288. height: math.unit(10, "feet")
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(150, "feet"),
  10293. default: true
  10294. },
  10295. {
  10296. name: "Megamacro",
  10297. height: math.unit(1200, "feet")
  10298. },
  10299. ]
  10300. ))
  10301. characterMakers.push(() => makeCharacter(
  10302. { name: "King", species: ["lion"], tags: ["anthro"] },
  10303. {
  10304. back: {
  10305. height: math.unit(6, "feet"),
  10306. weight: math.unit(150, "lb"),
  10307. name: "Back",
  10308. image: {
  10309. source: "./media/characters/king/back.svg"
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Micro",
  10316. height: math.unit(2, "inches")
  10317. },
  10318. {
  10319. name: "Normal",
  10320. height: math.unit(8, "feet")
  10321. },
  10322. {
  10323. name: "Macro",
  10324. height: math.unit(200, "feet"),
  10325. default: true
  10326. },
  10327. {
  10328. name: "Megamacro",
  10329. height: math.unit(50, "miles")
  10330. },
  10331. ]
  10332. ))
  10333. characterMakers.push(() => makeCharacter(
  10334. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10335. {
  10336. anthro: {
  10337. height: math.unit(6 + 5 / 12, "feet"),
  10338. weight: math.unit(280, "lb"),
  10339. name: "Anthro",
  10340. image: {
  10341. source: "./media/characters/cordite/anthro.svg",
  10342. extra: 1986 / 1905,
  10343. bottom: 0.025
  10344. }
  10345. },
  10346. feral: {
  10347. height: math.unit(2, "feet"),
  10348. weight: math.unit(90, "lb"),
  10349. name: "Feral",
  10350. image: {
  10351. source: "./media/characters/cordite/feral.svg",
  10352. extra: 1260 / 755,
  10353. bottom: 0.05
  10354. }
  10355. },
  10356. },
  10357. [
  10358. {
  10359. name: "Normal",
  10360. height: math.unit(6 + 5 / 12, "feet"),
  10361. default: true
  10362. },
  10363. ]
  10364. ))
  10365. characterMakers.push(() => makeCharacter(
  10366. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10367. {
  10368. front: {
  10369. height: math.unit(6, "feet"),
  10370. weight: math.unit(150, "lb"),
  10371. name: "Front",
  10372. image: {
  10373. source: "./media/characters/pianostrong/front.svg",
  10374. extra: 6577 / 6254,
  10375. bottom: 0.02
  10376. }
  10377. },
  10378. side: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(150, "lb"),
  10381. name: "Side",
  10382. image: {
  10383. source: "./media/characters/pianostrong/side.svg",
  10384. extra: 6106 / 5730
  10385. }
  10386. },
  10387. back: {
  10388. height: math.unit(6, "feet"),
  10389. weight: math.unit(150, "lb"),
  10390. name: "Back",
  10391. image: {
  10392. source: "./media/characters/pianostrong/back.svg",
  10393. extra: 6085 / 5733,
  10394. bottom: 0.01
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Macro",
  10401. height: math.unit(100, "feet")
  10402. },
  10403. {
  10404. name: "Macro+",
  10405. height: math.unit(300, "feet"),
  10406. default: true
  10407. },
  10408. {
  10409. name: "Macro++",
  10410. height: math.unit(1000, "feet")
  10411. },
  10412. ]
  10413. ))
  10414. characterMakers.push(() => makeCharacter(
  10415. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10416. {
  10417. front: {
  10418. height: math.unit(6, "feet"),
  10419. weight: math.unit(150, "lb"),
  10420. name: "Front",
  10421. image: {
  10422. source: "./media/characters/kona/front.svg",
  10423. extra: 2960 / 2629,
  10424. bottom: 0.005
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Normal",
  10431. height: math.unit(11 + 8 / 12, "feet")
  10432. },
  10433. {
  10434. name: "Macro",
  10435. height: math.unit(850, "feet"),
  10436. default: true
  10437. },
  10438. {
  10439. name: "Macro+",
  10440. height: math.unit(1.5, "km"),
  10441. default: true
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(80, "miles")
  10446. },
  10447. {
  10448. name: "Gigamacro",
  10449. height: math.unit(3500, "miles")
  10450. },
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10455. {
  10456. side: {
  10457. height: math.unit(1.9, "meters"),
  10458. weight: math.unit(326, "kg"),
  10459. name: "Side",
  10460. image: {
  10461. source: "./media/characters/levi/side.svg",
  10462. extra: 1704 / 1334,
  10463. bottom: 0.02
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Normal",
  10470. height: math.unit(1.9, "meters"),
  10471. default: true
  10472. },
  10473. {
  10474. name: "Macro",
  10475. height: math.unit(20, "meters")
  10476. },
  10477. {
  10478. name: "Macro+",
  10479. height: math.unit(200, "meters")
  10480. },
  10481. {
  10482. name: "Megamacro",
  10483. height: math.unit(2, "km")
  10484. },
  10485. {
  10486. name: "Megamacro+",
  10487. height: math.unit(20, "km")
  10488. },
  10489. {
  10490. name: "Gigamacro",
  10491. height: math.unit(2500, "km")
  10492. },
  10493. {
  10494. name: "Gigamacro+",
  10495. height: math.unit(120000, "km")
  10496. },
  10497. {
  10498. name: "Teramacro",
  10499. height: math.unit(7.77e6, "km")
  10500. },
  10501. ]
  10502. ))
  10503. characterMakers.push(() => makeCharacter(
  10504. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10505. {
  10506. front: {
  10507. height: math.unit(6 + 4 / 12, "feet"),
  10508. weight: math.unit(188, "lb"),
  10509. name: "Front",
  10510. image: {
  10511. source: "./media/characters/bmc/front.svg",
  10512. extra: 1067 / 1022,
  10513. bottom: 0.047
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Human-sized",
  10520. height: math.unit(6 + 4 / 12, "feet")
  10521. },
  10522. {
  10523. name: "Small",
  10524. height: math.unit(250, "feet")
  10525. },
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(1250, "feet"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Good Day",
  10533. height: math.unit(88, "miles")
  10534. },
  10535. {
  10536. name: "Largest Measured Size",
  10537. height: math.unit(11.2e6, "lightyears")
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(20, "feet"),
  10546. weight: math.unit(2016, "kg"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/sven-the-kaiju/front.svg",
  10550. extra: 1479 / 1449,
  10551. bottom: 0.05
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Fairy",
  10558. height: math.unit(6, "inches")
  10559. },
  10560. {
  10561. name: "Normal",
  10562. height: math.unit(20, "feet"),
  10563. default: true
  10564. },
  10565. {
  10566. name: "Rampage",
  10567. height: math.unit(200, "feet")
  10568. },
  10569. {
  10570. name: "Archfey Forest Guardian",
  10571. height: math.unit(1, "mile")
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10577. {
  10578. front: {
  10579. height: math.unit(4, "meters"),
  10580. weight: math.unit(2, "tons"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/marik/front.svg",
  10584. extra: 1057 / 1003,
  10585. bottom: 0.08
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Normal",
  10592. height: math.unit(4, "meters"),
  10593. default: true
  10594. },
  10595. {
  10596. name: "Macro",
  10597. height: math.unit(20, "meters")
  10598. },
  10599. {
  10600. name: "Megamacro",
  10601. height: math.unit(50, "km")
  10602. },
  10603. {
  10604. name: "Gigamacro",
  10605. height: math.unit(100, "km")
  10606. },
  10607. {
  10608. name: "Alpha Macro",
  10609. height: math.unit(7.88e7, "yottameters")
  10610. },
  10611. ]
  10612. ))
  10613. characterMakers.push(() => makeCharacter(
  10614. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10615. {
  10616. front: {
  10617. height: math.unit(6, "feet"),
  10618. weight: math.unit(110, "lb"),
  10619. name: "Front",
  10620. image: {
  10621. source: "./media/characters/mel/front.svg",
  10622. extra: 736 / 617,
  10623. bottom: 0.017
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Pico",
  10630. height: math.unit(3, "pm")
  10631. },
  10632. {
  10633. name: "Nano",
  10634. height: math.unit(3, "nm")
  10635. },
  10636. {
  10637. name: "Micro",
  10638. height: math.unit(0.3, "mm"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Micro+",
  10643. height: math.unit(3, "mm")
  10644. },
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(5 + 10.5 / 12, "feet")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10653. {
  10654. kaiju: {
  10655. height: math.unit(1.75, "meters"),
  10656. weight: math.unit(55, "kg"),
  10657. name: "Kaiju",
  10658. image: {
  10659. source: "./media/characters/lykonous/kaiju.svg",
  10660. extra: 1055 / 946,
  10661. bottom: 0.135
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Normal",
  10668. height: math.unit(2.5, "meters"),
  10669. default: true
  10670. },
  10671. {
  10672. name: "Kaiju Dragon",
  10673. height: math.unit(60, "meters")
  10674. },
  10675. {
  10676. name: "Mega Kaiju",
  10677. height: math.unit(120, "km")
  10678. },
  10679. {
  10680. name: "Giga Kaiju",
  10681. height: math.unit(200, "megameters")
  10682. },
  10683. {
  10684. name: "Terra Kaiju",
  10685. height: math.unit(400, "gigameters")
  10686. },
  10687. {
  10688. name: "Kaiju Dragon God",
  10689. height: math.unit(13000, "exaparsecs")
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10695. {
  10696. front: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(150, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/blü/front.svg",
  10702. extra: 1883 / 1564,
  10703. bottom: 0.031
  10704. }
  10705. },
  10706. },
  10707. [
  10708. {
  10709. name: "Normal",
  10710. height: math.unit(13, "feet"),
  10711. default: true
  10712. },
  10713. {
  10714. name: "Big Boi",
  10715. height: math.unit(150, "meters")
  10716. },
  10717. {
  10718. name: "Mini Stomper",
  10719. height: math.unit(300, "meters")
  10720. },
  10721. {
  10722. name: "Macro",
  10723. height: math.unit(1000, "meters")
  10724. },
  10725. {
  10726. name: "Megamacro",
  10727. height: math.unit(11000, "meters")
  10728. },
  10729. {
  10730. name: "Gigamacro",
  10731. height: math.unit(11000, "km")
  10732. },
  10733. {
  10734. name: "Teramacro",
  10735. height: math.unit(420000, "km")
  10736. },
  10737. {
  10738. name: "Examacro",
  10739. height: math.unit(120, "parsecs")
  10740. },
  10741. {
  10742. name: "God Tho",
  10743. height: math.unit(98000000000, "parsecs")
  10744. },
  10745. ]
  10746. ))
  10747. characterMakers.push(() => makeCharacter(
  10748. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10749. {
  10750. taurFront: {
  10751. height: math.unit(6, "feet"),
  10752. weight: math.unit(200, "lb"),
  10753. name: "Taur (Front)",
  10754. image: {
  10755. source: "./media/characters/scales/taur-front.svg",
  10756. extra: 1,
  10757. bottom: 0.05
  10758. }
  10759. },
  10760. taurBack: {
  10761. height: math.unit(6, "feet"),
  10762. weight: math.unit(200, "lb"),
  10763. name: "Taur (Back)",
  10764. image: {
  10765. source: "./media/characters/scales/taur-back.svg",
  10766. extra: 1,
  10767. bottom: 0.08
  10768. }
  10769. },
  10770. anthro: {
  10771. height: math.unit(6 * 7 / 12, "feet"),
  10772. weight: math.unit(100, "lb"),
  10773. name: "Anthro",
  10774. image: {
  10775. source: "./media/characters/scales/anthro.svg",
  10776. extra: 1,
  10777. bottom: 0.06
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(12, "feet"),
  10785. default: true
  10786. },
  10787. ]
  10788. ))
  10789. characterMakers.push(() => makeCharacter(
  10790. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10791. {
  10792. front: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(150, "lb"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/koragos/front.svg",
  10798. extra: 841 / 794,
  10799. bottom: 0.035
  10800. }
  10801. },
  10802. back: {
  10803. height: math.unit(6, "feet"),
  10804. weight: math.unit(150, "lb"),
  10805. name: "Back",
  10806. image: {
  10807. source: "./media/characters/koragos/back.svg",
  10808. extra: 841 / 810,
  10809. bottom: 0.022
  10810. }
  10811. },
  10812. },
  10813. [
  10814. {
  10815. name: "Normal",
  10816. height: math.unit(6 + 11 / 12, "feet"),
  10817. default: true
  10818. },
  10819. {
  10820. name: "Macro",
  10821. height: math.unit(490, "feet")
  10822. },
  10823. {
  10824. name: "Megamacro",
  10825. height: math.unit(10, "miles")
  10826. },
  10827. {
  10828. name: "Gigamacro",
  10829. height: math.unit(50, "miles")
  10830. },
  10831. ]
  10832. ))
  10833. characterMakers.push(() => makeCharacter(
  10834. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10835. {
  10836. front: {
  10837. height: math.unit(6, "feet"),
  10838. weight: math.unit(250, "lb"),
  10839. name: "Front",
  10840. image: {
  10841. source: "./media/characters/xylrem/front.svg",
  10842. extra: 3323 / 3050,
  10843. bottom: 0.065
  10844. }
  10845. },
  10846. },
  10847. [
  10848. {
  10849. name: "Micro",
  10850. height: math.unit(4, "feet")
  10851. },
  10852. {
  10853. name: "Normal",
  10854. height: math.unit(16, "feet"),
  10855. default: true
  10856. },
  10857. {
  10858. name: "Macro",
  10859. height: math.unit(2720, "feet")
  10860. },
  10861. {
  10862. name: "Megamacro",
  10863. height: math.unit(25000, "miles")
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10869. {
  10870. front: {
  10871. height: math.unit(8, "feet"),
  10872. weight: math.unit(250, "kg"),
  10873. name: "Front",
  10874. image: {
  10875. source: "./media/characters/ikideru/front.svg",
  10876. extra: 930 / 870,
  10877. bottom: 0.087
  10878. }
  10879. },
  10880. back: {
  10881. height: math.unit(8, "feet"),
  10882. weight: math.unit(250, "kg"),
  10883. name: "Back",
  10884. image: {
  10885. source: "./media/characters/ikideru/back.svg",
  10886. extra: 919 / 852,
  10887. bottom: 0.055
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Rare",
  10894. height: math.unit(8, "feet"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Playful Loom",
  10899. height: math.unit(80, "feet")
  10900. },
  10901. {
  10902. name: "City Leaner",
  10903. height: math.unit(230, "feet")
  10904. },
  10905. {
  10906. name: "Megamacro",
  10907. height: math.unit(2500, "feet")
  10908. },
  10909. {
  10910. name: "Gigamacro",
  10911. height: math.unit(26400, "feet")
  10912. },
  10913. {
  10914. name: "Tectonic Shifter",
  10915. height: math.unit(1.7, "megameters")
  10916. },
  10917. {
  10918. name: "Planet Carer",
  10919. height: math.unit(21, "megameters")
  10920. },
  10921. {
  10922. name: "God",
  10923. height: math.unit(11157.22, "parsecs")
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(120, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/neo/front.svg"
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Micro",
  10942. height: math.unit(2, "inches"),
  10943. default: true
  10944. },
  10945. {
  10946. name: "Human Size",
  10947. height: math.unit(5 + 8 / 12, "feet")
  10948. },
  10949. ]
  10950. ))
  10951. characterMakers.push(() => makeCharacter(
  10952. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10953. {
  10954. front: {
  10955. height: math.unit(13 + 10 / 12, "feet"),
  10956. weight: math.unit(5320, "lb"),
  10957. name: "Front",
  10958. image: {
  10959. source: "./media/characters/chauncey-chantz/front.svg",
  10960. extra: 1587 / 1435,
  10961. bottom: 0.02
  10962. }
  10963. },
  10964. },
  10965. [
  10966. {
  10967. name: "Normal",
  10968. height: math.unit(13 + 10 / 12, "feet"),
  10969. default: true
  10970. },
  10971. {
  10972. name: "Macro",
  10973. height: math.unit(45, "feet")
  10974. },
  10975. {
  10976. name: "Megamacro",
  10977. height: math.unit(250, "miles")
  10978. },
  10979. {
  10980. name: "Planetary",
  10981. height: math.unit(10000, "miles")
  10982. },
  10983. {
  10984. name: "Galactic",
  10985. height: math.unit(40000, "parsecs")
  10986. },
  10987. {
  10988. name: "Universal",
  10989. height: math.unit(1, "yottameter")
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10995. {
  10996. front: {
  10997. height: math.unit(6, "feet"),
  10998. weight: math.unit(150, "lb"),
  10999. name: "Front",
  11000. image: {
  11001. source: "./media/characters/epifox/front.svg",
  11002. extra: 1,
  11003. bottom: 0.075
  11004. }
  11005. },
  11006. },
  11007. [
  11008. {
  11009. name: "Micro",
  11010. height: math.unit(6, "inches")
  11011. },
  11012. {
  11013. name: "Normal",
  11014. height: math.unit(12, "feet"),
  11015. default: true
  11016. },
  11017. {
  11018. name: "Macro",
  11019. height: math.unit(3810, "feet")
  11020. },
  11021. {
  11022. name: "Megamacro",
  11023. height: math.unit(500, "miles")
  11024. },
  11025. ]
  11026. ))
  11027. characterMakers.push(() => makeCharacter(
  11028. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11029. {
  11030. front: {
  11031. height: math.unit(1.8796, "m"),
  11032. weight: math.unit(230, "lb"),
  11033. name: "Front",
  11034. image: {
  11035. source: "./media/characters/colin-t/front.svg",
  11036. extra: 1272 / 1193,
  11037. bottom: 0.07
  11038. }
  11039. },
  11040. },
  11041. [
  11042. {
  11043. name: "Micro",
  11044. height: math.unit(0.571, "meters")
  11045. },
  11046. {
  11047. name: "Normal",
  11048. height: math.unit(1.8796, "meters"),
  11049. default: true
  11050. },
  11051. {
  11052. name: "Tall",
  11053. height: math.unit(4, "meters")
  11054. },
  11055. {
  11056. name: "Macro",
  11057. height: math.unit(67.241, "meters")
  11058. },
  11059. {
  11060. name: "Megamacro",
  11061. height: math.unit(371.856, "meters")
  11062. },
  11063. {
  11064. name: "Planetary",
  11065. height: math.unit(12631.5689, "km")
  11066. },
  11067. ]
  11068. ))
  11069. characterMakers.push(() => makeCharacter(
  11070. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11071. {
  11072. front: {
  11073. height: math.unit(1.85, "meters"),
  11074. weight: math.unit(80, "kg"),
  11075. name: "Front",
  11076. image: {
  11077. source: "./media/characters/matvei/front.svg",
  11078. extra: 614 / 594,
  11079. bottom: 0.01
  11080. }
  11081. },
  11082. },
  11083. [
  11084. {
  11085. name: "Normal",
  11086. height: math.unit(1.85, "meters"),
  11087. default: true
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11093. {
  11094. front: {
  11095. height: math.unit(5 + 9 / 12, "feet"),
  11096. weight: math.unit(70, "lb"),
  11097. name: "Front",
  11098. image: {
  11099. source: "./media/characters/quincy/front.svg",
  11100. extra: 3041 / 2751
  11101. }
  11102. },
  11103. back: {
  11104. height: math.unit(5 + 9 / 12, "feet"),
  11105. weight: math.unit(70, "lb"),
  11106. name: "Back",
  11107. image: {
  11108. source: "./media/characters/quincy/back.svg",
  11109. extra: 3041 / 2751
  11110. }
  11111. },
  11112. flying: {
  11113. height: math.unit(5 + 4 / 12, "feet"),
  11114. weight: math.unit(70, "lb"),
  11115. name: "Flying",
  11116. image: {
  11117. source: "./media/characters/quincy/flying.svg",
  11118. extra: 1044 / 930
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Micro",
  11125. height: math.unit(3, "cm")
  11126. },
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(5 + 9 / 12, "feet")
  11130. },
  11131. {
  11132. name: "Macro",
  11133. height: math.unit(200, "meters"),
  11134. default: true
  11135. },
  11136. {
  11137. name: "Megamacro",
  11138. height: math.unit(1000, "meters")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(4 + 7 / 12, "feet"),
  11147. weight: math.unit(150, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/vanrel/front.svg",
  11151. extra: 1,
  11152. bottom: 0.02
  11153. }
  11154. },
  11155. elemental: {
  11156. height: math.unit(3, "feet"),
  11157. weight: math.unit(150, "lb"),
  11158. name: "Elemental",
  11159. image: {
  11160. source: "./media/characters/vanrel/elemental.svg",
  11161. extra: 192.3 / 162.8,
  11162. bottom: 1.79 / 194.17
  11163. }
  11164. },
  11165. side: {
  11166. height: math.unit(4 + 7 / 12, "feet"),
  11167. weight: math.unit(150, "lb"),
  11168. name: "Side",
  11169. image: {
  11170. source: "./media/characters/vanrel/side.svg",
  11171. extra: 1,
  11172. bottom: 0.025
  11173. }
  11174. },
  11175. tome: {
  11176. height: math.unit(1.35, "feet"),
  11177. weight: math.unit(10, "lb"),
  11178. name: "Vanrel's Tome",
  11179. rename: true,
  11180. image: {
  11181. source: "./media/characters/vanrel/tome.svg"
  11182. }
  11183. },
  11184. beans: {
  11185. height: math.unit(0.89, "feet"),
  11186. name: "Beans",
  11187. image: {
  11188. source: "./media/characters/vanrel/beans.svg"
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(4 + 7 / 12, "feet"),
  11196. default: true
  11197. },
  11198. ]
  11199. ))
  11200. characterMakers.push(() => makeCharacter(
  11201. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11202. {
  11203. front: {
  11204. height: math.unit(7 + 5 / 12, "feet"),
  11205. weight: math.unit(150, "lb"),
  11206. name: "Front",
  11207. image: {
  11208. source: "./media/characters/kuiper-vanrel/front.svg",
  11209. extra: 1118 / 1068,
  11210. bottom: 0.09
  11211. }
  11212. },
  11213. foot: {
  11214. height: math.unit(0.55, "meters"),
  11215. name: "Foot",
  11216. image: {
  11217. source: "./media/characters/kuiper-vanrel/foot.svg",
  11218. }
  11219. },
  11220. battle: {
  11221. height: math.unit(6.824, "feet"),
  11222. weight: math.unit(150, "lb"),
  11223. name: "Battle",
  11224. image: {
  11225. source: "./media/characters/kuiper-vanrel/battle.svg",
  11226. extra: 1466 / 1327,
  11227. bottom: 29 / 1492.5
  11228. }
  11229. },
  11230. battleAlt: {
  11231. height: math.unit(6.824, "feet"),
  11232. weight: math.unit(150, "lb"),
  11233. name: "Battle (Alt)",
  11234. image: {
  11235. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11236. extra: 2081 / 1965,
  11237. bottom: 40 / 2121
  11238. }
  11239. },
  11240. },
  11241. [
  11242. {
  11243. name: "Normal",
  11244. height: math.unit(7 + 5 / 12, "feet"),
  11245. default: true
  11246. },
  11247. ]
  11248. ))
  11249. characterMakers.push(() => makeCharacter(
  11250. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11251. {
  11252. front: {
  11253. height: math.unit(8 + 5 / 12, "feet"),
  11254. weight: math.unit(150, "lb"),
  11255. name: "Front",
  11256. image: {
  11257. source: "./media/characters/keset-vanrel/front.svg",
  11258. extra: 1150 / 1084,
  11259. bottom: 0.05
  11260. }
  11261. },
  11262. hand: {
  11263. height: math.unit(0.6, "meters"),
  11264. name: "Hand",
  11265. image: {
  11266. source: "./media/characters/keset-vanrel/hand.svg"
  11267. }
  11268. },
  11269. foot: {
  11270. height: math.unit(0.94978, "meters"),
  11271. name: "Foot",
  11272. image: {
  11273. source: "./media/characters/keset-vanrel/foot.svg"
  11274. }
  11275. },
  11276. battle: {
  11277. height: math.unit(7.408, "feet"),
  11278. weight: math.unit(150, "lb"),
  11279. name: "Battle",
  11280. image: {
  11281. source: "./media/characters/keset-vanrel/battle.svg",
  11282. extra: 1890 / 1386,
  11283. bottom: 73.28 / 1970
  11284. }
  11285. },
  11286. },
  11287. [
  11288. {
  11289. name: "Normal",
  11290. height: math.unit(8 + 5 / 12, "feet"),
  11291. default: true
  11292. },
  11293. ]
  11294. ))
  11295. characterMakers.push(() => makeCharacter(
  11296. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11297. {
  11298. front: {
  11299. height: math.unit(6, "feet"),
  11300. weight: math.unit(150, "lb"),
  11301. name: "Front",
  11302. image: {
  11303. source: "./media/characters/neos/front.svg",
  11304. extra: 1696 / 992,
  11305. bottom: 0.14
  11306. }
  11307. },
  11308. },
  11309. [
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(54, "cm"),
  11313. default: true
  11314. },
  11315. {
  11316. name: "Macro",
  11317. height: math.unit(100, "m")
  11318. },
  11319. {
  11320. name: "Megamacro",
  11321. height: math.unit(10, "km")
  11322. },
  11323. {
  11324. name: "Megamacro+",
  11325. height: math.unit(100, "km")
  11326. },
  11327. {
  11328. name: "Gigamacro",
  11329. height: math.unit(100, "Mm")
  11330. },
  11331. {
  11332. name: "Teramacro",
  11333. height: math.unit(100, "Gm")
  11334. },
  11335. {
  11336. name: "Examacro",
  11337. height: math.unit(100, "Em")
  11338. },
  11339. {
  11340. name: "Godly",
  11341. height: math.unit(10000, "Ym")
  11342. },
  11343. {
  11344. name: "Beyond Godly",
  11345. height: math.unit(25, "multiverses")
  11346. },
  11347. ]
  11348. ))
  11349. characterMakers.push(() => makeCharacter(
  11350. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11351. {
  11352. feminine: {
  11353. height: math.unit(5, "feet"),
  11354. weight: math.unit(100, "lb"),
  11355. name: "Feminine",
  11356. image: {
  11357. source: "./media/characters/sammy-mouse/feminine.svg",
  11358. extra: 2526 / 2425,
  11359. bottom: 0.123
  11360. }
  11361. },
  11362. masculine: {
  11363. height: math.unit(5, "feet"),
  11364. weight: math.unit(100, "lb"),
  11365. name: "Masculine",
  11366. image: {
  11367. source: "./media/characters/sammy-mouse/masculine.svg",
  11368. extra: 2526 / 2425,
  11369. bottom: 0.123
  11370. }
  11371. },
  11372. },
  11373. [
  11374. {
  11375. name: "Micro",
  11376. height: math.unit(5, "inches")
  11377. },
  11378. {
  11379. name: "Normal",
  11380. height: math.unit(5, "feet"),
  11381. default: true
  11382. },
  11383. {
  11384. name: "Macro",
  11385. height: math.unit(60, "feet")
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11391. {
  11392. front: {
  11393. height: math.unit(4, "feet"),
  11394. weight: math.unit(50, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/kole/front.svg",
  11398. extra: 1423 / 1303,
  11399. bottom: 0.025
  11400. }
  11401. },
  11402. back: {
  11403. height: math.unit(4, "feet"),
  11404. weight: math.unit(50, "lb"),
  11405. name: "Back",
  11406. image: {
  11407. source: "./media/characters/kole/back.svg",
  11408. extra: 1426 / 1280,
  11409. bottom: 0.02
  11410. }
  11411. },
  11412. },
  11413. [
  11414. {
  11415. name: "Normal",
  11416. height: math.unit(4, "feet"),
  11417. default: true
  11418. },
  11419. ]
  11420. ))
  11421. characterMakers.push(() => makeCharacter(
  11422. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11423. {
  11424. front: {
  11425. height: math.unit(2 + 6 / 12, "feet"),
  11426. weight: math.unit(20, "lb"),
  11427. name: "Front",
  11428. image: {
  11429. source: "./media/characters/rufran/front.svg",
  11430. extra: 2041 / 1839,
  11431. bottom: 0.055
  11432. }
  11433. },
  11434. back: {
  11435. height: math.unit(2 + 6 / 12, "feet"),
  11436. weight: math.unit(20, "lb"),
  11437. name: "Back",
  11438. image: {
  11439. source: "./media/characters/rufran/back.svg",
  11440. extra: 2054 / 1839,
  11441. bottom: 0.01
  11442. }
  11443. },
  11444. hand: {
  11445. height: math.unit(0.2166, "meters"),
  11446. name: "Hand",
  11447. image: {
  11448. source: "./media/characters/rufran/hand.svg"
  11449. }
  11450. },
  11451. foot: {
  11452. height: math.unit(0.185, "meters"),
  11453. name: "Foot",
  11454. image: {
  11455. source: "./media/characters/rufran/foot.svg"
  11456. }
  11457. },
  11458. },
  11459. [
  11460. {
  11461. name: "Micro",
  11462. height: math.unit(1, "inch")
  11463. },
  11464. {
  11465. name: "Normal",
  11466. height: math.unit(2 + 6 / 12, "feet"),
  11467. default: true
  11468. },
  11469. {
  11470. name: "Big",
  11471. height: math.unit(60, "feet")
  11472. },
  11473. {
  11474. name: "Macro",
  11475. height: math.unit(325, "feet")
  11476. },
  11477. ]
  11478. ))
  11479. characterMakers.push(() => makeCharacter(
  11480. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11481. {
  11482. front: {
  11483. height: math.unit(0.3, "meters"),
  11484. weight: math.unit(3.5, "kg"),
  11485. name: "Front",
  11486. image: {
  11487. source: "./media/characters/chip/front.svg",
  11488. extra: 748 / 674
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Micro",
  11495. height: math.unit(1, "inch"),
  11496. default: true
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11502. {
  11503. side: {
  11504. height: math.unit(2.3, "meters"),
  11505. weight: math.unit(3500, "lb"),
  11506. name: "Side",
  11507. image: {
  11508. source: "./media/characters/torvid/side.svg",
  11509. extra: 1972 / 722,
  11510. bottom: 0.035
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(2.3, "meters"),
  11518. default: true
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(2, "meters"),
  11527. weight: math.unit(150.5, "kg"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/susan/front.svg",
  11531. extra: 693 / 635,
  11532. bottom: 0.05
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Megamacro",
  11539. height: math.unit(505, "miles"),
  11540. default: true
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(150, "lb"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/raindrops/front.svg",
  11553. extra: 2655 / 2461,
  11554. bottom: 49 / 2705
  11555. }
  11556. },
  11557. back: {
  11558. height: math.unit(6, "feet"),
  11559. weight: math.unit(150, "lb"),
  11560. name: "Back",
  11561. image: {
  11562. source: "./media/characters/raindrops/back.svg",
  11563. extra: 2574 / 2400,
  11564. bottom: 65 / 2634
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Micro",
  11571. height: math.unit(6, "inches")
  11572. },
  11573. {
  11574. name: "Normal",
  11575. height: math.unit(6 + 2 / 12, "feet")
  11576. },
  11577. {
  11578. name: "Macro",
  11579. height: math.unit(131, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Megamacro",
  11584. height: math.unit(15, "miles")
  11585. },
  11586. {
  11587. name: "Gigamacro",
  11588. height: math.unit(4000, "miles")
  11589. },
  11590. {
  11591. name: "Teramacro",
  11592. height: math.unit(315000, "miles")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(2.794, "meters"),
  11601. weight: math.unit(325, "kg"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/tezwa/front.svg",
  11605. extra: 2083 / 1906,
  11606. bottom: 0.031
  11607. }
  11608. },
  11609. foot: {
  11610. height: math.unit(0.687, "meters"),
  11611. name: "Foot",
  11612. image: {
  11613. source: "./media/characters/tezwa/foot.svg"
  11614. }
  11615. },
  11616. },
  11617. [
  11618. {
  11619. name: "Normal",
  11620. height: math.unit(9 + 2 / 12, "feet"),
  11621. default: true
  11622. },
  11623. ]
  11624. ))
  11625. characterMakers.push(() => makeCharacter(
  11626. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11627. {
  11628. front: {
  11629. height: math.unit(58, "feet"),
  11630. weight: math.unit(89000, "lb"),
  11631. name: "Front",
  11632. image: {
  11633. source: "./media/characters/typhus/front.svg",
  11634. extra: 816 / 800,
  11635. bottom: 0.065
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Macro",
  11642. height: math.unit(58, "feet"),
  11643. default: true
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11649. {
  11650. front: {
  11651. height: math.unit(12, "feet"),
  11652. weight: math.unit(6, "tonnes"),
  11653. name: "Front",
  11654. image: {
  11655. source: "./media/characters/lyra-von-wulf/front.svg",
  11656. extra: 1,
  11657. bottom: 0.10
  11658. }
  11659. },
  11660. frontMecha: {
  11661. height: math.unit(12, "feet"),
  11662. weight: math.unit(12, "tonnes"),
  11663. name: "Front (Mecha)",
  11664. image: {
  11665. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11666. extra: 1,
  11667. bottom: 0.042
  11668. }
  11669. },
  11670. maw: {
  11671. height: math.unit(2.2, "feet"),
  11672. name: "Maw",
  11673. image: {
  11674. source: "./media/characters/lyra-von-wulf/maw.svg"
  11675. }
  11676. },
  11677. },
  11678. [
  11679. {
  11680. name: "Normal",
  11681. height: math.unit(12, "feet"),
  11682. default: true
  11683. },
  11684. {
  11685. name: "Classic",
  11686. height: math.unit(50, "feet")
  11687. },
  11688. {
  11689. name: "Macro",
  11690. height: math.unit(500, "feet")
  11691. },
  11692. {
  11693. name: "Megamacro",
  11694. height: math.unit(1, "mile")
  11695. },
  11696. {
  11697. name: "Gigamacro",
  11698. height: math.unit(400, "miles")
  11699. },
  11700. {
  11701. name: "Teramacro",
  11702. height: math.unit(22000, "miles")
  11703. },
  11704. {
  11705. name: "Solarmacro",
  11706. height: math.unit(8600000, "miles")
  11707. },
  11708. {
  11709. name: "Galactic",
  11710. height: math.unit(1057000, "lightyears")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(6 + 10 / 12, "feet"),
  11719. weight: math.unit(150, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/dixon/front.svg",
  11723. extra: 3361 / 3209,
  11724. bottom: 0.01
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(6 + 10 / 12, "feet"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Big",
  11736. height: math.unit(12, "meters")
  11737. },
  11738. {
  11739. name: "Macro",
  11740. height: math.unit(500, "meters")
  11741. },
  11742. {
  11743. name: "Megamacro",
  11744. height: math.unit(2, "km")
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11750. {
  11751. front: {
  11752. height: math.unit(185, "cm"),
  11753. weight: math.unit(68, "kg"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/kauko/front.svg",
  11757. extra: 1455 / 1421,
  11758. bottom: 0.03
  11759. }
  11760. },
  11761. back: {
  11762. height: math.unit(185, "cm"),
  11763. weight: math.unit(68, "kg"),
  11764. name: "Back",
  11765. image: {
  11766. source: "./media/characters/kauko/back.svg",
  11767. extra: 1455 / 1421,
  11768. bottom: 0.004
  11769. }
  11770. },
  11771. },
  11772. [
  11773. {
  11774. name: "Normal",
  11775. height: math.unit(185, "cm"),
  11776. default: true
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11782. {
  11783. front: {
  11784. height: math.unit(6, "feet"),
  11785. weight: math.unit(150, "kg"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/varg/front.svg",
  11789. extra: 1108 / 1018,
  11790. bottom: 0.0375
  11791. }
  11792. },
  11793. },
  11794. [
  11795. {
  11796. name: "Normal",
  11797. height: math.unit(5, "meters")
  11798. },
  11799. {
  11800. name: "Macro",
  11801. height: math.unit(200, "meters")
  11802. },
  11803. {
  11804. name: "Megamacro",
  11805. height: math.unit(20, "kilometers")
  11806. },
  11807. {
  11808. name: "True Size",
  11809. height: math.unit(211, "km"),
  11810. default: true
  11811. },
  11812. {
  11813. name: "Gigamacro",
  11814. height: math.unit(1000, "km")
  11815. },
  11816. {
  11817. name: "Gigamacro+",
  11818. height: math.unit(8000, "km")
  11819. },
  11820. {
  11821. name: "Teramacro",
  11822. height: math.unit(1000000, "km")
  11823. },
  11824. ]
  11825. ))
  11826. characterMakers.push(() => makeCharacter(
  11827. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11828. {
  11829. front: {
  11830. height: math.unit(7 + 7 / 12, "feet"),
  11831. weight: math.unit(267, "lb"),
  11832. name: "Front",
  11833. image: {
  11834. source: "./media/characters/dayza/front.svg",
  11835. extra: 1262 / 1200,
  11836. bottom: 0.035
  11837. }
  11838. },
  11839. side: {
  11840. height: math.unit(7 + 7 / 12, "feet"),
  11841. weight: math.unit(267, "lb"),
  11842. name: "Side",
  11843. image: {
  11844. source: "./media/characters/dayza/side.svg",
  11845. extra: 1295 / 1245,
  11846. bottom: 0.05
  11847. }
  11848. },
  11849. back: {
  11850. height: math.unit(7 + 7 / 12, "feet"),
  11851. weight: math.unit(267, "lb"),
  11852. name: "Back",
  11853. image: {
  11854. source: "./media/characters/dayza/back.svg",
  11855. extra: 1241 / 1170
  11856. }
  11857. },
  11858. },
  11859. [
  11860. {
  11861. name: "Normal",
  11862. height: math.unit(7 + 7 / 12, "feet"),
  11863. default: true
  11864. },
  11865. {
  11866. name: "Macro",
  11867. height: math.unit(155, "feet")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11873. {
  11874. front: {
  11875. height: math.unit(6 + 5 / 12, "feet"),
  11876. weight: math.unit(160, "lb"),
  11877. name: "Front",
  11878. image: {
  11879. source: "./media/characters/xanthos/front.svg",
  11880. extra: 1,
  11881. bottom: 0.04
  11882. }
  11883. },
  11884. back: {
  11885. height: math.unit(6 + 5 / 12, "feet"),
  11886. weight: math.unit(160, "lb"),
  11887. name: "Back",
  11888. image: {
  11889. source: "./media/characters/xanthos/back.svg",
  11890. extra: 1,
  11891. bottom: 0.03
  11892. }
  11893. },
  11894. hand: {
  11895. height: math.unit(0.928, "feet"),
  11896. name: "Hand",
  11897. image: {
  11898. source: "./media/characters/xanthos/hand.svg"
  11899. }
  11900. },
  11901. foot: {
  11902. height: math.unit(1.286, "feet"),
  11903. name: "Foot",
  11904. image: {
  11905. source: "./media/characters/xanthos/foot.svg"
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(6 + 5 / 12, "feet"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Normal+",
  11917. height: math.unit(6, "meters")
  11918. },
  11919. {
  11920. name: "Macro",
  11921. height: math.unit(40, "feet")
  11922. },
  11923. {
  11924. name: "Macro+",
  11925. height: math.unit(200, "meters")
  11926. },
  11927. {
  11928. name: "Megamacro",
  11929. height: math.unit(20, "km")
  11930. },
  11931. {
  11932. name: "Megamacro+",
  11933. height: math.unit(100, "km")
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(6 + 3 / 12, "feet"),
  11942. weight: math.unit(215, "lb"),
  11943. name: "Front",
  11944. image: {
  11945. source: "./media/characters/grynn/front.svg",
  11946. extra: 4627 / 4209,
  11947. bottom: 0.047
  11948. }
  11949. },
  11950. },
  11951. [
  11952. {
  11953. name: "Micro",
  11954. height: math.unit(6, "inches")
  11955. },
  11956. {
  11957. name: "Normal",
  11958. height: math.unit(6 + 3 / 12, "feet"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Big",
  11963. height: math.unit(104, "feet")
  11964. },
  11965. {
  11966. name: "Macro",
  11967. height: math.unit(944, "feet")
  11968. },
  11969. {
  11970. name: "Macro+",
  11971. height: math.unit(9480, "feet")
  11972. },
  11973. {
  11974. name: "Megamacro",
  11975. height: math.unit(78752, "feet")
  11976. },
  11977. {
  11978. name: "Megamacro+",
  11979. height: math.unit(630128, "feet")
  11980. },
  11981. {
  11982. name: "Megamacro++",
  11983. height: math.unit(3150695, "feet")
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11989. {
  11990. front: {
  11991. height: math.unit(7 + 5 / 12, "feet"),
  11992. weight: math.unit(450, "lb"),
  11993. name: "Front",
  11994. image: {
  11995. source: "./media/characters/mocha-aura/front.svg",
  11996. extra: 1907 / 1817,
  11997. bottom: 0.04
  11998. }
  11999. },
  12000. back: {
  12001. height: math.unit(7 + 5 / 12, "feet"),
  12002. weight: math.unit(450, "lb"),
  12003. name: "Back",
  12004. image: {
  12005. source: "./media/characters/mocha-aura/back.svg",
  12006. extra: 1900 / 1825,
  12007. bottom: 0.045
  12008. }
  12009. },
  12010. },
  12011. [
  12012. {
  12013. name: "Nano",
  12014. height: math.unit(1, "nm")
  12015. },
  12016. {
  12017. name: "Megamicro",
  12018. height: math.unit(1, "mm")
  12019. },
  12020. {
  12021. name: "Micro",
  12022. height: math.unit(3, "inches")
  12023. },
  12024. {
  12025. name: "Normal",
  12026. height: math.unit(7 + 5 / 12, "feet"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Macro",
  12031. height: math.unit(30, "feet")
  12032. },
  12033. {
  12034. name: "Megamacro",
  12035. height: math.unit(3500, "feet")
  12036. },
  12037. {
  12038. name: "Teramacro",
  12039. height: math.unit(500000, "miles")
  12040. },
  12041. {
  12042. name: "Petamacro",
  12043. height: math.unit(50000000000000000, "parsecs")
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(6, "feet"),
  12052. weight: math.unit(150, "lb"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/ilisha-devya/front.svg",
  12056. extra: 1,
  12057. bottom: 0.175
  12058. }
  12059. },
  12060. back: {
  12061. height: math.unit(6, "feet"),
  12062. weight: math.unit(150, "lb"),
  12063. name: "Back",
  12064. image: {
  12065. source: "./media/characters/ilisha-devya/back.svg",
  12066. extra: 1,
  12067. bottom: 0.015
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Macro",
  12074. height: math.unit(500, "feet"),
  12075. default: true
  12076. },
  12077. {
  12078. name: "Megamacro",
  12079. height: math.unit(10, "miles")
  12080. },
  12081. {
  12082. name: "Gigamacro",
  12083. height: math.unit(100000, "miles")
  12084. },
  12085. {
  12086. name: "Examacro",
  12087. height: math.unit(1e9, "lightyears")
  12088. },
  12089. {
  12090. name: "Omniversal",
  12091. height: math.unit(1e33, "lightyears")
  12092. },
  12093. {
  12094. name: "Beyond Infinite",
  12095. height: math.unit(1e100, "lightyears")
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12101. {
  12102. Side: {
  12103. height: math.unit(6, "feet"),
  12104. weight: math.unit(150, "lb"),
  12105. name: "Side",
  12106. image: {
  12107. source: "./media/characters/mira/side.svg",
  12108. extra: 900 / 799,
  12109. bottom: 0.02
  12110. }
  12111. },
  12112. },
  12113. [
  12114. {
  12115. name: "Human Size",
  12116. height: math.unit(6, "feet")
  12117. },
  12118. {
  12119. name: "Macro",
  12120. height: math.unit(100, "feet"),
  12121. default: true
  12122. },
  12123. {
  12124. name: "Megamacro",
  12125. height: math.unit(10, "miles")
  12126. },
  12127. {
  12128. name: "Gigamacro",
  12129. height: math.unit(25000, "miles")
  12130. },
  12131. {
  12132. name: "Teramacro",
  12133. height: math.unit(300, "AU")
  12134. },
  12135. {
  12136. name: "Full Size",
  12137. height: math.unit(4.5e10, "lightyears")
  12138. },
  12139. ]
  12140. ))
  12141. characterMakers.push(() => makeCharacter(
  12142. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12143. {
  12144. front: {
  12145. height: math.unit(6, "feet"),
  12146. weight: math.unit(150, "lb"),
  12147. name: "Front",
  12148. image: {
  12149. source: "./media/characters/holly/front.svg",
  12150. extra: 639 / 606
  12151. }
  12152. },
  12153. back: {
  12154. height: math.unit(6, "feet"),
  12155. weight: math.unit(150, "lb"),
  12156. name: "Back",
  12157. image: {
  12158. source: "./media/characters/holly/back.svg",
  12159. extra: 623 / 598
  12160. }
  12161. },
  12162. frontWorking: {
  12163. height: math.unit(6, "feet"),
  12164. weight: math.unit(150, "lb"),
  12165. name: "Front (Working)",
  12166. image: {
  12167. source: "./media/characters/holly/front-working.svg",
  12168. extra: 607 / 577,
  12169. bottom: 0.048
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Normal",
  12176. height: math.unit(12 + 3 / 12, "feet"),
  12177. default: true
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(6, "feet"),
  12186. weight: math.unit(150, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/porter/front.svg",
  12190. extra: 1,
  12191. bottom: 0.01
  12192. }
  12193. },
  12194. frontRobes: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Front (Robes)",
  12198. image: {
  12199. source: "./media/characters/porter/front-robes.svg",
  12200. extra: 1.01,
  12201. bottom: 0.01
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(11 + 9 / 12, "feet"),
  12209. default: true
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12215. {
  12216. legendary: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(150, "lb"),
  12219. name: "Legendary",
  12220. image: {
  12221. source: "./media/characters/lucy/legendary.svg",
  12222. extra: 1355 / 1100,
  12223. bottom: 0.045
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Legendary",
  12230. height: math.unit(86882 * 2, "miles"),
  12231. default: true
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12237. {
  12238. front: {
  12239. height: math.unit(6, "feet"),
  12240. weight: math.unit(150, "lb"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/drusilla/front.svg",
  12244. extra: 678 / 635,
  12245. bottom: 0.03
  12246. }
  12247. },
  12248. back: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(150, "lb"),
  12251. name: "Back",
  12252. image: {
  12253. source: "./media/characters/drusilla/back.svg",
  12254. extra: 678 / 635,
  12255. bottom: 0.005
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Macro",
  12262. height: math.unit(100, "feet")
  12263. },
  12264. {
  12265. name: "Canon Height",
  12266. height: math.unit(2000, "feet"),
  12267. default: true
  12268. },
  12269. ]
  12270. ))
  12271. characterMakers.push(() => makeCharacter(
  12272. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12273. {
  12274. front: {
  12275. height: math.unit(6, "feet"),
  12276. weight: math.unit(180, "lb"),
  12277. name: "Front",
  12278. image: {
  12279. source: "./media/characters/renard-thatch/front.svg",
  12280. extra: 2411 / 2275,
  12281. bottom: 0.01
  12282. }
  12283. },
  12284. frontPosing: {
  12285. height: math.unit(6, "feet"),
  12286. weight: math.unit(180, "lb"),
  12287. name: "Front (Posing)",
  12288. image: {
  12289. source: "./media/characters/renard-thatch/front-posing.svg",
  12290. extra: 2381 / 2261,
  12291. bottom: 0.01
  12292. }
  12293. },
  12294. back: {
  12295. height: math.unit(6, "feet"),
  12296. weight: math.unit(180, "lb"),
  12297. name: "Back",
  12298. image: {
  12299. source: "./media/characters/renard-thatch/back.svg",
  12300. extra: 2428 / 2288
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Micro",
  12307. height: math.unit(3, "inches")
  12308. },
  12309. {
  12310. name: "Default",
  12311. height: math.unit(6, "feet"),
  12312. default: true
  12313. },
  12314. {
  12315. name: "Macro",
  12316. height: math.unit(75, "feet")
  12317. },
  12318. ]
  12319. ))
  12320. characterMakers.push(() => makeCharacter(
  12321. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12322. {
  12323. front: {
  12324. height: math.unit(1450, "feet"),
  12325. weight: math.unit(1.21e6, "tons"),
  12326. name: "Front",
  12327. image: {
  12328. source: "./media/characters/sekvra/front.svg",
  12329. extra: 1,
  12330. bottom: 0.03
  12331. }
  12332. },
  12333. frontClothed: {
  12334. height: math.unit(1450, "feet"),
  12335. weight: math.unit(1.21e6, "tons"),
  12336. name: "Front (Clothed)",
  12337. image: {
  12338. source: "./media/characters/sekvra/front-clothed.svg",
  12339. extra: 1,
  12340. bottom: 0.03
  12341. }
  12342. },
  12343. side: {
  12344. height: math.unit(1450, "feet"),
  12345. weight: math.unit(1.21e6, "tons"),
  12346. name: "Side",
  12347. image: {
  12348. source: "./media/characters/sekvra/side.svg",
  12349. extra: 1,
  12350. bottom: 0.025
  12351. }
  12352. },
  12353. back: {
  12354. height: math.unit(1450, "feet"),
  12355. weight: math.unit(1.21e6, "tons"),
  12356. name: "Back",
  12357. image: {
  12358. source: "./media/characters/sekvra/back.svg",
  12359. extra: 1,
  12360. bottom: 0.005
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Macro",
  12367. height: math.unit(1450, "feet"),
  12368. default: true
  12369. },
  12370. {
  12371. name: "Megamacro",
  12372. height: math.unit(15000, "feet")
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(150, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/carmine/front.svg",
  12385. extra: 1,
  12386. bottom: 0.035
  12387. }
  12388. },
  12389. frontArmor: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(150, "lb"),
  12392. name: "Front (Armor)",
  12393. image: {
  12394. source: "./media/characters/carmine/front-armor.svg",
  12395. extra: 1,
  12396. bottom: 0.035
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Large",
  12403. height: math.unit(1, "mile")
  12404. },
  12405. {
  12406. name: "Huge",
  12407. height: math.unit(40, "miles"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Colossal",
  12412. height: math.unit(2500, "miles")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/elyssia/front.svg",
  12425. extra: 2201 / 2035,
  12426. bottom: 0.05
  12427. }
  12428. },
  12429. frontClothed: {
  12430. height: math.unit(6, "feet"),
  12431. weight: math.unit(150, "lb"),
  12432. name: "Front (Clothed)",
  12433. image: {
  12434. source: "./media/characters/elyssia/front-clothed.svg",
  12435. extra: 2201 / 2035,
  12436. bottom: 0.05
  12437. }
  12438. },
  12439. back: {
  12440. height: math.unit(6, "feet"),
  12441. weight: math.unit(150, "lb"),
  12442. name: "Back",
  12443. image: {
  12444. source: "./media/characters/elyssia/back.svg",
  12445. extra: 2201 / 2035,
  12446. bottom: 0.013
  12447. }
  12448. },
  12449. },
  12450. [
  12451. {
  12452. name: "Smaller",
  12453. height: math.unit(150, "feet")
  12454. },
  12455. {
  12456. name: "Standard",
  12457. height: math.unit(1400, "feet"),
  12458. default: true
  12459. },
  12460. {
  12461. name: "Distracted",
  12462. height: math.unit(15000, "feet")
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12468. {
  12469. front: {
  12470. height: math.unit(7 + 4 / 12, "feet"),
  12471. weight: math.unit(500, "lb"),
  12472. name: "Front",
  12473. image: {
  12474. source: "./media/characters/geno-maxwell/front.svg",
  12475. extra: 2207 / 2040,
  12476. bottom: 0.015
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Micro",
  12483. height: math.unit(3, "inches")
  12484. },
  12485. {
  12486. name: "Normal",
  12487. height: math.unit(7 + 4 / 12, "feet"),
  12488. default: true
  12489. },
  12490. {
  12491. name: "Macro",
  12492. height: math.unit(220, "feet")
  12493. },
  12494. {
  12495. name: "Megamacro",
  12496. height: math.unit(11, "miles")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(7 + 4 / 12, "feet"),
  12505. weight: math.unit(500, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/regena-maxwell/front.svg",
  12509. extra: 3115 / 2770,
  12510. bottom: 0.02
  12511. }
  12512. },
  12513. },
  12514. [
  12515. {
  12516. name: "Normal",
  12517. height: math.unit(7 + 4 / 12, "feet"),
  12518. default: true
  12519. },
  12520. {
  12521. name: "Macro",
  12522. height: math.unit(220, "feet")
  12523. },
  12524. {
  12525. name: "Megamacro",
  12526. height: math.unit(11, "miles")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12532. {
  12533. front: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(150, "lb"),
  12536. name: "Front",
  12537. image: {
  12538. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12539. extra: 860 / 690,
  12540. bottom: 0.03
  12541. }
  12542. },
  12543. },
  12544. [
  12545. {
  12546. name: "Normal",
  12547. height: math.unit(1.7, "meters"),
  12548. default: true
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/quilly/front.svg",
  12561. extra: 890 / 776
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Gigamacro",
  12568. height: math.unit(404090, "miles"),
  12569. default: true
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12575. {
  12576. front: {
  12577. height: math.unit(7 + 8 / 12, "feet"),
  12578. weight: math.unit(350, "lb"),
  12579. name: "Front",
  12580. image: {
  12581. source: "./media/characters/tempest/front.svg",
  12582. extra: 1175 / 1086,
  12583. bottom: 0.02
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Normal",
  12590. height: math.unit(7 + 8 / 12, "feet"),
  12591. default: true
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12597. {
  12598. side: {
  12599. height: math.unit(4 + 5 / 12, "feet"),
  12600. weight: math.unit(80, "lb"),
  12601. name: "Side",
  12602. image: {
  12603. source: "./media/characters/rodger/side.svg",
  12604. extra: 1235 / 1118
  12605. }
  12606. },
  12607. },
  12608. [
  12609. {
  12610. name: "Micro",
  12611. height: math.unit(1, "inch")
  12612. },
  12613. {
  12614. name: "Normal",
  12615. height: math.unit(4 + 5 / 12, "feet"),
  12616. default: true
  12617. },
  12618. {
  12619. name: "Macro",
  12620. height: math.unit(120, "feet")
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12626. {
  12627. front: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(150, "lb"),
  12630. name: "Front",
  12631. image: {
  12632. source: "./media/characters/danyel/front.svg",
  12633. extra: 1185 / 1123,
  12634. bottom: 0.05
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Shrunken",
  12641. height: math.unit(0.5, "mm")
  12642. },
  12643. {
  12644. name: "Micro",
  12645. height: math.unit(1, "mm"),
  12646. default: true
  12647. },
  12648. {
  12649. name: "Upsized",
  12650. height: math.unit(5 + 5 / 12, "feet")
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(5 + 6 / 12, "feet"),
  12659. weight: math.unit(200, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/vivian-bijoux/front.svg",
  12663. extra: 1,
  12664. bottom: 0.072
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(5 + 6 / 12, "feet"),
  12672. default: true
  12673. },
  12674. {
  12675. name: "Bad Dream",
  12676. height: math.unit(500, "feet")
  12677. },
  12678. {
  12679. name: "Nightmare",
  12680. height: math.unit(500, "miles")
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12686. {
  12687. front: {
  12688. height: math.unit(6 + 1 / 12, "feet"),
  12689. weight: math.unit(260, "lb"),
  12690. name: "Front",
  12691. image: {
  12692. source: "./media/characters/zeta/front.svg",
  12693. extra: 1968 / 1889,
  12694. bottom: 0.06
  12695. }
  12696. },
  12697. back: {
  12698. height: math.unit(6 + 1 / 12, "feet"),
  12699. weight: math.unit(260, "lb"),
  12700. name: "Back",
  12701. image: {
  12702. source: "./media/characters/zeta/back.svg",
  12703. extra: 1944 / 1858,
  12704. bottom: 0.03
  12705. }
  12706. },
  12707. hand: {
  12708. height: math.unit(1.112, "feet"),
  12709. name: "Hand",
  12710. image: {
  12711. source: "./media/characters/zeta/hand.svg"
  12712. }
  12713. },
  12714. foot: {
  12715. height: math.unit(1.48, "feet"),
  12716. name: "Foot",
  12717. image: {
  12718. source: "./media/characters/zeta/foot.svg"
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Micro",
  12725. height: math.unit(6, "inches")
  12726. },
  12727. {
  12728. name: "Normal",
  12729. height: math.unit(6 + 1 / 12, "feet"),
  12730. default: true
  12731. },
  12732. {
  12733. name: "Macro",
  12734. height: math.unit(20, "feet")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(6, "feet"),
  12743. weight: math.unit(150, "lb"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/jamie-larsen/front.svg",
  12747. extra: 962 / 933,
  12748. bottom: 0.02
  12749. }
  12750. },
  12751. back: {
  12752. height: math.unit(6, "feet"),
  12753. weight: math.unit(150, "lb"),
  12754. name: "Back",
  12755. image: {
  12756. source: "./media/characters/jamie-larsen/back.svg",
  12757. extra: 997 / 946
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Macro",
  12764. height: math.unit(28 + 7 / 12, "feet"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Macro+",
  12769. height: math.unit(180, "feet")
  12770. },
  12771. {
  12772. name: "Megamacro",
  12773. height: math.unit(10, "miles")
  12774. },
  12775. {
  12776. name: "Gigamacro",
  12777. height: math.unit(200000, "miles")
  12778. },
  12779. ]
  12780. ))
  12781. characterMakers.push(() => makeCharacter(
  12782. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12783. {
  12784. front: {
  12785. height: math.unit(6, "feet"),
  12786. weight: math.unit(120, "lb"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/vance/front.svg",
  12790. extra: 1980 / 1890,
  12791. bottom: 0.09
  12792. }
  12793. },
  12794. back: {
  12795. height: math.unit(6, "feet"),
  12796. weight: math.unit(120, "lb"),
  12797. name: "Back",
  12798. image: {
  12799. source: "./media/characters/vance/back.svg",
  12800. extra: 2081 / 1994,
  12801. bottom: 0.014
  12802. }
  12803. },
  12804. hand: {
  12805. height: math.unit(0.88, "feet"),
  12806. name: "Hand",
  12807. image: {
  12808. source: "./media/characters/vance/hand.svg"
  12809. }
  12810. },
  12811. foot: {
  12812. height: math.unit(0.64, "feet"),
  12813. name: "Foot",
  12814. image: {
  12815. source: "./media/characters/vance/foot.svg"
  12816. }
  12817. },
  12818. },
  12819. [
  12820. {
  12821. name: "Small",
  12822. height: math.unit(90, "feet"),
  12823. default: true
  12824. },
  12825. {
  12826. name: "Macro",
  12827. height: math.unit(100, "meters")
  12828. },
  12829. {
  12830. name: "Megamacro",
  12831. height: math.unit(15, "miles")
  12832. },
  12833. ]
  12834. ))
  12835. characterMakers.push(() => makeCharacter(
  12836. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12837. {
  12838. front: {
  12839. height: math.unit(6, "feet"),
  12840. weight: math.unit(180, "lb"),
  12841. name: "Front",
  12842. image: {
  12843. source: "./media/characters/xochitl/front.svg",
  12844. extra: 2297 / 2261,
  12845. bottom: 0.065
  12846. }
  12847. },
  12848. back: {
  12849. height: math.unit(6, "feet"),
  12850. weight: math.unit(180, "lb"),
  12851. name: "Back",
  12852. image: {
  12853. source: "./media/characters/xochitl/back.svg",
  12854. extra: 2386 / 2354,
  12855. bottom: 0.01
  12856. }
  12857. },
  12858. foot: {
  12859. height: math.unit(6 / 5 * 1.15, "feet"),
  12860. weight: math.unit(150, "lb"),
  12861. name: "Foot",
  12862. image: {
  12863. source: "./media/characters/xochitl/foot.svg"
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Macro",
  12870. height: math.unit(80, "feet")
  12871. },
  12872. {
  12873. name: "Macro+",
  12874. height: math.unit(400, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Gigamacro",
  12879. height: math.unit(80000, "miles")
  12880. },
  12881. {
  12882. name: "Gigamacro+",
  12883. height: math.unit(400000, "miles")
  12884. },
  12885. {
  12886. name: "Teramacro",
  12887. height: math.unit(300, "AU")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(150, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/vincent/front.svg",
  12900. extra: 1130 / 1080,
  12901. bottom: 0.055
  12902. }
  12903. },
  12904. beak: {
  12905. height: math.unit(6 * 0.1, "feet"),
  12906. name: "Beak",
  12907. image: {
  12908. source: "./media/characters/vincent/beak.svg"
  12909. }
  12910. },
  12911. hand: {
  12912. height: math.unit(6 * 0.85, "feet"),
  12913. weight: math.unit(150, "lb"),
  12914. name: "Hand",
  12915. image: {
  12916. source: "./media/characters/vincent/hand.svg"
  12917. }
  12918. },
  12919. foot: {
  12920. height: math.unit(6 * 0.19, "feet"),
  12921. weight: math.unit(150, "lb"),
  12922. name: "Foot",
  12923. image: {
  12924. source: "./media/characters/vincent/foot.svg"
  12925. }
  12926. },
  12927. },
  12928. [
  12929. {
  12930. name: "Base",
  12931. height: math.unit(6 + 5 / 12, "feet"),
  12932. default: true
  12933. },
  12934. {
  12935. name: "Macro",
  12936. height: math.unit(300, "feet")
  12937. },
  12938. {
  12939. name: "Megamacro",
  12940. height: math.unit(2, "miles")
  12941. },
  12942. {
  12943. name: "Gigamacro",
  12944. height: math.unit(1000, "miles")
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12950. {
  12951. front: {
  12952. height: math.unit(6 + 2 / 12, "feet"),
  12953. weight: math.unit(265, "lb"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/jay/front.svg",
  12957. extra: 1510 / 1430,
  12958. bottom: 0.042
  12959. }
  12960. },
  12961. back: {
  12962. height: math.unit(6 + 2 / 12, "feet"),
  12963. weight: math.unit(265, "lb"),
  12964. name: "Back",
  12965. image: {
  12966. source: "./media/characters/jay/back.svg",
  12967. extra: 1510 / 1430,
  12968. bottom: 0.025
  12969. }
  12970. },
  12971. clothed: {
  12972. height: math.unit(6 + 2 / 12, "feet"),
  12973. weight: math.unit(265, "lb"),
  12974. name: "Front (Clothed)",
  12975. image: {
  12976. source: "./media/characters/jay/clothed.svg",
  12977. extra: 744 / 699,
  12978. bottom: 0.043
  12979. }
  12980. },
  12981. head: {
  12982. height: math.unit(1.772, "feet"),
  12983. name: "Head",
  12984. image: {
  12985. source: "./media/characters/jay/head.svg"
  12986. }
  12987. },
  12988. sizeRay: {
  12989. height: math.unit(1.331, "feet"),
  12990. name: "Size Ray",
  12991. image: {
  12992. source: "./media/characters/jay/size-ray.svg"
  12993. }
  12994. },
  12995. },
  12996. [
  12997. {
  12998. name: "Micro",
  12999. height: math.unit(1, "inch")
  13000. },
  13001. {
  13002. name: "Normal",
  13003. height: math.unit(6 + 2 / 12, "feet"),
  13004. default: true
  13005. },
  13006. {
  13007. name: "Macro",
  13008. height: math.unit(1, "mile")
  13009. },
  13010. {
  13011. name: "Megamacro",
  13012. height: math.unit(100, "miles")
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13018. {
  13019. front: {
  13020. height: math.unit(2, "meters"),
  13021. weight: math.unit(500, "kg"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/coatl/front.svg",
  13025. extra: 3948 / 3500,
  13026. bottom: 0.082
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(4, "meters")
  13034. },
  13035. {
  13036. name: "Macro",
  13037. height: math.unit(100, "meters"),
  13038. default: true
  13039. },
  13040. {
  13041. name: "Macro+",
  13042. height: math.unit(300, "meters")
  13043. },
  13044. {
  13045. name: "Megamacro",
  13046. height: math.unit(3, "gigameters")
  13047. },
  13048. {
  13049. name: "Megamacro+",
  13050. height: math.unit(300, "terameters")
  13051. },
  13052. {
  13053. name: "Megamacro++",
  13054. height: math.unit(3, "lightyears")
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13060. {
  13061. front: {
  13062. height: math.unit(6, "feet"),
  13063. weight: math.unit(50, "kg"),
  13064. name: "front",
  13065. image: {
  13066. source: "./media/characters/shiroryu/front.svg",
  13067. extra: 1990 / 1935
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Mortal Mingling",
  13074. height: math.unit(3, "meters")
  13075. },
  13076. {
  13077. name: "Kaiju-ish",
  13078. height: math.unit(250, "meters")
  13079. },
  13080. {
  13081. name: "Somewhat Godly",
  13082. height: math.unit(400, "km"),
  13083. default: true
  13084. },
  13085. {
  13086. name: "Planetary",
  13087. height: math.unit(300, "megameters")
  13088. },
  13089. {
  13090. name: "Galaxy-dwarfing",
  13091. height: math.unit(450, "kiloparsecs")
  13092. },
  13093. {
  13094. name: "Universe Eater",
  13095. height: math.unit(150, "gigaparsecs")
  13096. },
  13097. {
  13098. name: "Almost Immeasurable",
  13099. height: math.unit(1.3e266, "yottaparsecs")
  13100. },
  13101. ]
  13102. ))
  13103. characterMakers.push(() => makeCharacter(
  13104. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13105. {
  13106. front: {
  13107. height: math.unit(6, "feet"),
  13108. weight: math.unit(150, "lb"),
  13109. name: "Front",
  13110. image: {
  13111. source: "./media/characters/umeko/front.svg",
  13112. extra: 1,
  13113. bottom: 0.019
  13114. }
  13115. },
  13116. frontArmored: {
  13117. height: math.unit(6, "feet"),
  13118. weight: math.unit(150, "lb"),
  13119. name: "Front (Armored)",
  13120. image: {
  13121. source: "./media/characters/umeko/front-armored.svg",
  13122. extra: 1,
  13123. bottom: 0.021
  13124. }
  13125. },
  13126. },
  13127. [
  13128. {
  13129. name: "Macro",
  13130. height: math.unit(220, "feet"),
  13131. default: true
  13132. },
  13133. {
  13134. name: "Guardian Dragon",
  13135. height: math.unit(50, "miles")
  13136. },
  13137. {
  13138. name: "Cosmic",
  13139. height: math.unit(800000, "miles")
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/cassidy/front.svg",
  13152. extra: 1,
  13153. bottom: 0.043
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Canon Height",
  13160. height: math.unit(120, "feet"),
  13161. default: true
  13162. },
  13163. {
  13164. name: "Macro+",
  13165. height: math.unit(400, "feet")
  13166. },
  13167. {
  13168. name: "Macro++",
  13169. height: math.unit(4000, "feet")
  13170. },
  13171. {
  13172. name: "Megamacro",
  13173. height: math.unit(3, "miles")
  13174. },
  13175. ]
  13176. ))
  13177. characterMakers.push(() => makeCharacter(
  13178. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13179. {
  13180. front: {
  13181. height: math.unit(6, "feet"),
  13182. weight: math.unit(150, "lb"),
  13183. name: "Front",
  13184. image: {
  13185. source: "./media/characters/isaac/front.svg",
  13186. extra: 896 / 815,
  13187. bottom: 0.11
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Human Size",
  13194. height: math.unit(8, "feet"),
  13195. default: true
  13196. },
  13197. {
  13198. name: "Macro",
  13199. height: math.unit(400, "feet")
  13200. },
  13201. {
  13202. name: "Megamacro",
  13203. height: math.unit(50, "miles")
  13204. },
  13205. {
  13206. name: "Canon Height",
  13207. height: math.unit(200, "AU")
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13213. {
  13214. front: {
  13215. height: math.unit(6, "feet"),
  13216. weight: math.unit(72, "kg"),
  13217. name: "Front",
  13218. image: {
  13219. source: "./media/characters/sleekit/front.svg",
  13220. extra: 4693 / 4487,
  13221. bottom: 0.012
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Minimum Height",
  13228. height: math.unit(10, "meters")
  13229. },
  13230. {
  13231. name: "Smaller",
  13232. height: math.unit(25, "meters")
  13233. },
  13234. {
  13235. name: "Larger",
  13236. height: math.unit(38, "meters"),
  13237. default: true
  13238. },
  13239. {
  13240. name: "Maximum height",
  13241. height: math.unit(100, "meters")
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13247. {
  13248. front: {
  13249. height: math.unit(6, "feet"),
  13250. weight: math.unit(150, "lb"),
  13251. name: "Front",
  13252. image: {
  13253. source: "./media/characters/nillia/front.svg",
  13254. extra: 2195 / 2037,
  13255. bottom: 0.005
  13256. }
  13257. },
  13258. back: {
  13259. height: math.unit(6, "feet"),
  13260. weight: math.unit(150, "lb"),
  13261. name: "Back",
  13262. image: {
  13263. source: "./media/characters/nillia/back.svg",
  13264. extra: 2195 / 2037,
  13265. bottom: 0.005
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Canon Height",
  13272. height: math.unit(489, "feet"),
  13273. default: true
  13274. }
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13279. {
  13280. front: {
  13281. height: math.unit(6, "feet"),
  13282. weight: math.unit(150, "lb"),
  13283. name: "Front",
  13284. image: {
  13285. source: "./media/characters/mesmyriza/front.svg",
  13286. extra: 2067 / 1784,
  13287. bottom: 0.035
  13288. }
  13289. },
  13290. foot: {
  13291. height: math.unit(6 / (250 / 35), "feet"),
  13292. name: "Foot",
  13293. image: {
  13294. source: "./media/characters/mesmyriza/foot.svg"
  13295. }
  13296. },
  13297. },
  13298. [
  13299. {
  13300. name: "Macro",
  13301. height: math.unit(457, "meters"),
  13302. default: true
  13303. },
  13304. {
  13305. name: "Megamacro",
  13306. height: math.unit(8, "megameters")
  13307. },
  13308. ]
  13309. ))
  13310. characterMakers.push(() => makeCharacter(
  13311. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13312. {
  13313. front: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(250, "lb"),
  13316. name: "Front",
  13317. image: {
  13318. source: "./media/characters/saudade/front.svg",
  13319. extra: 1172 / 1139,
  13320. bottom: 0.035
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Micro",
  13327. height: math.unit(3, "inches")
  13328. },
  13329. {
  13330. name: "Normal",
  13331. height: math.unit(6, "feet"),
  13332. default: true
  13333. },
  13334. {
  13335. name: "Macro",
  13336. height: math.unit(50, "feet")
  13337. },
  13338. {
  13339. name: "Megamacro",
  13340. height: math.unit(2800, "feet")
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(5 + 4 / 12, "feet"),
  13349. weight: math.unit(100, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/keireer/front.svg",
  13353. extra: 716 / 666,
  13354. bottom: 0.05
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Normal",
  13361. height: math.unit(5 + 4 / 12, "feet"),
  13362. default: true
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(6, "feet"),
  13371. weight: math.unit(90, "kg"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/mirja/front.svg",
  13375. extra: 1789 / 1683,
  13376. bottom: 0.05
  13377. }
  13378. },
  13379. frontDressed: {
  13380. height: math.unit(6, "feet"),
  13381. weight: math.unit(90, "lb"),
  13382. name: "Front (Dressed)",
  13383. image: {
  13384. source: "./media/characters/mirja/front-dressed.svg",
  13385. extra: 1789 / 1683,
  13386. bottom: 0.05
  13387. }
  13388. },
  13389. back: {
  13390. height: math.unit(6, "feet"),
  13391. weight: math.unit(90, "lb"),
  13392. name: "Back",
  13393. image: {
  13394. source: "./media/characters/mirja/back.svg",
  13395. extra: 953 / 917,
  13396. bottom: 0.017
  13397. }
  13398. },
  13399. },
  13400. [
  13401. {
  13402. name: "\"Incognito\"",
  13403. height: math.unit(3, "meters")
  13404. },
  13405. {
  13406. name: "Strolling Size",
  13407. height: math.unit(15, "km")
  13408. },
  13409. {
  13410. name: "Larger Strolling Size",
  13411. height: math.unit(400, "km")
  13412. },
  13413. {
  13414. name: "Preferred Size",
  13415. height: math.unit(5000, "km")
  13416. },
  13417. {
  13418. name: "True Size",
  13419. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13420. default: true
  13421. },
  13422. ]
  13423. ))
  13424. characterMakers.push(() => makeCharacter(
  13425. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13426. {
  13427. front: {
  13428. height: math.unit(15, "feet"),
  13429. weight: math.unit(880, "kg"),
  13430. name: "Front",
  13431. image: {
  13432. source: "./media/characters/nightraver/front.svg",
  13433. extra: 2444 / 2160,
  13434. bottom: 0.027
  13435. }
  13436. },
  13437. back: {
  13438. height: math.unit(15, "feet"),
  13439. weight: math.unit(880, "kg"),
  13440. name: "Back",
  13441. image: {
  13442. source: "./media/characters/nightraver/back.svg",
  13443. extra: 2309 / 2180,
  13444. bottom: 0.005
  13445. }
  13446. },
  13447. sole: {
  13448. height: math.unit(2.878, "feet"),
  13449. name: "Sole",
  13450. image: {
  13451. source: "./media/characters/nightraver/sole.svg"
  13452. }
  13453. },
  13454. foot: {
  13455. height: math.unit(2.285, "feet"),
  13456. name: "Foot",
  13457. image: {
  13458. source: "./media/characters/nightraver/foot.svg"
  13459. }
  13460. },
  13461. maw: {
  13462. height: math.unit(2.67, "feet"),
  13463. name: "Maw",
  13464. image: {
  13465. source: "./media/characters/nightraver/maw.svg"
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Micro",
  13472. height: math.unit(1, "cm")
  13473. },
  13474. {
  13475. name: "Normal",
  13476. height: math.unit(15, "feet"),
  13477. default: true
  13478. },
  13479. {
  13480. name: "Macro",
  13481. height: math.unit(300, "feet")
  13482. },
  13483. {
  13484. name: "Megamacro",
  13485. height: math.unit(300, "miles")
  13486. },
  13487. {
  13488. name: "Gigamacro",
  13489. height: math.unit(10000, "miles")
  13490. },
  13491. ]
  13492. ))
  13493. characterMakers.push(() => makeCharacter(
  13494. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13495. {
  13496. side: {
  13497. height: math.unit(2, "inches"),
  13498. weight: math.unit(5, "grams"),
  13499. name: "Side",
  13500. image: {
  13501. source: "./media/characters/arc/side.svg"
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Micro",
  13508. height: math.unit(2, "inches"),
  13509. default: true
  13510. },
  13511. ]
  13512. ))
  13513. characterMakers.push(() => makeCharacter(
  13514. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13515. {
  13516. front: {
  13517. height: math.unit(1.1938, "meters"),
  13518. weight: math.unit(54, "kg"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/nebula-shahar/front.svg",
  13522. extra: 1642 / 1436,
  13523. bottom: 0.06
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Megamicro",
  13530. height: math.unit(0.3, "mm")
  13531. },
  13532. {
  13533. name: "Micro",
  13534. height: math.unit(3, "cm")
  13535. },
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(138, "cm"),
  13539. default: true
  13540. },
  13541. {
  13542. name: "Macro",
  13543. height: math.unit(30, "m")
  13544. },
  13545. ]
  13546. ))
  13547. characterMakers.push(() => makeCharacter(
  13548. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13549. {
  13550. front: {
  13551. height: math.unit(5.24, "feet"),
  13552. weight: math.unit(150, "lb"),
  13553. name: "Front",
  13554. image: {
  13555. source: "./media/characters/shayla/front.svg",
  13556. extra: 1512 / 1414,
  13557. bottom: 0.01
  13558. }
  13559. },
  13560. back: {
  13561. height: math.unit(5.24, "feet"),
  13562. weight: math.unit(150, "lb"),
  13563. name: "Back",
  13564. image: {
  13565. source: "./media/characters/shayla/back.svg",
  13566. extra: 1512 / 1414
  13567. }
  13568. },
  13569. hand: {
  13570. height: math.unit(0.7781496062992126, "feet"),
  13571. name: "Hand",
  13572. image: {
  13573. source: "./media/characters/shayla/hand.svg"
  13574. }
  13575. },
  13576. foot: {
  13577. height: math.unit(1.4206036745406823, "feet"),
  13578. name: "Foot",
  13579. image: {
  13580. source: "./media/characters/shayla/foot.svg"
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Micro",
  13587. height: math.unit(0.32, "feet")
  13588. },
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(5.24, "feet"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Macro",
  13596. height: math.unit(492.12, "feet")
  13597. },
  13598. {
  13599. name: "Megamacro",
  13600. height: math.unit(186.41, "miles")
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(2.2, "m"),
  13609. weight: math.unit(120, "kg"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/pia-jr/front.svg",
  13613. extra: 1000 / 970,
  13614. bottom: 0.035
  13615. }
  13616. },
  13617. hand: {
  13618. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13619. name: "Hand",
  13620. image: {
  13621. source: "./media/characters/pia-jr/hand.svg"
  13622. }
  13623. },
  13624. paw: {
  13625. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13626. name: "Paw",
  13627. image: {
  13628. source: "./media/characters/pia-jr/paw.svg"
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Micro",
  13635. height: math.unit(1.2, "cm")
  13636. },
  13637. {
  13638. name: "Normal",
  13639. height: math.unit(2.2, "m"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Macro",
  13644. height: math.unit(180, "m")
  13645. },
  13646. {
  13647. name: "Megamacro",
  13648. height: math.unit(420, "km")
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(2, "m"),
  13657. weight: math.unit(115, "kg"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/pia-sr/front.svg",
  13661. extra: 760 / 730,
  13662. bottom: 0.015
  13663. }
  13664. },
  13665. back: {
  13666. height: math.unit(2, "m"),
  13667. weight: math.unit(115, "kg"),
  13668. name: "Back",
  13669. image: {
  13670. source: "./media/characters/pia-sr/back.svg",
  13671. extra: 760 / 730,
  13672. bottom: 0.01
  13673. }
  13674. },
  13675. hand: {
  13676. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13677. name: "Hand",
  13678. image: {
  13679. source: "./media/characters/pia-sr/hand.svg"
  13680. }
  13681. },
  13682. foot: {
  13683. height: math.unit(1.83, "feet"),
  13684. name: "Foot",
  13685. image: {
  13686. source: "./media/characters/pia-sr/foot.svg"
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Micro",
  13693. height: math.unit(88, "mm")
  13694. },
  13695. {
  13696. name: "Normal",
  13697. height: math.unit(2, "m"),
  13698. default: true
  13699. },
  13700. {
  13701. name: "Macro",
  13702. height: math.unit(200, "m")
  13703. },
  13704. {
  13705. name: "Megamacro",
  13706. height: math.unit(420, "km")
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(8 + 2 / 12, "feet"),
  13715. weight: math.unit(300, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/kibibyte/front.svg",
  13719. extra: 2221 / 2098,
  13720. bottom: 0.04
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Normal",
  13727. height: math.unit(8 + 2 / 12, "feet"),
  13728. default: true
  13729. },
  13730. {
  13731. name: "Socialable Macro",
  13732. height: math.unit(50, "feet")
  13733. },
  13734. {
  13735. name: "Macro",
  13736. height: math.unit(300, "feet")
  13737. },
  13738. {
  13739. name: "Megamacro",
  13740. height: math.unit(500, "miles")
  13741. },
  13742. ]
  13743. ))
  13744. characterMakers.push(() => makeCharacter(
  13745. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13746. {
  13747. front: {
  13748. height: math.unit(6, "feet"),
  13749. weight: math.unit(150, "lb"),
  13750. name: "Front",
  13751. image: {
  13752. source: "./media/characters/felix/front.svg",
  13753. extra: 762 / 722,
  13754. bottom: 0.02
  13755. }
  13756. },
  13757. frontClothed: {
  13758. height: math.unit(6, "feet"),
  13759. weight: math.unit(150, "lb"),
  13760. name: "Front (Clothed)",
  13761. image: {
  13762. source: "./media/characters/felix/front-clothed.svg",
  13763. extra: 762 / 722,
  13764. bottom: 0.02
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Normal",
  13771. height: math.unit(6 + 8 / 12, "feet"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Macro",
  13776. height: math.unit(2600, "feet")
  13777. },
  13778. {
  13779. name: "Megamacro",
  13780. height: math.unit(450, "miles")
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13786. {
  13787. front: {
  13788. height: math.unit(6 + 1 / 12, "feet"),
  13789. weight: math.unit(250, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/tobo/front.svg",
  13793. extra: 608 / 586,
  13794. bottom: 0.023
  13795. }
  13796. },
  13797. back: {
  13798. height: math.unit(6 + 1 / 12, "feet"),
  13799. weight: math.unit(250, "lb"),
  13800. name: "Back",
  13801. image: {
  13802. source: "./media/characters/tobo/back.svg",
  13803. extra: 608 / 586
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Nano",
  13810. height: math.unit(2, "nm")
  13811. },
  13812. {
  13813. name: "Megamicro",
  13814. height: math.unit(0.1, "mm")
  13815. },
  13816. {
  13817. name: "Micro",
  13818. height: math.unit(1, "inch"),
  13819. default: true
  13820. },
  13821. {
  13822. name: "Human-sized",
  13823. height: math.unit(6 + 1 / 12, "feet")
  13824. },
  13825. {
  13826. name: "Macro",
  13827. height: math.unit(250, "feet")
  13828. },
  13829. {
  13830. name: "Megamacro",
  13831. height: math.unit(75, "miles")
  13832. },
  13833. {
  13834. name: "Texas-sized",
  13835. height: math.unit(750, "miles")
  13836. },
  13837. {
  13838. name: "Teramacro",
  13839. height: math.unit(50000, "miles")
  13840. },
  13841. ]
  13842. ))
  13843. characterMakers.push(() => makeCharacter(
  13844. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13845. {
  13846. front: {
  13847. height: math.unit(6, "feet"),
  13848. weight: math.unit(269, "lb"),
  13849. name: "Front",
  13850. image: {
  13851. source: "./media/characters/danny-kapowsky/front.svg",
  13852. extra: 766 / 736,
  13853. bottom: 0.044
  13854. }
  13855. },
  13856. back: {
  13857. height: math.unit(6, "feet"),
  13858. weight: math.unit(269, "lb"),
  13859. name: "Back",
  13860. image: {
  13861. source: "./media/characters/danny-kapowsky/back.svg",
  13862. extra: 797 / 760,
  13863. bottom: 0.025
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Macro",
  13870. height: math.unit(150, "feet"),
  13871. default: true
  13872. },
  13873. {
  13874. name: "Macro+",
  13875. height: math.unit(200, "feet")
  13876. },
  13877. {
  13878. name: "Macro++",
  13879. height: math.unit(300, "feet")
  13880. },
  13881. {
  13882. name: "Macro+++",
  13883. height: math.unit(400, "feet")
  13884. },
  13885. ]
  13886. ))
  13887. characterMakers.push(() => makeCharacter(
  13888. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13889. {
  13890. side: {
  13891. height: math.unit(6, "feet"),
  13892. weight: math.unit(170, "lb"),
  13893. name: "Side",
  13894. image: {
  13895. source: "./media/characters/finn/side.svg",
  13896. extra: 1953 / 1807,
  13897. bottom: 0.057
  13898. }
  13899. },
  13900. },
  13901. [
  13902. {
  13903. name: "Megamacro",
  13904. height: math.unit(14445, "feet"),
  13905. default: true
  13906. },
  13907. ]
  13908. ))
  13909. characterMakers.push(() => makeCharacter(
  13910. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13911. {
  13912. front: {
  13913. height: math.unit(5 + 6 / 12, "feet"),
  13914. weight: math.unit(125, "lb"),
  13915. name: "Front",
  13916. image: {
  13917. source: "./media/characters/roy/front.svg",
  13918. extra: 1,
  13919. bottom: 0.11
  13920. }
  13921. },
  13922. },
  13923. [
  13924. {
  13925. name: "Micro",
  13926. height: math.unit(3, "inches"),
  13927. default: true
  13928. },
  13929. {
  13930. name: "Normal",
  13931. height: math.unit(5 + 6 / 12, "feet")
  13932. },
  13933. {
  13934. name: "Lesser Macro",
  13935. height: math.unit(60, "feet")
  13936. },
  13937. {
  13938. name: "Greater Macro",
  13939. height: math.unit(120, "feet")
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13945. {
  13946. front: {
  13947. height: math.unit(6, "feet"),
  13948. weight: math.unit(100, "lb"),
  13949. name: "Front",
  13950. image: {
  13951. source: "./media/characters/aevsivs/front.svg",
  13952. extra: 1,
  13953. bottom: 0.03
  13954. }
  13955. },
  13956. back: {
  13957. height: math.unit(6, "feet"),
  13958. weight: math.unit(100, "lb"),
  13959. name: "Back",
  13960. image: {
  13961. source: "./media/characters/aevsivs/back.svg"
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Micro",
  13968. height: math.unit(2, "inches"),
  13969. default: true
  13970. },
  13971. {
  13972. name: "Normal",
  13973. height: math.unit(5, "feet")
  13974. },
  13975. ]
  13976. ))
  13977. characterMakers.push(() => makeCharacter(
  13978. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13979. {
  13980. front: {
  13981. height: math.unit(5 + 7 / 12, "feet"),
  13982. weight: math.unit(159, "lb"),
  13983. name: "Front",
  13984. image: {
  13985. source: "./media/characters/hildegard/front.svg",
  13986. extra: 289 / 269,
  13987. bottom: 7.63 / 297.8
  13988. }
  13989. },
  13990. back: {
  13991. height: math.unit(5 + 7 / 12, "feet"),
  13992. weight: math.unit(159, "lb"),
  13993. name: "Back",
  13994. image: {
  13995. source: "./media/characters/hildegard/back.svg",
  13996. extra: 280 / 260,
  13997. bottom: 2.3 / 282
  13998. }
  13999. },
  14000. },
  14001. [
  14002. {
  14003. name: "Normal",
  14004. height: math.unit(5 + 7 / 12, "feet"),
  14005. default: true
  14006. },
  14007. ]
  14008. ))
  14009. characterMakers.push(() => makeCharacter(
  14010. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14011. {
  14012. bernard: {
  14013. height: math.unit(2 + 7 / 12, "feet"),
  14014. weight: math.unit(66, "lb"),
  14015. name: "Bernard",
  14016. rename: true,
  14017. image: {
  14018. source: "./media/characters/bernard-wilder/bernard.svg",
  14019. extra: 192 / 128,
  14020. bottom: 0.05
  14021. }
  14022. },
  14023. wilder: {
  14024. height: math.unit(5 + 8 / 12, "feet"),
  14025. weight: math.unit(143, "lb"),
  14026. name: "Wilder",
  14027. rename: true,
  14028. image: {
  14029. source: "./media/characters/bernard-wilder/wilder.svg",
  14030. extra: 361 / 312,
  14031. bottom: 0.02
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Normal",
  14038. height: math.unit(2 + 7 / 12, "feet"),
  14039. default: true
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14045. {
  14046. anthro: {
  14047. height: math.unit(6 + 1 / 12, "feet"),
  14048. weight: math.unit(155, "lb"),
  14049. name: "Anthro",
  14050. image: {
  14051. source: "./media/characters/hearth/anthro.svg",
  14052. extra: 260 / 250,
  14053. bottom: 0.02
  14054. }
  14055. },
  14056. feral: {
  14057. height: math.unit(3.78, "feet"),
  14058. weight: math.unit(35, "kg"),
  14059. name: "Feral",
  14060. image: {
  14061. source: "./media/characters/hearth/feral.svg",
  14062. extra: 153 / 135,
  14063. bottom: 0.03
  14064. }
  14065. },
  14066. },
  14067. [
  14068. {
  14069. name: "Normal",
  14070. height: math.unit(6 + 1 / 12, "feet"),
  14071. default: true
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14077. {
  14078. front: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(182, "lb"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/ingrid/front.svg",
  14084. extra: 294 / 268,
  14085. bottom: 0.027
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Normal",
  14092. height: math.unit(6, "feet"),
  14093. default: true
  14094. },
  14095. ]
  14096. ))
  14097. characterMakers.push(() => makeCharacter(
  14098. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14099. {
  14100. eevee: {
  14101. height: math.unit(2 + 10 / 12, "feet"),
  14102. weight: math.unit(86, "lb"),
  14103. name: "Malgam",
  14104. image: {
  14105. source: "./media/characters/malgam/eevee.svg",
  14106. extra: 218 / 180,
  14107. bottom: 0.2
  14108. }
  14109. },
  14110. sylveon: {
  14111. height: math.unit(4, "feet"),
  14112. weight: math.unit(101, "lb"),
  14113. name: "Future Malgam",
  14114. rename: true,
  14115. image: {
  14116. source: "./media/characters/malgam/sylveon.svg",
  14117. extra: 371 / 325,
  14118. bottom: 0.015
  14119. }
  14120. },
  14121. gigantamax: {
  14122. height: math.unit(50, "feet"),
  14123. name: "Gigantamax Malgam",
  14124. rename: true,
  14125. image: {
  14126. source: "./media/characters/malgam/gigantamax.svg"
  14127. }
  14128. },
  14129. },
  14130. [
  14131. {
  14132. name: "Normal",
  14133. height: math.unit(2 + 10 / 12, "feet"),
  14134. default: true
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14140. {
  14141. front: {
  14142. height: math.unit(5 + 11 / 12, "feet"),
  14143. weight: math.unit(188, "lb"),
  14144. name: "Front",
  14145. image: {
  14146. source: "./media/characters/fleur/front.svg",
  14147. extra: 309 / 283,
  14148. bottom: 0.007
  14149. }
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Normal",
  14155. height: math.unit(5 + 11 / 12, "feet"),
  14156. default: true
  14157. },
  14158. ]
  14159. ))
  14160. characterMakers.push(() => makeCharacter(
  14161. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14162. {
  14163. front: {
  14164. height: math.unit(5 + 4 / 12, "feet"),
  14165. weight: math.unit(122, "lb"),
  14166. name: "Front",
  14167. image: {
  14168. source: "./media/characters/jude/front.svg",
  14169. extra: 288 / 273,
  14170. bottom: 0.03
  14171. }
  14172. },
  14173. },
  14174. [
  14175. {
  14176. name: "Normal",
  14177. height: math.unit(5 + 4 / 12, "feet"),
  14178. default: true
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14184. {
  14185. front: {
  14186. height: math.unit(5 + 11 / 12, "feet"),
  14187. weight: math.unit(190, "lb"),
  14188. name: "Front",
  14189. image: {
  14190. source: "./media/characters/seara/front.svg",
  14191. extra: 1,
  14192. bottom: 0.05
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Normal",
  14199. height: math.unit(5 + 11 / 12, "feet"),
  14200. default: true
  14201. },
  14202. ]
  14203. ))
  14204. characterMakers.push(() => makeCharacter(
  14205. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14206. {
  14207. front: {
  14208. height: math.unit(16 + 5 / 12, "feet"),
  14209. weight: math.unit(524, "lb"),
  14210. name: "Front",
  14211. image: {
  14212. source: "./media/characters/caspian/front.svg",
  14213. extra: 1,
  14214. bottom: 0.04
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Normal",
  14221. height: math.unit(16 + 5 / 12, "feet"),
  14222. default: true
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14228. {
  14229. front: {
  14230. height: math.unit(5 + 7 / 12, "feet"),
  14231. weight: math.unit(170, "lb"),
  14232. name: "Front",
  14233. image: {
  14234. source: "./media/characters/mika/front.svg",
  14235. extra: 1,
  14236. bottom: 0.016
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Normal",
  14243. height: math.unit(5 + 7 / 12, "feet"),
  14244. default: true
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14250. {
  14251. front: {
  14252. height: math.unit(6 + 2 / 12, "feet"),
  14253. weight: math.unit(268, "lb"),
  14254. name: "Front",
  14255. image: {
  14256. source: "./media/characters/sol/front.svg",
  14257. extra: 247 / 231,
  14258. bottom: 0.05
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Normal",
  14265. height: math.unit(6 + 2 / 12, "feet"),
  14266. default: true
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14272. {
  14273. buizel: {
  14274. height: math.unit(2 + 5 / 12, "feet"),
  14275. weight: math.unit(87, "lb"),
  14276. name: "Buizel",
  14277. image: {
  14278. source: "./media/characters/umiko/buizel.svg",
  14279. extra: 172 / 157,
  14280. bottom: 0.01
  14281. }
  14282. },
  14283. floatzel: {
  14284. height: math.unit(5 + 9 / 12, "feet"),
  14285. weight: math.unit(250, "lb"),
  14286. name: "Floatzel",
  14287. image: {
  14288. source: "./media/characters/umiko/floatzel.svg",
  14289. extra: 262 / 248
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Normal",
  14296. height: math.unit(2 + 5 / 12, "feet"),
  14297. default: true
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14303. {
  14304. front: {
  14305. height: math.unit(6 + 2 / 12, "feet"),
  14306. weight: math.unit(146, "lb"),
  14307. name: "Front",
  14308. image: {
  14309. source: "./media/characters/iliac/front.svg",
  14310. extra: 389 / 365,
  14311. bottom: 0.035
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Normal",
  14318. height: math.unit(6 + 2 / 12, "feet"),
  14319. default: true
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(6, "feet"),
  14328. weight: math.unit(170, "lb"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/topaz/front.svg",
  14332. extra: 317 / 303,
  14333. bottom: 0.055
  14334. }
  14335. },
  14336. },
  14337. [
  14338. {
  14339. name: "Normal",
  14340. height: math.unit(6, "feet"),
  14341. default: true
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(5 + 11 / 12, "feet"),
  14350. weight: math.unit(144, "lb"),
  14351. name: "Front",
  14352. image: {
  14353. source: "./media/characters/gabriel/front.svg",
  14354. extra: 285 / 262,
  14355. bottom: 0.004
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(5 + 11 / 12, "feet"),
  14363. default: true
  14364. },
  14365. ]
  14366. ))
  14367. characterMakers.push(() => makeCharacter(
  14368. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14369. {
  14370. side: {
  14371. height: math.unit(6 + 5 / 12, "feet"),
  14372. weight: math.unit(300, "lb"),
  14373. name: "Side",
  14374. image: {
  14375. source: "./media/characters/tempest-suicune/side.svg",
  14376. extra: 195 / 154,
  14377. bottom: 0.04
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(6 + 5 / 12, "feet"),
  14385. default: true
  14386. },
  14387. ]
  14388. ))
  14389. characterMakers.push(() => makeCharacter(
  14390. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14391. {
  14392. front: {
  14393. height: math.unit(7 + 2 / 12, "feet"),
  14394. weight: math.unit(322, "lb"),
  14395. name: "Front",
  14396. image: {
  14397. source: "./media/characters/vulcan/front.svg",
  14398. extra: 154 / 147,
  14399. bottom: 0.04
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(7 + 2 / 12, "feet"),
  14407. default: true
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(5 + 10 / 12, "feet"),
  14416. weight: math.unit(264, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/gault/front.svg",
  14420. extra: 161 / 140,
  14421. bottom: 0.028
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(5 + 10 / 12, "feet"),
  14429. default: true
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(6, "feet"),
  14438. weight: math.unit(150, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/shard/front.svg",
  14442. extra: 273 / 238,
  14443. bottom: 0.02
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Normal",
  14450. height: math.unit(3 + 6 / 12, "feet"),
  14451. default: true
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(5 + 11 / 12, "feet"),
  14460. weight: math.unit(146, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/ashe/front.svg",
  14464. extra: 400 / 373,
  14465. bottom: 0.01
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(5 + 11 / 12, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(5 + 5 / 12, "feet"),
  14482. weight: math.unit(135, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/beatrix/front.svg",
  14486. extra: 392 / 379,
  14487. bottom: 0.01
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(6, "feet"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(6, "feet"),
  14504. weight: math.unit(150, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/ignatius/front.svg",
  14508. extra: 245 / 222,
  14509. bottom: 0.01
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(5 + 5 / 12, "feet"),
  14517. default: true
  14518. },
  14519. ]
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14523. {
  14524. front: {
  14525. height: math.unit(6 + 2 / 12, "feet"),
  14526. weight: math.unit(138, "lb"),
  14527. name: "Front",
  14528. image: {
  14529. source: "./media/characters/mei-li/front.svg",
  14530. extra: 237 / 229,
  14531. bottom: 0.03
  14532. }
  14533. },
  14534. },
  14535. [
  14536. {
  14537. name: "Normal",
  14538. height: math.unit(6 + 2 / 12, "feet"),
  14539. default: true
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(2 + 4 / 12, "feet"),
  14548. weight: math.unit(62, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/puru/front.svg",
  14552. extra: 206 / 149,
  14553. bottom: 0.06
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(2 + 4 / 12, "feet"),
  14561. default: true
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14567. {
  14568. taur: {
  14569. height: math.unit(11, "feet"),
  14570. weight: math.unit(500, "lb"),
  14571. name: "Taur",
  14572. image: {
  14573. source: "./media/characters/kee/taur.svg",
  14574. extra: 1,
  14575. bottom: 0.04
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Normal",
  14582. height: math.unit(11, "feet"),
  14583. default: true
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14589. {
  14590. anthro: {
  14591. height: math.unit(7, "feet"),
  14592. weight: math.unit(190, "lb"),
  14593. name: "Anthro",
  14594. image: {
  14595. source: "./media/characters/cobalt-dracha/anthro.svg",
  14596. extra: 231 / 225,
  14597. bottom: 0.04
  14598. }
  14599. },
  14600. feral: {
  14601. height: math.unit(9 + 7 / 12, "feet"),
  14602. weight: math.unit(294, "lb"),
  14603. name: "Feral",
  14604. image: {
  14605. source: "./media/characters/cobalt-dracha/feral.svg",
  14606. extra: 692 / 633,
  14607. bottom: 0.05
  14608. }
  14609. },
  14610. },
  14611. [
  14612. {
  14613. name: "Normal",
  14614. height: math.unit(7, "feet"),
  14615. default: true
  14616. },
  14617. ]
  14618. ))
  14619. characterMakers.push(() => makeCharacter(
  14620. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14621. {
  14622. fallen: {
  14623. height: math.unit(11 + 8 / 12, "feet"),
  14624. weight: math.unit(485, "lb"),
  14625. name: "Java (Fallen)",
  14626. rename: true,
  14627. image: {
  14628. source: "./media/characters/java/fallen.svg",
  14629. extra: 226 / 208,
  14630. bottom: 0.005
  14631. }
  14632. },
  14633. godkin: {
  14634. height: math.unit(10 + 6 / 12, "feet"),
  14635. weight: math.unit(328, "lb"),
  14636. name: "Java (Godkin)",
  14637. rename: true,
  14638. image: {
  14639. source: "./media/characters/java/godkin.svg",
  14640. extra: 270 / 262,
  14641. bottom: 0.02
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Normal",
  14648. height: math.unit(11 + 8 / 12, "feet"),
  14649. default: true
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(7 + 8 / 12, "feet"),
  14658. weight: math.unit(320, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/skoll/front.svg",
  14662. extra: 232 / 220,
  14663. bottom: 0.02
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(7 + 8 / 12, "feet"),
  14671. default: true
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(5 + 9 / 12, "feet"),
  14680. weight: math.unit(170, "lb"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/purna/front.svg",
  14684. extra: 239 / 229,
  14685. bottom: 0.01
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Normal",
  14692. height: math.unit(5 + 9 / 12, "feet"),
  14693. default: true
  14694. },
  14695. ]
  14696. ))
  14697. characterMakers.push(() => makeCharacter(
  14698. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14699. {
  14700. front: {
  14701. height: math.unit(5 + 9 / 12, "feet"),
  14702. weight: math.unit(142, "lb"),
  14703. name: "Front",
  14704. image: {
  14705. source: "./media/characters/kuva/front.svg",
  14706. extra: 281 / 271,
  14707. bottom: 0.006
  14708. }
  14709. },
  14710. },
  14711. [
  14712. {
  14713. name: "Normal",
  14714. height: math.unit(5 + 9 / 12, "feet"),
  14715. default: true
  14716. },
  14717. ]
  14718. ))
  14719. characterMakers.push(() => makeCharacter(
  14720. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14721. {
  14722. anthro: {
  14723. height: math.unit(9 + 2 / 12, "feet"),
  14724. weight: math.unit(270, "lb"),
  14725. name: "Anthro",
  14726. image: {
  14727. source: "./media/characters/embra/anthro.svg",
  14728. extra: 200 / 187,
  14729. bottom: 0.02
  14730. }
  14731. },
  14732. feral: {
  14733. height: math.unit(18 + 8 / 12, "feet"),
  14734. weight: math.unit(576, "lb"),
  14735. name: "Feral",
  14736. image: {
  14737. source: "./media/characters/embra/feral.svg",
  14738. extra: 152 / 137,
  14739. bottom: 0.037
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Normal",
  14746. height: math.unit(9 + 2 / 12, "feet"),
  14747. default: true
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14753. {
  14754. anthro: {
  14755. height: math.unit(10 + 9 / 12, "feet"),
  14756. weight: math.unit(224, "lb"),
  14757. name: "Anthro",
  14758. image: {
  14759. source: "./media/characters/grottos/anthro.svg",
  14760. extra: 350 / 332,
  14761. bottom: 0.045
  14762. }
  14763. },
  14764. feral: {
  14765. height: math.unit(20 + 7 / 12, "feet"),
  14766. weight: math.unit(629, "lb"),
  14767. name: "Feral",
  14768. image: {
  14769. source: "./media/characters/grottos/feral.svg",
  14770. extra: 207 / 190,
  14771. bottom: 0.05
  14772. }
  14773. },
  14774. },
  14775. [
  14776. {
  14777. name: "Normal",
  14778. height: math.unit(10 + 9 / 12, "feet"),
  14779. default: true
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14785. {
  14786. anthro: {
  14787. height: math.unit(9 + 6 / 12, "feet"),
  14788. weight: math.unit(298, "lb"),
  14789. name: "Anthro",
  14790. image: {
  14791. source: "./media/characters/frifna/anthro.svg",
  14792. extra: 282 / 269,
  14793. bottom: 0.015
  14794. }
  14795. },
  14796. feral: {
  14797. height: math.unit(16 + 2 / 12, "feet"),
  14798. weight: math.unit(624, "lb"),
  14799. name: "Feral",
  14800. image: {
  14801. source: "./media/characters/frifna/feral.svg"
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Normal",
  14808. height: math.unit(9 + 6 / 12, "feet"),
  14809. default: true
  14810. },
  14811. ]
  14812. ))
  14813. characterMakers.push(() => makeCharacter(
  14814. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14815. {
  14816. front: {
  14817. height: math.unit(6 + 2 / 12, "feet"),
  14818. weight: math.unit(168, "lb"),
  14819. name: "Front",
  14820. image: {
  14821. source: "./media/characters/elise/front.svg",
  14822. extra: 276 / 271
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(6 + 2 / 12, "feet"),
  14830. default: true
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14836. {
  14837. front: {
  14838. height: math.unit(5 + 10 / 12, "feet"),
  14839. weight: math.unit(210, "lb"),
  14840. name: "Front",
  14841. image: {
  14842. source: "./media/characters/glade/front.svg",
  14843. extra: 258 / 247,
  14844. bottom: 0.008
  14845. }
  14846. },
  14847. },
  14848. [
  14849. {
  14850. name: "Normal",
  14851. height: math.unit(5 + 10 / 12, "feet"),
  14852. default: true
  14853. },
  14854. ]
  14855. ))
  14856. characterMakers.push(() => makeCharacter(
  14857. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14858. {
  14859. front: {
  14860. height: math.unit(5 + 10 / 12, "feet"),
  14861. weight: math.unit(129, "lb"),
  14862. name: "Front",
  14863. image: {
  14864. source: "./media/characters/rina/front.svg",
  14865. extra: 266 / 255,
  14866. bottom: 0.005
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Normal",
  14873. height: math.unit(5 + 10 / 12, "feet"),
  14874. default: true
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(6 + 1 / 12, "feet"),
  14883. weight: math.unit(192, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/veronica/front.svg",
  14887. extra: 319 / 309,
  14888. bottom: 0.005
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Normal",
  14895. height: math.unit(6 + 1 / 12, "feet"),
  14896. default: true
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(9 + 3 / 12, "feet"),
  14905. weight: math.unit(1100, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/braxton/front.svg",
  14909. extra: 1057 / 984,
  14910. bottom: 0.05
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(9 + 3 / 12, "feet")
  14918. },
  14919. {
  14920. name: "Giant",
  14921. height: math.unit(300, "feet"),
  14922. default: true
  14923. },
  14924. {
  14925. name: "Macro",
  14926. height: math.unit(700, "feet")
  14927. },
  14928. {
  14929. name: "Megamacro",
  14930. height: math.unit(6000, "feet")
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(6 + 7 / 12, "feet"),
  14939. weight: math.unit(150, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/blue-feyonics/front.svg",
  14943. extra: 1403 / 1306,
  14944. bottom: 0.047
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(6 + 7 / 12, "feet"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14958. {
  14959. front: {
  14960. height: math.unit(1.8, "meters"),
  14961. weight: math.unit(60, "kg"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/maxwell/front.svg",
  14965. extra: 2060 / 1873
  14966. }
  14967. },
  14968. },
  14969. [
  14970. {
  14971. name: "Micro",
  14972. height: math.unit(1, "mm")
  14973. },
  14974. {
  14975. name: "Normal",
  14976. height: math.unit(1.8, "meter"),
  14977. default: true
  14978. },
  14979. {
  14980. name: "Macro",
  14981. height: math.unit(30, "meters")
  14982. },
  14983. {
  14984. name: "Megamacro",
  14985. height: math.unit(10, "km")
  14986. },
  14987. ]
  14988. ))
  14989. characterMakers.push(() => makeCharacter(
  14990. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14991. {
  14992. front: {
  14993. height: math.unit(6, "feet"),
  14994. weight: math.unit(150, "lb"),
  14995. name: "Front",
  14996. image: {
  14997. source: "./media/characters/jack/front.svg",
  14998. extra: 1754 / 1640,
  14999. bottom: 0.01
  15000. }
  15001. },
  15002. },
  15003. [
  15004. {
  15005. name: "Normal",
  15006. height: math.unit(80000, "feet"),
  15007. default: true
  15008. },
  15009. {
  15010. name: "Max size",
  15011. height: math.unit(10, "lightyears")
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15017. {
  15018. upright: {
  15019. height: math.unit(7, "feet"),
  15020. weight: math.unit(170, "lb"),
  15021. name: "Upright",
  15022. image: {
  15023. source: "./media/characters/cafat/upright.svg",
  15024. bottom: 0.01
  15025. }
  15026. },
  15027. uprightFull: {
  15028. height: math.unit(7, "feet"),
  15029. weight: math.unit(170, "lb"),
  15030. name: "Upright (Full)",
  15031. image: {
  15032. source: "./media/characters/cafat/upright-full.svg",
  15033. bottom: 0.01
  15034. }
  15035. },
  15036. side: {
  15037. height: math.unit(5, "feet"),
  15038. weight: math.unit(150, "lb"),
  15039. name: "Side",
  15040. image: {
  15041. source: "./media/characters/cafat/side.svg"
  15042. }
  15043. },
  15044. },
  15045. [
  15046. {
  15047. name: "Small",
  15048. height: math.unit(7, "feet"),
  15049. default: true
  15050. },
  15051. {
  15052. name: "Large",
  15053. height: math.unit(15.5, "feet")
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15059. {
  15060. front: {
  15061. height: math.unit(6, "feet"),
  15062. weight: math.unit(150, "lb"),
  15063. name: "Front",
  15064. image: {
  15065. source: "./media/characters/verin-raharra/front.svg",
  15066. extra: 5019 / 4835,
  15067. bottom: 0.023
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Normal",
  15074. height: math.unit(7 + 5 / 12, "feet"),
  15075. default: true
  15076. },
  15077. {
  15078. name: "Upsized",
  15079. height: math.unit(20, "feet")
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(7, "feet"),
  15088. weight: math.unit(230, "lb"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/nakata/front.svg",
  15092. extra: 1.005,
  15093. bottom: 0.01
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Normal",
  15100. height: math.unit(7, "feet"),
  15101. default: true
  15102. },
  15103. {
  15104. name: "Big",
  15105. height: math.unit(14, "feet")
  15106. },
  15107. {
  15108. name: "Macro",
  15109. height: math.unit(400, "feet")
  15110. },
  15111. ]
  15112. ))
  15113. characterMakers.push(() => makeCharacter(
  15114. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15115. {
  15116. front: {
  15117. height: math.unit(4.91, "feet"),
  15118. weight: math.unit(100, "lb"),
  15119. name: "Front",
  15120. image: {
  15121. source: "./media/characters/lily/front.svg",
  15122. extra: 1585 / 1415,
  15123. bottom: 0.02
  15124. }
  15125. },
  15126. },
  15127. [
  15128. {
  15129. name: "Normal",
  15130. height: math.unit(4.91, "feet"),
  15131. default: true
  15132. },
  15133. ]
  15134. ))
  15135. characterMakers.push(() => makeCharacter(
  15136. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15137. {
  15138. laying: {
  15139. height: math.unit(4 + 4 / 12, "feet"),
  15140. weight: math.unit(600, "lb"),
  15141. name: "Laying",
  15142. image: {
  15143. source: "./media/characters/sheila/laying.svg",
  15144. extra: 1333 / 1265,
  15145. bottom: 0.16
  15146. }
  15147. },
  15148. },
  15149. [
  15150. {
  15151. name: "Normal",
  15152. height: math.unit(4 + 4 / 12, "feet"),
  15153. default: true
  15154. },
  15155. ]
  15156. ))
  15157. characterMakers.push(() => makeCharacter(
  15158. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15159. {
  15160. front: {
  15161. height: math.unit(6, "feet"),
  15162. weight: math.unit(190, "lb"),
  15163. name: "Front",
  15164. image: {
  15165. source: "./media/characters/sax/front.svg",
  15166. extra: 1187 / 973,
  15167. bottom: 0.042
  15168. }
  15169. },
  15170. },
  15171. [
  15172. {
  15173. name: "Micro",
  15174. height: math.unit(4, "inches"),
  15175. default: true
  15176. },
  15177. ]
  15178. ))
  15179. characterMakers.push(() => makeCharacter(
  15180. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15181. {
  15182. front: {
  15183. height: math.unit(6, "feet"),
  15184. weight: math.unit(150, "lb"),
  15185. name: "Front",
  15186. image: {
  15187. source: "./media/characters/pandora/front.svg",
  15188. extra: 2720 / 2556,
  15189. bottom: 0.015
  15190. }
  15191. },
  15192. back: {
  15193. height: math.unit(6, "feet"),
  15194. weight: math.unit(150, "lb"),
  15195. name: "Back",
  15196. image: {
  15197. source: "./media/characters/pandora/back.svg",
  15198. extra: 2720 / 2556,
  15199. bottom: 0.01
  15200. }
  15201. },
  15202. beans: {
  15203. height: math.unit(6 / 8, "feet"),
  15204. name: "Beans",
  15205. image: {
  15206. source: "./media/characters/pandora/beans.svg"
  15207. }
  15208. },
  15209. skirt: {
  15210. height: math.unit(6, "feet"),
  15211. weight: math.unit(150, "lb"),
  15212. name: "Skirt",
  15213. image: {
  15214. source: "./media/characters/pandora/skirt.svg",
  15215. extra: 1622 / 1525,
  15216. bottom: 0.015
  15217. }
  15218. },
  15219. hoodie: {
  15220. height: math.unit(6, "feet"),
  15221. weight: math.unit(150, "lb"),
  15222. name: "Hoodie",
  15223. image: {
  15224. source: "./media/characters/pandora/hoodie.svg",
  15225. extra: 1622 / 1525,
  15226. bottom: 0.015
  15227. }
  15228. },
  15229. casual: {
  15230. height: math.unit(6, "feet"),
  15231. weight: math.unit(150, "lb"),
  15232. name: "Casual",
  15233. image: {
  15234. source: "./media/characters/pandora/casual.svg",
  15235. extra: 1622 / 1525,
  15236. bottom: 0.015
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(6, "feet")
  15244. },
  15245. {
  15246. name: "Big Steppy",
  15247. height: math.unit(1, "km"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15254. {
  15255. side: {
  15256. height: math.unit(10, "feet"),
  15257. weight: math.unit(800, "kg"),
  15258. name: "Side",
  15259. image: {
  15260. source: "./media/characters/venio-darcony/side.svg",
  15261. extra: 1373 / 1003,
  15262. bottom: 0.037
  15263. }
  15264. },
  15265. front: {
  15266. height: math.unit(19, "feet"),
  15267. weight: math.unit(800, "kg"),
  15268. name: "Front",
  15269. image: {
  15270. source: "./media/characters/venio-darcony/front.svg"
  15271. }
  15272. },
  15273. back: {
  15274. height: math.unit(19, "feet"),
  15275. weight: math.unit(800, "kg"),
  15276. name: "Back",
  15277. image: {
  15278. source: "./media/characters/venio-darcony/back.svg"
  15279. }
  15280. },
  15281. sideNsfw: {
  15282. height: math.unit(10, "feet"),
  15283. weight: math.unit(800, "kg"),
  15284. name: "Side (NSFW)",
  15285. image: {
  15286. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15287. extra: 1373 / 1003,
  15288. bottom: 0.037
  15289. }
  15290. },
  15291. frontNsfw: {
  15292. height: math.unit(19, "feet"),
  15293. weight: math.unit(800, "kg"),
  15294. name: "Front (NSFW)",
  15295. image: {
  15296. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15297. }
  15298. },
  15299. backNsfw: {
  15300. height: math.unit(19, "feet"),
  15301. weight: math.unit(800, "kg"),
  15302. name: "Back (NSFW)",
  15303. image: {
  15304. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15305. }
  15306. },
  15307. sideArmored: {
  15308. height: math.unit(10, "feet"),
  15309. weight: math.unit(800, "kg"),
  15310. name: "Side (Armored)",
  15311. image: {
  15312. source: "./media/characters/venio-darcony/side-armored.svg",
  15313. extra: 1373 / 1003,
  15314. bottom: 0.037
  15315. }
  15316. },
  15317. frontArmored: {
  15318. height: math.unit(19, "feet"),
  15319. weight: math.unit(900, "kg"),
  15320. name: "Front (Armored)",
  15321. image: {
  15322. source: "./media/characters/venio-darcony/front-armored.svg"
  15323. }
  15324. },
  15325. backArmored: {
  15326. height: math.unit(19, "feet"),
  15327. weight: math.unit(900, "kg"),
  15328. name: "Back (Armored)",
  15329. image: {
  15330. source: "./media/characters/venio-darcony/back-armored.svg"
  15331. }
  15332. },
  15333. sword: {
  15334. height: math.unit(10, "feet"),
  15335. weight: math.unit(50, "lb"),
  15336. name: "Sword",
  15337. image: {
  15338. source: "./media/characters/venio-darcony/sword.svg"
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Normal",
  15345. height: math.unit(10, "feet")
  15346. },
  15347. {
  15348. name: "Macro",
  15349. height: math.unit(130, "feet"),
  15350. default: true
  15351. },
  15352. {
  15353. name: "Macro+",
  15354. height: math.unit(240, "feet")
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15360. {
  15361. front: {
  15362. height: math.unit(6, "feet"),
  15363. weight: math.unit(150, "lb"),
  15364. name: "Front",
  15365. image: {
  15366. source: "./media/characters/veski/front.svg",
  15367. extra: 1299 / 1225,
  15368. bottom: 0.04
  15369. }
  15370. },
  15371. back: {
  15372. height: math.unit(6, "feet"),
  15373. weight: math.unit(150, "lb"),
  15374. name: "Back",
  15375. image: {
  15376. source: "./media/characters/veski/back.svg",
  15377. extra: 1299 / 1225,
  15378. bottom: 0.008
  15379. }
  15380. },
  15381. maw: {
  15382. height: math.unit(1.5 * 1.21, "feet"),
  15383. name: "Maw",
  15384. image: {
  15385. source: "./media/characters/veski/maw.svg"
  15386. }
  15387. },
  15388. },
  15389. [
  15390. {
  15391. name: "Macro",
  15392. height: math.unit(2, "km"),
  15393. default: true
  15394. },
  15395. ]
  15396. ))
  15397. characterMakers.push(() => makeCharacter(
  15398. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15399. {
  15400. front: {
  15401. height: math.unit(5 + 7 / 12, "feet"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/isabelle/front.svg",
  15405. extra: 2130 / 1976,
  15406. bottom: 0.05
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Supermicro",
  15413. height: math.unit(10, "micrometers")
  15414. },
  15415. {
  15416. name: "Micro",
  15417. height: math.unit(1, "inch")
  15418. },
  15419. {
  15420. name: "Tiny",
  15421. height: math.unit(5, "inches")
  15422. },
  15423. {
  15424. name: "Standard",
  15425. height: math.unit(5 + 7 / 12, "inches")
  15426. },
  15427. {
  15428. name: "Macro",
  15429. height: math.unit(80, "meters"),
  15430. default: true
  15431. },
  15432. {
  15433. name: "Megamacro",
  15434. height: math.unit(250, "meters")
  15435. },
  15436. {
  15437. name: "Gigamacro",
  15438. height: math.unit(5, "km")
  15439. },
  15440. {
  15441. name: "Cosmic",
  15442. height: math.unit(2.5e6, "miles")
  15443. },
  15444. ]
  15445. ))
  15446. characterMakers.push(() => makeCharacter(
  15447. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15448. {
  15449. front: {
  15450. height: math.unit(6, "feet"),
  15451. weight: math.unit(150, "lb"),
  15452. name: "Front",
  15453. image: {
  15454. source: "./media/characters/hanzo/front.svg",
  15455. extra: 374 / 344,
  15456. bottom: 0.02
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(8, "feet"),
  15464. default: true
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(7, "feet"),
  15473. weight: math.unit(130, "lb"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/anna/front.svg",
  15477. extra: 169 / 145,
  15478. bottom: 0.06
  15479. }
  15480. },
  15481. full: {
  15482. height: math.unit(4.96, "feet"),
  15483. weight: math.unit(220, "lb"),
  15484. name: "Full",
  15485. image: {
  15486. source: "./media/characters/anna/full.svg",
  15487. extra: 138 / 114,
  15488. bottom: 0.15
  15489. }
  15490. },
  15491. tongue: {
  15492. height: math.unit(2.53, "feet"),
  15493. name: "Tongue",
  15494. image: {
  15495. source: "./media/characters/anna/tongue.svg"
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Normal",
  15502. height: math.unit(7, "feet"),
  15503. default: true
  15504. },
  15505. ]
  15506. ))
  15507. characterMakers.push(() => makeCharacter(
  15508. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15509. {
  15510. front: {
  15511. height: math.unit(7, "feet"),
  15512. weight: math.unit(150, "lb"),
  15513. name: "Front",
  15514. image: {
  15515. source: "./media/characters/ian-corvid/front.svg",
  15516. extra: 150 / 142,
  15517. bottom: 0.02
  15518. }
  15519. },
  15520. back: {
  15521. height: math.unit(7, "feet"),
  15522. weight: math.unit(150, "lb"),
  15523. name: "Back",
  15524. image: {
  15525. source: "./media/characters/ian-corvid/back.svg",
  15526. extra: 150 / 143,
  15527. bottom: 0.01
  15528. }
  15529. },
  15530. stomping: {
  15531. height: math.unit(7, "feet"),
  15532. weight: math.unit(150, "lb"),
  15533. name: "Stomping",
  15534. image: {
  15535. source: "./media/characters/ian-corvid/stomping.svg",
  15536. extra: 76 / 72
  15537. }
  15538. },
  15539. sitting: {
  15540. height: math.unit(7 / 1.8, "feet"),
  15541. weight: math.unit(150, "lb"),
  15542. name: "Sitting",
  15543. image: {
  15544. source: "./media/characters/ian-corvid/sitting.svg",
  15545. extra: 1400 / 1269,
  15546. bottom: 0.15
  15547. }
  15548. },
  15549. },
  15550. [
  15551. {
  15552. name: "Tiny Microw",
  15553. height: math.unit(1, "inch")
  15554. },
  15555. {
  15556. name: "Microw",
  15557. height: math.unit(6, "inches")
  15558. },
  15559. {
  15560. name: "Crow",
  15561. height: math.unit(7 + 1 / 12, "feet"),
  15562. default: true
  15563. },
  15564. {
  15565. name: "Macrow",
  15566. height: math.unit(176, "feet")
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15572. {
  15573. front: {
  15574. height: math.unit(5 + 7 / 12, "feet"),
  15575. weight: math.unit(147, "lb"),
  15576. name: "Front",
  15577. image: {
  15578. source: "./media/characters/natalie-kellon/front.svg",
  15579. extra: 1214 / 1141,
  15580. bottom: 0.02
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Micro",
  15587. height: math.unit(1 / 16, "inch")
  15588. },
  15589. {
  15590. name: "Tiny",
  15591. height: math.unit(4, "inches")
  15592. },
  15593. {
  15594. name: "Normal",
  15595. height: math.unit(5 + 7 / 12, "feet"),
  15596. default: true
  15597. },
  15598. {
  15599. name: "Amazon",
  15600. height: math.unit(12, "feet")
  15601. },
  15602. {
  15603. name: "Giantess",
  15604. height: math.unit(160, "meters")
  15605. },
  15606. {
  15607. name: "Titaness",
  15608. height: math.unit(800, "meters")
  15609. },
  15610. ]
  15611. ))
  15612. characterMakers.push(() => makeCharacter(
  15613. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15614. {
  15615. front: {
  15616. height: math.unit(6, "feet"),
  15617. weight: math.unit(150, "lb"),
  15618. name: "Front",
  15619. image: {
  15620. source: "./media/characters/alluria/front.svg",
  15621. extra: 806 / 738,
  15622. bottom: 0.01
  15623. }
  15624. },
  15625. side: {
  15626. height: math.unit(6, "feet"),
  15627. weight: math.unit(150, "lb"),
  15628. name: "Side",
  15629. image: {
  15630. source: "./media/characters/alluria/side.svg",
  15631. extra: 800 / 750,
  15632. }
  15633. },
  15634. back: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(150, "lb"),
  15637. name: "Back",
  15638. image: {
  15639. source: "./media/characters/alluria/back.svg",
  15640. extra: 806 / 738,
  15641. }
  15642. },
  15643. frontMaid: {
  15644. height: math.unit(6, "feet"),
  15645. weight: math.unit(150, "lb"),
  15646. name: "Front (Maid)",
  15647. image: {
  15648. source: "./media/characters/alluria/front-maid.svg",
  15649. extra: 806 / 738,
  15650. bottom: 0.01
  15651. }
  15652. },
  15653. sideMaid: {
  15654. height: math.unit(6, "feet"),
  15655. weight: math.unit(150, "lb"),
  15656. name: "Side (Maid)",
  15657. image: {
  15658. source: "./media/characters/alluria/side-maid.svg",
  15659. extra: 800 / 750,
  15660. bottom: 0.005
  15661. }
  15662. },
  15663. backMaid: {
  15664. height: math.unit(6, "feet"),
  15665. weight: math.unit(150, "lb"),
  15666. name: "Back (Maid)",
  15667. image: {
  15668. source: "./media/characters/alluria/back-maid.svg",
  15669. extra: 806 / 738,
  15670. }
  15671. },
  15672. },
  15673. [
  15674. {
  15675. name: "Micro",
  15676. height: math.unit(6, "inches"),
  15677. default: true
  15678. },
  15679. ]
  15680. ))
  15681. characterMakers.push(() => makeCharacter(
  15682. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15683. {
  15684. front: {
  15685. height: math.unit(6, "feet"),
  15686. weight: math.unit(150, "lb"),
  15687. name: "Front",
  15688. image: {
  15689. source: "./media/characters/kyle/front.svg",
  15690. extra: 1069 / 962,
  15691. bottom: 77.228 / 1727.45
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Macro",
  15698. height: math.unit(150, "feet"),
  15699. default: true
  15700. },
  15701. ]
  15702. ))
  15703. characterMakers.push(() => makeCharacter(
  15704. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15705. {
  15706. front: {
  15707. height: math.unit(6, "feet"),
  15708. weight: math.unit(300, "lb"),
  15709. name: "Front",
  15710. image: {
  15711. source: "./media/characters/duncan/front.svg",
  15712. extra: 1650 / 1482,
  15713. bottom: 0.05
  15714. }
  15715. },
  15716. },
  15717. [
  15718. {
  15719. name: "Macro",
  15720. height: math.unit(100, "feet"),
  15721. default: true
  15722. },
  15723. ]
  15724. ))
  15725. characterMakers.push(() => makeCharacter(
  15726. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15727. {
  15728. front: {
  15729. height: math.unit(5 + 4 / 12, "feet"),
  15730. weight: math.unit(220, "lb"),
  15731. name: "Front",
  15732. image: {
  15733. source: "./media/characters/memory/front.svg",
  15734. extra: 3641 / 3545,
  15735. bottom: 0.03
  15736. }
  15737. },
  15738. back: {
  15739. height: math.unit(5 + 4 / 12, "feet"),
  15740. weight: math.unit(220, "lb"),
  15741. name: "Back",
  15742. image: {
  15743. source: "./media/characters/memory/back.svg",
  15744. extra: 3641 / 3545,
  15745. bottom: 0.025
  15746. }
  15747. },
  15748. frontSkirt: {
  15749. height: math.unit(5 + 4 / 12, "feet"),
  15750. weight: math.unit(220, "lb"),
  15751. name: "Front (Skirt)",
  15752. image: {
  15753. source: "./media/characters/memory/front-skirt.svg",
  15754. extra: 3641 / 3545,
  15755. bottom: 0.03
  15756. }
  15757. },
  15758. frontDress: {
  15759. height: math.unit(5 + 4 / 12, "feet"),
  15760. weight: math.unit(220, "lb"),
  15761. name: "Front (Dress)",
  15762. image: {
  15763. source: "./media/characters/memory/front-dress.svg",
  15764. extra: 3641 / 3545,
  15765. bottom: 0.03
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Micro",
  15772. height: math.unit(6, "inches"),
  15773. default: true
  15774. },
  15775. {
  15776. name: "Normal",
  15777. height: math.unit(5 + 4 / 12, "feet")
  15778. },
  15779. ]
  15780. ))
  15781. characterMakers.push(() => makeCharacter(
  15782. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15783. {
  15784. front: {
  15785. height: math.unit(4 + 11 / 12, "feet"),
  15786. weight: math.unit(100, "lb"),
  15787. name: "Front",
  15788. image: {
  15789. source: "./media/characters/luno/front.svg",
  15790. extra: 1535 / 1487,
  15791. bottom: 0.03
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Micro",
  15798. height: math.unit(3, "inches")
  15799. },
  15800. {
  15801. name: "Normal",
  15802. height: math.unit(4 + 11 / 12, "feet"),
  15803. default: true
  15804. },
  15805. {
  15806. name: "Macro",
  15807. height: math.unit(300, "feet")
  15808. },
  15809. {
  15810. name: "Megamacro",
  15811. height: math.unit(700, "miles")
  15812. },
  15813. ]
  15814. ))
  15815. characterMakers.push(() => makeCharacter(
  15816. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15817. {
  15818. front: {
  15819. height: math.unit(6 + 2 / 12, "feet"),
  15820. weight: math.unit(170, "lb"),
  15821. name: "Front",
  15822. image: {
  15823. source: "./media/characters/jamesy/front.svg",
  15824. extra: 440 / 382,
  15825. bottom: 0.005
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Micro",
  15832. height: math.unit(3, "inches")
  15833. },
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(6 + 2 / 12, "feet"),
  15837. default: true
  15838. },
  15839. {
  15840. name: "Macro",
  15841. height: math.unit(300, "feet")
  15842. },
  15843. {
  15844. name: "Megamacro",
  15845. height: math.unit(700, "miles")
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15851. {
  15852. front: {
  15853. height: math.unit(6, "feet"),
  15854. weight: math.unit(160, "lb"),
  15855. name: "Front",
  15856. image: {
  15857. source: "./media/characters/mark/front.svg",
  15858. extra: 3300 / 3100,
  15859. bottom: 136.42 / 3440.47
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Macro",
  15866. height: math.unit(120, "meters")
  15867. },
  15868. {
  15869. name: "Bigger Macro",
  15870. height: math.unit(350, "meters")
  15871. },
  15872. {
  15873. name: "Megamacro",
  15874. height: math.unit(8, "km"),
  15875. default: true
  15876. },
  15877. {
  15878. name: "Continental",
  15879. height: math.unit(4550, "km")
  15880. },
  15881. {
  15882. name: "Planetary",
  15883. height: math.unit(65000, "km")
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15889. {
  15890. front: {
  15891. height: math.unit(6, "feet"),
  15892. weight: math.unit(400, "lb"),
  15893. name: "Front",
  15894. image: {
  15895. source: "./media/characters/mac/front.svg",
  15896. extra: 1048 / 987.7,
  15897. bottom: 60 / 1107.6,
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Macro",
  15904. height: math.unit(500, "feet"),
  15905. default: true
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(5 + 2 / 12, "feet"),
  15914. weight: math.unit(190, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/bari/front.svg",
  15918. extra: 3156 / 2880,
  15919. bottom: 0.03
  15920. }
  15921. },
  15922. back: {
  15923. height: math.unit(5 + 2 / 12, "feet"),
  15924. weight: math.unit(190, "lb"),
  15925. name: "Back",
  15926. image: {
  15927. source: "./media/characters/bari/back.svg",
  15928. extra: 3260 / 2834,
  15929. bottom: 0.025
  15930. }
  15931. },
  15932. frontPlush: {
  15933. height: math.unit(5 + 2 / 12, "feet"),
  15934. weight: math.unit(190, "lb"),
  15935. name: "Front (Plush)",
  15936. image: {
  15937. source: "./media/characters/bari/front-plush.svg",
  15938. extra: 1112 / 1061,
  15939. bottom: 0.002
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Micro",
  15946. height: math.unit(3, "inches")
  15947. },
  15948. {
  15949. name: "Normal",
  15950. height: math.unit(5 + 2 / 12, "feet"),
  15951. default: true
  15952. },
  15953. {
  15954. name: "Macro",
  15955. height: math.unit(20, "feet")
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(6 + 1 / 12, "feet"),
  15964. weight: math.unit(275, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/hunter-misha-raven/front.svg"
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Mortal",
  15974. height: math.unit(6 + 1 / 12, "feet")
  15975. },
  15976. {
  15977. name: "Divine",
  15978. height: math.unit(1.12134e34, "parsecs"),
  15979. default: true
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15985. {
  15986. front: {
  15987. height: math.unit(6 + 3 / 12, "feet"),
  15988. weight: math.unit(220, "lb"),
  15989. name: "Front",
  15990. image: {
  15991. source: "./media/characters/max-calore/front.svg",
  15992. extra: 1700 / 1648,
  15993. bottom: 0.01
  15994. }
  15995. },
  15996. back: {
  15997. height: math.unit(6 + 3 / 12, "feet"),
  15998. weight: math.unit(220, "lb"),
  15999. name: "Back",
  16000. image: {
  16001. source: "./media/characters/max-calore/back.svg",
  16002. extra: 1700 / 1648,
  16003. bottom: 0.01
  16004. }
  16005. },
  16006. },
  16007. [
  16008. {
  16009. name: "Normal",
  16010. height: math.unit(6 + 3 / 12, "feet"),
  16011. default: true
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16017. {
  16018. side: {
  16019. height: math.unit(2 + 8 / 12, "feet"),
  16020. weight: math.unit(99, "lb"),
  16021. name: "Side",
  16022. image: {
  16023. source: "./media/characters/aspen/side.svg",
  16024. extra: 152 / 138,
  16025. bottom: 0.032
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Normal",
  16032. height: math.unit(2 + 8 / 12, "feet"),
  16033. default: true
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16039. {
  16040. side: {
  16041. height: math.unit(3 + 2 / 12, "feet"),
  16042. weight: math.unit(224, "lb"),
  16043. name: "Side",
  16044. image: {
  16045. source: "./media/characters/sheila-feral-wolf/side.svg",
  16046. extra: 179 / 166,
  16047. bottom: 0.03
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(3 + 2 / 12, "feet"),
  16055. default: true
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16061. {
  16062. side: {
  16063. height: math.unit(1 + 9 / 12, "feet"),
  16064. weight: math.unit(38, "lb"),
  16065. name: "Side",
  16066. image: {
  16067. source: "./media/characters/michelle/side.svg",
  16068. extra: 147 / 136.7,
  16069. bottom: 0.03
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(1 + 9 / 12, "feet"),
  16077. default: true
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16083. {
  16084. front: {
  16085. height: math.unit(1 + 1 / 12, "feet"),
  16086. weight: math.unit(18, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/nino/front.svg"
  16090. }
  16091. },
  16092. },
  16093. [
  16094. {
  16095. name: "Normal",
  16096. height: math.unit(1 + 1 / 12, "feet"),
  16097. default: true
  16098. },
  16099. ]
  16100. ))
  16101. characterMakers.push(() => makeCharacter(
  16102. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16103. {
  16104. front: {
  16105. height: math.unit(1, "feet"),
  16106. weight: math.unit(16, "lb"),
  16107. name: "Front",
  16108. image: {
  16109. source: "./media/characters/viola/front.svg"
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Normal",
  16116. height: math.unit(1, "feet"),
  16117. default: true
  16118. },
  16119. ]
  16120. ))
  16121. characterMakers.push(() => makeCharacter(
  16122. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16123. {
  16124. front: {
  16125. height: math.unit(6 + 5 / 12, "feet"),
  16126. weight: math.unit(580, "lb"),
  16127. name: "Front",
  16128. image: {
  16129. source: "./media/characters/atlas/front.svg",
  16130. extra: 298.5 / 290,
  16131. bottom: 0.015
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(6 + 5 / 12, "feet"),
  16139. default: true
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16145. {
  16146. side: {
  16147. height: math.unit(1 + 10 / 12, "feet"),
  16148. weight: math.unit(25, "lb"),
  16149. name: "Side",
  16150. image: {
  16151. source: "./media/characters/davy/side.svg",
  16152. extra: 200 / 170,
  16153. bottom: 0.01
  16154. }
  16155. },
  16156. },
  16157. [
  16158. {
  16159. name: "Normal",
  16160. height: math.unit(1 + 10 / 12, "feet"),
  16161. default: true
  16162. },
  16163. ]
  16164. ))
  16165. characterMakers.push(() => makeCharacter(
  16166. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16167. {
  16168. side: {
  16169. height: math.unit(4 + 8 / 12, "feet"),
  16170. weight: math.unit(166, "lb"),
  16171. name: "Side",
  16172. image: {
  16173. source: "./media/characters/fiona/side.svg",
  16174. extra: 232 / 220,
  16175. bottom: 0.03
  16176. }
  16177. },
  16178. },
  16179. [
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(4 + 8 / 12, "feet"),
  16183. default: true
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16189. {
  16190. front: {
  16191. height: math.unit(2, "feet"),
  16192. weight: math.unit(62, "lb"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/lyla/front.svg",
  16196. bottom: 0.1
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(2, "feet"),
  16204. default: true
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16210. {
  16211. side: {
  16212. height: math.unit(1.8, "feet"),
  16213. weight: math.unit(44, "lb"),
  16214. name: "Side",
  16215. image: {
  16216. source: "./media/characters/perseus/side.svg",
  16217. bottom: 0.21
  16218. }
  16219. },
  16220. },
  16221. [
  16222. {
  16223. name: "Normal",
  16224. height: math.unit(1.8, "feet"),
  16225. default: true
  16226. },
  16227. ]
  16228. ))
  16229. characterMakers.push(() => makeCharacter(
  16230. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16231. {
  16232. side: {
  16233. height: math.unit(4 + 2 / 12, "feet"),
  16234. weight: math.unit(20, "lb"),
  16235. name: "Side",
  16236. image: {
  16237. source: "./media/characters/remus/side.svg"
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(4 + 2 / 12, "feet"),
  16245. default: true
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(4 + 11 / 12, "feet"),
  16254. weight: math.unit(114, "lb"),
  16255. name: "Front",
  16256. image: {
  16257. source: "./media/characters/raf/front.svg",
  16258. bottom: 20.5 / 1863
  16259. }
  16260. },
  16261. side: {
  16262. height: math.unit(4 + 11 / 12, "feet"),
  16263. weight: math.unit(114, "lb"),
  16264. name: "Side",
  16265. image: {
  16266. source: "./media/characters/raf/side.svg",
  16267. bottom: 22 / 1822
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Micro",
  16274. height: math.unit(2, "inches")
  16275. },
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(4 + 11 / 12, "feet"),
  16279. default: true
  16280. },
  16281. {
  16282. name: "Macro",
  16283. height: math.unit(70, "feet")
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16289. {
  16290. front: {
  16291. height: math.unit(1.5, "meters"),
  16292. weight: math.unit(68, "kg"),
  16293. name: "Front",
  16294. image: {
  16295. source: "./media/characters/liam-einarr/front.svg",
  16296. extra: 2822 / 2666
  16297. }
  16298. },
  16299. back: {
  16300. height: math.unit(1.5, "meters"),
  16301. weight: math.unit(68, "kg"),
  16302. name: "Back",
  16303. image: {
  16304. source: "./media/characters/liam-einarr/back.svg",
  16305. extra: 2822 / 2666,
  16306. bottom: 0.015
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Normal",
  16313. height: math.unit(1.5, "meters"),
  16314. default: true
  16315. },
  16316. {
  16317. name: "Macro",
  16318. height: math.unit(150, "meters")
  16319. },
  16320. {
  16321. name: "Megamacro",
  16322. height: math.unit(35, "km")
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16328. {
  16329. front: {
  16330. height: math.unit(6, "feet"),
  16331. weight: math.unit(75, "kg"),
  16332. name: "Front",
  16333. image: {
  16334. source: "./media/characters/linda/front.svg",
  16335. extra: 930 / 874,
  16336. bottom: 0.004
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(6, "feet"),
  16344. default: true
  16345. },
  16346. ]
  16347. ))
  16348. characterMakers.push(() => makeCharacter(
  16349. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16350. {
  16351. front: {
  16352. height: math.unit(6 + 8 / 12, "feet"),
  16353. weight: math.unit(220, "lb"),
  16354. name: "Front",
  16355. image: {
  16356. source: "./media/characters/caylex/front.svg",
  16357. extra: 821 / 772,
  16358. bottom: 0.07
  16359. }
  16360. },
  16361. back: {
  16362. height: math.unit(6 + 8 / 12, "feet"),
  16363. weight: math.unit(220, "lb"),
  16364. name: "Back",
  16365. image: {
  16366. source: "./media/characters/caylex/back.svg",
  16367. extra: 821 / 772,
  16368. bottom: 0.022
  16369. }
  16370. },
  16371. hand: {
  16372. height: math.unit(1.25, "feet"),
  16373. name: "Hand",
  16374. image: {
  16375. source: "./media/characters/caylex/hand.svg"
  16376. }
  16377. },
  16378. foot: {
  16379. height: math.unit(1.6, "feet"),
  16380. name: "Foot",
  16381. image: {
  16382. source: "./media/characters/caylex/foot.svg"
  16383. }
  16384. },
  16385. armored: {
  16386. height: math.unit(6 + 8 / 12, "feet"),
  16387. weight: math.unit(250, "lb"),
  16388. name: "Armored",
  16389. image: {
  16390. source: "./media/characters/caylex/armored.svg",
  16391. extra: 1420 / 1310,
  16392. bottom: 0.045
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(6 + 8 / 12, "feet"),
  16400. default: true
  16401. },
  16402. {
  16403. name: "Normal+",
  16404. height: math.unit(12, "feet")
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(7 + 6 / 12, "feet"),
  16413. weight: math.unit(288, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/alana/front.svg",
  16417. extra: 679 / 653,
  16418. bottom: 22.5 / 701
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(7 + 6 / 12, "feet")
  16426. },
  16427. {
  16428. name: "Large",
  16429. height: math.unit(50, "feet")
  16430. },
  16431. {
  16432. name: "Macro",
  16433. height: math.unit(100, "feet"),
  16434. default: true
  16435. },
  16436. {
  16437. name: "Macro+",
  16438. height: math.unit(200, "feet")
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(6 + 1 / 12, "feet"),
  16447. weight: math.unit(210, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/hasani/front.svg",
  16451. extra: 244 / 232,
  16452. bottom: 0.01
  16453. }
  16454. },
  16455. back: {
  16456. height: math.unit(6 + 1 / 12, "feet"),
  16457. weight: math.unit(210, "lb"),
  16458. name: "Back",
  16459. image: {
  16460. source: "./media/characters/hasani/back.svg",
  16461. extra: 244 / 232,
  16462. bottom: 0.01
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Normal",
  16469. height: math.unit(6 + 1 / 12, "feet")
  16470. },
  16471. {
  16472. name: "Macro",
  16473. height: math.unit(175, "feet"),
  16474. default: true
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16480. {
  16481. front: {
  16482. height: math.unit(1.82, "meters"),
  16483. weight: math.unit(140, "lb"),
  16484. name: "Front",
  16485. image: {
  16486. source: "./media/characters/nita/front.svg",
  16487. extra: 2473 / 2363,
  16488. bottom: 0.01
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(1.82, "m")
  16496. },
  16497. {
  16498. name: "Macro",
  16499. height: math.unit(300, "m")
  16500. },
  16501. {
  16502. name: "Mistake Canon",
  16503. height: math.unit(0.5, "miles"),
  16504. default: true
  16505. },
  16506. {
  16507. name: "Big Mistake",
  16508. height: math.unit(13, "miles")
  16509. },
  16510. {
  16511. name: "Playing God",
  16512. height: math.unit(2450, "miles")
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16518. {
  16519. front: {
  16520. height: math.unit(4, "feet"),
  16521. weight: math.unit(120, "lb"),
  16522. name: "Front",
  16523. image: {
  16524. source: "./media/characters/shiriko/front.svg",
  16525. extra: 195 / 188
  16526. }
  16527. },
  16528. },
  16529. [
  16530. {
  16531. name: "Normal",
  16532. height: math.unit(4, "feet"),
  16533. default: true
  16534. },
  16535. ]
  16536. ))
  16537. characterMakers.push(() => makeCharacter(
  16538. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16539. {
  16540. front: {
  16541. height: math.unit(6, "feet"),
  16542. name: "front",
  16543. image: {
  16544. source: "./media/characters/deja/front.svg",
  16545. extra: 926 / 840,
  16546. bottom: 0.07
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Planck Length",
  16553. height: math.unit(1.6e-35, "meters")
  16554. },
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(30.48, "meters"),
  16558. default: true
  16559. },
  16560. {
  16561. name: "Universal",
  16562. height: math.unit(8.8e26, "meters")
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16568. {
  16569. side: {
  16570. height: math.unit(8, "feet"),
  16571. weight: math.unit(6300, "lb"),
  16572. name: "Side",
  16573. image: {
  16574. source: "./media/characters/anima/side.svg",
  16575. bottom: 0.035
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(8, "feet"),
  16583. default: true
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16589. {
  16590. front: {
  16591. height: math.unit(8, "feet"),
  16592. weight: math.unit(350, "lb"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/bianca/front.svg",
  16596. extra: 234 / 225,
  16597. bottom: 0.03
  16598. }
  16599. },
  16600. },
  16601. [
  16602. {
  16603. name: "Normal",
  16604. height: math.unit(8, "feet"),
  16605. default: true
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16611. {
  16612. front: {
  16613. height: math.unit(6, "feet"),
  16614. weight: math.unit(150, "lb"),
  16615. name: "Front",
  16616. image: {
  16617. source: "./media/characters/adinia/front.svg",
  16618. extra: 1845 / 1672,
  16619. bottom: 0.02
  16620. }
  16621. },
  16622. back: {
  16623. height: math.unit(6, "feet"),
  16624. weight: math.unit(150, "lb"),
  16625. name: "Back",
  16626. image: {
  16627. source: "./media/characters/adinia/back.svg",
  16628. extra: 1845 / 1672,
  16629. bottom: 0.002
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Normal",
  16636. height: math.unit(11 + 5 / 12, "feet"),
  16637. default: true
  16638. },
  16639. ]
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16643. {
  16644. front: {
  16645. height: math.unit(3, "meters"),
  16646. weight: math.unit(200, "kg"),
  16647. name: "Front",
  16648. image: {
  16649. source: "./media/characters/lykasa/front.svg",
  16650. extra: 1076 / 976,
  16651. bottom: 0.06
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(3, "meters")
  16659. },
  16660. {
  16661. name: "Kaiju",
  16662. height: math.unit(120, "meters"),
  16663. default: true
  16664. },
  16665. {
  16666. name: "Mega Kaiju",
  16667. height: math.unit(240, "km")
  16668. },
  16669. {
  16670. name: "Giga Kaiju",
  16671. height: math.unit(400, "megameters")
  16672. },
  16673. {
  16674. name: "Tera Kaiju",
  16675. height: math.unit(800, "gigameters")
  16676. },
  16677. {
  16678. name: "Kaiju Dragon Goddess",
  16679. height: math.unit(26, "zettaparsecs")
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16685. {
  16686. side: {
  16687. height: math.unit(283 / 124 * 6, "feet"),
  16688. weight: math.unit(35000, "lb"),
  16689. name: "Side",
  16690. image: {
  16691. source: "./media/characters/malfaren/side.svg",
  16692. extra: 2500 / 1010,
  16693. bottom: 0.01
  16694. }
  16695. },
  16696. front: {
  16697. height: math.unit(22.36, "feet"),
  16698. weight: math.unit(35000, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/malfaren/front.svg",
  16702. extra: 1631 / 1476,
  16703. bottom: 0.01
  16704. }
  16705. },
  16706. maw: {
  16707. height: math.unit(6.9, "feet"),
  16708. name: "Maw",
  16709. image: {
  16710. source: "./media/characters/malfaren/maw.svg"
  16711. }
  16712. },
  16713. },
  16714. [
  16715. {
  16716. name: "Big",
  16717. height: math.unit(283 / 162 * 6, "feet"),
  16718. },
  16719. {
  16720. name: "Bigger",
  16721. height: math.unit(283 / 124 * 6, "feet")
  16722. },
  16723. {
  16724. name: "Massive",
  16725. height: math.unit(283 / 92 * 6, "feet"),
  16726. default: true
  16727. },
  16728. {
  16729. name: "👀💦",
  16730. height: math.unit(283 / 73 * 6, "feet"),
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16736. {
  16737. front: {
  16738. height: math.unit(1.7, "m"),
  16739. weight: math.unit(70, "kg"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/kernel/front.svg",
  16743. extra: 222 / 210,
  16744. bottom: 0.007
  16745. }
  16746. },
  16747. },
  16748. [
  16749. {
  16750. name: "Nano",
  16751. height: math.unit(17, "micrometers")
  16752. },
  16753. {
  16754. name: "Micro",
  16755. height: math.unit(1.7, "mm")
  16756. },
  16757. {
  16758. name: "Small",
  16759. height: math.unit(1.7, "cm")
  16760. },
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(1.7, "m"),
  16764. default: true
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(1.75, "meters"),
  16773. weight: math.unit(65, "kg"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/jayne-folest/front.svg",
  16777. extra: 2115 / 2007,
  16778. bottom: 0.02
  16779. }
  16780. },
  16781. back: {
  16782. height: math.unit(1.75, "meters"),
  16783. weight: math.unit(65, "kg"),
  16784. name: "Back",
  16785. image: {
  16786. source: "./media/characters/jayne-folest/back.svg",
  16787. extra: 2115 / 2007,
  16788. bottom: 0.005
  16789. }
  16790. },
  16791. frontClothed: {
  16792. height: math.unit(1.75, "meters"),
  16793. weight: math.unit(65, "kg"),
  16794. name: "Front (Clothed)",
  16795. image: {
  16796. source: "./media/characters/jayne-folest/front-clothed.svg",
  16797. extra: 2115 / 2007,
  16798. bottom: 0.035
  16799. }
  16800. },
  16801. hand: {
  16802. height: math.unit(1 / 1.260, "feet"),
  16803. name: "Hand",
  16804. image: {
  16805. source: "./media/characters/jayne-folest/hand.svg"
  16806. }
  16807. },
  16808. foot: {
  16809. height: math.unit(1 / 0.918, "feet"),
  16810. name: "Foot",
  16811. image: {
  16812. source: "./media/characters/jayne-folest/foot.svg"
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Micro",
  16819. height: math.unit(4, "cm")
  16820. },
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(1.75, "meters")
  16824. },
  16825. {
  16826. name: "Macro",
  16827. height: math.unit(47.5, "meters"),
  16828. default: true
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16834. {
  16835. front: {
  16836. height: math.unit(180, "cm"),
  16837. weight: math.unit(70, "kg"),
  16838. name: "Front",
  16839. image: {
  16840. source: "./media/characters/algier/front.svg",
  16841. extra: 596 / 572,
  16842. bottom: 0.04
  16843. }
  16844. },
  16845. back: {
  16846. height: math.unit(180, "cm"),
  16847. weight: math.unit(70, "kg"),
  16848. name: "Back",
  16849. image: {
  16850. source: "./media/characters/algier/back.svg",
  16851. extra: 596 / 572,
  16852. bottom: 0.025
  16853. }
  16854. },
  16855. frontdressed: {
  16856. height: math.unit(180, "cm"),
  16857. weight: math.unit(150, "kg"),
  16858. name: "Front-dressed",
  16859. image: {
  16860. source: "./media/characters/algier/front-dressed.svg",
  16861. extra: 596 / 572,
  16862. bottom: 0.038
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Micro",
  16869. height: math.unit(5, "cm")
  16870. },
  16871. {
  16872. name: "Normal",
  16873. height: math.unit(180, "cm"),
  16874. default: true
  16875. },
  16876. {
  16877. name: "Macro",
  16878. height: math.unit(64, "m")
  16879. },
  16880. ]
  16881. ))
  16882. characterMakers.push(() => makeCharacter(
  16883. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16884. {
  16885. upright: {
  16886. height: math.unit(7, "feet"),
  16887. weight: math.unit(300, "lb"),
  16888. name: "Upright",
  16889. image: {
  16890. source: "./media/characters/pretzel/upright.svg",
  16891. extra: 534 / 522,
  16892. bottom: 0.065
  16893. }
  16894. },
  16895. sprawling: {
  16896. height: math.unit(3.75, "feet"),
  16897. weight: math.unit(300, "lb"),
  16898. name: "Sprawling",
  16899. image: {
  16900. source: "./media/characters/pretzel/sprawling.svg",
  16901. extra: 314 / 281,
  16902. bottom: 0.1
  16903. }
  16904. },
  16905. tongue: {
  16906. height: math.unit(2, "feet"),
  16907. name: "Tongue",
  16908. image: {
  16909. source: "./media/characters/pretzel/tongue.svg"
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(7, "feet"),
  16917. default: true
  16918. },
  16919. {
  16920. name: "Oversized",
  16921. height: math.unit(15, "feet")
  16922. },
  16923. {
  16924. name: "Huge",
  16925. height: math.unit(30, "feet")
  16926. },
  16927. {
  16928. name: "Macro",
  16929. height: math.unit(250, "feet")
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16935. {
  16936. sideFront: {
  16937. height: math.unit(5 + 2 / 12, "feet"),
  16938. weight: math.unit(120, "lb"),
  16939. name: "Front Side",
  16940. image: {
  16941. source: "./media/characters/roxi/side-front.svg",
  16942. extra: 2924 / 2717,
  16943. bottom: 0.08
  16944. }
  16945. },
  16946. sideBack: {
  16947. height: math.unit(5 + 2 / 12, "feet"),
  16948. weight: math.unit(120, "lb"),
  16949. name: "Back Side",
  16950. image: {
  16951. source: "./media/characters/roxi/side-back.svg",
  16952. extra: 2904 / 2693,
  16953. bottom: 0.06
  16954. }
  16955. },
  16956. front: {
  16957. height: math.unit(5 + 2 / 12, "feet"),
  16958. weight: math.unit(120, "lb"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/roxi/front.svg",
  16962. extra: 2028 / 1907,
  16963. bottom: 0.01
  16964. }
  16965. },
  16966. frontAlt: {
  16967. height: math.unit(5 + 2 / 12, "feet"),
  16968. weight: math.unit(120, "lb"),
  16969. name: "Front (Alt)",
  16970. image: {
  16971. source: "./media/characters/roxi/front-alt.svg",
  16972. extra: 1828 / 1798,
  16973. bottom: 0.01
  16974. }
  16975. },
  16976. sitting: {
  16977. height: math.unit(2.8, "feet"),
  16978. weight: math.unit(120, "lb"),
  16979. name: "Sitting",
  16980. image: {
  16981. source: "./media/characters/roxi/sitting.svg",
  16982. extra: 2660 / 2462,
  16983. bottom: 0.1
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(5 + 2 / 12, "feet"),
  16991. default: true
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16997. {
  16998. side: {
  16999. height: math.unit(55, "feet"),
  17000. weight: math.unit(153, "tons"),
  17001. name: "Side",
  17002. image: {
  17003. source: "./media/characters/shadow/side.svg",
  17004. extra: 701 / 628,
  17005. bottom: 0.02
  17006. }
  17007. },
  17008. flying: {
  17009. height: math.unit(145, "feet"),
  17010. weight: math.unit(153, "tons"),
  17011. name: "Flying",
  17012. image: {
  17013. source: "./media/characters/shadow/flying.svg"
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(55, "feet"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17027. {
  17028. front: {
  17029. height: math.unit(6, "feet"),
  17030. weight: math.unit(200, "lb"),
  17031. name: "Front",
  17032. image: {
  17033. source: "./media/characters/marcie/front.svg",
  17034. extra: 960 / 876,
  17035. bottom: 58 / 1017.87
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Macro",
  17042. height: math.unit(1, "mile"),
  17043. default: true
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17049. {
  17050. front: {
  17051. height: math.unit(7, "feet"),
  17052. weight: math.unit(200, "lb"),
  17053. name: "Front",
  17054. image: {
  17055. source: "./media/characters/kachina/front.svg",
  17056. extra: 1290.68 / 1119,
  17057. bottom: 36.5 / 1327.18
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(7, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17071. {
  17072. looking: {
  17073. height: math.unit(2, "meters"),
  17074. weight: math.unit(300, "kg"),
  17075. name: "Looking",
  17076. image: {
  17077. source: "./media/characters/kash/looking.svg",
  17078. extra: 474 / 344,
  17079. bottom: 0.03
  17080. }
  17081. },
  17082. side: {
  17083. height: math.unit(2, "meters"),
  17084. weight: math.unit(300, "kg"),
  17085. name: "Side",
  17086. image: {
  17087. source: "./media/characters/kash/side.svg",
  17088. extra: 302 / 251,
  17089. bottom: 0.03
  17090. }
  17091. },
  17092. front: {
  17093. height: math.unit(2, "meters"),
  17094. weight: math.unit(300, "kg"),
  17095. name: "Front",
  17096. image: {
  17097. source: "./media/characters/kash/front.svg",
  17098. extra: 495 / 360,
  17099. bottom: 0.015
  17100. }
  17101. },
  17102. },
  17103. [
  17104. {
  17105. name: "Normal",
  17106. height: math.unit(2, "meters"),
  17107. default: true
  17108. },
  17109. {
  17110. name: "Big",
  17111. height: math.unit(3, "meters")
  17112. },
  17113. {
  17114. name: "Large",
  17115. height: math.unit(5, "meters")
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17121. {
  17122. feeding: {
  17123. height: math.unit(6.7, "feet"),
  17124. weight: math.unit(350, "lb"),
  17125. name: "Feeding",
  17126. image: {
  17127. source: "./media/characters/lalim/feeding.svg",
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(6.7, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(9.5, "feet"),
  17144. weight: math.unit(600, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/de'vout/front.svg",
  17148. extra: 1443 / 1328,
  17149. bottom: 0.025
  17150. }
  17151. },
  17152. back: {
  17153. height: math.unit(9.5, "feet"),
  17154. weight: math.unit(600, "lb"),
  17155. name: "Back",
  17156. image: {
  17157. source: "./media/characters/de'vout/back.svg",
  17158. extra: 1443 / 1328
  17159. }
  17160. },
  17161. frontDressed: {
  17162. height: math.unit(9.5, "feet"),
  17163. weight: math.unit(600, "lb"),
  17164. name: "Front (Dressed",
  17165. image: {
  17166. source: "./media/characters/de'vout/front-dressed.svg",
  17167. extra: 1443 / 1328,
  17168. bottom: 0.025
  17169. }
  17170. },
  17171. backDressed: {
  17172. height: math.unit(9.5, "feet"),
  17173. weight: math.unit(600, "lb"),
  17174. name: "Back (Dressed",
  17175. image: {
  17176. source: "./media/characters/de'vout/back-dressed.svg",
  17177. extra: 1443 / 1328
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(9.5, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17191. {
  17192. front: {
  17193. height: math.unit(8, "feet"),
  17194. weight: math.unit(225, "lb"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/talana/front.svg",
  17198. extra: 1410 / 1300,
  17199. bottom: 0.015
  17200. }
  17201. },
  17202. frontDressed: {
  17203. height: math.unit(8, "feet"),
  17204. weight: math.unit(225, "lb"),
  17205. name: "Front (Dressed",
  17206. image: {
  17207. source: "./media/characters/talana/front-dressed.svg",
  17208. extra: 1410 / 1300,
  17209. bottom: 0.015
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(8, "feet"),
  17217. default: true
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17223. {
  17224. side: {
  17225. height: math.unit(7.2, "feet"),
  17226. weight: math.unit(150, "lb"),
  17227. name: "Side",
  17228. image: {
  17229. source: "./media/characters/xeauvok/side.svg",
  17230. extra: 1975 / 1523,
  17231. bottom: 0.07
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(7.2, "feet"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17245. {
  17246. side: {
  17247. height: math.unit(10, "feet"),
  17248. weight: math.unit(900, "kg"),
  17249. name: "Side",
  17250. image: {
  17251. source: "./media/characters/zara/side.svg",
  17252. extra: 504 / 498
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(10, "feet"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17266. {
  17267. side: {
  17268. height: math.unit(6, "feet"),
  17269. weight: math.unit(150, "lb"),
  17270. name: "Side",
  17271. image: {
  17272. source: "./media/characters/richard-dragon/side.svg",
  17273. extra: 845 / 340,
  17274. bottom: 0.017
  17275. }
  17276. },
  17277. maw: {
  17278. height: math.unit(2.97, "feet"),
  17279. name: "Maw",
  17280. image: {
  17281. source: "./media/characters/richard-dragon/maw.svg"
  17282. }
  17283. },
  17284. },
  17285. [
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(4, "feet"),
  17293. weight: math.unit(100, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/richard-smeargle/front.svg",
  17297. extra: 2952 / 2820,
  17298. bottom: 0.028
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(4, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Dynamax",
  17310. height: math.unit(20, "meters")
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(6, "feet"),
  17319. weight: math.unit(110, "lb"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/klay/front.svg",
  17323. extra: 962 / 883,
  17324. bottom: 0.04
  17325. }
  17326. },
  17327. back: {
  17328. height: math.unit(6, "feet"),
  17329. weight: math.unit(110, "lb"),
  17330. name: "Back",
  17331. image: {
  17332. source: "./media/characters/klay/back.svg",
  17333. extra: 962 / 883
  17334. }
  17335. },
  17336. beans: {
  17337. height: math.unit(1.15, "feet"),
  17338. name: "Beans",
  17339. image: {
  17340. source: "./media/characters/klay/beans.svg"
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Micro",
  17347. height: math.unit(6, "inches")
  17348. },
  17349. {
  17350. name: "Mini",
  17351. height: math.unit(3, "feet")
  17352. },
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(6, "feet"),
  17356. default: true
  17357. },
  17358. {
  17359. name: "Big",
  17360. height: math.unit(25, "feet")
  17361. },
  17362. {
  17363. name: "Macro",
  17364. height: math.unit(100, "feet")
  17365. },
  17366. {
  17367. name: "Megamacro",
  17368. height: math.unit(400, "feet")
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17374. {
  17375. front: {
  17376. height: math.unit(6, "feet"),
  17377. weight: math.unit(160, "lb"),
  17378. name: "Front",
  17379. image: {
  17380. source: "./media/characters/marcus/front.svg",
  17381. extra: 734 / 676,
  17382. bottom: 0.03
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Little",
  17389. height: math.unit(6, "feet")
  17390. },
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(110, "feet"),
  17394. default: true
  17395. },
  17396. {
  17397. name: "Macro",
  17398. height: math.unit(250, "feet")
  17399. },
  17400. {
  17401. name: "Megamacro",
  17402. height: math.unit(1000, "feet")
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17408. {
  17409. front: {
  17410. height: math.unit(7, "feet"),
  17411. weight: math.unit(275, "lb"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/claude-delroute/front.svg",
  17415. extra: 230 / 214,
  17416. bottom: 0.007
  17417. }
  17418. },
  17419. side: {
  17420. height: math.unit(7, "feet"),
  17421. weight: math.unit(275, "lb"),
  17422. name: "Side",
  17423. image: {
  17424. source: "./media/characters/claude-delroute/side.svg",
  17425. extra: 222 / 214,
  17426. bottom: 0.01
  17427. }
  17428. },
  17429. back: {
  17430. height: math.unit(7, "feet"),
  17431. weight: math.unit(275, "lb"),
  17432. name: "Back",
  17433. image: {
  17434. source: "./media/characters/claude-delroute/back.svg",
  17435. extra: 230 / 214,
  17436. bottom: 0.015
  17437. }
  17438. },
  17439. maw: {
  17440. height: math.unit(0.6407, "meters"),
  17441. name: "Maw",
  17442. image: {
  17443. source: "./media/characters/claude-delroute/maw.svg"
  17444. }
  17445. },
  17446. },
  17447. [
  17448. {
  17449. name: "Normal",
  17450. height: math.unit(7, "feet"),
  17451. default: true
  17452. },
  17453. {
  17454. name: "Lorge",
  17455. height: math.unit(20, "feet")
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(8 + 4 / 12, "feet"),
  17464. weight: math.unit(600, "lb"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/dragonien/front.svg",
  17468. extra: 100 / 94,
  17469. bottom: 3.3 / 103.3445
  17470. }
  17471. },
  17472. back: {
  17473. height: math.unit(8 + 4 / 12, "feet"),
  17474. weight: math.unit(600, "lb"),
  17475. name: "Back",
  17476. image: {
  17477. source: "./media/characters/dragonien/back.svg",
  17478. extra: 776 / 746,
  17479. bottom: 6.4 / 782.0616
  17480. }
  17481. },
  17482. foot: {
  17483. height: math.unit(1.54, "feet"),
  17484. name: "Foot",
  17485. image: {
  17486. source: "./media/characters/dragonien/foot.svg",
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(8 + 4 / 12, "feet"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Macro",
  17498. height: math.unit(200, "feet")
  17499. },
  17500. {
  17501. name: "Megamacro",
  17502. height: math.unit(1, "mile")
  17503. },
  17504. {
  17505. name: "Gigamacro",
  17506. height: math.unit(1000, "miles")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(5 + 2 / 12, "feet"),
  17515. weight: math.unit(110, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/desta/front.svg",
  17519. extra: 767 / 726,
  17520. bottom: 11.7 / 779
  17521. }
  17522. },
  17523. back: {
  17524. height: math.unit(5 + 2 / 12, "feet"),
  17525. weight: math.unit(110, "lb"),
  17526. name: "Back",
  17527. image: {
  17528. source: "./media/characters/desta/back.svg",
  17529. extra: 777 / 728,
  17530. bottom: 6 / 784
  17531. }
  17532. },
  17533. frontAlt: {
  17534. height: math.unit(5 + 2 / 12, "feet"),
  17535. weight: math.unit(110, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/desta/front-alt.svg",
  17539. extra: 1482 / 1417
  17540. }
  17541. },
  17542. side: {
  17543. height: math.unit(5 + 2 / 12, "feet"),
  17544. weight: math.unit(110, "lb"),
  17545. name: "Side",
  17546. image: {
  17547. source: "./media/characters/desta/side.svg",
  17548. extra: 2579 / 2491,
  17549. bottom: 0.053
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Micro",
  17556. height: math.unit(6, "inches")
  17557. },
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(5 + 2 / 12, "feet"),
  17561. default: true
  17562. },
  17563. {
  17564. name: "Macro",
  17565. height: math.unit(62, "feet")
  17566. },
  17567. {
  17568. name: "Megamacro",
  17569. height: math.unit(1800, "feet")
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17575. {
  17576. front: {
  17577. height: math.unit(10, "feet"),
  17578. weight: math.unit(700, "lb"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/storm-alystar/front.svg",
  17582. extra: 2112 / 1898,
  17583. bottom: 0.034
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Micro",
  17590. height: math.unit(3.5, "inches")
  17591. },
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(10, "feet"),
  17595. default: true
  17596. },
  17597. {
  17598. name: "Macro",
  17599. height: math.unit(400, "feet")
  17600. },
  17601. {
  17602. name: "Deific",
  17603. height: math.unit(60, "miles")
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17609. {
  17610. front: {
  17611. height: math.unit(2.35, "meters"),
  17612. weight: math.unit(119, "kg"),
  17613. name: "Front",
  17614. image: {
  17615. source: "./media/characters/ilia/front.svg",
  17616. extra: 1285 / 1255,
  17617. bottom: 0.06
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Normal",
  17624. height: math.unit(2.35, "meters")
  17625. },
  17626. {
  17627. name: "Macro",
  17628. height: math.unit(140, "meters"),
  17629. default: true
  17630. },
  17631. {
  17632. name: "Megamacro",
  17633. height: math.unit(100, "miles")
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17639. {
  17640. front: {
  17641. height: math.unit(6 + 5 / 12, "feet"),
  17642. weight: math.unit(190, "lb"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/kingdead/front.svg",
  17646. extra: 1228 / 1177
  17647. }
  17648. },
  17649. },
  17650. [
  17651. {
  17652. name: "Micro",
  17653. height: math.unit(7, "inches")
  17654. },
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(6 + 5 / 12, "feet")
  17658. },
  17659. {
  17660. name: "Macro",
  17661. height: math.unit(150, "feet"),
  17662. default: true
  17663. },
  17664. {
  17665. name: "Megamacro",
  17666. height: math.unit(200, "miles")
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(8, "feet"),
  17675. weight: math.unit(600, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/kyrehx/front.svg",
  17679. extra: 1195 / 1095,
  17680. bottom: 0.034
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Micro",
  17687. height: math.unit(2, "inches")
  17688. },
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(8, "feet"),
  17692. default: true
  17693. },
  17694. {
  17695. name: "Macro",
  17696. height: math.unit(255, "feet")
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17702. {
  17703. front: {
  17704. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17705. weight: math.unit(184, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/xang/front.svg",
  17709. extra: 845 / 755
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17717. default: true
  17718. },
  17719. {
  17720. name: "Macro",
  17721. height: math.unit(0.935 * 146, "feet")
  17722. },
  17723. {
  17724. name: "Megamacro",
  17725. height: math.unit(0.935 * 3, "miles")
  17726. },
  17727. ]
  17728. ))
  17729. characterMakers.push(() => makeCharacter(
  17730. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17731. {
  17732. frontDressed: {
  17733. height: math.unit(5 + 7 / 12, "feet"),
  17734. weight: math.unit(140, "lb"),
  17735. name: "Front (Dressed)",
  17736. image: {
  17737. source: "./media/characters/doc-weardno/front-dressed.svg",
  17738. extra: 263 / 234
  17739. }
  17740. },
  17741. backDressed: {
  17742. height: math.unit(5 + 7 / 12, "feet"),
  17743. weight: math.unit(140, "lb"),
  17744. name: "Back (Dressed)",
  17745. image: {
  17746. source: "./media/characters/doc-weardno/back-dressed.svg",
  17747. extra: 266 / 238
  17748. }
  17749. },
  17750. front: {
  17751. height: math.unit(5 + 7 / 12, "feet"),
  17752. weight: math.unit(140, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/doc-weardno/front.svg",
  17756. extra: 254 / 233
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Micro",
  17763. height: math.unit(3, "inches")
  17764. },
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(5 + 7 / 12, "feet"),
  17768. default: true
  17769. },
  17770. {
  17771. name: "Macro",
  17772. height: math.unit(25, "feet")
  17773. },
  17774. {
  17775. name: "Megamacro",
  17776. height: math.unit(2, "miles")
  17777. },
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17782. {
  17783. front: {
  17784. height: math.unit(6 + 2 / 12, "feet"),
  17785. weight: math.unit(153, "lb"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/seth-whilst/front.svg",
  17789. bottom: 0.07
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Micro",
  17796. height: math.unit(5, "inches")
  17797. },
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(6 + 2 / 12, "feet"),
  17801. default: true
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17807. {
  17808. front: {
  17809. height: math.unit(3, "inches"),
  17810. weight: math.unit(8, "grams"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/pocket-jabari/front.svg",
  17814. extra: 1024 / 974,
  17815. bottom: 0.039
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Minimicro",
  17822. height: math.unit(8, "mm")
  17823. },
  17824. {
  17825. name: "Micro",
  17826. height: math.unit(3, "inches"),
  17827. default: true
  17828. },
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(3, "feet")
  17832. },
  17833. ]
  17834. ))
  17835. characterMakers.push(() => makeCharacter(
  17836. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17837. {
  17838. front: {
  17839. height: math.unit(15, "feet"),
  17840. weight: math.unit(3280, "lb"),
  17841. name: "Front",
  17842. image: {
  17843. source: "./media/characters/sapphy/front.svg",
  17844. extra: 671 / 577,
  17845. bottom: 0.085
  17846. }
  17847. },
  17848. back: {
  17849. height: math.unit(15, "feet"),
  17850. weight: math.unit(3280, "lb"),
  17851. name: "Back",
  17852. image: {
  17853. source: "./media/characters/sapphy/back.svg",
  17854. extra: 631 / 607,
  17855. bottom: 0.045
  17856. }
  17857. },
  17858. },
  17859. [
  17860. {
  17861. name: "Normal",
  17862. height: math.unit(15, "feet")
  17863. },
  17864. {
  17865. name: "Casual Macro",
  17866. height: math.unit(120, "feet")
  17867. },
  17868. {
  17869. name: "Macro",
  17870. height: math.unit(2150, "feet"),
  17871. default: true
  17872. },
  17873. {
  17874. name: "Megamacro",
  17875. height: math.unit(8, "miles")
  17876. },
  17877. {
  17878. name: "Galaxy Mom",
  17879. height: math.unit(6, "megalightyears")
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(6, "feet"),
  17888. weight: math.unit(170, "lb"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/kiro/front.svg",
  17892. extra: 1064 / 1012,
  17893. bottom: 0.052
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Micro",
  17900. height: math.unit(6, "inches")
  17901. },
  17902. {
  17903. name: "Normal",
  17904. height: math.unit(6, "feet"),
  17905. default: true
  17906. },
  17907. {
  17908. name: "Macro",
  17909. height: math.unit(72, "feet")
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17915. {
  17916. front: {
  17917. height: math.unit(5 + 9 / 12, "feet"),
  17918. weight: math.unit(175, "lb"),
  17919. name: "Front",
  17920. image: {
  17921. source: "./media/characters/irishfox/front.svg",
  17922. extra: 1912 / 1680,
  17923. bottom: 0.02
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Nano",
  17930. height: math.unit(1, "mm")
  17931. },
  17932. {
  17933. name: "Micro",
  17934. height: math.unit(2, "inches")
  17935. },
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(5 + 9 / 12, "feet"),
  17939. default: true
  17940. },
  17941. {
  17942. name: "Macro",
  17943. height: math.unit(45, "feet")
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(6 + 1 / 12, "feet"),
  17952. weight: math.unit(150, "lb"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/aronai-sieyes/front.svg",
  17956. extra: 1556 / 1480,
  17957. bottom: 0.015
  17958. }
  17959. },
  17960. side: {
  17961. height: math.unit(6 + 1 / 12, "feet"),
  17962. weight: math.unit(150, "lb"),
  17963. name: "Side",
  17964. image: {
  17965. source: "./media/characters/aronai-sieyes/side.svg",
  17966. extra: 1433 / 1390,
  17967. bottom: 0.0393
  17968. }
  17969. },
  17970. back: {
  17971. height: math.unit(6 + 1 / 12, "feet"),
  17972. weight: math.unit(150, "lb"),
  17973. name: "Back",
  17974. image: {
  17975. source: "./media/characters/aronai-sieyes/back.svg",
  17976. extra: 1544 / 1494,
  17977. bottom: 0.02
  17978. }
  17979. },
  17980. frontClothed: {
  17981. height: math.unit(6 + 1 / 12, "feet"),
  17982. weight: math.unit(150, "lb"),
  17983. name: "Front (Clothed)",
  17984. image: {
  17985. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17986. extra: 1582 / 1527
  17987. }
  17988. },
  17989. feral: {
  17990. height: math.unit(18, "feet"),
  17991. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17992. name: "Feral",
  17993. image: {
  17994. source: "./media/characters/aronai-sieyes/feral.svg",
  17995. extra: 1530 / 1240,
  17996. bottom: 0.035
  17997. }
  17998. },
  17999. },
  18000. [
  18001. {
  18002. name: "Micro",
  18003. height: math.unit(2, "inches")
  18004. },
  18005. {
  18006. name: "Normal",
  18007. height: math.unit(6 + 1 / 12, "feet"),
  18008. default: true
  18009. }
  18010. ]
  18011. ))
  18012. characterMakers.push(() => makeCharacter(
  18013. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18014. {
  18015. front: {
  18016. height: math.unit(12, "feet"),
  18017. weight: math.unit(410, "kg"),
  18018. name: "Front",
  18019. image: {
  18020. source: "./media/characters/xuna/front.svg",
  18021. extra: 2184 / 1980
  18022. }
  18023. },
  18024. side: {
  18025. height: math.unit(12, "feet"),
  18026. weight: math.unit(410, "kg"),
  18027. name: "Side",
  18028. image: {
  18029. source: "./media/characters/xuna/side.svg",
  18030. extra: 2184 / 1980
  18031. }
  18032. },
  18033. back: {
  18034. height: math.unit(12, "feet"),
  18035. weight: math.unit(410, "kg"),
  18036. name: "Back",
  18037. image: {
  18038. source: "./media/characters/xuna/back.svg",
  18039. extra: 2184 / 1980
  18040. }
  18041. },
  18042. },
  18043. [
  18044. {
  18045. name: "Nano glow",
  18046. height: math.unit(10, "nm")
  18047. },
  18048. {
  18049. name: "Micro floof",
  18050. height: math.unit(0.3, "m")
  18051. },
  18052. {
  18053. name: "Huggable softy boi",
  18054. height: math.unit(3.6576, "m"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Admirable floof",
  18059. height: math.unit(80, "meters")
  18060. },
  18061. {
  18062. name: "Gentle macro",
  18063. height: math.unit(300, "meters")
  18064. },
  18065. {
  18066. name: "Very careful floof",
  18067. height: math.unit(3200, "meters")
  18068. },
  18069. {
  18070. name: "The mega floof",
  18071. height: math.unit(36000, "meters")
  18072. },
  18073. {
  18074. name: "Giga-fur-Wicker",
  18075. height: math.unit(4800000, "meters")
  18076. },
  18077. {
  18078. name: "Licky world",
  18079. height: math.unit(20000000, "meters")
  18080. },
  18081. {
  18082. name: "Floofy cyan sun",
  18083. height: math.unit(1500000000, "meters")
  18084. },
  18085. {
  18086. name: "Milky Wicker",
  18087. height: math.unit(1000000000000000000000, "meters")
  18088. },
  18089. {
  18090. name: "The observing Wicker",
  18091. height: math.unit(999999999999999999999999999, "meters")
  18092. },
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18097. {
  18098. front: {
  18099. height: math.unit(5 + 9 / 12, "feet"),
  18100. weight: math.unit(150, "lb"),
  18101. name: "Front",
  18102. image: {
  18103. source: "./media/characters/arokha-sieyes/front.svg",
  18104. extra: 1425 / 1284,
  18105. bottom: 0.05
  18106. }
  18107. },
  18108. },
  18109. [
  18110. {
  18111. name: "Normal",
  18112. height: math.unit(5 + 9 / 12, "feet")
  18113. },
  18114. {
  18115. name: "Macro",
  18116. height: math.unit(30, "meters"),
  18117. default: true
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18123. {
  18124. front: {
  18125. height: math.unit(6, "feet"),
  18126. weight: math.unit(180, "lb"),
  18127. name: "Front",
  18128. image: {
  18129. source: "./media/characters/arokh-sieyes/front.svg",
  18130. extra: 1830 / 1769,
  18131. bottom: 0.01
  18132. }
  18133. },
  18134. },
  18135. [
  18136. {
  18137. name: "Normal",
  18138. height: math.unit(6, "feet")
  18139. },
  18140. {
  18141. name: "Macro",
  18142. height: math.unit(30, "meters"),
  18143. default: true
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18149. {
  18150. side: {
  18151. height: math.unit(13 + 1 / 12, "feet"),
  18152. weight: math.unit(8.5, "tonnes"),
  18153. name: "Side",
  18154. image: {
  18155. source: "./media/characters/goldeneye/side.svg",
  18156. extra: 1182 / 778,
  18157. bottom: 0.067
  18158. }
  18159. },
  18160. paw: {
  18161. height: math.unit(3.4, "feet"),
  18162. name: "Paw",
  18163. image: {
  18164. source: "./media/characters/goldeneye/paw.svg"
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "Normal",
  18171. height: math.unit(13 + 1 / 12, "feet"),
  18172. default: true
  18173. },
  18174. ]
  18175. ))
  18176. characterMakers.push(() => makeCharacter(
  18177. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18178. {
  18179. front: {
  18180. height: math.unit(6 + 1 / 12, "feet"),
  18181. weight: math.unit(210, "lb"),
  18182. name: "Front",
  18183. image: {
  18184. source: "./media/characters/leonardo-lycheborne/front.svg",
  18185. extra: 390 / 365,
  18186. bottom: 0.032
  18187. }
  18188. },
  18189. side: {
  18190. height: math.unit(6 + 1 / 12, "feet"),
  18191. weight: math.unit(210, "lb"),
  18192. name: "Side",
  18193. image: {
  18194. source: "./media/characters/leonardo-lycheborne/side.svg",
  18195. extra: 390 / 365,
  18196. bottom: 0.005
  18197. }
  18198. },
  18199. back: {
  18200. height: math.unit(6 + 1 / 12, "feet"),
  18201. weight: math.unit(210, "lb"),
  18202. name: "Back",
  18203. image: {
  18204. source: "./media/characters/leonardo-lycheborne/back.svg",
  18205. extra: 392 / 366,
  18206. bottom: 0.01
  18207. }
  18208. },
  18209. hand: {
  18210. height: math.unit(1.08, "feet"),
  18211. name: "Hand",
  18212. image: {
  18213. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18214. }
  18215. },
  18216. foot: {
  18217. height: math.unit(1.32, "feet"),
  18218. name: "Foot",
  18219. image: {
  18220. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18221. }
  18222. },
  18223. were: {
  18224. height: math.unit(20, "feet"),
  18225. weight: math.unit(7800, "lb"),
  18226. name: "Were",
  18227. image: {
  18228. source: "./media/characters/leonardo-lycheborne/were.svg",
  18229. extra: 308 / 294,
  18230. bottom: 0.048
  18231. }
  18232. },
  18233. feral: {
  18234. height: math.unit(7.5, "feet"),
  18235. weight: math.unit(600, "lb"),
  18236. name: "Feral",
  18237. image: {
  18238. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18239. extra: 210 / 186,
  18240. bottom: 0.108
  18241. }
  18242. },
  18243. taur: {
  18244. height: math.unit(11, "feet"),
  18245. weight: math.unit(3300, "lb"),
  18246. name: "Taur",
  18247. image: {
  18248. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18249. extra: 320 / 303,
  18250. bottom: 0.025
  18251. }
  18252. },
  18253. barghest: {
  18254. height: math.unit(11, "feet"),
  18255. weight: math.unit(1300, "lb"),
  18256. name: "Barghest",
  18257. image: {
  18258. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18259. extra: 323 / 302,
  18260. bottom: 0.027
  18261. }
  18262. },
  18263. dick: {
  18264. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18265. name: "Dick",
  18266. image: {
  18267. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18268. }
  18269. },
  18270. dickWere: {
  18271. height: math.unit((20) / 3.8, "feet"),
  18272. name: "Dick (Were)",
  18273. image: {
  18274. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(6 + 1 / 12, "feet"),
  18282. default: true
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18288. {
  18289. front: {
  18290. height: math.unit(10, "feet"),
  18291. weight: math.unit(350, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/jet/front.svg",
  18295. extra: 2050 / 1980,
  18296. bottom: 0.013
  18297. }
  18298. },
  18299. back: {
  18300. height: math.unit(10, "feet"),
  18301. weight: math.unit(350, "lb"),
  18302. name: "Back",
  18303. image: {
  18304. source: "./media/characters/jet/back.svg",
  18305. extra: 2050 / 1980,
  18306. bottom: 0.013
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Micro",
  18313. height: math.unit(6, "inches")
  18314. },
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(10, "feet"),
  18318. default: true
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(100, "feet")
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18328. {
  18329. front: {
  18330. height: math.unit(15, "feet"),
  18331. weight: math.unit(2800, "lb"),
  18332. name: "Front",
  18333. image: {
  18334. source: "./media/characters/tanarath/front.svg",
  18335. extra: 2392 / 2220,
  18336. bottom: 0.03
  18337. }
  18338. },
  18339. back: {
  18340. height: math.unit(15, "feet"),
  18341. weight: math.unit(2800, "lb"),
  18342. name: "Back",
  18343. image: {
  18344. source: "./media/characters/tanarath/back.svg",
  18345. extra: 2392 / 2220,
  18346. bottom: 0.03
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(15, "feet"),
  18354. default: true
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18360. {
  18361. front: {
  18362. height: math.unit(7 + 1 / 12, "feet"),
  18363. weight: math.unit(175, "lb"),
  18364. name: "Front",
  18365. image: {
  18366. source: "./media/characters/patty-cattybatty/front.svg",
  18367. extra: 908 / 874,
  18368. bottom: 0.025
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Micro",
  18375. height: math.unit(1, "inch")
  18376. },
  18377. {
  18378. name: "Normal",
  18379. height: math.unit(7 + 1 / 12, "feet")
  18380. },
  18381. {
  18382. name: "Mini Macro",
  18383. height: math.unit(155, "feet")
  18384. },
  18385. {
  18386. name: "Macro",
  18387. height: math.unit(1077, "feet")
  18388. },
  18389. {
  18390. name: "Mega Macro",
  18391. height: math.unit(47650, "feet"),
  18392. default: true
  18393. },
  18394. {
  18395. name: "Giga Macro",
  18396. height: math.unit(440, "miles")
  18397. },
  18398. {
  18399. name: "Tera Macro",
  18400. height: math.unit(8700, "miles")
  18401. },
  18402. {
  18403. name: "Planetary Macro",
  18404. height: math.unit(32700, "miles")
  18405. },
  18406. {
  18407. name: "Solar Macro",
  18408. height: math.unit(550000, "miles")
  18409. },
  18410. {
  18411. name: "Celestial Macro",
  18412. height: math.unit(2.5, "AU")
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(4 + 5 / 12, "feet"),
  18421. weight: math.unit(90, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/cappu/front.svg",
  18425. extra: 1247 / 1152,
  18426. bottom: 0.012
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(4 + 5 / 12, "feet"),
  18434. default: true
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18440. {
  18441. frontDressed: {
  18442. height: math.unit(70, "cm"),
  18443. weight: math.unit(6, "kg"),
  18444. name: "Front (Dressed)",
  18445. image: {
  18446. source: "./media/characters/sebi/front-dressed.svg",
  18447. extra: 713.5 / 686.5,
  18448. bottom: 0.003
  18449. }
  18450. },
  18451. front: {
  18452. height: math.unit(70, "cm"),
  18453. weight: math.unit(5, "kg"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/sebi/front.svg",
  18457. extra: 713.5 / 686.5,
  18458. bottom: 0.003
  18459. }
  18460. }
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(70, "cm"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Macro",
  18470. height: math.unit(8, "meters")
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(6, "feet"),
  18479. weight: math.unit(150, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/typhek/front.svg",
  18483. extra: 1948 / 1929,
  18484. bottom: 0.025
  18485. }
  18486. },
  18487. side: {
  18488. height: math.unit(6, "feet"),
  18489. weight: math.unit(150, "lb"),
  18490. name: "Side",
  18491. image: {
  18492. source: "./media/characters/typhek/side.svg",
  18493. extra: 2034 / 2010,
  18494. bottom: 0.003
  18495. }
  18496. },
  18497. back: {
  18498. height: math.unit(6, "feet"),
  18499. weight: math.unit(150, "lb"),
  18500. name: "Back",
  18501. image: {
  18502. source: "./media/characters/typhek/back.svg",
  18503. extra: 2005 / 1978,
  18504. bottom: 0.004
  18505. }
  18506. },
  18507. palm: {
  18508. height: math.unit(1.2, "feet"),
  18509. name: "Palm",
  18510. image: {
  18511. source: "./media/characters/typhek/palm.svg"
  18512. }
  18513. },
  18514. fist: {
  18515. height: math.unit(1.1, "feet"),
  18516. name: "Fist",
  18517. image: {
  18518. source: "./media/characters/typhek/fist.svg"
  18519. }
  18520. },
  18521. foot: {
  18522. height: math.unit(1.57, "feet"),
  18523. name: "Foot",
  18524. image: {
  18525. source: "./media/characters/typhek/foot.svg"
  18526. }
  18527. },
  18528. sole: {
  18529. height: math.unit(2.05, "feet"),
  18530. name: "Sole",
  18531. image: {
  18532. source: "./media/characters/typhek/sole.svg"
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Macro",
  18539. height: math.unit(40, "stories"),
  18540. default: true
  18541. },
  18542. {
  18543. name: "Megamacro",
  18544. height: math.unit(1, "mile")
  18545. },
  18546. {
  18547. name: "Gigamacro",
  18548. height: math.unit(4000, "solarradii")
  18549. },
  18550. {
  18551. name: "Universal",
  18552. height: math.unit(1.1, "universes")
  18553. }
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18558. {
  18559. side: {
  18560. height: math.unit(5 + 7 / 12, "feet"),
  18561. weight: math.unit(150, "lb"),
  18562. name: "Side",
  18563. image: {
  18564. source: "./media/characters/kassy/side.svg",
  18565. extra: 1280 / 1225,
  18566. bottom: 0.002
  18567. }
  18568. },
  18569. front: {
  18570. height: math.unit(5 + 7 / 12, "feet"),
  18571. weight: math.unit(150, "lb"),
  18572. name: "Front",
  18573. image: {
  18574. source: "./media/characters/kassy/front.svg",
  18575. extra: 1280 / 1225,
  18576. bottom: 0.025
  18577. }
  18578. },
  18579. back: {
  18580. height: math.unit(5 + 7 / 12, "feet"),
  18581. weight: math.unit(150, "lb"),
  18582. name: "Back",
  18583. image: {
  18584. source: "./media/characters/kassy/back.svg",
  18585. extra: 1280 / 1225,
  18586. bottom: 0.002
  18587. }
  18588. },
  18589. foot: {
  18590. height: math.unit(1.266, "feet"),
  18591. name: "Foot",
  18592. image: {
  18593. source: "./media/characters/kassy/foot.svg"
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Normal",
  18600. height: math.unit(5 + 7 / 12, "feet")
  18601. },
  18602. {
  18603. name: "Macro",
  18604. height: math.unit(137, "feet"),
  18605. default: true
  18606. },
  18607. {
  18608. name: "Megamacro",
  18609. height: math.unit(1, "mile")
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(6 + 1 / 12, "feet"),
  18618. weight: math.unit(200, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/neil/front.svg",
  18622. extra: 1326 / 1250,
  18623. bottom: 0.023
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(6 + 1 / 12, "feet"),
  18631. default: true
  18632. },
  18633. {
  18634. name: "Macro",
  18635. height: math.unit(200, "feet")
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18641. {
  18642. front: {
  18643. height: math.unit(5 + 9 / 12, "feet"),
  18644. weight: math.unit(190, "lb"),
  18645. name: "Front",
  18646. image: {
  18647. source: "./media/characters/atticus/front.svg",
  18648. extra: 2934 / 2785,
  18649. bottom: 0.025
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(5 + 9 / 12, "feet"),
  18657. default: true
  18658. },
  18659. {
  18660. name: "Macro",
  18661. height: math.unit(180, "feet")
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18667. {
  18668. side: {
  18669. height: math.unit(9, "feet"),
  18670. weight: math.unit(650, "lb"),
  18671. name: "Side",
  18672. image: {
  18673. source: "./media/characters/milo/side.svg",
  18674. extra: 2644 / 2310,
  18675. bottom: 0.032
  18676. }
  18677. },
  18678. },
  18679. [
  18680. {
  18681. name: "Normal",
  18682. height: math.unit(9, "feet"),
  18683. default: true
  18684. },
  18685. {
  18686. name: "Macro",
  18687. height: math.unit(300, "feet")
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18693. {
  18694. side: {
  18695. height: math.unit(8, "meters"),
  18696. weight: math.unit(90000, "kg"),
  18697. name: "Side",
  18698. image: {
  18699. source: "./media/characters/ijzer/side.svg",
  18700. extra: 2756 / 1600,
  18701. bottom: 0.01
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Small",
  18708. height: math.unit(3, "meters")
  18709. },
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(8, "meters"),
  18713. default: true
  18714. },
  18715. {
  18716. name: "Normal+",
  18717. height: math.unit(10, "meters")
  18718. },
  18719. {
  18720. name: "Bigger",
  18721. height: math.unit(24, "meters")
  18722. },
  18723. {
  18724. name: "Huge",
  18725. height: math.unit(80, "meters")
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(6 + 2 / 12, "feet"),
  18734. weight: math.unit(153, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/luca-cervicum/front.svg",
  18738. extra: 370 / 327,
  18739. bottom: 0.015
  18740. }
  18741. },
  18742. back: {
  18743. height: math.unit(6 + 2 / 12, "feet"),
  18744. weight: math.unit(153, "lb"),
  18745. name: "Back",
  18746. image: {
  18747. source: "./media/characters/luca-cervicum/back.svg",
  18748. extra: 367 / 333,
  18749. bottom: 0.005
  18750. }
  18751. },
  18752. frontGear: {
  18753. height: math.unit(6 + 2 / 12, "feet"),
  18754. weight: math.unit(173, "lb"),
  18755. name: "Front (Gear)",
  18756. image: {
  18757. source: "./media/characters/luca-cervicum/front-gear.svg",
  18758. extra: 377 / 333,
  18759. bottom: 0.006
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Normal",
  18766. height: math.unit(6 + 2 / 12, "feet"),
  18767. default: true
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(6 + 1 / 12, "feet"),
  18776. weight: math.unit(304, "lb"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/oliver/front.svg",
  18780. extra: 157 / 143,
  18781. bottom: 0.08
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Normal",
  18788. height: math.unit(6 + 1 / 12, "feet"),
  18789. default: true
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(5 + 7 / 12, "feet"),
  18798. weight: math.unit(140, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/shane/front.svg",
  18802. extra: 304 / 289,
  18803. bottom: 0.005
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Normal",
  18810. height: math.unit(5 + 7 / 12, "feet"),
  18811. default: true
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(5 + 9 / 12, "feet"),
  18820. weight: math.unit(178, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/shin/front.svg",
  18824. extra: 159 / 151,
  18825. bottom: 0.015
  18826. }
  18827. },
  18828. },
  18829. [
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(5 + 9 / 12, "feet"),
  18833. default: true
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18839. {
  18840. front: {
  18841. height: math.unit(5 + 10 / 12, "feet"),
  18842. weight: math.unit(168, "lb"),
  18843. name: "Front",
  18844. image: {
  18845. source: "./media/characters/xerxes/front.svg",
  18846. extra: 282 / 260,
  18847. bottom: 0.045
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(5 + 10 / 12, "feet"),
  18855. default: true
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18861. {
  18862. front: {
  18863. height: math.unit(6 + 7 / 12, "feet"),
  18864. weight: math.unit(208, "lb"),
  18865. name: "Front",
  18866. image: {
  18867. source: "./media/characters/chaska/front.svg",
  18868. extra: 332 / 319,
  18869. bottom: 0.015
  18870. }
  18871. },
  18872. },
  18873. [
  18874. {
  18875. name: "Normal",
  18876. height: math.unit(6 + 7 / 12, "feet"),
  18877. default: true
  18878. },
  18879. ]
  18880. ))
  18881. characterMakers.push(() => makeCharacter(
  18882. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18883. {
  18884. front: {
  18885. height: math.unit(5 + 8 / 12, "feet"),
  18886. weight: math.unit(208, "lb"),
  18887. name: "Front",
  18888. image: {
  18889. source: "./media/characters/enuk/front.svg",
  18890. extra: 437 / 406,
  18891. bottom: 0.02
  18892. }
  18893. },
  18894. },
  18895. [
  18896. {
  18897. name: "Normal",
  18898. height: math.unit(5 + 8 / 12, "feet"),
  18899. default: true
  18900. },
  18901. ]
  18902. ))
  18903. characterMakers.push(() => makeCharacter(
  18904. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18905. {
  18906. front: {
  18907. height: math.unit(5 + 10 / 12, "feet"),
  18908. weight: math.unit(252, "lb"),
  18909. name: "Front",
  18910. image: {
  18911. source: "./media/characters/bruun/front.svg",
  18912. extra: 197 / 187,
  18913. bottom: 0.012
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(5 + 10 / 12, "feet"),
  18921. default: true
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18927. {
  18928. front: {
  18929. height: math.unit(6 + 10 / 12, "feet"),
  18930. weight: math.unit(255, "lb"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/alexeev/front.svg",
  18934. extra: 213 / 200,
  18935. bottom: 0.05
  18936. }
  18937. },
  18938. },
  18939. [
  18940. {
  18941. name: "Normal",
  18942. height: math.unit(6 + 10 / 12, "feet"),
  18943. default: true
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18949. {
  18950. front: {
  18951. height: math.unit(2 + 8 / 12, "feet"),
  18952. weight: math.unit(22, "lb"),
  18953. name: "Front",
  18954. image: {
  18955. source: "./media/characters/evelyn/front.svg",
  18956. extra: 208 / 180
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Normal",
  18963. height: math.unit(2 + 8 / 12, "feet"),
  18964. default: true
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(5 + 9 / 12, "feet"),
  18973. weight: math.unit(139, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/inca/front.svg",
  18977. extra: 294 / 291,
  18978. bottom: 0.03
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(5 + 9 / 12, "feet"),
  18986. default: true
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(5 + 1 / 12, "feet"),
  18995. weight: math.unit(84, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/magdalene/front.svg",
  18999. extra: 293 / 273
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Normal",
  19006. height: math.unit(5 + 1 / 12, "feet"),
  19007. default: true
  19008. },
  19009. ]
  19010. ))
  19011. characterMakers.push(() => makeCharacter(
  19012. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19013. {
  19014. front: {
  19015. height: math.unit(6 + 3 / 12, "feet"),
  19016. weight: math.unit(185, "lb"),
  19017. name: "Front",
  19018. image: {
  19019. source: "./media/characters/mera/front.svg",
  19020. extra: 291 / 277,
  19021. bottom: 0.03
  19022. }
  19023. },
  19024. },
  19025. [
  19026. {
  19027. name: "Normal",
  19028. height: math.unit(6 + 3 / 12, "feet"),
  19029. default: true
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19035. {
  19036. front: {
  19037. height: math.unit(6 + 7 / 12, "feet"),
  19038. weight: math.unit(160, "lb"),
  19039. name: "Front",
  19040. image: {
  19041. source: "./media/characters/ceres/front.svg",
  19042. extra: 1023 / 950,
  19043. bottom: 0.027
  19044. }
  19045. },
  19046. back: {
  19047. height: math.unit(6 + 7 / 12, "feet"),
  19048. weight: math.unit(160, "lb"),
  19049. name: "Back",
  19050. image: {
  19051. source: "./media/characters/ceres/back.svg",
  19052. extra: 1023 / 950
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Normal",
  19059. height: math.unit(6 + 7 / 12, "feet"),
  19060. default: true
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19066. {
  19067. front: {
  19068. height: math.unit(5 + 10 / 12, "feet"),
  19069. weight: math.unit(150, "lb"),
  19070. name: "Front",
  19071. image: {
  19072. source: "./media/characters/kris/front.svg",
  19073. extra: 885 / 803,
  19074. bottom: 0.03
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(5 + 10 / 12, "feet"),
  19082. default: true
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19088. {
  19089. front: {
  19090. height: math.unit(7, "feet"),
  19091. weight: math.unit(120, "kg"),
  19092. name: "Front",
  19093. image: {
  19094. source: "./media/characters/taluthus/front.svg",
  19095. extra: 903 / 833,
  19096. bottom: 0.015
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(7, "feet"),
  19104. default: true
  19105. },
  19106. {
  19107. name: "Macro",
  19108. height: math.unit(300, "feet")
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(5 + 9 / 12, "feet"),
  19117. weight: math.unit(145, "lb"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/dawn/front.svg",
  19121. extra: 2094 / 2016,
  19122. bottom: 0.025
  19123. }
  19124. },
  19125. back: {
  19126. height: math.unit(5 + 9 / 12, "feet"),
  19127. weight: math.unit(160, "lb"),
  19128. name: "Back",
  19129. image: {
  19130. source: "./media/characters/dawn/back.svg",
  19131. extra: 2112 / 2080,
  19132. bottom: 0.005
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(6 + 7 / 12, "feet"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19146. {
  19147. anthro: {
  19148. height: math.unit(8 + 3 / 12, "feet"),
  19149. weight: math.unit(450, "lb"),
  19150. name: "Anthro",
  19151. image: {
  19152. source: "./media/characters/arador/anthro.svg",
  19153. extra: 1835 / 1718,
  19154. bottom: 0.025
  19155. }
  19156. },
  19157. feral: {
  19158. height: math.unit(4, "feet"),
  19159. weight: math.unit(200, "lb"),
  19160. name: "Feral",
  19161. image: {
  19162. source: "./media/characters/arador/feral.svg",
  19163. extra: 1683 / 1514,
  19164. bottom: 0.07
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(8 + 3 / 12, "feet")
  19172. },
  19173. {
  19174. name: "Macro",
  19175. height: math.unit(82.5, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19182. {
  19183. front: {
  19184. height: math.unit(5 + 10 / 12, "feet"),
  19185. weight: math.unit(125, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/dharsi/front.svg",
  19189. extra: 716 / 630,
  19190. bottom: 0.035
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Nano",
  19197. height: math.unit(100, "nm")
  19198. },
  19199. {
  19200. name: "Micro",
  19201. height: math.unit(2, "inches")
  19202. },
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(5 + 10 / 12, "feet"),
  19206. default: true
  19207. },
  19208. {
  19209. name: "Macro",
  19210. height: math.unit(1000, "feet")
  19211. },
  19212. {
  19213. name: "Megamacro",
  19214. height: math.unit(10, "miles")
  19215. },
  19216. {
  19217. name: "Gigamacro",
  19218. height: math.unit(3000, "miles")
  19219. },
  19220. {
  19221. name: "Teramacro",
  19222. height: math.unit(500000, "miles")
  19223. },
  19224. {
  19225. name: "Teramacro+",
  19226. height: math.unit(30, "galaxies")
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19232. {
  19233. front: {
  19234. height: math.unit(6, "feet"),
  19235. weight: math.unit(150, "lb"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/deathy/front.svg",
  19239. extra: 1552 / 1463,
  19240. bottom: 0.025
  19241. }
  19242. },
  19243. side: {
  19244. height: math.unit(6, "feet"),
  19245. weight: math.unit(150, "lb"),
  19246. name: "Side",
  19247. image: {
  19248. source: "./media/characters/deathy/side.svg",
  19249. extra: 1604 / 1455,
  19250. bottom: 0.025
  19251. }
  19252. },
  19253. back: {
  19254. height: math.unit(6, "feet"),
  19255. weight: math.unit(150, "lb"),
  19256. name: "Back",
  19257. image: {
  19258. source: "./media/characters/deathy/back.svg",
  19259. extra: 1580 / 1463,
  19260. bottom: 0.005
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Micro",
  19267. height: math.unit(5, "millimeters")
  19268. },
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(6 + 5 / 12, "feet"),
  19272. default: true
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19278. {
  19279. front: {
  19280. height: math.unit(16, "feet"),
  19281. weight: math.unit(4000, "lb"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/juniper/front.svg",
  19285. bottom: 0.04
  19286. }
  19287. },
  19288. },
  19289. [
  19290. {
  19291. name: "Normal",
  19292. height: math.unit(16, "feet"),
  19293. default: true
  19294. },
  19295. ]
  19296. ))
  19297. characterMakers.push(() => makeCharacter(
  19298. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19299. {
  19300. front: {
  19301. height: math.unit(6, "feet"),
  19302. weight: math.unit(150, "lb"),
  19303. name: "Front",
  19304. image: {
  19305. source: "./media/characters/hipster/front.svg",
  19306. extra: 1312 / 1209,
  19307. bottom: 0.025
  19308. }
  19309. },
  19310. back: {
  19311. height: math.unit(6, "feet"),
  19312. weight: math.unit(150, "lb"),
  19313. name: "Back",
  19314. image: {
  19315. source: "./media/characters/hipster/back.svg",
  19316. extra: 1281 / 1196,
  19317. bottom: 0.01
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Micro",
  19324. height: math.unit(1, "mm")
  19325. },
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(4, "inches"),
  19329. default: true
  19330. },
  19331. {
  19332. name: "Macro",
  19333. height: math.unit(500, "feet")
  19334. },
  19335. {
  19336. name: "Megamacro",
  19337. height: math.unit(1000, "miles")
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(6, "feet"),
  19346. weight: math.unit(150, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/tendirmuldr/front.svg",
  19350. extra: 1878 / 1772,
  19351. bottom: 0.015
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Megamacro",
  19358. height: math.unit(1500, "miles"),
  19359. default: true
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19365. {
  19366. front: {
  19367. height: math.unit(14, "feet"),
  19368. weight: math.unit(12000, "lb"),
  19369. name: "Front",
  19370. image: {
  19371. source: "./media/characters/mort/front.svg",
  19372. extra: 365 / 318,
  19373. bottom: 0.01
  19374. }
  19375. },
  19376. side: {
  19377. height: math.unit(14, "feet"),
  19378. weight: math.unit(12000, "lb"),
  19379. name: "Side",
  19380. image: {
  19381. source: "./media/characters/mort/side.svg",
  19382. extra: 365 / 318,
  19383. bottom: 0.052
  19384. },
  19385. default: true
  19386. },
  19387. back: {
  19388. height: math.unit(14, "feet"),
  19389. weight: math.unit(12000, "lb"),
  19390. name: "Back",
  19391. image: {
  19392. source: "./media/characters/mort/back.svg",
  19393. extra: 371 / 332,
  19394. bottom: 0.18
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(14, "feet"),
  19402. default: true
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19408. {
  19409. front: {
  19410. height: math.unit(8, "feet"),
  19411. weight: math.unit(1, "ton"),
  19412. name: "Front",
  19413. image: {
  19414. source: "./media/characters/lycoa/front.svg",
  19415. extra: 1875 / 1789,
  19416. bottom: 0.022
  19417. }
  19418. },
  19419. back: {
  19420. height: math.unit(8, "feet"),
  19421. weight: math.unit(1, "ton"),
  19422. name: "Back",
  19423. image: {
  19424. source: "./media/characters/lycoa/back.svg",
  19425. extra: 1835 / 1781,
  19426. bottom: 0.03
  19427. }
  19428. },
  19429. head: {
  19430. height: math.unit(2.1, "feet"),
  19431. name: "Head",
  19432. image: {
  19433. source: "./media/characters/lycoa/head.svg"
  19434. }
  19435. },
  19436. tailmaw: {
  19437. height: math.unit(1.9, "feet"),
  19438. name: "Tailmaw",
  19439. image: {
  19440. source: "./media/characters/lycoa/tailmaw.svg"
  19441. }
  19442. },
  19443. tentacles: {
  19444. height: math.unit(2.1, "feet"),
  19445. name: "Tentacles",
  19446. image: {
  19447. source: "./media/characters/lycoa/tentacles.svg"
  19448. }
  19449. },
  19450. dick: {
  19451. height: math.unit(1.73, "feet"),
  19452. name: "Dick",
  19453. image: {
  19454. source: "./media/characters/lycoa/dick.svg"
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(8, "feet"),
  19462. default: true
  19463. },
  19464. {
  19465. name: "Macro",
  19466. height: math.unit(30, "feet")
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19472. {
  19473. front: {
  19474. height: math.unit(4 + 2 / 12, "feet"),
  19475. weight: math.unit(70, "lb"),
  19476. name: "Front",
  19477. image: {
  19478. source: "./media/characters/naldara/front.svg",
  19479. extra: 841 / 720,
  19480. bottom: 0.04
  19481. }
  19482. },
  19483. naga: {
  19484. height: math.unit(23, "feet"),
  19485. weight: math.unit(15000, "kg"),
  19486. name: "Naga",
  19487. image: {
  19488. source: "./media/characters/naldara/naga.svg",
  19489. extra: 3290 / 2959,
  19490. bottom: 124 / 3432
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(4 + 2 / 12, "feet"),
  19498. default: true
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(13 + 7 / 12, "feet"),
  19507. weight: math.unit(1500, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/briar/front.svg",
  19511. extra: 626 / 596,
  19512. bottom: 0.08
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(13 + 7 / 12, "feet"),
  19520. default: true
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19526. {
  19527. side: {
  19528. height: math.unit(10, "feet"),
  19529. weight: math.unit(500, "lb"),
  19530. name: "Side",
  19531. image: {
  19532. source: "./media/characters/vanguard/side.svg",
  19533. extra: 502 / 425,
  19534. bottom: 0.087
  19535. }
  19536. },
  19537. },
  19538. [
  19539. {
  19540. name: "Normal",
  19541. height: math.unit(10, "feet"),
  19542. default: true
  19543. },
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19548. {
  19549. front: {
  19550. height: math.unit(7.5, "feet"),
  19551. weight: math.unit(2, "lb"),
  19552. name: "Front",
  19553. image: {
  19554. source: "./media/characters/artemis/front.svg",
  19555. extra: 1192 / 1075,
  19556. bottom: 0.07
  19557. }
  19558. },
  19559. frontNsfw: {
  19560. height: math.unit(7.5, "feet"),
  19561. weight: math.unit(2, "lb"),
  19562. name: "Front (NSFW)",
  19563. image: {
  19564. source: "./media/characters/artemis/front-nsfw.svg",
  19565. extra: 1192 / 1075,
  19566. bottom: 0.07
  19567. }
  19568. },
  19569. frontNsfwer: {
  19570. height: math.unit(7.5, "feet"),
  19571. weight: math.unit(2, "lb"),
  19572. name: "Front (NSFW-er)",
  19573. image: {
  19574. source: "./media/characters/artemis/front-nsfwer.svg",
  19575. extra: 1192 / 1075,
  19576. bottom: 0.07
  19577. }
  19578. },
  19579. side: {
  19580. height: math.unit(7.5, "feet"),
  19581. weight: math.unit(2, "lb"),
  19582. name: "Side",
  19583. image: {
  19584. source: "./media/characters/artemis/side.svg",
  19585. extra: 1192 / 1075,
  19586. bottom: 0.07
  19587. }
  19588. },
  19589. sideNsfw: {
  19590. height: math.unit(7.5, "feet"),
  19591. weight: math.unit(2, "lb"),
  19592. name: "Side (NSFW)",
  19593. image: {
  19594. source: "./media/characters/artemis/side-nsfw.svg",
  19595. extra: 1192 / 1075,
  19596. bottom: 0.07
  19597. }
  19598. },
  19599. sideNsfwer: {
  19600. height: math.unit(7.5, "feet"),
  19601. weight: math.unit(2, "lb"),
  19602. name: "Side (NSFW-er)",
  19603. image: {
  19604. source: "./media/characters/artemis/side-nsfwer.svg",
  19605. extra: 1192 / 1075,
  19606. bottom: 0.07
  19607. }
  19608. },
  19609. maw: {
  19610. height: math.unit(1.1, "feet"),
  19611. name: "Maw",
  19612. image: {
  19613. source: "./media/characters/artemis/maw.svg"
  19614. }
  19615. },
  19616. stomach: {
  19617. height: math.unit(0.95, "feet"),
  19618. name: "Stomach",
  19619. image: {
  19620. source: "./media/characters/artemis/stomach.svg"
  19621. }
  19622. },
  19623. dickCanine: {
  19624. height: math.unit(1, "feet"),
  19625. name: "Dick (Canine)",
  19626. image: {
  19627. source: "./media/characters/artemis/dick-canine.svg"
  19628. }
  19629. },
  19630. dickEquine: {
  19631. height: math.unit(0.85, "feet"),
  19632. name: "Dick (Equine)",
  19633. image: {
  19634. source: "./media/characters/artemis/dick-equine.svg"
  19635. }
  19636. },
  19637. dickExotic: {
  19638. height: math.unit(0.85, "feet"),
  19639. name: "Dick (Exotic)",
  19640. image: {
  19641. source: "./media/characters/artemis/dick-exotic.svg"
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(7.5, "feet"),
  19649. default: true
  19650. },
  19651. {
  19652. name: "Enlarged",
  19653. height: math.unit(12, "feet")
  19654. },
  19655. ]
  19656. ))
  19657. characterMakers.push(() => makeCharacter(
  19658. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19659. {
  19660. front: {
  19661. height: math.unit(5 + 3 / 12, "feet"),
  19662. weight: math.unit(160, "lb"),
  19663. name: "Front",
  19664. image: {
  19665. source: "./media/characters/kira/front.svg",
  19666. extra: 906 / 786,
  19667. bottom: 0.01
  19668. }
  19669. },
  19670. back: {
  19671. height: math.unit(5 + 3 / 12, "feet"),
  19672. weight: math.unit(160, "lb"),
  19673. name: "Back",
  19674. image: {
  19675. source: "./media/characters/kira/back.svg",
  19676. extra: 882 / 757,
  19677. bottom: 0.005
  19678. }
  19679. },
  19680. frontDressed: {
  19681. height: math.unit(5 + 3 / 12, "feet"),
  19682. weight: math.unit(160, "lb"),
  19683. name: "Front (Dressed)",
  19684. image: {
  19685. source: "./media/characters/kira/front-dressed.svg",
  19686. extra: 906 / 786,
  19687. bottom: 0.01
  19688. }
  19689. },
  19690. beans: {
  19691. height: math.unit(0.92, "feet"),
  19692. name: "Beans",
  19693. image: {
  19694. source: "./media/characters/kira/beans.svg"
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(5 + 3 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(5 + 4 / 12, "feet"),
  19711. weight: math.unit(145, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/scramble/front.svg",
  19715. extra: 763 / 727,
  19716. bottom: 0.05
  19717. }
  19718. },
  19719. back: {
  19720. height: math.unit(5 + 4 / 12, "feet"),
  19721. weight: math.unit(145, "lb"),
  19722. name: "Back",
  19723. image: {
  19724. source: "./media/characters/scramble/back.svg",
  19725. extra: 826 / 737,
  19726. bottom: 0.002
  19727. }
  19728. },
  19729. },
  19730. [
  19731. {
  19732. name: "Normal",
  19733. height: math.unit(5 + 4 / 12, "feet"),
  19734. default: true
  19735. },
  19736. ]
  19737. ))
  19738. characterMakers.push(() => makeCharacter(
  19739. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19740. {
  19741. side: {
  19742. height: math.unit(6 + 2 / 12, "feet"),
  19743. weight: math.unit(190, "lb"),
  19744. name: "Side",
  19745. image: {
  19746. source: "./media/characters/biscuit/side.svg",
  19747. extra: 858 / 791,
  19748. bottom: 0.044
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(6 + 2 / 12, "feet"),
  19756. default: true
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19762. {
  19763. front: {
  19764. height: math.unit(5 + 2 / 12, "feet"),
  19765. weight: math.unit(120, "lb"),
  19766. name: "Front",
  19767. image: {
  19768. source: "./media/characters/poffin/front.svg",
  19769. extra: 786 / 680,
  19770. bottom: 0.005
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(5 + 2 / 12, "feet"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19784. {
  19785. front: {
  19786. height: math.unit(6 + 3 / 12, "feet"),
  19787. weight: math.unit(519, "lb"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/dhari/front.svg",
  19791. extra: 1048 / 946,
  19792. bottom: 0.015
  19793. }
  19794. },
  19795. back: {
  19796. height: math.unit(6 + 3 / 12, "feet"),
  19797. weight: math.unit(519, "lb"),
  19798. name: "Back",
  19799. image: {
  19800. source: "./media/characters/dhari/back.svg",
  19801. extra: 1048 / 931,
  19802. bottom: 0.005
  19803. }
  19804. },
  19805. frontDressed: {
  19806. height: math.unit(6 + 3 / 12, "feet"),
  19807. weight: math.unit(519, "lb"),
  19808. name: "Front (Dressed)",
  19809. image: {
  19810. source: "./media/characters/dhari/front-dressed.svg",
  19811. extra: 1713 / 1546,
  19812. bottom: 0.02
  19813. }
  19814. },
  19815. backDressed: {
  19816. height: math.unit(6 + 3 / 12, "feet"),
  19817. weight: math.unit(519, "lb"),
  19818. name: "Back (Dressed)",
  19819. image: {
  19820. source: "./media/characters/dhari/back-dressed.svg",
  19821. extra: 1699 / 1537,
  19822. bottom: 0.01
  19823. }
  19824. },
  19825. maw: {
  19826. height: math.unit(0.95, "feet"),
  19827. name: "Maw",
  19828. image: {
  19829. source: "./media/characters/dhari/maw.svg"
  19830. }
  19831. },
  19832. wereFront: {
  19833. height: math.unit(12 + 8 / 12, "feet"),
  19834. weight: math.unit(4000, "lb"),
  19835. name: "Front (Were)",
  19836. image: {
  19837. source: "./media/characters/dhari/were-front.svg",
  19838. extra: 1065 / 969,
  19839. bottom: 0.015
  19840. }
  19841. },
  19842. wereBack: {
  19843. height: math.unit(12 + 8 / 12, "feet"),
  19844. weight: math.unit(4000, "lb"),
  19845. name: "Back (Were)",
  19846. image: {
  19847. source: "./media/characters/dhari/were-back.svg",
  19848. extra: 1065 / 969,
  19849. bottom: 0.012
  19850. }
  19851. },
  19852. wereMaw: {
  19853. height: math.unit(0.625, "meters"),
  19854. name: "Maw (Were)",
  19855. image: {
  19856. source: "./media/characters/dhari/were-maw.svg"
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(6 + 3 / 12, "feet"),
  19864. default: true
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19870. {
  19871. anthro: {
  19872. height: math.unit(5 + 7 / 12, "feet"),
  19873. weight: math.unit(175, "lb"),
  19874. name: "Anthro",
  19875. image: {
  19876. source: "./media/characters/rena-dyne/anthro.svg",
  19877. extra: 1849 / 1785,
  19878. bottom: 0.005
  19879. }
  19880. },
  19881. taur: {
  19882. height: math.unit(15 + 6 / 12, "feet"),
  19883. weight: math.unit(8000, "lb"),
  19884. name: "Taur",
  19885. image: {
  19886. source: "./media/characters/rena-dyne/taur.svg",
  19887. extra: 2315 / 2234,
  19888. bottom: 0.033
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(5 + 7 / 12, "feet"),
  19896. default: true
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19902. {
  19903. front: {
  19904. height: math.unit(8, "feet"),
  19905. weight: math.unit(600, "lb"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/weremeep/front.svg",
  19909. extra: 967 / 862,
  19910. bottom: 0.01
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(8, "feet"),
  19918. default: true
  19919. },
  19920. {
  19921. name: "Lorg",
  19922. height: math.unit(12, "feet")
  19923. },
  19924. {
  19925. name: "Oh Lawd She Comin'",
  19926. height: math.unit(20, "feet")
  19927. },
  19928. ]
  19929. ))
  19930. characterMakers.push(() => makeCharacter(
  19931. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19932. {
  19933. front: {
  19934. height: math.unit(4, "feet"),
  19935. weight: math.unit(90, "lb"),
  19936. name: "Front",
  19937. image: {
  19938. source: "./media/characters/reza/front.svg",
  19939. extra: 1183 / 1111,
  19940. bottom: 0.017
  19941. }
  19942. },
  19943. back: {
  19944. height: math.unit(4, "feet"),
  19945. weight: math.unit(90, "lb"),
  19946. name: "Back",
  19947. image: {
  19948. source: "./media/characters/reza/back.svg",
  19949. extra: 1183 / 1111,
  19950. bottom: 0.01
  19951. }
  19952. },
  19953. drake: {
  19954. height: math.unit(30, "feet"),
  19955. weight: math.unit(246960, "lb"),
  19956. name: "Drake",
  19957. image: {
  19958. source: "./media/characters/reza/drake.svg",
  19959. extra: 2350 / 2024,
  19960. bottom: 60.7 / 2403
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(4, "feet"),
  19968. default: true
  19969. },
  19970. ]
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19974. {
  19975. side: {
  19976. height: math.unit(15, "feet"),
  19977. weight: math.unit(14, "tons"),
  19978. name: "Side",
  19979. image: {
  19980. source: "./media/characters/athea/side.svg",
  19981. extra: 960 / 540,
  19982. bottom: 0.003
  19983. }
  19984. },
  19985. sitting: {
  19986. height: math.unit(6 * 2.85, "feet"),
  19987. weight: math.unit(14, "tons"),
  19988. name: "Sitting",
  19989. image: {
  19990. source: "./media/characters/athea/sitting.svg",
  19991. extra: 621 / 581,
  19992. bottom: 0.075
  19993. }
  19994. },
  19995. maw: {
  19996. height: math.unit(7.59498031496063, "feet"),
  19997. name: "Maw",
  19998. image: {
  19999. source: "./media/characters/athea/maw.svg"
  20000. }
  20001. },
  20002. },
  20003. [
  20004. {
  20005. name: "Lap Cat",
  20006. height: math.unit(2.5, "feet")
  20007. },
  20008. {
  20009. name: "Minimacro",
  20010. height: math.unit(15, "feet"),
  20011. default: true
  20012. },
  20013. {
  20014. name: "Macro",
  20015. height: math.unit(120, "feet")
  20016. },
  20017. {
  20018. name: "Macro+",
  20019. height: math.unit(640, "feet")
  20020. },
  20021. {
  20022. name: "Colossus",
  20023. height: math.unit(2.2, "miles")
  20024. },
  20025. ]
  20026. ))
  20027. characterMakers.push(() => makeCharacter(
  20028. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20029. {
  20030. front: {
  20031. height: math.unit(8 + 8 / 12, "feet"),
  20032. weight: math.unit(130, "kg"),
  20033. name: "Front",
  20034. image: {
  20035. source: "./media/characters/seroko/front.svg",
  20036. extra: 1385 / 1280,
  20037. bottom: 0.025
  20038. }
  20039. },
  20040. back: {
  20041. height: math.unit(8 + 8 / 12, "feet"),
  20042. weight: math.unit(130, "kg"),
  20043. name: "Back",
  20044. image: {
  20045. source: "./media/characters/seroko/back.svg",
  20046. extra: 1369 / 1238,
  20047. bottom: 0.018
  20048. }
  20049. },
  20050. frontDressed: {
  20051. height: math.unit(8 + 8 / 12, "feet"),
  20052. weight: math.unit(130, "kg"),
  20053. name: "Front (Dressed)",
  20054. image: {
  20055. source: "./media/characters/seroko/front-dressed.svg",
  20056. extra: 1366 / 1275,
  20057. bottom: 0.03
  20058. }
  20059. },
  20060. },
  20061. [
  20062. {
  20063. name: "Normal",
  20064. height: math.unit(8 + 8 / 12, "feet"),
  20065. default: true
  20066. },
  20067. ]
  20068. ))
  20069. characterMakers.push(() => makeCharacter(
  20070. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20071. {
  20072. front: {
  20073. height: math.unit(5.5, "feet"),
  20074. weight: math.unit(160, "lb"),
  20075. name: "Front",
  20076. image: {
  20077. source: "./media/characters/quatzi/front.svg",
  20078. extra: 2346 / 2242,
  20079. bottom: 0.015
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(5.5, "feet"),
  20087. default: true
  20088. },
  20089. {
  20090. name: "Big",
  20091. height: math.unit(7.7, "feet")
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20097. {
  20098. front: {
  20099. height: math.unit(5 + 11 / 12, "feet"),
  20100. weight: math.unit(180, "lb"),
  20101. name: "Front",
  20102. image: {
  20103. source: "./media/characters/sen/front.svg",
  20104. extra: 1321 / 1254,
  20105. bottom: 0.015
  20106. }
  20107. },
  20108. side: {
  20109. height: math.unit(5 + 11 / 12, "feet"),
  20110. weight: math.unit(180, "lb"),
  20111. name: "Side",
  20112. image: {
  20113. source: "./media/characters/sen/side.svg",
  20114. extra: 1321 / 1254,
  20115. bottom: 0.007
  20116. }
  20117. },
  20118. back: {
  20119. height: math.unit(5 + 11 / 12, "feet"),
  20120. weight: math.unit(180, "lb"),
  20121. name: "Back",
  20122. image: {
  20123. source: "./media/characters/sen/back.svg",
  20124. extra: 1321 / 1254
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(5 + 11 / 12, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(166.6, "cm"),
  20141. weight: math.unit(66.6, "kg"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/fruity/front.svg",
  20145. extra: 1510 / 1386,
  20146. bottom: 0.04
  20147. }
  20148. },
  20149. back: {
  20150. height: math.unit(166.6, "cm"),
  20151. weight: math.unit(66.6, "lb"),
  20152. name: "Back",
  20153. image: {
  20154. source: "./media/characters/fruity/back.svg",
  20155. extra: 1563 / 1435,
  20156. bottom: 0.005
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Normal",
  20163. height: math.unit(166.6, "cm"),
  20164. default: true
  20165. },
  20166. {
  20167. name: "Demonic",
  20168. height: math.unit(166.6, "feet")
  20169. },
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20174. {
  20175. side: {
  20176. height: math.unit(10, "feet"),
  20177. weight: math.unit(500, "lb"),
  20178. name: "Side",
  20179. image: {
  20180. source: "./media/characters/zost/side.svg",
  20181. extra: 966 / 880,
  20182. bottom: 0.075
  20183. }
  20184. },
  20185. mawFront: {
  20186. height: math.unit(1.08, "meters"),
  20187. name: "Maw (Front)",
  20188. image: {
  20189. source: "./media/characters/zost/maw-front.svg"
  20190. }
  20191. },
  20192. mawSide: {
  20193. height: math.unit(2.66, "feet"),
  20194. name: "Maw (Side)",
  20195. image: {
  20196. source: "./media/characters/zost/maw-side.svg"
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(10, "feet"),
  20204. default: true
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20210. {
  20211. front: {
  20212. height: math.unit(5 + 4 / 12, "feet"),
  20213. weight: math.unit(120, "lb"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/luci/front.svg",
  20217. extra: 1985 / 1884,
  20218. bottom: 0.04
  20219. }
  20220. },
  20221. back: {
  20222. height: math.unit(5 + 4 / 12, "feet"),
  20223. weight: math.unit(120, "lb"),
  20224. name: "Back",
  20225. image: {
  20226. source: "./media/characters/luci/back.svg",
  20227. extra: 1892 / 1791,
  20228. bottom: 0.002
  20229. }
  20230. },
  20231. },
  20232. [
  20233. {
  20234. name: "Normal",
  20235. height: math.unit(5 + 4 / 12, "feet"),
  20236. default: true
  20237. },
  20238. ]
  20239. ))
  20240. characterMakers.push(() => makeCharacter(
  20241. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20242. {
  20243. front: {
  20244. height: math.unit(1500, "feet"),
  20245. weight: math.unit(3.8e6, "tons"),
  20246. name: "Front",
  20247. image: {
  20248. source: "./media/characters/2th/front.svg",
  20249. extra: 3489 / 3350,
  20250. bottom: 0.1
  20251. }
  20252. },
  20253. foot: {
  20254. height: math.unit(461, "feet"),
  20255. name: "Foot",
  20256. image: {
  20257. source: "./media/characters/2th/foot.svg"
  20258. }
  20259. },
  20260. },
  20261. [
  20262. {
  20263. name: "\"Micro\"",
  20264. height: math.unit(15 + 7 / 12, "feet")
  20265. },
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(1500, "feet"),
  20269. default: true
  20270. },
  20271. {
  20272. name: "Macro",
  20273. height: math.unit(5000, "feet")
  20274. },
  20275. {
  20276. name: "Megamacro",
  20277. height: math.unit(15, "miles")
  20278. },
  20279. {
  20280. name: "Gigamacro",
  20281. height: math.unit(4000, "miles")
  20282. },
  20283. {
  20284. name: "Galactic",
  20285. height: math.unit(50, "AU")
  20286. },
  20287. ]
  20288. ))
  20289. characterMakers.push(() => makeCharacter(
  20290. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20291. {
  20292. front: {
  20293. height: math.unit(5 + 6 / 12, "feet"),
  20294. weight: math.unit(220, "lb"),
  20295. name: "Front",
  20296. image: {
  20297. source: "./media/characters/amethyst/front.svg",
  20298. extra: 2078 / 2040,
  20299. bottom: 0.045
  20300. }
  20301. },
  20302. back: {
  20303. height: math.unit(5 + 6 / 12, "feet"),
  20304. weight: math.unit(220, "lb"),
  20305. name: "Back",
  20306. image: {
  20307. source: "./media/characters/amethyst/back.svg",
  20308. extra: 2021 / 1989,
  20309. bottom: 0.02
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(5 + 6 / 12, "feet"),
  20317. default: true
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(4 + 11 / 12, "feet"),
  20326. weight: math.unit(120, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/yumi-akiyama/front.svg",
  20330. extra: 1327 / 1235,
  20331. bottom: 0.02
  20332. }
  20333. },
  20334. back: {
  20335. height: math.unit(4 + 11 / 12, "feet"),
  20336. weight: math.unit(120, "lb"),
  20337. name: "Back",
  20338. image: {
  20339. source: "./media/characters/yumi-akiyama/back.svg",
  20340. extra: 1287 / 1245,
  20341. bottom: 0.002
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Galactic",
  20348. height: math.unit(50, "galaxies"),
  20349. default: true
  20350. },
  20351. {
  20352. name: "Universal",
  20353. height: math.unit(100, "universes")
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20359. {
  20360. front: {
  20361. height: math.unit(8, "feet"),
  20362. weight: math.unit(500, "lb"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/rifter-yrmori/front.svg",
  20366. extra: 1180 / 1125,
  20367. bottom: 0.02
  20368. }
  20369. },
  20370. back: {
  20371. height: math.unit(8, "feet"),
  20372. weight: math.unit(500, "lb"),
  20373. name: "Back",
  20374. image: {
  20375. source: "./media/characters/rifter-yrmori/back.svg",
  20376. extra: 1190 / 1145,
  20377. bottom: 0.001
  20378. }
  20379. },
  20380. wings: {
  20381. height: math.unit(7.75, "feet"),
  20382. weight: math.unit(500, "lb"),
  20383. name: "Wings",
  20384. image: {
  20385. source: "./media/characters/rifter-yrmori/wings.svg",
  20386. extra: 1357 / 1285
  20387. }
  20388. },
  20389. maw: {
  20390. height: math.unit(0.8, "feet"),
  20391. name: "Maw",
  20392. image: {
  20393. source: "./media/characters/rifter-yrmori/maw.svg"
  20394. }
  20395. },
  20396. mawfront: {
  20397. height: math.unit(1.45, "feet"),
  20398. name: "Maw (Front)",
  20399. image: {
  20400. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20401. }
  20402. },
  20403. },
  20404. [
  20405. {
  20406. name: "Normal",
  20407. height: math.unit(8, "feet"),
  20408. default: true
  20409. },
  20410. {
  20411. name: "Macro",
  20412. height: math.unit(42, "meters")
  20413. },
  20414. ]
  20415. ))
  20416. characterMakers.push(() => makeCharacter(
  20417. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20418. {
  20419. were: {
  20420. height: math.unit(25 + 6 / 12, "feet"),
  20421. weight: math.unit(10000, "lb"),
  20422. name: "Were",
  20423. image: {
  20424. source: "./media/characters/tahajin/were.svg",
  20425. extra: 801 / 770,
  20426. bottom: 0.042
  20427. }
  20428. },
  20429. aquatic: {
  20430. height: math.unit(6 + 4 / 12, "feet"),
  20431. weight: math.unit(160, "lb"),
  20432. name: "Aquatic",
  20433. image: {
  20434. source: "./media/characters/tahajin/aquatic.svg",
  20435. extra: 572 / 542,
  20436. bottom: 0.04
  20437. }
  20438. },
  20439. chow: {
  20440. height: math.unit(8 + 11 / 12, "feet"),
  20441. weight: math.unit(450, "lb"),
  20442. name: "Chow",
  20443. image: {
  20444. source: "./media/characters/tahajin/chow.svg",
  20445. extra: 660 / 640,
  20446. bottom: 0.015
  20447. }
  20448. },
  20449. demiNaga: {
  20450. height: math.unit(6 + 8 / 12, "feet"),
  20451. weight: math.unit(300, "lb"),
  20452. name: "Demi Naga",
  20453. image: {
  20454. source: "./media/characters/tahajin/demi-naga.svg",
  20455. extra: 643 / 615,
  20456. bottom: 0.1
  20457. }
  20458. },
  20459. data: {
  20460. height: math.unit(5, "inches"),
  20461. weight: math.unit(0.1, "lb"),
  20462. name: "Data",
  20463. image: {
  20464. source: "./media/characters/tahajin/data.svg"
  20465. }
  20466. },
  20467. fluu: {
  20468. height: math.unit(5 + 7 / 12, "feet"),
  20469. weight: math.unit(140, "lb"),
  20470. name: "Fluu",
  20471. image: {
  20472. source: "./media/characters/tahajin/fluu.svg",
  20473. extra: 628 / 592,
  20474. bottom: 0.02
  20475. }
  20476. },
  20477. starWarrior: {
  20478. height: math.unit(4 + 5 / 12, "feet"),
  20479. weight: math.unit(50, "lb"),
  20480. name: "Star Warrior",
  20481. image: {
  20482. source: "./media/characters/tahajin/star-warrior.svg"
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(25 + 6 / 12, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(8, "feet"),
  20499. weight: math.unit(350, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/gabira/front.svg",
  20503. extra: 608 / 580,
  20504. bottom: 0.03
  20505. }
  20506. },
  20507. back: {
  20508. height: math.unit(8, "feet"),
  20509. weight: math.unit(350, "lb"),
  20510. name: "Back",
  20511. image: {
  20512. source: "./media/characters/gabira/back.svg",
  20513. extra: 608 / 580,
  20514. bottom: 0.03
  20515. }
  20516. },
  20517. },
  20518. [
  20519. {
  20520. name: "Normal",
  20521. height: math.unit(8, "feet"),
  20522. default: true
  20523. },
  20524. ]
  20525. ))
  20526. characterMakers.push(() => makeCharacter(
  20527. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20528. {
  20529. front: {
  20530. height: math.unit(5 + 3 / 12, "feet"),
  20531. weight: math.unit(137, "lb"),
  20532. name: "Front",
  20533. image: {
  20534. source: "./media/characters/sasha-katraine/front.svg",
  20535. bottom: 0.045
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Micro",
  20542. height: math.unit(5, "inches")
  20543. },
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(5 + 3 / 12, "feet"),
  20547. default: true
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20553. {
  20554. side: {
  20555. height: math.unit(4, "inches"),
  20556. weight: math.unit(200, "grams"),
  20557. name: "Side",
  20558. image: {
  20559. source: "./media/characters/der/side.svg",
  20560. extra: 719 / 400,
  20561. bottom: 30.6 / 749.9187
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Micro",
  20568. height: math.unit(4, "inches"),
  20569. default: true
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20575. {
  20576. side: {
  20577. height: math.unit(30, "meters"),
  20578. weight: math.unit(700, "tonnes"),
  20579. name: "Side",
  20580. image: {
  20581. source: "./media/characters/fixerdragon/side.svg",
  20582. extra: (1293.0514 - 116.03) / 1106.86,
  20583. bottom: 116.03 / 1293.0514
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Planck",
  20590. height: math.unit(1.6e-35, "meters")
  20591. },
  20592. {
  20593. name: "Micro",
  20594. height: math.unit(0.4, "meters")
  20595. },
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(30, "meters"),
  20599. default: true
  20600. },
  20601. {
  20602. name: "Megamacro",
  20603. height: math.unit(1.2, "megameters")
  20604. },
  20605. {
  20606. name: "Teramacro",
  20607. height: math.unit(130, "terameters")
  20608. },
  20609. {
  20610. name: "Yottamacro",
  20611. height: math.unit(6200, "yottameters")
  20612. },
  20613. ]
  20614. ));
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20617. {
  20618. front: {
  20619. height: math.unit(8, "feet"),
  20620. weight: math.unit(250, "lb"),
  20621. name: "Front",
  20622. image: {
  20623. source: "./media/characters/kite/front.svg",
  20624. extra: 2796 / 2659,
  20625. bottom: 0.002
  20626. }
  20627. },
  20628. },
  20629. [
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(8, "feet"),
  20633. default: true
  20634. },
  20635. {
  20636. name: "Macro",
  20637. height: math.unit(360, "feet")
  20638. },
  20639. {
  20640. name: "Megamacro",
  20641. height: math.unit(1500, "feet")
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20647. {
  20648. front: {
  20649. height: math.unit(5 + 10 / 12, "feet"),
  20650. weight: math.unit(150, "lb"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/poojawa-vynar/front.svg",
  20654. extra: (1506.1547 - 55) / 1356.6,
  20655. bottom: 55 / 1506.1547
  20656. }
  20657. },
  20658. frontTailless: {
  20659. height: math.unit(5 + 10 / 12, "feet"),
  20660. weight: math.unit(150, "lb"),
  20661. name: "Front (Tailless)",
  20662. image: {
  20663. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20664. extra: (1506.1547 - 55) / 1356.6,
  20665. bottom: 55 / 1506.1547
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(5 + 10 / 12, "feet"),
  20673. default: true
  20674. },
  20675. ]
  20676. ))
  20677. characterMakers.push(() => makeCharacter(
  20678. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20679. {
  20680. front: {
  20681. height: math.unit(293, "meters"),
  20682. weight: math.unit(70400, "tons"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/violette/front.svg",
  20686. extra: 1227 / 1180,
  20687. bottom: 0.005
  20688. }
  20689. },
  20690. back: {
  20691. height: math.unit(293, "meters"),
  20692. weight: math.unit(70400, "tons"),
  20693. name: "Back",
  20694. image: {
  20695. source: "./media/characters/violette/back.svg",
  20696. extra: 1227 / 1180,
  20697. bottom: 0.005
  20698. }
  20699. },
  20700. },
  20701. [
  20702. {
  20703. name: "Macro",
  20704. height: math.unit(293, "meters"),
  20705. default: true
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(1050, "feet"),
  20714. weight: math.unit(200000, "tons"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/alessandra/front.svg",
  20718. extra: 960 / 912,
  20719. bottom: 0.06
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Macro",
  20726. height: math.unit(1050, "feet")
  20727. },
  20728. {
  20729. name: "Macro+",
  20730. height: math.unit(900, "meters"),
  20731. default: true
  20732. },
  20733. ]
  20734. ))
  20735. characterMakers.push(() => makeCharacter(
  20736. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20737. {
  20738. front: {
  20739. height: math.unit(5, "feet"),
  20740. weight: math.unit(187, "lb"),
  20741. name: "Front",
  20742. image: {
  20743. source: "./media/characters/person/front.svg",
  20744. extra: 3087 / 2945,
  20745. bottom: 91 / 3181
  20746. }
  20747. },
  20748. },
  20749. [
  20750. {
  20751. name: "Micro",
  20752. height: math.unit(3, "inches")
  20753. },
  20754. {
  20755. name: "Normal",
  20756. height: math.unit(5, "feet"),
  20757. default: true
  20758. },
  20759. {
  20760. name: "Macro",
  20761. height: math.unit(90, "feet")
  20762. },
  20763. {
  20764. name: "Max Size",
  20765. height: math.unit(280, "feet")
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20771. {
  20772. front: {
  20773. height: math.unit(4.5, "meters"),
  20774. weight: math.unit(3200, "lb"),
  20775. name: "Front",
  20776. image: {
  20777. source: "./media/characters/ty/front.svg",
  20778. extra: 1038 / 960,
  20779. bottom: 31.156 / 1068
  20780. }
  20781. },
  20782. back: {
  20783. height: math.unit(4.5, "meters"),
  20784. weight: math.unit(3200, "lb"),
  20785. name: "Back",
  20786. image: {
  20787. source: "./media/characters/ty/back.svg",
  20788. extra: 1044 / 966,
  20789. bottom: 7.48 / 1049
  20790. }
  20791. },
  20792. },
  20793. [
  20794. {
  20795. name: "Normal",
  20796. height: math.unit(4.5, "meters"),
  20797. default: true
  20798. },
  20799. ]
  20800. ))
  20801. characterMakers.push(() => makeCharacter(
  20802. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20803. {
  20804. front: {
  20805. height: math.unit(5 + 4 / 12, "feet"),
  20806. weight: math.unit(115, "lb"),
  20807. name: "Front",
  20808. image: {
  20809. source: "./media/characters/rocky/front.svg",
  20810. extra: 1012 / 975,
  20811. bottom: 54 / 1066
  20812. }
  20813. },
  20814. },
  20815. [
  20816. {
  20817. name: "Normal",
  20818. height: math.unit(5 + 4 / 12, "feet"),
  20819. default: true
  20820. },
  20821. ]
  20822. ))
  20823. characterMakers.push(() => makeCharacter(
  20824. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20825. {
  20826. upright: {
  20827. height: math.unit(6, "meters"),
  20828. weight: math.unit(4000, "kg"),
  20829. name: "Upright",
  20830. image: {
  20831. source: "./media/characters/ruin/upright.svg",
  20832. extra: 668 / 661,
  20833. bottom: 42 / 799.8396
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(6, "meters"),
  20841. default: true
  20842. },
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20847. {
  20848. front: {
  20849. height: math.unit(5, "feet"),
  20850. weight: math.unit(106, "lb"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/robin/front.svg",
  20854. extra: 862 / 799,
  20855. bottom: 42.4 / 914.8856
  20856. }
  20857. },
  20858. },
  20859. [
  20860. {
  20861. name: "Normal",
  20862. height: math.unit(5, "feet"),
  20863. default: true
  20864. },
  20865. ]
  20866. ))
  20867. characterMakers.push(() => makeCharacter(
  20868. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20869. {
  20870. side: {
  20871. height: math.unit(3, "feet"),
  20872. weight: math.unit(225, "lb"),
  20873. name: "Side",
  20874. image: {
  20875. source: "./media/characters/saian/side.svg",
  20876. extra: 566 / 356,
  20877. bottom: 79.7 / 643
  20878. }
  20879. },
  20880. maw: {
  20881. height: math.unit(2.85, "feet"),
  20882. name: "Maw",
  20883. image: {
  20884. source: "./media/characters/saian/maw.svg"
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(3, "feet"),
  20892. default: true
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20898. {
  20899. side: {
  20900. height: math.unit(8, "feet"),
  20901. weight: math.unit(300, "lb"),
  20902. name: "Side",
  20903. image: {
  20904. source: "./media/characters/equus-silvermane/side.svg",
  20905. extra: 2176 / 2050,
  20906. bottom: 65.7 / 2245
  20907. }
  20908. },
  20909. front: {
  20910. height: math.unit(8, "feet"),
  20911. weight: math.unit(300, "lb"),
  20912. name: "Front",
  20913. image: {
  20914. source: "./media/characters/equus-silvermane/front.svg",
  20915. extra: 4633 / 4400,
  20916. bottom: 71.3 / 4706.915
  20917. }
  20918. },
  20919. sideStepping: {
  20920. height: math.unit(8, "feet"),
  20921. weight: math.unit(300, "lb"),
  20922. name: "Side (Stepping)",
  20923. image: {
  20924. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20925. extra: 1968 / 1860,
  20926. bottom: 16.4 / 1989
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(8, "feet")
  20934. },
  20935. {
  20936. name: "Minimacro",
  20937. height: math.unit(75, "feet"),
  20938. default: true
  20939. },
  20940. {
  20941. name: "Macro",
  20942. height: math.unit(150, "feet")
  20943. },
  20944. {
  20945. name: "Macro+",
  20946. height: math.unit(1000, "feet")
  20947. },
  20948. {
  20949. name: "Megamacro",
  20950. height: math.unit(1, "mile")
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20956. {
  20957. side: {
  20958. height: math.unit(20, "feet"),
  20959. weight: math.unit(30000, "kg"),
  20960. name: "Side",
  20961. image: {
  20962. source: "./media/characters/windar/side.svg",
  20963. extra: 1491 / 1248,
  20964. bottom: 82.56 / 1568
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(20, "feet"),
  20972. default: true
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20978. {
  20979. side: {
  20980. height: math.unit(15.66, "feet"),
  20981. weight: math.unit(150, "lb"),
  20982. name: "Side",
  20983. image: {
  20984. source: "./media/characters/melody/side.svg",
  20985. extra: 1097 / 944,
  20986. bottom: 11.8 / 1109
  20987. }
  20988. },
  20989. sideOutfit: {
  20990. height: math.unit(15.66, "feet"),
  20991. weight: math.unit(150, "lb"),
  20992. name: "Side (Outfit)",
  20993. image: {
  20994. source: "./media/characters/melody/side-outfit.svg",
  20995. extra: 1097 / 944,
  20996. bottom: 11.8 / 1109
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(15.66, "feet"),
  21004. default: true
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21010. {
  21011. front: {
  21012. height: math.unit(8, "feet"),
  21013. weight: math.unit(325, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/windera/front.svg",
  21017. extra: 3180 / 2845,
  21018. bottom: 178 / 3365
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(8, "feet"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21032. {
  21033. front: {
  21034. height: math.unit(28.75, "feet"),
  21035. weight: math.unit(2000, "kg"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/sonear/front.svg",
  21039. extra: 1041.1 / 964.9,
  21040. bottom: 53.7 / 1096.6
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(28.75, "feet"),
  21048. default: true
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21054. {
  21055. side: {
  21056. height: math.unit(25.5, "feet"),
  21057. weight: math.unit(23000, "kg"),
  21058. name: "Side",
  21059. image: {
  21060. source: "./media/characters/kanara/side.svg"
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(25.5, "feet"),
  21068. default: true
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21074. {
  21075. side: {
  21076. height: math.unit(10, "feet"),
  21077. weight: math.unit(1000, "kg"),
  21078. name: "Side",
  21079. image: {
  21080. source: "./media/characters/ereus/side.svg",
  21081. extra: 1157 / 959,
  21082. bottom: 153 / 1312.5
  21083. }
  21084. },
  21085. },
  21086. [
  21087. {
  21088. name: "Normal",
  21089. height: math.unit(10, "feet"),
  21090. default: true
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21096. {
  21097. side: {
  21098. height: math.unit(4.5, "feet"),
  21099. weight: math.unit(500, "lb"),
  21100. name: "Side",
  21101. image: {
  21102. source: "./media/characters/e-ter/side.svg",
  21103. extra: 1550 / 1248,
  21104. bottom: 146 / 1694
  21105. }
  21106. },
  21107. },
  21108. [
  21109. {
  21110. name: "Normal",
  21111. height: math.unit(4.5, "feet"),
  21112. default: true
  21113. },
  21114. ]
  21115. ))
  21116. characterMakers.push(() => makeCharacter(
  21117. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21118. {
  21119. side: {
  21120. height: math.unit(9.7, "feet"),
  21121. weight: math.unit(4000, "kg"),
  21122. name: "Side",
  21123. image: {
  21124. source: "./media/characters/yamie/side.svg"
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(9.7, "feet"),
  21132. default: true
  21133. },
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21138. {
  21139. front: {
  21140. height: math.unit(50, "feet"),
  21141. weight: math.unit(50000, "kg"),
  21142. name: "Front",
  21143. image: {
  21144. source: "./media/characters/anders/front.svg",
  21145. extra: 570 / 539,
  21146. bottom: 14.7 / 586.7
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Large",
  21153. height: math.unit(50, "feet")
  21154. },
  21155. {
  21156. name: "Macro",
  21157. height: math.unit(2000, "feet"),
  21158. default: true
  21159. },
  21160. {
  21161. name: "Megamacro",
  21162. height: math.unit(12, "miles")
  21163. },
  21164. ]
  21165. ))
  21166. characterMakers.push(() => makeCharacter(
  21167. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21168. {
  21169. front: {
  21170. height: math.unit(7 + 2 / 12, "feet"),
  21171. weight: math.unit(300, "lb"),
  21172. name: "Front",
  21173. image: {
  21174. source: "./media/characters/reban/front.svg",
  21175. extra: 516 / 487,
  21176. bottom: 42.82 / 558.356
  21177. }
  21178. },
  21179. dick: {
  21180. height: math.unit(7 / 5, "feet"),
  21181. name: "Dick",
  21182. image: {
  21183. source: "./media/characters/reban/dick.svg"
  21184. }
  21185. },
  21186. },
  21187. [
  21188. {
  21189. name: "Natural Height",
  21190. height: math.unit(7 + 2 / 12, "feet")
  21191. },
  21192. {
  21193. name: "Macro",
  21194. height: math.unit(500, "feet"),
  21195. default: true
  21196. },
  21197. {
  21198. name: "Canon Height",
  21199. height: math.unit(50, "AU")
  21200. },
  21201. ]
  21202. ))
  21203. characterMakers.push(() => makeCharacter(
  21204. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21205. {
  21206. front: {
  21207. height: math.unit(6, "feet"),
  21208. weight: math.unit(150, "lb"),
  21209. name: "Front",
  21210. image: {
  21211. source: "./media/characters/terrance-keayes/front.svg",
  21212. extra: 1.005,
  21213. bottom: 151 / 1615
  21214. }
  21215. },
  21216. side: {
  21217. height: math.unit(6, "feet"),
  21218. weight: math.unit(150, "lb"),
  21219. name: "Side",
  21220. image: {
  21221. source: "./media/characters/terrance-keayes/side.svg",
  21222. extra: 1.005,
  21223. bottom: 129.4 / 1544
  21224. }
  21225. },
  21226. back: {
  21227. height: math.unit(6, "feet"),
  21228. weight: math.unit(150, "lb"),
  21229. name: "Back",
  21230. image: {
  21231. source: "./media/characters/terrance-keayes/back.svg",
  21232. extra: 1.005,
  21233. bottom: 58.4 / 1557.3
  21234. }
  21235. },
  21236. dick: {
  21237. height: math.unit(6 * 0.208, "feet"),
  21238. name: "Dick",
  21239. image: {
  21240. source: "./media/characters/terrance-keayes/dick.svg"
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Canon Height",
  21247. height: math.unit(35, "miles"),
  21248. default: true
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21254. {
  21255. front: {
  21256. height: math.unit(6, "feet"),
  21257. weight: math.unit(150, "lb"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/ofelia/front.svg",
  21261. extra: 546 / 541,
  21262. bottom: 39 / 583
  21263. }
  21264. },
  21265. back: {
  21266. height: math.unit(6, "feet"),
  21267. weight: math.unit(150, "lb"),
  21268. name: "Back",
  21269. image: {
  21270. source: "./media/characters/ofelia/back.svg",
  21271. extra: 564 / 559.5,
  21272. bottom: 8.69 / 573.02
  21273. }
  21274. },
  21275. maw: {
  21276. height: math.unit(1, "feet"),
  21277. name: "Maw",
  21278. image: {
  21279. source: "./media/characters/ofelia/maw.svg"
  21280. }
  21281. },
  21282. foot: {
  21283. height: math.unit(1.949, "feet"),
  21284. name: "Foot",
  21285. image: {
  21286. source: "./media/characters/ofelia/foot.svg"
  21287. }
  21288. },
  21289. },
  21290. [
  21291. {
  21292. name: "Canon Height",
  21293. height: math.unit(2000, "miles"),
  21294. default: true
  21295. },
  21296. ]
  21297. ))
  21298. characterMakers.push(() => makeCharacter(
  21299. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21300. {
  21301. front: {
  21302. height: math.unit(6, "feet"),
  21303. weight: math.unit(150, "lb"),
  21304. name: "Front",
  21305. image: {
  21306. source: "./media/characters/samuel/front.svg",
  21307. extra: 265 / 258,
  21308. bottom: 2 / 266.1566
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Macro",
  21315. height: math.unit(100, "feet"),
  21316. default: true
  21317. },
  21318. {
  21319. name: "Full Size",
  21320. height: math.unit(1000, "miles")
  21321. },
  21322. ]
  21323. ))
  21324. characterMakers.push(() => makeCharacter(
  21325. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21326. {
  21327. front: {
  21328. height: math.unit(6, "feet"),
  21329. weight: math.unit(300, "lb"),
  21330. name: "Front",
  21331. image: {
  21332. source: "./media/characters/beishir-kiel/front.svg",
  21333. extra: 569 / 547,
  21334. bottom: 41.9 / 609
  21335. }
  21336. },
  21337. maw: {
  21338. height: math.unit(6 * 0.202, "feet"),
  21339. name: "Maw",
  21340. image: {
  21341. source: "./media/characters/beishir-kiel/maw.svg"
  21342. }
  21343. },
  21344. },
  21345. [
  21346. {
  21347. name: "Macro",
  21348. height: math.unit(300, "feet"),
  21349. default: true
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21355. {
  21356. front: {
  21357. height: math.unit(5 + 8 / 12, "feet"),
  21358. weight: math.unit(120, "lb"),
  21359. name: "Front",
  21360. image: {
  21361. source: "./media/characters/logan-grey/front.svg",
  21362. extra: 2539 / 2393,
  21363. bottom: 97.6 / 2636.37
  21364. }
  21365. },
  21366. frontAlt: {
  21367. height: math.unit(5 + 8 / 12, "feet"),
  21368. weight: math.unit(120, "lb"),
  21369. name: "Front (Alt)",
  21370. image: {
  21371. source: "./media/characters/logan-grey/front-alt.svg",
  21372. extra: 958 / 893,
  21373. bottom: 15 / 970.768
  21374. }
  21375. },
  21376. back: {
  21377. height: math.unit(5 + 8 / 12, "feet"),
  21378. weight: math.unit(120, "lb"),
  21379. name: "Back",
  21380. image: {
  21381. source: "./media/characters/logan-grey/back.svg",
  21382. extra: 958 / 893,
  21383. bottom: 2.1881 / 970.9788
  21384. }
  21385. },
  21386. dick: {
  21387. height: math.unit(1.437, "feet"),
  21388. name: "Dick",
  21389. image: {
  21390. source: "./media/characters/logan-grey/dick.svg"
  21391. }
  21392. },
  21393. },
  21394. [
  21395. {
  21396. name: "Normal",
  21397. height: math.unit(5 + 8 / 12, "feet")
  21398. },
  21399. {
  21400. name: "The 500 Foot Femboy",
  21401. height: math.unit(500, "feet"),
  21402. default: true
  21403. },
  21404. {
  21405. name: "Megmacro",
  21406. height: math.unit(20, "miles")
  21407. },
  21408. ]
  21409. ))
  21410. characterMakers.push(() => makeCharacter(
  21411. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21412. {
  21413. front: {
  21414. height: math.unit(8 + 2 / 12, "feet"),
  21415. weight: math.unit(275, "lb"),
  21416. name: "Front",
  21417. image: {
  21418. source: "./media/characters/draganta/front.svg",
  21419. extra: 1177 / 1135,
  21420. bottom: 33.46 / 1212.1
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Normal",
  21427. height: math.unit(8 + 6 / 12, "feet"),
  21428. default: true
  21429. },
  21430. {
  21431. name: "Macro",
  21432. height: math.unit(150, "feet")
  21433. },
  21434. {
  21435. name: "Megamacro",
  21436. height: math.unit(1000, "miles")
  21437. },
  21438. ]
  21439. ))
  21440. characterMakers.push(() => makeCharacter(
  21441. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21442. {
  21443. front: {
  21444. height: math.unit(1.72, "m"),
  21445. weight: math.unit(80, "lb"),
  21446. name: "Front",
  21447. image: {
  21448. source: "./media/characters/voski/front.svg",
  21449. extra: 2076.22 / 2022.4,
  21450. bottom: 102.7 / 2177.3866
  21451. }
  21452. },
  21453. frontNsfw: {
  21454. height: math.unit(1.72, "m"),
  21455. weight: math.unit(80, "lb"),
  21456. name: "Front (NSFW)",
  21457. image: {
  21458. source: "./media/characters/voski/front-nsfw.svg",
  21459. extra: 2076.22 / 2022.4,
  21460. bottom: 102.7 / 2177.3866
  21461. }
  21462. },
  21463. back: {
  21464. height: math.unit(1.72, "m"),
  21465. weight: math.unit(80, "lb"),
  21466. name: "Back",
  21467. image: {
  21468. source: "./media/characters/voski/back.svg",
  21469. extra: 2104 / 2051,
  21470. bottom: 10.45 / 2113.63
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Normal",
  21477. height: math.unit(1.72, "m")
  21478. },
  21479. {
  21480. name: "Macro",
  21481. height: math.unit(55, "m"),
  21482. default: true
  21483. },
  21484. {
  21485. name: "Macro+",
  21486. height: math.unit(300, "m")
  21487. },
  21488. {
  21489. name: "Macro++",
  21490. height: math.unit(700, "m")
  21491. },
  21492. {
  21493. name: "Macro+++",
  21494. height: math.unit(4500, "m")
  21495. },
  21496. {
  21497. name: "Macro++++",
  21498. height: math.unit(45, "km")
  21499. },
  21500. {
  21501. name: "Macro+++++",
  21502. height: math.unit(1220, "km")
  21503. },
  21504. ]
  21505. ))
  21506. characterMakers.push(() => makeCharacter(
  21507. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21508. {
  21509. front: {
  21510. height: math.unit(2.3, "m"),
  21511. weight: math.unit(304, "kg"),
  21512. name: "Front",
  21513. image: {
  21514. source: "./media/characters/icowom-lee/front.svg",
  21515. extra: 985 / 955,
  21516. bottom: 25.4 / 1012
  21517. }
  21518. },
  21519. fronttentacles: {
  21520. height: math.unit(2.3, "m"),
  21521. weight: math.unit(304, "kg"),
  21522. name: "Front-tentacles",
  21523. image: {
  21524. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21525. extra: 985 / 955,
  21526. bottom: 25.4 / 1012
  21527. }
  21528. },
  21529. back: {
  21530. height: math.unit(2.3, "m"),
  21531. weight: math.unit(304, "kg"),
  21532. name: "Back",
  21533. image: {
  21534. source: "./media/characters/icowom-lee/back.svg",
  21535. extra: 975 / 954,
  21536. bottom: 9.5 / 985
  21537. }
  21538. },
  21539. backtentacles: {
  21540. height: math.unit(2.3, "m"),
  21541. weight: math.unit(304, "kg"),
  21542. name: "Back-tentacles",
  21543. image: {
  21544. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21545. extra: 975 / 954,
  21546. bottom: 9.5 / 985
  21547. }
  21548. },
  21549. frontDressed: {
  21550. height: math.unit(2.3, "m"),
  21551. weight: math.unit(304, "kg"),
  21552. name: "Front (Dressed)",
  21553. image: {
  21554. source: "./media/characters/icowom-lee/front-dressed.svg",
  21555. extra: 3076 / 2933,
  21556. bottom: 51.4 / 3125.1889
  21557. }
  21558. },
  21559. rump: {
  21560. height: math.unit(0.776, "meters"),
  21561. name: "Rump",
  21562. image: {
  21563. source: "./media/characters/icowom-lee/rump.svg"
  21564. }
  21565. },
  21566. genitals: {
  21567. height: math.unit(0.78, "meters"),
  21568. name: "Genitals",
  21569. image: {
  21570. source: "./media/characters/icowom-lee/genitals.svg"
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(2.3, "meters"),
  21578. default: true
  21579. },
  21580. {
  21581. name: "Macro",
  21582. height: math.unit(94, "meters"),
  21583. default: true
  21584. },
  21585. ]
  21586. ))
  21587. characterMakers.push(() => makeCharacter(
  21588. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21589. {
  21590. front: {
  21591. height: math.unit(22, "meters"),
  21592. weight: math.unit(21000, "kg"),
  21593. name: "Front",
  21594. image: {
  21595. source: "./media/characters/shock-diamond/front.svg",
  21596. extra: 2204 / 2053,
  21597. bottom: 65 / 2239.47
  21598. }
  21599. },
  21600. frontNude: {
  21601. height: math.unit(22, "meters"),
  21602. weight: math.unit(21000, "kg"),
  21603. name: "Front (Nude)",
  21604. image: {
  21605. source: "./media/characters/shock-diamond/front-nude.svg",
  21606. extra: 2514 / 2285,
  21607. bottom: 13 / 2527.56
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(3, "meters")
  21615. },
  21616. {
  21617. name: "Macro",
  21618. height: math.unit(22, "meters"),
  21619. default: true
  21620. },
  21621. ]
  21622. ))
  21623. characterMakers.push(() => makeCharacter(
  21624. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21625. {
  21626. front: {
  21627. height: math.unit(5 + 4 / 12, "feet"),
  21628. weight: math.unit(120, "lb"),
  21629. name: "Front",
  21630. image: {
  21631. source: "./media/characters/rory/front.svg",
  21632. extra: 589 / 556,
  21633. bottom: 45.7 / 635.76
  21634. }
  21635. },
  21636. frontNude: {
  21637. height: math.unit(5 + 4 / 12, "feet"),
  21638. weight: math.unit(120, "lb"),
  21639. name: "Front (Nude)",
  21640. image: {
  21641. source: "./media/characters/rory/front-nude.svg",
  21642. extra: 589 / 556,
  21643. bottom: 45.7 / 635.76
  21644. }
  21645. },
  21646. side: {
  21647. height: math.unit(5 + 4 / 12, "feet"),
  21648. weight: math.unit(120, "lb"),
  21649. name: "Side",
  21650. image: {
  21651. source: "./media/characters/rory/side.svg",
  21652. extra: 597 / 564,
  21653. bottom: 55 / 653
  21654. }
  21655. },
  21656. back: {
  21657. height: math.unit(5 + 4 / 12, "feet"),
  21658. weight: math.unit(120, "lb"),
  21659. name: "Back",
  21660. image: {
  21661. source: "./media/characters/rory/back.svg",
  21662. extra: 620 / 585,
  21663. bottom: 8.86 / 630.43
  21664. }
  21665. },
  21666. dick: {
  21667. height: math.unit(0.86, "feet"),
  21668. name: "Dick",
  21669. image: {
  21670. source: "./media/characters/rory/dick.svg"
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(5 + 4 / 12, "feet"),
  21678. default: true
  21679. },
  21680. {
  21681. name: "Macro",
  21682. height: math.unit(100, "feet")
  21683. },
  21684. {
  21685. name: "Macro+",
  21686. height: math.unit(140, "feet")
  21687. },
  21688. {
  21689. name: "Macro++",
  21690. height: math.unit(300, "feet")
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21696. {
  21697. front: {
  21698. height: math.unit(5 + 9 / 12, "feet"),
  21699. weight: math.unit(190, "lb"),
  21700. name: "Front",
  21701. image: {
  21702. source: "./media/characters/sprisk/front.svg",
  21703. extra: 1225 / 1180,
  21704. bottom: 42.7 / 1266.4
  21705. }
  21706. },
  21707. frontNsfw: {
  21708. height: math.unit(5 + 9 / 12, "feet"),
  21709. weight: math.unit(190, "lb"),
  21710. name: "Front (NSFW)",
  21711. image: {
  21712. source: "./media/characters/sprisk/front-nsfw.svg",
  21713. extra: 1225 / 1180,
  21714. bottom: 42.7 / 1266.4
  21715. }
  21716. },
  21717. back: {
  21718. height: math.unit(5 + 9 / 12, "feet"),
  21719. weight: math.unit(190, "lb"),
  21720. name: "Back",
  21721. image: {
  21722. source: "./media/characters/sprisk/back.svg",
  21723. extra: 1247 / 1200,
  21724. bottom: 5.6 / 1253.04
  21725. }
  21726. },
  21727. },
  21728. [
  21729. {
  21730. name: "Tiny",
  21731. height: math.unit(2, "inches")
  21732. },
  21733. {
  21734. name: "Normal",
  21735. height: math.unit(5 + 9 / 12, "feet"),
  21736. default: true
  21737. },
  21738. {
  21739. name: "Mini Macro",
  21740. height: math.unit(18, "feet")
  21741. },
  21742. {
  21743. name: "Macro",
  21744. height: math.unit(100, "feet")
  21745. },
  21746. {
  21747. name: "MACRO",
  21748. height: math.unit(50, "miles")
  21749. },
  21750. {
  21751. name: "M A C R O",
  21752. height: math.unit(300, "miles")
  21753. },
  21754. ]
  21755. ))
  21756. characterMakers.push(() => makeCharacter(
  21757. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21758. {
  21759. side: {
  21760. height: math.unit(15.6, "meters"),
  21761. weight: math.unit(700000, "kg"),
  21762. name: "Side",
  21763. image: {
  21764. source: "./media/characters/bunsen/side.svg",
  21765. extra: 1644 / 358
  21766. }
  21767. },
  21768. foot: {
  21769. height: math.unit(1.611 * 1644 / 358, "meter"),
  21770. name: "Foot",
  21771. image: {
  21772. source: "./media/characters/bunsen/foot.svg"
  21773. }
  21774. },
  21775. },
  21776. [
  21777. {
  21778. name: "Small",
  21779. height: math.unit(10, "feet")
  21780. },
  21781. {
  21782. name: "Normal",
  21783. height: math.unit(15.6, "meters"),
  21784. default: true
  21785. },
  21786. ]
  21787. ))
  21788. characterMakers.push(() => makeCharacter(
  21789. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21790. {
  21791. front: {
  21792. height: math.unit(4 + 11 / 12, "feet"),
  21793. weight: math.unit(140, "lb"),
  21794. name: "Front",
  21795. image: {
  21796. source: "./media/characters/sesh/front.svg",
  21797. extra: 3420 / 3231,
  21798. bottom: 72 / 3949.5
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Normal",
  21805. height: math.unit(4 + 11 / 12, "feet")
  21806. },
  21807. {
  21808. name: "Grown",
  21809. height: math.unit(15, "feet"),
  21810. default: true
  21811. },
  21812. {
  21813. name: "Macro",
  21814. height: math.unit(1500, "feet")
  21815. },
  21816. {
  21817. name: "Megamacro",
  21818. height: math.unit(30, "miles")
  21819. },
  21820. {
  21821. name: "Continental",
  21822. height: math.unit(3000, "miles")
  21823. },
  21824. {
  21825. name: "Gravity Mass",
  21826. height: math.unit(300000, "miles")
  21827. },
  21828. {
  21829. name: "Planet Buster",
  21830. height: math.unit(30000000, "miles")
  21831. },
  21832. {
  21833. name: "Big",
  21834. height: math.unit(3000000000, "miles")
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(9, "feet"),
  21843. weight: math.unit(350, "lb"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/pepper/front.svg",
  21847. extra: 1448 / 1312,
  21848. bottom: 9.4 / 1457.88
  21849. }
  21850. },
  21851. back: {
  21852. height: math.unit(9, "feet"),
  21853. weight: math.unit(350, "lb"),
  21854. name: "Back",
  21855. image: {
  21856. source: "./media/characters/pepper/back.svg",
  21857. extra: 1423 / 1300,
  21858. bottom: 4.6 / 1429
  21859. }
  21860. },
  21861. maw: {
  21862. height: math.unit(0.932, "feet"),
  21863. name: "Maw",
  21864. image: {
  21865. source: "./media/characters/pepper/maw.svg"
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(9, "feet"),
  21873. default: true
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21879. {
  21880. front: {
  21881. height: math.unit(6, "feet"),
  21882. weight: math.unit(150, "lb"),
  21883. name: "Front",
  21884. image: {
  21885. source: "./media/characters/maelstrom/front.svg",
  21886. extra: 2100 / 1883,
  21887. bottom: 94 / 2196.7
  21888. }
  21889. },
  21890. },
  21891. [
  21892. {
  21893. name: "Less Kaiju",
  21894. height: math.unit(200, "feet")
  21895. },
  21896. {
  21897. name: "Kaiju",
  21898. height: math.unit(400, "feet"),
  21899. default: true
  21900. },
  21901. {
  21902. name: "Kaiju-er",
  21903. height: math.unit(600, "feet")
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21909. {
  21910. front: {
  21911. height: math.unit(6 + 5 / 12, "feet"),
  21912. weight: math.unit(180, "lb"),
  21913. name: "Front",
  21914. image: {
  21915. source: "./media/characters/lexir/front.svg",
  21916. extra: 180 / 172,
  21917. bottom: 12 / 192
  21918. }
  21919. },
  21920. back: {
  21921. height: math.unit(6 + 5 / 12, "feet"),
  21922. weight: math.unit(180, "lb"),
  21923. name: "Back",
  21924. image: {
  21925. source: "./media/characters/lexir/back.svg",
  21926. extra: 183.84 / 175.5,
  21927. bottom: 3.1 / 187
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Very Smal",
  21934. height: math.unit(1, "nm")
  21935. },
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(6 + 5 / 12, "feet"),
  21939. default: true
  21940. },
  21941. {
  21942. name: "Macro",
  21943. height: math.unit(1, "mile")
  21944. },
  21945. {
  21946. name: "Megamacro",
  21947. height: math.unit(50, "miles")
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(1.5, "meters"),
  21956. weight: math.unit(100, "lb"),
  21957. name: "Front",
  21958. image: {
  21959. source: "./media/characters/maksio/front.svg",
  21960. extra: 1549 / 1531,
  21961. bottom: 123.7 / 1674.5429
  21962. }
  21963. },
  21964. back: {
  21965. height: math.unit(1.5, "meters"),
  21966. weight: math.unit(100, "lb"),
  21967. name: "Back",
  21968. image: {
  21969. source: "./media/characters/maksio/back.svg",
  21970. extra: 1541 / 1509,
  21971. bottom: 97 / 1639
  21972. }
  21973. },
  21974. hand: {
  21975. height: math.unit(0.621, "feet"),
  21976. name: "Hand",
  21977. image: {
  21978. source: "./media/characters/maksio/hand.svg"
  21979. }
  21980. },
  21981. foot: {
  21982. height: math.unit(1.611, "feet"),
  21983. name: "Foot",
  21984. image: {
  21985. source: "./media/characters/maksio/foot.svg"
  21986. }
  21987. },
  21988. },
  21989. [
  21990. {
  21991. name: "Shrunken",
  21992. height: math.unit(10, "cm")
  21993. },
  21994. {
  21995. name: "Normal",
  21996. height: math.unit(150, "cm"),
  21997. default: true
  21998. },
  21999. ]
  22000. ))
  22001. characterMakers.push(() => makeCharacter(
  22002. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22003. {
  22004. front: {
  22005. height: math.unit(100, "feet"),
  22006. name: "Front",
  22007. image: {
  22008. source: "./media/characters/erza-bear/front.svg",
  22009. extra: 2449 / 2390,
  22010. bottom: 46 / 2494
  22011. }
  22012. },
  22013. back: {
  22014. height: math.unit(100, "feet"),
  22015. name: "Back",
  22016. image: {
  22017. source: "./media/characters/erza-bear/back.svg",
  22018. extra: 2489 / 2430,
  22019. bottom: 85.4 / 2480
  22020. }
  22021. },
  22022. tail: {
  22023. height: math.unit(42, "feet"),
  22024. name: "Tail",
  22025. image: {
  22026. source: "./media/characters/erza-bear/tail.svg"
  22027. }
  22028. },
  22029. tongue: {
  22030. height: math.unit(8, "feet"),
  22031. name: "Tongue",
  22032. image: {
  22033. source: "./media/characters/erza-bear/tongue.svg"
  22034. }
  22035. },
  22036. dick: {
  22037. height: math.unit(10.5, "feet"),
  22038. name: "Dick",
  22039. image: {
  22040. source: "./media/characters/erza-bear/dick.svg"
  22041. }
  22042. },
  22043. dickVertical: {
  22044. height: math.unit(16.9, "feet"),
  22045. name: "Dick (Vertical)",
  22046. image: {
  22047. source: "./media/characters/erza-bear/dick-vertical.svg"
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Macro",
  22054. height: math.unit(100, "feet"),
  22055. default: true
  22056. },
  22057. ]
  22058. ))
  22059. characterMakers.push(() => makeCharacter(
  22060. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22061. {
  22062. front: {
  22063. height: math.unit(172, "cm"),
  22064. weight: math.unit(73, "kg"),
  22065. name: "Front",
  22066. image: {
  22067. source: "./media/characters/violet-flor/front.svg",
  22068. extra: 1530 / 1442,
  22069. bottom: 61.9 / 1588.8
  22070. }
  22071. },
  22072. back: {
  22073. height: math.unit(180, "cm"),
  22074. weight: math.unit(73, "kg"),
  22075. name: "Back",
  22076. image: {
  22077. source: "./media/characters/violet-flor/back.svg",
  22078. extra: 1692 / 1630,
  22079. bottom: 20 / 1712
  22080. }
  22081. },
  22082. },
  22083. [
  22084. {
  22085. name: "Normal",
  22086. height: math.unit(172, "cm"),
  22087. default: true
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22093. {
  22094. front: {
  22095. height: math.unit(6, "feet"),
  22096. weight: math.unit(220, "lb"),
  22097. name: "Front",
  22098. image: {
  22099. source: "./media/characters/lynn-rhea/front.svg",
  22100. extra: 310 / 273
  22101. }
  22102. },
  22103. back: {
  22104. height: math.unit(6, "feet"),
  22105. weight: math.unit(220, "lb"),
  22106. name: "Back",
  22107. image: {
  22108. source: "./media/characters/lynn-rhea/back.svg",
  22109. extra: 310 / 273
  22110. }
  22111. },
  22112. dicks: {
  22113. height: math.unit(0.9, "feet"),
  22114. name: "Dicks",
  22115. image: {
  22116. source: "./media/characters/lynn-rhea/dicks.svg"
  22117. }
  22118. },
  22119. slit: {
  22120. height: math.unit(0.4, "feet"),
  22121. name: "Slit",
  22122. image: {
  22123. source: "./media/characters/lynn-rhea/slit.svg"
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Micro",
  22130. height: math.unit(1, "inch")
  22131. },
  22132. {
  22133. name: "Macro",
  22134. height: math.unit(60, "feet"),
  22135. default: true
  22136. },
  22137. {
  22138. name: "Megamacro",
  22139. height: math.unit(2, "miles")
  22140. },
  22141. {
  22142. name: "Gigamacro",
  22143. height: math.unit(3, "earths")
  22144. },
  22145. {
  22146. name: "Galactic",
  22147. height: math.unit(0.8, "galaxies")
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22153. {
  22154. front: {
  22155. height: math.unit(1600, "feet"),
  22156. weight: math.unit(85758785169, "kg"),
  22157. name: "Front",
  22158. image: {
  22159. source: "./media/characters/valathos/front.svg",
  22160. extra: 1451 / 1339
  22161. }
  22162. },
  22163. },
  22164. [
  22165. {
  22166. name: "Macro",
  22167. height: math.unit(1600, "feet"),
  22168. default: true
  22169. },
  22170. ]
  22171. ))
  22172. characterMakers.push(() => makeCharacter(
  22173. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22174. {
  22175. front: {
  22176. height: math.unit(7 + 5 / 12, "feet"),
  22177. weight: math.unit(300, "lb"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/azula/front.svg",
  22181. extra: 3208 / 2880,
  22182. bottom: 80.2 / 3277
  22183. }
  22184. },
  22185. back: {
  22186. height: math.unit(7 + 5 / 12, "feet"),
  22187. weight: math.unit(300, "lb"),
  22188. name: "Back",
  22189. image: {
  22190. source: "./media/characters/azula/back.svg",
  22191. extra: 3169 / 2822,
  22192. bottom: 150.6 / 3321
  22193. }
  22194. },
  22195. },
  22196. [
  22197. {
  22198. name: "Normal",
  22199. height: math.unit(7 + 5 / 12, "feet"),
  22200. default: true
  22201. },
  22202. {
  22203. name: "Big",
  22204. height: math.unit(20, "feet")
  22205. },
  22206. ]
  22207. ))
  22208. characterMakers.push(() => makeCharacter(
  22209. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22210. {
  22211. front: {
  22212. height: math.unit(5 + 1 / 12, "feet"),
  22213. weight: math.unit(110, "lb"),
  22214. name: "Front",
  22215. image: {
  22216. source: "./media/characters/rupert/front.svg",
  22217. extra: 1549 / 1495,
  22218. bottom: 54.2 / 1604.4
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Normal",
  22225. height: math.unit(5 + 1 / 12, "feet"),
  22226. default: true
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22232. {
  22233. front: {
  22234. height: math.unit(8 + 4 / 12, "feet"),
  22235. weight: math.unit(350, "lb"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/sheera-castellar/front.svg",
  22239. extra: 1957 / 1894,
  22240. bottom: 26.97 / 1975.017
  22241. }
  22242. },
  22243. side: {
  22244. height: math.unit(8 + 4 / 12, "feet"),
  22245. weight: math.unit(350, "lb"),
  22246. name: "Side",
  22247. image: {
  22248. source: "./media/characters/sheera-castellar/side.svg",
  22249. extra: 1957 / 1894
  22250. }
  22251. },
  22252. back: {
  22253. height: math.unit(8 + 4 / 12, "feet"),
  22254. weight: math.unit(350, "lb"),
  22255. name: "Back",
  22256. image: {
  22257. source: "./media/characters/sheera-castellar/back.svg",
  22258. extra: 1957 / 1894
  22259. }
  22260. },
  22261. angled: {
  22262. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22263. weight: math.unit(350, "lb"),
  22264. name: "Angled",
  22265. image: {
  22266. source: "./media/characters/sheera-castellar/angled.svg",
  22267. extra: 1807 / 1707,
  22268. bottom: 68 / 1875
  22269. }
  22270. },
  22271. genitals: {
  22272. height: math.unit(2.2, "feet"),
  22273. name: "Genitals",
  22274. image: {
  22275. source: "./media/characters/sheera-castellar/genitals.svg"
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(8 + 4 / 12, "feet")
  22283. },
  22284. {
  22285. name: "Macro",
  22286. height: math.unit(150, "feet"),
  22287. default: true
  22288. },
  22289. {
  22290. name: "Macro+",
  22291. height: math.unit(800, "feet")
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22297. {
  22298. front: {
  22299. height: math.unit(6, "feet"),
  22300. weight: math.unit(150, "lb"),
  22301. name: "Front",
  22302. image: {
  22303. source: "./media/characters/jaipur/front.svg",
  22304. extra: 3860 / 3731,
  22305. bottom: 287 / 4140
  22306. }
  22307. },
  22308. back: {
  22309. height: math.unit(6, "feet"),
  22310. weight: math.unit(150, "lb"),
  22311. name: "Back",
  22312. image: {
  22313. source: "./media/characters/jaipur/back.svg",
  22314. extra: 4060 / 3930,
  22315. bottom: 151 / 4200
  22316. }
  22317. },
  22318. },
  22319. [
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(1.85, "meters"),
  22323. default: true
  22324. },
  22325. {
  22326. name: "Macro",
  22327. height: math.unit(150, "meters")
  22328. },
  22329. {
  22330. name: "Macro+",
  22331. height: math.unit(0.5, "miles")
  22332. },
  22333. {
  22334. name: "Macro++",
  22335. height: math.unit(2.5, "miles")
  22336. },
  22337. {
  22338. name: "Macro+++",
  22339. height: math.unit(12, "miles")
  22340. },
  22341. {
  22342. name: "Macro++++",
  22343. height: math.unit(120, "miles")
  22344. },
  22345. {
  22346. name: "Macro+++++",
  22347. height: math.unit(1200, "miles")
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(6, "feet"),
  22356. weight: math.unit(150, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/sheila-wolf/front.svg",
  22360. extra: 1931 / 1808,
  22361. bottom: 29.5 / 1960
  22362. }
  22363. },
  22364. dick: {
  22365. height: math.unit(1.464, "feet"),
  22366. name: "Dick",
  22367. image: {
  22368. source: "./media/characters/sheila-wolf/dick.svg"
  22369. }
  22370. },
  22371. muzzle: {
  22372. height: math.unit(0.513, "feet"),
  22373. name: "Muzzle",
  22374. image: {
  22375. source: "./media/characters/sheila-wolf/muzzle.svg"
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Macro",
  22382. height: math.unit(70, "feet"),
  22383. default: true
  22384. },
  22385. ]
  22386. ))
  22387. characterMakers.push(() => makeCharacter(
  22388. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22389. {
  22390. front: {
  22391. height: math.unit(32, "meters"),
  22392. weight: math.unit(300000, "kg"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/almor/front.svg",
  22396. extra: 1408 / 1322,
  22397. bottom: 94.6 / 1506.5
  22398. }
  22399. },
  22400. },
  22401. [
  22402. {
  22403. name: "Macro",
  22404. height: math.unit(32, "meters"),
  22405. default: true
  22406. },
  22407. ]
  22408. ))
  22409. characterMakers.push(() => makeCharacter(
  22410. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22411. {
  22412. front: {
  22413. height: math.unit(7, "feet"),
  22414. weight: math.unit(200, "lb"),
  22415. name: "Front",
  22416. image: {
  22417. source: "./media/characters/silver/front.svg",
  22418. extra: 472.1 / 450.5,
  22419. bottom: 26.5 / 499.424
  22420. }
  22421. },
  22422. },
  22423. [
  22424. {
  22425. name: "Normal",
  22426. height: math.unit(7, "feet"),
  22427. default: true
  22428. },
  22429. {
  22430. name: "Macro",
  22431. height: math.unit(800, "feet")
  22432. },
  22433. {
  22434. name: "Megamacro",
  22435. height: math.unit(250, "miles")
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22441. {
  22442. front: {
  22443. height: math.unit(6, "feet"),
  22444. weight: math.unit(150, "lb"),
  22445. name: "Front",
  22446. image: {
  22447. source: "./media/characters/pliskin/front.svg",
  22448. extra: 1469 / 1359,
  22449. bottom: 70 / 1540
  22450. }
  22451. },
  22452. },
  22453. [
  22454. {
  22455. name: "Micro",
  22456. height: math.unit(3, "inches")
  22457. },
  22458. {
  22459. name: "Normal",
  22460. height: math.unit(5 + 11 / 12, "feet"),
  22461. default: true
  22462. },
  22463. {
  22464. name: "Macro",
  22465. height: math.unit(120, "feet")
  22466. },
  22467. ]
  22468. ))
  22469. characterMakers.push(() => makeCharacter(
  22470. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22471. {
  22472. front: {
  22473. height: math.unit(6, "feet"),
  22474. weight: math.unit(150, "lb"),
  22475. name: "Front",
  22476. image: {
  22477. source: "./media/characters/sammy/front.svg",
  22478. extra: 1193 / 1089,
  22479. bottom: 30.5 / 1226
  22480. }
  22481. },
  22482. },
  22483. [
  22484. {
  22485. name: "Macro",
  22486. height: math.unit(1700, "feet"),
  22487. default: true
  22488. },
  22489. {
  22490. name: "Examacro",
  22491. height: math.unit(2.5e9, "lightyears")
  22492. },
  22493. ]
  22494. ))
  22495. characterMakers.push(() => makeCharacter(
  22496. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22497. {
  22498. front: {
  22499. height: math.unit(21, "meters"),
  22500. weight: math.unit(12, "tonnes"),
  22501. name: "Front",
  22502. image: {
  22503. source: "./media/characters/kuru/front.svg",
  22504. extra: 4301 / 3785,
  22505. bottom: 371.3 / 4691
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Macro",
  22512. height: math.unit(21, "meters"),
  22513. default: true
  22514. },
  22515. ]
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22519. {
  22520. front: {
  22521. height: math.unit(23, "meters"),
  22522. weight: math.unit(12.2, "tonnes"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/rakka/front.svg",
  22526. extra: 4670 / 4169,
  22527. bottom: 301 / 4968.7
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Macro",
  22534. height: math.unit(23, "meters"),
  22535. default: true
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(6, "feet"),
  22544. weight: math.unit(150, "lb"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/rhys-feline/front.svg",
  22548. extra: 2488 / 2308,
  22549. bottom: 35.67 / 2519.19
  22550. }
  22551. },
  22552. },
  22553. [
  22554. {
  22555. name: "Really Small",
  22556. height: math.unit(1, "nm")
  22557. },
  22558. {
  22559. name: "Micro",
  22560. height: math.unit(4, "inches")
  22561. },
  22562. {
  22563. name: "Normal",
  22564. height: math.unit(4 + 10 / 12, "feet"),
  22565. default: true
  22566. },
  22567. {
  22568. name: "Macro",
  22569. height: math.unit(100, "feet")
  22570. },
  22571. {
  22572. name: "Megamacto",
  22573. height: math.unit(50, "miles")
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22579. {
  22580. side: {
  22581. height: math.unit(30, "feet"),
  22582. weight: math.unit(35000, "kg"),
  22583. name: "Side",
  22584. image: {
  22585. source: "./media/characters/alydar/side.svg",
  22586. extra: 234 / 222,
  22587. bottom: 6.5 / 241
  22588. }
  22589. },
  22590. front: {
  22591. height: math.unit(30, "feet"),
  22592. weight: math.unit(35000, "kg"),
  22593. name: "Front",
  22594. image: {
  22595. source: "./media/characters/alydar/front.svg",
  22596. extra: 223.37 / 210.2,
  22597. bottom: 22.3 / 246.76
  22598. }
  22599. },
  22600. top: {
  22601. height: math.unit(64.54, "feet"),
  22602. weight: math.unit(35000, "kg"),
  22603. name: "Top",
  22604. image: {
  22605. source: "./media/characters/alydar/top.svg"
  22606. }
  22607. },
  22608. anthro: {
  22609. height: math.unit(30, "feet"),
  22610. weight: math.unit(9000, "kg"),
  22611. name: "Anthro",
  22612. image: {
  22613. source: "./media/characters/alydar/anthro.svg",
  22614. extra: 432 / 421,
  22615. bottom: 7.18 / 440
  22616. }
  22617. },
  22618. maw: {
  22619. height: math.unit(11.693, "feet"),
  22620. name: "Maw",
  22621. image: {
  22622. source: "./media/characters/alydar/maw.svg"
  22623. }
  22624. },
  22625. head: {
  22626. height: math.unit(11.693, "feet"),
  22627. name: "Head",
  22628. image: {
  22629. source: "./media/characters/alydar/head.svg"
  22630. }
  22631. },
  22632. headAlt: {
  22633. height: math.unit(12.861, "feet"),
  22634. name: "Head (Alt)",
  22635. image: {
  22636. source: "./media/characters/alydar/head-alt.svg"
  22637. }
  22638. },
  22639. wing: {
  22640. height: math.unit(20.712, "feet"),
  22641. name: "Wing",
  22642. image: {
  22643. source: "./media/characters/alydar/wing.svg"
  22644. }
  22645. },
  22646. wingFeather: {
  22647. height: math.unit(9.662, "feet"),
  22648. name: "Wing Feather",
  22649. image: {
  22650. source: "./media/characters/alydar/wing-feather.svg"
  22651. }
  22652. },
  22653. countourFeather: {
  22654. height: math.unit(4.154, "feet"),
  22655. name: "Contour Feather",
  22656. image: {
  22657. source: "./media/characters/alydar/contour-feather.svg"
  22658. }
  22659. },
  22660. },
  22661. [
  22662. {
  22663. name: "Diplomatic",
  22664. height: math.unit(13, "feet"),
  22665. default: true
  22666. },
  22667. {
  22668. name: "Small",
  22669. height: math.unit(30, "feet")
  22670. },
  22671. {
  22672. name: "Normal",
  22673. height: math.unit(95, "feet"),
  22674. default: true
  22675. },
  22676. {
  22677. name: "Large",
  22678. height: math.unit(285, "feet")
  22679. },
  22680. {
  22681. name: "Incomprehensible",
  22682. height: math.unit(450, "megameters")
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22688. {
  22689. side: {
  22690. height: math.unit(11, "feet"),
  22691. weight: math.unit(1750, "kg"),
  22692. name: "Side",
  22693. image: {
  22694. source: "./media/characters/selicia/side.svg",
  22695. extra: 440 / 396,
  22696. bottom: 24.8 / 465.979
  22697. }
  22698. },
  22699. maw: {
  22700. height: math.unit(4.665, "feet"),
  22701. name: "Maw",
  22702. image: {
  22703. source: "./media/characters/selicia/maw.svg"
  22704. }
  22705. },
  22706. },
  22707. [
  22708. {
  22709. name: "Normal",
  22710. height: math.unit(11, "feet"),
  22711. default: true
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22717. {
  22718. side: {
  22719. height: math.unit(2 + 6 / 12, "feet"),
  22720. weight: math.unit(30, "lb"),
  22721. name: "Side",
  22722. image: {
  22723. source: "./media/characters/layla/side.svg",
  22724. extra: 244 / 188,
  22725. bottom: 18.2 / 262.1
  22726. }
  22727. },
  22728. back: {
  22729. height: math.unit(2 + 6 / 12, "feet"),
  22730. weight: math.unit(30, "lb"),
  22731. name: "Back",
  22732. image: {
  22733. source: "./media/characters/layla/back.svg",
  22734. extra: 308 / 241.5,
  22735. bottom: 8.9 / 316.8
  22736. }
  22737. },
  22738. cumming: {
  22739. height: math.unit(2 + 6 / 12, "feet"),
  22740. weight: math.unit(30, "lb"),
  22741. name: "Cumming",
  22742. image: {
  22743. source: "./media/characters/layla/cumming.svg",
  22744. extra: 342 / 279,
  22745. bottom: 595 / 938
  22746. }
  22747. },
  22748. dickFlaccid: {
  22749. height: math.unit(2.595, "feet"),
  22750. name: "Flaccid Genitals",
  22751. image: {
  22752. source: "./media/characters/layla/dick-flaccid.svg"
  22753. }
  22754. },
  22755. dickErect: {
  22756. height: math.unit(2.359, "feet"),
  22757. name: "Erect Genitals",
  22758. image: {
  22759. source: "./media/characters/layla/dick-erect.svg"
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Micro",
  22766. height: math.unit(1, "inch")
  22767. },
  22768. {
  22769. name: "Small",
  22770. height: math.unit(1, "foot")
  22771. },
  22772. {
  22773. name: "Normal",
  22774. height: math.unit(2 + 6 / 12, "feet"),
  22775. default: true
  22776. },
  22777. {
  22778. name: "Macro",
  22779. height: math.unit(200, "feet")
  22780. },
  22781. {
  22782. name: "Megamacro",
  22783. height: math.unit(1000, "miles")
  22784. },
  22785. {
  22786. name: "Planetary",
  22787. height: math.unit(8000, "miles")
  22788. },
  22789. {
  22790. name: "True Layla",
  22791. height: math.unit(200000 * 7, "multiverses")
  22792. },
  22793. ]
  22794. ))
  22795. characterMakers.push(() => makeCharacter(
  22796. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22797. {
  22798. back: {
  22799. height: math.unit(10.5, "feet"),
  22800. weight: math.unit(800, "lb"),
  22801. name: "Back",
  22802. image: {
  22803. source: "./media/characters/knox/back.svg",
  22804. extra: 1486 / 1089,
  22805. bottom: 107 / 1601.4
  22806. }
  22807. },
  22808. side: {
  22809. height: math.unit(10.5, "feet"),
  22810. weight: math.unit(800, "lb"),
  22811. name: "Side",
  22812. image: {
  22813. source: "./media/characters/knox/side.svg",
  22814. extra: 244 / 218,
  22815. bottom: 14 / 260
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Compact",
  22822. height: math.unit(10.5, "feet"),
  22823. default: true
  22824. },
  22825. {
  22826. name: "Dynamax",
  22827. height: math.unit(210, "feet")
  22828. },
  22829. {
  22830. name: "Full Macro",
  22831. height: math.unit(850, "feet")
  22832. },
  22833. ]
  22834. ))
  22835. characterMakers.push(() => makeCharacter(
  22836. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22837. {
  22838. front: {
  22839. height: math.unit(6, "feet"),
  22840. weight: math.unit(152, "lb"),
  22841. name: "Front",
  22842. image: {
  22843. source: "./media/characters/shin-pikachu/front.svg",
  22844. extra: 1574 / 1480,
  22845. bottom: 53.3 / 1626
  22846. }
  22847. },
  22848. hand: {
  22849. height: math.unit(1.055, "feet"),
  22850. name: "Hand",
  22851. image: {
  22852. source: "./media/characters/shin-pikachu/hand.svg"
  22853. }
  22854. },
  22855. foot: {
  22856. height: math.unit(1.1, "feet"),
  22857. name: "Foot",
  22858. image: {
  22859. source: "./media/characters/shin-pikachu/foot.svg"
  22860. }
  22861. },
  22862. collar: {
  22863. height: math.unit(0.386, "feet"),
  22864. name: "Collar",
  22865. image: {
  22866. source: "./media/characters/shin-pikachu/collar.svg"
  22867. }
  22868. },
  22869. },
  22870. [
  22871. {
  22872. name: "Smallest",
  22873. height: math.unit(0.5, "inches")
  22874. },
  22875. {
  22876. name: "Micro",
  22877. height: math.unit(6, "inches")
  22878. },
  22879. {
  22880. name: "Normal",
  22881. height: math.unit(6, "feet"),
  22882. default: true
  22883. },
  22884. {
  22885. name: "Macro",
  22886. height: math.unit(150, "feet")
  22887. },
  22888. ]
  22889. ))
  22890. characterMakers.push(() => makeCharacter(
  22891. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22892. {
  22893. front: {
  22894. height: math.unit(28, "feet"),
  22895. weight: math.unit(10500, "lb"),
  22896. name: "Front",
  22897. image: {
  22898. source: "./media/characters/kayda/front.svg",
  22899. extra: 1536 / 1428,
  22900. bottom: 68.7 / 1603
  22901. }
  22902. },
  22903. back: {
  22904. height: math.unit(28, "feet"),
  22905. weight: math.unit(10500, "lb"),
  22906. name: "Back",
  22907. image: {
  22908. source: "./media/characters/kayda/back.svg",
  22909. extra: 1557 / 1464,
  22910. bottom: 39.5 / 1597.49
  22911. }
  22912. },
  22913. dick: {
  22914. height: math.unit(3.858, "feet"),
  22915. name: "Dick",
  22916. image: {
  22917. source: "./media/characters/kayda/dick.svg"
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Macro",
  22924. height: math.unit(28, "feet"),
  22925. default: true
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22931. {
  22932. front: {
  22933. height: math.unit(10 + 11 / 12, "feet"),
  22934. weight: math.unit(1400, "lb"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/brian/front.svg",
  22938. extra: 737 / 692,
  22939. bottom: 55.4 / 785
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Normal",
  22946. height: math.unit(10 + 11 / 12, "feet"),
  22947. default: true
  22948. },
  22949. ]
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22953. {
  22954. front: {
  22955. height: math.unit(5 + 8 / 12, "feet"),
  22956. weight: math.unit(140, "lb"),
  22957. name: "Front",
  22958. image: {
  22959. source: "./media/characters/khemri/front.svg",
  22960. extra: 4780 / 4059,
  22961. bottom: 80.1 / 4859.25
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Micro",
  22968. height: math.unit(6, "inches")
  22969. },
  22970. {
  22971. name: "Normal",
  22972. height: math.unit(5 + 8 / 12, "feet"),
  22973. default: true
  22974. },
  22975. ]
  22976. ))
  22977. characterMakers.push(() => makeCharacter(
  22978. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22979. {
  22980. front: {
  22981. height: math.unit(13, "feet"),
  22982. weight: math.unit(1700, "lb"),
  22983. name: "Front",
  22984. image: {
  22985. source: "./media/characters/felix-braveheart/front.svg",
  22986. extra: 1222 / 1157,
  22987. bottom: 53.2 / 1280
  22988. }
  22989. },
  22990. back: {
  22991. height: math.unit(13, "feet"),
  22992. weight: math.unit(1700, "lb"),
  22993. name: "Back",
  22994. image: {
  22995. source: "./media/characters/felix-braveheart/back.svg",
  22996. extra: 1277 / 1203,
  22997. bottom: 50.2 / 1327
  22998. }
  22999. },
  23000. feral: {
  23001. height: math.unit(6, "feet"),
  23002. weight: math.unit(400, "lb"),
  23003. name: "Feral",
  23004. image: {
  23005. source: "./media/characters/felix-braveheart/feral.svg",
  23006. extra: 682 / 625,
  23007. bottom: 6.9 / 688
  23008. }
  23009. },
  23010. },
  23011. [
  23012. {
  23013. name: "Normal",
  23014. height: math.unit(13, "feet"),
  23015. default: true
  23016. },
  23017. ]
  23018. ))
  23019. characterMakers.push(() => makeCharacter(
  23020. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23021. {
  23022. side: {
  23023. height: math.unit(5 + 11 / 12, "feet"),
  23024. weight: math.unit(1400, "lb"),
  23025. name: "Side",
  23026. image: {
  23027. source: "./media/characters/shadow-blade/side.svg",
  23028. extra: 1726 / 1267,
  23029. bottom: 58.4 / 1785
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(5 + 11 / 12, "feet"),
  23037. default: true
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23043. {
  23044. front: {
  23045. height: math.unit(1 + 6 / 12, "feet"),
  23046. weight: math.unit(25, "lb"),
  23047. name: "Front",
  23048. image: {
  23049. source: "./media/characters/karla-halldor/front.svg",
  23050. extra: 1459 / 1383,
  23051. bottom: 12 / 1472
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(1 + 6 / 12, "feet"),
  23059. default: true
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(6 + 2 / 12, "feet"),
  23068. weight: math.unit(160, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/ariam/front.svg",
  23072. extra: 714 / 617,
  23073. bottom: 23.4 / 737,
  23074. }
  23075. },
  23076. squatting: {
  23077. height: math.unit(4.1, "feet"),
  23078. weight: math.unit(160, "lb"),
  23079. name: "Squatting",
  23080. image: {
  23081. source: "./media/characters/ariam/squatting.svg",
  23082. extra: 2617 / 2112,
  23083. bottom: 61.2 / 2681,
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Normal",
  23090. height: math.unit(6 + 2 / 12, "feet"),
  23091. default: true
  23092. },
  23093. {
  23094. name: "Normal+",
  23095. height: math.unit(4, "meters")
  23096. },
  23097. {
  23098. name: "Macro",
  23099. height: math.unit(50, "meters")
  23100. },
  23101. {
  23102. name: "Macro+",
  23103. height: math.unit(100, "meters")
  23104. },
  23105. {
  23106. name: "Megamacro",
  23107. height: math.unit(20, "km")
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23113. {
  23114. front: {
  23115. height: math.unit(1.67, "meters"),
  23116. weight: math.unit(140, "lb"),
  23117. name: "Front",
  23118. image: {
  23119. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23120. extra: 438 / 410,
  23121. bottom: 0.75 / 439
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Shrunken",
  23128. height: math.unit(7.6, "cm")
  23129. },
  23130. {
  23131. name: "Human Scale",
  23132. height: math.unit(1.67, "meters")
  23133. },
  23134. {
  23135. name: "Wolxi Scale",
  23136. height: math.unit(36.7, "meters"),
  23137. default: true
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23143. {
  23144. front: {
  23145. height: math.unit(1.73, "meters"),
  23146. weight: math.unit(240, "lb"),
  23147. name: "Front",
  23148. image: {
  23149. source: "./media/characters/izue-two-mothers/front.svg",
  23150. extra: 469 / 437,
  23151. bottom: 1.24 / 470.6
  23152. }
  23153. },
  23154. },
  23155. [
  23156. {
  23157. name: "Shrunken",
  23158. height: math.unit(7.86, "cm")
  23159. },
  23160. {
  23161. name: "Human Scale",
  23162. height: math.unit(1.73, "meters")
  23163. },
  23164. {
  23165. name: "Wolxi Scale",
  23166. height: math.unit(38, "meters"),
  23167. default: true
  23168. },
  23169. ]
  23170. ))
  23171. characterMakers.push(() => makeCharacter(
  23172. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23173. {
  23174. front: {
  23175. height: math.unit(1.55, "meters"),
  23176. weight: math.unit(120, "lb"),
  23177. name: "Front",
  23178. image: {
  23179. source: "./media/characters/teeku-love-shack/front.svg",
  23180. extra: 387 / 362,
  23181. bottom: 1.51 / 388
  23182. }
  23183. },
  23184. },
  23185. [
  23186. {
  23187. name: "Shrunken",
  23188. height: math.unit(7, "cm")
  23189. },
  23190. {
  23191. name: "Human Scale",
  23192. height: math.unit(1.55, "meters")
  23193. },
  23194. {
  23195. name: "Wolxi Scale",
  23196. height: math.unit(34.1, "meters"),
  23197. default: true
  23198. },
  23199. ]
  23200. ))
  23201. characterMakers.push(() => makeCharacter(
  23202. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23203. {
  23204. front: {
  23205. height: math.unit(1.83, "meters"),
  23206. weight: math.unit(135, "lb"),
  23207. name: "Front",
  23208. image: {
  23209. source: "./media/characters/dejma-the-red/front.svg",
  23210. extra: 480 / 458,
  23211. bottom: 1.8 / 482
  23212. }
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Shrunken",
  23218. height: math.unit(8.3, "cm")
  23219. },
  23220. {
  23221. name: "Human Scale",
  23222. height: math.unit(1.83, "meters")
  23223. },
  23224. {
  23225. name: "Wolxi Scale",
  23226. height: math.unit(40, "meters"),
  23227. default: true
  23228. },
  23229. ]
  23230. ))
  23231. characterMakers.push(() => makeCharacter(
  23232. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23233. {
  23234. front: {
  23235. height: math.unit(1.78, "meters"),
  23236. weight: math.unit(65, "kg"),
  23237. name: "Front",
  23238. image: {
  23239. source: "./media/characters/aki/front.svg",
  23240. extra: 452 / 415
  23241. }
  23242. },
  23243. frontNsfw: {
  23244. height: math.unit(1.78, "meters"),
  23245. weight: math.unit(65, "kg"),
  23246. name: "Front (NSFW)",
  23247. image: {
  23248. source: "./media/characters/aki/front-nsfw.svg",
  23249. extra: 452 / 415
  23250. }
  23251. },
  23252. back: {
  23253. height: math.unit(1.78, "meters"),
  23254. weight: math.unit(65, "kg"),
  23255. name: "Back",
  23256. image: {
  23257. source: "./media/characters/aki/back.svg",
  23258. extra: 452 / 415
  23259. }
  23260. },
  23261. rump: {
  23262. height: math.unit(2.05, "feet"),
  23263. name: "Rump",
  23264. image: {
  23265. source: "./media/characters/aki/rump.svg"
  23266. }
  23267. },
  23268. dick: {
  23269. height: math.unit(0.95, "feet"),
  23270. name: "Dick",
  23271. image: {
  23272. source: "./media/characters/aki/dick.svg"
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Micro",
  23279. height: math.unit(15, "cm")
  23280. },
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(178, "cm"),
  23284. default: true
  23285. },
  23286. {
  23287. name: "Macro",
  23288. height: math.unit(214, "m")
  23289. },
  23290. {
  23291. name: "Macro+",
  23292. height: math.unit(534, "m")
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23298. {
  23299. front: {
  23300. height: math.unit(5 + 5 / 12, "feet"),
  23301. weight: math.unit(120, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/ari/front.svg",
  23305. extra: 714.5 / 682,
  23306. bottom: 8 / 722.5
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Normal",
  23313. height: math.unit(5 + 5 / 12, "feet")
  23314. },
  23315. {
  23316. name: "Macro",
  23317. height: math.unit(100, "feet"),
  23318. default: true
  23319. },
  23320. {
  23321. name: "Megamacro",
  23322. height: math.unit(100, "miles")
  23323. },
  23324. {
  23325. name: "Gigamacro",
  23326. height: math.unit(80000, "miles")
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23332. {
  23333. side: {
  23334. height: math.unit(9, "feet"),
  23335. weight: math.unit(400, "kg"),
  23336. name: "Side",
  23337. image: {
  23338. source: "./media/characters/bolt/side.svg",
  23339. extra: 1126 / 896,
  23340. bottom: 60 / 1187.3,
  23341. }
  23342. },
  23343. },
  23344. [
  23345. {
  23346. name: "Micro",
  23347. height: math.unit(5, "inches")
  23348. },
  23349. {
  23350. name: "Normal",
  23351. height: math.unit(9, "feet"),
  23352. default: true
  23353. },
  23354. {
  23355. name: "Macro",
  23356. height: math.unit(700, "feet")
  23357. },
  23358. {
  23359. name: "Max Size",
  23360. height: math.unit(1.52e22, "yottameters")
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23366. {
  23367. front: {
  23368. height: math.unit(4.53, "meters"),
  23369. weight: math.unit(3, "tons"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/draekon-sylviar/front.svg",
  23373. extra: 1228 / 1068,
  23374. bottom: 41 / 1270
  23375. }
  23376. },
  23377. tail: {
  23378. height: math.unit(1.772, "meter"),
  23379. name: "Tail",
  23380. image: {
  23381. source: "./media/characters/draekon-sylviar/tail.svg"
  23382. }
  23383. },
  23384. head: {
  23385. height: math.unit(1.331, "meter"),
  23386. name: "Head",
  23387. image: {
  23388. source: "./media/characters/draekon-sylviar/head.svg"
  23389. }
  23390. },
  23391. hand: {
  23392. height: math.unit(0.564, "meter"),
  23393. name: "Hand",
  23394. image: {
  23395. source: "./media/characters/draekon-sylviar/hand.svg"
  23396. }
  23397. },
  23398. foot: {
  23399. height: math.unit(0.621, "meter"),
  23400. name: "Foot",
  23401. image: {
  23402. source: "./media/characters/draekon-sylviar/foot.svg",
  23403. bottom: 32 / 324
  23404. }
  23405. },
  23406. dick: {
  23407. height: math.unit(61, "cm"),
  23408. name: "Dick",
  23409. image: {
  23410. source: "./media/characters/draekon-sylviar/dick.svg"
  23411. }
  23412. },
  23413. dickseparated: {
  23414. height: math.unit(61, "cm"),
  23415. name: "Dick-separated",
  23416. image: {
  23417. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23418. }
  23419. },
  23420. },
  23421. [
  23422. {
  23423. name: "Small",
  23424. height: math.unit(4.53 / 2, "meters"),
  23425. default: true
  23426. },
  23427. {
  23428. name: "Normal",
  23429. height: math.unit(4.53, "meters"),
  23430. default: true
  23431. },
  23432. {
  23433. name: "Large",
  23434. height: math.unit(4.53 * 2, "meters"),
  23435. },
  23436. ]
  23437. ))
  23438. characterMakers.push(() => makeCharacter(
  23439. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23440. {
  23441. front: {
  23442. height: math.unit(6 + 2 / 12, "feet"),
  23443. weight: math.unit(180, "lb"),
  23444. name: "Front",
  23445. image: {
  23446. source: "./media/characters/brawler/front.svg",
  23447. extra: 3301 / 3027,
  23448. bottom: 138 / 3439
  23449. }
  23450. },
  23451. },
  23452. [
  23453. {
  23454. name: "Normal",
  23455. height: math.unit(6 + 2 / 12, "feet"),
  23456. default: true
  23457. },
  23458. ]
  23459. ))
  23460. characterMakers.push(() => makeCharacter(
  23461. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23462. {
  23463. front: {
  23464. height: math.unit(11, "feet"),
  23465. weight: math.unit(1000, "lb"),
  23466. name: "Front",
  23467. image: {
  23468. source: "./media/characters/alex/front.svg",
  23469. bottom: 44.5 / 620
  23470. }
  23471. },
  23472. },
  23473. [
  23474. {
  23475. name: "Micro",
  23476. height: math.unit(5, "inches")
  23477. },
  23478. {
  23479. name: "Normal",
  23480. height: math.unit(11, "feet"),
  23481. default: true
  23482. },
  23483. {
  23484. name: "Macro",
  23485. height: math.unit(9.5e9, "feet")
  23486. },
  23487. {
  23488. name: "Max Size",
  23489. height: math.unit(1.4e283, "yottameters")
  23490. },
  23491. ]
  23492. ))
  23493. characterMakers.push(() => makeCharacter(
  23494. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23495. {
  23496. female: {
  23497. height: math.unit(29.9, "m"),
  23498. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23499. name: "Female",
  23500. image: {
  23501. source: "./media/characters/zenari/female.svg",
  23502. extra: 3281.6 / 3217,
  23503. bottom: 72.2 / 3353
  23504. }
  23505. },
  23506. male: {
  23507. height: math.unit(27.7, "m"),
  23508. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23509. name: "Male",
  23510. image: {
  23511. source: "./media/characters/zenari/male.svg",
  23512. extra: 3008 / 2991,
  23513. bottom: 54.6 / 3069
  23514. }
  23515. },
  23516. },
  23517. [
  23518. {
  23519. name: "Macro",
  23520. height: math.unit(29.7, "meters"),
  23521. default: true
  23522. },
  23523. ]
  23524. ))
  23525. characterMakers.push(() => makeCharacter(
  23526. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23527. {
  23528. female: {
  23529. height: math.unit(23.8, "m"),
  23530. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23531. name: "Female",
  23532. image: {
  23533. source: "./media/characters/mactarian/female.svg",
  23534. extra: 2662 / 2569,
  23535. bottom: 73 / 2736
  23536. }
  23537. },
  23538. male: {
  23539. height: math.unit(23.8, "m"),
  23540. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23541. name: "Male",
  23542. image: {
  23543. source: "./media/characters/mactarian/male.svg",
  23544. extra: 2673 / 2600,
  23545. bottom: 76 / 2750
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Macro",
  23552. height: math.unit(23.8, "meters"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23559. {
  23560. female: {
  23561. height: math.unit(19.3, "m"),
  23562. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23563. name: "Female",
  23564. image: {
  23565. source: "./media/characters/umok/female.svg",
  23566. extra: 2186 / 2078,
  23567. bottom: 87 / 2277
  23568. }
  23569. },
  23570. male: {
  23571. height: math.unit(19.5, "m"),
  23572. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23573. name: "Male",
  23574. image: {
  23575. source: "./media/characters/umok/male.svg",
  23576. extra: 2233 / 2140,
  23577. bottom: 24.4 / 2258
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Macro",
  23584. height: math.unit(19.3, "meters"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23591. {
  23592. female: {
  23593. height: math.unit(26.15, "m"),
  23594. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23595. name: "Female",
  23596. image: {
  23597. source: "./media/characters/joraxian/female.svg",
  23598. extra: 2912 / 2824,
  23599. bottom: 36 / 2956
  23600. }
  23601. },
  23602. male: {
  23603. height: math.unit(25.4, "m"),
  23604. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23605. name: "Male",
  23606. image: {
  23607. source: "./media/characters/joraxian/male.svg",
  23608. extra: 2877 / 2721,
  23609. bottom: 82 / 2967
  23610. }
  23611. },
  23612. },
  23613. [
  23614. {
  23615. name: "Macro",
  23616. height: math.unit(26.15, "meters"),
  23617. default: true
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23623. {
  23624. female: {
  23625. height: math.unit(21.6, "m"),
  23626. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23627. name: "Female",
  23628. image: {
  23629. source: "./media/characters/sthara/female.svg",
  23630. extra: 2516 / 2347,
  23631. bottom: 21.5 / 2537
  23632. }
  23633. },
  23634. male: {
  23635. height: math.unit(24, "m"),
  23636. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23637. name: "Male",
  23638. image: {
  23639. source: "./media/characters/sthara/male.svg",
  23640. extra: 2732 / 2607,
  23641. bottom: 23 / 2732
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Macro",
  23648. height: math.unit(21.6, "meters"),
  23649. default: true
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(6 + 4 / 12, "feet"),
  23658. weight: math.unit(175, "lb"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/luka-bryzant/front.svg",
  23662. extra: 311 / 289,
  23663. bottom: 4 / 315
  23664. }
  23665. },
  23666. back: {
  23667. height: math.unit(6 + 4 / 12, "feet"),
  23668. weight: math.unit(175, "lb"),
  23669. name: "Back",
  23670. image: {
  23671. source: "./media/characters/luka-bryzant/back.svg",
  23672. extra: 311 / 289,
  23673. bottom: 3.8 / 313.7
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Micro",
  23680. height: math.unit(10, "inches")
  23681. },
  23682. {
  23683. name: "Normal",
  23684. height: math.unit(6 + 4 / 12, "feet"),
  23685. default: true
  23686. },
  23687. {
  23688. name: "Large",
  23689. height: math.unit(12, "feet")
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23695. {
  23696. front: {
  23697. height: math.unit(5 + 7 / 12, "feet"),
  23698. weight: math.unit(185, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/aman-aquila/front.svg",
  23702. extra: 1013 / 976,
  23703. bottom: 45.6 / 1057
  23704. }
  23705. },
  23706. side: {
  23707. height: math.unit(5 + 7 / 12, "feet"),
  23708. weight: math.unit(185, "lb"),
  23709. name: "Side",
  23710. image: {
  23711. source: "./media/characters/aman-aquila/side.svg",
  23712. extra: 1054 / 1011,
  23713. bottom: 15 / 1070
  23714. }
  23715. },
  23716. back: {
  23717. height: math.unit(5 + 7 / 12, "feet"),
  23718. weight: math.unit(185, "lb"),
  23719. name: "Back",
  23720. image: {
  23721. source: "./media/characters/aman-aquila/back.svg",
  23722. extra: 1026 / 970,
  23723. bottom: 12 / 1039
  23724. }
  23725. },
  23726. head: {
  23727. height: math.unit(1.211, "feet"),
  23728. name: "Head",
  23729. image: {
  23730. source: "./media/characters/aman-aquila/head.svg",
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Minimicro",
  23737. height: math.unit(0.057, "inches")
  23738. },
  23739. {
  23740. name: "Micro",
  23741. height: math.unit(7, "inches")
  23742. },
  23743. {
  23744. name: "Mini",
  23745. height: math.unit(3 + 7 / 12, "feet")
  23746. },
  23747. {
  23748. name: "Normal",
  23749. height: math.unit(5 + 7 / 12, "feet"),
  23750. default: true
  23751. },
  23752. {
  23753. name: "Macro",
  23754. height: math.unit(157 + 7 / 12, "feet")
  23755. },
  23756. {
  23757. name: "Megamacro",
  23758. height: math.unit(1557 + 7 / 12, "feet")
  23759. },
  23760. {
  23761. name: "Gigamacro",
  23762. height: math.unit(15557 + 7 / 12, "feet")
  23763. },
  23764. ]
  23765. ))
  23766. characterMakers.push(() => makeCharacter(
  23767. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23768. {
  23769. front: {
  23770. height: math.unit(3 + 2 / 12, "inches"),
  23771. weight: math.unit(0.3, "ounces"),
  23772. name: "Front",
  23773. image: {
  23774. source: "./media/characters/hiphae/front.svg",
  23775. extra: 1931 / 1683,
  23776. bottom: 24 / 1955
  23777. }
  23778. },
  23779. },
  23780. [
  23781. {
  23782. name: "Normal",
  23783. height: math.unit(3 + 1 / 2, "inches"),
  23784. default: true
  23785. },
  23786. ]
  23787. ))
  23788. characterMakers.push(() => makeCharacter(
  23789. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23790. {
  23791. front: {
  23792. height: math.unit(5 + 10 / 12, "feet"),
  23793. weight: math.unit(165, "lb"),
  23794. name: "Front",
  23795. image: {
  23796. source: "./media/characters/nicky/front.svg",
  23797. extra: 3144 / 2886,
  23798. bottom: 45.6 / 3192
  23799. }
  23800. },
  23801. back: {
  23802. height: math.unit(5 + 10 / 12, "feet"),
  23803. weight: math.unit(165, "lb"),
  23804. name: "Back",
  23805. image: {
  23806. source: "./media/characters/nicky/back.svg",
  23807. extra: 3055 / 2804,
  23808. bottom: 28.4 / 3087
  23809. }
  23810. },
  23811. frontclothed: {
  23812. height: math.unit(5 + 10 / 12, "feet"),
  23813. weight: math.unit(165, "lb"),
  23814. name: "Front-clothed",
  23815. image: {
  23816. source: "./media/characters/nicky/front-clothed.svg",
  23817. extra: 3184.9 / 2926.9,
  23818. bottom: 86.5 / 3239.9
  23819. }
  23820. },
  23821. foot: {
  23822. height: math.unit(1.16, "feet"),
  23823. name: "Foot",
  23824. image: {
  23825. source: "./media/characters/nicky/foot.svg"
  23826. }
  23827. },
  23828. feet: {
  23829. height: math.unit(1.34, "feet"),
  23830. name: "Feet",
  23831. image: {
  23832. source: "./media/characters/nicky/feet.svg"
  23833. }
  23834. },
  23835. maw: {
  23836. height: math.unit(0.9, "feet"),
  23837. name: "Maw",
  23838. image: {
  23839. source: "./media/characters/nicky/maw.svg"
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(5 + 10 / 12, "feet"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "Macro",
  23851. height: math.unit(60, "feet")
  23852. },
  23853. {
  23854. name: "Megamacro",
  23855. height: math.unit(1, "mile")
  23856. },
  23857. ]
  23858. ))
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23861. {
  23862. side: {
  23863. height: math.unit(10, "feet"),
  23864. weight: math.unit(600, "lb"),
  23865. name: "Side",
  23866. image: {
  23867. source: "./media/characters/blair/side.svg",
  23868. bottom: 16.6 / 475,
  23869. extra: 458 / 431
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Micro",
  23876. height: math.unit(8, "inches")
  23877. },
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(10, "feet"),
  23881. default: true
  23882. },
  23883. {
  23884. name: "Macro",
  23885. height: math.unit(180, "feet")
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23891. {
  23892. front: {
  23893. height: math.unit(5 + 4 / 12, "feet"),
  23894. weight: math.unit(125, "lb"),
  23895. name: "Front",
  23896. image: {
  23897. source: "./media/characters/fisher/front.svg",
  23898. extra: 444 / 390,
  23899. bottom: 2 / 444.8
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Micro",
  23906. height: math.unit(4, "inches")
  23907. },
  23908. {
  23909. name: "Normal",
  23910. height: math.unit(5 + 4 / 12, "feet"),
  23911. default: true
  23912. },
  23913. {
  23914. name: "Macro",
  23915. height: math.unit(100, "feet")
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23921. {
  23922. front: {
  23923. height: math.unit(6.71, "feet"),
  23924. weight: math.unit(200, "lb"),
  23925. capacity: math.unit(1000000, "people"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/gliss/front.svg",
  23929. extra: 2347 / 2231,
  23930. bottom: 113 / 2462
  23931. }
  23932. },
  23933. hammerspaceSize: {
  23934. height: math.unit(6.71 * 717, "feet"),
  23935. weight: math.unit(200, "lb"),
  23936. capacity: math.unit(1000000, "people"),
  23937. name: "Hammerspace Size",
  23938. image: {
  23939. source: "./media/characters/gliss/front.svg",
  23940. extra: 2347 / 2231,
  23941. bottom: 113 / 2462
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(6.71, "feet"),
  23949. default: true
  23950. },
  23951. ]
  23952. ))
  23953. characterMakers.push(() => makeCharacter(
  23954. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23955. {
  23956. side: {
  23957. height: math.unit(1.44, "m"),
  23958. weight: math.unit(80, "kg"),
  23959. name: "Side",
  23960. image: {
  23961. source: "./media/characters/dune-anderson/side.svg",
  23962. bottom: 49 / 1426
  23963. }
  23964. },
  23965. },
  23966. [
  23967. {
  23968. name: "Wolf-sized",
  23969. height: math.unit(1.44, "meters")
  23970. },
  23971. {
  23972. name: "Normal",
  23973. height: math.unit(5.05, "meters"),
  23974. default: true
  23975. },
  23976. {
  23977. name: "Big",
  23978. height: math.unit(14.4, "meters")
  23979. },
  23980. {
  23981. name: "Huge",
  23982. height: math.unit(144, "meters")
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23988. {
  23989. front: {
  23990. height: math.unit(7, "feet"),
  23991. weight: math.unit(425, "lb"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/hind/front.svg",
  23995. extra: 2091 / 1860,
  23996. bottom: 129 / 2220
  23997. }
  23998. },
  23999. back: {
  24000. height: math.unit(7, "feet"),
  24001. weight: math.unit(425, "lb"),
  24002. name: "Back",
  24003. image: {
  24004. source: "./media/characters/hind/back.svg",
  24005. extra: 2091 / 1860,
  24006. bottom: 24.6 / 2309
  24007. }
  24008. },
  24009. tail: {
  24010. height: math.unit(2.8, "feet"),
  24011. name: "Tail",
  24012. image: {
  24013. source: "./media/characters/hind/tail.svg"
  24014. }
  24015. },
  24016. head: {
  24017. height: math.unit(2.55, "feet"),
  24018. name: "Head",
  24019. image: {
  24020. source: "./media/characters/hind/head.svg"
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "XS",
  24027. height: math.unit(0.7, "feet")
  24028. },
  24029. {
  24030. name: "Normal",
  24031. height: math.unit(7, "feet"),
  24032. default: true
  24033. },
  24034. {
  24035. name: "XL",
  24036. height: math.unit(70, "feet")
  24037. },
  24038. ]
  24039. ))
  24040. characterMakers.push(() => makeCharacter(
  24041. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24042. {
  24043. front: {
  24044. height: math.unit(6, "feet"),
  24045. weight: math.unit(150, "lb"),
  24046. name: "Front",
  24047. image: {
  24048. source: "./media/characters/dylan-skaven/front.svg",
  24049. extra: 2318 / 2063,
  24050. bottom: 93.4 / 2410
  24051. }
  24052. },
  24053. },
  24054. [
  24055. {
  24056. name: "Nano",
  24057. height: math.unit(1, "mm")
  24058. },
  24059. {
  24060. name: "Micro",
  24061. height: math.unit(1, "cm")
  24062. },
  24063. {
  24064. name: "Normal",
  24065. height: math.unit(2.1, "meters"),
  24066. default: true
  24067. },
  24068. ]
  24069. ))
  24070. characterMakers.push(() => makeCharacter(
  24071. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24072. {
  24073. front: {
  24074. height: math.unit(7 + 5 / 12, "feet"),
  24075. weight: math.unit(357, "lb"),
  24076. name: "Front",
  24077. image: {
  24078. source: "./media/characters/solex-draconov/front.svg",
  24079. extra: 1993 / 1865,
  24080. bottom: 117 / 2111
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Natural Height",
  24087. height: math.unit(7 + 5 / 12, "feet"),
  24088. default: true
  24089. },
  24090. {
  24091. name: "Macro",
  24092. height: math.unit(350, "feet")
  24093. },
  24094. {
  24095. name: "Macro+",
  24096. height: math.unit(1000, "feet")
  24097. },
  24098. {
  24099. name: "Megamacro",
  24100. height: math.unit(20, "km")
  24101. },
  24102. {
  24103. name: "Megamacro+",
  24104. height: math.unit(1000, "km")
  24105. },
  24106. {
  24107. name: "Gigamacro",
  24108. height: math.unit(2.5, "Gm")
  24109. },
  24110. {
  24111. name: "Teramacro",
  24112. height: math.unit(15, "Tm")
  24113. },
  24114. {
  24115. name: "Galactic",
  24116. height: math.unit(30, "Zm")
  24117. },
  24118. {
  24119. name: "Universal",
  24120. height: math.unit(21000, "Ym")
  24121. },
  24122. {
  24123. name: "Omniversal",
  24124. height: math.unit(9.861e50, "Ym")
  24125. },
  24126. {
  24127. name: "Existential",
  24128. height: math.unit(1e300, "meters")
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24134. {
  24135. side: {
  24136. height: math.unit(25, "feet"),
  24137. weight: math.unit(90000, "lb"),
  24138. name: "Side",
  24139. image: {
  24140. source: "./media/characters/mandarax/side.svg",
  24141. extra: 614 / 332,
  24142. bottom: 55 / 630
  24143. }
  24144. },
  24145. head: {
  24146. height: math.unit(11.4, "feet"),
  24147. name: "Head",
  24148. image: {
  24149. source: "./media/characters/mandarax/head.svg"
  24150. }
  24151. },
  24152. belly: {
  24153. height: math.unit(33, "feet"),
  24154. name: "Belly",
  24155. capacity: math.unit(500, "people"),
  24156. image: {
  24157. source: "./media/characters/mandarax/belly.svg"
  24158. }
  24159. },
  24160. dick: {
  24161. height: math.unit(8.46, "feet"),
  24162. name: "Dick",
  24163. image: {
  24164. source: "./media/characters/mandarax/dick.svg"
  24165. }
  24166. },
  24167. top: {
  24168. height: math.unit(28, "meters"),
  24169. name: "Top",
  24170. image: {
  24171. source: "./media/characters/mandarax/top.svg"
  24172. }
  24173. },
  24174. },
  24175. [
  24176. {
  24177. name: "Normal",
  24178. height: math.unit(25, "feet"),
  24179. default: true
  24180. },
  24181. ]
  24182. ))
  24183. characterMakers.push(() => makeCharacter(
  24184. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24185. {
  24186. front: {
  24187. height: math.unit(5, "feet"),
  24188. weight: math.unit(90, "lb"),
  24189. name: "Front",
  24190. image: {
  24191. source: "./media/characters/pixil/front.svg",
  24192. extra: 2000 / 1618,
  24193. bottom: 12.3 / 2011
  24194. }
  24195. },
  24196. },
  24197. [
  24198. {
  24199. name: "Normal",
  24200. height: math.unit(5, "feet"),
  24201. default: true
  24202. },
  24203. {
  24204. name: "Megamacro",
  24205. height: math.unit(10, "miles"),
  24206. },
  24207. ]
  24208. ))
  24209. characterMakers.push(() => makeCharacter(
  24210. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24211. {
  24212. front: {
  24213. height: math.unit(7 + 2 / 12, "feet"),
  24214. weight: math.unit(200, "lb"),
  24215. name: "Front",
  24216. image: {
  24217. source: "./media/characters/angel/front.svg",
  24218. extra: 1830 / 1737,
  24219. bottom: 22.6 / 1854,
  24220. }
  24221. },
  24222. },
  24223. [
  24224. {
  24225. name: "Normal",
  24226. height: math.unit(7 + 2 / 12, "feet"),
  24227. default: true
  24228. },
  24229. {
  24230. name: "Macro",
  24231. height: math.unit(1000, "feet")
  24232. },
  24233. {
  24234. name: "Megamacro",
  24235. height: math.unit(2, "miles")
  24236. },
  24237. {
  24238. name: "Gigamacro",
  24239. height: math.unit(20, "earths")
  24240. },
  24241. ]
  24242. ))
  24243. characterMakers.push(() => makeCharacter(
  24244. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24245. {
  24246. front: {
  24247. height: math.unit(5, "feet"),
  24248. weight: math.unit(180, "lb"),
  24249. name: "Front",
  24250. image: {
  24251. source: "./media/characters/mekana/front.svg",
  24252. extra: 1671 / 1605,
  24253. bottom: 3.5 / 1691
  24254. }
  24255. },
  24256. side: {
  24257. height: math.unit(5, "feet"),
  24258. weight: math.unit(180, "lb"),
  24259. name: "Side",
  24260. image: {
  24261. source: "./media/characters/mekana/side.svg",
  24262. extra: 1671 / 1605,
  24263. bottom: 3.5 / 1691
  24264. }
  24265. },
  24266. back: {
  24267. height: math.unit(5, "feet"),
  24268. weight: math.unit(180, "lb"),
  24269. name: "Back",
  24270. image: {
  24271. source: "./media/characters/mekana/back.svg",
  24272. extra: 1671 / 1605,
  24273. bottom: 3.5 / 1691
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(5, "feet"),
  24281. default: true
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24287. {
  24288. front: {
  24289. height: math.unit(4 + 6 / 12, "feet"),
  24290. weight: math.unit(80, "lb"),
  24291. name: "Front",
  24292. image: {
  24293. source: "./media/characters/pixie/front.svg",
  24294. extra: 1924 / 1825,
  24295. bottom: 22.4 / 1946
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Normal",
  24302. height: math.unit(4 + 6 / 12, "feet"),
  24303. default: true
  24304. },
  24305. {
  24306. name: "Macro",
  24307. height: math.unit(40, "feet")
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24313. {
  24314. front: {
  24315. height: math.unit(2.1, "meters"),
  24316. weight: math.unit(200, "lb"),
  24317. name: "Front",
  24318. image: {
  24319. source: "./media/characters/the-lascivious/front.svg",
  24320. extra: 1 / 0.893,
  24321. bottom: 3.5 / 573.7
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Human Scale",
  24328. height: math.unit(2.1, "meters")
  24329. },
  24330. {
  24331. name: "Wolxi Scale",
  24332. height: math.unit(46.2, "m"),
  24333. default: true
  24334. },
  24335. {
  24336. name: "Boinker of Buildings",
  24337. height: math.unit(10, "km")
  24338. },
  24339. {
  24340. name: "Shagger of Skyscrapers",
  24341. height: math.unit(40, "km")
  24342. },
  24343. {
  24344. name: "Banger of Boroughs",
  24345. height: math.unit(4000, "km")
  24346. },
  24347. {
  24348. name: "Screwer of States",
  24349. height: math.unit(100000, "km")
  24350. },
  24351. {
  24352. name: "Pounder of Planets",
  24353. height: math.unit(2000000, "km")
  24354. },
  24355. ]
  24356. ))
  24357. characterMakers.push(() => makeCharacter(
  24358. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24359. {
  24360. front: {
  24361. height: math.unit(6, "feet"),
  24362. weight: math.unit(150, "lb"),
  24363. name: "Front",
  24364. image: {
  24365. source: "./media/characters/aj/front.svg",
  24366. extra: 2039 / 1562,
  24367. bottom: 40 / 2079
  24368. }
  24369. },
  24370. },
  24371. [
  24372. {
  24373. name: "Normal",
  24374. height: math.unit(11 + 6 / 12, "feet"),
  24375. default: true
  24376. },
  24377. {
  24378. name: "Megamacro",
  24379. height: math.unit(60, "megameters")
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24385. {
  24386. side: {
  24387. height: math.unit(31 + 8 / 12, "feet"),
  24388. weight: math.unit(75000, "kg"),
  24389. name: "Side",
  24390. image: {
  24391. source: "./media/characters/koros/side.svg",
  24392. extra: 1442 / 1297,
  24393. bottom: 122.7 / 1562
  24394. }
  24395. },
  24396. dicksKingsCrown: {
  24397. height: math.unit(6, "feet"),
  24398. name: "Dicks (King's Crown)",
  24399. image: {
  24400. source: "./media/characters/koros/dicks-kings-crown.svg"
  24401. }
  24402. },
  24403. dicksTailSet: {
  24404. height: math.unit(3, "feet"),
  24405. name: "Dicks (Tail Set)",
  24406. image: {
  24407. source: "./media/characters/koros/dicks-tail-set.svg"
  24408. }
  24409. },
  24410. dickCumming: {
  24411. height: math.unit(7.98, "feet"),
  24412. name: "Dick (Cumming)",
  24413. image: {
  24414. source: "./media/characters/koros/dick-cumming.svg"
  24415. }
  24416. },
  24417. dicksBack: {
  24418. height: math.unit(5.9, "feet"),
  24419. name: "Dicks (Back)",
  24420. image: {
  24421. source: "./media/characters/koros/dicks-back.svg"
  24422. }
  24423. },
  24424. dicksFront: {
  24425. height: math.unit(3.72, "feet"),
  24426. name: "Dicks (Front)",
  24427. image: {
  24428. source: "./media/characters/koros/dicks-front.svg"
  24429. }
  24430. },
  24431. dicksPeeking: {
  24432. height: math.unit(3.0, "feet"),
  24433. name: "Dicks (Peeking)",
  24434. image: {
  24435. source: "./media/characters/koros/dicks-peeking.svg"
  24436. }
  24437. },
  24438. eye: {
  24439. height: math.unit(1.7, "feet"),
  24440. name: "Eye",
  24441. image: {
  24442. source: "./media/characters/koros/eye.svg"
  24443. }
  24444. },
  24445. headFront: {
  24446. height: math.unit(11.69, "feet"),
  24447. name: "Head (Front)",
  24448. image: {
  24449. source: "./media/characters/koros/head-front.svg"
  24450. }
  24451. },
  24452. headSide: {
  24453. height: math.unit(14, "feet"),
  24454. name: "Head (Side)",
  24455. image: {
  24456. source: "./media/characters/koros/head-side.svg"
  24457. }
  24458. },
  24459. leg: {
  24460. height: math.unit(17, "feet"),
  24461. name: "Leg",
  24462. image: {
  24463. source: "./media/characters/koros/leg.svg"
  24464. }
  24465. },
  24466. mawSide: {
  24467. height: math.unit(12.8, "feet"),
  24468. name: "Maw (Side)",
  24469. image: {
  24470. source: "./media/characters/koros/maw-side.svg"
  24471. }
  24472. },
  24473. mawSpitting: {
  24474. height: math.unit(17, "feet"),
  24475. name: "Maw (Spitting)",
  24476. image: {
  24477. source: "./media/characters/koros/maw-spitting.svg"
  24478. }
  24479. },
  24480. slit: {
  24481. height: math.unit(2.8, "feet"),
  24482. name: "Slit",
  24483. image: {
  24484. source: "./media/characters/koros/slit.svg"
  24485. }
  24486. },
  24487. stomach: {
  24488. height: math.unit(6.8, "feet"),
  24489. capacity: math.unit(20, "people"),
  24490. name: "Stomach",
  24491. image: {
  24492. source: "./media/characters/koros/stomach.svg"
  24493. }
  24494. },
  24495. wingspanBottom: {
  24496. height: math.unit(114, "feet"),
  24497. name: "Wingspan (Bottom)",
  24498. image: {
  24499. source: "./media/characters/koros/wingspan-bottom.svg"
  24500. }
  24501. },
  24502. wingspanTop: {
  24503. height: math.unit(104, "feet"),
  24504. name: "Wingspan (Top)",
  24505. image: {
  24506. source: "./media/characters/koros/wingspan-top.svg"
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(31 + 8 / 12, "feet"),
  24514. default: true
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(18 + 5 / 12, "feet"),
  24523. weight: math.unit(3750, "kg"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/vexx/front.svg",
  24527. extra: 426 / 396,
  24528. bottom: 31.5 / 458
  24529. }
  24530. },
  24531. maw: {
  24532. height: math.unit(6, "feet"),
  24533. name: "Maw",
  24534. image: {
  24535. source: "./media/characters/vexx/maw.svg"
  24536. }
  24537. },
  24538. },
  24539. [
  24540. {
  24541. name: "Normal",
  24542. height: math.unit(18 + 5 / 12, "feet"),
  24543. default: true
  24544. },
  24545. ]
  24546. ))
  24547. characterMakers.push(() => makeCharacter(
  24548. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24549. {
  24550. front: {
  24551. height: math.unit(17 + 6 / 12, "feet"),
  24552. weight: math.unit(150, "lb"),
  24553. name: "Front",
  24554. image: {
  24555. source: "./media/characters/baadra/front.svg",
  24556. extra: 3137 / 2890,
  24557. bottom: 168.4 / 3305
  24558. }
  24559. },
  24560. back: {
  24561. height: math.unit(17 + 6 / 12, "feet"),
  24562. weight: math.unit(150, "lb"),
  24563. name: "Back",
  24564. image: {
  24565. source: "./media/characters/baadra/back.svg",
  24566. extra: 3142 / 2890,
  24567. bottom: 220 / 3371
  24568. }
  24569. },
  24570. head: {
  24571. height: math.unit(5.45, "feet"),
  24572. name: "Head",
  24573. image: {
  24574. source: "./media/characters/baadra/head.svg"
  24575. }
  24576. },
  24577. headAngry: {
  24578. height: math.unit(4.95, "feet"),
  24579. name: "Head (Angry)",
  24580. image: {
  24581. source: "./media/characters/baadra/head-angry.svg"
  24582. }
  24583. },
  24584. headOpen: {
  24585. height: math.unit(6, "feet"),
  24586. name: "Head (Open)",
  24587. image: {
  24588. source: "./media/characters/baadra/head-open.svg"
  24589. }
  24590. },
  24591. },
  24592. [
  24593. {
  24594. name: "Normal",
  24595. height: math.unit(17 + 6 / 12, "feet"),
  24596. default: true
  24597. },
  24598. ]
  24599. ))
  24600. characterMakers.push(() => makeCharacter(
  24601. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24602. {
  24603. front: {
  24604. height: math.unit(7 + 3 / 12, "feet"),
  24605. weight: math.unit(180, "lb"),
  24606. name: "Front",
  24607. image: {
  24608. source: "./media/characters/juri/front.svg",
  24609. extra: 1401 / 1237,
  24610. bottom: 18.5 / 1418
  24611. }
  24612. },
  24613. side: {
  24614. height: math.unit(7 + 3 / 12, "feet"),
  24615. weight: math.unit(180, "lb"),
  24616. name: "Side",
  24617. image: {
  24618. source: "./media/characters/juri/side.svg",
  24619. extra: 1424 / 1242,
  24620. bottom: 18.5 / 1447
  24621. }
  24622. },
  24623. sitting: {
  24624. height: math.unit(6, "feet"),
  24625. weight: math.unit(180, "lb"),
  24626. name: "Sitting",
  24627. image: {
  24628. source: "./media/characters/juri/sitting.svg",
  24629. extra: 1270 / 1143,
  24630. bottom: 100 / 1343
  24631. }
  24632. },
  24633. back: {
  24634. height: math.unit(7 + 3 / 12, "feet"),
  24635. weight: math.unit(180, "lb"),
  24636. name: "Back",
  24637. image: {
  24638. source: "./media/characters/juri/back.svg",
  24639. extra: 1377 / 1240,
  24640. bottom: 23.7 / 1405
  24641. }
  24642. },
  24643. maw: {
  24644. height: math.unit(2.8, "feet"),
  24645. name: "Maw",
  24646. image: {
  24647. source: "./media/characters/juri/maw.svg"
  24648. }
  24649. },
  24650. stomach: {
  24651. height: math.unit(0.89, "feet"),
  24652. capacity: math.unit(4, "liters"),
  24653. name: "Stomach",
  24654. image: {
  24655. source: "./media/characters/juri/stomach.svg"
  24656. }
  24657. },
  24658. },
  24659. [
  24660. {
  24661. name: "Normal",
  24662. height: math.unit(7 + 3 / 12, "feet"),
  24663. default: true
  24664. },
  24665. ]
  24666. ))
  24667. characterMakers.push(() => makeCharacter(
  24668. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24669. {
  24670. fox: {
  24671. height: math.unit(5 + 6 / 12, "feet"),
  24672. weight: math.unit(140, "lb"),
  24673. name: "Fox",
  24674. image: {
  24675. source: "./media/characters/maxene-sita/fox.svg",
  24676. extra: 146 / 138,
  24677. bottom: 2.1 / 148.19
  24678. }
  24679. },
  24680. kitsune: {
  24681. height: math.unit(10, "feet"),
  24682. weight: math.unit(800, "lb"),
  24683. name: "Kitsune",
  24684. image: {
  24685. source: "./media/characters/maxene-sita/kitsune.svg",
  24686. extra: 185 / 176,
  24687. bottom: 4.7 / 189.9
  24688. }
  24689. },
  24690. },
  24691. [
  24692. {
  24693. name: "Normal",
  24694. height: math.unit(5 + 6 / 12, "feet"),
  24695. default: true
  24696. },
  24697. ]
  24698. ))
  24699. characterMakers.push(() => makeCharacter(
  24700. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24701. {
  24702. front: {
  24703. height: math.unit(3 + 4 / 12, "feet"),
  24704. weight: math.unit(70, "lb"),
  24705. name: "Front",
  24706. image: {
  24707. source: "./media/characters/maia/front.svg",
  24708. extra: 227 / 219.5,
  24709. bottom: 40 / 267
  24710. }
  24711. },
  24712. back: {
  24713. height: math.unit(3 + 4 / 12, "feet"),
  24714. weight: math.unit(70, "lb"),
  24715. name: "Back",
  24716. image: {
  24717. source: "./media/characters/maia/back.svg",
  24718. extra: 237 / 225
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Normal",
  24725. height: math.unit(3 + 4 / 12, "feet"),
  24726. default: true
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24732. {
  24733. front: {
  24734. height: math.unit(5 + 10 / 12, "feet"),
  24735. weight: math.unit(197, "lb"),
  24736. name: "Front",
  24737. image: {
  24738. source: "./media/characters/jabaro/front.svg",
  24739. extra: 225 / 216,
  24740. bottom: 5.06 / 230
  24741. }
  24742. },
  24743. back: {
  24744. height: math.unit(5 + 10 / 12, "feet"),
  24745. weight: math.unit(197, "lb"),
  24746. name: "Back",
  24747. image: {
  24748. source: "./media/characters/jabaro/back.svg",
  24749. extra: 225 / 219,
  24750. bottom: 1.9 / 227
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Normal",
  24757. height: math.unit(5 + 10 / 12, "feet"),
  24758. default: true
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(5 + 8 / 12, "feet"),
  24767. weight: math.unit(139, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/risa/front.svg",
  24771. extra: 270 / 260,
  24772. bottom: 11.2 / 282
  24773. }
  24774. },
  24775. back: {
  24776. height: math.unit(5 + 8 / 12, "feet"),
  24777. weight: math.unit(139, "lb"),
  24778. name: "Back",
  24779. image: {
  24780. source: "./media/characters/risa/back.svg",
  24781. extra: 264 / 255,
  24782. bottom: 4 / 268
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(5 + 8 / 12, "feet"),
  24790. default: true
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24796. {
  24797. front: {
  24798. height: math.unit(2 + 11 / 12, "feet"),
  24799. weight: math.unit(30, "lb"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/weatley/front.svg",
  24803. bottom: 10.7 / 414,
  24804. extra: 403.5 / 362
  24805. }
  24806. },
  24807. back: {
  24808. height: math.unit(2 + 11 / 12, "feet"),
  24809. weight: math.unit(30, "lb"),
  24810. name: "Back",
  24811. image: {
  24812. source: "./media/characters/weatley/back.svg",
  24813. bottom: 10.7 / 414,
  24814. extra: 403.5 / 362
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Normal",
  24821. height: math.unit(2 + 11 / 12, "feet"),
  24822. default: true
  24823. },
  24824. ]
  24825. ))
  24826. characterMakers.push(() => makeCharacter(
  24827. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24828. {
  24829. front: {
  24830. height: math.unit(5 + 2 / 12, "feet"),
  24831. weight: math.unit(50, "kg"),
  24832. name: "Front",
  24833. image: {
  24834. source: "./media/characters/mercury-crescent/front.svg",
  24835. extra: 1088 / 1033,
  24836. bottom: 18.9 / 1109
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Normal",
  24843. height: math.unit(5 + 2 / 12, "feet"),
  24844. default: true
  24845. },
  24846. ]
  24847. ))
  24848. characterMakers.push(() => makeCharacter(
  24849. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24850. {
  24851. front: {
  24852. height: math.unit(2, "feet"),
  24853. weight: math.unit(15, "kg"),
  24854. name: "Front",
  24855. image: {
  24856. source: "./media/characters/diamond-jones/front.svg",
  24857. bottom: 16 / 568
  24858. }
  24859. },
  24860. },
  24861. [
  24862. {
  24863. name: "Normal",
  24864. height: math.unit(2, "feet"),
  24865. default: true
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24871. {
  24872. front: {
  24873. height: math.unit(3, "feet"),
  24874. weight: math.unit(30, "kg"),
  24875. name: "Front",
  24876. image: {
  24877. source: "./media/characters/sweet-bit/front.svg",
  24878. extra: 675 / 567,
  24879. bottom: 27.7 / 703
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Normal",
  24886. height: math.unit(3, "feet"),
  24887. default: true
  24888. },
  24889. ]
  24890. ))
  24891. characterMakers.push(() => makeCharacter(
  24892. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24893. {
  24894. side: {
  24895. height: math.unit(9.178, "feet"),
  24896. weight: math.unit(500, "lb"),
  24897. name: "Side",
  24898. image: {
  24899. source: "./media/characters/umbrazen/side.svg",
  24900. extra: 1730 / 1473,
  24901. bottom: 34.6 / 1765
  24902. }
  24903. },
  24904. },
  24905. [
  24906. {
  24907. name: "Normal",
  24908. height: math.unit(9.178, "feet"),
  24909. default: true
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24915. {
  24916. front: {
  24917. height: math.unit(10, "feet"),
  24918. weight: math.unit(750, "lb"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/arlist/front.svg",
  24922. extra: 961 / 778,
  24923. bottom: 6.2 / 986
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(10, "feet"),
  24931. default: true
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24937. {
  24938. front: {
  24939. height: math.unit(5 + 1 / 12, "feet"),
  24940. weight: math.unit(110, "lb"),
  24941. name: "Front",
  24942. image: {
  24943. source: "./media/characters/aradel/front.svg",
  24944. extra: 324 / 303,
  24945. bottom: 3.6 / 329.4
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Normal",
  24952. height: math.unit(5 + 1 / 12, "feet"),
  24953. default: true
  24954. },
  24955. ]
  24956. ))
  24957. characterMakers.push(() => makeCharacter(
  24958. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24959. {
  24960. front: {
  24961. height: math.unit(3 + 8 / 12, "feet"),
  24962. weight: math.unit(50, "lb"),
  24963. name: "Front",
  24964. image: {
  24965. source: "./media/characters/serryn/front.svg",
  24966. extra: 1792 / 1656,
  24967. bottom: 43.5 / 1840
  24968. }
  24969. },
  24970. },
  24971. [
  24972. {
  24973. name: "Normal",
  24974. height: math.unit(3 + 8 / 12, "feet"),
  24975. default: true
  24976. },
  24977. ]
  24978. ))
  24979. characterMakers.push(() => makeCharacter(
  24980. { name: "Xavier Thyme" },
  24981. {
  24982. front: {
  24983. height: math.unit(7 + 10 / 12, "feet"),
  24984. weight: math.unit(255, "lb"),
  24985. name: "Front",
  24986. image: {
  24987. source: "./media/characters/xavier-thyme/front.svg",
  24988. extra: 3733 / 3642,
  24989. bottom: 131 / 3869
  24990. }
  24991. },
  24992. frontRaven: {
  24993. height: math.unit(7 + 10 / 12, "feet"),
  24994. weight: math.unit(255, "lb"),
  24995. name: "Front (Raven)",
  24996. image: {
  24997. source: "./media/characters/xavier-thyme/front-raven.svg",
  24998. extra: 4385 / 3642,
  24999. bottom: 131 / 4517
  25000. }
  25001. },
  25002. },
  25003. [
  25004. {
  25005. name: "Normal",
  25006. height: math.unit(7 + 10 / 12, "feet"),
  25007. default: true
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25013. {
  25014. front: {
  25015. height: math.unit(1.6, "m"),
  25016. weight: math.unit(50, "kg"),
  25017. name: "Front",
  25018. image: {
  25019. source: "./media/characters/kiki/front.svg",
  25020. extra: 4682 / 3610,
  25021. bottom: 115 / 4777
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(1.6, "meters"),
  25029. default: true
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25035. {
  25036. front: {
  25037. height: math.unit(50, "m"),
  25038. weight: math.unit(500, "tonnes"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/ryoko/front.svg",
  25042. extra: 4632 / 3926,
  25043. bottom: 193 / 4823
  25044. }
  25045. },
  25046. },
  25047. [
  25048. {
  25049. name: "Normal",
  25050. height: math.unit(50, "meters"),
  25051. default: true
  25052. },
  25053. ]
  25054. ))
  25055. characterMakers.push(() => makeCharacter(
  25056. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25057. {
  25058. front: {
  25059. height: math.unit(30, "m"),
  25060. weight: math.unit(22, "tonnes"),
  25061. name: "Front",
  25062. image: {
  25063. source: "./media/characters/elio/front.svg",
  25064. extra: 4582 / 3720,
  25065. bottom: 236 / 4828
  25066. }
  25067. },
  25068. },
  25069. [
  25070. {
  25071. name: "Normal",
  25072. height: math.unit(30, "meters"),
  25073. default: true
  25074. },
  25075. ]
  25076. ))
  25077. characterMakers.push(() => makeCharacter(
  25078. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25079. {
  25080. front: {
  25081. height: math.unit(6 + 3 / 12, "feet"),
  25082. weight: math.unit(120, "lb"),
  25083. name: "Front",
  25084. image: {
  25085. source: "./media/characters/azura/front.svg",
  25086. extra: 1149 / 1135,
  25087. bottom: 45 / 1194
  25088. }
  25089. },
  25090. frontClothed: {
  25091. height: math.unit(6 + 3 / 12, "feet"),
  25092. weight: math.unit(120, "lb"),
  25093. name: "Front (Clothed)",
  25094. image: {
  25095. source: "./media/characters/azura/front-clothed.svg",
  25096. extra: 1149 / 1135,
  25097. bottom: 45 / 1194
  25098. }
  25099. },
  25100. },
  25101. [
  25102. {
  25103. name: "Normal",
  25104. height: math.unit(6 + 3 / 12, "feet"),
  25105. default: true
  25106. },
  25107. {
  25108. name: "Macro",
  25109. height: math.unit(20 + 6 / 12, "feet")
  25110. },
  25111. {
  25112. name: "Megamacro",
  25113. height: math.unit(12, "miles")
  25114. },
  25115. {
  25116. name: "Gigamacro",
  25117. height: math.unit(10000, "miles")
  25118. },
  25119. {
  25120. name: "Teramacro",
  25121. height: math.unit(900000, "miles")
  25122. },
  25123. ]
  25124. ))
  25125. characterMakers.push(() => makeCharacter(
  25126. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25127. {
  25128. front: {
  25129. height: math.unit(12, "feet"),
  25130. weight: math.unit(1, "ton"),
  25131. capacity: math.unit(660000, "gallons"),
  25132. name: "Front",
  25133. image: {
  25134. source: "./media/characters/zeus/front.svg",
  25135. extra: 5005 / 4717,
  25136. bottom: 363 / 5388
  25137. }
  25138. },
  25139. },
  25140. [
  25141. {
  25142. name: "Normal",
  25143. height: math.unit(12, "feet")
  25144. },
  25145. {
  25146. name: "Preferred Size",
  25147. height: math.unit(0.5, "miles"),
  25148. default: true
  25149. },
  25150. {
  25151. name: "Giga Horse",
  25152. height: math.unit(300, "miles")
  25153. },
  25154. {
  25155. name: "Riding Planets",
  25156. height: math.unit(30, "megameters")
  25157. },
  25158. {
  25159. name: "Cosmic Giant",
  25160. height: math.unit(3, "zettameters")
  25161. },
  25162. {
  25163. name: "Breeding God",
  25164. height: math.unit(9.92e22, "yottameters")
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25170. {
  25171. side: {
  25172. height: math.unit(9, "feet"),
  25173. weight: math.unit(1500, "kg"),
  25174. name: "Side",
  25175. image: {
  25176. source: "./media/characters/fang/side.svg",
  25177. extra: 924 / 866,
  25178. bottom: 47.5 / 972.3
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(9, "feet"),
  25186. default: true
  25187. },
  25188. {
  25189. name: "Macro",
  25190. height: math.unit(75 + 6 / 12, "feet")
  25191. },
  25192. {
  25193. name: "Teramacro",
  25194. height: math.unit(50000, "miles")
  25195. },
  25196. ]
  25197. ))
  25198. characterMakers.push(() => makeCharacter(
  25199. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25200. {
  25201. front: {
  25202. height: math.unit(10, "feet"),
  25203. weight: math.unit(2, "tons"),
  25204. name: "Front",
  25205. image: {
  25206. source: "./media/characters/rekhit/front.svg",
  25207. extra: 2796 / 2590,
  25208. bottom: 225 / 3022
  25209. }
  25210. },
  25211. },
  25212. [
  25213. {
  25214. name: "Normal",
  25215. height: math.unit(10, "feet"),
  25216. default: true
  25217. },
  25218. {
  25219. name: "Macro",
  25220. height: math.unit(500, "feet")
  25221. },
  25222. ]
  25223. ))
  25224. characterMakers.push(() => makeCharacter(
  25225. { name: "Dahlia Verrick" },
  25226. {
  25227. front: {
  25228. height: math.unit(7 + 6.451 / 12, "feet"),
  25229. weight: math.unit(310, "lb"),
  25230. name: "Front",
  25231. image: {
  25232. source: "./media/characters/dahlia-verrick/front.svg",
  25233. extra: 1488 / 1365,
  25234. bottom: 6.2 / 1495
  25235. }
  25236. },
  25237. back: {
  25238. height: math.unit(7 + 6.451 / 12, "feet"),
  25239. weight: math.unit(310, "lb"),
  25240. name: "Back",
  25241. image: {
  25242. source: "./media/characters/dahlia-verrick/back.svg",
  25243. extra: 1472 / 1351,
  25244. bottom: 5.28 / 1477
  25245. }
  25246. },
  25247. frontBusiness: {
  25248. height: math.unit(7 + 6.451 / 12, "feet"),
  25249. weight: math.unit(200, "lb"),
  25250. name: "Front (Business)",
  25251. image: {
  25252. source: "./media/characters/dahlia-verrick/front-business.svg",
  25253. extra: 1478 / 1381,
  25254. bottom: 5.5 / 1484
  25255. }
  25256. },
  25257. frontCasual: {
  25258. height: math.unit(7 + 6.451 / 12, "feet"),
  25259. weight: math.unit(200, "lb"),
  25260. name: "Front (Casual)",
  25261. image: {
  25262. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25263. extra: 1478 / 1381,
  25264. bottom: 5.5 / 1484
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Travel-Sized",
  25271. height: math.unit(7.45, "inches")
  25272. },
  25273. {
  25274. name: "Normal",
  25275. height: math.unit(7 + 6.451 / 12, "feet"),
  25276. default: true
  25277. },
  25278. {
  25279. name: "Hitting the Town",
  25280. height: math.unit(37 + 8 / 12, "feet")
  25281. },
  25282. {
  25283. name: "Stomp in the Suburbs",
  25284. height: math.unit(964 + 9.728 / 12, "feet")
  25285. },
  25286. {
  25287. name: "Sit on the City",
  25288. height: math.unit(61747 + 10.592 / 12, "feet")
  25289. },
  25290. {
  25291. name: "Glomp the Globe",
  25292. height: math.unit(252919327 + 4.832 / 12, "feet")
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25298. {
  25299. front: {
  25300. height: math.unit(6 + 4 / 12, "feet"),
  25301. weight: math.unit(320, "lb"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/balina-mahigan/front.svg",
  25305. extra: 447 / 428,
  25306. bottom: 18 / 466
  25307. }
  25308. },
  25309. back: {
  25310. height: math.unit(6 + 4 / 12, "feet"),
  25311. weight: math.unit(320, "lb"),
  25312. name: "Back",
  25313. image: {
  25314. source: "./media/characters/balina-mahigan/back.svg",
  25315. extra: 445 / 428,
  25316. bottom: 4.07 / 448
  25317. }
  25318. },
  25319. arm: {
  25320. height: math.unit(1.88, "feet"),
  25321. name: "Arm",
  25322. image: {
  25323. source: "./media/characters/balina-mahigan/arm.svg"
  25324. }
  25325. },
  25326. backPort: {
  25327. height: math.unit(0.685, "feet"),
  25328. name: "Back Port",
  25329. image: {
  25330. source: "./media/characters/balina-mahigan/back-port.svg"
  25331. }
  25332. },
  25333. hoofpaw: {
  25334. height: math.unit(1.41, "feet"),
  25335. name: "Hoofpaw",
  25336. image: {
  25337. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25338. }
  25339. },
  25340. leftHandBack: {
  25341. height: math.unit(0.938, "feet"),
  25342. name: "Left Hand (Back)",
  25343. image: {
  25344. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25345. }
  25346. },
  25347. leftHandFront: {
  25348. height: math.unit(0.938, "feet"),
  25349. name: "Left Hand (Front)",
  25350. image: {
  25351. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25352. }
  25353. },
  25354. rightHandBack: {
  25355. height: math.unit(0.95, "feet"),
  25356. name: "Right Hand (Back)",
  25357. image: {
  25358. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25359. }
  25360. },
  25361. rightHandFront: {
  25362. height: math.unit(0.95, "feet"),
  25363. name: "Right Hand (Front)",
  25364. image: {
  25365. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Normal",
  25372. height: math.unit(6 + 4 / 12, "feet"),
  25373. default: true
  25374. },
  25375. ]
  25376. ))
  25377. characterMakers.push(() => makeCharacter(
  25378. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25379. {
  25380. front: {
  25381. height: math.unit(6, "feet"),
  25382. weight: math.unit(320, "lb"),
  25383. name: "Front",
  25384. image: {
  25385. source: "./media/characters/balina-mejeri/front.svg",
  25386. extra: 517 / 488,
  25387. bottom: 44.2 / 561
  25388. }
  25389. },
  25390. },
  25391. [
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(6 + 4 / 12, "feet")
  25395. },
  25396. {
  25397. name: "Business",
  25398. height: math.unit(155, "feet"),
  25399. default: true
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25405. {
  25406. kneeling: {
  25407. height: math.unit(6 + 4 / 12, "feet"),
  25408. weight: math.unit(300 * 20, "lb"),
  25409. name: "Kneeling",
  25410. image: {
  25411. source: "./media/characters/balbarian/kneeling.svg",
  25412. extra: 922 / 862,
  25413. bottom: 42.4 / 965
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Normal",
  25420. height: math.unit(6 + 4 / 12, "feet")
  25421. },
  25422. {
  25423. name: "Treasured",
  25424. height: math.unit(18 + 9 / 12, "feet"),
  25425. default: true
  25426. },
  25427. {
  25428. name: "Macro",
  25429. height: math.unit(900, "feet")
  25430. },
  25431. ]
  25432. ))
  25433. characterMakers.push(() => makeCharacter(
  25434. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25435. {
  25436. front: {
  25437. height: math.unit(6 + 4 / 12, "feet"),
  25438. weight: math.unit(325, "lb"),
  25439. name: "Front",
  25440. image: {
  25441. source: "./media/characters/balina-amarini/front.svg",
  25442. extra: 415 / 403,
  25443. bottom: 19 / 433.4
  25444. }
  25445. },
  25446. back: {
  25447. height: math.unit(6 + 4 / 12, "feet"),
  25448. weight: math.unit(325, "lb"),
  25449. name: "Back",
  25450. image: {
  25451. source: "./media/characters/balina-amarini/back.svg",
  25452. extra: 415 / 403,
  25453. bottom: 13.5 / 432
  25454. }
  25455. },
  25456. overdrive: {
  25457. height: math.unit(6 + 4 / 12, "feet"),
  25458. weight: math.unit(400, "lb"),
  25459. name: "Overdrive",
  25460. image: {
  25461. source: "./media/characters/balina-amarini/overdrive.svg",
  25462. extra: 269 / 259,
  25463. bottom: 12 / 282
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Boom",
  25470. height: math.unit(9 + 10 / 12, "feet"),
  25471. default: true
  25472. },
  25473. {
  25474. name: "Macro",
  25475. height: math.unit(280, "feet")
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25481. {
  25482. goddess: {
  25483. height: math.unit(600, "feet"),
  25484. weight: math.unit(2000000, "tons"),
  25485. name: "Goddess",
  25486. image: {
  25487. source: "./media/characters/lady-kubwa/goddess.svg",
  25488. extra: 1240.5 / 1223,
  25489. bottom: 22 / 1263
  25490. }
  25491. },
  25492. goddesser: {
  25493. height: math.unit(900, "feet"),
  25494. weight: math.unit(20000000, "lb"),
  25495. name: "Goddess-er",
  25496. image: {
  25497. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25498. extra: 899 / 888,
  25499. bottom: 12.6 / 912
  25500. }
  25501. },
  25502. },
  25503. [
  25504. {
  25505. name: "Macro",
  25506. height: math.unit(600, "feet"),
  25507. default: true
  25508. },
  25509. {
  25510. name: "Megamacro",
  25511. height: math.unit(250, "miles")
  25512. },
  25513. ]
  25514. ))
  25515. characterMakers.push(() => makeCharacter(
  25516. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25517. {
  25518. front: {
  25519. height: math.unit(7 + 7 / 12, "feet"),
  25520. weight: math.unit(250, "lb"),
  25521. name: "Front",
  25522. image: {
  25523. source: "./media/characters/tala-grovehorn/front.svg",
  25524. extra: 2636 / 2525,
  25525. bottom: 147 / 2781
  25526. }
  25527. },
  25528. back: {
  25529. height: math.unit(7 + 7 / 12, "feet"),
  25530. weight: math.unit(250, "lb"),
  25531. name: "Back",
  25532. image: {
  25533. source: "./media/characters/tala-grovehorn/back.svg",
  25534. extra: 2635 / 2539,
  25535. bottom: 100 / 2732.8
  25536. }
  25537. },
  25538. mouth: {
  25539. height: math.unit(1.15, "feet"),
  25540. name: "Mouth",
  25541. image: {
  25542. source: "./media/characters/tala-grovehorn/mouth.svg"
  25543. }
  25544. },
  25545. dick: {
  25546. height: math.unit(2.36, "feet"),
  25547. name: "Dick",
  25548. image: {
  25549. source: "./media/characters/tala-grovehorn/dick.svg"
  25550. }
  25551. },
  25552. slit: {
  25553. height: math.unit(0.61, "feet"),
  25554. name: "Slit",
  25555. image: {
  25556. source: "./media/characters/tala-grovehorn/slit.svg"
  25557. }
  25558. },
  25559. },
  25560. [
  25561. ]
  25562. ))
  25563. characterMakers.push(() => makeCharacter(
  25564. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25565. {
  25566. front: {
  25567. height: math.unit(7 + 7 / 12, "feet"),
  25568. weight: math.unit(225, "lb"),
  25569. name: "Front",
  25570. image: {
  25571. source: "./media/characters/epona/front.svg",
  25572. extra: 2445 / 2290,
  25573. bottom: 251 / 2696
  25574. }
  25575. },
  25576. back: {
  25577. height: math.unit(7 + 7 / 12, "feet"),
  25578. weight: math.unit(225, "lb"),
  25579. name: "Back",
  25580. image: {
  25581. source: "./media/characters/epona/back.svg",
  25582. extra: 2546 / 2408,
  25583. bottom: 44 / 2589
  25584. }
  25585. },
  25586. genitals: {
  25587. height: math.unit(1.5, "feet"),
  25588. name: "Genitals",
  25589. image: {
  25590. source: "./media/characters/epona/genitals.svg"
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Normal",
  25597. height: math.unit(7 + 7 / 12, "feet")
  25598. },
  25599. ]
  25600. ))
  25601. characterMakers.push(() => makeCharacter(
  25602. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25603. {
  25604. front: {
  25605. height: math.unit(7, "feet"),
  25606. weight: math.unit(518, "lb"),
  25607. name: "Front",
  25608. image: {
  25609. source: "./media/characters/avia-bloodbourn/front.svg",
  25610. extra: 1466 / 1350,
  25611. bottom: 65 / 1527
  25612. }
  25613. },
  25614. },
  25615. [
  25616. ]
  25617. ))
  25618. characterMakers.push(() => makeCharacter(
  25619. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25620. {
  25621. front: {
  25622. height: math.unit(9.35, "feet"),
  25623. weight: math.unit(600, "lb"),
  25624. name: "Front",
  25625. image: {
  25626. source: "./media/characters/amera/front.svg",
  25627. extra: 891 / 818,
  25628. bottom: 30 / 922.7
  25629. }
  25630. },
  25631. back: {
  25632. height: math.unit(9.35, "feet"),
  25633. weight: math.unit(600, "lb"),
  25634. name: "Back",
  25635. image: {
  25636. source: "./media/characters/amera/back.svg",
  25637. extra: 876 / 824,
  25638. bottom: 6.8 / 884
  25639. }
  25640. },
  25641. dick: {
  25642. height: math.unit(2.14, "feet"),
  25643. name: "Dick",
  25644. image: {
  25645. source: "./media/characters/amera/dick.svg"
  25646. }
  25647. },
  25648. },
  25649. [
  25650. {
  25651. name: "Normal",
  25652. height: math.unit(9.35, "feet"),
  25653. default: true
  25654. },
  25655. ]
  25656. ))
  25657. characterMakers.push(() => makeCharacter(
  25658. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25659. {
  25660. kneeling: {
  25661. height: math.unit(3 + 4 / 12, "feet"),
  25662. weight: math.unit(90, "lb"),
  25663. name: "Kneeling",
  25664. image: {
  25665. source: "./media/characters/rosewen/kneeling.svg",
  25666. extra: 1835 / 1571,
  25667. bottom: 27.7 / 1862
  25668. }
  25669. },
  25670. },
  25671. [
  25672. {
  25673. name: "Normal",
  25674. height: math.unit(3 + 4 / 12, "feet"),
  25675. default: true
  25676. },
  25677. ]
  25678. ))
  25679. characterMakers.push(() => makeCharacter(
  25680. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25681. {
  25682. front: {
  25683. height: math.unit(5 + 10 / 12, "feet"),
  25684. weight: math.unit(200, "lb"),
  25685. name: "Front",
  25686. image: {
  25687. source: "./media/characters/sabah/front.svg",
  25688. extra: 849 / 763,
  25689. bottom: 33.9 / 881
  25690. }
  25691. },
  25692. },
  25693. [
  25694. {
  25695. name: "Normal",
  25696. height: math.unit(5 + 10 / 12, "feet"),
  25697. default: true
  25698. },
  25699. ]
  25700. ))
  25701. characterMakers.push(() => makeCharacter(
  25702. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25703. {
  25704. front: {
  25705. height: math.unit(3 + 5 / 12, "feet"),
  25706. weight: math.unit(40, "kg"),
  25707. name: "Front",
  25708. image: {
  25709. source: "./media/characters/purple-flame/front.svg",
  25710. extra: 1577 / 1412,
  25711. bottom: 97 / 1694
  25712. }
  25713. },
  25714. frontDressed: {
  25715. height: math.unit(3 + 5 / 12, "feet"),
  25716. weight: math.unit(40, "kg"),
  25717. name: "Front (Dressed)",
  25718. image: {
  25719. source: "./media/characters/purple-flame/front-dressed.svg",
  25720. extra: 1577 / 1412,
  25721. bottom: 97 / 1694
  25722. }
  25723. },
  25724. headphones: {
  25725. height: math.unit(0.85, "feet"),
  25726. name: "Headphones",
  25727. image: {
  25728. source: "./media/characters/purple-flame/headphones.svg"
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Really Small",
  25735. height: math.unit(5, "cm")
  25736. },
  25737. {
  25738. name: "Micro",
  25739. height: math.unit(1 + 5 / 12, "feet")
  25740. },
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(3 + 5 / 12, "feet"),
  25744. default: true
  25745. },
  25746. {
  25747. name: "Minimacro",
  25748. height: math.unit(125, "feet")
  25749. },
  25750. {
  25751. name: "Macro",
  25752. height: math.unit(0.5, "miles")
  25753. },
  25754. {
  25755. name: "Megamacro",
  25756. height: math.unit(50, "miles")
  25757. },
  25758. {
  25759. name: "Gigantic",
  25760. height: math.unit(750, "miles")
  25761. },
  25762. {
  25763. name: "Planetary",
  25764. height: math.unit(15000, "miles")
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(14, "feet"),
  25773. weight: math.unit(959, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/arsenal/front.svg",
  25777. extra: 2357 / 2157,
  25778. bottom: 93 / 2458
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Normal",
  25785. height: math.unit(14, "feet"),
  25786. default: true
  25787. },
  25788. ]
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25792. {
  25793. front: {
  25794. height: math.unit(6, "feet"),
  25795. weight: math.unit(150, "lb"),
  25796. name: "Front",
  25797. image: {
  25798. source: "./media/characters/adira/front.svg",
  25799. extra: 1078 / 1029,
  25800. bottom: 87 / 1166
  25801. }
  25802. },
  25803. },
  25804. [
  25805. {
  25806. name: "Micro",
  25807. height: math.unit(4, "inches"),
  25808. default: true
  25809. },
  25810. {
  25811. name: "Macro",
  25812. height: math.unit(50, "feet")
  25813. },
  25814. ]
  25815. ))
  25816. characterMakers.push(() => makeCharacter(
  25817. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25818. {
  25819. front: {
  25820. height: math.unit(16, "feet"),
  25821. weight: math.unit(1000, "lb"),
  25822. name: "Front",
  25823. image: {
  25824. source: "./media/characters/grim/front.svg",
  25825. extra: 622 / 614,
  25826. bottom: 18.1 / 642
  25827. }
  25828. },
  25829. back: {
  25830. height: math.unit(16, "feet"),
  25831. weight: math.unit(1000, "lb"),
  25832. name: "Back",
  25833. image: {
  25834. source: "./media/characters/grim/back.svg",
  25835. extra: 610.6 / 602,
  25836. bottom: 40.8 / 652
  25837. }
  25838. },
  25839. hunched: {
  25840. height: math.unit(9.75, "feet"),
  25841. weight: math.unit(1000, "lb"),
  25842. name: "Hunched",
  25843. image: {
  25844. source: "./media/characters/grim/hunched.svg",
  25845. extra: 304 / 297,
  25846. bottom: 35.4 / 394
  25847. }
  25848. },
  25849. },
  25850. [
  25851. {
  25852. name: "Normal",
  25853. height: math.unit(16, "feet"),
  25854. default: true
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25860. {
  25861. front: {
  25862. height: math.unit(2.3, "meters"),
  25863. weight: math.unit(300, "lb"),
  25864. name: "Front",
  25865. image: {
  25866. source: "./media/characters/sinja/front-sfw.svg",
  25867. extra: 1393 / 1294,
  25868. bottom: 70 / 1463
  25869. }
  25870. },
  25871. frontNsfw: {
  25872. height: math.unit(2.3, "meters"),
  25873. weight: math.unit(300, "lb"),
  25874. name: "Front (NSFW)",
  25875. image: {
  25876. source: "./media/characters/sinja/front-nsfw.svg",
  25877. extra: 1393 / 1294,
  25878. bottom: 70 / 1463
  25879. }
  25880. },
  25881. back: {
  25882. height: math.unit(2.3, "meters"),
  25883. weight: math.unit(300, "lb"),
  25884. name: "Back",
  25885. image: {
  25886. source: "./media/characters/sinja/back.svg",
  25887. extra: 1393 / 1294,
  25888. bottom: 70 / 1463
  25889. }
  25890. },
  25891. head: {
  25892. height: math.unit(1.771, "feet"),
  25893. name: "Head",
  25894. image: {
  25895. source: "./media/characters/sinja/head.svg"
  25896. }
  25897. },
  25898. slit: {
  25899. height: math.unit(0.8, "feet"),
  25900. name: "Slit",
  25901. image: {
  25902. source: "./media/characters/sinja/slit.svg"
  25903. }
  25904. },
  25905. },
  25906. [
  25907. {
  25908. name: "Normal",
  25909. height: math.unit(2.3, "meters")
  25910. },
  25911. {
  25912. name: "Macro",
  25913. height: math.unit(91, "meters"),
  25914. default: true
  25915. },
  25916. {
  25917. name: "Megamacro",
  25918. height: math.unit(91440, "meters")
  25919. },
  25920. {
  25921. name: "Gigamacro",
  25922. height: math.unit(60960000, "meters")
  25923. },
  25924. {
  25925. name: "Teramacro",
  25926. height: math.unit(9144000000, "meters")
  25927. },
  25928. ]
  25929. ))
  25930. characterMakers.push(() => makeCharacter(
  25931. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25932. {
  25933. front: {
  25934. height: math.unit(1.7, "meters"),
  25935. weight: math.unit(130, "lb"),
  25936. name: "Front",
  25937. image: {
  25938. source: "./media/characters/kyu/front.svg",
  25939. extra: 415 / 395,
  25940. bottom: 5 / 420
  25941. }
  25942. },
  25943. head: {
  25944. height: math.unit(1.75, "feet"),
  25945. name: "Head",
  25946. image: {
  25947. source: "./media/characters/kyu/head.svg"
  25948. }
  25949. },
  25950. foot: {
  25951. height: math.unit(0.81, "feet"),
  25952. name: "Foot",
  25953. image: {
  25954. source: "./media/characters/kyu/foot.svg"
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Normal",
  25961. height: math.unit(1.7, "meters")
  25962. },
  25963. {
  25964. name: "Macro",
  25965. height: math.unit(131, "feet"),
  25966. default: true
  25967. },
  25968. {
  25969. name: "Megamacro",
  25970. height: math.unit(91440, "meters")
  25971. },
  25972. {
  25973. name: "Gigamacro",
  25974. height: math.unit(60960000, "meters")
  25975. },
  25976. {
  25977. name: "Teramacro",
  25978. height: math.unit(9144000000, "meters")
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(7 + 1 / 12, "feet"),
  25987. weight: math.unit(250, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/joey/front.svg",
  25991. extra: 1791 / 1537,
  25992. bottom: 28 / 1816
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Micro",
  25999. height: math.unit(3, "inches")
  26000. },
  26001. {
  26002. name: "Normal",
  26003. height: math.unit(7 + 1 / 12, "feet"),
  26004. default: true
  26005. },
  26006. ]
  26007. ))
  26008. characterMakers.push(() => makeCharacter(
  26009. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26010. {
  26011. front: {
  26012. height: math.unit(165, "cm"),
  26013. weight: math.unit(140, "lb"),
  26014. name: "Front",
  26015. image: {
  26016. source: "./media/characters/sam-evans/front.svg",
  26017. extra: 3417 / 3230,
  26018. bottom: 41.3 / 3417
  26019. }
  26020. },
  26021. frontSixTails: {
  26022. height: math.unit(165, "cm"),
  26023. weight: math.unit(140, "lb"),
  26024. name: "Front-six-tails",
  26025. image: {
  26026. source: "./media/characters/sam-evans/front-six-tails.svg",
  26027. extra: 3417 / 3230,
  26028. bottom: 41.3 / 3417
  26029. }
  26030. },
  26031. back: {
  26032. height: math.unit(165, "cm"),
  26033. weight: math.unit(140, "lb"),
  26034. name: "Back",
  26035. image: {
  26036. source: "./media/characters/sam-evans/back.svg",
  26037. extra: 3227 / 3032,
  26038. bottom: 6.8 / 3234
  26039. }
  26040. },
  26041. face: {
  26042. height: math.unit(0.68, "feet"),
  26043. name: "Face",
  26044. image: {
  26045. source: "./media/characters/sam-evans/face.svg"
  26046. }
  26047. },
  26048. },
  26049. [
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(165, "cm"),
  26053. default: true
  26054. },
  26055. {
  26056. name: "Macro",
  26057. height: math.unit(100, "meters")
  26058. },
  26059. {
  26060. name: "Macro+",
  26061. height: math.unit(800, "meters")
  26062. },
  26063. {
  26064. name: "Macro++",
  26065. height: math.unit(3, "km")
  26066. },
  26067. {
  26068. name: "Macro+++",
  26069. height: math.unit(30, "km")
  26070. },
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26075. {
  26076. front: {
  26077. height: math.unit(10, "feet"),
  26078. weight: math.unit(750, "lb"),
  26079. name: "Front",
  26080. image: {
  26081. source: "./media/characters/juliet-a/front.svg",
  26082. extra: 1766 / 1720,
  26083. bottom: 43 / 1809
  26084. }
  26085. },
  26086. back: {
  26087. height: math.unit(10, "feet"),
  26088. weight: math.unit(750, "lb"),
  26089. name: "Back",
  26090. image: {
  26091. source: "./media/characters/juliet-a/back.svg",
  26092. extra: 1781 / 1734,
  26093. bottom: 35 / 1810,
  26094. }
  26095. },
  26096. },
  26097. [
  26098. {
  26099. name: "Normal",
  26100. height: math.unit(10, "feet"),
  26101. default: true
  26102. },
  26103. {
  26104. name: "Dragon Form",
  26105. height: math.unit(250, "feet")
  26106. },
  26107. {
  26108. name: "Macro",
  26109. height: math.unit(1000, "feet")
  26110. },
  26111. {
  26112. name: "Megamacro",
  26113. height: math.unit(10000, "feet")
  26114. }
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26119. {
  26120. regular: {
  26121. height: math.unit(7 + 3 / 12, "feet"),
  26122. weight: math.unit(260, "lb"),
  26123. name: "Regular",
  26124. image: {
  26125. source: "./media/characters/wild/regular.svg",
  26126. extra: 97.45 / 92,
  26127. bottom: 6.8 / 104.3
  26128. }
  26129. },
  26130. biggums: {
  26131. height: math.unit(8 + 6 / 12, "feet"),
  26132. weight: math.unit(425, "lb"),
  26133. name: "Biggums",
  26134. image: {
  26135. source: "./media/characters/wild/biggums.svg",
  26136. extra: 97.45 / 92,
  26137. bottom: 7.5 / 132.34
  26138. }
  26139. },
  26140. mawRegular: {
  26141. height: math.unit(1.24, "feet"),
  26142. name: "Maw (Regular)",
  26143. image: {
  26144. source: "./media/characters/wild/maw.svg"
  26145. }
  26146. },
  26147. mawBiggums: {
  26148. height: math.unit(1.47, "feet"),
  26149. name: "Maw (Biggums)",
  26150. image: {
  26151. source: "./media/characters/wild/maw.svg"
  26152. }
  26153. },
  26154. },
  26155. [
  26156. {
  26157. name: "Normal",
  26158. height: math.unit(7 + 3 / 12, "feet"),
  26159. default: true
  26160. },
  26161. ]
  26162. ))
  26163. characterMakers.push(() => makeCharacter(
  26164. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26165. {
  26166. front: {
  26167. height: math.unit(2.5, "meters"),
  26168. weight: math.unit(200, "kg"),
  26169. name: "Front",
  26170. image: {
  26171. source: "./media/characters/vidar/front.svg",
  26172. extra: 2994 / 2795,
  26173. bottom: 56 / 3061
  26174. }
  26175. },
  26176. back: {
  26177. height: math.unit(2.5, "meters"),
  26178. weight: math.unit(200, "kg"),
  26179. name: "Back",
  26180. image: {
  26181. source: "./media/characters/vidar/back.svg",
  26182. extra: 3131 / 2928,
  26183. bottom: 13.5 / 3141.5
  26184. }
  26185. },
  26186. feral: {
  26187. height: math.unit(2.5, "meters"),
  26188. weight: math.unit(2000, "kg"),
  26189. name: "Feral",
  26190. image: {
  26191. source: "./media/characters/vidar/feral.svg",
  26192. extra: 2790 / 1765,
  26193. bottom: 6 / 2796
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Normal",
  26200. height: math.unit(2.5, "meters"),
  26201. default: true
  26202. },
  26203. {
  26204. name: "Macro",
  26205. height: math.unit(100, "meters")
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26211. {
  26212. front: {
  26213. height: math.unit(5 + 9 / 12, "feet"),
  26214. weight: math.unit(120, "lb"),
  26215. name: "Front",
  26216. image: {
  26217. source: "./media/characters/ash/front.svg",
  26218. extra: 2189 / 1961,
  26219. bottom: 5.2 / 2194
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Normal",
  26226. height: math.unit(5 + 9 / 12, "feet"),
  26227. default: true
  26228. },
  26229. ]
  26230. ))
  26231. characterMakers.push(() => makeCharacter(
  26232. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26233. {
  26234. front: {
  26235. height: math.unit(9, "feet"),
  26236. weight: math.unit(10000, "lb"),
  26237. name: "Front",
  26238. image: {
  26239. source: "./media/characters/gygabite/front.svg",
  26240. bottom: 31.7 / 537.8,
  26241. extra: 505 / 370
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Normal",
  26248. height: math.unit(9, "feet"),
  26249. default: true
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26255. {
  26256. front: {
  26257. height: math.unit(12, "feet"),
  26258. weight: math.unit(35000, "lb"),
  26259. name: "Front",
  26260. image: {
  26261. source: "./media/characters/p0tat0/front.svg",
  26262. extra: 1065 / 921,
  26263. bottom: 55.7 / 1121.25
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(12, "feet"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26277. {
  26278. side: {
  26279. height: math.unit(6.5, "feet"),
  26280. weight: math.unit(800, "lb"),
  26281. name: "Side",
  26282. image: {
  26283. source: "./media/characters/dusk/side.svg",
  26284. extra: 615 / 373,
  26285. bottom: 53 / 664
  26286. }
  26287. },
  26288. sitting: {
  26289. height: math.unit(7, "feet"),
  26290. weight: math.unit(800, "lb"),
  26291. name: "Sitting",
  26292. image: {
  26293. source: "./media/characters/dusk/sitting.svg",
  26294. extra: 753 / 425,
  26295. bottom: 33 / 774
  26296. }
  26297. },
  26298. head: {
  26299. height: math.unit(6.1, "feet"),
  26300. name: "Head",
  26301. image: {
  26302. source: "./media/characters/dusk/head.svg"
  26303. }
  26304. },
  26305. },
  26306. [
  26307. {
  26308. name: "Normal",
  26309. height: math.unit(7, "feet"),
  26310. default: true
  26311. },
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26316. {
  26317. front: {
  26318. height: math.unit(15, "feet"),
  26319. weight: math.unit(7000, "lb"),
  26320. name: "Front",
  26321. image: {
  26322. source: "./media/characters/jay-direwolf/front.svg",
  26323. extra: 1810 / 1732,
  26324. bottom: 66 / 1892
  26325. }
  26326. },
  26327. },
  26328. [
  26329. {
  26330. name: "Normal",
  26331. height: math.unit(15, "feet"),
  26332. default: true
  26333. },
  26334. ]
  26335. ))
  26336. characterMakers.push(() => makeCharacter(
  26337. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26338. {
  26339. front: {
  26340. height: math.unit(4 + 9 / 12, "feet"),
  26341. weight: math.unit(130, "lb"),
  26342. name: "Front",
  26343. image: {
  26344. source: "./media/characters/anchovie/front.svg",
  26345. extra: 382 / 350,
  26346. bottom: 25 / 409
  26347. }
  26348. },
  26349. back: {
  26350. height: math.unit(4 + 9 / 12, "feet"),
  26351. weight: math.unit(130, "lb"),
  26352. name: "Back",
  26353. image: {
  26354. source: "./media/characters/anchovie/back.svg",
  26355. extra: 385 / 352,
  26356. bottom: 16.6 / 402
  26357. }
  26358. },
  26359. frontDressed: {
  26360. height: math.unit(4 + 9 / 12, "feet"),
  26361. weight: math.unit(130, "lb"),
  26362. name: "Front (Dressed)",
  26363. image: {
  26364. source: "./media/characters/anchovie/front-dressed.svg",
  26365. extra: 382 / 350,
  26366. bottom: 25 / 409
  26367. }
  26368. },
  26369. backDressed: {
  26370. height: math.unit(4 + 9 / 12, "feet"),
  26371. weight: math.unit(130, "lb"),
  26372. name: "Back (Dressed)",
  26373. image: {
  26374. source: "./media/characters/anchovie/back-dressed.svg",
  26375. extra: 385 / 352,
  26376. bottom: 16.6 / 402
  26377. }
  26378. },
  26379. },
  26380. [
  26381. {
  26382. name: "Micro",
  26383. height: math.unit(6.4, "inches")
  26384. },
  26385. {
  26386. name: "Normal",
  26387. height: math.unit(4 + 9 / 12, "feet"),
  26388. default: true
  26389. },
  26390. ]
  26391. ))
  26392. characterMakers.push(() => makeCharacter(
  26393. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26394. {
  26395. front: {
  26396. height: math.unit(2, "meters"),
  26397. weight: math.unit(180, "lb"),
  26398. name: "Front",
  26399. image: {
  26400. source: "./media/characters/acidrenamon/front.svg",
  26401. extra: 987 / 890,
  26402. bottom: 22.8 / 1009
  26403. }
  26404. },
  26405. back: {
  26406. height: math.unit(2, "meters"),
  26407. weight: math.unit(180, "lb"),
  26408. name: "Back",
  26409. image: {
  26410. source: "./media/characters/acidrenamon/back.svg",
  26411. extra: 983 / 891,
  26412. bottom: 8.4 / 992
  26413. }
  26414. },
  26415. head: {
  26416. height: math.unit(1.92, "feet"),
  26417. name: "Head",
  26418. image: {
  26419. source: "./media/characters/acidrenamon/head.svg"
  26420. }
  26421. },
  26422. rump: {
  26423. height: math.unit(1.72, "feet"),
  26424. name: "Rump",
  26425. image: {
  26426. source: "./media/characters/acidrenamon/rump.svg"
  26427. }
  26428. },
  26429. tail: {
  26430. height: math.unit(4.2, "feet"),
  26431. name: "Tail",
  26432. image: {
  26433. source: "./media/characters/acidrenamon/tail.svg"
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(2, "meters"),
  26441. default: true
  26442. },
  26443. {
  26444. name: "Minimacro",
  26445. height: math.unit(7, "meters")
  26446. },
  26447. {
  26448. name: "Macro",
  26449. height: math.unit(200, "meters")
  26450. },
  26451. {
  26452. name: "Gigamacro",
  26453. height: math.unit(0.2, "earths")
  26454. },
  26455. ]
  26456. ))
  26457. characterMakers.push(() => makeCharacter(
  26458. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26459. {
  26460. front: {
  26461. height: math.unit(6, "feet"),
  26462. weight: math.unit(150, "lb"),
  26463. name: "Front",
  26464. image: {
  26465. source: "./media/characters/kenzie-lee/front.svg",
  26466. extra: 1525 / 1465,
  26467. bottom: 45 / 1570
  26468. }
  26469. },
  26470. side: {
  26471. height: math.unit(6, "feet"),
  26472. weight: math.unit(150, "lb"),
  26473. name: "Side",
  26474. image: {
  26475. source: "./media/characters/kenzie-lee/side.svg",
  26476. extra: 5505 / 5383,
  26477. bottom: 60 / 5573
  26478. }
  26479. },
  26480. },
  26481. [
  26482. {
  26483. name: "Normal",
  26484. height: math.unit(152, "feet"),
  26485. default: true
  26486. },
  26487. {
  26488. name: "Megamacro",
  26489. height: math.unit(7, "miles")
  26490. },
  26491. {
  26492. name: "Gigamacro",
  26493. height: math.unit(8000, "miles")
  26494. },
  26495. ]
  26496. ))
  26497. characterMakers.push(() => makeCharacter(
  26498. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26499. {
  26500. side: {
  26501. height: math.unit(6, "feet"),
  26502. weight: math.unit(150, "lb"),
  26503. name: "Side",
  26504. image: {
  26505. source: "./media/characters/withers/side.svg",
  26506. extra: 1830 / 1728,
  26507. bottom: 96 / 1927
  26508. }
  26509. },
  26510. front: {
  26511. height: math.unit(6, "feet"),
  26512. weight: math.unit(150, "lb"),
  26513. name: "Front",
  26514. image: {
  26515. source: "./media/characters/withers/front.svg",
  26516. extra: 1514 / 1438,
  26517. bottom: 118 / 1632
  26518. }
  26519. },
  26520. },
  26521. [
  26522. {
  26523. name: "Normal",
  26524. height: math.unit(6, "feet")
  26525. },
  26526. {
  26527. name: "Macro",
  26528. height: math.unit(50, "feet")
  26529. },
  26530. {
  26531. name: "Megamacro",
  26532. height: math.unit(15, "miles"),
  26533. default: true
  26534. },
  26535. {
  26536. name: "Megamacro+",
  26537. height: math.unit(100, "km")
  26538. },
  26539. {
  26540. name: "Gigamacro",
  26541. height: math.unit(4750, "miles")
  26542. },
  26543. {
  26544. name: "Gigamacro+",
  26545. height: math.unit(32000, "miles")
  26546. },
  26547. ]
  26548. ))
  26549. characterMakers.push(() => makeCharacter(
  26550. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26551. {
  26552. front: {
  26553. height: math.unit(6 + 7 / 12, "feet"),
  26554. weight: math.unit(250, "lb"),
  26555. name: "Front",
  26556. image: {
  26557. source: "./media/characters/nemoskii/front.svg",
  26558. extra: 2270 / 1734,
  26559. bottom: 86 / 2354
  26560. }
  26561. },
  26562. back: {
  26563. height: math.unit(6 + 7 / 12, "feet"),
  26564. weight: math.unit(250, "lb"),
  26565. name: "Back",
  26566. image: {
  26567. source: "./media/characters/nemoskii/back.svg",
  26568. extra: 1845 / 1788,
  26569. bottom: 10.5 / 1852
  26570. }
  26571. },
  26572. head: {
  26573. height: math.unit(1.31, "feet"),
  26574. name: "Head",
  26575. image: {
  26576. source: "./media/characters/nemoskii/head.svg"
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Normal",
  26583. height: math.unit(6 + 7 / 12, "feet"),
  26584. default: true
  26585. },
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26590. {
  26591. front: {
  26592. height: math.unit(1, "mile"),
  26593. weight: math.unit(265261.9, "lb"),
  26594. name: "Front",
  26595. image: {
  26596. source: "./media/characters/shui/front.svg",
  26597. extra: 1633 / 1564,
  26598. bottom: 91.5 / 1726
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Macro",
  26605. height: math.unit(1, "mile"),
  26606. default: true
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26612. {
  26613. front: {
  26614. height: math.unit(12 + 6 / 12, "feet"),
  26615. weight: math.unit(1342, "lb"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/arokh-takakura/front.svg",
  26619. extra: 1089 / 1043,
  26620. bottom: 77.4 / 1176.7
  26621. }
  26622. },
  26623. back: {
  26624. height: math.unit(12 + 6 / 12, "feet"),
  26625. weight: math.unit(1342, "lb"),
  26626. name: "Back",
  26627. image: {
  26628. source: "./media/characters/arokh-takakura/back.svg",
  26629. extra: 1046 / 1019,
  26630. bottom: 102 / 1150
  26631. }
  26632. },
  26633. },
  26634. [
  26635. {
  26636. name: "Big",
  26637. height: math.unit(12 + 6 / 12, "feet"),
  26638. default: true
  26639. },
  26640. ]
  26641. ))
  26642. characterMakers.push(() => makeCharacter(
  26643. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26644. {
  26645. front: {
  26646. height: math.unit(5 + 6 / 12, "feet"),
  26647. weight: math.unit(150, "lb"),
  26648. name: "Front",
  26649. image: {
  26650. source: "./media/characters/theo/front.svg",
  26651. extra: 1184 / 1131,
  26652. bottom: 7.4 / 1191
  26653. }
  26654. },
  26655. },
  26656. [
  26657. {
  26658. name: "Micro",
  26659. height: math.unit(5, "inches")
  26660. },
  26661. {
  26662. name: "Normal",
  26663. height: math.unit(5 + 6 / 12, "feet"),
  26664. default: true
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(5 + 9 / 12, "feet"),
  26673. weight: math.unit(130, "lb"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/cecelia-swift/front.svg",
  26677. extra: 502 / 484,
  26678. bottom: 23 / 523
  26679. }
  26680. },
  26681. back: {
  26682. height: math.unit(5 + 9 / 12, "feet"),
  26683. weight: math.unit(130, "lb"),
  26684. name: "Back",
  26685. image: {
  26686. source: "./media/characters/cecelia-swift/back.svg",
  26687. extra: 499 / 485,
  26688. bottom: 12 / 511
  26689. }
  26690. },
  26691. head: {
  26692. height: math.unit(0.90, "feet"),
  26693. name: "Head",
  26694. image: {
  26695. source: "./media/characters/cecelia-swift/head.svg"
  26696. }
  26697. },
  26698. rump: {
  26699. height: math.unit(1.75, "feet"),
  26700. name: "Rump",
  26701. image: {
  26702. source: "./media/characters/cecelia-swift/rump.svg"
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Normal",
  26709. height: math.unit(5 + 9 / 12, "feet"),
  26710. default: true
  26711. },
  26712. {
  26713. name: "Big",
  26714. height: math.unit(50, "feet")
  26715. },
  26716. {
  26717. name: "Macro",
  26718. height: math.unit(100, "feet")
  26719. },
  26720. {
  26721. name: "Macro+",
  26722. height: math.unit(500, "feet")
  26723. },
  26724. {
  26725. name: "Macro++",
  26726. height: math.unit(1000, "feet")
  26727. },
  26728. ]
  26729. ))
  26730. characterMakers.push(() => makeCharacter(
  26731. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26732. {
  26733. front: {
  26734. height: math.unit(6, "feet"),
  26735. weight: math.unit(150, "lb"),
  26736. name: "Front",
  26737. image: {
  26738. source: "./media/characters/kaunan/front.svg",
  26739. extra: 2890 / 2523,
  26740. bottom: 49 / 2939
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Macro",
  26747. height: math.unit(150, "feet"),
  26748. default: true
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26754. {
  26755. front: {
  26756. height: math.unit(175, "cm"),
  26757. weight: math.unit(60, "kg"),
  26758. name: "Front",
  26759. image: {
  26760. source: "./media/characters/fei/front.svg",
  26761. extra: 2581 / 2400,
  26762. bottom: 82.2 / 2663
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Mortal",
  26769. height: math.unit(175, "cm")
  26770. },
  26771. {
  26772. name: "Normal",
  26773. height: math.unit(3500, "m"),
  26774. default: true
  26775. },
  26776. {
  26777. name: "Stroll",
  26778. height: math.unit(17.5, "km")
  26779. },
  26780. {
  26781. name: "Showoff",
  26782. height: math.unit(175, "km")
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26788. {
  26789. front: {
  26790. height: math.unit(7, "feet"),
  26791. weight: math.unit(1000, "kg"),
  26792. name: "Front",
  26793. image: {
  26794. source: "./media/characters/edrax/front.svg",
  26795. extra: 2838 / 2550,
  26796. bottom: 130 / 2968
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Small",
  26803. height: math.unit(7, "feet")
  26804. },
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(1500, "meters")
  26808. },
  26809. {
  26810. name: "Mega",
  26811. height: math.unit(12000000, "km"),
  26812. default: true
  26813. },
  26814. {
  26815. name: "Megamacro",
  26816. height: math.unit(10600000, "lightyears")
  26817. },
  26818. {
  26819. name: "Hypermacro",
  26820. height: math.unit(256, "yottameters")
  26821. },
  26822. ]
  26823. ))
  26824. characterMakers.push(() => makeCharacter(
  26825. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26826. {
  26827. front: {
  26828. height: math.unit(10, "feet"),
  26829. weight: math.unit(750, "lb"),
  26830. name: "Front",
  26831. image: {
  26832. source: "./media/characters/clove/front.svg",
  26833. extra: 2031 / 1860,
  26834. bottom: 47.8 / 2080
  26835. }
  26836. },
  26837. back: {
  26838. height: math.unit(10, "feet"),
  26839. weight: math.unit(750, "lb"),
  26840. name: "Back",
  26841. image: {
  26842. source: "./media/characters/clove/back.svg",
  26843. extra: 2025 / 1859,
  26844. bottom: 46 / 2071
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Normal",
  26851. height: math.unit(10, "feet")
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(4, "feet"),
  26860. weight: math.unit(50, "lb"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/alex-rabbit/front.svg",
  26864. extra: 507 / 458,
  26865. bottom: 18.5 / 527
  26866. }
  26867. },
  26868. back: {
  26869. height: math.unit(4, "feet"),
  26870. weight: math.unit(50, "lb"),
  26871. name: "Back",
  26872. image: {
  26873. source: "./media/characters/alex-rabbit/back.svg",
  26874. extra: 502 / 460,
  26875. bottom: 18.9 / 521
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(4, "feet"),
  26883. default: true
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26889. {
  26890. front: {
  26891. height: math.unit(1 + 3 / 12, "feet"),
  26892. weight: math.unit(80, "lb"),
  26893. name: "Front",
  26894. image: {
  26895. source: "./media/characters/zander-rose/front.svg",
  26896. extra: 916 / 797,
  26897. bottom: 17 / 933
  26898. }
  26899. },
  26900. back: {
  26901. height: math.unit(1 + 3 / 12, "feet"),
  26902. weight: math.unit(80, "lb"),
  26903. name: "Back",
  26904. image: {
  26905. source: "./media/characters/zander-rose/back.svg",
  26906. extra: 903 / 779,
  26907. bottom: 31 / 934
  26908. }
  26909. },
  26910. },
  26911. [
  26912. {
  26913. name: "Normal",
  26914. height: math.unit(1 + 3 / 12, "feet"),
  26915. default: true
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26921. {
  26922. anthro: {
  26923. height: math.unit(6, "feet"),
  26924. weight: math.unit(150, "lb"),
  26925. name: "Anthro",
  26926. image: {
  26927. source: "./media/characters/razz/anthro.svg",
  26928. extra: 1437 / 1343,
  26929. bottom: 48 / 1485
  26930. }
  26931. },
  26932. feral: {
  26933. height: math.unit(6, "feet"),
  26934. weight: math.unit(150, "lb"),
  26935. name: "Feral",
  26936. image: {
  26937. source: "./media/characters/razz/feral.svg",
  26938. extra: 2569 / 1385,
  26939. bottom: 95 / 2664
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(6, "feet"),
  26947. default: true
  26948. },
  26949. ]
  26950. ))
  26951. characterMakers.push(() => makeCharacter(
  26952. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26953. {
  26954. front: {
  26955. height: math.unit(9 + 4 / 12, "feet"),
  26956. weight: math.unit(500, "lb"),
  26957. name: "Front",
  26958. image: {
  26959. source: "./media/characters/morrigan/front.svg",
  26960. extra: 2707 / 2579,
  26961. bottom: 156 / 2863
  26962. }
  26963. },
  26964. },
  26965. [
  26966. {
  26967. name: "Normal",
  26968. height: math.unit(9 + 4 / 12, "feet"),
  26969. default: true
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26975. {
  26976. front: {
  26977. height: math.unit(5, "stories"),
  26978. weight: math.unit(4000, "lb"),
  26979. name: "Front",
  26980. image: {
  26981. source: "./media/characters/jenene/front.svg",
  26982. extra: 1780 / 1710,
  26983. bottom: 57 / 1837
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "Normal",
  26990. height: math.unit(5, "stories"),
  26991. default: true
  26992. },
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26997. {
  26998. front: {
  26999. height: math.unit(6, "feet"),
  27000. weight: math.unit(150, "lb"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/vix-archaser/front.svg",
  27004. extra: 2767 / 2562,
  27005. bottom: 36 / 2803
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Micro",
  27012. height: math.unit(1, "foot")
  27013. },
  27014. {
  27015. name: "Normal",
  27016. height: math.unit(6 + 5 / 12, "feet")
  27017. },
  27018. {
  27019. name: "Minimacro",
  27020. height: math.unit(500, "feet")
  27021. },
  27022. {
  27023. name: "Macro",
  27024. height: math.unit(4, "miles")
  27025. },
  27026. {
  27027. name: "Megamacro",
  27028. height: math.unit(250, "miles"),
  27029. default: true
  27030. },
  27031. {
  27032. name: "Gigamacro",
  27033. height: math.unit(1, "universe")
  27034. },
  27035. {
  27036. name: "Endgame",
  27037. height: math.unit(100, "multiverses")
  27038. }
  27039. ]
  27040. ))
  27041. characterMakers.push(() => makeCharacter(
  27042. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27043. {
  27044. taurSfw: {
  27045. height: math.unit(10, "meters"),
  27046. weight: math.unit(17500, "kg"),
  27047. name: "Taur",
  27048. image: {
  27049. source: "./media/characters/faey/taur-sfw.svg",
  27050. extra: 1200 / 968,
  27051. bottom: 41 / 1241
  27052. }
  27053. },
  27054. chestmaw: {
  27055. height: math.unit(2.01, "meters"),
  27056. name: "Chestmaw",
  27057. image: {
  27058. source: "./media/characters/faey/chestmaw.svg"
  27059. }
  27060. },
  27061. foot: {
  27062. height: math.unit(2.43, "meters"),
  27063. name: "Foot",
  27064. image: {
  27065. source: "./media/characters/faey/foot.svg"
  27066. }
  27067. },
  27068. jaws: {
  27069. height: math.unit(1.66, "meters"),
  27070. name: "Jaws",
  27071. image: {
  27072. source: "./media/characters/faey/jaws.svg"
  27073. }
  27074. },
  27075. tongues: {
  27076. height: math.unit(2.01, "meters"),
  27077. name: "Tongues",
  27078. image: {
  27079. source: "./media/characters/faey/tongues.svg"
  27080. }
  27081. },
  27082. },
  27083. [
  27084. {
  27085. name: "Small",
  27086. height: math.unit(10, "meters"),
  27087. default: true
  27088. },
  27089. {
  27090. name: "Big",
  27091. height: math.unit(500000, "km")
  27092. },
  27093. ]
  27094. ))
  27095. characterMakers.push(() => makeCharacter(
  27096. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27097. {
  27098. front: {
  27099. height: math.unit(7, "feet"),
  27100. weight: math.unit(275, "lb"),
  27101. name: "Front",
  27102. image: {
  27103. source: "./media/characters/roku/front.svg",
  27104. extra: 903 / 878,
  27105. bottom: 37 / 940
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Normal",
  27112. height: math.unit(7, "feet"),
  27113. default: true
  27114. },
  27115. {
  27116. name: "Macro",
  27117. height: math.unit(500, "feet")
  27118. },
  27119. {
  27120. name: "Megamacro",
  27121. height: math.unit(200, "miles")
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(6 + 2 / 12, "feet"),
  27130. weight: math.unit(150, "lb"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/lira/front.svg",
  27134. extra: 1727 / 1605,
  27135. bottom: 26 / 1753
  27136. }
  27137. },
  27138. back: {
  27139. height: math.unit(6 + 2 / 12, "feet"),
  27140. weight: math.unit(150, "lb"),
  27141. name: "Back",
  27142. image: {
  27143. source: "./media/characters/lira/back.svg",
  27144. extra: 1713 / 159,
  27145. bottom: 20 / 1733
  27146. }
  27147. },
  27148. hand: {
  27149. height: math.unit(0.75, "feet"),
  27150. name: "Hand",
  27151. image: {
  27152. source: "./media/characters/lira/hand.svg"
  27153. }
  27154. },
  27155. maw: {
  27156. height: math.unit(0.65, "feet"),
  27157. name: "Maw",
  27158. image: {
  27159. source: "./media/characters/lira/maw.svg"
  27160. }
  27161. },
  27162. pawDigi: {
  27163. height: math.unit(1.6, "feet"),
  27164. name: "Paw Digi",
  27165. image: {
  27166. source: "./media/characters/lira/paw-digi.svg"
  27167. }
  27168. },
  27169. pawPlanti: {
  27170. height: math.unit(1.4, "feet"),
  27171. name: "Paw Planti",
  27172. image: {
  27173. source: "./media/characters/lira/paw-planti.svg"
  27174. }
  27175. },
  27176. },
  27177. [
  27178. {
  27179. name: "Normal",
  27180. height: math.unit(6 + 2 / 12, "feet"),
  27181. default: true
  27182. },
  27183. {
  27184. name: "Macro",
  27185. height: math.unit(100, "feet")
  27186. },
  27187. {
  27188. name: "Macro²",
  27189. height: math.unit(1600, "feet")
  27190. },
  27191. {
  27192. name: "Planetary",
  27193. height: math.unit(20, "earths")
  27194. },
  27195. ]
  27196. ))
  27197. characterMakers.push(() => makeCharacter(
  27198. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27199. {
  27200. front: {
  27201. height: math.unit(6, "feet"),
  27202. weight: math.unit(150, "lb"),
  27203. name: "Front",
  27204. image: {
  27205. source: "./media/characters/hadjet/front.svg",
  27206. extra: 1480 / 1346,
  27207. bottom: 26 / 1506
  27208. }
  27209. },
  27210. frontNsfw: {
  27211. height: math.unit(6, "feet"),
  27212. weight: math.unit(150, "lb"),
  27213. name: "Front (NSFW)",
  27214. image: {
  27215. source: "./media/characters/hadjet/front-nsfw.svg",
  27216. extra: 1440 / 1358,
  27217. bottom: 52 / 1492
  27218. }
  27219. },
  27220. },
  27221. [
  27222. {
  27223. name: "Macro",
  27224. height: math.unit(10, "stories"),
  27225. default: true
  27226. },
  27227. {
  27228. name: "Megamacro",
  27229. height: math.unit(1.5, "miles")
  27230. },
  27231. {
  27232. name: "Megamacro+",
  27233. height: math.unit(5, "miles")
  27234. },
  27235. ]
  27236. ))
  27237. characterMakers.push(() => makeCharacter(
  27238. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27239. {
  27240. side: {
  27241. height: math.unit(106, "feet"),
  27242. weight: math.unit(500, "tonnes"),
  27243. name: "Side",
  27244. image: {
  27245. source: "./media/characters/kodran/side.svg",
  27246. extra: 553 / 480,
  27247. bottom: 33 / 586
  27248. }
  27249. },
  27250. front: {
  27251. height: math.unit(132, "feet"),
  27252. weight: math.unit(500, "tonnes"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/kodran/front.svg",
  27256. extra: 667 / 643,
  27257. bottom: 42 / 709
  27258. }
  27259. },
  27260. flying: {
  27261. height: math.unit(350, "feet"),
  27262. weight: math.unit(500, "tonnes"),
  27263. name: "Flying",
  27264. image: {
  27265. source: "./media/characters/kodran/flying.svg"
  27266. }
  27267. },
  27268. foot: {
  27269. height: math.unit(33, "feet"),
  27270. name: "Foot",
  27271. image: {
  27272. source: "./media/characters/kodran/foot.svg"
  27273. }
  27274. },
  27275. footFront: {
  27276. height: math.unit(19, "feet"),
  27277. name: "Foot (Front)",
  27278. image: {
  27279. source: "./media/characters/kodran/foot-front.svg",
  27280. extra: 261 / 261,
  27281. bottom: 91 / 352
  27282. }
  27283. },
  27284. headFront: {
  27285. height: math.unit(53, "feet"),
  27286. name: "Head (Front)",
  27287. image: {
  27288. source: "./media/characters/kodran/head-front.svg"
  27289. }
  27290. },
  27291. headSide: {
  27292. height: math.unit(65, "feet"),
  27293. name: "Head (Side)",
  27294. image: {
  27295. source: "./media/characters/kodran/head-side.svg"
  27296. }
  27297. },
  27298. throat: {
  27299. height: math.unit(79, "feet"),
  27300. name: "Throat",
  27301. image: {
  27302. source: "./media/characters/kodran/throat.svg"
  27303. }
  27304. },
  27305. },
  27306. [
  27307. {
  27308. name: "Large",
  27309. height: math.unit(106, "feet"),
  27310. default: true
  27311. },
  27312. ]
  27313. ))
  27314. characterMakers.push(() => makeCharacter(
  27315. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27316. {
  27317. side: {
  27318. height: math.unit(11, "feet"),
  27319. weight: math.unit(150, "lb"),
  27320. name: "Side",
  27321. image: {
  27322. source: "./media/characters/pyxaron/side.svg",
  27323. extra: 305 / 195,
  27324. bottom: 17 / 322
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(11, "feet")
  27332. },
  27333. ]
  27334. ))
  27335. characterMakers.push(() => makeCharacter(
  27336. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27337. {
  27338. front: {
  27339. height: math.unit(6, "feet"),
  27340. weight: math.unit(150, "lb"),
  27341. name: "Front",
  27342. image: {
  27343. source: "./media/characters/meep/front.svg",
  27344. extra: 88 / 80,
  27345. bottom: 6 / 94
  27346. }
  27347. },
  27348. },
  27349. [
  27350. {
  27351. name: "Fun Sized",
  27352. height: math.unit(2, "inches"),
  27353. default: true
  27354. },
  27355. {
  27356. name: "Friend Sized",
  27357. height: math.unit(8, "inches")
  27358. },
  27359. ]
  27360. ))
  27361. characterMakers.push(() => makeCharacter(
  27362. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27363. {
  27364. front: {
  27365. height: math.unit(15, "feet"),
  27366. weight: math.unit(2500, "lb"),
  27367. name: "Front",
  27368. image: {
  27369. source: "./media/characters/holly-rabbit/front.svg",
  27370. extra: 1433 / 1233,
  27371. bottom: 125 / 1558
  27372. }
  27373. },
  27374. dick: {
  27375. height: math.unit(4.6, "feet"),
  27376. name: "Dick",
  27377. image: {
  27378. source: "./media/characters/holly-rabbit/dick.svg"
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "Normal",
  27385. height: math.unit(15, "feet"),
  27386. default: true
  27387. },
  27388. {
  27389. name: "Macro",
  27390. height: math.unit(250, "feet")
  27391. },
  27392. {
  27393. name: "Macro+",
  27394. height: math.unit(2500, "feet")
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(3.02, "meters"),
  27403. weight: math.unit(500, "kg"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/drena/front.svg",
  27407. extra: 282 / 243,
  27408. bottom: 8 / 290
  27409. }
  27410. },
  27411. side: {
  27412. height: math.unit(3.02, "meters"),
  27413. weight: math.unit(500, "kg"),
  27414. name: "Side",
  27415. image: {
  27416. source: "./media/characters/drena/side.svg",
  27417. extra: 280 / 245,
  27418. bottom: 10 / 290
  27419. }
  27420. },
  27421. back: {
  27422. height: math.unit(3.02, "meters"),
  27423. weight: math.unit(500, "kg"),
  27424. name: "Back",
  27425. image: {
  27426. source: "./media/characters/drena/back.svg",
  27427. extra: 278 / 243,
  27428. bottom: 2 / 280
  27429. }
  27430. },
  27431. foot: {
  27432. height: math.unit(0.75, "meters"),
  27433. name: "Foot",
  27434. image: {
  27435. source: "./media/characters/drena/foot.svg"
  27436. }
  27437. },
  27438. maw: {
  27439. height: math.unit(0.82, "meters"),
  27440. name: "Maw",
  27441. image: {
  27442. source: "./media/characters/drena/maw.svg"
  27443. }
  27444. },
  27445. rump: {
  27446. height: math.unit(0.93, "meters"),
  27447. name: "Rump",
  27448. image: {
  27449. source: "./media/characters/drena/rump.svg"
  27450. }
  27451. },
  27452. },
  27453. [
  27454. {
  27455. name: "Normal",
  27456. height: math.unit(3.02, "meters"),
  27457. default: true
  27458. },
  27459. ]
  27460. ))
  27461. characterMakers.push(() => makeCharacter(
  27462. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27463. {
  27464. front: {
  27465. height: math.unit(6 + 4 / 12, "feet"),
  27466. weight: math.unit(250, "lb"),
  27467. name: "Front",
  27468. image: {
  27469. source: "./media/characters/remmyzilla/front.svg",
  27470. extra: 4033 / 3588,
  27471. bottom: 123 / 4156
  27472. }
  27473. },
  27474. back: {
  27475. height: math.unit(6 + 4 / 12, "feet"),
  27476. weight: math.unit(250, "lb"),
  27477. name: "Back",
  27478. image: {
  27479. source: "./media/characters/remmyzilla/back.svg",
  27480. extra: 2687 / 2555,
  27481. bottom: 48 / 2735
  27482. }
  27483. },
  27484. frontFancy: {
  27485. height: math.unit(6 + 4 / 12, "feet"),
  27486. weight: math.unit(250, "lb"),
  27487. name: "Front (Fancy)",
  27488. image: {
  27489. source: "./media/characters/remmyzilla/front-fancy.svg",
  27490. extra: 4119 / 3419,
  27491. bottom: 237 / 4356
  27492. }
  27493. },
  27494. paw: {
  27495. height: math.unit(1.73, "feet"),
  27496. name: "Paw",
  27497. image: {
  27498. source: "./media/characters/remmyzilla/paw.svg"
  27499. }
  27500. },
  27501. maw: {
  27502. height: math.unit(1.73, "feet"),
  27503. name: "Maw",
  27504. image: {
  27505. source: "./media/characters/remmyzilla/maw.svg"
  27506. }
  27507. },
  27508. },
  27509. [
  27510. {
  27511. name: "Normal",
  27512. height: math.unit(6 + 4 / 12, "feet")
  27513. },
  27514. {
  27515. name: "Minimacro",
  27516. height: math.unit(12 + 8 / 12, "feet")
  27517. },
  27518. {
  27519. name: "Normal",
  27520. height: math.unit(640, "feet"),
  27521. default: true
  27522. },
  27523. {
  27524. name: "Megamacro",
  27525. height: math.unit(6400, "feet")
  27526. },
  27527. {
  27528. name: "Gigamacro",
  27529. height: math.unit(64000, "miles")
  27530. },
  27531. ]
  27532. ))
  27533. characterMakers.push(() => makeCharacter(
  27534. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27535. {
  27536. front: {
  27537. height: math.unit(2.5, "meters"),
  27538. weight: math.unit(300, "lb"),
  27539. name: "Front",
  27540. image: {
  27541. source: "./media/characters/lawrence/front.svg",
  27542. extra: 357 / 335,
  27543. bottom: 30 / 387
  27544. }
  27545. },
  27546. back: {
  27547. height: math.unit(2.5, "meters"),
  27548. weight: math.unit(300, "lb"),
  27549. name: "Back",
  27550. image: {
  27551. source: "./media/characters/lawrence/back.svg",
  27552. extra: 357 / 338,
  27553. bottom: 16 / 373
  27554. }
  27555. },
  27556. head: {
  27557. height: math.unit(0.9, "meter"),
  27558. name: "Head",
  27559. image: {
  27560. source: "./media/characters/lawrence/head.svg"
  27561. }
  27562. },
  27563. maw: {
  27564. height: math.unit(0.7, "meter"),
  27565. name: "Maw",
  27566. image: {
  27567. source: "./media/characters/lawrence/maw.svg"
  27568. }
  27569. },
  27570. footBottom: {
  27571. height: math.unit(0.5, "meter"),
  27572. name: "Foot (Bottom)",
  27573. image: {
  27574. source: "./media/characters/lawrence/foot-bottom.svg"
  27575. }
  27576. },
  27577. footTop: {
  27578. height: math.unit(0.5, "meter"),
  27579. name: "Foot (Top)",
  27580. image: {
  27581. source: "./media/characters/lawrence/foot-top.svg"
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(2.5, "meters"),
  27589. default: true
  27590. },
  27591. {
  27592. name: "Macro",
  27593. height: math.unit(95, "meters")
  27594. },
  27595. {
  27596. name: "Megamacro",
  27597. height: math.unit(150, "km")
  27598. },
  27599. ]
  27600. ))
  27601. characterMakers.push(() => makeCharacter(
  27602. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27603. {
  27604. front: {
  27605. height: math.unit(4.2, "meters"),
  27606. name: "Front",
  27607. image: {
  27608. source: "./media/characters/sydney/front.svg",
  27609. extra: 1323 / 1277,
  27610. bottom: 111 / 1434
  27611. }
  27612. },
  27613. },
  27614. [
  27615. {
  27616. name: "Normal",
  27617. height: math.unit(4.2, "meters")
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27623. {
  27624. back: {
  27625. height: math.unit(201, "feet"),
  27626. name: "Back",
  27627. image: {
  27628. source: "./media/characters/jessica/back.svg",
  27629. extra: 273 / 259,
  27630. bottom: 7 / 280
  27631. }
  27632. },
  27633. },
  27634. [
  27635. {
  27636. name: "Normal",
  27637. height: math.unit(201, "feet"),
  27638. default: true
  27639. },
  27640. {
  27641. name: "Megamacro",
  27642. height: math.unit(8, "miles")
  27643. },
  27644. ]
  27645. ))
  27646. characterMakers.push(() => makeCharacter(
  27647. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27648. {
  27649. side: {
  27650. height: math.unit(320, "cm"),
  27651. name: "Side",
  27652. image: {
  27653. source: "./media/characters/victoria/side.svg",
  27654. extra: 778 / 346,
  27655. bottom: 56 / 834
  27656. }
  27657. },
  27658. maw: {
  27659. height: math.unit(5.9, "feet"),
  27660. name: "Maw",
  27661. image: {
  27662. source: "./media/characters/victoria/maw.svg"
  27663. }
  27664. },
  27665. },
  27666. [
  27667. {
  27668. name: "Normal",
  27669. height: math.unit(320, "cm"),
  27670. default: true
  27671. },
  27672. ]
  27673. ))
  27674. characterMakers.push(() => makeCharacter(
  27675. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27676. {
  27677. front: {
  27678. height: math.unit(5 + 6 / 12, "feet"),
  27679. name: "Front",
  27680. image: {
  27681. source: "./media/characters/cat/front.svg",
  27682. extra: 1374 / 1257,
  27683. bottom: 59 / 1433
  27684. }
  27685. },
  27686. back: {
  27687. height: math.unit(5 + 6 / 12, "feet"),
  27688. name: "Back",
  27689. image: {
  27690. source: "./media/characters/cat/back.svg",
  27691. extra: 1337 / 1226,
  27692. bottom: 34 / 1371
  27693. }
  27694. },
  27695. taur: {
  27696. height: math.unit(7, "feet"),
  27697. name: "Taur",
  27698. image: {
  27699. source: "./media/characters/cat/taur.svg",
  27700. extra: 1345 / 1231,
  27701. bottom: 66 / 1411
  27702. }
  27703. },
  27704. lucario: {
  27705. height: math.unit(4, "feet"),
  27706. name: "Lucario",
  27707. image: {
  27708. source: "./media/characters/cat/lucario.svg",
  27709. extra: 1470 / 1318,
  27710. bottom: 65 / 1535
  27711. }
  27712. },
  27713. megaLucario: {
  27714. height: math.unit(4, "feet"),
  27715. name: "Mega Lucario",
  27716. image: {
  27717. source: "./media/characters/cat/mega-lucario.svg",
  27718. extra: 1515 / 1319,
  27719. bottom: 63 / 1578
  27720. }
  27721. },
  27722. nickit: {
  27723. height: math.unit(2, "feet"),
  27724. name: "Nickit",
  27725. image: {
  27726. source: "./media/characters/cat/nickit.svg",
  27727. extra: 1980 / 1585,
  27728. bottom: 102 / 2082
  27729. }
  27730. },
  27731. lopunnyFront: {
  27732. height: math.unit(5, "feet"),
  27733. name: "Lopunny (Front)",
  27734. image: {
  27735. source: "./media/characters/cat/lopunny-front.svg",
  27736. extra: 1782 / 1469,
  27737. bottom: 38 / 1820
  27738. }
  27739. },
  27740. lopunnyBack: {
  27741. height: math.unit(5, "feet"),
  27742. name: "Lopunny (Back)",
  27743. image: {
  27744. source: "./media/characters/cat/lopunny-back.svg",
  27745. extra: 1660 / 1490,
  27746. bottom: 25 / 1685
  27747. }
  27748. },
  27749. },
  27750. [
  27751. {
  27752. name: "Really small",
  27753. height: math.unit(1, "nm")
  27754. },
  27755. {
  27756. name: "Micro",
  27757. height: math.unit(5, "inches")
  27758. },
  27759. {
  27760. name: "Normal",
  27761. height: math.unit(5 + 6 / 12, "feet"),
  27762. default: true
  27763. },
  27764. {
  27765. name: "Macro",
  27766. height: math.unit(50, "feet")
  27767. },
  27768. {
  27769. name: "Macro+",
  27770. height: math.unit(150, "feet")
  27771. },
  27772. {
  27773. name: "Megamacro",
  27774. height: math.unit(100, "miles")
  27775. },
  27776. ]
  27777. ))
  27778. characterMakers.push(() => makeCharacter(
  27779. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27780. {
  27781. front: {
  27782. height: math.unit(63.4, "meters"),
  27783. weight: math.unit(3.28349e+6, "kilograms"),
  27784. name: "Front",
  27785. image: {
  27786. source: "./media/characters/kirina-violet/front.svg",
  27787. extra: 2812/2725,
  27788. bottom: 0/2812
  27789. }
  27790. },
  27791. back: {
  27792. height: math.unit(63.4, "meters"),
  27793. weight: math.unit(3.28349e+6, "kilograms"),
  27794. name: "Back",
  27795. image: {
  27796. source: "./media/characters/kirina-violet/back.svg",
  27797. extra: 2812/2725,
  27798. bottom: 0/2812
  27799. }
  27800. },
  27801. mouth: {
  27802. height: math.unit(4.35, "meters"),
  27803. name: "Mouth",
  27804. image: {
  27805. source: "./media/characters/kirina-violet/mouth.svg"
  27806. }
  27807. },
  27808. paw: {
  27809. height: math.unit(5.6, "meters"),
  27810. name: "Paw",
  27811. image: {
  27812. source: "./media/characters/kirina-violet/paw.svg"
  27813. }
  27814. },
  27815. tail: {
  27816. height: math.unit(18, "meters"),
  27817. name: "Tail",
  27818. image: {
  27819. source: "./media/characters/kirina-violet/tail.svg"
  27820. }
  27821. },
  27822. },
  27823. [
  27824. {
  27825. name: "Macro",
  27826. height: math.unit(63.4, "meters"),
  27827. default: true
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(60, "feet"),
  27836. name: "Front",
  27837. image: {
  27838. source: "./media/characters/cat-gigachu/front.svg",
  27839. extra: 1024/780,
  27840. bottom: 23/1047
  27841. }
  27842. },
  27843. back: {
  27844. height: math.unit(60, "feet"),
  27845. name: "Back",
  27846. image: {
  27847. source: "./media/characters/cat-gigachu/back.svg",
  27848. extra: 1024/780,
  27849. bottom: 23/1047
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Dynamax",
  27856. height: math.unit(60, "feet"),
  27857. default: true
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(6, "feet"),
  27866. weight: math.unit(150, "lb"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/sfaiyan/front.svg",
  27870. extra: 999/978,
  27871. bottom: 5/1004
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(1.82, "meters")
  27879. },
  27880. {
  27881. name: "Giant",
  27882. height: math.unit(2.27, "km"),
  27883. default: true
  27884. },
  27885. ]
  27886. ))
  27887. characterMakers.push(() => makeCharacter(
  27888. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  27889. {
  27890. front: {
  27891. height: math.unit(179, "cm"),
  27892. weight: math.unit(100, "kg"),
  27893. name: "Front",
  27894. image: {
  27895. source: "./media/characters/raunehkeli/front.svg",
  27896. extra: 1934/1926,
  27897. bottom: 0/1934
  27898. }
  27899. },
  27900. },
  27901. [
  27902. {
  27903. name: "Normal",
  27904. height: math.unit(179, "cm")
  27905. },
  27906. {
  27907. name: "Maximum",
  27908. height: math.unit(575, "meters"),
  27909. default: true
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  27915. {
  27916. front: {
  27917. height: math.unit(6, "feet"),
  27918. weight: math.unit(150, "lb"),
  27919. name: "Front",
  27920. image: {
  27921. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  27922. extra: 2625/2518,
  27923. bottom: 60/2685
  27924. }
  27925. },
  27926. },
  27927. [
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(6 + 2/12, "feet"),
  27931. default: true
  27932. },
  27933. {
  27934. name: "Macro",
  27935. height: math.unit(1180, "feet")
  27936. },
  27937. ]
  27938. ))
  27939. characterMakers.push(() => makeCharacter(
  27940. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  27941. {
  27942. front: {
  27943. height: math.unit(5 + 6/12, "feet"),
  27944. weight: math.unit(108, "lb"),
  27945. name: "Front",
  27946. image: {
  27947. source: "./media/characters/lilith-zott/front.svg",
  27948. extra: 2510/2238,
  27949. bottom: 100/2610
  27950. }
  27951. },
  27952. frontDressed: {
  27953. height: math.unit(5 + 6/12, "feet"),
  27954. weight: math.unit(108, "lb"),
  27955. name: "Front (Dressed)",
  27956. image: {
  27957. source: "./media/characters/lilith-zott/front-dressed.svg",
  27958. extra: 2510/2238,
  27959. bottom: 100/2610
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(5 + 6/12, "feet")
  27967. },
  27968. {
  27969. name: "Macro",
  27970. height: math.unit(200, "feet"),
  27971. default: true
  27972. },
  27973. {
  27974. name: "Macro+",
  27975. height: math.unit(1030, "feet")
  27976. },
  27977. ]
  27978. ))
  27979. characterMakers.push(() => makeCharacter(
  27980. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  27981. {
  27982. front: {
  27983. height: math.unit(6, "feet"),
  27984. weight: math.unit(150, "lb"),
  27985. name: "Front",
  27986. image: {
  27987. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  27988. extra: 2567/2435,
  27989. bottom: 39/2606
  27990. }
  27991. },
  27992. frontSuper: {
  27993. height: math.unit(6, "feet"),
  27994. name: "Front (Super)",
  27995. image: {
  27996. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  27997. extra: 2567/2435,
  27998. bottom: 39/2606
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(5 + 10/12, "feet")
  28006. },
  28007. {
  28008. name: "Macro",
  28009. height: math.unit(220, "feet"),
  28010. default: true
  28011. },
  28012. {
  28013. name: "Macro+",
  28014. height: math.unit(1100, "feet")
  28015. },
  28016. ]
  28017. ))
  28018. characterMakers.push(() => makeCharacter(
  28019. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28020. {
  28021. front: {
  28022. height: math.unit(100, "miles"),
  28023. name: "Front",
  28024. image: {
  28025. source: "./media/characters/sona/front.svg",
  28026. extra: 2433/2201,
  28027. bottom: 53/2486
  28028. }
  28029. },
  28030. foot: {
  28031. height: math.unit(16.1, "miles"),
  28032. name: "Foot",
  28033. image: {
  28034. source: "./media/characters/sona/foot.svg"
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Macro",
  28041. height: math.unit(100, "miles"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(6, "feet"),
  28051. weight: math.unit(150, "lb"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/bailey/front.svg",
  28055. extra: 1778/1724,
  28056. bottom: 30/1808
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Micro",
  28063. height: math.unit(4, "inches")
  28064. },
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(5 + 5/12, "feet"),
  28068. default: true
  28069. },
  28070. {
  28071. name: "Macro",
  28072. height: math.unit(250, "feet")
  28073. },
  28074. {
  28075. name: "Megamacro",
  28076. height: math.unit(100, "miles")
  28077. },
  28078. ]
  28079. ))
  28080. //characters
  28081. function makeCharacters() {
  28082. const results = [];
  28083. characterMakers.forEach(character => {
  28084. results.push(character());
  28085. });
  28086. return results;
  28087. }