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.
 
 
 

29166 lines
728 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. }
  1364. //species
  1365. function getSpeciesInfo(speciesList) {
  1366. let result = new Set();
  1367. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1368. result.add(entry)
  1369. });
  1370. return Array.from(result);
  1371. };
  1372. function getSpeciesInfoHelper(species) {
  1373. if (!speciesData[species]) {
  1374. console.warn(species + " doesn't exist");
  1375. return [];
  1376. }
  1377. if (speciesData[species].parents) {
  1378. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1379. } else {
  1380. return [species];
  1381. }
  1382. }
  1383. characterMakers.push(() => makeCharacter(
  1384. {
  1385. name: "Fen",
  1386. species: ["crux"],
  1387. description: {
  1388. title: "Bio",
  1389. text: "Very furry. Sheds on everything."
  1390. },
  1391. tags: [
  1392. "anthro",
  1393. "goo"
  1394. ]
  1395. },
  1396. {
  1397. back: {
  1398. height: math.unit(2.2428, "meter"),
  1399. weight: math.unit(124.738, "kg"),
  1400. name: "Back",
  1401. image: {
  1402. source: "./media/characters/fen/back.svg",
  1403. extra: 2024 / 1867,
  1404. bottom: 13 / 2037
  1405. },
  1406. info: {
  1407. description: {
  1408. mode: "append",
  1409. text: "\n\nHe is not currently looking at you."
  1410. }
  1411. }
  1412. },
  1413. full: {
  1414. height: math.unit(1.34, "meter"),
  1415. weight: math.unit(225, "kg"),
  1416. name: "Full",
  1417. image: {
  1418. source: "./media/characters/fen/full.svg"
  1419. },
  1420. info: {
  1421. description: {
  1422. mode: "append",
  1423. text: "\n\nMunch."
  1424. }
  1425. }
  1426. },
  1427. kneeling: {
  1428. height: math.unit(5.4, "feet"),
  1429. weight: math.unit(124.738, "kg"),
  1430. name: "Kneeling",
  1431. image: {
  1432. source: "./media/characters/fen/kneeling.svg",
  1433. extra: 563 / 507
  1434. }
  1435. },
  1436. goo: {
  1437. height: math.unit(2.8, "feet"),
  1438. weight: math.unit(125, "kg"),
  1439. capacity: math.unit(1, "people"),
  1440. name: "Goo",
  1441. image: {
  1442. source: "./media/characters/fen/goo.svg",
  1443. bottom: 116 / 613
  1444. }
  1445. },
  1446. lounging: {
  1447. height: math.unit(6.5, "feet"),
  1448. weight: math.unit(125, "kg"),
  1449. name: "Lounging",
  1450. image: {
  1451. source: "./media/characters/fen/lounging.svg"
  1452. }
  1453. },
  1454. },
  1455. [
  1456. {
  1457. name: "Normal",
  1458. height: math.unit(2.2428, "meter")
  1459. },
  1460. {
  1461. name: "Big",
  1462. height: math.unit(12, "feet")
  1463. },
  1464. {
  1465. name: "Minimacro",
  1466. height: math.unit(40, "feet"),
  1467. default: true,
  1468. info: {
  1469. description: {
  1470. mode: "append",
  1471. text: "\n\nTOO DAMN BIG"
  1472. }
  1473. }
  1474. },
  1475. {
  1476. name: "Macro",
  1477. height: math.unit(100, "feet"),
  1478. info: {
  1479. description: {
  1480. mode: "append",
  1481. text: "\n\nTOO DAMN BIG"
  1482. }
  1483. }
  1484. },
  1485. {
  1486. name: "Macro+",
  1487. height: math.unit(300, "feet")
  1488. },
  1489. {
  1490. name: "Megamacro",
  1491. height: math.unit(2, "miles")
  1492. }
  1493. ]
  1494. ))
  1495. characterMakers.push(() => makeCharacter(
  1496. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1497. {
  1498. front: {
  1499. height: math.unit(183, "cm"),
  1500. weight: math.unit(80, "kg"),
  1501. name: "Front",
  1502. image: {
  1503. source: "./media/characters/sofia-fluttertail/front.svg",
  1504. bottom: 0.01,
  1505. extra: 2154 / 2081
  1506. }
  1507. },
  1508. frontAlt: {
  1509. height: math.unit(183, "cm"),
  1510. weight: math.unit(80, "kg"),
  1511. name: "Front (alt)",
  1512. image: {
  1513. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1514. }
  1515. },
  1516. back: {
  1517. height: math.unit(183, "cm"),
  1518. weight: math.unit(80, "kg"),
  1519. name: "Back",
  1520. image: {
  1521. source: "./media/characters/sofia-fluttertail/back.svg"
  1522. }
  1523. },
  1524. kneeling: {
  1525. height: math.unit(125, "cm"),
  1526. weight: math.unit(80, "kg"),
  1527. name: "Kneeling",
  1528. image: {
  1529. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1530. extra: 1033 / 977,
  1531. bottom: 23.7 / 1057
  1532. }
  1533. },
  1534. maw: {
  1535. height: math.unit(183 / 5, "cm"),
  1536. name: "Maw",
  1537. image: {
  1538. source: "./media/characters/sofia-fluttertail/maw.svg"
  1539. }
  1540. },
  1541. mawcloseup: {
  1542. height: math.unit(183 / 5 * 0.41, "cm"),
  1543. name: "Maw (Closeup)",
  1544. image: {
  1545. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1546. }
  1547. },
  1548. },
  1549. [
  1550. {
  1551. name: "Normal",
  1552. height: math.unit(1.83, "meter")
  1553. },
  1554. {
  1555. name: "Size Thief",
  1556. height: math.unit(18, "feet")
  1557. },
  1558. {
  1559. name: "50 Foot Collie",
  1560. height: math.unit(50, "feet")
  1561. },
  1562. {
  1563. name: "Macro",
  1564. height: math.unit(96, "feet"),
  1565. default: true
  1566. },
  1567. {
  1568. name: "Megamerger",
  1569. height: math.unit(650, "feet")
  1570. },
  1571. ]
  1572. ))
  1573. characterMakers.push(() => makeCharacter(
  1574. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1575. {
  1576. front: {
  1577. height: math.unit(7, "feet"),
  1578. weight: math.unit(100, "kg"),
  1579. name: "Front",
  1580. image: {
  1581. source: "./media/characters/march/front.svg",
  1582. extra: 1,
  1583. bottom: 0.015
  1584. }
  1585. },
  1586. foot: {
  1587. height: math.unit(0.9, "feet"),
  1588. name: "Foot",
  1589. image: {
  1590. source: "./media/characters/march/foot.svg"
  1591. }
  1592. },
  1593. },
  1594. [
  1595. {
  1596. name: "Normal",
  1597. height: math.unit(7.9, "feet")
  1598. },
  1599. {
  1600. name: "Macro",
  1601. height: math.unit(220, "meters")
  1602. },
  1603. {
  1604. name: "Megamacro",
  1605. height: math.unit(2.98, "km"),
  1606. default: true
  1607. },
  1608. {
  1609. name: "Gigamacro",
  1610. height: math.unit(15963, "km")
  1611. },
  1612. {
  1613. name: "Teramacro",
  1614. height: math.unit(2980000000, "km")
  1615. },
  1616. {
  1617. name: "Examacro",
  1618. height: math.unit(250, "parsecs")
  1619. },
  1620. ]
  1621. ))
  1622. characterMakers.push(() => makeCharacter(
  1623. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1624. {
  1625. front: {
  1626. height: math.unit(6, "feet"),
  1627. weight: math.unit(60, "kg"),
  1628. name: "Front",
  1629. image: {
  1630. source: "./media/characters/noir/front.svg",
  1631. extra: 1,
  1632. bottom: 0.032
  1633. }
  1634. },
  1635. },
  1636. [
  1637. {
  1638. name: "Normal",
  1639. height: math.unit(6.6, "feet")
  1640. },
  1641. {
  1642. name: "Macro",
  1643. height: math.unit(500, "feet")
  1644. },
  1645. {
  1646. name: "Megamacro",
  1647. height: math.unit(2.5, "km"),
  1648. default: true
  1649. },
  1650. {
  1651. name: "Gigamacro",
  1652. height: math.unit(22500, "km")
  1653. },
  1654. {
  1655. name: "Teramacro",
  1656. height: math.unit(2500000000, "km")
  1657. },
  1658. {
  1659. name: "Examacro",
  1660. height: math.unit(200, "parsecs")
  1661. },
  1662. ]
  1663. ))
  1664. characterMakers.push(() => makeCharacter(
  1665. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1666. {
  1667. front: {
  1668. height: math.unit(7, "feet"),
  1669. weight: math.unit(100, "kg"),
  1670. name: "Front",
  1671. image: {
  1672. source: "./media/characters/okuri/front.svg",
  1673. extra: 1,
  1674. bottom: 0.037
  1675. }
  1676. },
  1677. back: {
  1678. height: math.unit(7, "feet"),
  1679. weight: math.unit(100, "kg"),
  1680. name: "Back",
  1681. image: {
  1682. source: "./media/characters/okuri/back.svg",
  1683. extra: 1,
  1684. bottom: 0.007
  1685. }
  1686. },
  1687. },
  1688. [
  1689. {
  1690. name: "Megamacro",
  1691. height: math.unit(100, "miles"),
  1692. default: true
  1693. },
  1694. ]
  1695. ))
  1696. characterMakers.push(() => makeCharacter(
  1697. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1698. {
  1699. front: {
  1700. height: math.unit(7, "feet"),
  1701. weight: math.unit(100, "kg"),
  1702. name: "Front",
  1703. image: {
  1704. source: "./media/characters/manny/front.svg",
  1705. extra: 1,
  1706. bottom: 0.06
  1707. }
  1708. },
  1709. back: {
  1710. height: math.unit(7, "feet"),
  1711. weight: math.unit(100, "kg"),
  1712. name: "Back",
  1713. image: {
  1714. source: "./media/characters/manny/back.svg",
  1715. extra: 1,
  1716. bottom: 0.014
  1717. }
  1718. },
  1719. },
  1720. [
  1721. {
  1722. name: "Normal",
  1723. height: math.unit(7, "feet"),
  1724. },
  1725. {
  1726. name: "Macro",
  1727. height: math.unit(78, "feet"),
  1728. default: true
  1729. },
  1730. {
  1731. name: "Macro+",
  1732. height: math.unit(300, "meters")
  1733. },
  1734. {
  1735. name: "Macro++",
  1736. height: math.unit(2400, "meters")
  1737. },
  1738. {
  1739. name: "Megamacro",
  1740. height: math.unit(5167, "meters")
  1741. },
  1742. {
  1743. name: "Gigamacro",
  1744. height: math.unit(41769, "miles")
  1745. },
  1746. ]
  1747. ))
  1748. characterMakers.push(() => makeCharacter(
  1749. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1750. {
  1751. front: {
  1752. height: math.unit(7, "feet"),
  1753. weight: math.unit(100, "kg"),
  1754. name: "Front",
  1755. image: {
  1756. source: "./media/characters/adake/front-1.svg"
  1757. }
  1758. },
  1759. frontAlt: {
  1760. height: math.unit(7, "feet"),
  1761. weight: math.unit(100, "kg"),
  1762. name: "Front (Alt)",
  1763. image: {
  1764. source: "./media/characters/adake/front-2.svg",
  1765. extra: 1,
  1766. bottom: 0.01
  1767. }
  1768. },
  1769. back: {
  1770. height: math.unit(7, "feet"),
  1771. weight: math.unit(100, "kg"),
  1772. name: "Back",
  1773. image: {
  1774. source: "./media/characters/adake/back.svg",
  1775. }
  1776. },
  1777. kneel: {
  1778. height: math.unit(5.385, "feet"),
  1779. weight: math.unit(100, "kg"),
  1780. name: "Kneeling",
  1781. image: {
  1782. source: "./media/characters/adake/kneel.svg",
  1783. bottom: 0.052
  1784. }
  1785. },
  1786. },
  1787. [
  1788. {
  1789. name: "Normal",
  1790. height: math.unit(7, "feet"),
  1791. },
  1792. {
  1793. name: "Macro",
  1794. height: math.unit(78, "feet"),
  1795. default: true
  1796. },
  1797. {
  1798. name: "Macro+",
  1799. height: math.unit(300, "meters")
  1800. },
  1801. {
  1802. name: "Macro++",
  1803. height: math.unit(2400, "meters")
  1804. },
  1805. {
  1806. name: "Megamacro",
  1807. height: math.unit(5167, "meters")
  1808. },
  1809. {
  1810. name: "Gigamacro",
  1811. height: math.unit(41769, "miles")
  1812. },
  1813. ]
  1814. ))
  1815. characterMakers.push(() => makeCharacter(
  1816. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1817. {
  1818. front: {
  1819. height: math.unit(1.65, "meters"),
  1820. weight: math.unit(50, "kg"),
  1821. name: "Front",
  1822. image: {
  1823. source: "./media/characters/elijah/front.svg",
  1824. extra: 858 / 830,
  1825. bottom: 95.5 / 953.8559
  1826. }
  1827. },
  1828. back: {
  1829. height: math.unit(1.65, "meters"),
  1830. weight: math.unit(50, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/elijah/back.svg",
  1834. extra: 895 / 850,
  1835. bottom: 5.3 / 897.956
  1836. }
  1837. },
  1838. frontNsfw: {
  1839. height: math.unit(1.65, "meters"),
  1840. weight: math.unit(50, "kg"),
  1841. name: "Front (NSFW)",
  1842. image: {
  1843. source: "./media/characters/elijah/front-nsfw.svg",
  1844. extra: 858 / 830,
  1845. bottom: 95.5 / 953.8559
  1846. }
  1847. },
  1848. backNsfw: {
  1849. height: math.unit(1.65, "meters"),
  1850. weight: math.unit(50, "kg"),
  1851. name: "Back (NSFW)",
  1852. image: {
  1853. source: "./media/characters/elijah/back-nsfw.svg",
  1854. extra: 895 / 850,
  1855. bottom: 5.3 / 897.956
  1856. }
  1857. },
  1858. dick: {
  1859. height: math.unit(1, "feet"),
  1860. name: "Dick",
  1861. image: {
  1862. source: "./media/characters/elijah/dick.svg"
  1863. }
  1864. },
  1865. beakOpen: {
  1866. height: math.unit(1.25, "feet"),
  1867. name: "Beak (Open)",
  1868. image: {
  1869. source: "./media/characters/elijah/beak-open.svg"
  1870. }
  1871. },
  1872. beakShut: {
  1873. height: math.unit(1.25, "feet"),
  1874. name: "Beak (Shut)",
  1875. image: {
  1876. source: "./media/characters/elijah/beak-shut.svg"
  1877. }
  1878. },
  1879. footFlexing: {
  1880. height: math.unit(1.61, "feet"),
  1881. name: "Foot (Flexing)",
  1882. image: {
  1883. source: "./media/characters/elijah/foot-flexing.svg"
  1884. }
  1885. },
  1886. footStepping: {
  1887. height: math.unit(1.44, "feet"),
  1888. name: "Foot (Stepping)",
  1889. image: {
  1890. source: "./media/characters/elijah/foot-stepping.svg"
  1891. }
  1892. },
  1893. plantigradeLeg: {
  1894. height: math.unit(2.34, "feet"),
  1895. name: "Plantigrade Leg",
  1896. image: {
  1897. source: "./media/characters/elijah/plantigrade-leg.svg"
  1898. }
  1899. },
  1900. plantigradeFootLeft: {
  1901. height: math.unit(0.9, "feet"),
  1902. name: "Plantigrade Foot (Left)",
  1903. image: {
  1904. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1905. }
  1906. },
  1907. plantigradeFootRight: {
  1908. height: math.unit(0.9, "feet"),
  1909. name: "Plantigrade Foot (Right)",
  1910. image: {
  1911. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1912. }
  1913. },
  1914. },
  1915. [
  1916. {
  1917. name: "Normal",
  1918. height: math.unit(1.65, "meters")
  1919. },
  1920. {
  1921. name: "Macro",
  1922. height: math.unit(55, "meters"),
  1923. default: true
  1924. },
  1925. {
  1926. name: "Macro+",
  1927. height: math.unit(105, "meters")
  1928. },
  1929. ]
  1930. ))
  1931. characterMakers.push(() => makeCharacter(
  1932. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1933. {
  1934. front: {
  1935. height: math.unit(11, "feet"),
  1936. weight: math.unit(80, "kg"),
  1937. name: "Front",
  1938. image: {
  1939. source: "./media/characters/rai/front.svg",
  1940. extra: 1,
  1941. bottom: 0.03
  1942. }
  1943. },
  1944. side: {
  1945. height: math.unit(11, "feet"),
  1946. weight: math.unit(80, "kg"),
  1947. name: "Side",
  1948. image: {
  1949. source: "./media/characters/rai/side.svg"
  1950. }
  1951. },
  1952. back: {
  1953. height: math.unit(11, "feet"),
  1954. weight: math.unit(80, "lb"),
  1955. name: "Back",
  1956. image: {
  1957. source: "./media/characters/rai/back.svg",
  1958. extra: 1,
  1959. bottom: 0.01
  1960. }
  1961. },
  1962. feral: {
  1963. height: math.unit(11, "feet"),
  1964. weight: math.unit(800, "lb"),
  1965. name: "Feral",
  1966. image: {
  1967. source: "./media/characters/rai/feral.svg",
  1968. extra: 1050 / 659,
  1969. bottom: 0.07
  1970. }
  1971. },
  1972. dragon: {
  1973. height: math.unit(23, "feet"),
  1974. weight: math.unit(50000, "lb"),
  1975. name: "Dragon",
  1976. image: {
  1977. source: "./media/characters/rai/dragon.svg",
  1978. extra: 2498 / 2030,
  1979. bottom: 85.2 / 2584
  1980. }
  1981. },
  1982. maw: {
  1983. height: math.unit(6 / 3.81416, "feet"),
  1984. name: "Maw",
  1985. image: {
  1986. source: "./media/characters/rai/maw.svg"
  1987. }
  1988. },
  1989. },
  1990. [
  1991. {
  1992. name: "Normal",
  1993. height: math.unit(11, "feet")
  1994. },
  1995. {
  1996. name: "Macro",
  1997. height: math.unit(302, "feet"),
  1998. default: true
  1999. },
  2000. ]
  2001. ))
  2002. characterMakers.push(() => makeCharacter(
  2003. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2004. {
  2005. frontDressed: {
  2006. height: math.unit(216, "feet"),
  2007. weight: math.unit(7000000, "lb"),
  2008. name: "Front (Dressed)",
  2009. image: {
  2010. source: "./media/characters/jazzy/front-dressed.svg",
  2011. extra: 2738 / 2651,
  2012. bottom: 41.8 / 2786
  2013. }
  2014. },
  2015. backDressed: {
  2016. height: math.unit(216, "feet"),
  2017. weight: math.unit(7000000, "lb"),
  2018. name: "Back (Dressed)",
  2019. image: {
  2020. source: "./media/characters/jazzy/back-dressed.svg",
  2021. extra: 2775 / 2673,
  2022. bottom: 36.8 / 2817
  2023. }
  2024. },
  2025. front: {
  2026. height: math.unit(216, "feet"),
  2027. weight: math.unit(7000000, "lb"),
  2028. name: "Front",
  2029. image: {
  2030. source: "./media/characters/jazzy/front.svg",
  2031. extra: 2738 / 2651,
  2032. bottom: 41.8 / 2786
  2033. }
  2034. },
  2035. back: {
  2036. height: math.unit(216, "feet"),
  2037. weight: math.unit(7000000, "lb"),
  2038. name: "Back",
  2039. image: {
  2040. source: "./media/characters/jazzy/back.svg",
  2041. extra: 2775 / 2673,
  2042. bottom: 36.8 / 2817
  2043. }
  2044. },
  2045. maw: {
  2046. height: math.unit(20, "feet"),
  2047. name: "Maw",
  2048. image: {
  2049. source: "./media/characters/jazzy/maw.svg"
  2050. }
  2051. },
  2052. paws: {
  2053. height: math.unit(27.5, "feet"),
  2054. name: "Paws",
  2055. image: {
  2056. source: "./media/characters/jazzy/paws.svg"
  2057. }
  2058. },
  2059. eye: {
  2060. height: math.unit(4.4, "feet"),
  2061. name: "Eye",
  2062. image: {
  2063. source: "./media/characters/jazzy/eye.svg"
  2064. }
  2065. },
  2066. droneOffense: {
  2067. height: math.unit(9.5, "inches"),
  2068. name: "Drone (Offense)",
  2069. image: {
  2070. source: "./media/characters/jazzy/drone-offense.svg"
  2071. }
  2072. },
  2073. droneRecon: {
  2074. height: math.unit(9.5, "inches"),
  2075. name: "Drone (Recon)",
  2076. image: {
  2077. source: "./media/characters/jazzy/drone-recon.svg"
  2078. }
  2079. },
  2080. droneDefense: {
  2081. height: math.unit(9.5, "inches"),
  2082. name: "Drone (Defense)",
  2083. image: {
  2084. source: "./media/characters/jazzy/drone-defense.svg"
  2085. }
  2086. },
  2087. },
  2088. [
  2089. {
  2090. name: "Macro",
  2091. height: math.unit(216, "feet"),
  2092. default: true
  2093. },
  2094. ]
  2095. ))
  2096. characterMakers.push(() => makeCharacter(
  2097. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2098. {
  2099. front: {
  2100. height: math.unit(7, "feet"),
  2101. weight: math.unit(80, "kg"),
  2102. name: "Front",
  2103. image: {
  2104. source: "./media/characters/flamm/front.svg",
  2105. extra: 1794 / 1677,
  2106. bottom: 31.7 / 1828.5
  2107. }
  2108. },
  2109. },
  2110. [
  2111. {
  2112. name: "Normal",
  2113. height: math.unit(9.5, "feet")
  2114. },
  2115. {
  2116. name: "Macro",
  2117. height: math.unit(200, "feet"),
  2118. default: true
  2119. },
  2120. ]
  2121. ))
  2122. characterMakers.push(() => makeCharacter(
  2123. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2124. {
  2125. front: {
  2126. height: math.unit(7, "feet"),
  2127. weight: math.unit(80, "kg"),
  2128. name: "Front",
  2129. image: {
  2130. source: "./media/characters/zephiro/front.svg",
  2131. extra: 2309 / 2162,
  2132. bottom: 0.069
  2133. }
  2134. },
  2135. side: {
  2136. height: math.unit(7, "feet"),
  2137. weight: math.unit(80, "kg"),
  2138. name: "Side",
  2139. image: {
  2140. source: "./media/characters/zephiro/side.svg",
  2141. extra: 2403 / 2279,
  2142. bottom: 0.015
  2143. }
  2144. },
  2145. back: {
  2146. height: math.unit(7, "feet"),
  2147. weight: math.unit(80, "kg"),
  2148. name: "Back",
  2149. image: {
  2150. source: "./media/characters/zephiro/back.svg",
  2151. extra: 2373 / 2244,
  2152. bottom: 0.013
  2153. }
  2154. },
  2155. },
  2156. [
  2157. {
  2158. name: "Micro",
  2159. height: math.unit(3, "inches")
  2160. },
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(5 + 3 / 12, "feet"),
  2164. default: true
  2165. },
  2166. {
  2167. name: "Macro",
  2168. height: math.unit(118, "feet")
  2169. },
  2170. ]
  2171. ))
  2172. characterMakers.push(() => makeCharacter(
  2173. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2174. {
  2175. front: {
  2176. height: math.unit(5, "feet"),
  2177. weight: math.unit(90, "kg"),
  2178. name: "Front",
  2179. image: {
  2180. source: "./media/characters/fory/front.svg",
  2181. extra: 2862 / 2674,
  2182. bottom: 180 / 3043.8
  2183. }
  2184. },
  2185. back: {
  2186. height: math.unit(5, "feet"),
  2187. weight: math.unit(90, "kg"),
  2188. name: "Back",
  2189. image: {
  2190. source: "./media/characters/fory/back.svg",
  2191. extra: 2962 / 2791,
  2192. bottom: 106 / 3071.8
  2193. }
  2194. },
  2195. foot: {
  2196. height: math.unit(2.14, "feet"),
  2197. name: "Foot",
  2198. image: {
  2199. source: "./media/characters/fory/foot.svg"
  2200. }
  2201. },
  2202. },
  2203. [
  2204. {
  2205. name: "Normal",
  2206. height: math.unit(5, "feet")
  2207. },
  2208. {
  2209. name: "Macro",
  2210. height: math.unit(50, "feet"),
  2211. default: true
  2212. },
  2213. {
  2214. name: "Megamacro",
  2215. height: math.unit(10, "miles")
  2216. },
  2217. {
  2218. name: "Gigamacro",
  2219. height: math.unit(5, "earths")
  2220. },
  2221. ]
  2222. ))
  2223. characterMakers.push(() => makeCharacter(
  2224. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2225. {
  2226. front: {
  2227. height: math.unit(7, "feet"),
  2228. weight: math.unit(90, "kg"),
  2229. name: "Front",
  2230. image: {
  2231. source: "./media/characters/kurrikage/front.svg",
  2232. extra: 1,
  2233. bottom: 0.035
  2234. }
  2235. },
  2236. back: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(90, "lb"),
  2239. name: "Back",
  2240. image: {
  2241. source: "./media/characters/kurrikage/back.svg"
  2242. }
  2243. },
  2244. paw: {
  2245. height: math.unit(1.5, "feet"),
  2246. name: "Paw",
  2247. image: {
  2248. source: "./media/characters/kurrikage/paw.svg"
  2249. }
  2250. },
  2251. staff: {
  2252. height: math.unit(6.7, "feet"),
  2253. name: "Staff",
  2254. image: {
  2255. source: "./media/characters/kurrikage/staff.svg"
  2256. }
  2257. },
  2258. peek: {
  2259. height: math.unit(1.05, "feet"),
  2260. name: "Peeking",
  2261. image: {
  2262. source: "./media/characters/kurrikage/peek.svg",
  2263. bottom: 0.08
  2264. }
  2265. },
  2266. },
  2267. [
  2268. {
  2269. name: "Normal",
  2270. height: math.unit(12, "feet"),
  2271. default: true
  2272. },
  2273. {
  2274. name: "Big",
  2275. height: math.unit(20, "feet")
  2276. },
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(500, "feet")
  2280. },
  2281. {
  2282. name: "Megamacro",
  2283. height: math.unit(20, "miles")
  2284. },
  2285. ]
  2286. ))
  2287. characterMakers.push(() => makeCharacter(
  2288. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2289. {
  2290. front: {
  2291. height: math.unit(6, "feet"),
  2292. weight: math.unit(75, "kg"),
  2293. name: "Front",
  2294. image: {
  2295. source: "./media/characters/shingo/front.svg",
  2296. extra: 3511 / 3338,
  2297. bottom: 0.005
  2298. }
  2299. },
  2300. paw: {
  2301. height: math.unit(1, "feet"),
  2302. name: "Paw",
  2303. image: {
  2304. source: "./media/characters/shingo/paw.svg"
  2305. }
  2306. },
  2307. },
  2308. [
  2309. {
  2310. name: "Micro",
  2311. height: math.unit(4, "inches")
  2312. },
  2313. {
  2314. name: "Normal",
  2315. height: math.unit(6, "feet"),
  2316. default: true
  2317. },
  2318. {
  2319. name: "Macro",
  2320. height: math.unit(108, "feet")
  2321. }
  2322. ]
  2323. ))
  2324. characterMakers.push(() => makeCharacter(
  2325. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2326. {
  2327. side: {
  2328. height: math.unit(6, "feet"),
  2329. weight: math.unit(75, "kg"),
  2330. name: "Side",
  2331. image: {
  2332. source: "./media/characters/aigey/side.svg"
  2333. }
  2334. },
  2335. },
  2336. [
  2337. {
  2338. name: "Macro",
  2339. height: math.unit(200, "feet"),
  2340. default: true
  2341. },
  2342. {
  2343. name: "Megamacro",
  2344. height: math.unit(100, "miles")
  2345. },
  2346. ]
  2347. )
  2348. )
  2349. characterMakers.push(() => makeCharacter(
  2350. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2351. {
  2352. front: {
  2353. height: math.unit(5 + 5 / 12, "feet"),
  2354. weight: math.unit(75, "kg"),
  2355. name: "Front",
  2356. image: {
  2357. source: "./media/characters/natasha/front.svg",
  2358. extra: 859 / 824,
  2359. bottom: 23 / 879.6
  2360. }
  2361. },
  2362. frontNsfw: {
  2363. height: math.unit(5 + 5 / 12, "feet"),
  2364. weight: math.unit(75, "kg"),
  2365. name: "Front (NSFW)",
  2366. image: {
  2367. source: "./media/characters/natasha/front-nsfw.svg",
  2368. extra: 859 / 824,
  2369. bottom: 23 / 879.6
  2370. }
  2371. },
  2372. frontErect: {
  2373. height: math.unit(5 + 5 / 12, "feet"),
  2374. weight: math.unit(75, "kg"),
  2375. name: "Front (Erect)",
  2376. image: {
  2377. source: "./media/characters/natasha/front-erect.svg",
  2378. extra: 859 / 824,
  2379. bottom: 23 / 879.6
  2380. }
  2381. },
  2382. back: {
  2383. height: math.unit(5 + 5 / 12, "feet"),
  2384. weight: math.unit(75, "kg"),
  2385. name: "Back",
  2386. image: {
  2387. source: "./media/characters/natasha/back.svg",
  2388. extra: 887.9 / 852.6,
  2389. bottom: 9.7 / 896.4
  2390. }
  2391. },
  2392. backAlt: {
  2393. height: math.unit(5 + 5 / 12, "feet"),
  2394. weight: math.unit(75, "kg"),
  2395. name: "Back (Alt)",
  2396. image: {
  2397. source: "./media/characters/natasha/back-alt.svg",
  2398. extra: 1236.7 / 1192,
  2399. bottom: 22.3 / 1258.2
  2400. }
  2401. },
  2402. dick: {
  2403. height: math.unit(1.772, "feet"),
  2404. name: "Dick",
  2405. image: {
  2406. source: "./media/characters/natasha/dick.svg"
  2407. }
  2408. },
  2409. paw: {
  2410. height: math.unit(0.250, "meters"),
  2411. name: "Paw",
  2412. image: {
  2413. source: "./media/characters/natasha/paw.svg"
  2414. }
  2415. },
  2416. },
  2417. [
  2418. {
  2419. name: "Normal",
  2420. height: math.unit(5 + 5 / 12, "feet")
  2421. },
  2422. {
  2423. name: "Large",
  2424. height: math.unit(12, "feet")
  2425. },
  2426. {
  2427. name: "Macro",
  2428. height: math.unit(100, "feet"),
  2429. default: true
  2430. },
  2431. {
  2432. name: "Macro+",
  2433. height: math.unit(260, "feet")
  2434. },
  2435. {
  2436. name: "Macro++",
  2437. height: math.unit(1, "mile")
  2438. },
  2439. ]
  2440. ))
  2441. characterMakers.push(() => makeCharacter(
  2442. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2443. {
  2444. front: {
  2445. height: math.unit(6, "feet"),
  2446. weight: math.unit(75, "kg"),
  2447. name: "Front",
  2448. image: {
  2449. source: "./media/characters/malik/front.svg"
  2450. }
  2451. },
  2452. side: {
  2453. height: math.unit(6, "feet"),
  2454. weight: math.unit(75, "kg"),
  2455. name: "Side",
  2456. image: {
  2457. source: "./media/characters/malik/side.svg",
  2458. extra: 1.1539
  2459. }
  2460. },
  2461. back: {
  2462. height: math.unit(6, "feet"),
  2463. weight: math.unit(75, "kg"),
  2464. name: "Back",
  2465. image: {
  2466. source: "./media/characters/malik/back.svg"
  2467. }
  2468. },
  2469. },
  2470. [
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(156, "feet"),
  2474. default: true
  2475. },
  2476. {
  2477. name: "Macro+",
  2478. height: math.unit(1188, "feet")
  2479. },
  2480. ]
  2481. ))
  2482. characterMakers.push(() => makeCharacter(
  2483. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2484. {
  2485. front: {
  2486. height: math.unit(6, "feet"),
  2487. weight: math.unit(75, "kg"),
  2488. name: "Front",
  2489. image: {
  2490. source: "./media/characters/sefer/front.svg",
  2491. extra: 848 / 659,
  2492. bottom: 28.3 / 876.442
  2493. }
  2494. },
  2495. back: {
  2496. height: math.unit(6, "feet"),
  2497. weight: math.unit(75, "kg"),
  2498. name: "Back",
  2499. image: {
  2500. source: "./media/characters/sefer/back.svg",
  2501. extra: 864 / 695,
  2502. bottom: 10 / 871
  2503. }
  2504. },
  2505. frontDressed: {
  2506. height: math.unit(6, "feet"),
  2507. weight: math.unit(75, "kg"),
  2508. name: "Front (Dressed)",
  2509. image: {
  2510. source: "./media/characters/sefer/front-dressed.svg",
  2511. extra: 839 / 653,
  2512. bottom: 37.6 / 878
  2513. }
  2514. },
  2515. },
  2516. [
  2517. {
  2518. name: "Normal",
  2519. height: math.unit(6, "feet"),
  2520. default: true
  2521. },
  2522. ]
  2523. ))
  2524. characterMakers.push(() => makeCharacter(
  2525. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2526. {
  2527. body: {
  2528. height: math.unit(2.2428, "meter"),
  2529. weight: math.unit(124.738, "kg"),
  2530. name: "Body",
  2531. image: {
  2532. extra: 1225 / 1050,
  2533. source: "./media/characters/north/front.svg"
  2534. }
  2535. }
  2536. },
  2537. [
  2538. {
  2539. name: "Micro",
  2540. height: math.unit(4, "inches")
  2541. },
  2542. {
  2543. name: "Macro",
  2544. height: math.unit(63, "meters")
  2545. },
  2546. {
  2547. name: "Megamacro",
  2548. height: math.unit(101, "miles"),
  2549. default: true
  2550. }
  2551. ]
  2552. ))
  2553. characterMakers.push(() => makeCharacter(
  2554. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2555. {
  2556. angled: {
  2557. height: math.unit(4, "meter"),
  2558. weight: math.unit(150, "kg"),
  2559. name: "Angled",
  2560. image: {
  2561. source: "./media/characters/talan/angled-sfw.svg",
  2562. bottom: 29 / 3734
  2563. }
  2564. },
  2565. angledNsfw: {
  2566. height: math.unit(4, "meter"),
  2567. weight: math.unit(150, "kg"),
  2568. name: "Angled (NSFW)",
  2569. image: {
  2570. source: "./media/characters/talan/angled-nsfw.svg",
  2571. bottom: 29 / 3734
  2572. }
  2573. },
  2574. frontNsfw: {
  2575. height: math.unit(4, "meter"),
  2576. weight: math.unit(150, "kg"),
  2577. name: "Front (NSFW)",
  2578. image: {
  2579. source: "./media/characters/talan/front-nsfw.svg",
  2580. bottom: 29 / 3734
  2581. }
  2582. },
  2583. sideNsfw: {
  2584. height: math.unit(4, "meter"),
  2585. weight: math.unit(150, "kg"),
  2586. name: "Side (NSFW)",
  2587. image: {
  2588. source: "./media/characters/talan/side-nsfw.svg",
  2589. bottom: 29 / 3734
  2590. }
  2591. },
  2592. back: {
  2593. height: math.unit(4, "meter"),
  2594. weight: math.unit(150, "kg"),
  2595. name: "Back",
  2596. image: {
  2597. source: "./media/characters/talan/back.svg"
  2598. }
  2599. },
  2600. dickBottom: {
  2601. height: math.unit(0.621, "meter"),
  2602. name: "Dick (Bottom)",
  2603. image: {
  2604. source: "./media/characters/talan/dick-bottom.svg"
  2605. }
  2606. },
  2607. dickTop: {
  2608. height: math.unit(0.621, "meter"),
  2609. name: "Dick (Top)",
  2610. image: {
  2611. source: "./media/characters/talan/dick-top.svg"
  2612. }
  2613. },
  2614. dickSide: {
  2615. height: math.unit(0.305, "meter"),
  2616. name: "Dick (Side)",
  2617. image: {
  2618. source: "./media/characters/talan/dick-side.svg"
  2619. }
  2620. },
  2621. dickFront: {
  2622. height: math.unit(0.305, "meter"),
  2623. name: "Dick (Front)",
  2624. image: {
  2625. source: "./media/characters/talan/dick-front.svg"
  2626. }
  2627. },
  2628. },
  2629. [
  2630. {
  2631. name: "Normal",
  2632. height: math.unit(4, "meters")
  2633. },
  2634. {
  2635. name: "Macro",
  2636. height: math.unit(100, "meters")
  2637. },
  2638. {
  2639. name: "Megamacro",
  2640. height: math.unit(2, "miles"),
  2641. default: true
  2642. },
  2643. {
  2644. name: "Gigamacro",
  2645. height: math.unit(5000, "miles")
  2646. },
  2647. {
  2648. name: "Teramacro",
  2649. height: math.unit(100, "parsecs")
  2650. }
  2651. ]
  2652. ))
  2653. characterMakers.push(() => makeCharacter(
  2654. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2655. {
  2656. front: {
  2657. height: math.unit(2, "meter"),
  2658. weight: math.unit(90, "kg"),
  2659. name: "Front",
  2660. image: {
  2661. source: "./media/characters/gael'rathus/front.svg"
  2662. }
  2663. },
  2664. frontAlt: {
  2665. height: math.unit(2, "meter"),
  2666. weight: math.unit(90, "kg"),
  2667. name: "Front (alt)",
  2668. image: {
  2669. source: "./media/characters/gael'rathus/front-alt.svg"
  2670. }
  2671. },
  2672. frontAlt2: {
  2673. height: math.unit(2, "meter"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Front (alt 2)",
  2676. image: {
  2677. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2678. }
  2679. }
  2680. },
  2681. [
  2682. {
  2683. name: "Normal",
  2684. height: math.unit(9, "feet"),
  2685. default: true
  2686. },
  2687. {
  2688. name: "Large",
  2689. height: math.unit(25, "feet")
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(0.25, "miles")
  2694. },
  2695. {
  2696. name: "Megamacro",
  2697. height: math.unit(10, "miles")
  2698. }
  2699. ]
  2700. ))
  2701. characterMakers.push(() => makeCharacter(
  2702. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2703. {
  2704. side: {
  2705. height: math.unit(2, "meter"),
  2706. weight: math.unit(140, "kg"),
  2707. name: "Side",
  2708. image: {
  2709. source: "./media/characters/sosha/side.svg",
  2710. bottom: 0.042
  2711. }
  2712. },
  2713. },
  2714. [
  2715. {
  2716. name: "Normal",
  2717. height: math.unit(12, "feet"),
  2718. default: true
  2719. }
  2720. ]
  2721. ))
  2722. characterMakers.push(() => makeCharacter(
  2723. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2724. {
  2725. side: {
  2726. height: math.unit(5 + 5 / 12, "feet"),
  2727. weight: math.unit(170, "kg"),
  2728. name: "Side",
  2729. image: {
  2730. source: "./media/characters/runnola/side.svg",
  2731. extra: 741 / 448,
  2732. bottom: 0.05
  2733. }
  2734. },
  2735. },
  2736. [
  2737. {
  2738. name: "Small",
  2739. height: math.unit(3, "feet")
  2740. },
  2741. {
  2742. name: "Normal",
  2743. height: math.unit(5 + 5 / 12, "feet"),
  2744. default: true
  2745. },
  2746. {
  2747. name: "Big",
  2748. height: math.unit(10, "feet")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(2, "meter"),
  2757. weight: math.unit(50, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/kurribird/front.svg",
  2761. bottom: 0.015
  2762. }
  2763. },
  2764. frontAlt: {
  2765. height: math.unit(1.5, "meter"),
  2766. weight: math.unit(50, "kg"),
  2767. name: "Front (Alt)",
  2768. image: {
  2769. source: "./media/characters/kurribird/front-alt.svg",
  2770. extra: 1.45
  2771. }
  2772. },
  2773. },
  2774. [
  2775. {
  2776. name: "Normal",
  2777. height: math.unit(7, "feet")
  2778. },
  2779. {
  2780. name: "Big",
  2781. height: math.unit(12, "feet"),
  2782. default: true
  2783. },
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(1500, "feet")
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(2, "miles")
  2791. }
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(2, "meter"),
  2799. weight: math.unit(80, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/elbial/front.svg",
  2803. extra: 1643 / 1556,
  2804. bottom: 60.2 / 1696
  2805. }
  2806. },
  2807. side: {
  2808. height: math.unit(2, "meter"),
  2809. weight: math.unit(80, "kg"),
  2810. name: "Side",
  2811. image: {
  2812. source: "./media/characters/elbial/side.svg",
  2813. extra: 1630 / 1565,
  2814. bottom: 71.5 / 1697
  2815. }
  2816. },
  2817. back: {
  2818. height: math.unit(2, "meter"),
  2819. weight: math.unit(80, "kg"),
  2820. name: "Back",
  2821. image: {
  2822. source: "./media/characters/elbial/back.svg",
  2823. extra: 1668 / 1595,
  2824. bottom: 5.6 / 1672
  2825. }
  2826. },
  2827. frontDressed: {
  2828. height: math.unit(2, "meter"),
  2829. weight: math.unit(80, "kg"),
  2830. name: "Front (Dressed)",
  2831. image: {
  2832. source: "./media/characters/elbial/front-dressed.svg",
  2833. extra: 1653 / 1584,
  2834. bottom: 57 / 1708
  2835. }
  2836. },
  2837. genitals: {
  2838. height: math.unit(2 / 3.367, "meter"),
  2839. name: "Genitals",
  2840. image: {
  2841. source: "./media/characters/elbial/genitals.svg"
  2842. }
  2843. },
  2844. },
  2845. [
  2846. {
  2847. name: "Large",
  2848. height: math.unit(100, "feet")
  2849. },
  2850. {
  2851. name: "Macro",
  2852. height: math.unit(500, "feet"),
  2853. default: true
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(10, "miles")
  2858. },
  2859. {
  2860. name: "Gigamacro",
  2861. height: math.unit(25000, "miles")
  2862. },
  2863. {
  2864. name: "Full-Size",
  2865. height: math.unit(8000000, "gigaparsecs")
  2866. }
  2867. ]
  2868. ))
  2869. characterMakers.push(() => makeCharacter(
  2870. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2871. {
  2872. front: {
  2873. height: math.unit(2, "meter"),
  2874. weight: math.unit(60, "kg"),
  2875. name: "Front",
  2876. image: {
  2877. source: "./media/characters/noah/front.svg"
  2878. }
  2879. },
  2880. talons: {
  2881. height: math.unit(0.315, "meter"),
  2882. name: "Talons",
  2883. image: {
  2884. source: "./media/characters/noah/talons.svg"
  2885. }
  2886. }
  2887. },
  2888. [
  2889. {
  2890. name: "Large",
  2891. height: math.unit(50, "feet")
  2892. },
  2893. {
  2894. name: "Macro",
  2895. height: math.unit(750, "feet"),
  2896. default: true
  2897. },
  2898. {
  2899. name: "Megamacro",
  2900. height: math.unit(50, "miles")
  2901. },
  2902. {
  2903. name: "Gigamacro",
  2904. height: math.unit(100000, "miles")
  2905. },
  2906. {
  2907. name: "Full-Size",
  2908. height: math.unit(3000000000, "miles")
  2909. }
  2910. ]
  2911. ))
  2912. characterMakers.push(() => makeCharacter(
  2913. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2914. {
  2915. front: {
  2916. height: math.unit(2, "meter"),
  2917. weight: math.unit(80, "kg"),
  2918. name: "Front",
  2919. image: {
  2920. source: "./media/characters/natalya/front.svg"
  2921. }
  2922. },
  2923. back: {
  2924. height: math.unit(2, "meter"),
  2925. weight: math.unit(80, "kg"),
  2926. name: "Back",
  2927. image: {
  2928. source: "./media/characters/natalya/back.svg"
  2929. }
  2930. }
  2931. },
  2932. [
  2933. {
  2934. name: "Normal",
  2935. height: math.unit(150, "feet"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Megamacro",
  2940. height: math.unit(5, "miles")
  2941. },
  2942. {
  2943. name: "Full-Size",
  2944. height: math.unit(600, "kiloparsecs")
  2945. }
  2946. ]
  2947. ))
  2948. characterMakers.push(() => makeCharacter(
  2949. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2950. {
  2951. front: {
  2952. height: math.unit(2, "meter"),
  2953. weight: math.unit(50, "kg"),
  2954. name: "Front",
  2955. image: {
  2956. source: "./media/characters/erestrebah/front.svg",
  2957. extra: 208 / 193,
  2958. bottom: 0.055
  2959. }
  2960. },
  2961. back: {
  2962. height: math.unit(2, "meter"),
  2963. weight: math.unit(50, "kg"),
  2964. name: "Back",
  2965. image: {
  2966. source: "./media/characters/erestrebah/back.svg",
  2967. extra: 1.3
  2968. }
  2969. }
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(10, "feet")
  2975. },
  2976. {
  2977. name: "Large",
  2978. height: math.unit(50, "feet"),
  2979. default: true
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(300, "feet")
  2984. },
  2985. {
  2986. name: "Macro+",
  2987. height: math.unit(750, "feet")
  2988. },
  2989. {
  2990. name: "Megamacro",
  2991. height: math.unit(3, "miles")
  2992. }
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(2, "meter"),
  3000. weight: math.unit(80, "kg"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/jennifer/front.svg",
  3004. bottom: 0.11,
  3005. extra: 1.16
  3006. }
  3007. },
  3008. frontAlt: {
  3009. height: math.unit(2, "meter"),
  3010. weight: math.unit(80, "kg"),
  3011. name: "Front (Alt)",
  3012. image: {
  3013. source: "./media/characters/jennifer/front-alt.svg"
  3014. }
  3015. }
  3016. },
  3017. [
  3018. {
  3019. name: "Canon Height",
  3020. height: math.unit(120, "feet"),
  3021. default: true
  3022. },
  3023. {
  3024. name: "Macro+",
  3025. height: math.unit(300, "feet")
  3026. },
  3027. {
  3028. name: "Megamacro",
  3029. height: math.unit(20000, "feet")
  3030. }
  3031. ]
  3032. ))
  3033. characterMakers.push(() => makeCharacter(
  3034. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3035. {
  3036. front: {
  3037. height: math.unit(2, "meter"),
  3038. weight: math.unit(50, "kg"),
  3039. name: "Front",
  3040. image: {
  3041. source: "./media/characters/kalista/front.svg",
  3042. extra: 1947 / 1700,
  3043. bottom: 76.6 / 1412.98
  3044. }
  3045. },
  3046. back: {
  3047. height: math.unit(2, "meter"),
  3048. weight: math.unit(50, "kg"),
  3049. name: "Back",
  3050. image: {
  3051. source: "./media/characters/kalista/back.svg",
  3052. extra: 1366 / 1156,
  3053. bottom: 33.9 / 1362.78
  3054. }
  3055. }
  3056. },
  3057. [
  3058. {
  3059. name: "Uncomfortably Small",
  3060. height: math.unit(10, "feet")
  3061. },
  3062. {
  3063. name: "Small",
  3064. height: math.unit(30, "feet")
  3065. },
  3066. {
  3067. name: "Macro",
  3068. height: math.unit(100, "feet"),
  3069. default: true
  3070. },
  3071. {
  3072. name: "Macro+",
  3073. height: math.unit(2000, "feet")
  3074. },
  3075. {
  3076. name: "True Form",
  3077. height: math.unit(8924, "miles")
  3078. }
  3079. ]
  3080. ))
  3081. characterMakers.push(() => makeCharacter(
  3082. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3083. {
  3084. front: {
  3085. height: math.unit(2, "meter"),
  3086. weight: math.unit(120, "kg"),
  3087. name: "Front",
  3088. image: {
  3089. source: "./media/characters/ggv/front.svg"
  3090. }
  3091. },
  3092. side: {
  3093. height: math.unit(2, "meter"),
  3094. weight: math.unit(120, "kg"),
  3095. name: "Side",
  3096. image: {
  3097. source: "./media/characters/ggv/side.svg"
  3098. }
  3099. }
  3100. },
  3101. [
  3102. {
  3103. name: "Extremely Puny",
  3104. height: math.unit(9 + 5 / 12, "feet")
  3105. },
  3106. {
  3107. name: "Horribly Small",
  3108. height: math.unit(47.7, "miles"),
  3109. default: true
  3110. },
  3111. {
  3112. name: "Reasonably Sized",
  3113. height: math.unit(25000, "parsecs")
  3114. },
  3115. {
  3116. name: "Slightly Uncompressed",
  3117. height: math.unit(7.77e31, "parsecs")
  3118. },
  3119. {
  3120. name: "Omniversal",
  3121. height: math.unit(1e300, "meters")
  3122. },
  3123. ]
  3124. ))
  3125. characterMakers.push(() => makeCharacter(
  3126. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3127. {
  3128. front: {
  3129. height: math.unit(2, "meter"),
  3130. weight: math.unit(75, "lb"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/napalm/front.svg"
  3134. }
  3135. },
  3136. back: {
  3137. height: math.unit(2, "meter"),
  3138. weight: math.unit(75, "lb"),
  3139. name: "Back",
  3140. image: {
  3141. source: "./media/characters/napalm/back.svg"
  3142. }
  3143. }
  3144. },
  3145. [
  3146. {
  3147. name: "Standard",
  3148. height: math.unit(55, "feet"),
  3149. default: true
  3150. }
  3151. ]
  3152. ))
  3153. characterMakers.push(() => makeCharacter(
  3154. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3155. {
  3156. front: {
  3157. height: math.unit(7 + 5 / 6, "feet"),
  3158. weight: math.unit(325, "lb"),
  3159. name: "Front",
  3160. image: {
  3161. source: "./media/characters/asana/front.svg",
  3162. extra: 1133 / 1060,
  3163. bottom: 15.2 / 1148.6
  3164. }
  3165. },
  3166. back: {
  3167. height: math.unit(7 + 5 / 6, "feet"),
  3168. weight: math.unit(325, "lb"),
  3169. name: "Back",
  3170. image: {
  3171. source: "./media/characters/asana/back.svg",
  3172. extra: 1114 / 1043,
  3173. bottom: 5 / 1120
  3174. }
  3175. },
  3176. dressedDark: {
  3177. height: math.unit(7 + 5 / 6, "feet"),
  3178. weight: math.unit(325, "lb"),
  3179. name: "Dressed (Dark)",
  3180. image: {
  3181. source: "./media/characters/asana/dressed-dark.svg",
  3182. extra: 1133 / 1060,
  3183. bottom: 15.2 / 1148.6
  3184. }
  3185. },
  3186. dressedLight: {
  3187. height: math.unit(7 + 5 / 6, "feet"),
  3188. weight: math.unit(325, "lb"),
  3189. name: "Dressed (Light)",
  3190. image: {
  3191. source: "./media/characters/asana/dressed-light.svg",
  3192. extra: 1133 / 1060,
  3193. bottom: 15.2 / 1148.6
  3194. }
  3195. },
  3196. },
  3197. [
  3198. {
  3199. name: "Standard",
  3200. height: math.unit(7 + 5 / 6, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Large",
  3205. height: math.unit(10, "meters")
  3206. },
  3207. {
  3208. name: "Macro",
  3209. height: math.unit(2500, "meters")
  3210. },
  3211. {
  3212. name: "Megamacro",
  3213. height: math.unit(5e6, "meters")
  3214. },
  3215. {
  3216. name: "Examacro",
  3217. height: math.unit(5e12, "lightyears")
  3218. },
  3219. {
  3220. name: "Max Size",
  3221. height: math.unit(1e31, "lightyears")
  3222. }
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3227. {
  3228. front: {
  3229. height: math.unit(2, "meter"),
  3230. weight: math.unit(60, "kg"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/ebony/front.svg",
  3234. bottom: 0.03,
  3235. extra: 1045 / 810 + 0.03
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(2, "meter"),
  3240. weight: math.unit(60, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/ebony/side.svg",
  3244. bottom: 0.03,
  3245. extra: 1045 / 810 + 0.03
  3246. }
  3247. },
  3248. back: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(60, "kg"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/ebony/back.svg",
  3254. bottom: 0.01,
  3255. extra: 1045 / 810 + 0.01
  3256. }
  3257. },
  3258. },
  3259. [
  3260. // TODO check why I did this lol
  3261. {
  3262. name: "Standard",
  3263. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3264. default: true
  3265. },
  3266. {
  3267. name: "Macro",
  3268. height: math.unit(200, "feet")
  3269. },
  3270. {
  3271. name: "Gigamacro",
  3272. height: math.unit(13000, "km")
  3273. }
  3274. ]
  3275. ))
  3276. characterMakers.push(() => makeCharacter(
  3277. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3278. {
  3279. front: {
  3280. height: math.unit(6, "feet"),
  3281. weight: math.unit(175, "lb"),
  3282. name: "Front",
  3283. image: {
  3284. source: "./media/characters/mountain/front.svg",
  3285. extra: 972 / 955,
  3286. bottom: 64 / 1036.6
  3287. }
  3288. },
  3289. back: {
  3290. height: math.unit(6, "feet"),
  3291. weight: math.unit(175, "lb"),
  3292. name: "Back",
  3293. image: {
  3294. source: "./media/characters/mountain/back.svg",
  3295. extra: 970 / 950,
  3296. bottom: 28.25 / 999
  3297. }
  3298. },
  3299. },
  3300. [
  3301. {
  3302. name: "Large",
  3303. height: math.unit(20, "meters")
  3304. },
  3305. {
  3306. name: "Macro",
  3307. height: math.unit(300, "meters")
  3308. },
  3309. {
  3310. name: "Gigamacro",
  3311. height: math.unit(10000, "km"),
  3312. default: true
  3313. },
  3314. {
  3315. name: "Examacro",
  3316. height: math.unit(10e9, "lightyears")
  3317. }
  3318. ]
  3319. ))
  3320. characterMakers.push(() => makeCharacter(
  3321. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3322. {
  3323. front: {
  3324. height: math.unit(8, "feet"),
  3325. weight: math.unit(500, "lb"),
  3326. name: "Front",
  3327. image: {
  3328. source: "./media/characters/rick/front.svg"
  3329. }
  3330. }
  3331. },
  3332. [
  3333. {
  3334. name: "Normal",
  3335. height: math.unit(8, "feet"),
  3336. default: true
  3337. },
  3338. {
  3339. name: "Macro",
  3340. height: math.unit(5, "km")
  3341. }
  3342. ]
  3343. ))
  3344. characterMakers.push(() => makeCharacter(
  3345. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3346. {
  3347. front: {
  3348. height: math.unit(8, "feet"),
  3349. weight: math.unit(120, "lb"),
  3350. name: "Front",
  3351. image: {
  3352. source: "./media/characters/ona/front.svg"
  3353. }
  3354. },
  3355. frontAlt: {
  3356. height: math.unit(8, "feet"),
  3357. weight: math.unit(120, "lb"),
  3358. name: "Front (Alt)",
  3359. image: {
  3360. source: "./media/characters/ona/front-alt.svg"
  3361. }
  3362. },
  3363. back: {
  3364. height: math.unit(8, "feet"),
  3365. weight: math.unit(120, "lb"),
  3366. name: "Back",
  3367. image: {
  3368. source: "./media/characters/ona/back.svg"
  3369. }
  3370. },
  3371. foot: {
  3372. height: math.unit(1.1, "feet"),
  3373. name: "Foot",
  3374. image: {
  3375. source: "./media/characters/ona/foot.svg"
  3376. }
  3377. }
  3378. },
  3379. [
  3380. {
  3381. name: "Megamacro",
  3382. height: math.unit(70, "km"),
  3383. default: true
  3384. },
  3385. {
  3386. name: "Gigamacro",
  3387. height: math.unit(681818, "miles")
  3388. },
  3389. {
  3390. name: "Examacro",
  3391. height: math.unit(3800000, "lightyears")
  3392. },
  3393. ]
  3394. ))
  3395. characterMakers.push(() => makeCharacter(
  3396. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3397. {
  3398. front: {
  3399. height: math.unit(12, "feet"),
  3400. weight: math.unit(3000, "lb"),
  3401. name: "Front",
  3402. image: {
  3403. source: "./media/characters/mech/front.svg",
  3404. extra: 2900/2770,
  3405. bottom: 110/3010
  3406. }
  3407. },
  3408. back: {
  3409. height: math.unit(12, "feet"),
  3410. weight: math.unit(3000, "lb"),
  3411. name: "Back",
  3412. image: {
  3413. source: "./media/characters/mech/back.svg",
  3414. extra: 3011/2890,
  3415. bottom: 94/3105
  3416. }
  3417. },
  3418. maw: {
  3419. height: math.unit(3.07, "feet"),
  3420. name: "Maw",
  3421. image: {
  3422. source: "./media/characters/mech/maw.svg"
  3423. }
  3424. },
  3425. head: {
  3426. height: math.unit(2.82, "feet"),
  3427. name: "Head",
  3428. image: {
  3429. source: "./media/characters/mech/head.svg"
  3430. }
  3431. },
  3432. dick: {
  3433. height: math.unit(1.43, "feet"),
  3434. name: "Dick",
  3435. image: {
  3436. source: "./media/characters/mech/dick.svg"
  3437. }
  3438. },
  3439. },
  3440. [
  3441. {
  3442. name: "Normal",
  3443. height: math.unit(12, "feet")
  3444. },
  3445. {
  3446. name: "Macro",
  3447. height: math.unit(300, "feet"),
  3448. default: true
  3449. },
  3450. {
  3451. name: "Macro+",
  3452. height: math.unit(1500, "feet")
  3453. },
  3454. ]
  3455. ))
  3456. characterMakers.push(() => makeCharacter(
  3457. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3458. {
  3459. front: {
  3460. height: math.unit(1.3, "meter"),
  3461. weight: math.unit(30, "kg"),
  3462. name: "Front",
  3463. image: {
  3464. source: "./media/characters/gregory/front.svg",
  3465. }
  3466. }
  3467. },
  3468. [
  3469. {
  3470. name: "Normal",
  3471. height: math.unit(1.3, "meter"),
  3472. default: true
  3473. },
  3474. {
  3475. name: "Macro",
  3476. height: math.unit(20, "meter")
  3477. }
  3478. ]
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3482. {
  3483. front: {
  3484. height: math.unit(2.8, "meter"),
  3485. weight: math.unit(200, "kg"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/elory/front.svg",
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(2.8, "meter"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(38, "meter")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(470, "feet"),
  3509. weight: math.unit(924, "tons"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/angelpatamon/front.svg",
  3513. }
  3514. }
  3515. },
  3516. [
  3517. {
  3518. name: "Normal",
  3519. height: math.unit(470, "feet"),
  3520. default: true
  3521. },
  3522. {
  3523. name: "Deity Size I",
  3524. height: math.unit(28651.2, "km")
  3525. },
  3526. {
  3527. name: "Deity Size II",
  3528. height: math.unit(171907.2, "km")
  3529. }
  3530. ]
  3531. ))
  3532. characterMakers.push(() => makeCharacter(
  3533. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3534. {
  3535. side: {
  3536. height: math.unit(7.2, "meter"),
  3537. weight: math.unit(8.2, "tons"),
  3538. name: "Side",
  3539. image: {
  3540. source: "./media/characters/cryae/side.svg",
  3541. extra: 3500 / 1500
  3542. }
  3543. }
  3544. },
  3545. [
  3546. {
  3547. name: "Normal",
  3548. height: math.unit(7.2, "meter"),
  3549. default: true
  3550. }
  3551. ]
  3552. ))
  3553. characterMakers.push(() => makeCharacter(
  3554. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3555. {
  3556. front: {
  3557. height: math.unit(6, "feet"),
  3558. weight: math.unit(175, "lb"),
  3559. name: "Front",
  3560. image: {
  3561. source: "./media/characters/xera/front.svg",
  3562. extra: 2377 / 1972,
  3563. bottom: 75.5 / 2452
  3564. }
  3565. },
  3566. side: {
  3567. height: math.unit(6, "feet"),
  3568. weight: math.unit(175, "lb"),
  3569. name: "Side",
  3570. image: {
  3571. source: "./media/characters/xera/side.svg",
  3572. extra: 2345 / 2019,
  3573. bottom: 39.7 / 2384
  3574. }
  3575. },
  3576. back: {
  3577. height: math.unit(6, "feet"),
  3578. weight: math.unit(175, "lb"),
  3579. name: "Back",
  3580. image: {
  3581. source: "./media/characters/xera/back.svg",
  3582. extra: 2095 / 1984,
  3583. bottom: 67 / 2166
  3584. }
  3585. },
  3586. },
  3587. [
  3588. {
  3589. name: "Small",
  3590. height: math.unit(10, "feet")
  3591. },
  3592. {
  3593. name: "Macro",
  3594. height: math.unit(500, "meters"),
  3595. default: true
  3596. },
  3597. {
  3598. name: "Macro+",
  3599. height: math.unit(10, "km")
  3600. },
  3601. {
  3602. name: "Gigamacro",
  3603. height: math.unit(25000, "km")
  3604. },
  3605. {
  3606. name: "Teramacro",
  3607. height: math.unit(3e6, "km")
  3608. }
  3609. ]
  3610. ))
  3611. characterMakers.push(() => makeCharacter(
  3612. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3613. {
  3614. front: {
  3615. height: math.unit(6, "feet"),
  3616. weight: math.unit(175, "lb"),
  3617. name: "Front",
  3618. image: {
  3619. source: "./media/characters/nebula/front.svg",
  3620. extra: 2566 / 2362,
  3621. bottom: 81 / 2644
  3622. }
  3623. }
  3624. },
  3625. [
  3626. {
  3627. name: "Small",
  3628. height: math.unit(4.5, "meters")
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(1500, "meters"),
  3633. default: true
  3634. },
  3635. {
  3636. name: "Megamacro",
  3637. height: math.unit(150, "km")
  3638. },
  3639. {
  3640. name: "Gigamacro",
  3641. height: math.unit(27000, "km")
  3642. }
  3643. ]
  3644. ))
  3645. characterMakers.push(() => makeCharacter(
  3646. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3647. {
  3648. front: {
  3649. height: math.unit(6, "feet"),
  3650. weight: math.unit(225, "lb"),
  3651. name: "Front",
  3652. image: {
  3653. source: "./media/characters/abysgar/front.svg"
  3654. }
  3655. }
  3656. },
  3657. [
  3658. {
  3659. name: "Small",
  3660. height: math.unit(4.5, "meters")
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(1250, "meters"),
  3665. default: true
  3666. },
  3667. {
  3668. name: "Megamacro",
  3669. height: math.unit(125, "km")
  3670. },
  3671. {
  3672. name: "Gigamacro",
  3673. height: math.unit(26000, "km")
  3674. }
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3679. {
  3680. front: {
  3681. height: math.unit(6, "feet"),
  3682. weight: math.unit(180, "lb"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/yakuz/front.svg"
  3686. }
  3687. }
  3688. },
  3689. [
  3690. {
  3691. name: "Small",
  3692. height: math.unit(5, "meters")
  3693. },
  3694. {
  3695. name: "Macro",
  3696. height: math.unit(1500, "meters"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Megamacro",
  3701. height: math.unit(200, "km")
  3702. },
  3703. {
  3704. name: "Gigamacro",
  3705. height: math.unit(100000, "km")
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3711. {
  3712. front: {
  3713. height: math.unit(6, "feet"),
  3714. weight: math.unit(175, "lb"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/mirova/front.svg",
  3718. extra: 3334 / 3071,
  3719. bottom: 42 / 3375.6
  3720. }
  3721. }
  3722. },
  3723. [
  3724. {
  3725. name: "Small",
  3726. height: math.unit(5, "meters")
  3727. },
  3728. {
  3729. name: "Macro",
  3730. height: math.unit(900, "meters"),
  3731. default: true
  3732. },
  3733. {
  3734. name: "Megamacro",
  3735. height: math.unit(135, "km")
  3736. },
  3737. {
  3738. name: "Gigamacro",
  3739. height: math.unit(20000, "km")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3745. {
  3746. side: {
  3747. height: math.unit(28.35, "feet"),
  3748. weight: math.unit(99.75, "tons"),
  3749. name: "Side",
  3750. image: {
  3751. source: "./media/characters/asana-mech/side.svg",
  3752. extra: 923 / 699,
  3753. bottom: 50 / 975
  3754. }
  3755. },
  3756. chaingun: {
  3757. height: math.unit(7, "feet"),
  3758. weight: math.unit(2400, "lb"),
  3759. name: "Chaingun",
  3760. image: {
  3761. source: "./media/characters/asana-mech/chaingun.svg"
  3762. }
  3763. },
  3764. laser: {
  3765. height: math.unit(7.12, "feet"),
  3766. weight: math.unit(2000, "lb"),
  3767. name: "Laser",
  3768. image: {
  3769. source: "./media/characters/asana-mech/laser.svg"
  3770. }
  3771. },
  3772. },
  3773. [
  3774. {
  3775. name: "Normal",
  3776. height: math.unit(28.35, "feet"),
  3777. default: true
  3778. },
  3779. {
  3780. name: "Macro",
  3781. height: math.unit(2500, "feet")
  3782. },
  3783. {
  3784. name: "Megamacro",
  3785. height: math.unit(25, "miles")
  3786. },
  3787. {
  3788. name: "Examacro",
  3789. height: math.unit(6e8, "lightyears")
  3790. },
  3791. ]
  3792. ))
  3793. characterMakers.push(() => makeCharacter(
  3794. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3795. {
  3796. front: {
  3797. height: math.unit(5, "meters"),
  3798. weight: math.unit(1000, "kg"),
  3799. name: "Front",
  3800. image: {
  3801. source: "./media/characters/asche/front.svg",
  3802. extra: 1258 / 1190,
  3803. bottom: 47 / 1305
  3804. }
  3805. },
  3806. frontUnderwear: {
  3807. height: math.unit(5, "meters"),
  3808. weight: math.unit(1000, "kg"),
  3809. name: "Front (Underwear)",
  3810. image: {
  3811. source: "./media/characters/asche/front-underwear.svg",
  3812. extra: 1258 / 1190,
  3813. bottom: 47 / 1305
  3814. }
  3815. },
  3816. frontDressed: {
  3817. height: math.unit(5, "meters"),
  3818. weight: math.unit(1000, "kg"),
  3819. name: "Front (Dressed)",
  3820. image: {
  3821. source: "./media/characters/asche/front-dressed.svg",
  3822. extra: 1258 / 1190,
  3823. bottom: 47 / 1305
  3824. }
  3825. },
  3826. frontArmor: {
  3827. height: math.unit(5, "meters"),
  3828. weight: math.unit(1000, "kg"),
  3829. name: "Front (Armored)",
  3830. image: {
  3831. source: "./media/characters/asche/front-armored.svg",
  3832. extra: 1374 / 1308,
  3833. bottom: 23 / 1397
  3834. }
  3835. },
  3836. mp724: {
  3837. height: math.unit(0.96, "meters"),
  3838. weight: math.unit(38, "kg"),
  3839. name: "H&K MP724",
  3840. image: {
  3841. source: "./media/characters/asche/h&k-mp724.svg"
  3842. }
  3843. },
  3844. side: {
  3845. height: math.unit(5, "meters"),
  3846. weight: math.unit(1000, "kg"),
  3847. name: "Side",
  3848. image: {
  3849. source: "./media/characters/asche/side.svg",
  3850. extra: 1717 / 1609,
  3851. bottom: 0.005
  3852. }
  3853. },
  3854. back: {
  3855. height: math.unit(5, "meters"),
  3856. weight: math.unit(1000, "kg"),
  3857. name: "Back",
  3858. image: {
  3859. source: "./media/characters/asche/back.svg",
  3860. extra: 1570 / 1501
  3861. }
  3862. },
  3863. },
  3864. [
  3865. {
  3866. name: "DEFCON 5",
  3867. height: math.unit(5, "meters")
  3868. },
  3869. {
  3870. name: "DEFCON 4",
  3871. height: math.unit(500, "meters"),
  3872. default: true
  3873. },
  3874. {
  3875. name: "DEFCON 3",
  3876. height: math.unit(5, "km")
  3877. },
  3878. {
  3879. name: "DEFCON 2",
  3880. height: math.unit(500, "km")
  3881. },
  3882. {
  3883. name: "DEFCON 1",
  3884. height: math.unit(500000, "km")
  3885. },
  3886. {
  3887. name: "DEFCON 0",
  3888. height: math.unit(3, "gigaparsecs")
  3889. },
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(2, "meters"),
  3897. weight: math.unit(76, "kg"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/gale/front.svg"
  3901. }
  3902. },
  3903. frontAlt1: {
  3904. height: math.unit(2, "meters"),
  3905. weight: math.unit(76, "kg"),
  3906. name: "Front (Alt 1)",
  3907. image: {
  3908. source: "./media/characters/gale/front-alt-1.svg"
  3909. }
  3910. },
  3911. frontAlt2: {
  3912. height: math.unit(2, "meters"),
  3913. weight: math.unit(76, "kg"),
  3914. name: "Front (Alt 2)",
  3915. image: {
  3916. source: "./media/characters/gale/front-alt-2.svg"
  3917. }
  3918. },
  3919. },
  3920. [
  3921. {
  3922. name: "Normal",
  3923. height: math.unit(7, "feet")
  3924. },
  3925. {
  3926. name: "Macro",
  3927. height: math.unit(150, "feet"),
  3928. default: true
  3929. },
  3930. {
  3931. name: "Macro+",
  3932. height: math.unit(300, "feet")
  3933. },
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3938. {
  3939. front: {
  3940. height: math.unit(2, "meters"),
  3941. weight: math.unit(76, "kg"),
  3942. name: "Front",
  3943. image: {
  3944. source: "./media/characters/draylen/front.svg"
  3945. }
  3946. }
  3947. },
  3948. [
  3949. {
  3950. name: "Macro",
  3951. height: math.unit(150, "feet"),
  3952. default: true
  3953. }
  3954. ]
  3955. ))
  3956. characterMakers.push(() => makeCharacter(
  3957. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3958. {
  3959. front: {
  3960. height: math.unit(7 + 9 / 12, "feet"),
  3961. weight: math.unit(379, "lbs"),
  3962. name: "Front",
  3963. image: {
  3964. source: "./media/characters/chez/front.svg"
  3965. }
  3966. },
  3967. side: {
  3968. height: math.unit(7 + 9 / 12, "feet"),
  3969. weight: math.unit(379, "lbs"),
  3970. name: "Side",
  3971. image: {
  3972. source: "./media/characters/chez/side.svg"
  3973. }
  3974. }
  3975. },
  3976. [
  3977. {
  3978. name: "Normal",
  3979. height: math.unit(7 + 9 / 12, "feet"),
  3980. default: true
  3981. },
  3982. {
  3983. name: "God King",
  3984. height: math.unit(9750000, "meters")
  3985. }
  3986. ]
  3987. ))
  3988. characterMakers.push(() => makeCharacter(
  3989. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3990. {
  3991. front: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(275, "lbs"),
  3994. name: "Front",
  3995. image: {
  3996. source: "./media/characters/kaylum/front.svg",
  3997. bottom: 0.01,
  3998. extra: 1166 / 1031
  3999. }
  4000. },
  4001. frontWingless: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(275, "lbs"),
  4004. name: "Front (Wingless)",
  4005. image: {
  4006. source: "./media/characters/kaylum/front-wingless.svg",
  4007. bottom: 0.01,
  4008. extra: 1117 / 1031
  4009. }
  4010. }
  4011. },
  4012. [
  4013. {
  4014. name: "Normal",
  4015. height: math.unit(3.05, "meters")
  4016. },
  4017. {
  4018. name: "Master",
  4019. height: math.unit(5.5, "meters")
  4020. },
  4021. {
  4022. name: "Rampage",
  4023. height: math.unit(19, "meters")
  4024. },
  4025. {
  4026. name: "Macro Lite",
  4027. height: math.unit(37, "meters")
  4028. },
  4029. {
  4030. name: "Hyper Predator",
  4031. height: math.unit(61, "meters")
  4032. },
  4033. {
  4034. name: "Macro",
  4035. height: math.unit(138, "meters"),
  4036. default: true
  4037. }
  4038. ]
  4039. ))
  4040. characterMakers.push(() => makeCharacter(
  4041. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4042. {
  4043. front: {
  4044. height: math.unit(6, "feet"),
  4045. weight: math.unit(150, "lbs"),
  4046. name: "Front",
  4047. image: {
  4048. source: "./media/characters/geta/front.svg"
  4049. }
  4050. }
  4051. },
  4052. [
  4053. {
  4054. name: "Micro",
  4055. height: math.unit(3, "inches"),
  4056. default: true
  4057. },
  4058. {
  4059. name: "Normal",
  4060. height: math.unit(5 + 5 / 12, "feet")
  4061. }
  4062. ]
  4063. ))
  4064. characterMakers.push(() => makeCharacter(
  4065. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4066. {
  4067. front: {
  4068. height: math.unit(6, "feet"),
  4069. weight: math.unit(300, "lbs"),
  4070. name: "Front",
  4071. image: {
  4072. source: "./media/characters/tyrnn/front.svg"
  4073. }
  4074. }
  4075. },
  4076. [
  4077. {
  4078. name: "Main Height",
  4079. height: math.unit(355, "feet"),
  4080. default: true
  4081. },
  4082. {
  4083. name: "Fave. Height",
  4084. height: math.unit(2400, "feet")
  4085. }
  4086. ]
  4087. ))
  4088. characterMakers.push(() => makeCharacter(
  4089. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4090. {
  4091. front: {
  4092. height: math.unit(6, "feet"),
  4093. weight: math.unit(300, "lbs"),
  4094. name: "Front",
  4095. image: {
  4096. source: "./media/characters/appledectomy/front.svg"
  4097. }
  4098. }
  4099. },
  4100. [
  4101. {
  4102. name: "Macro",
  4103. height: math.unit(2500, "feet")
  4104. },
  4105. {
  4106. name: "Megamacro",
  4107. height: math.unit(50, "miles"),
  4108. default: true
  4109. },
  4110. {
  4111. name: "Gigamacro",
  4112. height: math.unit(5000, "miles")
  4113. },
  4114. {
  4115. name: "Teramacro",
  4116. height: math.unit(250000, "miles")
  4117. },
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4122. {
  4123. front: {
  4124. height: math.unit(6, "feet"),
  4125. weight: math.unit(200, "lbs"),
  4126. name: "Front",
  4127. image: {
  4128. source: "./media/characters/vulpes/front.svg",
  4129. extra: 573 / 543,
  4130. bottom: 0.033
  4131. }
  4132. },
  4133. side: {
  4134. height: math.unit(6, "feet"),
  4135. weight: math.unit(200, "lbs"),
  4136. name: "Side",
  4137. image: {
  4138. source: "./media/characters/vulpes/side.svg",
  4139. extra: 577 / 549,
  4140. bottom: 11 / 588
  4141. }
  4142. },
  4143. back: {
  4144. height: math.unit(6, "feet"),
  4145. weight: math.unit(200, "lbs"),
  4146. name: "Back",
  4147. image: {
  4148. source: "./media/characters/vulpes/back.svg",
  4149. extra: 573 / 549,
  4150. bottom: 20 / 593
  4151. }
  4152. },
  4153. feet: {
  4154. height: math.unit(1.276, "feet"),
  4155. name: "Feet",
  4156. image: {
  4157. source: "./media/characters/vulpes/feet.svg"
  4158. }
  4159. },
  4160. maw: {
  4161. height: math.unit(1.18, "feet"),
  4162. name: "Maw",
  4163. image: {
  4164. source: "./media/characters/vulpes/maw.svg"
  4165. }
  4166. },
  4167. },
  4168. [
  4169. {
  4170. name: "Micro",
  4171. height: math.unit(2, "inches")
  4172. },
  4173. {
  4174. name: "Normal",
  4175. height: math.unit(6.3, "feet")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(850, "feet")
  4180. },
  4181. {
  4182. name: "Megamacro",
  4183. height: math.unit(7500, "feet"),
  4184. default: true
  4185. },
  4186. {
  4187. name: "Gigamacro",
  4188. height: math.unit(570000, "miles")
  4189. }
  4190. ]
  4191. ))
  4192. characterMakers.push(() => makeCharacter(
  4193. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4194. {
  4195. front: {
  4196. height: math.unit(6, "feet"),
  4197. weight: math.unit(210, "lbs"),
  4198. name: "Front",
  4199. image: {
  4200. source: "./media/characters/rain-fallen/front.svg"
  4201. }
  4202. },
  4203. side: {
  4204. height: math.unit(6, "feet"),
  4205. weight: math.unit(210, "lbs"),
  4206. name: "Side",
  4207. image: {
  4208. source: "./media/characters/rain-fallen/side.svg"
  4209. }
  4210. },
  4211. back: {
  4212. height: math.unit(6, "feet"),
  4213. weight: math.unit(210, "lbs"),
  4214. name: "Back",
  4215. image: {
  4216. source: "./media/characters/rain-fallen/back.svg"
  4217. }
  4218. },
  4219. feral: {
  4220. height: math.unit(9, "feet"),
  4221. weight: math.unit(700, "lbs"),
  4222. name: "Feral",
  4223. image: {
  4224. source: "./media/characters/rain-fallen/feral.svg"
  4225. }
  4226. },
  4227. },
  4228. [
  4229. {
  4230. name: "Normal",
  4231. height: math.unit(5, "meter")
  4232. },
  4233. {
  4234. name: "Macro",
  4235. height: math.unit(150, "meter"),
  4236. default: true
  4237. },
  4238. {
  4239. name: "Megamacro",
  4240. height: math.unit(278e6, "meter")
  4241. },
  4242. {
  4243. name: "Gigamacro",
  4244. height: math.unit(2e9, "meter")
  4245. },
  4246. {
  4247. name: "Teramacro",
  4248. height: math.unit(8e12, "meter")
  4249. },
  4250. {
  4251. name: "Devourer",
  4252. height: math.unit(14, "zettameters")
  4253. },
  4254. {
  4255. name: "Scarlet King",
  4256. height: math.unit(18, "yottameters")
  4257. },
  4258. {
  4259. name: "Void",
  4260. height: math.unit(6.66e66, "yottameters")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4266. {
  4267. standing: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(180, "lbs"),
  4270. name: "Standing",
  4271. image: {
  4272. source: "./media/characters/zaakira/standing.svg"
  4273. }
  4274. },
  4275. laying: {
  4276. height: math.unit(3, "feet"),
  4277. weight: math.unit(180, "lbs"),
  4278. name: "Laying",
  4279. image: {
  4280. source: "./media/characters/zaakira/laying.svg"
  4281. }
  4282. },
  4283. },
  4284. [
  4285. {
  4286. name: "Normal",
  4287. height: math.unit(12, "feet")
  4288. },
  4289. {
  4290. name: "Macro",
  4291. height: math.unit(279, "feet"),
  4292. default: true
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4298. {
  4299. femSfw: {
  4300. height: math.unit(8, "feet"),
  4301. weight: math.unit(350, "lb"),
  4302. name: "Fem",
  4303. image: {
  4304. source: "./media/characters/sigvald/fem-sfw.svg",
  4305. extra: 182 / 164,
  4306. bottom: 8.7 / 190.5
  4307. }
  4308. },
  4309. femNsfw: {
  4310. height: math.unit(8, "feet"),
  4311. weight: math.unit(350, "lb"),
  4312. name: "Fem (NSFW)",
  4313. image: {
  4314. source: "./media/characters/sigvald/fem-nsfw.svg",
  4315. extra: 182 / 164,
  4316. bottom: 8.7 / 190.5
  4317. }
  4318. },
  4319. maleNsfw: {
  4320. height: math.unit(8, "feet"),
  4321. weight: math.unit(350, "lb"),
  4322. name: "Male (NSFW)",
  4323. image: {
  4324. source: "./media/characters/sigvald/male-nsfw.svg",
  4325. extra: 182 / 164,
  4326. bottom: 8.7 / 190.5
  4327. }
  4328. },
  4329. hermNsfw: {
  4330. height: math.unit(8, "feet"),
  4331. weight: math.unit(350, "lb"),
  4332. name: "Herm (NSFW)",
  4333. image: {
  4334. source: "./media/characters/sigvald/herm-nsfw.svg",
  4335. extra: 182 / 164,
  4336. bottom: 8.7 / 190.5
  4337. }
  4338. },
  4339. dick: {
  4340. height: math.unit(2.36, "feet"),
  4341. name: "Dick",
  4342. image: {
  4343. source: "./media/characters/sigvald/dick.svg"
  4344. }
  4345. },
  4346. eye: {
  4347. height: math.unit(0.31, "feet"),
  4348. name: "Eye",
  4349. image: {
  4350. source: "./media/characters/sigvald/eye.svg"
  4351. }
  4352. },
  4353. mouth: {
  4354. height: math.unit(0.92, "feet"),
  4355. name: "Mouth",
  4356. image: {
  4357. source: "./media/characters/sigvald/mouth.svg"
  4358. }
  4359. },
  4360. paws: {
  4361. height: math.unit(2.2, "feet"),
  4362. name: "Paws",
  4363. image: {
  4364. source: "./media/characters/sigvald/paws.svg"
  4365. }
  4366. }
  4367. },
  4368. [
  4369. {
  4370. name: "Normal",
  4371. height: math.unit(8, "feet")
  4372. },
  4373. {
  4374. name: "Large",
  4375. height: math.unit(12, "feet")
  4376. },
  4377. {
  4378. name: "Larger",
  4379. height: math.unit(20, "feet")
  4380. },
  4381. {
  4382. name: "Macro",
  4383. height: math.unit(150, "feet")
  4384. },
  4385. {
  4386. name: "Macro+",
  4387. height: math.unit(200, "feet"),
  4388. default: true
  4389. },
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4394. {
  4395. side: {
  4396. height: math.unit(12, "feet"),
  4397. weight: math.unit(2000, "kg"),
  4398. name: "Side",
  4399. image: {
  4400. source: "./media/characters/scott/side.svg",
  4401. extra: 754 / 724,
  4402. bottom: 0.069
  4403. }
  4404. },
  4405. upright: {
  4406. height: math.unit(12, "feet"),
  4407. weight: math.unit(2000, "kg"),
  4408. name: "Upright",
  4409. image: {
  4410. source: "./media/characters/scott/upright.svg",
  4411. extra: 3881 / 3722,
  4412. bottom: 0.05
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Normal",
  4419. height: math.unit(12, "feet"),
  4420. default: true
  4421. },
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4426. {
  4427. side: {
  4428. height: math.unit(8, "meters"),
  4429. weight: math.unit(84755, "lbs"),
  4430. name: "Side",
  4431. image: {
  4432. source: "./media/characters/tobias/side.svg",
  4433. extra: 1474 / 1096,
  4434. bottom: 38.9 / 1513.1235
  4435. }
  4436. },
  4437. },
  4438. [
  4439. {
  4440. name: "Normal",
  4441. height: math.unit(8, "meters"),
  4442. default: true
  4443. },
  4444. ]
  4445. ))
  4446. characterMakers.push(() => makeCharacter(
  4447. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4448. {
  4449. front: {
  4450. height: math.unit(5.5, "feet"),
  4451. weight: math.unit(400, "lbs"),
  4452. name: "Front",
  4453. image: {
  4454. source: "./media/characters/kieran/front.svg",
  4455. extra: 2694 / 2364,
  4456. bottom: 217 / 2908
  4457. }
  4458. },
  4459. side: {
  4460. height: math.unit(5.5, "feet"),
  4461. weight: math.unit(400, "lbs"),
  4462. name: "Side",
  4463. image: {
  4464. source: "./media/characters/kieran/side.svg",
  4465. extra: 875 / 777,
  4466. bottom: 84.6 / 959
  4467. }
  4468. },
  4469. },
  4470. [
  4471. {
  4472. name: "Normal",
  4473. height: math.unit(5.5, "feet"),
  4474. default: true
  4475. },
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4480. {
  4481. side: {
  4482. height: math.unit(2, "meters"),
  4483. weight: math.unit(70, "kg"),
  4484. name: "Side",
  4485. image: {
  4486. source: "./media/characters/sanya/side.svg",
  4487. bottom: 0.02,
  4488. extra: 1.02
  4489. }
  4490. },
  4491. },
  4492. [
  4493. {
  4494. name: "Small",
  4495. height: math.unit(2, "meters")
  4496. },
  4497. {
  4498. name: "Normal",
  4499. height: math.unit(3, "meters")
  4500. },
  4501. {
  4502. name: "Macro",
  4503. height: math.unit(16, "meters"),
  4504. default: true
  4505. },
  4506. ]
  4507. ))
  4508. characterMakers.push(() => makeCharacter(
  4509. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4510. {
  4511. front: {
  4512. height: math.unit(2, "meters"),
  4513. weight: math.unit(120, "kg"),
  4514. name: "Front",
  4515. image: {
  4516. source: "./media/characters/miranda/front.svg",
  4517. extra: 195 / 185,
  4518. bottom: 10.9 / 206.5
  4519. }
  4520. },
  4521. back: {
  4522. height: math.unit(2, "meters"),
  4523. weight: math.unit(120, "kg"),
  4524. name: "Back",
  4525. image: {
  4526. source: "./media/characters/miranda/back.svg",
  4527. extra: 201 / 193,
  4528. bottom: 2.3 / 203.7
  4529. }
  4530. },
  4531. },
  4532. [
  4533. {
  4534. name: "Normal",
  4535. height: math.unit(10, "feet"),
  4536. default: true
  4537. }
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "James", species: ["deer"], tags: ["anthro"] },
  4542. {
  4543. side: {
  4544. height: math.unit(2, "meters"),
  4545. weight: math.unit(100, "kg"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/james/front.svg",
  4549. extra: 10 / 8.5
  4550. }
  4551. },
  4552. },
  4553. [
  4554. {
  4555. name: "Normal",
  4556. height: math.unit(8.5, "feet"),
  4557. default: true
  4558. }
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4563. {
  4564. side: {
  4565. height: math.unit(9.5, "feet"),
  4566. weight: math.unit(2500, "lbs"),
  4567. name: "Side",
  4568. image: {
  4569. source: "./media/characters/heather/side.svg"
  4570. }
  4571. },
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(9.5, "feet"),
  4577. default: true
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4583. {
  4584. side: {
  4585. height: math.unit(6.5, "feet"),
  4586. weight: math.unit(400, "lbs"),
  4587. name: "Side",
  4588. image: {
  4589. source: "./media/characters/lukas/side.svg",
  4590. extra: 7.25 / 6.5
  4591. }
  4592. },
  4593. },
  4594. [
  4595. {
  4596. name: "Normal",
  4597. height: math.unit(6.5, "feet"),
  4598. default: true
  4599. }
  4600. ]
  4601. ))
  4602. characterMakers.push(() => makeCharacter(
  4603. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4604. {
  4605. side: {
  4606. height: math.unit(5, "feet"),
  4607. weight: math.unit(3000, "lbs"),
  4608. name: "Side",
  4609. image: {
  4610. source: "./media/characters/louise/side.svg"
  4611. }
  4612. },
  4613. },
  4614. [
  4615. {
  4616. name: "Normal",
  4617. height: math.unit(5, "feet"),
  4618. default: true
  4619. }
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4624. {
  4625. side: {
  4626. height: math.unit(6, "feet"),
  4627. weight: math.unit(150, "lbs"),
  4628. name: "Side",
  4629. image: {
  4630. source: "./media/characters/ramona/side.svg"
  4631. }
  4632. },
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(5.3, "meters"),
  4638. default: true
  4639. },
  4640. {
  4641. name: "Macro",
  4642. height: math.unit(20, "stories")
  4643. },
  4644. {
  4645. name: "Macro+",
  4646. height: math.unit(50, "stories")
  4647. },
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4652. {
  4653. standing: {
  4654. height: math.unit(5.75, "feet"),
  4655. weight: math.unit(160, "lbs"),
  4656. name: "Standing",
  4657. image: {
  4658. source: "./media/characters/deerpuff/standing.svg",
  4659. extra: 682 / 624
  4660. }
  4661. },
  4662. sitting: {
  4663. height: math.unit(5.75 / 1.79, "feet"),
  4664. weight: math.unit(160, "lbs"),
  4665. name: "Sitting",
  4666. image: {
  4667. source: "./media/characters/deerpuff/sitting.svg",
  4668. bottom: 44 / 400,
  4669. extra: 1
  4670. }
  4671. },
  4672. taurLaying: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(400, "lbs"),
  4675. name: "Taur (Laying)",
  4676. image: {
  4677. source: "./media/characters/deerpuff/taur-laying.svg"
  4678. }
  4679. },
  4680. },
  4681. [
  4682. {
  4683. name: "Puffball",
  4684. height: math.unit(6, "inches")
  4685. },
  4686. {
  4687. name: "Normalpuff",
  4688. height: math.unit(5.75, "feet")
  4689. },
  4690. {
  4691. name: "Macropuff",
  4692. height: math.unit(1500, "feet"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Megapuff",
  4697. height: math.unit(500, "miles")
  4698. },
  4699. {
  4700. name: "Gigapuff",
  4701. height: math.unit(250000, "miles")
  4702. },
  4703. {
  4704. name: "Omegapuff",
  4705. height: math.unit(1000, "lightyears")
  4706. },
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4711. {
  4712. stomping: {
  4713. height: math.unit(6, "feet"),
  4714. weight: math.unit(170, "lbs"),
  4715. name: "Stomping",
  4716. image: {
  4717. source: "./media/characters/vivian/stomping.svg"
  4718. }
  4719. },
  4720. sitting: {
  4721. height: math.unit(6 / 1.75, "feet"),
  4722. weight: math.unit(170, "lbs"),
  4723. name: "Sitting",
  4724. image: {
  4725. source: "./media/characters/vivian/sitting.svg",
  4726. bottom: 1 / 6.4,
  4727. extra: 1,
  4728. }
  4729. },
  4730. },
  4731. [
  4732. {
  4733. name: "Normal",
  4734. height: math.unit(7, "feet"),
  4735. default: true
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(10, "stories")
  4740. },
  4741. {
  4742. name: "Macro+",
  4743. height: math.unit(30, "stories")
  4744. },
  4745. {
  4746. name: "Megamacro",
  4747. height: math.unit(10, "miles")
  4748. },
  4749. {
  4750. name: "Megamacro+",
  4751. height: math.unit(2750000, "meters")
  4752. },
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4757. {
  4758. front: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(160, "lbs"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/prince/front.svg",
  4764. extra: 3400 / 3000
  4765. }
  4766. },
  4767. jumping: {
  4768. height: math.unit(6, "feet"),
  4769. weight: math.unit(160, "lbs"),
  4770. name: "Jumping",
  4771. image: {
  4772. source: "./media/characters/prince/jump.svg",
  4773. extra: 2555 / 2134
  4774. }
  4775. },
  4776. },
  4777. [
  4778. {
  4779. name: "Normal",
  4780. height: math.unit(7.75, "feet"),
  4781. default: true
  4782. },
  4783. {
  4784. name: "Not cute",
  4785. height: math.unit(17, "feet")
  4786. },
  4787. {
  4788. name: "I said NOT",
  4789. height: math.unit(91, "feet")
  4790. },
  4791. {
  4792. name: "Please stop",
  4793. height: math.unit(560, "feet")
  4794. },
  4795. {
  4796. name: "What have you done",
  4797. height: math.unit(2200, "feet")
  4798. },
  4799. {
  4800. name: "Deer God",
  4801. height: math.unit(3.6, "miles")
  4802. },
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4807. {
  4808. standing: {
  4809. height: math.unit(6, "feet"),
  4810. weight: math.unit(300, "lbs"),
  4811. name: "Standing",
  4812. image: {
  4813. source: "./media/characters/psymon/standing.svg",
  4814. extra: 1888 / 1810,
  4815. bottom: 0.05
  4816. }
  4817. },
  4818. slithering: {
  4819. height: math.unit(6, "feet"),
  4820. weight: math.unit(300, "lbs"),
  4821. name: "Slithering",
  4822. image: {
  4823. source: "./media/characters/psymon/slithering.svg",
  4824. extra: 1330 / 1224
  4825. }
  4826. },
  4827. slitheringAlt: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(300, "lbs"),
  4830. name: "Slithering (Alt)",
  4831. image: {
  4832. source: "./media/characters/psymon/slithering-alt.svg",
  4833. extra: 1330 / 1224
  4834. }
  4835. },
  4836. },
  4837. [
  4838. {
  4839. name: "Normal",
  4840. height: math.unit(11.25, "feet"),
  4841. default: true
  4842. },
  4843. {
  4844. name: "Large",
  4845. height: math.unit(27, "feet")
  4846. },
  4847. {
  4848. name: "Giant",
  4849. height: math.unit(87, "feet")
  4850. },
  4851. {
  4852. name: "Macro",
  4853. height: math.unit(365, "feet")
  4854. },
  4855. {
  4856. name: "Megamacro",
  4857. height: math.unit(3, "miles")
  4858. },
  4859. {
  4860. name: "World Serpent",
  4861. height: math.unit(8000, "miles")
  4862. },
  4863. ]
  4864. ))
  4865. characterMakers.push(() => makeCharacter(
  4866. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4867. {
  4868. front: {
  4869. height: math.unit(6, "feet"),
  4870. weight: math.unit(180, "lbs"),
  4871. name: "Front",
  4872. image: {
  4873. source: "./media/characters/daimos/front.svg",
  4874. extra: 4160 / 3897,
  4875. bottom: 0.021
  4876. }
  4877. }
  4878. },
  4879. [
  4880. {
  4881. name: "Normal",
  4882. height: math.unit(8, "feet"),
  4883. default: true
  4884. },
  4885. {
  4886. name: "Big Dog",
  4887. height: math.unit(22, "feet")
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(127, "feet")
  4892. },
  4893. {
  4894. name: "Megamacro",
  4895. height: math.unit(3600, "feet")
  4896. },
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4901. {
  4902. side: {
  4903. height: math.unit(6, "feet"),
  4904. weight: math.unit(180, "lbs"),
  4905. name: "Side",
  4906. image: {
  4907. source: "./media/characters/blake/side.svg",
  4908. extra: 1212 / 1120,
  4909. bottom: 0.05
  4910. }
  4911. },
  4912. crouched: {
  4913. height: math.unit(6 * 0.57, "feet"),
  4914. weight: math.unit(180, "lbs"),
  4915. name: "Crouched",
  4916. image: {
  4917. source: "./media/characters/blake/crouched.svg",
  4918. extra: 840 / 587,
  4919. bottom: 0.04
  4920. }
  4921. },
  4922. bent: {
  4923. height: math.unit(6 * 0.75, "feet"),
  4924. weight: math.unit(180, "lbs"),
  4925. name: "Bent",
  4926. image: {
  4927. source: "./media/characters/blake/bent.svg",
  4928. extra: 592 / 544,
  4929. bottom: 0.035
  4930. }
  4931. },
  4932. },
  4933. [
  4934. {
  4935. name: "Normal",
  4936. height: math.unit(8 + 1 / 6, "feet"),
  4937. default: true
  4938. },
  4939. {
  4940. name: "Big Backside",
  4941. height: math.unit(37, "feet")
  4942. },
  4943. {
  4944. name: "Subway Shredder",
  4945. height: math.unit(72, "feet")
  4946. },
  4947. {
  4948. name: "City Carver",
  4949. height: math.unit(1675, "feet")
  4950. },
  4951. {
  4952. name: "Tectonic Tweaker",
  4953. height: math.unit(2300, "miles")
  4954. },
  4955. ]
  4956. ))
  4957. characterMakers.push(() => makeCharacter(
  4958. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4959. {
  4960. front: {
  4961. height: math.unit(6, "feet"),
  4962. weight: math.unit(180, "lbs"),
  4963. name: "Front",
  4964. image: {
  4965. source: "./media/characters/guisetto/front.svg",
  4966. extra: 856 / 817,
  4967. bottom: 0.06
  4968. }
  4969. },
  4970. airborne: {
  4971. height: math.unit(6, "feet"),
  4972. weight: math.unit(180, "lbs"),
  4973. name: "Airborne",
  4974. image: {
  4975. source: "./media/characters/guisetto/airborne.svg",
  4976. extra: 584 / 525
  4977. }
  4978. },
  4979. },
  4980. [
  4981. {
  4982. name: "Normal",
  4983. height: math.unit(10 + 11 / 12, "feet"),
  4984. default: true
  4985. },
  4986. {
  4987. name: "Large",
  4988. height: math.unit(35, "feet")
  4989. },
  4990. {
  4991. name: "Macro",
  4992. height: math.unit(475, "feet")
  4993. },
  4994. ]
  4995. ))
  4996. characterMakers.push(() => makeCharacter(
  4997. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4998. {
  4999. front: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(180, "lbs"),
  5002. name: "Front",
  5003. image: {
  5004. source: "./media/characters/luxor/front.svg",
  5005. extra: 2940 / 2152
  5006. }
  5007. },
  5008. back: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(180, "lbs"),
  5011. name: "Back",
  5012. image: {
  5013. source: "./media/characters/luxor/back.svg",
  5014. extra: 1083 / 960
  5015. }
  5016. },
  5017. },
  5018. [
  5019. {
  5020. name: "Normal",
  5021. height: math.unit(5 + 5 / 6, "feet"),
  5022. default: true
  5023. },
  5024. {
  5025. name: "Lamp",
  5026. height: math.unit(50, "feet")
  5027. },
  5028. {
  5029. name: "Lämp",
  5030. height: math.unit(300, "feet")
  5031. },
  5032. {
  5033. name: "The sun is a lamp",
  5034. height: math.unit(250000, "miles")
  5035. },
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5040. {
  5041. front: {
  5042. height: math.unit(6, "feet"),
  5043. weight: math.unit(50, "lbs"),
  5044. name: "Front",
  5045. image: {
  5046. source: "./media/characters/huoyan/front.svg"
  5047. }
  5048. },
  5049. side: {
  5050. height: math.unit(6, "feet"),
  5051. weight: math.unit(180, "lbs"),
  5052. name: "Side",
  5053. image: {
  5054. source: "./media/characters/huoyan/side.svg"
  5055. }
  5056. },
  5057. },
  5058. [
  5059. {
  5060. name: "Chef",
  5061. height: math.unit(9, "feet")
  5062. },
  5063. {
  5064. name: "Normal",
  5065. height: math.unit(65, "feet"),
  5066. default: true
  5067. },
  5068. {
  5069. name: "Macro",
  5070. height: math.unit(780, "feet")
  5071. },
  5072. {
  5073. name: "Flaming Mountain",
  5074. height: math.unit(4.8, "miles")
  5075. },
  5076. {
  5077. name: "Celestial",
  5078. height: math.unit(765000, "miles")
  5079. },
  5080. ]
  5081. ))
  5082. characterMakers.push(() => makeCharacter(
  5083. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5084. {
  5085. front: {
  5086. height: math.unit(5 + 3 / 4, "feet"),
  5087. weight: math.unit(120, "lbs"),
  5088. name: "Front",
  5089. image: {
  5090. source: "./media/characters/tails/front.svg"
  5091. }
  5092. }
  5093. },
  5094. [
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(5 + 3 / 4, "feet"),
  5098. default: true
  5099. }
  5100. ]
  5101. ))
  5102. characterMakers.push(() => makeCharacter(
  5103. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5104. {
  5105. front: {
  5106. height: math.unit(4, "feet"),
  5107. weight: math.unit(50, "lbs"),
  5108. name: "Front",
  5109. image: {
  5110. source: "./media/characters/rainy/front.svg"
  5111. }
  5112. }
  5113. },
  5114. [
  5115. {
  5116. name: "Macro",
  5117. height: math.unit(800, "feet"),
  5118. default: true
  5119. }
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5124. {
  5125. front: {
  5126. height: math.unit(6, "feet"),
  5127. weight: math.unit(150, "lbs"),
  5128. name: "Front",
  5129. image: {
  5130. source: "./media/characters/rainier/front.svg"
  5131. }
  5132. }
  5133. },
  5134. [
  5135. {
  5136. name: "Micro",
  5137. height: math.unit(2, "mm"),
  5138. default: true
  5139. }
  5140. ]
  5141. ))
  5142. characterMakers.push(() => makeCharacter(
  5143. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5144. {
  5145. front: {
  5146. height: math.unit(6, "feet"),
  5147. weight: math.unit(180, "lbs"),
  5148. name: "Front",
  5149. image: {
  5150. source: "./media/characters/andy/front.svg"
  5151. }
  5152. }
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(8, "feet"),
  5158. default: true
  5159. },
  5160. {
  5161. name: "Macro",
  5162. height: math.unit(1000, "feet")
  5163. },
  5164. {
  5165. name: "Megamacro",
  5166. height: math.unit(5, "miles")
  5167. },
  5168. {
  5169. name: "Gigamacro",
  5170. height: math.unit(5000, "miles")
  5171. },
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5176. {
  5177. front: {
  5178. height: math.unit(6, "feet"),
  5179. weight: math.unit(210, "lbs"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/cimmaron/front-sfw.svg",
  5183. extra: 701 / 676,
  5184. bottom: 0.046
  5185. }
  5186. },
  5187. back: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(210, "lbs"),
  5190. name: "Back",
  5191. image: {
  5192. source: "./media/characters/cimmaron/back-sfw.svg",
  5193. extra: 701 / 676,
  5194. bottom: 0.046
  5195. }
  5196. },
  5197. frontNsfw: {
  5198. height: math.unit(6, "feet"),
  5199. weight: math.unit(210, "lbs"),
  5200. name: "Front (NSFW)",
  5201. image: {
  5202. source: "./media/characters/cimmaron/front-nsfw.svg",
  5203. extra: 701 / 676,
  5204. bottom: 0.046
  5205. }
  5206. },
  5207. backNsfw: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(210, "lbs"),
  5210. name: "Back (NSFW)",
  5211. image: {
  5212. source: "./media/characters/cimmaron/back-nsfw.svg",
  5213. extra: 701 / 676,
  5214. bottom: 0.046
  5215. }
  5216. },
  5217. dick: {
  5218. height: math.unit(1.714, "feet"),
  5219. name: "Dick",
  5220. image: {
  5221. source: "./media/characters/cimmaron/dick.svg"
  5222. }
  5223. },
  5224. },
  5225. [
  5226. {
  5227. name: "Normal",
  5228. height: math.unit(6, "feet"),
  5229. default: true
  5230. },
  5231. {
  5232. name: "Macro Mayor",
  5233. height: math.unit(350, "meters")
  5234. },
  5235. ]
  5236. ))
  5237. characterMakers.push(() => makeCharacter(
  5238. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5239. {
  5240. front: {
  5241. height: math.unit(6, "feet"),
  5242. weight: math.unit(200, "lbs"),
  5243. name: "Front",
  5244. image: {
  5245. source: "./media/characters/akari/front.svg",
  5246. extra: 962 / 901,
  5247. bottom: 0.04
  5248. }
  5249. }
  5250. },
  5251. [
  5252. {
  5253. name: "Micro",
  5254. height: math.unit(5, "inches"),
  5255. default: true
  5256. },
  5257. {
  5258. name: "Normal",
  5259. height: math.unit(7, "feet")
  5260. },
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5265. {
  5266. front: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(140, "lbs"),
  5269. name: "Front",
  5270. image: {
  5271. source: "./media/characters/cynosura/front.svg",
  5272. extra: 896 / 847
  5273. }
  5274. },
  5275. back: {
  5276. height: math.unit(6, "feet"),
  5277. weight: math.unit(140, "lbs"),
  5278. name: "Back",
  5279. image: {
  5280. source: "./media/characters/cynosura/back.svg",
  5281. extra: 1365 / 1250
  5282. }
  5283. },
  5284. },
  5285. [
  5286. {
  5287. name: "Micro",
  5288. height: math.unit(4, "inches")
  5289. },
  5290. {
  5291. name: "Normal",
  5292. height: math.unit(5.75, "feet"),
  5293. default: true
  5294. },
  5295. {
  5296. name: "Tall",
  5297. height: math.unit(10, "feet")
  5298. },
  5299. {
  5300. name: "Big",
  5301. height: math.unit(20, "feet")
  5302. },
  5303. {
  5304. name: "Macro",
  5305. height: math.unit(50, "feet")
  5306. },
  5307. ]
  5308. ))
  5309. characterMakers.push(() => makeCharacter(
  5310. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5311. {
  5312. front: {
  5313. height: math.unit(6, "feet"),
  5314. weight: math.unit(170, "lbs"),
  5315. name: "Front",
  5316. image: {
  5317. source: "./media/characters/gin/front.svg",
  5318. extra: 1.053,
  5319. bottom: 0.025
  5320. }
  5321. },
  5322. foot: {
  5323. height: math.unit(6 / 4.25, "feet"),
  5324. name: "Foot",
  5325. image: {
  5326. source: "./media/characters/gin/foot.svg"
  5327. }
  5328. },
  5329. sole: {
  5330. height: math.unit(6 / 4.40, "feet"),
  5331. name: "Sole",
  5332. image: {
  5333. source: "./media/characters/gin/sole.svg"
  5334. }
  5335. },
  5336. },
  5337. [
  5338. {
  5339. name: "Normal",
  5340. height: math.unit(13 + 2 / 12, "feet")
  5341. },
  5342. {
  5343. name: "Macro",
  5344. height: math.unit(1500, "feet")
  5345. },
  5346. {
  5347. name: "Megamacro",
  5348. height: math.unit(200, "miles"),
  5349. default: true
  5350. },
  5351. {
  5352. name: "Gigamacro",
  5353. height: math.unit(500, "megameters")
  5354. },
  5355. {
  5356. name: "Teramacro",
  5357. height: math.unit(15, "lightyears")
  5358. }
  5359. ]
  5360. ))
  5361. characterMakers.push(() => makeCharacter(
  5362. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5363. {
  5364. front: {
  5365. height: math.unit(6 + 1 / 6, "feet"),
  5366. weight: math.unit(178, "lbs"),
  5367. name: "Front",
  5368. image: {
  5369. source: "./media/characters/guy/front.svg"
  5370. }
  5371. }
  5372. },
  5373. [
  5374. {
  5375. name: "Normal",
  5376. height: math.unit(6 + 1 / 6, "feet"),
  5377. default: true
  5378. },
  5379. {
  5380. name: "Large",
  5381. height: math.unit(25 + 7 / 12, "feet")
  5382. },
  5383. {
  5384. name: "Macro",
  5385. height: math.unit(60 + 9 / 12, "feet")
  5386. },
  5387. {
  5388. name: "Macro+",
  5389. height: math.unit(246, "feet")
  5390. },
  5391. {
  5392. name: "Macro++",
  5393. height: math.unit(878, "feet")
  5394. }
  5395. ]
  5396. ))
  5397. characterMakers.push(() => makeCharacter(
  5398. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5399. {
  5400. front: {
  5401. height: math.unit(9, "feet"),
  5402. weight: math.unit(800, "lbs"),
  5403. name: "Front",
  5404. image: {
  5405. source: "./media/characters/tiberius/front.svg",
  5406. extra: 2295 / 2071
  5407. }
  5408. },
  5409. back: {
  5410. height: math.unit(9, "feet"),
  5411. weight: math.unit(800, "lbs"),
  5412. name: "Back",
  5413. image: {
  5414. source: "./media/characters/tiberius/back.svg",
  5415. extra: 2373 / 2160
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Normal",
  5422. height: math.unit(9, "feet"),
  5423. default: true
  5424. }
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5429. {
  5430. front: {
  5431. height: math.unit(6, "feet"),
  5432. weight: math.unit(600, "lbs"),
  5433. name: "Front",
  5434. image: {
  5435. source: "./media/characters/surgo/front.svg",
  5436. extra: 3591 / 2227
  5437. }
  5438. },
  5439. back: {
  5440. height: math.unit(6, "feet"),
  5441. weight: math.unit(600, "lbs"),
  5442. name: "Back",
  5443. image: {
  5444. source: "./media/characters/surgo/back.svg",
  5445. extra: 3557 / 2228
  5446. }
  5447. },
  5448. laying: {
  5449. height: math.unit(6 * 0.85, "feet"),
  5450. weight: math.unit(600, "lbs"),
  5451. name: "Laying",
  5452. image: {
  5453. source: "./media/characters/surgo/laying.svg"
  5454. }
  5455. },
  5456. },
  5457. [
  5458. {
  5459. name: "Normal",
  5460. height: math.unit(6, "feet"),
  5461. default: true
  5462. }
  5463. ]
  5464. ))
  5465. characterMakers.push(() => makeCharacter(
  5466. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5467. {
  5468. side: {
  5469. height: math.unit(6, "feet"),
  5470. weight: math.unit(150, "lbs"),
  5471. name: "Side",
  5472. image: {
  5473. source: "./media/characters/cibus/side.svg",
  5474. extra: 800 / 400
  5475. }
  5476. },
  5477. },
  5478. [
  5479. {
  5480. name: "Normal",
  5481. height: math.unit(6, "feet"),
  5482. default: true
  5483. }
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5488. {
  5489. front: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(240, "lbs"),
  5492. name: "Front",
  5493. image: {
  5494. source: "./media/characters/nibbles/front.svg"
  5495. }
  5496. },
  5497. side: {
  5498. height: math.unit(6, "feet"),
  5499. weight: math.unit(240, "lbs"),
  5500. name: "Side",
  5501. image: {
  5502. source: "./media/characters/nibbles/side.svg"
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(9, "feet"),
  5510. default: true
  5511. }
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5516. {
  5517. side: {
  5518. height: math.unit(5 + 1 / 6, "feet"),
  5519. weight: math.unit(130, "lbs"),
  5520. name: "Side",
  5521. image: {
  5522. source: "./media/characters/rikky/side.svg",
  5523. extra: 851 / 801
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "Normal",
  5530. height: math.unit(5 + 1 / 6, "feet")
  5531. },
  5532. {
  5533. name: "Macro",
  5534. height: math.unit(152, "feet"),
  5535. default: true
  5536. },
  5537. {
  5538. name: "Megamacro",
  5539. height: math.unit(7, "miles")
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5545. {
  5546. side: {
  5547. height: math.unit(370, "cm"),
  5548. weight: math.unit(350, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/malfressa/side.svg"
  5552. }
  5553. },
  5554. walking: {
  5555. height: math.unit(370, "cm"),
  5556. weight: math.unit(350, "lbs"),
  5557. name: "Walking",
  5558. image: {
  5559. source: "./media/characters/malfressa/walking.svg"
  5560. }
  5561. },
  5562. feral: {
  5563. height: math.unit(2500, "cm"),
  5564. weight: math.unit(100000, "lbs"),
  5565. name: "Feral",
  5566. image: {
  5567. source: "./media/characters/malfressa/feral.svg",
  5568. extra: 2108 / 837,
  5569. bottom: 0.02
  5570. }
  5571. },
  5572. },
  5573. [
  5574. {
  5575. name: "Normal",
  5576. height: math.unit(370, "cm")
  5577. },
  5578. {
  5579. name: "Macro",
  5580. height: math.unit(300, "meters"),
  5581. default: true
  5582. }
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5587. {
  5588. front: {
  5589. height: math.unit(6, "feet"),
  5590. weight: math.unit(60, "kg"),
  5591. name: "Front",
  5592. image: {
  5593. source: "./media/characters/jaro/front.svg"
  5594. }
  5595. },
  5596. back: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(60, "kg"),
  5599. name: "Back",
  5600. image: {
  5601. source: "./media/characters/jaro/back.svg"
  5602. }
  5603. },
  5604. },
  5605. [
  5606. {
  5607. name: "Micro",
  5608. height: math.unit(7, "inches")
  5609. },
  5610. {
  5611. name: "Normal",
  5612. height: math.unit(5.5, "feet"),
  5613. default: true
  5614. },
  5615. {
  5616. name: "Minimacro",
  5617. height: math.unit(20, "feet")
  5618. },
  5619. {
  5620. name: "Macro",
  5621. height: math.unit(200, "meters")
  5622. }
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5627. {
  5628. front: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(195, "lb"),
  5631. name: "Front",
  5632. image: {
  5633. source: "./media/characters/rogue/front.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Macro",
  5640. height: math.unit(90, "feet"),
  5641. default: true
  5642. },
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(5 + 8 / 12, "feet"),
  5650. weight: math.unit(140, "lb"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/piper/front.svg",
  5654. extra: 3928 / 3681
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Micro",
  5661. height: math.unit(2, "inches")
  5662. },
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(5 + 8 / 12, "feet")
  5666. },
  5667. {
  5668. name: "Macro",
  5669. height: math.unit(250, "feet"),
  5670. default: true
  5671. },
  5672. {
  5673. name: "Megamacro",
  5674. height: math.unit(7, "miles")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(220, "lb"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/gemini/front.svg"
  5687. }
  5688. },
  5689. back: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(220, "lb"),
  5692. name: "Back",
  5693. image: {
  5694. source: "./media/characters/gemini/back.svg"
  5695. }
  5696. },
  5697. kneeling: {
  5698. height: math.unit(6 / 1.5, "feet"),
  5699. weight: math.unit(220, "lb"),
  5700. name: "Kneeling",
  5701. image: {
  5702. source: "./media/characters/gemini/kneeling.svg",
  5703. bottom: 0.02
  5704. }
  5705. },
  5706. },
  5707. [
  5708. {
  5709. name: "Macro",
  5710. height: math.unit(300, "meters"),
  5711. default: true
  5712. },
  5713. {
  5714. name: "Megamacro",
  5715. height: math.unit(6900, "meters")
  5716. },
  5717. ]
  5718. ))
  5719. characterMakers.push(() => makeCharacter(
  5720. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5721. {
  5722. anthro: {
  5723. height: math.unit(2.35, "meters"),
  5724. weight: math.unit(73, "kg"),
  5725. name: "Anthro",
  5726. image: {
  5727. source: "./media/characters/alicia/anthro.svg",
  5728. extra: 2571 / 2385,
  5729. bottom: 75 / 2648
  5730. }
  5731. },
  5732. paw: {
  5733. height: math.unit(1.32, "feet"),
  5734. name: "Paw",
  5735. image: {
  5736. source: "./media/characters/alicia/paw.svg"
  5737. }
  5738. },
  5739. feral: {
  5740. height: math.unit(1.69, "meters"),
  5741. weight: math.unit(73, "kg"),
  5742. name: "Feral",
  5743. image: {
  5744. source: "./media/characters/alicia/feral.svg",
  5745. extra: 2123 / 1715,
  5746. bottom: 222 / 2349
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(2.35, "meters")
  5754. },
  5755. {
  5756. name: "Macro",
  5757. height: math.unit(60, "meters"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Megamacro",
  5762. height: math.unit(10000, "kilometers")
  5763. },
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(7, "feet"),
  5771. weight: math.unit(250, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/archy/front.svg"
  5775. }
  5776. }
  5777. },
  5778. [
  5779. {
  5780. name: "Micro",
  5781. height: math.unit(1, "inch")
  5782. },
  5783. {
  5784. name: "Shorty",
  5785. height: math.unit(5, "feet")
  5786. },
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(7, "feet")
  5790. },
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(600, "meters"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Megamacro",
  5798. height: math.unit(1, "mile")
  5799. },
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(1.65, "meters"),
  5807. weight: math.unit(74, "kg"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/berri/front.svg",
  5811. extra: 857 / 837,
  5812. bottom: 18 / 877
  5813. }
  5814. },
  5815. bum: {
  5816. height: math.unit(1.46, "feet"),
  5817. name: "Bum",
  5818. image: {
  5819. source: "./media/characters/berri/bum.svg"
  5820. }
  5821. },
  5822. mouth: {
  5823. height: math.unit(0.44, "feet"),
  5824. name: "Mouth",
  5825. image: {
  5826. source: "./media/characters/berri/mouth.svg"
  5827. }
  5828. },
  5829. paw: {
  5830. height: math.unit(0.826, "feet"),
  5831. name: "Paw",
  5832. image: {
  5833. source: "./media/characters/berri/paw.svg"
  5834. }
  5835. },
  5836. },
  5837. [
  5838. {
  5839. name: "Normal",
  5840. height: math.unit(1.65, "meters")
  5841. },
  5842. {
  5843. name: "Macro",
  5844. height: math.unit(60, "m"),
  5845. default: true
  5846. },
  5847. {
  5848. name: "Megamacro",
  5849. height: math.unit(9.213, "km")
  5850. },
  5851. {
  5852. name: "Planet Eater",
  5853. height: math.unit(489, "megameters")
  5854. },
  5855. {
  5856. name: "Teramacro",
  5857. height: math.unit(2471635000000, "meters")
  5858. },
  5859. {
  5860. name: "Examacro",
  5861. height: math.unit(8.0624e+26, "meters")
  5862. }
  5863. ]
  5864. ))
  5865. characterMakers.push(() => makeCharacter(
  5866. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5867. {
  5868. front: {
  5869. height: math.unit(1.72, "meters"),
  5870. weight: math.unit(68, "kg"),
  5871. name: "Front",
  5872. image: {
  5873. source: "./media/characters/lexi/front.svg"
  5874. }
  5875. }
  5876. },
  5877. [
  5878. {
  5879. name: "Very Smol",
  5880. height: math.unit(10, "mm")
  5881. },
  5882. {
  5883. name: "Micro",
  5884. height: math.unit(6.8, "cm"),
  5885. default: true
  5886. },
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(1.72, "m")
  5890. }
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(1.69, "meters"),
  5898. weight: math.unit(68, "kg"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/martin/front.svg",
  5902. extra: 596 / 581
  5903. }
  5904. }
  5905. },
  5906. [
  5907. {
  5908. name: "Micro",
  5909. height: math.unit(6.85, "cm"),
  5910. default: true
  5911. },
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(1.69, "m")
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5920. {
  5921. front: {
  5922. height: math.unit(1.69, "meters"),
  5923. weight: math.unit(68, "kg"),
  5924. name: "Front",
  5925. image: {
  5926. source: "./media/characters/juno/front.svg"
  5927. }
  5928. }
  5929. },
  5930. [
  5931. {
  5932. name: "Micro",
  5933. height: math.unit(7, "cm")
  5934. },
  5935. {
  5936. name: "Normal",
  5937. height: math.unit(1.89, "m")
  5938. },
  5939. {
  5940. name: "Macro",
  5941. height: math.unit(353, "meters"),
  5942. default: true
  5943. }
  5944. ]
  5945. ))
  5946. characterMakers.push(() => makeCharacter(
  5947. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5948. {
  5949. front: {
  5950. height: math.unit(1.93, "meters"),
  5951. weight: math.unit(83, "kg"),
  5952. name: "Front",
  5953. image: {
  5954. source: "./media/characters/samantha/front.svg"
  5955. }
  5956. },
  5957. frontClothed: {
  5958. height: math.unit(1.93, "meters"),
  5959. weight: math.unit(83, "kg"),
  5960. name: "Front (Clothed)",
  5961. image: {
  5962. source: "./media/characters/samantha/front-clothed.svg"
  5963. }
  5964. },
  5965. back: {
  5966. height: math.unit(1.93, "meters"),
  5967. weight: math.unit(83, "kg"),
  5968. name: "Back",
  5969. image: {
  5970. source: "./media/characters/samantha/back.svg"
  5971. }
  5972. },
  5973. },
  5974. [
  5975. {
  5976. name: "Normal",
  5977. height: math.unit(1.93, "m")
  5978. },
  5979. {
  5980. name: "Macro",
  5981. height: math.unit(74, "meters"),
  5982. default: true
  5983. },
  5984. {
  5985. name: "Macro+",
  5986. height: math.unit(223, "meters"),
  5987. },
  5988. {
  5989. name: "Megamacro",
  5990. height: math.unit(8381, "meters"),
  5991. },
  5992. {
  5993. name: "Megamacro+",
  5994. height: math.unit(12000, "kilometers")
  5995. },
  5996. ]
  5997. ))
  5998. characterMakers.push(() => makeCharacter(
  5999. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6000. {
  6001. front: {
  6002. height: math.unit(1.92, "meters"),
  6003. weight: math.unit(80, "kg"),
  6004. name: "Front",
  6005. image: {
  6006. source: "./media/characters/dr-clay/front.svg"
  6007. }
  6008. },
  6009. frontClothed: {
  6010. height: math.unit(1.92, "meters"),
  6011. weight: math.unit(80, "kg"),
  6012. name: "Front (Clothed)",
  6013. image: {
  6014. source: "./media/characters/dr-clay/front-clothed.svg"
  6015. }
  6016. }
  6017. },
  6018. [
  6019. {
  6020. name: "Normal",
  6021. height: math.unit(1.92, "m")
  6022. },
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(214, "meters"),
  6026. default: true
  6027. },
  6028. {
  6029. name: "Macro+",
  6030. height: math.unit(12.237, "meters"),
  6031. },
  6032. {
  6033. name: "Megamacro",
  6034. height: math.unit(557, "megameters"),
  6035. },
  6036. {
  6037. name: "Unimaginable",
  6038. height: math.unit(120e9, "lightyears")
  6039. },
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6044. {
  6045. front: {
  6046. height: math.unit(2, "meters"),
  6047. weight: math.unit(80, "kg"),
  6048. name: "Front",
  6049. image: {
  6050. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6051. }
  6052. }
  6053. },
  6054. [
  6055. {
  6056. name: "Teramacro",
  6057. height: math.unit(500000, "lightyears"),
  6058. default: true
  6059. },
  6060. ]
  6061. ))
  6062. characterMakers.push(() => makeCharacter(
  6063. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6064. {
  6065. front: {
  6066. height: math.unit(2, "meters"),
  6067. weight: math.unit(150, "kg"),
  6068. name: "Front",
  6069. image: {
  6070. source: "./media/characters/vemus/front.svg",
  6071. extra: 2384 / 2084,
  6072. bottom: 0.0123
  6073. }
  6074. }
  6075. },
  6076. [
  6077. {
  6078. name: "Normal",
  6079. height: math.unit(3.75, "meters"),
  6080. default: true
  6081. },
  6082. {
  6083. name: "Big",
  6084. height: math.unit(8, "meters")
  6085. },
  6086. {
  6087. name: "Macro",
  6088. height: math.unit(100, "meters")
  6089. },
  6090. {
  6091. name: "Macro+",
  6092. height: math.unit(1500, "meters")
  6093. },
  6094. {
  6095. name: "Stellar",
  6096. height: math.unit(14e8, "meters")
  6097. },
  6098. ]
  6099. ))
  6100. characterMakers.push(() => makeCharacter(
  6101. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6102. {
  6103. front: {
  6104. height: math.unit(2, "meters"),
  6105. weight: math.unit(70, "kg"),
  6106. name: "Front",
  6107. image: {
  6108. source: "./media/characters/beherit/front.svg",
  6109. extra: 1408 / 1242
  6110. }
  6111. }
  6112. },
  6113. [
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(6, "feet")
  6117. },
  6118. {
  6119. name: "Lorg",
  6120. height: math.unit(25, "feet"),
  6121. default: true
  6122. },
  6123. {
  6124. name: "Lorger",
  6125. height: math.unit(75, "feet")
  6126. },
  6127. {
  6128. name: "Macro",
  6129. height: math.unit(200, "meters")
  6130. },
  6131. ]
  6132. ))
  6133. characterMakers.push(() => makeCharacter(
  6134. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6135. {
  6136. front: {
  6137. height: math.unit(2, "meters"),
  6138. weight: math.unit(150, "kg"),
  6139. name: "Front",
  6140. image: {
  6141. source: "./media/characters/everett/front.svg",
  6142. extra: 2038 / 1737,
  6143. bottom: 0.03
  6144. }
  6145. },
  6146. paw: {
  6147. height: math.unit(2 / 3.6, "meters"),
  6148. name: "Paw",
  6149. image: {
  6150. source: "./media/characters/everett/paw.svg"
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(15, "feet"),
  6158. default: true
  6159. },
  6160. {
  6161. name: "Lorg",
  6162. height: math.unit(70, "feet"),
  6163. default: true
  6164. },
  6165. {
  6166. name: "Lorger",
  6167. height: math.unit(250, "feet")
  6168. },
  6169. {
  6170. name: "Macro",
  6171. height: math.unit(500, "meters")
  6172. },
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6177. {
  6178. front: {
  6179. height: math.unit(2, "meters"),
  6180. weight: math.unit(86, "kg"),
  6181. name: "Front",
  6182. image: {
  6183. source: "./media/characters/rose-lion/front.svg"
  6184. }
  6185. },
  6186. bent: {
  6187. height: math.unit(2 / 1.4288, "meters"),
  6188. weight: math.unit(86, "kg"),
  6189. name: "Bent",
  6190. image: {
  6191. source: "./media/characters/rose-lion/bent.svg"
  6192. }
  6193. }
  6194. },
  6195. [
  6196. {
  6197. name: "Mini-Micro",
  6198. height: math.unit(1, "cm")
  6199. },
  6200. {
  6201. name: "Micro",
  6202. height: math.unit(3.5, "inches"),
  6203. default: true
  6204. },
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(6 + 1 / 6, "feet")
  6208. },
  6209. {
  6210. name: "Mini-Macro",
  6211. height: math.unit(9 + 10 / 12, "feet")
  6212. },
  6213. ]
  6214. ))
  6215. characterMakers.push(() => makeCharacter(
  6216. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6217. {
  6218. front: {
  6219. height: math.unit(2, "meters"),
  6220. weight: math.unit(350, "lbs"),
  6221. name: "Front",
  6222. image: {
  6223. source: "./media/characters/regal/front.svg"
  6224. }
  6225. },
  6226. back: {
  6227. height: math.unit(2, "meters"),
  6228. weight: math.unit(350, "lbs"),
  6229. name: "Back",
  6230. image: {
  6231. source: "./media/characters/regal/back.svg"
  6232. }
  6233. },
  6234. },
  6235. [
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(350, "feet"),
  6239. default: true
  6240. }
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(4 + 11 / 12, "feet"),
  6248. weight: math.unit(100, "lbs"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/opal/front.svg"
  6252. }
  6253. },
  6254. frontAlt: {
  6255. height: math.unit(4 + 11 / 12, "feet"),
  6256. weight: math.unit(100, "lbs"),
  6257. name: "Front (Alt)",
  6258. image: {
  6259. source: "./media/characters/opal/front-alt.svg"
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Small",
  6266. height: math.unit(4 + 11 / 12, "feet")
  6267. },
  6268. {
  6269. name: "Normal",
  6270. height: math.unit(20, "feet"),
  6271. default: true
  6272. },
  6273. {
  6274. name: "Macro",
  6275. height: math.unit(120, "feet")
  6276. },
  6277. {
  6278. name: "Megamacro",
  6279. height: math.unit(80, "miles")
  6280. },
  6281. {
  6282. name: "True Size",
  6283. height: math.unit(100000, "lightyears")
  6284. },
  6285. ]
  6286. ))
  6287. characterMakers.push(() => makeCharacter(
  6288. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6289. {
  6290. front: {
  6291. height: math.unit(6, "feet"),
  6292. weight: math.unit(200, "lbs"),
  6293. name: "Front",
  6294. image: {
  6295. source: "./media/characters/vector-wuff/front.svg"
  6296. }
  6297. }
  6298. },
  6299. [
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(2.8, "meters")
  6303. },
  6304. {
  6305. name: "Macro",
  6306. height: math.unit(450, "meters"),
  6307. default: true
  6308. },
  6309. {
  6310. name: "Megamacro",
  6311. height: math.unit(15, "kilometers")
  6312. }
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6317. {
  6318. front: {
  6319. height: math.unit(6, "feet"),
  6320. weight: math.unit(256, "lbs"),
  6321. name: "Front",
  6322. image: {
  6323. source: "./media/characters/dannik/front.svg"
  6324. }
  6325. }
  6326. },
  6327. [
  6328. {
  6329. name: "Macro",
  6330. height: math.unit(69.57, "meters"),
  6331. default: true
  6332. },
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6337. {
  6338. front: {
  6339. height: math.unit(6, "feet"),
  6340. weight: math.unit(120, "lbs"),
  6341. name: "Front",
  6342. image: {
  6343. source: "./media/characters/azura-saharah/front.svg"
  6344. }
  6345. },
  6346. back: {
  6347. height: math.unit(6, "feet"),
  6348. weight: math.unit(120, "lbs"),
  6349. name: "Back",
  6350. image: {
  6351. source: "./media/characters/azura-saharah/back.svg"
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Macro",
  6358. height: math.unit(100, "feet"),
  6359. default: true
  6360. },
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6365. {
  6366. side: {
  6367. height: math.unit(5 + 4 / 12, "feet"),
  6368. weight: math.unit(163, "lbs"),
  6369. name: "Side",
  6370. image: {
  6371. source: "./media/characters/kennedy/side.svg"
  6372. }
  6373. }
  6374. },
  6375. [
  6376. {
  6377. name: "Standard Doggo",
  6378. height: math.unit(5 + 4 / 12, "feet")
  6379. },
  6380. {
  6381. name: "Big Doggo",
  6382. height: math.unit(25 + 3 / 12, "feet"),
  6383. default: true
  6384. },
  6385. ]
  6386. ))
  6387. characterMakers.push(() => makeCharacter(
  6388. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6389. {
  6390. front: {
  6391. height: math.unit(6, "feet"),
  6392. weight: math.unit(90, "lbs"),
  6393. name: "Front",
  6394. image: {
  6395. source: "./media/characters/odi-lunar/front.svg"
  6396. }
  6397. }
  6398. },
  6399. [
  6400. {
  6401. name: "Micro",
  6402. height: math.unit(3, "inches"),
  6403. default: true
  6404. },
  6405. {
  6406. name: "Normal",
  6407. height: math.unit(5.5, "feet")
  6408. }
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6413. {
  6414. back: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(220, "lbs"),
  6417. name: "Back",
  6418. image: {
  6419. source: "./media/characters/mandake/back.svg"
  6420. }
  6421. }
  6422. },
  6423. [
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(7, "feet"),
  6427. default: true
  6428. },
  6429. {
  6430. name: "Macro",
  6431. height: math.unit(78, "feet")
  6432. },
  6433. {
  6434. name: "Macro+",
  6435. height: math.unit(300, "meters")
  6436. },
  6437. {
  6438. name: "Macro++",
  6439. height: math.unit(2400, "feet")
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(5167, "meters")
  6444. },
  6445. {
  6446. name: "Gigamacro",
  6447. height: math.unit(41769, "miles")
  6448. },
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6453. {
  6454. front: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(120, "lbs"),
  6457. name: "Front",
  6458. image: {
  6459. source: "./media/characters/yozey/front.svg"
  6460. }
  6461. },
  6462. frontAlt: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(120, "lbs"),
  6465. name: "Front (Alt)",
  6466. image: {
  6467. source: "./media/characters/yozey/front-alt.svg"
  6468. }
  6469. },
  6470. side: {
  6471. height: math.unit(6, "feet"),
  6472. weight: math.unit(120, "lbs"),
  6473. name: "Side",
  6474. image: {
  6475. source: "./media/characters/yozey/side.svg"
  6476. }
  6477. },
  6478. },
  6479. [
  6480. {
  6481. name: "Micro",
  6482. height: math.unit(3, "inches"),
  6483. default: true
  6484. },
  6485. {
  6486. name: "Normal",
  6487. height: math.unit(6, "feet")
  6488. }
  6489. ]
  6490. ))
  6491. characterMakers.push(() => makeCharacter(
  6492. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6493. {
  6494. front: {
  6495. height: math.unit(6, "feet"),
  6496. weight: math.unit(103, "lbs"),
  6497. name: "Front",
  6498. image: {
  6499. source: "./media/characters/valeska-voss/front.svg"
  6500. }
  6501. }
  6502. },
  6503. [
  6504. {
  6505. name: "Mini-Sized Sub",
  6506. height: math.unit(3.1, "inches")
  6507. },
  6508. {
  6509. name: "Mid-Sized Sub",
  6510. height: math.unit(6.2, "inches")
  6511. },
  6512. {
  6513. name: "Full-Sized Sub",
  6514. height: math.unit(9.3, "inches")
  6515. },
  6516. {
  6517. name: "Normal",
  6518. height: math.unit(5 + 2 / 12, "foot"),
  6519. default: true
  6520. },
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6525. {
  6526. front: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(160, "lbs"),
  6529. name: "Front",
  6530. image: {
  6531. source: "./media/characters/gene-zeta/front.svg",
  6532. extra: 3006/2826,
  6533. bottom: 182/3188
  6534. }
  6535. }
  6536. },
  6537. [
  6538. {
  6539. name: "Micro",
  6540. height: math.unit(6, "inches")
  6541. },
  6542. {
  6543. name: "Normal",
  6544. height: math.unit(5 + 11/12, "foot"),
  6545. default: true
  6546. },
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(140, "feet")
  6550. },
  6551. {
  6552. name: "Supercharged",
  6553. height: math.unit(2500, "feet")
  6554. },
  6555. ]
  6556. ))
  6557. characterMakers.push(() => makeCharacter(
  6558. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6559. {
  6560. front: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(350, "lbs"),
  6563. name: "Front",
  6564. image: {
  6565. source: "./media/characters/razinox/front.svg",
  6566. extra: 1686 / 1548,
  6567. bottom: 28.2 / 1868
  6568. }
  6569. },
  6570. back: {
  6571. height: math.unit(6, "feet"),
  6572. weight: math.unit(350, "lbs"),
  6573. name: "Back",
  6574. image: {
  6575. source: "./media/characters/razinox/back.svg",
  6576. extra: 1660 / 1590,
  6577. bottom: 15 / 1665
  6578. }
  6579. },
  6580. },
  6581. [
  6582. {
  6583. name: "Normal",
  6584. height: math.unit(10 + 8 / 12, "foot")
  6585. },
  6586. {
  6587. name: "Minimacro",
  6588. height: math.unit(15, "foot")
  6589. },
  6590. {
  6591. name: "Macro",
  6592. height: math.unit(60, "foot"),
  6593. default: true
  6594. },
  6595. {
  6596. name: "Megamacro",
  6597. height: math.unit(5, "miles")
  6598. },
  6599. {
  6600. name: "Gigamacro",
  6601. height: math.unit(6000, "miles")
  6602. },
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6607. {
  6608. front: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(150, "lbs"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/cobalt/front.svg"
  6614. }
  6615. }
  6616. },
  6617. [
  6618. {
  6619. name: "Normal",
  6620. height: math.unit(8 + 1 / 12, "foot")
  6621. },
  6622. {
  6623. name: "Macro",
  6624. height: math.unit(111, "foot"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Supracosmic",
  6629. height: math.unit(1e42, "feet")
  6630. },
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6635. {
  6636. front: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(140, "lbs"),
  6639. name: "Front",
  6640. image: {
  6641. source: "./media/characters/amanda/front.svg"
  6642. }
  6643. }
  6644. },
  6645. [
  6646. {
  6647. name: "Micro",
  6648. height: math.unit(5, "inches"),
  6649. default: true
  6650. },
  6651. ]
  6652. ))
  6653. characterMakers.push(() => makeCharacter(
  6654. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6655. {
  6656. front: {
  6657. height: math.unit(5.59, "feet"),
  6658. weight: math.unit(250, "lbs"),
  6659. name: "Front",
  6660. image: {
  6661. source: "./media/characters/teal/front.svg"
  6662. }
  6663. },
  6664. frontAlt: {
  6665. height: math.unit(6, "feet"),
  6666. weight: math.unit(250, "lbs"),
  6667. name: "Front (Alt)",
  6668. image: {
  6669. source: "./media/characters/teal/front-alt.svg",
  6670. bottom: 0.04,
  6671. extra: 1
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "Normal",
  6678. height: math.unit(12, "feet"),
  6679. default: true
  6680. },
  6681. {
  6682. name: "Macro",
  6683. height: math.unit(300, "feet")
  6684. },
  6685. ]
  6686. ))
  6687. characterMakers.push(() => makeCharacter(
  6688. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6689. {
  6690. frontCat: {
  6691. height: math.unit(6, "feet"),
  6692. weight: math.unit(180, "lbs"),
  6693. name: "Front (Cat)",
  6694. image: {
  6695. source: "./media/characters/ravin-amulet/front-cat.svg"
  6696. }
  6697. },
  6698. frontCatAlt: {
  6699. height: math.unit(6, "feet"),
  6700. weight: math.unit(180, "lbs"),
  6701. name: "Front (Alt, Cat)",
  6702. image: {
  6703. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6704. }
  6705. },
  6706. frontWerewolf: {
  6707. height: math.unit(6 * 1.2, "feet"),
  6708. weight: math.unit(225, "lbs"),
  6709. name: "Front (Werewolf)",
  6710. image: {
  6711. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6712. }
  6713. },
  6714. backWerewolf: {
  6715. height: math.unit(6 * 1.2, "feet"),
  6716. weight: math.unit(225, "lbs"),
  6717. name: "Back (Werewolf)",
  6718. image: {
  6719. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Nano",
  6726. height: math.unit(1, "micrometer")
  6727. },
  6728. {
  6729. name: "Micro",
  6730. height: math.unit(1, "inch")
  6731. },
  6732. {
  6733. name: "Normal",
  6734. height: math.unit(6, "feet"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Macro",
  6739. height: math.unit(60, "feet")
  6740. }
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(6, "feet"),
  6748. weight: math.unit(165, "lbs"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/fluoresce/front.svg"
  6752. }
  6753. }
  6754. },
  6755. [
  6756. {
  6757. name: "Micro",
  6758. height: math.unit(6, "cm")
  6759. },
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(5 + 7 / 12, "feet"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Macro",
  6767. height: math.unit(56, "feet")
  6768. },
  6769. {
  6770. name: "Megamacro",
  6771. height: math.unit(1.9, "miles")
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(9 + 6 / 12, "feet"),
  6780. weight: math.unit(523, "lbs"),
  6781. name: "Side",
  6782. image: {
  6783. source: "./media/characters/aurora/side.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(9 + 6 / 12, "feet")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(96, "feet"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Macro+",
  6799. height: math.unit(243, "feet")
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(194, "cm"),
  6808. weight: math.unit(90, "kg"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/ranek/front.svg"
  6812. }
  6813. },
  6814. side: {
  6815. height: math.unit(194, "cm"),
  6816. weight: math.unit(90, "kg"),
  6817. name: "Side",
  6818. image: {
  6819. source: "./media/characters/ranek/side.svg"
  6820. }
  6821. },
  6822. back: {
  6823. height: math.unit(194, "cm"),
  6824. weight: math.unit(90, "kg"),
  6825. name: "Back",
  6826. image: {
  6827. source: "./media/characters/ranek/back.svg"
  6828. }
  6829. },
  6830. feral: {
  6831. height: math.unit(30, "cm"),
  6832. weight: math.unit(1.6, "lbs"),
  6833. name: "Feral",
  6834. image: {
  6835. source: "./media/characters/ranek/feral.svg"
  6836. }
  6837. },
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(194, "cm"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Macro",
  6847. height: math.unit(100, "meters")
  6848. },
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6853. {
  6854. front: {
  6855. height: math.unit(5 + 6 / 12, "feet"),
  6856. weight: math.unit(153, "lbs"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/andrew-cooper/front.svg"
  6860. }
  6861. },
  6862. },
  6863. [
  6864. {
  6865. name: "Nano",
  6866. height: math.unit(1, "mm")
  6867. },
  6868. {
  6869. name: "Micro",
  6870. height: math.unit(2, "inches")
  6871. },
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(5 + 6 / 12, "feet"),
  6875. default: true
  6876. }
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(180, "lbs"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/akane-sato/front.svg",
  6888. extra: 1219 / 1140
  6889. }
  6890. },
  6891. back: {
  6892. height: math.unit(6, "feet"),
  6893. weight: math.unit(180, "lbs"),
  6894. name: "Back",
  6895. image: {
  6896. source: "./media/characters/akane-sato/back.svg",
  6897. extra: 1219 / 1170
  6898. }
  6899. },
  6900. },
  6901. [
  6902. {
  6903. name: "Normal",
  6904. height: math.unit(2.5, "meters")
  6905. },
  6906. {
  6907. name: "Macro",
  6908. height: math.unit(250, "meters"),
  6909. default: true
  6910. },
  6911. {
  6912. name: "Megamacro",
  6913. height: math.unit(25, "km")
  6914. },
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6919. {
  6920. front: {
  6921. height: math.unit(6, "feet"),
  6922. weight: math.unit(65, "kg"),
  6923. name: "Front",
  6924. image: {
  6925. source: "./media/characters/rook/front.svg",
  6926. extra: 960 / 950
  6927. }
  6928. }
  6929. },
  6930. [
  6931. {
  6932. name: "Normal",
  6933. height: math.unit(8.8, "feet")
  6934. },
  6935. {
  6936. name: "Macro",
  6937. height: math.unit(88, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Megamacro",
  6942. height: math.unit(8, "miles")
  6943. },
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6948. {
  6949. front: {
  6950. height: math.unit(12 + 2 / 12, "feet"),
  6951. weight: math.unit(808, "lbs"),
  6952. name: "Front",
  6953. image: {
  6954. source: "./media/characters/prodigy/front.svg"
  6955. }
  6956. }
  6957. },
  6958. [
  6959. {
  6960. name: "Normal",
  6961. height: math.unit(12 + 2 / 12, "feet"),
  6962. default: true
  6963. },
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(143, "feet")
  6967. },
  6968. {
  6969. name: "Macro+",
  6970. height: math.unit(400, "feet")
  6971. },
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6976. {
  6977. front: {
  6978. height: math.unit(6, "feet"),
  6979. weight: math.unit(225, "lbs"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/daniel/front.svg"
  6983. }
  6984. },
  6985. leaning: {
  6986. height: math.unit(6, "feet"),
  6987. weight: math.unit(225, "lbs"),
  6988. name: "Leaning",
  6989. image: {
  6990. source: "./media/characters/daniel/leaning.svg"
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Macro",
  6997. height: math.unit(1000, "feet"),
  6998. default: true
  6999. },
  7000. ]
  7001. ))
  7002. characterMakers.push(() => makeCharacter(
  7003. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7004. {
  7005. front: {
  7006. height: math.unit(6, "feet"),
  7007. weight: math.unit(88, "lbs"),
  7008. name: "Front",
  7009. image: {
  7010. source: "./media/characters/chiros/front.svg",
  7011. extra: 306 / 226
  7012. }
  7013. },
  7014. side: {
  7015. height: math.unit(6, "feet"),
  7016. weight: math.unit(88, "lbs"),
  7017. name: "Side",
  7018. image: {
  7019. source: "./media/characters/chiros/side.svg",
  7020. extra: 306 / 226
  7021. }
  7022. },
  7023. },
  7024. [
  7025. {
  7026. name: "Normal",
  7027. height: math.unit(6, "cm"),
  7028. default: true
  7029. },
  7030. ]
  7031. ))
  7032. characterMakers.push(() => makeCharacter(
  7033. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7034. {
  7035. front: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(100, "lbs"),
  7038. name: "Front",
  7039. image: {
  7040. source: "./media/characters/selka/front.svg",
  7041. extra: 947 / 887
  7042. }
  7043. }
  7044. },
  7045. [
  7046. {
  7047. name: "Normal",
  7048. height: math.unit(5, "cm"),
  7049. default: true
  7050. },
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7055. {
  7056. front: {
  7057. height: math.unit(8 + 3 / 12, "feet"),
  7058. weight: math.unit(424, "lbs"),
  7059. name: "Front",
  7060. image: {
  7061. source: "./media/characters/verin/front.svg",
  7062. extra: 1845 / 1550
  7063. }
  7064. },
  7065. frontArmored: {
  7066. height: math.unit(8 + 3 / 12, "feet"),
  7067. weight: math.unit(424, "lbs"),
  7068. name: "Front (Armored)",
  7069. image: {
  7070. source: "./media/characters/verin/front-armor.svg",
  7071. extra: 1845 / 1550,
  7072. bottom: 0.01
  7073. }
  7074. },
  7075. back: {
  7076. height: math.unit(8 + 3 / 12, "feet"),
  7077. weight: math.unit(424, "lbs"),
  7078. name: "Back",
  7079. image: {
  7080. source: "./media/characters/verin/back.svg",
  7081. bottom: 0.1,
  7082. extra: 1
  7083. }
  7084. },
  7085. foot: {
  7086. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7087. name: "Foot",
  7088. image: {
  7089. source: "./media/characters/verin/foot.svg"
  7090. }
  7091. },
  7092. },
  7093. [
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(8 + 3 / 12, "feet")
  7097. },
  7098. {
  7099. name: "Minimacro",
  7100. height: math.unit(21, "feet"),
  7101. default: true
  7102. },
  7103. {
  7104. name: "Macro",
  7105. height: math.unit(626, "feet")
  7106. },
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(2.718, "meters"),
  7114. weight: math.unit(150, "lbs"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/sovrim-terraquian/front.svg"
  7118. }
  7119. },
  7120. back: {
  7121. height: math.unit(2.718, "meters"),
  7122. weight: math.unit(150, "lbs"),
  7123. name: "Back",
  7124. image: {
  7125. source: "./media/characters/sovrim-terraquian/back.svg"
  7126. }
  7127. }
  7128. },
  7129. [
  7130. {
  7131. name: "Micro",
  7132. height: math.unit(2, "inches")
  7133. },
  7134. {
  7135. name: "Small",
  7136. height: math.unit(1, "meter")
  7137. },
  7138. {
  7139. name: "Normal",
  7140. height: math.unit(Math.E, "meters"),
  7141. default: true
  7142. },
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(20, "meters")
  7146. },
  7147. {
  7148. name: "Macro+",
  7149. height: math.unit(400, "meters")
  7150. },
  7151. ]
  7152. ))
  7153. characterMakers.push(() => makeCharacter(
  7154. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7155. {
  7156. front: {
  7157. height: math.unit(7, "feet"),
  7158. weight: math.unit(489, "lbs"),
  7159. name: "Front",
  7160. image: {
  7161. source: "./media/characters/reece-silvermane/front.svg",
  7162. bottom: 0.02,
  7163. extra: 1
  7164. }
  7165. },
  7166. },
  7167. [
  7168. {
  7169. name: "Macro",
  7170. height: math.unit(1.5, "miles"),
  7171. default: true
  7172. },
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(78, "kg"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/kane/front.svg",
  7184. extra: 978 / 899
  7185. }
  7186. },
  7187. },
  7188. [
  7189. {
  7190. name: "Normal",
  7191. height: math.unit(2.1, "m"),
  7192. },
  7193. {
  7194. name: "Macro",
  7195. height: math.unit(1, "km"),
  7196. default: true
  7197. },
  7198. ]
  7199. ))
  7200. characterMakers.push(() => makeCharacter(
  7201. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7202. {
  7203. front: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(200, "kg"),
  7206. name: "Front",
  7207. image: {
  7208. source: "./media/characters/tegon/front.svg",
  7209. bottom: 0.01,
  7210. extra: 1
  7211. }
  7212. },
  7213. },
  7214. [
  7215. {
  7216. name: "Micro",
  7217. height: math.unit(1, "inch")
  7218. },
  7219. {
  7220. name: "Normal",
  7221. height: math.unit(6 + 3 / 12, "feet"),
  7222. default: true
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(300, "feet")
  7227. },
  7228. {
  7229. name: "Megamacro",
  7230. height: math.unit(69, "miles")
  7231. },
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7236. {
  7237. side: {
  7238. height: math.unit(6, "feet"),
  7239. weight: math.unit(2304, "lbs"),
  7240. name: "Side",
  7241. image: {
  7242. source: "./media/characters/arcturax/side.svg",
  7243. extra: 790 / 376,
  7244. bottom: 0.01
  7245. }
  7246. },
  7247. },
  7248. [
  7249. {
  7250. name: "Micro",
  7251. height: math.unit(2, "inch")
  7252. },
  7253. {
  7254. name: "Normal",
  7255. height: math.unit(6, "feet")
  7256. },
  7257. {
  7258. name: "Macro",
  7259. height: math.unit(39, "feet"),
  7260. default: true
  7261. },
  7262. {
  7263. name: "Megamacro",
  7264. height: math.unit(7, "miles")
  7265. },
  7266. ]
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7270. {
  7271. front: {
  7272. height: math.unit(6, "feet"),
  7273. weight: math.unit(50, "lbs"),
  7274. name: "Front",
  7275. image: {
  7276. source: "./media/characters/sentri/front.svg",
  7277. extra: 1750 / 1570,
  7278. bottom: 0.025
  7279. }
  7280. },
  7281. frontAlt: {
  7282. height: math.unit(6, "feet"),
  7283. weight: math.unit(50, "lbs"),
  7284. name: "Front (Alt)",
  7285. image: {
  7286. source: "./media/characters/sentri/front-alt.svg",
  7287. extra: 1750 / 1570,
  7288. bottom: 0.025
  7289. }
  7290. },
  7291. },
  7292. [
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(15, "feet"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Macro",
  7300. height: math.unit(2500, "feet")
  7301. }
  7302. ]
  7303. ))
  7304. characterMakers.push(() => makeCharacter(
  7305. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7306. {
  7307. front: {
  7308. height: math.unit(5 + 8 / 12, "feet"),
  7309. weight: math.unit(130, "lbs"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/corvin/front.svg",
  7313. extra: 1803 / 1629
  7314. }
  7315. },
  7316. frontShirt: {
  7317. height: math.unit(5 + 8 / 12, "feet"),
  7318. weight: math.unit(130, "lbs"),
  7319. name: "Front (Shirt)",
  7320. image: {
  7321. source: "./media/characters/corvin/front-shirt.svg",
  7322. extra: 1803 / 1629
  7323. }
  7324. },
  7325. frontPoncho: {
  7326. height: math.unit(5 + 8 / 12, "feet"),
  7327. weight: math.unit(130, "lbs"),
  7328. name: "Front (Poncho)",
  7329. image: {
  7330. source: "./media/characters/corvin/front-poncho.svg",
  7331. extra: 1803 / 1629
  7332. }
  7333. },
  7334. side: {
  7335. height: math.unit(5 + 8 / 12, "feet"),
  7336. weight: math.unit(130, "lbs"),
  7337. name: "Side",
  7338. image: {
  7339. source: "./media/characters/corvin/side.svg",
  7340. extra: 1012 / 945
  7341. }
  7342. },
  7343. back: {
  7344. height: math.unit(5 + 8 / 12, "feet"),
  7345. weight: math.unit(130, "lbs"),
  7346. name: "Back",
  7347. image: {
  7348. source: "./media/characters/corvin/back.svg",
  7349. extra: 1803 / 1629
  7350. }
  7351. },
  7352. },
  7353. [
  7354. {
  7355. name: "Micro",
  7356. height: math.unit(3, "inches")
  7357. },
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(5 + 8 / 12, "feet")
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(300, "feet"),
  7365. default: true
  7366. },
  7367. {
  7368. name: "Megamacro",
  7369. height: math.unit(500, "miles")
  7370. }
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(6, "feet"),
  7378. weight: math.unit(135, "lbs"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/q/front.svg",
  7382. extra: 854 / 752,
  7383. bottom: 0.005
  7384. }
  7385. },
  7386. back: {
  7387. height: math.unit(6, "feet"),
  7388. weight: math.unit(130, "lbs"),
  7389. name: "Back",
  7390. image: {
  7391. source: "./media/characters/q/back.svg",
  7392. extra: 854 / 752
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Macro",
  7399. height: math.unit(90, "feet"),
  7400. default: true
  7401. },
  7402. {
  7403. name: "Extra Macro",
  7404. height: math.unit(300, "feet"),
  7405. },
  7406. {
  7407. name: "BIG WALF",
  7408. height: math.unit(750, "feet"),
  7409. },
  7410. ]
  7411. ))
  7412. characterMakers.push(() => makeCharacter(
  7413. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7414. {
  7415. front: {
  7416. height: math.unit(6, "feet"),
  7417. weight: math.unit(150, "lbs"),
  7418. name: "Front",
  7419. image: {
  7420. source: "./media/characters/carley/front.svg",
  7421. extra: 3927 / 3540,
  7422. bottom: 29.2 / 735
  7423. }
  7424. }
  7425. },
  7426. [
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(6 + 3 / 12, "feet")
  7430. },
  7431. {
  7432. name: "Macro",
  7433. height: math.unit(185, "feet"),
  7434. default: true
  7435. },
  7436. {
  7437. name: "Megamacro",
  7438. height: math.unit(8, "miles"),
  7439. },
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7444. {
  7445. front: {
  7446. height: math.unit(3, "feet"),
  7447. weight: math.unit(28, "lbs"),
  7448. name: "Front",
  7449. image: {
  7450. source: "./media/characters/citrine/front.svg"
  7451. }
  7452. }
  7453. },
  7454. [
  7455. {
  7456. name: "Normal",
  7457. height: math.unit(3, "feet"),
  7458. default: true
  7459. }
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7464. {
  7465. front: {
  7466. height: math.unit(14, "feet"),
  7467. weight: math.unit(1450, "kg"),
  7468. capacity: math.unit(15, "people"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/aura-starwind/front.svg",
  7472. extra: 1455 / 1335
  7473. }
  7474. },
  7475. side: {
  7476. height: math.unit(14, "feet"),
  7477. weight: math.unit(1450, "kg"),
  7478. capacity: math.unit(15, "people"),
  7479. name: "Side",
  7480. image: {
  7481. source: "./media/characters/aura-starwind/side.svg",
  7482. extra: 1654 / 1497
  7483. }
  7484. },
  7485. taur: {
  7486. height: math.unit(18, "feet"),
  7487. weight: math.unit(5500, "kg"),
  7488. capacity: math.unit(50, "people"),
  7489. name: "Taur",
  7490. image: {
  7491. source: "./media/characters/aura-starwind/taur.svg",
  7492. extra: 1760 / 1650
  7493. }
  7494. },
  7495. feral: {
  7496. height: math.unit(46, "feet"),
  7497. weight: math.unit(25000, "kg"),
  7498. capacity: math.unit(120, "people"),
  7499. name: "Feral",
  7500. image: {
  7501. source: "./media/characters/aura-starwind/feral.svg"
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(14, "feet"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(50, "meters")
  7514. },
  7515. {
  7516. name: "Megamacro",
  7517. height: math.unit(5000, "meters")
  7518. },
  7519. {
  7520. name: "Gigamacro",
  7521. height: math.unit(100000, "kilometers")
  7522. },
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(2 + 7 / 12, "feet"),
  7530. weight: math.unit(32, "lbs"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/rivet/front.svg",
  7534. extra: 1716 / 1658,
  7535. bottom: 0.03
  7536. }
  7537. },
  7538. foot: {
  7539. height: math.unit(0.551, "feet"),
  7540. name: "Rivet's Foot",
  7541. image: {
  7542. source: "./media/characters/rivet/foot.svg"
  7543. },
  7544. rename: true
  7545. }
  7546. },
  7547. [
  7548. {
  7549. name: "Micro",
  7550. height: math.unit(1.5, "inches"),
  7551. },
  7552. {
  7553. name: "Normal",
  7554. height: math.unit(2 + 7 / 12, "feet"),
  7555. default: true
  7556. },
  7557. {
  7558. name: "Macro",
  7559. height: math.unit(85, "feet")
  7560. },
  7561. {
  7562. name: "Megamacro",
  7563. height: math.unit(2.2, "km")
  7564. }
  7565. ]
  7566. ))
  7567. characterMakers.push(() => makeCharacter(
  7568. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7569. {
  7570. front: {
  7571. height: math.unit(5 + 9 / 12, "feet"),
  7572. weight: math.unit(150, "lbs"),
  7573. name: "Front",
  7574. image: {
  7575. source: "./media/characters/coffee/front.svg",
  7576. extra: 3666 / 3032,
  7577. bottom: 0.04
  7578. }
  7579. },
  7580. foot: {
  7581. height: math.unit(1.29, "feet"),
  7582. name: "Foot",
  7583. image: {
  7584. source: "./media/characters/coffee/foot.svg"
  7585. }
  7586. },
  7587. },
  7588. [
  7589. {
  7590. name: "Micro",
  7591. height: math.unit(2, "inches"),
  7592. },
  7593. {
  7594. name: "Normal",
  7595. height: math.unit(5 + 9 / 12, "feet"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(800, "feet")
  7601. },
  7602. {
  7603. name: "Megamacro",
  7604. height: math.unit(25, "miles")
  7605. }
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(6, "feet"),
  7613. weight: math.unit(200, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/chari-gal/front.svg",
  7617. extra: 1568 / 1385,
  7618. bottom: 0.047
  7619. }
  7620. },
  7621. gigantamax: {
  7622. height: math.unit(6 * 16, "feet"),
  7623. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7624. name: "Gigantamax",
  7625. image: {
  7626. source: "./media/characters/chari-gal/gigantamax.svg",
  7627. extra: 1124 / 888,
  7628. bottom: 0.03
  7629. }
  7630. },
  7631. },
  7632. [
  7633. {
  7634. name: "Normal",
  7635. height: math.unit(5 + 7 / 12, "feet")
  7636. },
  7637. {
  7638. name: "Macro",
  7639. height: math.unit(200, "feet"),
  7640. default: true
  7641. }
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(6, "feet"),
  7649. weight: math.unit(150, "lbs"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/nova/front.svg",
  7653. extra: 5000 / 4722,
  7654. bottom: 0.02
  7655. }
  7656. }
  7657. },
  7658. [
  7659. {
  7660. name: "Micro-",
  7661. height: math.unit(0.8, "inches")
  7662. },
  7663. {
  7664. name: "Micro",
  7665. height: math.unit(2, "inches"),
  7666. default: true
  7667. },
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7672. {
  7673. front: {
  7674. height: math.unit(3 + 1 / 12, "feet"),
  7675. weight: math.unit(21.7, "lbs"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/argent/front.svg",
  7679. extra: 1471 / 1331,
  7680. bottom: 100.8 / 1575.5
  7681. }
  7682. }
  7683. },
  7684. [
  7685. {
  7686. name: "Micro",
  7687. height: math.unit(2, "inches")
  7688. },
  7689. {
  7690. name: "Normal",
  7691. height: math.unit(3 + 1 / 12, "feet"),
  7692. default: true
  7693. },
  7694. {
  7695. name: "Macro",
  7696. height: math.unit(120, "feet")
  7697. },
  7698. ]
  7699. ))
  7700. characterMakers.push(() => makeCharacter(
  7701. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7702. {
  7703. lamp: {
  7704. height: math.unit(7 * 1559 / 989, "feet"),
  7705. name: "Magic Lamp",
  7706. image: {
  7707. source: "./media/characters/mira-al-cul/lamp.svg",
  7708. extra: 1617 / 1559
  7709. }
  7710. },
  7711. front: {
  7712. height: math.unit(7, "feet"),
  7713. name: "Front",
  7714. image: {
  7715. source: "./media/characters/mira-al-cul/front.svg",
  7716. extra: 1044 / 990
  7717. }
  7718. },
  7719. },
  7720. [
  7721. {
  7722. name: "Heavily Restricted",
  7723. height: math.unit(7 * 1559 / 989, "feet")
  7724. },
  7725. {
  7726. name: "Freshly Freed",
  7727. height: math.unit(50 * 1559 / 989, "feet")
  7728. },
  7729. {
  7730. name: "World Encompassing",
  7731. height: math.unit(10000 * 1559 / 989, "miles")
  7732. },
  7733. {
  7734. name: "Galactic",
  7735. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7736. },
  7737. {
  7738. name: "Palmed Universe",
  7739. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Multiversal Matriarch",
  7744. height: math.unit(8.87e10, "yottameters")
  7745. },
  7746. {
  7747. name: "Void Mother",
  7748. height: math.unit(3.14e110, "yottaparsecs")
  7749. },
  7750. {
  7751. name: "Toying with Transcendence",
  7752. height: math.unit(1e307, "meters")
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7758. {
  7759. front: {
  7760. height: math.unit(17 + 1 / 12, "feet"),
  7761. weight: math.unit(476.2 * 5, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/kuro-shi-uchū/front.svg",
  7765. extra: 2329 / 1835,
  7766. bottom: 0.02
  7767. }
  7768. },
  7769. },
  7770. [
  7771. {
  7772. name: "Micro",
  7773. height: math.unit(2, "inches")
  7774. },
  7775. {
  7776. name: "Normal",
  7777. height: math.unit(12, "meters")
  7778. },
  7779. {
  7780. name: "Planetary",
  7781. height: math.unit(0.00929, "AU"),
  7782. default: true
  7783. },
  7784. {
  7785. name: "Universal",
  7786. height: math.unit(20, "gigaparsecs")
  7787. },
  7788. ]
  7789. ))
  7790. characterMakers.push(() => makeCharacter(
  7791. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7792. {
  7793. front: {
  7794. height: math.unit(5 + 2 / 12, "feet"),
  7795. weight: math.unit(120, "lbs"),
  7796. name: "Front",
  7797. image: {
  7798. source: "./media/characters/katherine/front.svg",
  7799. extra: 2075 / 1969
  7800. }
  7801. },
  7802. dress: {
  7803. height: math.unit(5 + 2 / 12, "feet"),
  7804. weight: math.unit(120, "lbs"),
  7805. name: "Dress",
  7806. image: {
  7807. source: "./media/characters/katherine/dress.svg",
  7808. extra: 2258 / 2064
  7809. }
  7810. },
  7811. },
  7812. [
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(1, "inches"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(5 + 2 / 12, "feet")
  7821. },
  7822. {
  7823. name: "Macro",
  7824. height: math.unit(100, "meters")
  7825. },
  7826. {
  7827. name: "Megamacro",
  7828. height: math.unit(80, "miles")
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(7 + 8 / 12, "feet"),
  7837. weight: math.unit(250, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/yevis/front.svg",
  7841. extra: 1938 / 1755
  7842. }
  7843. }
  7844. },
  7845. [
  7846. {
  7847. name: "Mortal",
  7848. height: math.unit(7 + 8 / 12, "feet")
  7849. },
  7850. {
  7851. name: "Battle",
  7852. height: math.unit(25 + 11 / 12, "feet")
  7853. },
  7854. {
  7855. name: "Wrath",
  7856. height: math.unit(1654 + 11 / 12, "feet")
  7857. },
  7858. {
  7859. name: "Planet Destroyer",
  7860. height: math.unit(12000, "miles")
  7861. },
  7862. {
  7863. name: "Galaxy Conqueror",
  7864. height: math.unit(1.45, "zettameters"),
  7865. default: true
  7866. },
  7867. {
  7868. name: "Universal War",
  7869. height: math.unit(184, "gigaparsecs")
  7870. },
  7871. {
  7872. name: "Eternity War",
  7873. height: math.unit(1.98e55, "yottaparsecs")
  7874. },
  7875. ]
  7876. ))
  7877. characterMakers.push(() => makeCharacter(
  7878. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7879. {
  7880. front: {
  7881. height: math.unit(5 + 8 / 12, "feet"),
  7882. weight: math.unit(63, "kg"),
  7883. name: "Front",
  7884. image: {
  7885. source: "./media/characters/xavier/front.svg",
  7886. extra: 944 / 883
  7887. }
  7888. },
  7889. frontStretch: {
  7890. height: math.unit(5 + 8 / 12, "feet"),
  7891. weight: math.unit(63, "kg"),
  7892. name: "Stretching",
  7893. image: {
  7894. source: "./media/characters/xavier/front-stretch.svg",
  7895. extra: 962 / 820
  7896. }
  7897. },
  7898. },
  7899. [
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(5 + 8 / 12, "feet")
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(100, "meters"),
  7907. default: true
  7908. },
  7909. {
  7910. name: "McLargeHuge",
  7911. height: math.unit(10, "miles")
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(5 + 5 / 12, "feet"),
  7920. weight: math.unit(150, "lb"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/joshii/front.svg",
  7924. extra: 765/653,
  7925. bottom: 51/816
  7926. }
  7927. },
  7928. foot: {
  7929. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7930. name: "Foot",
  7931. image: {
  7932. source: "./media/characters/joshii/foot.svg"
  7933. }
  7934. },
  7935. },
  7936. [
  7937. {
  7938. name: "Micro",
  7939. height: math.unit(2, "inches"),
  7940. default: true
  7941. },
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(5 + 5 / 12, "feet")
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(785, "feet")
  7949. },
  7950. {
  7951. name: "Megamacro",
  7952. height: math.unit(24.5, "miles")
  7953. },
  7954. ]
  7955. ))
  7956. characterMakers.push(() => makeCharacter(
  7957. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7958. {
  7959. front: {
  7960. height: math.unit(6, "feet"),
  7961. weight: math.unit(150, "lb"),
  7962. name: "Front",
  7963. image: {
  7964. source: "./media/characters/goddess-elizabeth/front.svg",
  7965. extra: 1800 / 1525,
  7966. bottom: 0.005
  7967. }
  7968. },
  7969. foot: {
  7970. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7971. name: "Foot",
  7972. image: {
  7973. source: "./media/characters/goddess-elizabeth/foot.svg"
  7974. }
  7975. },
  7976. mouth: {
  7977. height: math.unit(6, "feet"),
  7978. name: "Mouth",
  7979. image: {
  7980. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7981. }
  7982. },
  7983. },
  7984. [
  7985. {
  7986. name: "Micro",
  7987. height: math.unit(12, "feet")
  7988. },
  7989. {
  7990. name: "Normal",
  7991. height: math.unit(80, "miles"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(15000, "parsecs")
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(5 + 9 / 12, "feet"),
  8005. weight: math.unit(144, "lb"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/kara/front.svg"
  8009. }
  8010. },
  8011. feet: {
  8012. height: math.unit(6 / 6.765, "feet"),
  8013. name: "Kara's Feet",
  8014. rename: true,
  8015. image: {
  8016. source: "./media/characters/kara/feet.svg"
  8017. }
  8018. },
  8019. },
  8020. [
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(5 + 9 / 12, "feet")
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(174, "feet"),
  8028. default: true
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(18, "feet"),
  8037. weight: math.unit(4050, "lb"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/tyrone/front.svg",
  8041. extra: 2520 / 2402,
  8042. bottom: 0.025
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(18, "feet"),
  8050. default: true
  8051. },
  8052. {
  8053. name: "Macro",
  8054. height: math.unit(300, "feet")
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(7 + 8 / 12, "feet"),
  8063. weight: math.unit(120, "lb"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/danny/front.svg",
  8067. extra: 1490 / 1350
  8068. }
  8069. },
  8070. back: {
  8071. height: math.unit(7 + 8 / 12, "feet"),
  8072. weight: math.unit(120, "lb"),
  8073. name: "Back",
  8074. image: {
  8075. source: "./media/characters/danny/back.svg",
  8076. extra: 1490 / 1350
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(7 + 8 / 12, "feet"),
  8084. default: true
  8085. },
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8090. {
  8091. front: {
  8092. height: math.unit(3.5, "inches"),
  8093. weight: math.unit(19, "grams"),
  8094. name: "Front",
  8095. image: {
  8096. source: "./media/characters/mallow/front.svg",
  8097. extra: 471 / 431
  8098. }
  8099. },
  8100. back: {
  8101. height: math.unit(3.5, "inches"),
  8102. weight: math.unit(19, "grams"),
  8103. name: "Back",
  8104. image: {
  8105. source: "./media/characters/mallow/back.svg",
  8106. extra: 471 / 431
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Normal",
  8113. height: math.unit(3.5, "inches"),
  8114. default: true
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(9, "feet"),
  8123. weight: math.unit(230, "kg"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/starry-aqua/front.svg"
  8127. }
  8128. },
  8129. back: {
  8130. height: math.unit(9, "feet"),
  8131. weight: math.unit(230, "kg"),
  8132. name: "Back",
  8133. image: {
  8134. source: "./media/characters/starry-aqua/back.svg"
  8135. }
  8136. },
  8137. hand: {
  8138. height: math.unit(9 * 0.1168, "feet"),
  8139. name: "Hand",
  8140. image: {
  8141. source: "./media/characters/starry-aqua/hand.svg"
  8142. }
  8143. },
  8144. foot: {
  8145. height: math.unit(9 * 0.18, "feet"),
  8146. name: "Foot",
  8147. image: {
  8148. source: "./media/characters/starry-aqua/foot.svg"
  8149. }
  8150. }
  8151. },
  8152. [
  8153. {
  8154. name: "Micro",
  8155. height: math.unit(3, "inches")
  8156. },
  8157. {
  8158. name: "Normal",
  8159. height: math.unit(9, "feet")
  8160. },
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(300, "feet"),
  8164. default: true
  8165. },
  8166. {
  8167. name: "Megamacro",
  8168. height: math.unit(3200, "feet")
  8169. }
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8174. {
  8175. front: {
  8176. height: math.unit(6, "feet"),
  8177. weight: math.unit(230, "lb"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/luka/front.svg",
  8181. extra: 1,
  8182. bottom: 0.025
  8183. }
  8184. },
  8185. },
  8186. [
  8187. {
  8188. name: "Normal",
  8189. height: math.unit(12 + 8 / 12, "feet"),
  8190. default: true
  8191. },
  8192. {
  8193. name: "Minimacro",
  8194. height: math.unit(20, "feet")
  8195. },
  8196. {
  8197. name: "Macro",
  8198. height: math.unit(250, "feet")
  8199. },
  8200. {
  8201. name: "Megamacro",
  8202. height: math.unit(5, "miles")
  8203. },
  8204. {
  8205. name: "Gigamacro",
  8206. height: math.unit(8000, "miles")
  8207. },
  8208. ]
  8209. ))
  8210. characterMakers.push(() => makeCharacter(
  8211. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8212. {
  8213. front: {
  8214. height: math.unit(6, "feet"),
  8215. weight: math.unit(150, "lb"),
  8216. name: "Front",
  8217. image: {
  8218. source: "./media/characters/natalie-nightring/front.svg",
  8219. extra: 1,
  8220. bottom: 0.06
  8221. }
  8222. },
  8223. },
  8224. [
  8225. {
  8226. name: "Uh Oh",
  8227. height: math.unit(0.1, "mm")
  8228. },
  8229. {
  8230. name: "Small",
  8231. height: math.unit(3, "inches")
  8232. },
  8233. {
  8234. name: "Human Scale",
  8235. height: math.unit(6, "feet")
  8236. },
  8237. {
  8238. name: "Librarian",
  8239. height: math.unit(50, "feet"),
  8240. default: true
  8241. },
  8242. {
  8243. name: "Immense",
  8244. height: math.unit(200, "miles")
  8245. },
  8246. ]
  8247. ))
  8248. characterMakers.push(() => makeCharacter(
  8249. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8250. {
  8251. front: {
  8252. height: math.unit(6, "feet"),
  8253. weight: math.unit(180, "lbs"),
  8254. name: "Front",
  8255. image: {
  8256. source: "./media/characters/danni-rosie/front.svg",
  8257. extra: 1260 / 1128,
  8258. bottom: 0.022
  8259. }
  8260. },
  8261. },
  8262. [
  8263. {
  8264. name: "Micro",
  8265. height: math.unit(2, "inches"),
  8266. default: true
  8267. },
  8268. ]
  8269. ))
  8270. characterMakers.push(() => makeCharacter(
  8271. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8272. {
  8273. front: {
  8274. height: math.unit(5 + 9 / 12, "feet"),
  8275. weight: math.unit(220, "lb"),
  8276. name: "Front",
  8277. image: {
  8278. source: "./media/characters/samantha-kruse/front.svg",
  8279. extra: (985 / 935),
  8280. bottom: 0.03
  8281. }
  8282. },
  8283. frontUndressed: {
  8284. height: math.unit(5 + 9 / 12, "feet"),
  8285. weight: math.unit(220, "lb"),
  8286. name: "Front (Undressed)",
  8287. image: {
  8288. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8289. extra: (973 / 923),
  8290. bottom: 0.025
  8291. }
  8292. },
  8293. fat: {
  8294. height: math.unit(5 + 9 / 12, "feet"),
  8295. weight: math.unit(900, "lb"),
  8296. name: "Front (Fat)",
  8297. image: {
  8298. source: "./media/characters/samantha-kruse/fat.svg",
  8299. extra: 2688 / 2561
  8300. }
  8301. },
  8302. },
  8303. [
  8304. {
  8305. name: "Normal",
  8306. height: math.unit(5 + 9 / 12, "feet"),
  8307. default: true
  8308. }
  8309. ]
  8310. ))
  8311. characterMakers.push(() => makeCharacter(
  8312. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8313. {
  8314. back: {
  8315. height: math.unit(5 + 4 / 12, "feet"),
  8316. weight: math.unit(4963, "lb"),
  8317. name: "Back",
  8318. image: {
  8319. source: "./media/characters/amelia-rosie/back.svg",
  8320. extra: 1113 / 963,
  8321. bottom: 0.01
  8322. }
  8323. },
  8324. },
  8325. [
  8326. {
  8327. name: "Level 0",
  8328. height: math.unit(5 + 4 / 12, "feet")
  8329. },
  8330. {
  8331. name: "Level 1",
  8332. height: math.unit(164597, "feet"),
  8333. default: true
  8334. },
  8335. {
  8336. name: "Level 2",
  8337. height: math.unit(956243, "miles")
  8338. },
  8339. {
  8340. name: "Level 3",
  8341. height: math.unit(29421709423, "miles")
  8342. },
  8343. {
  8344. name: "Level 4",
  8345. height: math.unit(154, "lightyears")
  8346. },
  8347. {
  8348. name: "Level 5",
  8349. height: math.unit(4738272, "lightyears")
  8350. },
  8351. {
  8352. name: "Level 6",
  8353. height: math.unit(145787152896, "lightyears")
  8354. },
  8355. ]
  8356. ))
  8357. characterMakers.push(() => makeCharacter(
  8358. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8359. {
  8360. front: {
  8361. height: math.unit(5 + 11 / 12, "feet"),
  8362. weight: math.unit(65, "kg"),
  8363. name: "Front",
  8364. image: {
  8365. source: "./media/characters/rook-kitara/front.svg",
  8366. extra: 1347 / 1274,
  8367. bottom: 0.005
  8368. }
  8369. },
  8370. },
  8371. [
  8372. {
  8373. name: "Totally Unfair",
  8374. height: math.unit(1.8, "mm")
  8375. },
  8376. {
  8377. name: "Lap Rookie",
  8378. height: math.unit(1.4, "feet")
  8379. },
  8380. {
  8381. name: "Normal",
  8382. height: math.unit(5 + 11 / 12, "feet"),
  8383. default: true
  8384. },
  8385. {
  8386. name: "How Did This Happen",
  8387. height: math.unit(80, "miles")
  8388. }
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(7, "feet"),
  8396. weight: math.unit(300, "lb"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/pisces/front.svg",
  8400. extra: 2255 / 2115,
  8401. bottom: 0.03
  8402. }
  8403. },
  8404. back: {
  8405. height: math.unit(7, "feet"),
  8406. weight: math.unit(300, "lb"),
  8407. name: "Back",
  8408. image: {
  8409. source: "./media/characters/pisces/back.svg",
  8410. extra: 2146 / 2055,
  8411. bottom: 0.04
  8412. }
  8413. },
  8414. },
  8415. [
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(7, "feet"),
  8419. default: true
  8420. },
  8421. {
  8422. name: "Swimming Pool",
  8423. height: math.unit(12.2, "meters")
  8424. },
  8425. {
  8426. name: "Olympic Swimming Pool",
  8427. height: math.unit(56.3, "meters")
  8428. },
  8429. {
  8430. name: "Lake Superior",
  8431. height: math.unit(93900, "meters")
  8432. },
  8433. {
  8434. name: "Mediterranean Sea",
  8435. height: math.unit(644457, "meters")
  8436. },
  8437. {
  8438. name: "World's Oceans",
  8439. height: math.unit(4567491, "meters")
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(2.3, "meters"),
  8448. weight: math.unit(120, "kg"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/zelas/front.svg"
  8452. }
  8453. },
  8454. side: {
  8455. height: math.unit(2.3, "meters"),
  8456. weight: math.unit(120, "kg"),
  8457. name: "Side",
  8458. image: {
  8459. source: "./media/characters/zelas/side.svg"
  8460. }
  8461. },
  8462. back: {
  8463. height: math.unit(2.3, "meters"),
  8464. weight: math.unit(120, "kg"),
  8465. name: "Back",
  8466. image: {
  8467. source: "./media/characters/zelas/back.svg"
  8468. }
  8469. },
  8470. foot: {
  8471. height: math.unit(1.116, "feet"),
  8472. name: "Foot",
  8473. image: {
  8474. source: "./media/characters/zelas/foot.svg"
  8475. }
  8476. },
  8477. },
  8478. [
  8479. {
  8480. name: "Normal",
  8481. height: math.unit(2.3, "meters")
  8482. },
  8483. {
  8484. name: "Macro",
  8485. height: math.unit(30, "meters"),
  8486. default: true
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8492. {
  8493. front: {
  8494. height: math.unit(1, "inch"),
  8495. weight: math.unit(0.21, "grams"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/talbot/front.svg",
  8499. extra: 594 / 544
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Micro",
  8506. height: math.unit(1, "inch"),
  8507. default: true
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8513. {
  8514. front: {
  8515. height: math.unit(3 + 3 / 12, "feet"),
  8516. weight: math.unit(51.8, "lb"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/fliss/front.svg",
  8520. extra: 840 / 640
  8521. }
  8522. },
  8523. },
  8524. [
  8525. {
  8526. name: "Teeny Tiny",
  8527. height: math.unit(1, "mm")
  8528. },
  8529. {
  8530. name: "Small",
  8531. height: math.unit(1, "inch"),
  8532. default: true
  8533. },
  8534. {
  8535. name: "Standard Sylveon",
  8536. height: math.unit(3 + 3 / 12, "feet")
  8537. },
  8538. {
  8539. name: "Large Nuisance",
  8540. height: math.unit(33, "feet")
  8541. },
  8542. {
  8543. name: "City Filler",
  8544. height: math.unit(3000, "feet")
  8545. },
  8546. {
  8547. name: "New Horizon",
  8548. height: math.unit(6000, "miles")
  8549. },
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8554. {
  8555. front: {
  8556. height: math.unit(5, "cm"),
  8557. weight: math.unit(1.94, "g"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/fleta/front.svg",
  8561. extra: 835 / 803
  8562. }
  8563. },
  8564. back: {
  8565. height: math.unit(5, "cm"),
  8566. weight: math.unit(1.94, "g"),
  8567. name: "Back",
  8568. image: {
  8569. source: "./media/characters/fleta/back.svg",
  8570. extra: 835 / 803
  8571. }
  8572. },
  8573. },
  8574. [
  8575. {
  8576. name: "Micro",
  8577. height: math.unit(5, "cm"),
  8578. default: true
  8579. },
  8580. ]
  8581. ))
  8582. characterMakers.push(() => makeCharacter(
  8583. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8584. {
  8585. front: {
  8586. height: math.unit(6, "feet"),
  8587. weight: math.unit(225, "lb"),
  8588. name: "Front",
  8589. image: {
  8590. source: "./media/characters/dominic/front.svg",
  8591. extra: 1770 / 1620,
  8592. bottom: 0.025
  8593. }
  8594. },
  8595. back: {
  8596. height: math.unit(6, "feet"),
  8597. weight: math.unit(225, "lb"),
  8598. name: "Back",
  8599. image: {
  8600. source: "./media/characters/dominic/back.svg",
  8601. extra: 1745 / 1620,
  8602. bottom: 0.065
  8603. }
  8604. },
  8605. },
  8606. [
  8607. {
  8608. name: "Nano",
  8609. height: math.unit(0.1, "mm")
  8610. },
  8611. {
  8612. name: "Micro-",
  8613. height: math.unit(1, "mm")
  8614. },
  8615. {
  8616. name: "Micro",
  8617. height: math.unit(4, "inches")
  8618. },
  8619. {
  8620. name: "Normal",
  8621. height: math.unit(6 + 4 / 12, "feet"),
  8622. default: true
  8623. },
  8624. {
  8625. name: "Macro",
  8626. height: math.unit(115, "feet")
  8627. },
  8628. {
  8629. name: "Macro+",
  8630. height: math.unit(955, "feet")
  8631. },
  8632. {
  8633. name: "Megamacro",
  8634. height: math.unit(8990, "feet")
  8635. },
  8636. {
  8637. name: "Gigmacro",
  8638. height: math.unit(9310, "miles")
  8639. },
  8640. {
  8641. name: "Teramacro",
  8642. height: math.unit(1567005010, "miles")
  8643. },
  8644. {
  8645. name: "Examacro",
  8646. height: math.unit(1425, "parsecs")
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(400, "feet"),
  8655. weight: math.unit(44444444, "lb"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/major-colonel/front.svg"
  8659. }
  8660. },
  8661. back: {
  8662. height: math.unit(400, "feet"),
  8663. weight: math.unit(44444444, "lb"),
  8664. name: "Back",
  8665. image: {
  8666. source: "./media/characters/major-colonel/back.svg"
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Macro",
  8673. height: math.unit(400, "feet"),
  8674. default: true
  8675. },
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8680. {
  8681. catFront: {
  8682. height: math.unit(6, "feet"),
  8683. weight: math.unit(120, "lb"),
  8684. name: "Front (Cat Side)",
  8685. image: {
  8686. source: "./media/characters/axel-lycan/cat-front.svg",
  8687. extra: 430 / 402,
  8688. bottom: 43 / 472.35
  8689. }
  8690. },
  8691. catBack: {
  8692. height: math.unit(6, "feet"),
  8693. weight: math.unit(120, "lb"),
  8694. name: "Back (Cat Side)",
  8695. image: {
  8696. source: "./media/characters/axel-lycan/cat-back.svg",
  8697. extra: 447 / 419,
  8698. bottom: 23.3 / 469
  8699. }
  8700. },
  8701. wolfFront: {
  8702. height: math.unit(6, "feet"),
  8703. weight: math.unit(120, "lb"),
  8704. name: "Front (Wolf Side)",
  8705. image: {
  8706. source: "./media/characters/axel-lycan/wolf-front.svg",
  8707. extra: 485 / 456,
  8708. bottom: 19 / 504
  8709. }
  8710. },
  8711. wolfBack: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(120, "lb"),
  8714. name: "Back (Wolf Side)",
  8715. image: {
  8716. source: "./media/characters/axel-lycan/wolf-back.svg",
  8717. extra: 475 / 438,
  8718. bottom: 39.2 / 514
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Macro",
  8725. height: math.unit(1, "km"),
  8726. default: true
  8727. },
  8728. ]
  8729. ))
  8730. characterMakers.push(() => makeCharacter(
  8731. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8732. {
  8733. front: {
  8734. height: math.unit(5 + 9 / 12, "feet"),
  8735. weight: math.unit(175, "lb"),
  8736. name: "Front",
  8737. image: {
  8738. source: "./media/characters/vanrel-hyena/front.svg",
  8739. extra: 1086 / 1010,
  8740. bottom: 0.04
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Normal",
  8747. height: math.unit(5 + 9 / 12, "feet"),
  8748. default: true
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8754. {
  8755. front: {
  8756. height: math.unit(6, "feet"),
  8757. weight: math.unit(103, "lb"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/abbott-absol/front.svg",
  8761. extra: 2010 / 1842
  8762. }
  8763. },
  8764. },
  8765. [
  8766. {
  8767. name: "Megamicro",
  8768. height: math.unit(0.1, "mm")
  8769. },
  8770. {
  8771. name: "Micro",
  8772. height: math.unit(1, "inch")
  8773. },
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(6, "feet"),
  8777. default: true
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(264, "lb"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/hector/front.svg",
  8790. extra: 2280 / 2130,
  8791. bottom: 0.07
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(12.25, "foot"),
  8799. default: true
  8800. },
  8801. {
  8802. name: "Macro",
  8803. height: math.unit(160, "feet")
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8809. {
  8810. front: {
  8811. height: math.unit(6, "feet"),
  8812. weight: math.unit(150, "lb"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/sal/front.svg",
  8816. extra: 1846 / 1699,
  8817. bottom: 0.04
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Megamacro",
  8824. height: math.unit(10, "miles"),
  8825. default: true
  8826. },
  8827. ]
  8828. ))
  8829. characterMakers.push(() => makeCharacter(
  8830. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8831. {
  8832. front: {
  8833. height: math.unit(3, "meters"),
  8834. weight: math.unit(450, "kg"),
  8835. name: "front",
  8836. image: {
  8837. source: "./media/characters/ranger/front.svg",
  8838. extra: 2401 / 2243,
  8839. bottom: 0.05
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(3, "meters"),
  8847. default: true
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8853. {
  8854. front: {
  8855. height: math.unit(14, "feet"),
  8856. weight: math.unit(800, "kg"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/theresa/front.svg",
  8860. extra: 3575 / 3346,
  8861. bottom: 0.03
  8862. }
  8863. },
  8864. },
  8865. [
  8866. {
  8867. name: "Normal",
  8868. height: math.unit(14, "feet"),
  8869. default: true
  8870. },
  8871. ]
  8872. ))
  8873. characterMakers.push(() => makeCharacter(
  8874. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8875. {
  8876. front: {
  8877. height: math.unit(6, "feet"),
  8878. weight: math.unit(3, "kg"),
  8879. name: "Front",
  8880. image: {
  8881. source: "./media/characters/ine/front.svg",
  8882. extra: 678 / 539,
  8883. bottom: 0.023
  8884. }
  8885. },
  8886. },
  8887. [
  8888. {
  8889. name: "Normal",
  8890. height: math.unit(2.265, "feet"),
  8891. default: true
  8892. },
  8893. ]
  8894. ))
  8895. characterMakers.push(() => makeCharacter(
  8896. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8897. {
  8898. front: {
  8899. height: math.unit(5, "feet"),
  8900. weight: math.unit(30, "kg"),
  8901. name: "Front",
  8902. image: {
  8903. source: "./media/characters/vial/front.svg",
  8904. extra: 1365 / 1277,
  8905. bottom: 0.04
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(5, "feet"),
  8913. default: true
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8919. {
  8920. side: {
  8921. height: math.unit(3.4, "meters"),
  8922. weight: math.unit(1000, "lb"),
  8923. name: "Side",
  8924. image: {
  8925. source: "./media/characters/rovoska/side.svg",
  8926. extra: 4403 / 1515
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(3.4, "meters"),
  8934. default: true
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8940. {
  8941. front: {
  8942. height: math.unit(8, "feet"),
  8943. weight: math.unit(315, "lb"),
  8944. name: "Front",
  8945. image: {
  8946. source: "./media/characters/gunner-rotthbauer/front.svg"
  8947. }
  8948. },
  8949. back: {
  8950. height: math.unit(8, "feet"),
  8951. weight: math.unit(315, "lb"),
  8952. name: "Back",
  8953. image: {
  8954. source: "./media/characters/gunner-rotthbauer/back.svg"
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Micro",
  8961. height: math.unit(3.5, "inches")
  8962. },
  8963. {
  8964. name: "Normal",
  8965. height: math.unit(8, "feet"),
  8966. default: true
  8967. },
  8968. {
  8969. name: "Macro",
  8970. height: math.unit(250, "feet")
  8971. },
  8972. {
  8973. name: "Megamacro",
  8974. height: math.unit(1, "AU")
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8980. {
  8981. front: {
  8982. height: math.unit(5 + 5 / 12, "feet"),
  8983. weight: math.unit(140, "lb"),
  8984. name: "Front",
  8985. image: {
  8986. source: "./media/characters/allatia/front.svg",
  8987. extra: 1227 / 1180,
  8988. bottom: 0.027
  8989. }
  8990. },
  8991. },
  8992. [
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(5 + 5 / 12, "feet")
  8996. },
  8997. {
  8998. name: "Macro",
  8999. height: math.unit(250, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Megamacro",
  9004. height: math.unit(8, "miles")
  9005. }
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(120, "lb"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/tene/front.svg",
  9017. extra: 1728 / 1578,
  9018. bottom: 0.022
  9019. }
  9020. },
  9021. stomping: {
  9022. height: math.unit(2.025, "meters"),
  9023. weight: math.unit(120, "lb"),
  9024. name: "Stomping",
  9025. image: {
  9026. source: "./media/characters/tene/stomping.svg",
  9027. extra: 938 / 873,
  9028. bottom: 0.01
  9029. }
  9030. },
  9031. sitting: {
  9032. height: math.unit(1, "meter"),
  9033. weight: math.unit(120, "lb"),
  9034. name: "Sitting",
  9035. image: {
  9036. source: "./media/characters/tene/sitting.svg",
  9037. extra: 437 / 415,
  9038. bottom: 0.1
  9039. }
  9040. },
  9041. feral: {
  9042. height: math.unit(3.9, "feet"),
  9043. weight: math.unit(250, "lb"),
  9044. name: "Feral",
  9045. image: {
  9046. source: "./media/characters/tene/feral.svg",
  9047. extra: 717 / 458,
  9048. bottom: 0.179
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(6, "feet")
  9056. },
  9057. {
  9058. name: "Macro",
  9059. height: math.unit(300, "feet"),
  9060. default: true
  9061. },
  9062. {
  9063. name: "Megamacro",
  9064. height: math.unit(5, "miles")
  9065. },
  9066. ]
  9067. ))
  9068. characterMakers.push(() => makeCharacter(
  9069. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9070. {
  9071. side: {
  9072. height: math.unit(6, "feet"),
  9073. name: "Side",
  9074. image: {
  9075. source: "./media/characters/evander/side.svg",
  9076. extra: 877 / 477
  9077. }
  9078. },
  9079. },
  9080. [
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(0.83, "meters"),
  9084. default: true
  9085. },
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9090. {
  9091. front: {
  9092. height: math.unit(12, "feet"),
  9093. weight: math.unit(1000, "lb"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9097. extra: 1762 / 1611
  9098. }
  9099. },
  9100. back: {
  9101. height: math.unit(12, "feet"),
  9102. weight: math.unit(1000, "lb"),
  9103. name: "Back",
  9104. image: {
  9105. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9106. extra: 1762 / 1611
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Normal",
  9113. height: math.unit(12, "feet"),
  9114. default: true
  9115. },
  9116. {
  9117. name: "Kaiju",
  9118. height: math.unit(150, "feet")
  9119. },
  9120. ]
  9121. ))
  9122. characterMakers.push(() => makeCharacter(
  9123. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9124. {
  9125. front: {
  9126. height: math.unit(6, "feet"),
  9127. weight: math.unit(150, "lb"),
  9128. name: "Front",
  9129. image: {
  9130. source: "./media/characters/zero-alurus/front.svg"
  9131. }
  9132. },
  9133. back: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(150, "lb"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/zero-alurus/back.svg"
  9139. }
  9140. },
  9141. },
  9142. [
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(5 + 10 / 12, "feet")
  9146. },
  9147. {
  9148. name: "Macro",
  9149. height: math.unit(60, "feet"),
  9150. default: true
  9151. },
  9152. {
  9153. name: "Macro+",
  9154. height: math.unit(450, "feet")
  9155. },
  9156. ]
  9157. ))
  9158. characterMakers.push(() => makeCharacter(
  9159. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9160. {
  9161. front: {
  9162. height: math.unit(6, "feet"),
  9163. weight: math.unit(200, "lb"),
  9164. name: "Front",
  9165. image: {
  9166. source: "./media/characters/mega-shi/front.svg",
  9167. extra: 1279 / 1250,
  9168. bottom: 0.02
  9169. }
  9170. },
  9171. back: {
  9172. height: math.unit(6, "feet"),
  9173. weight: math.unit(200, "lb"),
  9174. name: "Back",
  9175. image: {
  9176. source: "./media/characters/mega-shi/back.svg",
  9177. extra: 1279 / 1250,
  9178. bottom: 0.02
  9179. }
  9180. },
  9181. },
  9182. [
  9183. {
  9184. name: "Micro",
  9185. height: math.unit(16 + 6 / 12, "feet")
  9186. },
  9187. {
  9188. name: "Third Dimension",
  9189. height: math.unit(40, "meters")
  9190. },
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(660, "feet"),
  9194. default: true
  9195. },
  9196. {
  9197. name: "Megamacro",
  9198. height: math.unit(10, "miles")
  9199. },
  9200. {
  9201. name: "Planetary Launch",
  9202. height: math.unit(500, "miles")
  9203. },
  9204. {
  9205. name: "Interstellar",
  9206. height: math.unit(1e9, "miles")
  9207. },
  9208. {
  9209. name: "Leaving the Universe",
  9210. height: math.unit(1, "gigaparsec")
  9211. },
  9212. {
  9213. name: "Travelling Universes",
  9214. height: math.unit(30e15, "parsecs")
  9215. },
  9216. ]
  9217. ))
  9218. characterMakers.push(() => makeCharacter(
  9219. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9220. {
  9221. front: {
  9222. height: math.unit(6, "feet"),
  9223. weight: math.unit(150, "lb"),
  9224. name: "Front",
  9225. image: {
  9226. source: "./media/characters/odyssey/front.svg",
  9227. extra: 1782 / 1582,
  9228. bottom: 0.01
  9229. }
  9230. },
  9231. side: {
  9232. height: math.unit(5.7, "feet"),
  9233. weight: math.unit(140, "lb"),
  9234. name: "Side",
  9235. image: {
  9236. source: "./media/characters/odyssey/side.svg",
  9237. extra: 6462 / 5700
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Normal",
  9244. height: math.unit(5 + 4 / 12, "feet")
  9245. },
  9246. {
  9247. name: "Macro",
  9248. height: math.unit(1, "km")
  9249. },
  9250. {
  9251. name: "Megamacro",
  9252. height: math.unit(3000, "km")
  9253. },
  9254. {
  9255. name: "Gigamacro",
  9256. height: math.unit(1, "AU"),
  9257. default: true
  9258. },
  9259. {
  9260. name: "Omniversal",
  9261. height: math.unit(100e14, "lightyears")
  9262. },
  9263. ]
  9264. ))
  9265. characterMakers.push(() => makeCharacter(
  9266. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9267. {
  9268. front: {
  9269. height: math.unit(6, "feet"),
  9270. weight: math.unit(300, "lb"),
  9271. name: "Front",
  9272. image: {
  9273. source: "./media/characters/mekuto/front.svg",
  9274. extra: 921 / 832,
  9275. bottom: 0.03
  9276. }
  9277. },
  9278. hand: {
  9279. height: math.unit(6 / 10.24, "feet"),
  9280. name: "Hand",
  9281. image: {
  9282. source: "./media/characters/mekuto/hand.svg"
  9283. }
  9284. },
  9285. foot: {
  9286. height: math.unit(6 / 5.05, "feet"),
  9287. name: "Foot",
  9288. image: {
  9289. source: "./media/characters/mekuto/foot.svg"
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Minimicro",
  9296. height: math.unit(0.2, "inches")
  9297. },
  9298. {
  9299. name: "Micro",
  9300. height: math.unit(1.5, "inches")
  9301. },
  9302. {
  9303. name: "Normal",
  9304. height: math.unit(5 + 11 / 12, "feet"),
  9305. default: true
  9306. },
  9307. {
  9308. name: "Minimacro",
  9309. height: math.unit(17 + 9 / 12, "feet")
  9310. },
  9311. {
  9312. name: "Macro",
  9313. height: math.unit(177.5, "feet")
  9314. },
  9315. {
  9316. name: "Megamacro",
  9317. height: math.unit(152, "miles")
  9318. },
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(6.5, "inches"),
  9326. weight: math.unit(13, "oz"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/dafydd-tomos/front.svg",
  9330. extra: 2990 / 2603,
  9331. bottom: 0.03
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Micro",
  9338. height: math.unit(6.5, "inches"),
  9339. default: true
  9340. },
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(6, "feet"),
  9348. weight: math.unit(150, "lb"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/splinter/front.svg",
  9352. extra: 2990 / 2882,
  9353. bottom: 0.04
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(6, "feet"),
  9358. weight: math.unit(150, "lb"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/splinter/back.svg",
  9362. extra: 2990 / 2882,
  9363. bottom: 0.04
  9364. }
  9365. },
  9366. },
  9367. [
  9368. {
  9369. name: "Normal",
  9370. height: math.unit(6, "feet")
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(230, "meters"),
  9375. default: true
  9376. },
  9377. ]
  9378. ))
  9379. characterMakers.push(() => makeCharacter(
  9380. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9381. {
  9382. front: {
  9383. height: math.unit(4 + 10 / 12, "feet"),
  9384. weight: math.unit(480, "lb"),
  9385. name: "Front",
  9386. image: {
  9387. source: "./media/characters/snow-gabumon/front.svg",
  9388. extra: 1140 / 963,
  9389. bottom: 0.058
  9390. }
  9391. },
  9392. back: {
  9393. height: math.unit(4 + 10 / 12, "feet"),
  9394. weight: math.unit(480, "lb"),
  9395. name: "Back",
  9396. image: {
  9397. source: "./media/characters/snow-gabumon/back.svg",
  9398. extra: 1115 / 962,
  9399. bottom: 0.041
  9400. }
  9401. },
  9402. frontUndresed: {
  9403. height: math.unit(4 + 10 / 12, "feet"),
  9404. weight: math.unit(480, "lb"),
  9405. name: "Front (Undressed)",
  9406. image: {
  9407. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9408. extra: 1061 / 960,
  9409. bottom: 0.045
  9410. }
  9411. },
  9412. },
  9413. [
  9414. {
  9415. name: "Micro",
  9416. height: math.unit(1, "inch")
  9417. },
  9418. {
  9419. name: "Normal",
  9420. height: math.unit(4 + 10 / 12, "feet"),
  9421. default: true
  9422. },
  9423. {
  9424. name: "Macro",
  9425. height: math.unit(200, "feet")
  9426. },
  9427. {
  9428. name: "Megamacro",
  9429. height: math.unit(120, "miles")
  9430. },
  9431. {
  9432. name: "Gigamacro",
  9433. height: math.unit(9800, "miles")
  9434. },
  9435. ]
  9436. ))
  9437. characterMakers.push(() => makeCharacter(
  9438. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9439. {
  9440. front: {
  9441. height: math.unit(1.7, "meters"),
  9442. weight: math.unit(140, "lb"),
  9443. name: "Front",
  9444. image: {
  9445. source: "./media/characters/moody/front.svg",
  9446. extra: 3226 / 3007,
  9447. bottom: 0.087
  9448. }
  9449. },
  9450. },
  9451. [
  9452. {
  9453. name: "Micro",
  9454. height: math.unit(1, "mm")
  9455. },
  9456. {
  9457. name: "Normal",
  9458. height: math.unit(1.7, "meters"),
  9459. default: true
  9460. },
  9461. {
  9462. name: "Macro",
  9463. height: math.unit(80, "meters")
  9464. },
  9465. {
  9466. name: "Macro+",
  9467. height: math.unit(500, "meters")
  9468. },
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9473. {
  9474. front: {
  9475. height: math.unit(6, "feet"),
  9476. weight: math.unit(150, "lb"),
  9477. name: "Front",
  9478. image: {
  9479. source: "./media/characters/zyas/front.svg",
  9480. extra: 1180 / 1120,
  9481. bottom: 0.045
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Normal",
  9488. height: math.unit(10, "feet"),
  9489. default: true
  9490. },
  9491. {
  9492. name: "Macro",
  9493. height: math.unit(500, "feet")
  9494. },
  9495. {
  9496. name: "Megamacro",
  9497. height: math.unit(5, "miles")
  9498. },
  9499. {
  9500. name: "Teramacro",
  9501. height: math.unit(150000, "miles")
  9502. },
  9503. ]
  9504. ))
  9505. characterMakers.push(() => makeCharacter(
  9506. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9507. {
  9508. front: {
  9509. height: math.unit(6, "feet"),
  9510. weight: math.unit(150, "lb"),
  9511. name: "Front",
  9512. image: {
  9513. source: "./media/characters/cuon/front.svg",
  9514. extra: 1390 / 1320,
  9515. bottom: 0.008
  9516. }
  9517. },
  9518. },
  9519. [
  9520. {
  9521. name: "Micro",
  9522. height: math.unit(3, "inches")
  9523. },
  9524. {
  9525. name: "Normal",
  9526. height: math.unit(18 + 9 / 12, "feet"),
  9527. default: true
  9528. },
  9529. {
  9530. name: "Macro",
  9531. height: math.unit(360, "feet")
  9532. },
  9533. {
  9534. name: "Megamacro",
  9535. height: math.unit(360, "miles")
  9536. },
  9537. ]
  9538. ))
  9539. characterMakers.push(() => makeCharacter(
  9540. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9541. {
  9542. front: {
  9543. height: math.unit(2.4, "meters"),
  9544. weight: math.unit(70, "kg"),
  9545. name: "Front",
  9546. image: {
  9547. source: "./media/characters/nyanuxk/front.svg",
  9548. extra: 1172 / 1084,
  9549. bottom: 0.065
  9550. }
  9551. },
  9552. side: {
  9553. height: math.unit(2.4, "meters"),
  9554. weight: math.unit(70, "kg"),
  9555. name: "Side",
  9556. image: {
  9557. source: "./media/characters/nyanuxk/side.svg",
  9558. extra: 1190 / 1132,
  9559. bottom: 0.007
  9560. }
  9561. },
  9562. back: {
  9563. height: math.unit(2.4, "meters"),
  9564. weight: math.unit(70, "kg"),
  9565. name: "Back",
  9566. image: {
  9567. source: "./media/characters/nyanuxk/back.svg",
  9568. extra: 1200 / 1141,
  9569. bottom: 0.015
  9570. }
  9571. },
  9572. foot: {
  9573. height: math.unit(0.52, "meters"),
  9574. name: "Foot",
  9575. image: {
  9576. source: "./media/characters/nyanuxk/foot.svg"
  9577. }
  9578. },
  9579. },
  9580. [
  9581. {
  9582. name: "Micro",
  9583. height: math.unit(2, "cm")
  9584. },
  9585. {
  9586. name: "Normal",
  9587. height: math.unit(2.4, "meters"),
  9588. default: true
  9589. },
  9590. {
  9591. name: "Smaller Macro",
  9592. height: math.unit(120, "meters")
  9593. },
  9594. {
  9595. name: "Bigger Macro",
  9596. height: math.unit(1.2, "km")
  9597. },
  9598. {
  9599. name: "Megamacro",
  9600. height: math.unit(15, "kilometers")
  9601. },
  9602. {
  9603. name: "Gigamacro",
  9604. height: math.unit(2000, "km")
  9605. },
  9606. {
  9607. name: "Teramacro",
  9608. height: math.unit(500000, "km")
  9609. },
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9614. {
  9615. side: {
  9616. height: math.unit(6, "feet"),
  9617. name: "Side",
  9618. image: {
  9619. source: "./media/characters/ailbhe/side.svg",
  9620. extra: 757 / 464,
  9621. bottom: 0.041
  9622. }
  9623. },
  9624. },
  9625. [
  9626. {
  9627. name: "Normal",
  9628. height: math.unit(1.07, "meters"),
  9629. default: true
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(6, "feet"),
  9638. weight: math.unit(120, "kg"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/zevulfius/front.svg",
  9642. extra: 965 / 903
  9643. }
  9644. },
  9645. side: {
  9646. height: math.unit(6, "feet"),
  9647. weight: math.unit(120, "kg"),
  9648. name: "Side",
  9649. image: {
  9650. source: "./media/characters/zevulfius/side.svg",
  9651. extra: 939 / 900
  9652. }
  9653. },
  9654. back: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(120, "kg"),
  9657. name: "Back",
  9658. image: {
  9659. source: "./media/characters/zevulfius/back.svg",
  9660. extra: 918 / 854,
  9661. bottom: 0.005
  9662. }
  9663. },
  9664. foot: {
  9665. height: math.unit(6 / 3.72, "feet"),
  9666. name: "Foot",
  9667. image: {
  9668. source: "./media/characters/zevulfius/foot.svg"
  9669. }
  9670. },
  9671. },
  9672. [
  9673. {
  9674. name: "Macro",
  9675. height: math.unit(750, "meters")
  9676. },
  9677. {
  9678. name: "Megamacro",
  9679. height: math.unit(20, "km"),
  9680. default: true
  9681. },
  9682. {
  9683. name: "Gigamacro",
  9684. height: math.unit(2000, "km")
  9685. },
  9686. {
  9687. name: "Teramacro",
  9688. height: math.unit(250000, "km")
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9694. {
  9695. front: {
  9696. height: math.unit(100, "feet"),
  9697. weight: math.unit(350, "kg"),
  9698. name: "Front",
  9699. image: {
  9700. source: "./media/characters/rikes/front.svg",
  9701. extra: 1565 / 1483,
  9702. bottom: 0.017
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Macro",
  9709. height: math.unit(100, "feet"),
  9710. default: true
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9716. {
  9717. anthro: {
  9718. height: math.unit(8, "feet"),
  9719. weight: math.unit(120, "kg"),
  9720. name: "Anthro",
  9721. image: {
  9722. source: "./media/characters/adam-silver-mane/anthro.svg",
  9723. extra: 5743 / 5339,
  9724. bottom: 0.07
  9725. }
  9726. },
  9727. taur: {
  9728. height: math.unit(16, "feet"),
  9729. weight: math.unit(1500, "kg"),
  9730. name: "Taur",
  9731. image: {
  9732. source: "./media/characters/adam-silver-mane/taur.svg",
  9733. extra: 1713 / 1571,
  9734. bottom: 0.01
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(8, "feet")
  9742. },
  9743. {
  9744. name: "Minimacro",
  9745. height: math.unit(80, "feet")
  9746. },
  9747. {
  9748. name: "Macro",
  9749. height: math.unit(800, "feet"),
  9750. default: true
  9751. },
  9752. {
  9753. name: "Megamacro",
  9754. height: math.unit(8000, "feet")
  9755. },
  9756. {
  9757. name: "Gigamacro",
  9758. height: math.unit(800, "miles")
  9759. },
  9760. {
  9761. name: "Teramacro",
  9762. height: math.unit(80000, "miles")
  9763. },
  9764. {
  9765. name: "Celestial",
  9766. height: math.unit(8e6, "miles")
  9767. },
  9768. {
  9769. name: "Star Dragon",
  9770. height: math.unit(800000, "parsecs")
  9771. },
  9772. {
  9773. name: "Godly",
  9774. height: math.unit(800, "teraparsecs")
  9775. },
  9776. ]
  9777. ))
  9778. characterMakers.push(() => makeCharacter(
  9779. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9780. {
  9781. front: {
  9782. height: math.unit(6, "feet"),
  9783. weight: math.unit(150, "lb"),
  9784. name: "Front",
  9785. image: {
  9786. source: "./media/characters/ky'owin/front.svg",
  9787. extra: 3888 / 3068,
  9788. bottom: 0.015
  9789. }
  9790. },
  9791. },
  9792. [
  9793. {
  9794. name: "Normal",
  9795. height: math.unit(6 + 8 / 12, "feet")
  9796. },
  9797. {
  9798. name: "Large",
  9799. height: math.unit(68, "feet")
  9800. },
  9801. {
  9802. name: "Macro",
  9803. height: math.unit(132, "feet")
  9804. },
  9805. {
  9806. name: "Macro+",
  9807. height: math.unit(340, "feet")
  9808. },
  9809. {
  9810. name: "Macro++",
  9811. height: math.unit(680, "feet"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Megamacro",
  9816. height: math.unit(1, "mile")
  9817. },
  9818. {
  9819. name: "Megamacro+",
  9820. height: math.unit(10, "miles")
  9821. },
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9826. {
  9827. front: {
  9828. height: math.unit(4, "feet"),
  9829. weight: math.unit(50, "lb"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/mal/front.svg",
  9833. extra: 785 / 724,
  9834. bottom: 0.07
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Micro",
  9841. height: math.unit(4, "inches")
  9842. },
  9843. {
  9844. name: "Normal",
  9845. height: math.unit(4, "feet"),
  9846. default: true
  9847. },
  9848. {
  9849. name: "Macro",
  9850. height: math.unit(200, "feet")
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(6, "feet"),
  9859. weight: math.unit(150, "lb"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/jordan-deware/front.svg",
  9863. extra: 1191 / 1012
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Nano",
  9870. height: math.unit(0.01, "mm")
  9871. },
  9872. {
  9873. name: "Minimicro",
  9874. height: math.unit(1, "mm")
  9875. },
  9876. {
  9877. name: "Micro",
  9878. height: math.unit(0.5, "inches")
  9879. },
  9880. {
  9881. name: "Normal",
  9882. height: math.unit(4, "feet"),
  9883. default: true
  9884. },
  9885. {
  9886. name: "Minimacro",
  9887. height: math.unit(40, "meters")
  9888. },
  9889. {
  9890. name: "Small Macro",
  9891. height: math.unit(400, "meters")
  9892. },
  9893. {
  9894. name: "Macro",
  9895. height: math.unit(4, "miles")
  9896. },
  9897. {
  9898. name: "Megamacro",
  9899. height: math.unit(40, "miles")
  9900. },
  9901. {
  9902. name: "Megamacro+",
  9903. height: math.unit(400, "miles")
  9904. },
  9905. {
  9906. name: "Gigamacro",
  9907. height: math.unit(400000, "miles")
  9908. },
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9913. {
  9914. side: {
  9915. height: math.unit(6, "feet"),
  9916. weight: math.unit(150, "lb"),
  9917. name: "Side",
  9918. image: {
  9919. source: "./media/characters/kimiko/side.svg",
  9920. extra: 600 / 358
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(15, "feet"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Macro",
  9932. height: math.unit(220, "feet")
  9933. },
  9934. {
  9935. name: "Macro+",
  9936. height: math.unit(1450, "feet")
  9937. },
  9938. {
  9939. name: "Megamacro",
  9940. height: math.unit(11500, "feet")
  9941. },
  9942. {
  9943. name: "Gigamacro",
  9944. height: math.unit(9500, "miles")
  9945. },
  9946. {
  9947. name: "Teramacro",
  9948. height: math.unit(2208005005, "miles")
  9949. },
  9950. {
  9951. name: "Examacro",
  9952. height: math.unit(2750, "parsecs")
  9953. },
  9954. {
  9955. name: "Zettamacro",
  9956. height: math.unit(101500, "parsecs")
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(70, "kg"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/andrew-sleepy/front.svg"
  9969. }
  9970. },
  9971. side: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(70, "kg"),
  9974. name: "Side",
  9975. image: {
  9976. source: "./media/characters/andrew-sleepy/side.svg"
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Micro",
  9983. height: math.unit(1, "mm"),
  9984. default: true
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(6, "feet"),
  9993. weight: math.unit(150, "lb"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/judio/front.svg",
  9997. extra: 1258 / 1110
  9998. }
  9999. },
  10000. },
  10001. [
  10002. {
  10003. name: "Normal",
  10004. height: math.unit(5 + 6 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(1000, "feet"),
  10009. default: true
  10010. },
  10011. {
  10012. name: "Megamacro",
  10013. height: math.unit(10, "miles")
  10014. },
  10015. ]
  10016. ))
  10017. characterMakers.push(() => makeCharacter(
  10018. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10019. {
  10020. front: {
  10021. height: math.unit(6, "feet"),
  10022. weight: math.unit(68, "kg"),
  10023. name: "Front",
  10024. image: {
  10025. source: "./media/characters/nomaxice/front.svg",
  10026. extra: 1498 / 1073,
  10027. bottom: 0.075
  10028. }
  10029. },
  10030. foot: {
  10031. height: math.unit(1.1, "feet"),
  10032. name: "Foot",
  10033. image: {
  10034. source: "./media/characters/nomaxice/foot.svg"
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Micro",
  10041. height: math.unit(8, "cm")
  10042. },
  10043. {
  10044. name: "Norm",
  10045. height: math.unit(1.82, "m")
  10046. },
  10047. {
  10048. name: "Norm+",
  10049. height: math.unit(8.8, "feet")
  10050. },
  10051. {
  10052. name: "Big",
  10053. height: math.unit(8, "meters"),
  10054. default: true
  10055. },
  10056. {
  10057. name: "Macro",
  10058. height: math.unit(18, "meters")
  10059. },
  10060. {
  10061. name: "Macro+",
  10062. height: math.unit(88, "meters")
  10063. },
  10064. ]
  10065. ))
  10066. characterMakers.push(() => makeCharacter(
  10067. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10068. {
  10069. front: {
  10070. height: math.unit(12, "feet"),
  10071. weight: math.unit(1.5, "tons"),
  10072. name: "Front",
  10073. image: {
  10074. source: "./media/characters/dydros/front.svg",
  10075. extra: 863 / 800,
  10076. bottom: 0.015
  10077. }
  10078. },
  10079. back: {
  10080. height: math.unit(12, "feet"),
  10081. weight: math.unit(1.5, "tons"),
  10082. name: "Back",
  10083. image: {
  10084. source: "./media/characters/dydros/back.svg",
  10085. extra: 900 / 843,
  10086. bottom: 0.005
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Normal",
  10093. height: math.unit(12, "feet"),
  10094. default: true
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10100. {
  10101. front: {
  10102. height: math.unit(6, "feet"),
  10103. weight: math.unit(100, "kg"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/riggi/front.svg",
  10107. extra: 5787 / 5303
  10108. }
  10109. },
  10110. hyper: {
  10111. height: math.unit(6 * 5 / 3, "feet"),
  10112. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10113. name: "Hyper",
  10114. image: {
  10115. source: "./media/characters/riggi/hyper.svg",
  10116. extra: 3595 / 3485
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Small Macro",
  10123. height: math.unit(50, "feet")
  10124. },
  10125. {
  10126. name: "Default",
  10127. height: math.unit(200, "feet"),
  10128. default: true
  10129. },
  10130. {
  10131. name: "Loom",
  10132. height: math.unit(10000, "feet")
  10133. },
  10134. {
  10135. name: "Cruising Altitude",
  10136. height: math.unit(30000, "feet")
  10137. },
  10138. {
  10139. name: "Megamacro",
  10140. height: math.unit(100, "miles")
  10141. },
  10142. {
  10143. name: "Continent Sized",
  10144. height: math.unit(2800, "miles")
  10145. },
  10146. {
  10147. name: "Earth Sized",
  10148. height: math.unit(8000, "miles")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(6, "feet"),
  10157. weight: math.unit(250, "lb"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/alexi/front.svg",
  10161. extra: 3483 / 3291,
  10162. bottom: 0.04
  10163. }
  10164. },
  10165. back: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(250, "lb"),
  10168. name: "Back",
  10169. image: {
  10170. source: "./media/characters/alexi/back.svg",
  10171. extra: 3533 / 3356,
  10172. bottom: 0.021
  10173. }
  10174. },
  10175. frontTransforming: {
  10176. height: math.unit(8.58, "feet"),
  10177. weight: math.unit(1300, "lb"),
  10178. name: "Transforming",
  10179. image: {
  10180. source: "./media/characters/alexi/front-transforming.svg",
  10181. extra: 437 / 409,
  10182. bottom: 19 / 458.66
  10183. }
  10184. },
  10185. frontTransformed: {
  10186. height: math.unit(12.5, "feet"),
  10187. weight: math.unit(4000, "lb"),
  10188. name: "Transformed",
  10189. image: {
  10190. source: "./media/characters/alexi/front-transformed.svg",
  10191. extra: 639 / 614,
  10192. bottom: 30.55 / 671
  10193. }
  10194. },
  10195. },
  10196. [
  10197. {
  10198. name: "Normal",
  10199. height: math.unit(14, "feet"),
  10200. default: true
  10201. },
  10202. {
  10203. name: "Minimacro",
  10204. height: math.unit(30, "meters")
  10205. },
  10206. {
  10207. name: "Macro",
  10208. height: math.unit(500, "meters")
  10209. },
  10210. {
  10211. name: "Megamacro",
  10212. height: math.unit(9000, "km")
  10213. },
  10214. {
  10215. name: "Teramacro",
  10216. height: math.unit(384000, "km")
  10217. },
  10218. ]
  10219. ))
  10220. characterMakers.push(() => makeCharacter(
  10221. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10222. {
  10223. front: {
  10224. height: math.unit(6, "feet"),
  10225. weight: math.unit(150, "lb"),
  10226. name: "Front",
  10227. image: {
  10228. source: "./media/characters/kayroo/front.svg",
  10229. extra: 1153 / 1038,
  10230. bottom: 0.06
  10231. }
  10232. },
  10233. foot: {
  10234. height: math.unit(6, "feet"),
  10235. weight: math.unit(150, "lb"),
  10236. name: "Foot",
  10237. image: {
  10238. source: "./media/characters/kayroo/foot.svg"
  10239. }
  10240. },
  10241. },
  10242. [
  10243. {
  10244. name: "Normal",
  10245. height: math.unit(8, "feet"),
  10246. default: true
  10247. },
  10248. {
  10249. name: "Minimacro",
  10250. height: math.unit(250, "feet")
  10251. },
  10252. {
  10253. name: "Macro",
  10254. height: math.unit(2800, "feet")
  10255. },
  10256. {
  10257. name: "Megamacro",
  10258. height: math.unit(5200, "feet")
  10259. },
  10260. {
  10261. name: "Gigamacro",
  10262. height: math.unit(27000, "feet")
  10263. },
  10264. {
  10265. name: "Omega",
  10266. height: math.unit(45000, "feet")
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10272. {
  10273. front: {
  10274. height: math.unit(18, "feet"),
  10275. weight: math.unit(5800, "lb"),
  10276. name: "Front",
  10277. image: {
  10278. source: "./media/characters/rhys/front.svg",
  10279. extra: 3386 / 3090,
  10280. bottom: 0.07
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(18, "feet"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Working Size",
  10292. height: math.unit(200, "feet")
  10293. },
  10294. {
  10295. name: "Demolition Size",
  10296. height: math.unit(2000, "feet")
  10297. },
  10298. {
  10299. name: "Maximum Licensed Size",
  10300. height: math.unit(5, "miles")
  10301. },
  10302. {
  10303. name: "Maximum Observed Size",
  10304. height: math.unit(10, "yottameters")
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(250, "lb"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/toto/front.svg",
  10317. extra: 527 / 479,
  10318. bottom: 0.05
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Micro",
  10325. height: math.unit(3, "feet")
  10326. },
  10327. {
  10328. name: "Normal",
  10329. height: math.unit(10, "feet")
  10330. },
  10331. {
  10332. name: "Macro",
  10333. height: math.unit(150, "feet"),
  10334. default: true
  10335. },
  10336. {
  10337. name: "Megamacro",
  10338. height: math.unit(1200, "feet")
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "King", species: ["lion"], tags: ["anthro"] },
  10344. {
  10345. back: {
  10346. height: math.unit(6, "feet"),
  10347. weight: math.unit(150, "lb"),
  10348. name: "Back",
  10349. image: {
  10350. source: "./media/characters/king/back.svg"
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Micro",
  10357. height: math.unit(2, "inches")
  10358. },
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(8, "feet")
  10362. },
  10363. {
  10364. name: "Macro",
  10365. height: math.unit(200, "feet"),
  10366. default: true
  10367. },
  10368. {
  10369. name: "Megamacro",
  10370. height: math.unit(50, "miles")
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10376. {
  10377. anthro: {
  10378. height: math.unit(6 + 5 / 12, "feet"),
  10379. weight: math.unit(280, "lb"),
  10380. name: "Anthro",
  10381. image: {
  10382. source: "./media/characters/cordite/anthro.svg",
  10383. extra: 1986 / 1905,
  10384. bottom: 0.025
  10385. }
  10386. },
  10387. feral: {
  10388. height: math.unit(2, "feet"),
  10389. weight: math.unit(90, "lb"),
  10390. name: "Feral",
  10391. image: {
  10392. source: "./media/characters/cordite/feral.svg",
  10393. extra: 1260 / 755,
  10394. bottom: 0.05
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Normal",
  10401. height: math.unit(6 + 5 / 12, "feet"),
  10402. default: true
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10408. {
  10409. front: {
  10410. height: math.unit(6, "feet"),
  10411. weight: math.unit(150, "lb"),
  10412. name: "Front",
  10413. image: {
  10414. source: "./media/characters/pianostrong/front.svg",
  10415. extra: 6577 / 6254,
  10416. bottom: 0.02
  10417. }
  10418. },
  10419. side: {
  10420. height: math.unit(6, "feet"),
  10421. weight: math.unit(150, "lb"),
  10422. name: "Side",
  10423. image: {
  10424. source: "./media/characters/pianostrong/side.svg",
  10425. extra: 6106 / 5730
  10426. }
  10427. },
  10428. back: {
  10429. height: math.unit(6, "feet"),
  10430. weight: math.unit(150, "lb"),
  10431. name: "Back",
  10432. image: {
  10433. source: "./media/characters/pianostrong/back.svg",
  10434. extra: 6085 / 5733,
  10435. bottom: 0.01
  10436. }
  10437. },
  10438. },
  10439. [
  10440. {
  10441. name: "Macro",
  10442. height: math.unit(100, "feet")
  10443. },
  10444. {
  10445. name: "Macro+",
  10446. height: math.unit(300, "feet"),
  10447. default: true
  10448. },
  10449. {
  10450. name: "Macro++",
  10451. height: math.unit(1000, "feet")
  10452. },
  10453. ]
  10454. ))
  10455. characterMakers.push(() => makeCharacter(
  10456. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10457. {
  10458. front: {
  10459. height: math.unit(6, "feet"),
  10460. weight: math.unit(150, "lb"),
  10461. name: "Front",
  10462. image: {
  10463. source: "./media/characters/kona/front.svg",
  10464. extra: 2960 / 2629,
  10465. bottom: 0.005
  10466. }
  10467. },
  10468. },
  10469. [
  10470. {
  10471. name: "Normal",
  10472. height: math.unit(11 + 8 / 12, "feet")
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(850, "feet"),
  10477. default: true
  10478. },
  10479. {
  10480. name: "Macro+",
  10481. height: math.unit(1.5, "km"),
  10482. default: true
  10483. },
  10484. {
  10485. name: "Megamacro",
  10486. height: math.unit(80, "miles")
  10487. },
  10488. {
  10489. name: "Gigamacro",
  10490. height: math.unit(3500, "miles")
  10491. },
  10492. ]
  10493. ))
  10494. characterMakers.push(() => makeCharacter(
  10495. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10496. {
  10497. side: {
  10498. height: math.unit(1.9, "meters"),
  10499. weight: math.unit(326, "kg"),
  10500. name: "Side",
  10501. image: {
  10502. source: "./media/characters/levi/side.svg",
  10503. extra: 1704 / 1334,
  10504. bottom: 0.02
  10505. }
  10506. },
  10507. },
  10508. [
  10509. {
  10510. name: "Normal",
  10511. height: math.unit(1.9, "meters"),
  10512. default: true
  10513. },
  10514. {
  10515. name: "Macro",
  10516. height: math.unit(20, "meters")
  10517. },
  10518. {
  10519. name: "Macro+",
  10520. height: math.unit(200, "meters")
  10521. },
  10522. {
  10523. name: "Megamacro",
  10524. height: math.unit(2, "km")
  10525. },
  10526. {
  10527. name: "Megamacro+",
  10528. height: math.unit(20, "km")
  10529. },
  10530. {
  10531. name: "Gigamacro",
  10532. height: math.unit(2500, "km")
  10533. },
  10534. {
  10535. name: "Gigamacro+",
  10536. height: math.unit(120000, "km")
  10537. },
  10538. {
  10539. name: "Teramacro",
  10540. height: math.unit(7.77e6, "km")
  10541. },
  10542. ]
  10543. ))
  10544. characterMakers.push(() => makeCharacter(
  10545. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10546. {
  10547. front: {
  10548. height: math.unit(6 + 4 / 12, "feet"),
  10549. weight: math.unit(188, "lb"),
  10550. name: "Front",
  10551. image: {
  10552. source: "./media/characters/bmc/front.svg",
  10553. extra: 1067 / 1022,
  10554. bottom: 0.047
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Human-sized",
  10561. height: math.unit(6 + 4 / 12, "feet")
  10562. },
  10563. {
  10564. name: "Small",
  10565. height: math.unit(250, "feet")
  10566. },
  10567. {
  10568. name: "Normal",
  10569. height: math.unit(1250, "feet"),
  10570. default: true
  10571. },
  10572. {
  10573. name: "Good Day",
  10574. height: math.unit(88, "miles")
  10575. },
  10576. {
  10577. name: "Largest Measured Size",
  10578. height: math.unit(11.2e6, "lightyears")
  10579. },
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10584. {
  10585. front: {
  10586. height: math.unit(20, "feet"),
  10587. weight: math.unit(2016, "kg"),
  10588. name: "Front",
  10589. image: {
  10590. source: "./media/characters/sven-the-kaiju/front.svg",
  10591. extra: 1479 / 1449,
  10592. bottom: 0.05
  10593. }
  10594. },
  10595. },
  10596. [
  10597. {
  10598. name: "Fairy",
  10599. height: math.unit(6, "inches")
  10600. },
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(20, "feet"),
  10604. default: true
  10605. },
  10606. {
  10607. name: "Rampage",
  10608. height: math.unit(200, "feet")
  10609. },
  10610. {
  10611. name: "Archfey Forest Guardian",
  10612. height: math.unit(1, "mile")
  10613. },
  10614. ]
  10615. ))
  10616. characterMakers.push(() => makeCharacter(
  10617. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10618. {
  10619. front: {
  10620. height: math.unit(4, "meters"),
  10621. weight: math.unit(2, "tons"),
  10622. name: "Front",
  10623. image: {
  10624. source: "./media/characters/marik/front.svg",
  10625. extra: 1057 / 1003,
  10626. bottom: 0.08
  10627. }
  10628. },
  10629. },
  10630. [
  10631. {
  10632. name: "Normal",
  10633. height: math.unit(4, "meters"),
  10634. default: true
  10635. },
  10636. {
  10637. name: "Macro",
  10638. height: math.unit(20, "meters")
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(50, "km")
  10643. },
  10644. {
  10645. name: "Gigamacro",
  10646. height: math.unit(100, "km")
  10647. },
  10648. {
  10649. name: "Alpha Macro",
  10650. height: math.unit(7.88e7, "yottameters")
  10651. },
  10652. ]
  10653. ))
  10654. characterMakers.push(() => makeCharacter(
  10655. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10656. {
  10657. front: {
  10658. height: math.unit(6, "feet"),
  10659. weight: math.unit(110, "lb"),
  10660. name: "Front",
  10661. image: {
  10662. source: "./media/characters/mel/front.svg",
  10663. extra: 736 / 617,
  10664. bottom: 0.017
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Pico",
  10671. height: math.unit(3, "pm")
  10672. },
  10673. {
  10674. name: "Nano",
  10675. height: math.unit(3, "nm")
  10676. },
  10677. {
  10678. name: "Micro",
  10679. height: math.unit(0.3, "mm"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Micro+",
  10684. height: math.unit(3, "mm")
  10685. },
  10686. {
  10687. name: "Normal",
  10688. height: math.unit(5 + 10.5 / 12, "feet")
  10689. },
  10690. ]
  10691. ))
  10692. characterMakers.push(() => makeCharacter(
  10693. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10694. {
  10695. kaiju: {
  10696. height: math.unit(1.75, "meters"),
  10697. weight: math.unit(55, "kg"),
  10698. name: "Kaiju",
  10699. image: {
  10700. source: "./media/characters/lykonous/kaiju.svg",
  10701. extra: 1055 / 946,
  10702. bottom: 0.135
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(2.5, "meters"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "Kaiju Dragon",
  10714. height: math.unit(60, "meters")
  10715. },
  10716. {
  10717. name: "Mega Kaiju",
  10718. height: math.unit(120, "km")
  10719. },
  10720. {
  10721. name: "Giga Kaiju",
  10722. height: math.unit(200, "megameters")
  10723. },
  10724. {
  10725. name: "Terra Kaiju",
  10726. height: math.unit(400, "gigameters")
  10727. },
  10728. {
  10729. name: "Kaiju Dragon God",
  10730. height: math.unit(13000, "exaparsecs")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(150, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/blü/front.svg",
  10743. extra: 1883 / 1564,
  10744. bottom: 0.031
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(13, "feet"),
  10752. default: true
  10753. },
  10754. {
  10755. name: "Big Boi",
  10756. height: math.unit(150, "meters")
  10757. },
  10758. {
  10759. name: "Mini Stomper",
  10760. height: math.unit(300, "meters")
  10761. },
  10762. {
  10763. name: "Macro",
  10764. height: math.unit(1000, "meters")
  10765. },
  10766. {
  10767. name: "Megamacro",
  10768. height: math.unit(11000, "meters")
  10769. },
  10770. {
  10771. name: "Gigamacro",
  10772. height: math.unit(11000, "km")
  10773. },
  10774. {
  10775. name: "Teramacro",
  10776. height: math.unit(420000, "km")
  10777. },
  10778. {
  10779. name: "Examacro",
  10780. height: math.unit(120, "parsecs")
  10781. },
  10782. {
  10783. name: "God Tho",
  10784. height: math.unit(98000000000, "parsecs")
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10790. {
  10791. taurFront: {
  10792. height: math.unit(6, "feet"),
  10793. weight: math.unit(200, "lb"),
  10794. name: "Taur (Front)",
  10795. image: {
  10796. source: "./media/characters/scales/taur-front.svg",
  10797. extra: 1,
  10798. bottom: 0.05
  10799. }
  10800. },
  10801. taurBack: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(200, "lb"),
  10804. name: "Taur (Back)",
  10805. image: {
  10806. source: "./media/characters/scales/taur-back.svg",
  10807. extra: 1,
  10808. bottom: 0.08
  10809. }
  10810. },
  10811. anthro: {
  10812. height: math.unit(6 * 7 / 12, "feet"),
  10813. weight: math.unit(100, "lb"),
  10814. name: "Anthro",
  10815. image: {
  10816. source: "./media/characters/scales/anthro.svg",
  10817. extra: 1,
  10818. bottom: 0.06
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(12, "feet"),
  10826. default: true
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(150, "lb"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/koragos/front.svg",
  10839. extra: 841 / 794,
  10840. bottom: 0.035
  10841. }
  10842. },
  10843. back: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(150, "lb"),
  10846. name: "Back",
  10847. image: {
  10848. source: "./media/characters/koragos/back.svg",
  10849. extra: 841 / 810,
  10850. bottom: 0.022
  10851. }
  10852. },
  10853. },
  10854. [
  10855. {
  10856. name: "Normal",
  10857. height: math.unit(6 + 11 / 12, "feet"),
  10858. default: true
  10859. },
  10860. {
  10861. name: "Macro",
  10862. height: math.unit(490, "feet")
  10863. },
  10864. {
  10865. name: "Megamacro",
  10866. height: math.unit(10, "miles")
  10867. },
  10868. {
  10869. name: "Gigamacro",
  10870. height: math.unit(50, "miles")
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10876. {
  10877. front: {
  10878. height: math.unit(6, "feet"),
  10879. weight: math.unit(250, "lb"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/xylrem/front.svg",
  10883. extra: 3323 / 3050,
  10884. bottom: 0.065
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Micro",
  10891. height: math.unit(4, "feet")
  10892. },
  10893. {
  10894. name: "Normal",
  10895. height: math.unit(16, "feet"),
  10896. default: true
  10897. },
  10898. {
  10899. name: "Macro",
  10900. height: math.unit(2720, "feet")
  10901. },
  10902. {
  10903. name: "Megamacro",
  10904. height: math.unit(25000, "miles")
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10910. {
  10911. front: {
  10912. height: math.unit(8, "feet"),
  10913. weight: math.unit(250, "kg"),
  10914. name: "Front",
  10915. image: {
  10916. source: "./media/characters/ikideru/front.svg",
  10917. extra: 930 / 870,
  10918. bottom: 0.087
  10919. }
  10920. },
  10921. back: {
  10922. height: math.unit(8, "feet"),
  10923. weight: math.unit(250, "kg"),
  10924. name: "Back",
  10925. image: {
  10926. source: "./media/characters/ikideru/back.svg",
  10927. extra: 919 / 852,
  10928. bottom: 0.055
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Rare",
  10935. height: math.unit(8, "feet"),
  10936. default: true
  10937. },
  10938. {
  10939. name: "Playful Loom",
  10940. height: math.unit(80, "feet")
  10941. },
  10942. {
  10943. name: "City Leaner",
  10944. height: math.unit(230, "feet")
  10945. },
  10946. {
  10947. name: "Megamacro",
  10948. height: math.unit(2500, "feet")
  10949. },
  10950. {
  10951. name: "Gigamacro",
  10952. height: math.unit(26400, "feet")
  10953. },
  10954. {
  10955. name: "Tectonic Shifter",
  10956. height: math.unit(1.7, "megameters")
  10957. },
  10958. {
  10959. name: "Planet Carer",
  10960. height: math.unit(21, "megameters")
  10961. },
  10962. {
  10963. name: "God",
  10964. height: math.unit(11157.22, "parsecs")
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10970. {
  10971. front: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(120, "lb"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/neo/front.svg"
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Micro",
  10983. height: math.unit(2, "inches"),
  10984. default: true
  10985. },
  10986. {
  10987. name: "Human Size",
  10988. height: math.unit(5 + 8 / 12, "feet")
  10989. },
  10990. ]
  10991. ))
  10992. characterMakers.push(() => makeCharacter(
  10993. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10994. {
  10995. front: {
  10996. height: math.unit(13 + 10 / 12, "feet"),
  10997. weight: math.unit(5320, "lb"),
  10998. name: "Front",
  10999. image: {
  11000. source: "./media/characters/chauncey-chantz/front.svg",
  11001. extra: 1587 / 1435,
  11002. bottom: 0.02
  11003. }
  11004. },
  11005. },
  11006. [
  11007. {
  11008. name: "Normal",
  11009. height: math.unit(13 + 10 / 12, "feet"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Macro",
  11014. height: math.unit(45, "feet")
  11015. },
  11016. {
  11017. name: "Megamacro",
  11018. height: math.unit(250, "miles")
  11019. },
  11020. {
  11021. name: "Planetary",
  11022. height: math.unit(10000, "miles")
  11023. },
  11024. {
  11025. name: "Galactic",
  11026. height: math.unit(40000, "parsecs")
  11027. },
  11028. {
  11029. name: "Universal",
  11030. height: math.unit(1, "yottameter")
  11031. },
  11032. ]
  11033. ))
  11034. characterMakers.push(() => makeCharacter(
  11035. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11036. {
  11037. front: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(150, "lb"),
  11040. name: "Front",
  11041. image: {
  11042. source: "./media/characters/epifox/front.svg",
  11043. extra: 1,
  11044. bottom: 0.075
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Micro",
  11051. height: math.unit(6, "inches")
  11052. },
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(12, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(3810, "feet")
  11061. },
  11062. {
  11063. name: "Megamacro",
  11064. height: math.unit(500, "miles")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(1.8796, "m"),
  11073. weight: math.unit(230, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/colin-t/front.svg",
  11077. extra: 1272 / 1193,
  11078. bottom: 0.07
  11079. }
  11080. },
  11081. },
  11082. [
  11083. {
  11084. name: "Micro",
  11085. height: math.unit(0.571, "meters")
  11086. },
  11087. {
  11088. name: "Normal",
  11089. height: math.unit(1.8796, "meters"),
  11090. default: true
  11091. },
  11092. {
  11093. name: "Tall",
  11094. height: math.unit(4, "meters")
  11095. },
  11096. {
  11097. name: "Macro",
  11098. height: math.unit(67.241, "meters")
  11099. },
  11100. {
  11101. name: "Megamacro",
  11102. height: math.unit(371.856, "meters")
  11103. },
  11104. {
  11105. name: "Planetary",
  11106. height: math.unit(12631.5689, "km")
  11107. },
  11108. ]
  11109. ))
  11110. characterMakers.push(() => makeCharacter(
  11111. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11112. {
  11113. front: {
  11114. height: math.unit(1.85, "meters"),
  11115. weight: math.unit(80, "kg"),
  11116. name: "Front",
  11117. image: {
  11118. source: "./media/characters/matvei/front.svg",
  11119. extra: 614 / 594,
  11120. bottom: 0.01
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Normal",
  11127. height: math.unit(1.85, "meters"),
  11128. default: true
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(5 + 9 / 12, "feet"),
  11137. weight: math.unit(70, "lb"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/quincy/front.svg",
  11141. extra: 3041 / 2751
  11142. }
  11143. },
  11144. back: {
  11145. height: math.unit(5 + 9 / 12, "feet"),
  11146. weight: math.unit(70, "lb"),
  11147. name: "Back",
  11148. image: {
  11149. source: "./media/characters/quincy/back.svg",
  11150. extra: 3041 / 2751
  11151. }
  11152. },
  11153. flying: {
  11154. height: math.unit(5 + 4 / 12, "feet"),
  11155. weight: math.unit(70, "lb"),
  11156. name: "Flying",
  11157. image: {
  11158. source: "./media/characters/quincy/flying.svg",
  11159. extra: 1044 / 930
  11160. }
  11161. },
  11162. },
  11163. [
  11164. {
  11165. name: "Micro",
  11166. height: math.unit(3, "cm")
  11167. },
  11168. {
  11169. name: "Normal",
  11170. height: math.unit(5 + 9 / 12, "feet")
  11171. },
  11172. {
  11173. name: "Macro",
  11174. height: math.unit(200, "meters"),
  11175. default: true
  11176. },
  11177. {
  11178. name: "Megamacro",
  11179. height: math.unit(1000, "meters")
  11180. },
  11181. ]
  11182. ))
  11183. characterMakers.push(() => makeCharacter(
  11184. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11185. {
  11186. front: {
  11187. height: math.unit(4 + 7 / 12, "feet"),
  11188. weight: math.unit(150, "lb"),
  11189. name: "Front",
  11190. image: {
  11191. source: "./media/characters/vanrel/front.svg",
  11192. extra: 1,
  11193. bottom: 0.02
  11194. }
  11195. },
  11196. elemental: {
  11197. height: math.unit(3, "feet"),
  11198. weight: math.unit(150, "lb"),
  11199. name: "Elemental",
  11200. image: {
  11201. source: "./media/characters/vanrel/elemental.svg",
  11202. extra: 192.3 / 162.8,
  11203. bottom: 1.79 / 194.17
  11204. }
  11205. },
  11206. side: {
  11207. height: math.unit(4 + 7 / 12, "feet"),
  11208. weight: math.unit(150, "lb"),
  11209. name: "Side",
  11210. image: {
  11211. source: "./media/characters/vanrel/side.svg",
  11212. extra: 1,
  11213. bottom: 0.025
  11214. }
  11215. },
  11216. tome: {
  11217. height: math.unit(1.35, "feet"),
  11218. weight: math.unit(10, "lb"),
  11219. name: "Vanrel's Tome",
  11220. rename: true,
  11221. image: {
  11222. source: "./media/characters/vanrel/tome.svg"
  11223. }
  11224. },
  11225. beans: {
  11226. height: math.unit(0.89, "feet"),
  11227. name: "Beans",
  11228. image: {
  11229. source: "./media/characters/vanrel/beans.svg"
  11230. }
  11231. },
  11232. },
  11233. [
  11234. {
  11235. name: "Normal",
  11236. height: math.unit(4 + 7 / 12, "feet"),
  11237. default: true
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11243. {
  11244. front: {
  11245. height: math.unit(7 + 5 / 12, "feet"),
  11246. weight: math.unit(150, "lb"),
  11247. name: "Front",
  11248. image: {
  11249. source: "./media/characters/kuiper-vanrel/front.svg",
  11250. extra: 1118 / 1068,
  11251. bottom: 0.09
  11252. }
  11253. },
  11254. foot: {
  11255. height: math.unit(0.55, "meters"),
  11256. name: "Foot",
  11257. image: {
  11258. source: "./media/characters/kuiper-vanrel/foot.svg",
  11259. }
  11260. },
  11261. battle: {
  11262. height: math.unit(6.824, "feet"),
  11263. weight: math.unit(150, "lb"),
  11264. name: "Battle",
  11265. image: {
  11266. source: "./media/characters/kuiper-vanrel/battle.svg",
  11267. extra: 1466 / 1327,
  11268. bottom: 29 / 1492.5
  11269. }
  11270. },
  11271. battleAlt: {
  11272. height: math.unit(6.824, "feet"),
  11273. weight: math.unit(150, "lb"),
  11274. name: "Battle (Alt)",
  11275. image: {
  11276. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11277. extra: 2081 / 1965,
  11278. bottom: 40 / 2121
  11279. }
  11280. },
  11281. },
  11282. [
  11283. {
  11284. name: "Normal",
  11285. height: math.unit(7 + 5 / 12, "feet"),
  11286. default: true
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(8 + 5 / 12, "feet"),
  11295. weight: math.unit(150, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/keset-vanrel/front.svg",
  11299. extra: 1150 / 1084,
  11300. bottom: 0.05
  11301. }
  11302. },
  11303. hand: {
  11304. height: math.unit(0.6, "meters"),
  11305. name: "Hand",
  11306. image: {
  11307. source: "./media/characters/keset-vanrel/hand.svg"
  11308. }
  11309. },
  11310. foot: {
  11311. height: math.unit(0.94978, "meters"),
  11312. name: "Foot",
  11313. image: {
  11314. source: "./media/characters/keset-vanrel/foot.svg"
  11315. }
  11316. },
  11317. battle: {
  11318. height: math.unit(7.408, "feet"),
  11319. weight: math.unit(150, "lb"),
  11320. name: "Battle",
  11321. image: {
  11322. source: "./media/characters/keset-vanrel/battle.svg",
  11323. extra: 1890 / 1386,
  11324. bottom: 73.28 / 1970
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(8 + 5 / 12, "feet"),
  11332. default: true
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11338. {
  11339. front: {
  11340. height: math.unit(6, "feet"),
  11341. weight: math.unit(150, "lb"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/neos/front.svg",
  11345. extra: 1696 / 992,
  11346. bottom: 0.14
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Normal",
  11353. height: math.unit(54, "cm"),
  11354. default: true
  11355. },
  11356. {
  11357. name: "Macro",
  11358. height: math.unit(100, "m")
  11359. },
  11360. {
  11361. name: "Megamacro",
  11362. height: math.unit(10, "km")
  11363. },
  11364. {
  11365. name: "Megamacro+",
  11366. height: math.unit(100, "km")
  11367. },
  11368. {
  11369. name: "Gigamacro",
  11370. height: math.unit(100, "Mm")
  11371. },
  11372. {
  11373. name: "Teramacro",
  11374. height: math.unit(100, "Gm")
  11375. },
  11376. {
  11377. name: "Examacro",
  11378. height: math.unit(100, "Em")
  11379. },
  11380. {
  11381. name: "Godly",
  11382. height: math.unit(10000, "Ym")
  11383. },
  11384. {
  11385. name: "Beyond Godly",
  11386. height: math.unit(25, "multiverses")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11392. {
  11393. feminine: {
  11394. height: math.unit(5, "feet"),
  11395. weight: math.unit(100, "lb"),
  11396. name: "Feminine",
  11397. image: {
  11398. source: "./media/characters/sammy-mouse/feminine.svg",
  11399. extra: 2526 / 2425,
  11400. bottom: 0.123
  11401. }
  11402. },
  11403. masculine: {
  11404. height: math.unit(5, "feet"),
  11405. weight: math.unit(100, "lb"),
  11406. name: "Masculine",
  11407. image: {
  11408. source: "./media/characters/sammy-mouse/masculine.svg",
  11409. extra: 2526 / 2425,
  11410. bottom: 0.123
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Micro",
  11417. height: math.unit(5, "inches")
  11418. },
  11419. {
  11420. name: "Normal",
  11421. height: math.unit(5, "feet"),
  11422. default: true
  11423. },
  11424. {
  11425. name: "Macro",
  11426. height: math.unit(60, "feet")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11432. {
  11433. front: {
  11434. height: math.unit(4, "feet"),
  11435. weight: math.unit(50, "lb"),
  11436. name: "Front",
  11437. image: {
  11438. source: "./media/characters/kole/front.svg",
  11439. extra: 1423 / 1303,
  11440. bottom: 0.025
  11441. }
  11442. },
  11443. back: {
  11444. height: math.unit(4, "feet"),
  11445. weight: math.unit(50, "lb"),
  11446. name: "Back",
  11447. image: {
  11448. source: "./media/characters/kole/back.svg",
  11449. extra: 1426 / 1280,
  11450. bottom: 0.02
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(4, "feet"),
  11458. default: true
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(2 + 6 / 12, "feet"),
  11467. weight: math.unit(20, "lb"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/rufran/front.svg",
  11471. extra: 2041 / 1839,
  11472. bottom: 0.055
  11473. }
  11474. },
  11475. back: {
  11476. height: math.unit(2 + 6 / 12, "feet"),
  11477. weight: math.unit(20, "lb"),
  11478. name: "Back",
  11479. image: {
  11480. source: "./media/characters/rufran/back.svg",
  11481. extra: 2054 / 1839,
  11482. bottom: 0.01
  11483. }
  11484. },
  11485. hand: {
  11486. height: math.unit(0.2166, "meters"),
  11487. name: "Hand",
  11488. image: {
  11489. source: "./media/characters/rufran/hand.svg"
  11490. }
  11491. },
  11492. foot: {
  11493. height: math.unit(0.185, "meters"),
  11494. name: "Foot",
  11495. image: {
  11496. source: "./media/characters/rufran/foot.svg"
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Micro",
  11503. height: math.unit(1, "inch")
  11504. },
  11505. {
  11506. name: "Normal",
  11507. height: math.unit(2 + 6 / 12, "feet"),
  11508. default: true
  11509. },
  11510. {
  11511. name: "Big",
  11512. height: math.unit(60, "feet")
  11513. },
  11514. {
  11515. name: "Macro",
  11516. height: math.unit(325, "feet")
  11517. },
  11518. ]
  11519. ))
  11520. characterMakers.push(() => makeCharacter(
  11521. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11522. {
  11523. front: {
  11524. height: math.unit(0.3, "meters"),
  11525. weight: math.unit(3.5, "kg"),
  11526. name: "Front",
  11527. image: {
  11528. source: "./media/characters/chip/front.svg",
  11529. extra: 748 / 674
  11530. }
  11531. },
  11532. },
  11533. [
  11534. {
  11535. name: "Micro",
  11536. height: math.unit(1, "inch"),
  11537. default: true
  11538. },
  11539. ]
  11540. ))
  11541. characterMakers.push(() => makeCharacter(
  11542. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11543. {
  11544. side: {
  11545. height: math.unit(2.3, "meters"),
  11546. weight: math.unit(3500, "lb"),
  11547. name: "Side",
  11548. image: {
  11549. source: "./media/characters/torvid/side.svg",
  11550. extra: 1972 / 722,
  11551. bottom: 0.035
  11552. }
  11553. },
  11554. },
  11555. [
  11556. {
  11557. name: "Normal",
  11558. height: math.unit(2.3, "meters"),
  11559. default: true
  11560. },
  11561. ]
  11562. ))
  11563. characterMakers.push(() => makeCharacter(
  11564. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11565. {
  11566. front: {
  11567. height: math.unit(2, "meters"),
  11568. weight: math.unit(150.5, "kg"),
  11569. name: "Front",
  11570. image: {
  11571. source: "./media/characters/susan/front.svg",
  11572. extra: 693 / 635,
  11573. bottom: 0.05
  11574. }
  11575. },
  11576. },
  11577. [
  11578. {
  11579. name: "Megamacro",
  11580. height: math.unit(505, "miles"),
  11581. default: true
  11582. },
  11583. ]
  11584. ))
  11585. characterMakers.push(() => makeCharacter(
  11586. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11587. {
  11588. front: {
  11589. height: math.unit(6, "feet"),
  11590. weight: math.unit(150, "lb"),
  11591. name: "Front",
  11592. image: {
  11593. source: "./media/characters/raindrops/front.svg",
  11594. extra: 2655 / 2461,
  11595. bottom: 49 / 2705
  11596. }
  11597. },
  11598. back: {
  11599. height: math.unit(6, "feet"),
  11600. weight: math.unit(150, "lb"),
  11601. name: "Back",
  11602. image: {
  11603. source: "./media/characters/raindrops/back.svg",
  11604. extra: 2574 / 2400,
  11605. bottom: 65 / 2634
  11606. }
  11607. },
  11608. },
  11609. [
  11610. {
  11611. name: "Micro",
  11612. height: math.unit(6, "inches")
  11613. },
  11614. {
  11615. name: "Normal",
  11616. height: math.unit(6 + 2 / 12, "feet")
  11617. },
  11618. {
  11619. name: "Macro",
  11620. height: math.unit(131, "feet"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Megamacro",
  11625. height: math.unit(15, "miles")
  11626. },
  11627. {
  11628. name: "Gigamacro",
  11629. height: math.unit(4000, "miles")
  11630. },
  11631. {
  11632. name: "Teramacro",
  11633. height: math.unit(315000, "miles")
  11634. },
  11635. ]
  11636. ))
  11637. characterMakers.push(() => makeCharacter(
  11638. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11639. {
  11640. front: {
  11641. height: math.unit(2.794, "meters"),
  11642. weight: math.unit(325, "kg"),
  11643. name: "Front",
  11644. image: {
  11645. source: "./media/characters/tezwa/front.svg",
  11646. extra: 2083 / 1906,
  11647. bottom: 0.031
  11648. }
  11649. },
  11650. foot: {
  11651. height: math.unit(0.687, "meters"),
  11652. name: "Foot",
  11653. image: {
  11654. source: "./media/characters/tezwa/foot.svg"
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Normal",
  11661. height: math.unit(9 + 2 / 12, "feet"),
  11662. default: true
  11663. },
  11664. ]
  11665. ))
  11666. characterMakers.push(() => makeCharacter(
  11667. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11668. {
  11669. front: {
  11670. height: math.unit(58, "feet"),
  11671. weight: math.unit(89000, "lb"),
  11672. name: "Front",
  11673. image: {
  11674. source: "./media/characters/typhus/front.svg",
  11675. extra: 816 / 800,
  11676. bottom: 0.065
  11677. }
  11678. },
  11679. },
  11680. [
  11681. {
  11682. name: "Macro",
  11683. height: math.unit(58, "feet"),
  11684. default: true
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(12, "feet"),
  11693. weight: math.unit(6, "tonnes"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/lyra-von-wulf/front.svg",
  11697. extra: 1,
  11698. bottom: 0.10
  11699. }
  11700. },
  11701. frontMecha: {
  11702. height: math.unit(12, "feet"),
  11703. weight: math.unit(12, "tonnes"),
  11704. name: "Front (Mecha)",
  11705. image: {
  11706. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11707. extra: 1,
  11708. bottom: 0.042
  11709. }
  11710. },
  11711. maw: {
  11712. height: math.unit(2.2, "feet"),
  11713. name: "Maw",
  11714. image: {
  11715. source: "./media/characters/lyra-von-wulf/maw.svg"
  11716. }
  11717. },
  11718. },
  11719. [
  11720. {
  11721. name: "Normal",
  11722. height: math.unit(12, "feet"),
  11723. default: true
  11724. },
  11725. {
  11726. name: "Classic",
  11727. height: math.unit(50, "feet")
  11728. },
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(500, "feet")
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(1, "mile")
  11736. },
  11737. {
  11738. name: "Gigamacro",
  11739. height: math.unit(400, "miles")
  11740. },
  11741. {
  11742. name: "Teramacro",
  11743. height: math.unit(22000, "miles")
  11744. },
  11745. {
  11746. name: "Solarmacro",
  11747. height: math.unit(8600000, "miles")
  11748. },
  11749. {
  11750. name: "Galactic",
  11751. height: math.unit(1057000, "lightyears")
  11752. },
  11753. ]
  11754. ))
  11755. characterMakers.push(() => makeCharacter(
  11756. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11757. {
  11758. front: {
  11759. height: math.unit(6 + 10 / 12, "feet"),
  11760. weight: math.unit(150, "lb"),
  11761. name: "Front",
  11762. image: {
  11763. source: "./media/characters/dixon/front.svg",
  11764. extra: 3361 / 3209,
  11765. bottom: 0.01
  11766. }
  11767. },
  11768. },
  11769. [
  11770. {
  11771. name: "Normal",
  11772. height: math.unit(6 + 10 / 12, "feet"),
  11773. default: true
  11774. },
  11775. {
  11776. name: "Big",
  11777. height: math.unit(12, "meters")
  11778. },
  11779. {
  11780. name: "Macro",
  11781. height: math.unit(500, "meters")
  11782. },
  11783. {
  11784. name: "Megamacro",
  11785. height: math.unit(2, "km")
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11791. {
  11792. front: {
  11793. height: math.unit(185, "cm"),
  11794. weight: math.unit(68, "kg"),
  11795. name: "Front",
  11796. image: {
  11797. source: "./media/characters/kauko/front.svg",
  11798. extra: 1455 / 1421,
  11799. bottom: 0.03
  11800. }
  11801. },
  11802. back: {
  11803. height: math.unit(185, "cm"),
  11804. weight: math.unit(68, "kg"),
  11805. name: "Back",
  11806. image: {
  11807. source: "./media/characters/kauko/back.svg",
  11808. extra: 1455 / 1421,
  11809. bottom: 0.004
  11810. }
  11811. },
  11812. },
  11813. [
  11814. {
  11815. name: "Normal",
  11816. height: math.unit(185, "cm"),
  11817. default: true
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(150, "kg"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/varg/front.svg",
  11830. extra: 1108 / 1018,
  11831. bottom: 0.0375
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(5, "meters")
  11839. },
  11840. {
  11841. name: "Macro",
  11842. height: math.unit(200, "meters")
  11843. },
  11844. {
  11845. name: "Megamacro",
  11846. height: math.unit(20, "kilometers")
  11847. },
  11848. {
  11849. name: "True Size",
  11850. height: math.unit(211, "km"),
  11851. default: true
  11852. },
  11853. {
  11854. name: "Gigamacro",
  11855. height: math.unit(1000, "km")
  11856. },
  11857. {
  11858. name: "Gigamacro+",
  11859. height: math.unit(8000, "km")
  11860. },
  11861. {
  11862. name: "Teramacro",
  11863. height: math.unit(1000000, "km")
  11864. },
  11865. ]
  11866. ))
  11867. characterMakers.push(() => makeCharacter(
  11868. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11869. {
  11870. front: {
  11871. height: math.unit(7 + 7 / 12, "feet"),
  11872. weight: math.unit(267, "lb"),
  11873. name: "Front",
  11874. image: {
  11875. source: "./media/characters/dayza/front.svg",
  11876. extra: 1262 / 1200,
  11877. bottom: 0.035
  11878. }
  11879. },
  11880. side: {
  11881. height: math.unit(7 + 7 / 12, "feet"),
  11882. weight: math.unit(267, "lb"),
  11883. name: "Side",
  11884. image: {
  11885. source: "./media/characters/dayza/side.svg",
  11886. extra: 1295 / 1245,
  11887. bottom: 0.05
  11888. }
  11889. },
  11890. back: {
  11891. height: math.unit(7 + 7 / 12, "feet"),
  11892. weight: math.unit(267, "lb"),
  11893. name: "Back",
  11894. image: {
  11895. source: "./media/characters/dayza/back.svg",
  11896. extra: 1241 / 1170
  11897. }
  11898. },
  11899. },
  11900. [
  11901. {
  11902. name: "Normal",
  11903. height: math.unit(7 + 7 / 12, "feet"),
  11904. default: true
  11905. },
  11906. {
  11907. name: "Macro",
  11908. height: math.unit(155, "feet")
  11909. },
  11910. ]
  11911. ))
  11912. characterMakers.push(() => makeCharacter(
  11913. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11914. {
  11915. front: {
  11916. height: math.unit(6 + 5 / 12, "feet"),
  11917. weight: math.unit(160, "lb"),
  11918. name: "Front",
  11919. image: {
  11920. source: "./media/characters/xanthos/front.svg",
  11921. extra: 1,
  11922. bottom: 0.04
  11923. }
  11924. },
  11925. back: {
  11926. height: math.unit(6 + 5 / 12, "feet"),
  11927. weight: math.unit(160, "lb"),
  11928. name: "Back",
  11929. image: {
  11930. source: "./media/characters/xanthos/back.svg",
  11931. extra: 1,
  11932. bottom: 0.03
  11933. }
  11934. },
  11935. hand: {
  11936. height: math.unit(0.928, "feet"),
  11937. name: "Hand",
  11938. image: {
  11939. source: "./media/characters/xanthos/hand.svg"
  11940. }
  11941. },
  11942. foot: {
  11943. height: math.unit(1.286, "feet"),
  11944. name: "Foot",
  11945. image: {
  11946. source: "./media/characters/xanthos/foot.svg"
  11947. }
  11948. },
  11949. },
  11950. [
  11951. {
  11952. name: "Normal",
  11953. height: math.unit(6 + 5 / 12, "feet"),
  11954. default: true
  11955. },
  11956. {
  11957. name: "Normal+",
  11958. height: math.unit(6, "meters")
  11959. },
  11960. {
  11961. name: "Macro",
  11962. height: math.unit(40, "feet")
  11963. },
  11964. {
  11965. name: "Macro+",
  11966. height: math.unit(200, "meters")
  11967. },
  11968. {
  11969. name: "Megamacro",
  11970. height: math.unit(20, "km")
  11971. },
  11972. {
  11973. name: "Megamacro+",
  11974. height: math.unit(100, "km")
  11975. },
  11976. ]
  11977. ))
  11978. characterMakers.push(() => makeCharacter(
  11979. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11980. {
  11981. front: {
  11982. height: math.unit(6 + 3 / 12, "feet"),
  11983. weight: math.unit(215, "lb"),
  11984. name: "Front",
  11985. image: {
  11986. source: "./media/characters/grynn/front.svg",
  11987. extra: 4627 / 4209,
  11988. bottom: 0.047
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Micro",
  11995. height: math.unit(6, "inches")
  11996. },
  11997. {
  11998. name: "Normal",
  11999. height: math.unit(6 + 3 / 12, "feet"),
  12000. default: true
  12001. },
  12002. {
  12003. name: "Big",
  12004. height: math.unit(104, "feet")
  12005. },
  12006. {
  12007. name: "Macro",
  12008. height: math.unit(944, "feet")
  12009. },
  12010. {
  12011. name: "Macro+",
  12012. height: math.unit(9480, "feet")
  12013. },
  12014. {
  12015. name: "Megamacro",
  12016. height: math.unit(78752, "feet")
  12017. },
  12018. {
  12019. name: "Megamacro+",
  12020. height: math.unit(630128, "feet")
  12021. },
  12022. {
  12023. name: "Megamacro++",
  12024. height: math.unit(3150695, "feet")
  12025. },
  12026. ]
  12027. ))
  12028. characterMakers.push(() => makeCharacter(
  12029. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12030. {
  12031. front: {
  12032. height: math.unit(7 + 5 / 12, "feet"),
  12033. weight: math.unit(450, "lb"),
  12034. name: "Front",
  12035. image: {
  12036. source: "./media/characters/mocha-aura/front.svg",
  12037. extra: 1907 / 1817,
  12038. bottom: 0.04
  12039. }
  12040. },
  12041. back: {
  12042. height: math.unit(7 + 5 / 12, "feet"),
  12043. weight: math.unit(450, "lb"),
  12044. name: "Back",
  12045. image: {
  12046. source: "./media/characters/mocha-aura/back.svg",
  12047. extra: 1900 / 1825,
  12048. bottom: 0.045
  12049. }
  12050. },
  12051. },
  12052. [
  12053. {
  12054. name: "Nano",
  12055. height: math.unit(1, "nm")
  12056. },
  12057. {
  12058. name: "Megamicro",
  12059. height: math.unit(1, "mm")
  12060. },
  12061. {
  12062. name: "Micro",
  12063. height: math.unit(3, "inches")
  12064. },
  12065. {
  12066. name: "Normal",
  12067. height: math.unit(7 + 5 / 12, "feet"),
  12068. default: true
  12069. },
  12070. {
  12071. name: "Macro",
  12072. height: math.unit(30, "feet")
  12073. },
  12074. {
  12075. name: "Megamacro",
  12076. height: math.unit(3500, "feet")
  12077. },
  12078. {
  12079. name: "Teramacro",
  12080. height: math.unit(500000, "miles")
  12081. },
  12082. {
  12083. name: "Petamacro",
  12084. height: math.unit(50000000000000000, "parsecs")
  12085. },
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12090. {
  12091. front: {
  12092. height: math.unit(6, "feet"),
  12093. weight: math.unit(150, "lb"),
  12094. name: "Front",
  12095. image: {
  12096. source: "./media/characters/ilisha-devya/front.svg",
  12097. extra: 1,
  12098. bottom: 0.175
  12099. }
  12100. },
  12101. back: {
  12102. height: math.unit(6, "feet"),
  12103. weight: math.unit(150, "lb"),
  12104. name: "Back",
  12105. image: {
  12106. source: "./media/characters/ilisha-devya/back.svg",
  12107. extra: 1,
  12108. bottom: 0.015
  12109. }
  12110. },
  12111. },
  12112. [
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(500, "feet"),
  12116. default: true
  12117. },
  12118. {
  12119. name: "Megamacro",
  12120. height: math.unit(10, "miles")
  12121. },
  12122. {
  12123. name: "Gigamacro",
  12124. height: math.unit(100000, "miles")
  12125. },
  12126. {
  12127. name: "Examacro",
  12128. height: math.unit(1e9, "lightyears")
  12129. },
  12130. {
  12131. name: "Omniversal",
  12132. height: math.unit(1e33, "lightyears")
  12133. },
  12134. {
  12135. name: "Beyond Infinite",
  12136. height: math.unit(1e100, "lightyears")
  12137. },
  12138. ]
  12139. ))
  12140. characterMakers.push(() => makeCharacter(
  12141. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12142. {
  12143. Side: {
  12144. height: math.unit(6, "feet"),
  12145. weight: math.unit(150, "lb"),
  12146. name: "Side",
  12147. image: {
  12148. source: "./media/characters/mira/side.svg",
  12149. extra: 900 / 799,
  12150. bottom: 0.02
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Human Size",
  12157. height: math.unit(6, "feet")
  12158. },
  12159. {
  12160. name: "Macro",
  12161. height: math.unit(100, "feet"),
  12162. default: true
  12163. },
  12164. {
  12165. name: "Megamacro",
  12166. height: math.unit(10, "miles")
  12167. },
  12168. {
  12169. name: "Gigamacro",
  12170. height: math.unit(25000, "miles")
  12171. },
  12172. {
  12173. name: "Teramacro",
  12174. height: math.unit(300, "AU")
  12175. },
  12176. {
  12177. name: "Full Size",
  12178. height: math.unit(4.5e10, "lightyears")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(6, "feet"),
  12187. weight: math.unit(150, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/holly/front.svg",
  12191. extra: 639 / 606
  12192. }
  12193. },
  12194. back: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Back",
  12198. image: {
  12199. source: "./media/characters/holly/back.svg",
  12200. extra: 623 / 598
  12201. }
  12202. },
  12203. frontWorking: {
  12204. height: math.unit(6, "feet"),
  12205. weight: math.unit(150, "lb"),
  12206. name: "Front (Working)",
  12207. image: {
  12208. source: "./media/characters/holly/front-working.svg",
  12209. extra: 607 / 577,
  12210. bottom: 0.048
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Normal",
  12217. height: math.unit(12 + 3 / 12, "feet"),
  12218. default: true
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12224. {
  12225. front: {
  12226. height: math.unit(6, "feet"),
  12227. weight: math.unit(150, "lb"),
  12228. name: "Front",
  12229. image: {
  12230. source: "./media/characters/porter/front.svg",
  12231. extra: 1,
  12232. bottom: 0.01
  12233. }
  12234. },
  12235. frontRobes: {
  12236. height: math.unit(6, "feet"),
  12237. weight: math.unit(150, "lb"),
  12238. name: "Front (Robes)",
  12239. image: {
  12240. source: "./media/characters/porter/front-robes.svg",
  12241. extra: 1.01,
  12242. bottom: 0.01
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(11 + 9 / 12, "feet"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12256. {
  12257. legendary: {
  12258. height: math.unit(6, "feet"),
  12259. weight: math.unit(150, "lb"),
  12260. name: "Legendary",
  12261. image: {
  12262. source: "./media/characters/lucy/legendary.svg",
  12263. extra: 1355 / 1100,
  12264. bottom: 0.045
  12265. }
  12266. },
  12267. },
  12268. [
  12269. {
  12270. name: "Legendary",
  12271. height: math.unit(86882 * 2, "miles"),
  12272. default: true
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12278. {
  12279. front: {
  12280. height: math.unit(6, "feet"),
  12281. weight: math.unit(150, "lb"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/drusilla/front.svg",
  12285. extra: 678 / 635,
  12286. bottom: 0.03
  12287. }
  12288. },
  12289. back: {
  12290. height: math.unit(6, "feet"),
  12291. weight: math.unit(150, "lb"),
  12292. name: "Back",
  12293. image: {
  12294. source: "./media/characters/drusilla/back.svg",
  12295. extra: 678 / 635,
  12296. bottom: 0.005
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Macro",
  12303. height: math.unit(100, "feet")
  12304. },
  12305. {
  12306. name: "Canon Height",
  12307. height: math.unit(2000, "feet"),
  12308. default: true
  12309. },
  12310. ]
  12311. ))
  12312. characterMakers.push(() => makeCharacter(
  12313. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12314. {
  12315. front: {
  12316. height: math.unit(6, "feet"),
  12317. weight: math.unit(180, "lb"),
  12318. name: "Front",
  12319. image: {
  12320. source: "./media/characters/renard-thatch/front.svg",
  12321. extra: 2411 / 2275,
  12322. bottom: 0.01
  12323. }
  12324. },
  12325. frontPosing: {
  12326. height: math.unit(6, "feet"),
  12327. weight: math.unit(180, "lb"),
  12328. name: "Front (Posing)",
  12329. image: {
  12330. source: "./media/characters/renard-thatch/front-posing.svg",
  12331. extra: 2381 / 2261,
  12332. bottom: 0.01
  12333. }
  12334. },
  12335. back: {
  12336. height: math.unit(6, "feet"),
  12337. weight: math.unit(180, "lb"),
  12338. name: "Back",
  12339. image: {
  12340. source: "./media/characters/renard-thatch/back.svg",
  12341. extra: 2428 / 2288
  12342. }
  12343. },
  12344. },
  12345. [
  12346. {
  12347. name: "Micro",
  12348. height: math.unit(3, "inches")
  12349. },
  12350. {
  12351. name: "Default",
  12352. height: math.unit(6, "feet"),
  12353. default: true
  12354. },
  12355. {
  12356. name: "Macro",
  12357. height: math.unit(75, "feet")
  12358. },
  12359. ]
  12360. ))
  12361. characterMakers.push(() => makeCharacter(
  12362. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12363. {
  12364. front: {
  12365. height: math.unit(1450, "feet"),
  12366. weight: math.unit(1.21e6, "tons"),
  12367. name: "Front",
  12368. image: {
  12369. source: "./media/characters/sekvra/front.svg",
  12370. extra: 1,
  12371. bottom: 0.03
  12372. }
  12373. },
  12374. frontClothed: {
  12375. height: math.unit(1450, "feet"),
  12376. weight: math.unit(1.21e6, "tons"),
  12377. name: "Front (Clothed)",
  12378. image: {
  12379. source: "./media/characters/sekvra/front-clothed.svg",
  12380. extra: 1,
  12381. bottom: 0.03
  12382. }
  12383. },
  12384. side: {
  12385. height: math.unit(1450, "feet"),
  12386. weight: math.unit(1.21e6, "tons"),
  12387. name: "Side",
  12388. image: {
  12389. source: "./media/characters/sekvra/side.svg",
  12390. extra: 1,
  12391. bottom: 0.025
  12392. }
  12393. },
  12394. back: {
  12395. height: math.unit(1450, "feet"),
  12396. weight: math.unit(1.21e6, "tons"),
  12397. name: "Back",
  12398. image: {
  12399. source: "./media/characters/sekvra/back.svg",
  12400. extra: 1,
  12401. bottom: 0.005
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Macro",
  12408. height: math.unit(1450, "feet"),
  12409. default: true
  12410. },
  12411. {
  12412. name: "Megamacro",
  12413. height: math.unit(15000, "feet")
  12414. },
  12415. ]
  12416. ))
  12417. characterMakers.push(() => makeCharacter(
  12418. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12419. {
  12420. front: {
  12421. height: math.unit(6, "feet"),
  12422. weight: math.unit(150, "lb"),
  12423. name: "Front",
  12424. image: {
  12425. source: "./media/characters/carmine/front.svg",
  12426. extra: 1,
  12427. bottom: 0.035
  12428. }
  12429. },
  12430. frontArmor: {
  12431. height: math.unit(6, "feet"),
  12432. weight: math.unit(150, "lb"),
  12433. name: "Front (Armor)",
  12434. image: {
  12435. source: "./media/characters/carmine/front-armor.svg",
  12436. extra: 1,
  12437. bottom: 0.035
  12438. }
  12439. },
  12440. },
  12441. [
  12442. {
  12443. name: "Large",
  12444. height: math.unit(1, "mile")
  12445. },
  12446. {
  12447. name: "Huge",
  12448. height: math.unit(40, "miles"),
  12449. default: true
  12450. },
  12451. {
  12452. name: "Colossal",
  12453. height: math.unit(2500, "miles")
  12454. },
  12455. ]
  12456. ))
  12457. characterMakers.push(() => makeCharacter(
  12458. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12459. {
  12460. front: {
  12461. height: math.unit(6, "feet"),
  12462. weight: math.unit(150, "lb"),
  12463. name: "Front",
  12464. image: {
  12465. source: "./media/characters/elyssia/front.svg",
  12466. extra: 2201 / 2035,
  12467. bottom: 0.05
  12468. }
  12469. },
  12470. frontClothed: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(150, "lb"),
  12473. name: "Front (Clothed)",
  12474. image: {
  12475. source: "./media/characters/elyssia/front-clothed.svg",
  12476. extra: 2201 / 2035,
  12477. bottom: 0.05
  12478. }
  12479. },
  12480. back: {
  12481. height: math.unit(6, "feet"),
  12482. weight: math.unit(150, "lb"),
  12483. name: "Back",
  12484. image: {
  12485. source: "./media/characters/elyssia/back.svg",
  12486. extra: 2201 / 2035,
  12487. bottom: 0.013
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Smaller",
  12494. height: math.unit(150, "feet")
  12495. },
  12496. {
  12497. name: "Standard",
  12498. height: math.unit(1400, "feet"),
  12499. default: true
  12500. },
  12501. {
  12502. name: "Distracted",
  12503. height: math.unit(15000, "feet")
  12504. },
  12505. ]
  12506. ))
  12507. characterMakers.push(() => makeCharacter(
  12508. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12509. {
  12510. front: {
  12511. height: math.unit(7 + 4 / 12, "feet"),
  12512. weight: math.unit(500, "lb"),
  12513. name: "Front",
  12514. image: {
  12515. source: "./media/characters/geno-maxwell/front.svg",
  12516. extra: 2207 / 2040,
  12517. bottom: 0.015
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Micro",
  12524. height: math.unit(3, "inches")
  12525. },
  12526. {
  12527. name: "Normal",
  12528. height: math.unit(7 + 4 / 12, "feet"),
  12529. default: true
  12530. },
  12531. {
  12532. name: "Macro",
  12533. height: math.unit(220, "feet")
  12534. },
  12535. {
  12536. name: "Megamacro",
  12537. height: math.unit(11, "miles")
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12543. {
  12544. front: {
  12545. height: math.unit(7 + 4 / 12, "feet"),
  12546. weight: math.unit(500, "lb"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/regena-maxwell/front.svg",
  12550. extra: 3115 / 2770,
  12551. bottom: 0.02
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Normal",
  12558. height: math.unit(7 + 4 / 12, "feet"),
  12559. default: true
  12560. },
  12561. {
  12562. name: "Macro",
  12563. height: math.unit(220, "feet")
  12564. },
  12565. {
  12566. name: "Megamacro",
  12567. height: math.unit(11, "miles")
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12573. {
  12574. front: {
  12575. height: math.unit(6, "feet"),
  12576. weight: math.unit(150, "lb"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12580. extra: 860 / 690,
  12581. bottom: 0.03
  12582. }
  12583. },
  12584. },
  12585. [
  12586. {
  12587. name: "Normal",
  12588. height: math.unit(1.7, "meters"),
  12589. default: true
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12595. {
  12596. front: {
  12597. height: math.unit(6, "feet"),
  12598. weight: math.unit(150, "lb"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/quilly/front.svg",
  12602. extra: 890 / 776
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Gigamacro",
  12609. height: math.unit(404090, "miles"),
  12610. default: true
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(7 + 8 / 12, "feet"),
  12619. weight: math.unit(350, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/tempest/front.svg",
  12623. extra: 1175 / 1086,
  12624. bottom: 0.02
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(7 + 8 / 12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12638. {
  12639. side: {
  12640. height: math.unit(4 + 5 / 12, "feet"),
  12641. weight: math.unit(80, "lb"),
  12642. name: "Side",
  12643. image: {
  12644. source: "./media/characters/rodger/side.svg",
  12645. extra: 1235 / 1118
  12646. }
  12647. },
  12648. },
  12649. [
  12650. {
  12651. name: "Micro",
  12652. height: math.unit(1, "inch")
  12653. },
  12654. {
  12655. name: "Normal",
  12656. height: math.unit(4 + 5 / 12, "feet"),
  12657. default: true
  12658. },
  12659. {
  12660. name: "Macro",
  12661. height: math.unit(120, "feet")
  12662. },
  12663. ]
  12664. ))
  12665. characterMakers.push(() => makeCharacter(
  12666. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12667. {
  12668. front: {
  12669. height: math.unit(6, "feet"),
  12670. weight: math.unit(150, "lb"),
  12671. name: "Front",
  12672. image: {
  12673. source: "./media/characters/danyel/front.svg",
  12674. extra: 1185 / 1123,
  12675. bottom: 0.05
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Shrunken",
  12682. height: math.unit(0.5, "mm")
  12683. },
  12684. {
  12685. name: "Micro",
  12686. height: math.unit(1, "mm"),
  12687. default: true
  12688. },
  12689. {
  12690. name: "Upsized",
  12691. height: math.unit(5 + 5 / 12, "feet")
  12692. },
  12693. ]
  12694. ))
  12695. characterMakers.push(() => makeCharacter(
  12696. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12697. {
  12698. front: {
  12699. height: math.unit(5 + 6 / 12, "feet"),
  12700. weight: math.unit(200, "lb"),
  12701. name: "Front",
  12702. image: {
  12703. source: "./media/characters/vivian-bijoux/front.svg",
  12704. extra: 1,
  12705. bottom: 0.072
  12706. }
  12707. },
  12708. },
  12709. [
  12710. {
  12711. name: "Normal",
  12712. height: math.unit(5 + 6 / 12, "feet"),
  12713. default: true
  12714. },
  12715. {
  12716. name: "Bad Dream",
  12717. height: math.unit(500, "feet")
  12718. },
  12719. {
  12720. name: "Nightmare",
  12721. height: math.unit(500, "miles")
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12727. {
  12728. front: {
  12729. height: math.unit(6 + 1 / 12, "feet"),
  12730. weight: math.unit(260, "lb"),
  12731. name: "Front",
  12732. image: {
  12733. source: "./media/characters/zeta/front.svg",
  12734. extra: 1968 / 1889,
  12735. bottom: 0.06
  12736. }
  12737. },
  12738. back: {
  12739. height: math.unit(6 + 1 / 12, "feet"),
  12740. weight: math.unit(260, "lb"),
  12741. name: "Back",
  12742. image: {
  12743. source: "./media/characters/zeta/back.svg",
  12744. extra: 1944 / 1858,
  12745. bottom: 0.03
  12746. }
  12747. },
  12748. hand: {
  12749. height: math.unit(1.112, "feet"),
  12750. name: "Hand",
  12751. image: {
  12752. source: "./media/characters/zeta/hand.svg"
  12753. }
  12754. },
  12755. foot: {
  12756. height: math.unit(1.48, "feet"),
  12757. name: "Foot",
  12758. image: {
  12759. source: "./media/characters/zeta/foot.svg"
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Micro",
  12766. height: math.unit(6, "inches")
  12767. },
  12768. {
  12769. name: "Normal",
  12770. height: math.unit(6 + 1 / 12, "feet"),
  12771. default: true
  12772. },
  12773. {
  12774. name: "Macro",
  12775. height: math.unit(20, "feet")
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12781. {
  12782. front: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "lb"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/jamie-larsen/front.svg",
  12788. extra: 962 / 933,
  12789. bottom: 0.02
  12790. }
  12791. },
  12792. back: {
  12793. height: math.unit(6, "feet"),
  12794. weight: math.unit(150, "lb"),
  12795. name: "Back",
  12796. image: {
  12797. source: "./media/characters/jamie-larsen/back.svg",
  12798. extra: 997 / 946
  12799. }
  12800. },
  12801. },
  12802. [
  12803. {
  12804. name: "Macro",
  12805. height: math.unit(28 + 7 / 12, "feet"),
  12806. default: true
  12807. },
  12808. {
  12809. name: "Macro+",
  12810. height: math.unit(180, "feet")
  12811. },
  12812. {
  12813. name: "Megamacro",
  12814. height: math.unit(10, "miles")
  12815. },
  12816. {
  12817. name: "Gigamacro",
  12818. height: math.unit(200000, "miles")
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12824. {
  12825. front: {
  12826. height: math.unit(6, "feet"),
  12827. weight: math.unit(120, "lb"),
  12828. name: "Front",
  12829. image: {
  12830. source: "./media/characters/vance/front.svg",
  12831. extra: 1980 / 1890,
  12832. bottom: 0.09
  12833. }
  12834. },
  12835. back: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(120, "lb"),
  12838. name: "Back",
  12839. image: {
  12840. source: "./media/characters/vance/back.svg",
  12841. extra: 2081 / 1994,
  12842. bottom: 0.014
  12843. }
  12844. },
  12845. hand: {
  12846. height: math.unit(0.88, "feet"),
  12847. name: "Hand",
  12848. image: {
  12849. source: "./media/characters/vance/hand.svg"
  12850. }
  12851. },
  12852. foot: {
  12853. height: math.unit(0.64, "feet"),
  12854. name: "Foot",
  12855. image: {
  12856. source: "./media/characters/vance/foot.svg"
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Small",
  12863. height: math.unit(90, "feet"),
  12864. default: true
  12865. },
  12866. {
  12867. name: "Macro",
  12868. height: math.unit(100, "meters")
  12869. },
  12870. {
  12871. name: "Megamacro",
  12872. height: math.unit(15, "miles")
  12873. },
  12874. ]
  12875. ))
  12876. characterMakers.push(() => makeCharacter(
  12877. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12878. {
  12879. front: {
  12880. height: math.unit(6, "feet"),
  12881. weight: math.unit(180, "lb"),
  12882. name: "Front",
  12883. image: {
  12884. source: "./media/characters/xochitl/front.svg",
  12885. extra: 2297 / 2261,
  12886. bottom: 0.065
  12887. }
  12888. },
  12889. back: {
  12890. height: math.unit(6, "feet"),
  12891. weight: math.unit(180, "lb"),
  12892. name: "Back",
  12893. image: {
  12894. source: "./media/characters/xochitl/back.svg",
  12895. extra: 2386 / 2354,
  12896. bottom: 0.01
  12897. }
  12898. },
  12899. foot: {
  12900. height: math.unit(6 / 5 * 1.15, "feet"),
  12901. weight: math.unit(150, "lb"),
  12902. name: "Foot",
  12903. image: {
  12904. source: "./media/characters/xochitl/foot.svg"
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Macro",
  12911. height: math.unit(80, "feet")
  12912. },
  12913. {
  12914. name: "Macro+",
  12915. height: math.unit(400, "feet"),
  12916. default: true
  12917. },
  12918. {
  12919. name: "Gigamacro",
  12920. height: math.unit(80000, "miles")
  12921. },
  12922. {
  12923. name: "Gigamacro+",
  12924. height: math.unit(400000, "miles")
  12925. },
  12926. {
  12927. name: "Teramacro",
  12928. height: math.unit(300, "AU")
  12929. },
  12930. ]
  12931. ))
  12932. characterMakers.push(() => makeCharacter(
  12933. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12934. {
  12935. front: {
  12936. height: math.unit(6, "feet"),
  12937. weight: math.unit(150, "lb"),
  12938. name: "Front",
  12939. image: {
  12940. source: "./media/characters/vincent/front.svg",
  12941. extra: 1130 / 1080,
  12942. bottom: 0.055
  12943. }
  12944. },
  12945. beak: {
  12946. height: math.unit(6 * 0.1, "feet"),
  12947. name: "Beak",
  12948. image: {
  12949. source: "./media/characters/vincent/beak.svg"
  12950. }
  12951. },
  12952. hand: {
  12953. height: math.unit(6 * 0.85, "feet"),
  12954. weight: math.unit(150, "lb"),
  12955. name: "Hand",
  12956. image: {
  12957. source: "./media/characters/vincent/hand.svg"
  12958. }
  12959. },
  12960. foot: {
  12961. height: math.unit(6 * 0.19, "feet"),
  12962. weight: math.unit(150, "lb"),
  12963. name: "Foot",
  12964. image: {
  12965. source: "./media/characters/vincent/foot.svg"
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Base",
  12972. height: math.unit(6 + 5 / 12, "feet"),
  12973. default: true
  12974. },
  12975. {
  12976. name: "Macro",
  12977. height: math.unit(300, "feet")
  12978. },
  12979. {
  12980. name: "Megamacro",
  12981. height: math.unit(2, "miles")
  12982. },
  12983. {
  12984. name: "Gigamacro",
  12985. height: math.unit(1000, "miles")
  12986. },
  12987. ]
  12988. ))
  12989. characterMakers.push(() => makeCharacter(
  12990. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12991. {
  12992. front: {
  12993. height: math.unit(6 + 2 / 12, "feet"),
  12994. weight: math.unit(265, "lb"),
  12995. name: "Front",
  12996. image: {
  12997. source: "./media/characters/jay/front.svg",
  12998. extra: 1510 / 1430,
  12999. bottom: 0.042
  13000. }
  13001. },
  13002. back: {
  13003. height: math.unit(6 + 2 / 12, "feet"),
  13004. weight: math.unit(265, "lb"),
  13005. name: "Back",
  13006. image: {
  13007. source: "./media/characters/jay/back.svg",
  13008. extra: 1510 / 1430,
  13009. bottom: 0.025
  13010. }
  13011. },
  13012. clothed: {
  13013. height: math.unit(6 + 2 / 12, "feet"),
  13014. weight: math.unit(265, "lb"),
  13015. name: "Front (Clothed)",
  13016. image: {
  13017. source: "./media/characters/jay/clothed.svg",
  13018. extra: 744 / 699,
  13019. bottom: 0.043
  13020. }
  13021. },
  13022. head: {
  13023. height: math.unit(1.772, "feet"),
  13024. name: "Head",
  13025. image: {
  13026. source: "./media/characters/jay/head.svg"
  13027. }
  13028. },
  13029. sizeRay: {
  13030. height: math.unit(1.331, "feet"),
  13031. name: "Size Ray",
  13032. image: {
  13033. source: "./media/characters/jay/size-ray.svg"
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Micro",
  13040. height: math.unit(1, "inch")
  13041. },
  13042. {
  13043. name: "Normal",
  13044. height: math.unit(6 + 2 / 12, "feet"),
  13045. default: true
  13046. },
  13047. {
  13048. name: "Macro",
  13049. height: math.unit(1, "mile")
  13050. },
  13051. {
  13052. name: "Megamacro",
  13053. height: math.unit(100, "miles")
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(2, "meters"),
  13062. weight: math.unit(500, "kg"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/coatl/front.svg",
  13066. extra: 3948 / 3500,
  13067. bottom: 0.082
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Normal",
  13074. height: math.unit(4, "meters")
  13075. },
  13076. {
  13077. name: "Macro",
  13078. height: math.unit(100, "meters"),
  13079. default: true
  13080. },
  13081. {
  13082. name: "Macro+",
  13083. height: math.unit(300, "meters")
  13084. },
  13085. {
  13086. name: "Megamacro",
  13087. height: math.unit(3, "gigameters")
  13088. },
  13089. {
  13090. name: "Megamacro+",
  13091. height: math.unit(300, "terameters")
  13092. },
  13093. {
  13094. name: "Megamacro++",
  13095. height: math.unit(3, "lightyears")
  13096. },
  13097. ]
  13098. ))
  13099. characterMakers.push(() => makeCharacter(
  13100. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13101. {
  13102. front: {
  13103. height: math.unit(6, "feet"),
  13104. weight: math.unit(50, "kg"),
  13105. name: "front",
  13106. image: {
  13107. source: "./media/characters/shiroryu/front.svg",
  13108. extra: 1990 / 1935
  13109. }
  13110. },
  13111. },
  13112. [
  13113. {
  13114. name: "Mortal Mingling",
  13115. height: math.unit(3, "meters")
  13116. },
  13117. {
  13118. name: "Kaiju-ish",
  13119. height: math.unit(250, "meters")
  13120. },
  13121. {
  13122. name: "Somewhat Godly",
  13123. height: math.unit(400, "km"),
  13124. default: true
  13125. },
  13126. {
  13127. name: "Planetary",
  13128. height: math.unit(300, "megameters")
  13129. },
  13130. {
  13131. name: "Galaxy-dwarfing",
  13132. height: math.unit(450, "kiloparsecs")
  13133. },
  13134. {
  13135. name: "Universe Eater",
  13136. height: math.unit(150, "gigaparsecs")
  13137. },
  13138. {
  13139. name: "Almost Immeasurable",
  13140. height: math.unit(1.3e266, "yottaparsecs")
  13141. },
  13142. ]
  13143. ))
  13144. characterMakers.push(() => makeCharacter(
  13145. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13146. {
  13147. front: {
  13148. height: math.unit(6, "feet"),
  13149. weight: math.unit(150, "lb"),
  13150. name: "Front",
  13151. image: {
  13152. source: "./media/characters/umeko/front.svg",
  13153. extra: 1,
  13154. bottom: 0.019
  13155. }
  13156. },
  13157. frontArmored: {
  13158. height: math.unit(6, "feet"),
  13159. weight: math.unit(150, "lb"),
  13160. name: "Front (Armored)",
  13161. image: {
  13162. source: "./media/characters/umeko/front-armored.svg",
  13163. extra: 1,
  13164. bottom: 0.021
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Macro",
  13171. height: math.unit(220, "feet"),
  13172. default: true
  13173. },
  13174. {
  13175. name: "Guardian Dragon",
  13176. height: math.unit(50, "miles")
  13177. },
  13178. {
  13179. name: "Cosmic",
  13180. height: math.unit(800000, "miles")
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(150, "lb"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/cassidy/front.svg",
  13193. extra: 1,
  13194. bottom: 0.043
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Canon Height",
  13201. height: math.unit(120, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Macro+",
  13206. height: math.unit(400, "feet")
  13207. },
  13208. {
  13209. name: "Macro++",
  13210. height: math.unit(4000, "feet")
  13211. },
  13212. {
  13213. name: "Megamacro",
  13214. height: math.unit(3, "miles")
  13215. },
  13216. ]
  13217. ))
  13218. characterMakers.push(() => makeCharacter(
  13219. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13220. {
  13221. front: {
  13222. height: math.unit(6, "feet"),
  13223. weight: math.unit(150, "lb"),
  13224. name: "Front",
  13225. image: {
  13226. source: "./media/characters/isaac/front.svg",
  13227. extra: 896 / 815,
  13228. bottom: 0.11
  13229. }
  13230. },
  13231. },
  13232. [
  13233. {
  13234. name: "Human Size",
  13235. height: math.unit(8, "feet"),
  13236. default: true
  13237. },
  13238. {
  13239. name: "Macro",
  13240. height: math.unit(400, "feet")
  13241. },
  13242. {
  13243. name: "Megamacro",
  13244. height: math.unit(50, "miles")
  13245. },
  13246. {
  13247. name: "Canon Height",
  13248. height: math.unit(200, "AU")
  13249. },
  13250. ]
  13251. ))
  13252. characterMakers.push(() => makeCharacter(
  13253. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13254. {
  13255. front: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(72, "kg"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/sleekit/front.svg",
  13261. extra: 4693 / 4487,
  13262. bottom: 0.012
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "Minimum Height",
  13269. height: math.unit(10, "meters")
  13270. },
  13271. {
  13272. name: "Smaller",
  13273. height: math.unit(25, "meters")
  13274. },
  13275. {
  13276. name: "Larger",
  13277. height: math.unit(38, "meters"),
  13278. default: true
  13279. },
  13280. {
  13281. name: "Maximum height",
  13282. height: math.unit(100, "meters")
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(6, "feet"),
  13291. weight: math.unit(150, "lb"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/nillia/front.svg",
  13295. extra: 2195 / 2037,
  13296. bottom: 0.005
  13297. }
  13298. },
  13299. back: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(150, "lb"),
  13302. name: "Back",
  13303. image: {
  13304. source: "./media/characters/nillia/back.svg",
  13305. extra: 2195 / 2037,
  13306. bottom: 0.005
  13307. }
  13308. },
  13309. },
  13310. [
  13311. {
  13312. name: "Canon Height",
  13313. height: math.unit(489, "feet"),
  13314. default: true
  13315. }
  13316. ]
  13317. ))
  13318. characterMakers.push(() => makeCharacter(
  13319. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13320. {
  13321. front: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(150, "lb"),
  13324. name: "Front",
  13325. image: {
  13326. source: "./media/characters/mesmyriza/front.svg",
  13327. extra: 2067 / 1784,
  13328. bottom: 0.035
  13329. }
  13330. },
  13331. foot: {
  13332. height: math.unit(6 / (250 / 35), "feet"),
  13333. name: "Foot",
  13334. image: {
  13335. source: "./media/characters/mesmyriza/foot.svg"
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Macro",
  13342. height: math.unit(457, "meters"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Megamacro",
  13347. height: math.unit(8, "megameters")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(6, "feet"),
  13356. weight: math.unit(250, "lb"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/saudade/front.svg",
  13360. extra: 1172 / 1139,
  13361. bottom: 0.035
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Micro",
  13368. height: math.unit(3, "inches")
  13369. },
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(6, "feet"),
  13373. default: true
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(50, "feet")
  13378. },
  13379. {
  13380. name: "Megamacro",
  13381. height: math.unit(2800, "feet")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13387. {
  13388. front: {
  13389. height: math.unit(5 + 4 / 12, "feet"),
  13390. weight: math.unit(100, "lb"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/keireer/front.svg",
  13394. extra: 716 / 666,
  13395. bottom: 0.05
  13396. }
  13397. },
  13398. },
  13399. [
  13400. {
  13401. name: "Normal",
  13402. height: math.unit(5 + 4 / 12, "feet"),
  13403. default: true
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(6, "feet"),
  13412. weight: math.unit(90, "kg"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/mirja/front.svg",
  13416. extra: 1789 / 1683,
  13417. bottom: 0.05
  13418. }
  13419. },
  13420. frontDressed: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(90, "lb"),
  13423. name: "Front (Dressed)",
  13424. image: {
  13425. source: "./media/characters/mirja/front-dressed.svg",
  13426. extra: 1789 / 1683,
  13427. bottom: 0.05
  13428. }
  13429. },
  13430. back: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(90, "lb"),
  13433. name: "Back",
  13434. image: {
  13435. source: "./media/characters/mirja/back.svg",
  13436. extra: 953 / 917,
  13437. bottom: 0.017
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "\"Incognito\"",
  13444. height: math.unit(3, "meters")
  13445. },
  13446. {
  13447. name: "Strolling Size",
  13448. height: math.unit(15, "km")
  13449. },
  13450. {
  13451. name: "Larger Strolling Size",
  13452. height: math.unit(400, "km")
  13453. },
  13454. {
  13455. name: "Preferred Size",
  13456. height: math.unit(5000, "km")
  13457. },
  13458. {
  13459. name: "True Size",
  13460. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13461. default: true
  13462. },
  13463. ]
  13464. ))
  13465. characterMakers.push(() => makeCharacter(
  13466. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13467. {
  13468. front: {
  13469. height: math.unit(15, "feet"),
  13470. weight: math.unit(880, "kg"),
  13471. name: "Front",
  13472. image: {
  13473. source: "./media/characters/nightraver/front.svg",
  13474. extra: 2444 / 2160,
  13475. bottom: 0.027
  13476. }
  13477. },
  13478. back: {
  13479. height: math.unit(15, "feet"),
  13480. weight: math.unit(880, "kg"),
  13481. name: "Back",
  13482. image: {
  13483. source: "./media/characters/nightraver/back.svg",
  13484. extra: 2309 / 2180,
  13485. bottom: 0.005
  13486. }
  13487. },
  13488. sole: {
  13489. height: math.unit(2.878, "feet"),
  13490. name: "Sole",
  13491. image: {
  13492. source: "./media/characters/nightraver/sole.svg"
  13493. }
  13494. },
  13495. foot: {
  13496. height: math.unit(2.285, "feet"),
  13497. name: "Foot",
  13498. image: {
  13499. source: "./media/characters/nightraver/foot.svg"
  13500. }
  13501. },
  13502. maw: {
  13503. height: math.unit(2.67, "feet"),
  13504. name: "Maw",
  13505. image: {
  13506. source: "./media/characters/nightraver/maw.svg"
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Micro",
  13513. height: math.unit(1, "cm")
  13514. },
  13515. {
  13516. name: "Normal",
  13517. height: math.unit(15, "feet"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Macro",
  13522. height: math.unit(300, "feet")
  13523. },
  13524. {
  13525. name: "Megamacro",
  13526. height: math.unit(300, "miles")
  13527. },
  13528. {
  13529. name: "Gigamacro",
  13530. height: math.unit(10000, "miles")
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13536. {
  13537. side: {
  13538. height: math.unit(2, "inches"),
  13539. weight: math.unit(5, "grams"),
  13540. name: "Side",
  13541. image: {
  13542. source: "./media/characters/arc/side.svg"
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Micro",
  13549. height: math.unit(2, "inches"),
  13550. default: true
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13556. {
  13557. front: {
  13558. height: math.unit(1.1938, "meters"),
  13559. weight: math.unit(54, "kg"),
  13560. name: "Front",
  13561. image: {
  13562. source: "./media/characters/nebula-shahar/front.svg",
  13563. extra: 1642 / 1436,
  13564. bottom: 0.06
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Megamicro",
  13571. height: math.unit(0.3, "mm")
  13572. },
  13573. {
  13574. name: "Micro",
  13575. height: math.unit(3, "cm")
  13576. },
  13577. {
  13578. name: "Normal",
  13579. height: math.unit(138, "cm"),
  13580. default: true
  13581. },
  13582. {
  13583. name: "Macro",
  13584. height: math.unit(30, "m")
  13585. },
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13590. {
  13591. front: {
  13592. height: math.unit(5.24, "feet"),
  13593. weight: math.unit(150, "lb"),
  13594. name: "Front",
  13595. image: {
  13596. source: "./media/characters/shayla/front.svg",
  13597. extra: 1512 / 1414,
  13598. bottom: 0.01
  13599. }
  13600. },
  13601. back: {
  13602. height: math.unit(5.24, "feet"),
  13603. weight: math.unit(150, "lb"),
  13604. name: "Back",
  13605. image: {
  13606. source: "./media/characters/shayla/back.svg",
  13607. extra: 1512 / 1414
  13608. }
  13609. },
  13610. hand: {
  13611. height: math.unit(0.7781496062992126, "feet"),
  13612. name: "Hand",
  13613. image: {
  13614. source: "./media/characters/shayla/hand.svg"
  13615. }
  13616. },
  13617. foot: {
  13618. height: math.unit(1.4206036745406823, "feet"),
  13619. name: "Foot",
  13620. image: {
  13621. source: "./media/characters/shayla/foot.svg"
  13622. }
  13623. },
  13624. },
  13625. [
  13626. {
  13627. name: "Micro",
  13628. height: math.unit(0.32, "feet")
  13629. },
  13630. {
  13631. name: "Normal",
  13632. height: math.unit(5.24, "feet"),
  13633. default: true
  13634. },
  13635. {
  13636. name: "Macro",
  13637. height: math.unit(492.12, "feet")
  13638. },
  13639. {
  13640. name: "Megamacro",
  13641. height: math.unit(186.41, "miles")
  13642. },
  13643. ]
  13644. ))
  13645. characterMakers.push(() => makeCharacter(
  13646. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13647. {
  13648. front: {
  13649. height: math.unit(2.2, "m"),
  13650. weight: math.unit(120, "kg"),
  13651. name: "Front",
  13652. image: {
  13653. source: "./media/characters/pia-jr/front.svg",
  13654. extra: 1000 / 970,
  13655. bottom: 0.035
  13656. }
  13657. },
  13658. hand: {
  13659. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13660. name: "Hand",
  13661. image: {
  13662. source: "./media/characters/pia-jr/hand.svg"
  13663. }
  13664. },
  13665. paw: {
  13666. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13667. name: "Paw",
  13668. image: {
  13669. source: "./media/characters/pia-jr/paw.svg"
  13670. }
  13671. },
  13672. },
  13673. [
  13674. {
  13675. name: "Micro",
  13676. height: math.unit(1.2, "cm")
  13677. },
  13678. {
  13679. name: "Normal",
  13680. height: math.unit(2.2, "m"),
  13681. default: true
  13682. },
  13683. {
  13684. name: "Macro",
  13685. height: math.unit(180, "m")
  13686. },
  13687. {
  13688. name: "Megamacro",
  13689. height: math.unit(420, "km")
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13695. {
  13696. front: {
  13697. height: math.unit(2, "m"),
  13698. weight: math.unit(115, "kg"),
  13699. name: "Front",
  13700. image: {
  13701. source: "./media/characters/pia-sr/front.svg",
  13702. extra: 760 / 730,
  13703. bottom: 0.015
  13704. }
  13705. },
  13706. back: {
  13707. height: math.unit(2, "m"),
  13708. weight: math.unit(115, "kg"),
  13709. name: "Back",
  13710. image: {
  13711. source: "./media/characters/pia-sr/back.svg",
  13712. extra: 760 / 730,
  13713. bottom: 0.01
  13714. }
  13715. },
  13716. hand: {
  13717. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13718. name: "Hand",
  13719. image: {
  13720. source: "./media/characters/pia-sr/hand.svg"
  13721. }
  13722. },
  13723. foot: {
  13724. height: math.unit(1.83, "feet"),
  13725. name: "Foot",
  13726. image: {
  13727. source: "./media/characters/pia-sr/foot.svg"
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Micro",
  13734. height: math.unit(88, "mm")
  13735. },
  13736. {
  13737. name: "Normal",
  13738. height: math.unit(2, "m"),
  13739. default: true
  13740. },
  13741. {
  13742. name: "Macro",
  13743. height: math.unit(200, "m")
  13744. },
  13745. {
  13746. name: "Megamacro",
  13747. height: math.unit(420, "km")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(8 + 2 / 12, "feet"),
  13756. weight: math.unit(300, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/kibibyte/front.svg",
  13760. extra: 2221 / 2098,
  13761. bottom: 0.04
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Normal",
  13768. height: math.unit(8 + 2 / 12, "feet"),
  13769. default: true
  13770. },
  13771. {
  13772. name: "Socialable Macro",
  13773. height: math.unit(50, "feet")
  13774. },
  13775. {
  13776. name: "Macro",
  13777. height: math.unit(300, "feet")
  13778. },
  13779. {
  13780. name: "Megamacro",
  13781. height: math.unit(500, "miles")
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13787. {
  13788. front: {
  13789. height: math.unit(6, "feet"),
  13790. weight: math.unit(150, "lb"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/felix/front.svg",
  13794. extra: 762 / 722,
  13795. bottom: 0.02
  13796. }
  13797. },
  13798. frontClothed: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(150, "lb"),
  13801. name: "Front (Clothed)",
  13802. image: {
  13803. source: "./media/characters/felix/front-clothed.svg",
  13804. extra: 762 / 722,
  13805. bottom: 0.02
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Normal",
  13812. height: math.unit(6 + 8 / 12, "feet"),
  13813. default: true
  13814. },
  13815. {
  13816. name: "Macro",
  13817. height: math.unit(2600, "feet")
  13818. },
  13819. {
  13820. name: "Megamacro",
  13821. height: math.unit(450, "miles")
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13827. {
  13828. front: {
  13829. height: math.unit(6 + 1 / 12, "feet"),
  13830. weight: math.unit(250, "lb"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/tobo/front.svg",
  13834. extra: 608 / 586,
  13835. bottom: 0.023
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(6 + 1 / 12, "feet"),
  13840. weight: math.unit(250, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/tobo/back.svg",
  13844. extra: 608 / 586
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Nano",
  13851. height: math.unit(2, "nm")
  13852. },
  13853. {
  13854. name: "Megamicro",
  13855. height: math.unit(0.1, "mm")
  13856. },
  13857. {
  13858. name: "Micro",
  13859. height: math.unit(1, "inch"),
  13860. default: true
  13861. },
  13862. {
  13863. name: "Human-sized",
  13864. height: math.unit(6 + 1 / 12, "feet")
  13865. },
  13866. {
  13867. name: "Macro",
  13868. height: math.unit(250, "feet")
  13869. },
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(75, "miles")
  13873. },
  13874. {
  13875. name: "Texas-sized",
  13876. height: math.unit(750, "miles")
  13877. },
  13878. {
  13879. name: "Teramacro",
  13880. height: math.unit(50000, "miles")
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13886. {
  13887. front: {
  13888. height: math.unit(6, "feet"),
  13889. weight: math.unit(269, "lb"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/danny-kapowsky/front.svg",
  13893. extra: 766 / 736,
  13894. bottom: 0.044
  13895. }
  13896. },
  13897. back: {
  13898. height: math.unit(6, "feet"),
  13899. weight: math.unit(269, "lb"),
  13900. name: "Back",
  13901. image: {
  13902. source: "./media/characters/danny-kapowsky/back.svg",
  13903. extra: 797 / 760,
  13904. bottom: 0.025
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Macro",
  13911. height: math.unit(150, "feet"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Macro+",
  13916. height: math.unit(200, "feet")
  13917. },
  13918. {
  13919. name: "Macro++",
  13920. height: math.unit(300, "feet")
  13921. },
  13922. {
  13923. name: "Macro+++",
  13924. height: math.unit(400, "feet")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13930. {
  13931. side: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(170, "lb"),
  13934. name: "Side",
  13935. image: {
  13936. source: "./media/characters/finn/side.svg",
  13937. extra: 1953 / 1807,
  13938. bottom: 0.057
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Megamacro",
  13945. height: math.unit(14445, "feet"),
  13946. default: true
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(5 + 6 / 12, "feet"),
  13955. weight: math.unit(125, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/roy/front.svg",
  13959. extra: 1,
  13960. bottom: 0.11
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Micro",
  13967. height: math.unit(3, "inches"),
  13968. default: true
  13969. },
  13970. {
  13971. name: "Normal",
  13972. height: math.unit(5 + 6 / 12, "feet")
  13973. },
  13974. {
  13975. name: "Lesser Macro",
  13976. height: math.unit(60, "feet")
  13977. },
  13978. {
  13979. name: "Greater Macro",
  13980. height: math.unit(120, "feet")
  13981. },
  13982. ]
  13983. ))
  13984. characterMakers.push(() => makeCharacter(
  13985. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13986. {
  13987. front: {
  13988. height: math.unit(6, "feet"),
  13989. weight: math.unit(100, "lb"),
  13990. name: "Front",
  13991. image: {
  13992. source: "./media/characters/aevsivs/front.svg",
  13993. extra: 1,
  13994. bottom: 0.03
  13995. }
  13996. },
  13997. back: {
  13998. height: math.unit(6, "feet"),
  13999. weight: math.unit(100, "lb"),
  14000. name: "Back",
  14001. image: {
  14002. source: "./media/characters/aevsivs/back.svg"
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Micro",
  14009. height: math.unit(2, "inches"),
  14010. default: true
  14011. },
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(5, "feet")
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14020. {
  14021. front: {
  14022. height: math.unit(5 + 7 / 12, "feet"),
  14023. weight: math.unit(159, "lb"),
  14024. name: "Front",
  14025. image: {
  14026. source: "./media/characters/hildegard/front.svg",
  14027. extra: 289 / 269,
  14028. bottom: 7.63 / 297.8
  14029. }
  14030. },
  14031. back: {
  14032. height: math.unit(5 + 7 / 12, "feet"),
  14033. weight: math.unit(159, "lb"),
  14034. name: "Back",
  14035. image: {
  14036. source: "./media/characters/hildegard/back.svg",
  14037. extra: 280 / 260,
  14038. bottom: 2.3 / 282
  14039. }
  14040. },
  14041. },
  14042. [
  14043. {
  14044. name: "Normal",
  14045. height: math.unit(5 + 7 / 12, "feet"),
  14046. default: true
  14047. },
  14048. ]
  14049. ))
  14050. characterMakers.push(() => makeCharacter(
  14051. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14052. {
  14053. bernard: {
  14054. height: math.unit(2 + 7 / 12, "feet"),
  14055. weight: math.unit(66, "lb"),
  14056. name: "Bernard",
  14057. rename: true,
  14058. image: {
  14059. source: "./media/characters/bernard-wilder/bernard.svg",
  14060. extra: 192 / 128,
  14061. bottom: 0.05
  14062. }
  14063. },
  14064. wilder: {
  14065. height: math.unit(5 + 8 / 12, "feet"),
  14066. weight: math.unit(143, "lb"),
  14067. name: "Wilder",
  14068. rename: true,
  14069. image: {
  14070. source: "./media/characters/bernard-wilder/wilder.svg",
  14071. extra: 361 / 312,
  14072. bottom: 0.02
  14073. }
  14074. },
  14075. },
  14076. [
  14077. {
  14078. name: "Normal",
  14079. height: math.unit(2 + 7 / 12, "feet"),
  14080. default: true
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14086. {
  14087. anthro: {
  14088. height: math.unit(6 + 1 / 12, "feet"),
  14089. weight: math.unit(155, "lb"),
  14090. name: "Anthro",
  14091. image: {
  14092. source: "./media/characters/hearth/anthro.svg",
  14093. extra: 260 / 250,
  14094. bottom: 0.02
  14095. }
  14096. },
  14097. feral: {
  14098. height: math.unit(3.78, "feet"),
  14099. weight: math.unit(35, "kg"),
  14100. name: "Feral",
  14101. image: {
  14102. source: "./media/characters/hearth/feral.svg",
  14103. extra: 153 / 135,
  14104. bottom: 0.03
  14105. }
  14106. },
  14107. },
  14108. [
  14109. {
  14110. name: "Normal",
  14111. height: math.unit(6 + 1 / 12, "feet"),
  14112. default: true
  14113. },
  14114. ]
  14115. ))
  14116. characterMakers.push(() => makeCharacter(
  14117. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14118. {
  14119. front: {
  14120. height: math.unit(6, "feet"),
  14121. weight: math.unit(182, "lb"),
  14122. name: "Front",
  14123. image: {
  14124. source: "./media/characters/ingrid/front.svg",
  14125. extra: 294 / 268,
  14126. bottom: 0.027
  14127. }
  14128. },
  14129. },
  14130. [
  14131. {
  14132. name: "Normal",
  14133. height: math.unit(6, "feet"),
  14134. default: true
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14140. {
  14141. eevee: {
  14142. height: math.unit(2 + 10 / 12, "feet"),
  14143. weight: math.unit(86, "lb"),
  14144. name: "Malgam",
  14145. image: {
  14146. source: "./media/characters/malgam/eevee.svg",
  14147. extra: 218 / 180,
  14148. bottom: 0.2
  14149. }
  14150. },
  14151. sylveon: {
  14152. height: math.unit(4, "feet"),
  14153. weight: math.unit(101, "lb"),
  14154. name: "Future Malgam",
  14155. rename: true,
  14156. image: {
  14157. source: "./media/characters/malgam/sylveon.svg",
  14158. extra: 371 / 325,
  14159. bottom: 0.015
  14160. }
  14161. },
  14162. gigantamax: {
  14163. height: math.unit(50, "feet"),
  14164. name: "Gigantamax Malgam",
  14165. rename: true,
  14166. image: {
  14167. source: "./media/characters/malgam/gigantamax.svg"
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(2 + 10 / 12, "feet"),
  14175. default: true
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14181. {
  14182. front: {
  14183. height: math.unit(5 + 11 / 12, "feet"),
  14184. weight: math.unit(188, "lb"),
  14185. name: "Front",
  14186. image: {
  14187. source: "./media/characters/fleur/front.svg",
  14188. extra: 309 / 283,
  14189. bottom: 0.007
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Normal",
  14196. height: math.unit(5 + 11 / 12, "feet"),
  14197. default: true
  14198. },
  14199. ]
  14200. ))
  14201. characterMakers.push(() => makeCharacter(
  14202. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14203. {
  14204. front: {
  14205. height: math.unit(5 + 4 / 12, "feet"),
  14206. weight: math.unit(122, "lb"),
  14207. name: "Front",
  14208. image: {
  14209. source: "./media/characters/jude/front.svg",
  14210. extra: 288 / 273,
  14211. bottom: 0.03
  14212. }
  14213. },
  14214. },
  14215. [
  14216. {
  14217. name: "Normal",
  14218. height: math.unit(5 + 4 / 12, "feet"),
  14219. default: true
  14220. },
  14221. ]
  14222. ))
  14223. characterMakers.push(() => makeCharacter(
  14224. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14225. {
  14226. front: {
  14227. height: math.unit(5 + 11 / 12, "feet"),
  14228. weight: math.unit(190, "lb"),
  14229. name: "Front",
  14230. image: {
  14231. source: "./media/characters/seara/front.svg",
  14232. extra: 1,
  14233. bottom: 0.05
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(5 + 11 / 12, "feet"),
  14241. default: true
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(16 + 5 / 12, "feet"),
  14250. weight: math.unit(524, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/caspian/front.svg",
  14254. extra: 1,
  14255. bottom: 0.04
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(16 + 5 / 12, "feet"),
  14263. default: true
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(5 + 7 / 12, "feet"),
  14272. weight: math.unit(170, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/mika/front.svg",
  14276. extra: 1,
  14277. bottom: 0.016
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(5 + 7 / 12, "feet"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(6 + 2 / 12, "feet"),
  14294. weight: math.unit(268, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/sol/front.svg",
  14298. extra: 247 / 231,
  14299. bottom: 0.05
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Normal",
  14306. height: math.unit(6 + 2 / 12, "feet"),
  14307. default: true
  14308. },
  14309. ]
  14310. ))
  14311. characterMakers.push(() => makeCharacter(
  14312. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14313. {
  14314. buizel: {
  14315. height: math.unit(2 + 5 / 12, "feet"),
  14316. weight: math.unit(87, "lb"),
  14317. name: "Buizel",
  14318. image: {
  14319. source: "./media/characters/umiko/buizel.svg",
  14320. extra: 172 / 157,
  14321. bottom: 0.01
  14322. }
  14323. },
  14324. floatzel: {
  14325. height: math.unit(5 + 9 / 12, "feet"),
  14326. weight: math.unit(250, "lb"),
  14327. name: "Floatzel",
  14328. image: {
  14329. source: "./media/characters/umiko/floatzel.svg",
  14330. extra: 262 / 248
  14331. }
  14332. },
  14333. },
  14334. [
  14335. {
  14336. name: "Normal",
  14337. height: math.unit(2 + 5 / 12, "feet"),
  14338. default: true
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14344. {
  14345. front: {
  14346. height: math.unit(6 + 2 / 12, "feet"),
  14347. weight: math.unit(146, "lb"),
  14348. name: "Front",
  14349. image: {
  14350. source: "./media/characters/iliac/front.svg",
  14351. extra: 389 / 365,
  14352. bottom: 0.035
  14353. }
  14354. },
  14355. },
  14356. [
  14357. {
  14358. name: "Normal",
  14359. height: math.unit(6 + 2 / 12, "feet"),
  14360. default: true
  14361. },
  14362. ]
  14363. ))
  14364. characterMakers.push(() => makeCharacter(
  14365. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14366. {
  14367. front: {
  14368. height: math.unit(6, "feet"),
  14369. weight: math.unit(170, "lb"),
  14370. name: "Front",
  14371. image: {
  14372. source: "./media/characters/topaz/front.svg",
  14373. extra: 317 / 303,
  14374. bottom: 0.055
  14375. }
  14376. },
  14377. },
  14378. [
  14379. {
  14380. name: "Normal",
  14381. height: math.unit(6, "feet"),
  14382. default: true
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14388. {
  14389. front: {
  14390. height: math.unit(5 + 11 / 12, "feet"),
  14391. weight: math.unit(144, "lb"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/gabriel/front.svg",
  14395. extra: 285 / 262,
  14396. bottom: 0.004
  14397. }
  14398. },
  14399. },
  14400. [
  14401. {
  14402. name: "Normal",
  14403. height: math.unit(5 + 11 / 12, "feet"),
  14404. default: true
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14410. {
  14411. side: {
  14412. height: math.unit(6 + 5 / 12, "feet"),
  14413. weight: math.unit(300, "lb"),
  14414. name: "Side",
  14415. image: {
  14416. source: "./media/characters/tempest-suicune/side.svg",
  14417. extra: 195 / 154,
  14418. bottom: 0.04
  14419. }
  14420. },
  14421. },
  14422. [
  14423. {
  14424. name: "Normal",
  14425. height: math.unit(6 + 5 / 12, "feet"),
  14426. default: true
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14432. {
  14433. front: {
  14434. height: math.unit(7 + 2 / 12, "feet"),
  14435. weight: math.unit(322, "lb"),
  14436. name: "Front",
  14437. image: {
  14438. source: "./media/characters/vulcan/front.svg",
  14439. extra: 154 / 147,
  14440. bottom: 0.04
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Normal",
  14447. height: math.unit(7 + 2 / 12, "feet"),
  14448. default: true
  14449. },
  14450. ]
  14451. ))
  14452. characterMakers.push(() => makeCharacter(
  14453. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14454. {
  14455. front: {
  14456. height: math.unit(5 + 10 / 12, "feet"),
  14457. weight: math.unit(264, "lb"),
  14458. name: "Front",
  14459. image: {
  14460. source: "./media/characters/gault/front.svg",
  14461. extra: 161 / 140,
  14462. bottom: 0.028
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Normal",
  14469. height: math.unit(5 + 10 / 12, "feet"),
  14470. default: true
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14476. {
  14477. front: {
  14478. height: math.unit(6, "feet"),
  14479. weight: math.unit(150, "lb"),
  14480. name: "Front",
  14481. image: {
  14482. source: "./media/characters/shard/front.svg",
  14483. extra: 273 / 238,
  14484. bottom: 0.02
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Normal",
  14491. height: math.unit(3 + 6 / 12, "feet"),
  14492. default: true
  14493. },
  14494. ]
  14495. ))
  14496. characterMakers.push(() => makeCharacter(
  14497. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14498. {
  14499. front: {
  14500. height: math.unit(5 + 11 / 12, "feet"),
  14501. weight: math.unit(146, "lb"),
  14502. name: "Front",
  14503. image: {
  14504. source: "./media/characters/ashe/front.svg",
  14505. extra: 400 / 373,
  14506. bottom: 0.01
  14507. }
  14508. },
  14509. },
  14510. [
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(5 + 11 / 12, "feet"),
  14514. default: true
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14520. {
  14521. front: {
  14522. height: math.unit(5 + 5 / 12, "feet"),
  14523. weight: math.unit(135, "lb"),
  14524. name: "Front",
  14525. image: {
  14526. source: "./media/characters/beatrix/front.svg",
  14527. extra: 392 / 379,
  14528. bottom: 0.01
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Normal",
  14535. height: math.unit(6, "feet"),
  14536. default: true
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14542. {
  14543. front: {
  14544. height: math.unit(6, "feet"),
  14545. weight: math.unit(150, "lb"),
  14546. name: "Front",
  14547. image: {
  14548. source: "./media/characters/ignatius/front.svg",
  14549. extra: 245 / 222,
  14550. bottom: 0.01
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Normal",
  14557. height: math.unit(5 + 5 / 12, "feet"),
  14558. default: true
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14564. {
  14565. front: {
  14566. height: math.unit(6 + 2 / 12, "feet"),
  14567. weight: math.unit(138, "lb"),
  14568. name: "Front",
  14569. image: {
  14570. source: "./media/characters/mei-li/front.svg",
  14571. extra: 237 / 229,
  14572. bottom: 0.03
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Normal",
  14579. height: math.unit(6 + 2 / 12, "feet"),
  14580. default: true
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14586. {
  14587. front: {
  14588. height: math.unit(2 + 4 / 12, "feet"),
  14589. weight: math.unit(62, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/puru/front.svg",
  14593. extra: 206 / 149,
  14594. bottom: 0.06
  14595. }
  14596. },
  14597. },
  14598. [
  14599. {
  14600. name: "Normal",
  14601. height: math.unit(2 + 4 / 12, "feet"),
  14602. default: true
  14603. },
  14604. ]
  14605. ))
  14606. characterMakers.push(() => makeCharacter(
  14607. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14608. {
  14609. taur: {
  14610. height: math.unit(11, "feet"),
  14611. weight: math.unit(500, "lb"),
  14612. name: "Taur",
  14613. image: {
  14614. source: "./media/characters/kee/taur.svg",
  14615. extra: 1,
  14616. bottom: 0.04
  14617. }
  14618. },
  14619. },
  14620. [
  14621. {
  14622. name: "Normal",
  14623. height: math.unit(11, "feet"),
  14624. default: true
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14630. {
  14631. anthro: {
  14632. height: math.unit(7, "feet"),
  14633. weight: math.unit(190, "lb"),
  14634. name: "Anthro",
  14635. image: {
  14636. source: "./media/characters/cobalt-dracha/anthro.svg",
  14637. extra: 231 / 225,
  14638. bottom: 0.04
  14639. }
  14640. },
  14641. feral: {
  14642. height: math.unit(9 + 7 / 12, "feet"),
  14643. weight: math.unit(294, "lb"),
  14644. name: "Feral",
  14645. image: {
  14646. source: "./media/characters/cobalt-dracha/feral.svg",
  14647. extra: 692 / 633,
  14648. bottom: 0.05
  14649. }
  14650. },
  14651. },
  14652. [
  14653. {
  14654. name: "Normal",
  14655. height: math.unit(7, "feet"),
  14656. default: true
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14662. {
  14663. fallen: {
  14664. height: math.unit(11 + 8 / 12, "feet"),
  14665. weight: math.unit(485, "lb"),
  14666. name: "Java (Fallen)",
  14667. rename: true,
  14668. image: {
  14669. source: "./media/characters/java/fallen.svg",
  14670. extra: 226 / 208,
  14671. bottom: 0.005
  14672. }
  14673. },
  14674. godkin: {
  14675. height: math.unit(10 + 6 / 12, "feet"),
  14676. weight: math.unit(328, "lb"),
  14677. name: "Java (Godkin)",
  14678. rename: true,
  14679. image: {
  14680. source: "./media/characters/java/godkin.svg",
  14681. extra: 270 / 262,
  14682. bottom: 0.02
  14683. }
  14684. },
  14685. },
  14686. [
  14687. {
  14688. name: "Normal",
  14689. height: math.unit(11 + 8 / 12, "feet"),
  14690. default: true
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(7 + 8 / 12, "feet"),
  14699. weight: math.unit(320, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/skoll/front.svg",
  14703. extra: 232 / 220,
  14704. bottom: 0.02
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Normal",
  14711. height: math.unit(7 + 8 / 12, "feet"),
  14712. default: true
  14713. },
  14714. ]
  14715. ))
  14716. characterMakers.push(() => makeCharacter(
  14717. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14718. {
  14719. front: {
  14720. height: math.unit(5 + 9 / 12, "feet"),
  14721. weight: math.unit(170, "lb"),
  14722. name: "Front",
  14723. image: {
  14724. source: "./media/characters/purna/front.svg",
  14725. extra: 239 / 229,
  14726. bottom: 0.01
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Normal",
  14733. height: math.unit(5 + 9 / 12, "feet"),
  14734. default: true
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14740. {
  14741. front: {
  14742. height: math.unit(5 + 9 / 12, "feet"),
  14743. weight: math.unit(142, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/kuva/front.svg",
  14747. extra: 281 / 271,
  14748. bottom: 0.006
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(5 + 9 / 12, "feet"),
  14756. default: true
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14762. {
  14763. anthro: {
  14764. height: math.unit(9 + 2 / 12, "feet"),
  14765. weight: math.unit(270, "lb"),
  14766. name: "Anthro",
  14767. image: {
  14768. source: "./media/characters/embra/anthro.svg",
  14769. extra: 200 / 187,
  14770. bottom: 0.02
  14771. }
  14772. },
  14773. feral: {
  14774. height: math.unit(18 + 8 / 12, "feet"),
  14775. weight: math.unit(576, "lb"),
  14776. name: "Feral",
  14777. image: {
  14778. source: "./media/characters/embra/feral.svg",
  14779. extra: 152 / 137,
  14780. bottom: 0.037
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Normal",
  14787. height: math.unit(9 + 2 / 12, "feet"),
  14788. default: true
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14794. {
  14795. anthro: {
  14796. height: math.unit(10 + 9 / 12, "feet"),
  14797. weight: math.unit(224, "lb"),
  14798. name: "Anthro",
  14799. image: {
  14800. source: "./media/characters/grottos/anthro.svg",
  14801. extra: 350 / 332,
  14802. bottom: 0.045
  14803. }
  14804. },
  14805. feral: {
  14806. height: math.unit(20 + 7 / 12, "feet"),
  14807. weight: math.unit(629, "lb"),
  14808. name: "Feral",
  14809. image: {
  14810. source: "./media/characters/grottos/feral.svg",
  14811. extra: 207 / 190,
  14812. bottom: 0.05
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(10 + 9 / 12, "feet"),
  14820. default: true
  14821. },
  14822. ]
  14823. ))
  14824. characterMakers.push(() => makeCharacter(
  14825. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14826. {
  14827. anthro: {
  14828. height: math.unit(9 + 6 / 12, "feet"),
  14829. weight: math.unit(298, "lb"),
  14830. name: "Anthro",
  14831. image: {
  14832. source: "./media/characters/frifna/anthro.svg",
  14833. extra: 282 / 269,
  14834. bottom: 0.015
  14835. }
  14836. },
  14837. feral: {
  14838. height: math.unit(16 + 2 / 12, "feet"),
  14839. weight: math.unit(624, "lb"),
  14840. name: "Feral",
  14841. image: {
  14842. source: "./media/characters/frifna/feral.svg"
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(9 + 6 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(6 + 2 / 12, "feet"),
  14859. weight: math.unit(168, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/elise/front.svg",
  14863. extra: 276 / 271
  14864. }
  14865. },
  14866. },
  14867. [
  14868. {
  14869. name: "Normal",
  14870. height: math.unit(6 + 2 / 12, "feet"),
  14871. default: true
  14872. },
  14873. ]
  14874. ))
  14875. characterMakers.push(() => makeCharacter(
  14876. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14877. {
  14878. front: {
  14879. height: math.unit(5 + 10 / 12, "feet"),
  14880. weight: math.unit(210, "lb"),
  14881. name: "Front",
  14882. image: {
  14883. source: "./media/characters/glade/front.svg",
  14884. extra: 258 / 247,
  14885. bottom: 0.008
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Normal",
  14892. height: math.unit(5 + 10 / 12, "feet"),
  14893. default: true
  14894. },
  14895. ]
  14896. ))
  14897. characterMakers.push(() => makeCharacter(
  14898. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14899. {
  14900. front: {
  14901. height: math.unit(5 + 10 / 12, "feet"),
  14902. weight: math.unit(129, "lb"),
  14903. name: "Front",
  14904. image: {
  14905. source: "./media/characters/rina/front.svg",
  14906. extra: 266 / 255,
  14907. bottom: 0.005
  14908. }
  14909. },
  14910. },
  14911. [
  14912. {
  14913. name: "Normal",
  14914. height: math.unit(5 + 10 / 12, "feet"),
  14915. default: true
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(6 + 1 / 12, "feet"),
  14924. weight: math.unit(192, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/veronica/front.svg",
  14928. extra: 319 / 309,
  14929. bottom: 0.005
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(6 + 1 / 12, "feet"),
  14937. default: true
  14938. },
  14939. ]
  14940. ))
  14941. characterMakers.push(() => makeCharacter(
  14942. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14943. {
  14944. front: {
  14945. height: math.unit(9 + 3 / 12, "feet"),
  14946. weight: math.unit(1100, "lb"),
  14947. name: "Front",
  14948. image: {
  14949. source: "./media/characters/braxton/front.svg",
  14950. extra: 1057 / 984,
  14951. bottom: 0.05
  14952. }
  14953. },
  14954. },
  14955. [
  14956. {
  14957. name: "Normal",
  14958. height: math.unit(9 + 3 / 12, "feet")
  14959. },
  14960. {
  14961. name: "Giant",
  14962. height: math.unit(300, "feet"),
  14963. default: true
  14964. },
  14965. {
  14966. name: "Macro",
  14967. height: math.unit(700, "feet")
  14968. },
  14969. {
  14970. name: "Megamacro",
  14971. height: math.unit(6000, "feet")
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(6 + 7 / 12, "feet"),
  14980. weight: math.unit(150, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/blue-feyonics/front.svg",
  14984. extra: 1403 / 1306,
  14985. bottom: 0.047
  14986. }
  14987. },
  14988. },
  14989. [
  14990. {
  14991. name: "Normal",
  14992. height: math.unit(6 + 7 / 12, "feet"),
  14993. default: true
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14999. {
  15000. front: {
  15001. height: math.unit(1.8, "meters"),
  15002. weight: math.unit(60, "kg"),
  15003. name: "Front",
  15004. image: {
  15005. source: "./media/characters/maxwell/front.svg",
  15006. extra: 2060 / 1873
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Micro",
  15013. height: math.unit(1, "mm")
  15014. },
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(1.8, "meter"),
  15018. default: true
  15019. },
  15020. {
  15021. name: "Macro",
  15022. height: math.unit(30, "meters")
  15023. },
  15024. {
  15025. name: "Megamacro",
  15026. height: math.unit(10, "km")
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15032. {
  15033. front: {
  15034. height: math.unit(6, "feet"),
  15035. weight: math.unit(150, "lb"),
  15036. name: "Front",
  15037. image: {
  15038. source: "./media/characters/jack/front.svg",
  15039. extra: 1754 / 1640,
  15040. bottom: 0.01
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Normal",
  15047. height: math.unit(80000, "feet"),
  15048. default: true
  15049. },
  15050. {
  15051. name: "Max size",
  15052. height: math.unit(10, "lightyears")
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15058. {
  15059. upright: {
  15060. height: math.unit(7, "feet"),
  15061. weight: math.unit(170, "lb"),
  15062. name: "Upright",
  15063. image: {
  15064. source: "./media/characters/cafat/upright.svg",
  15065. bottom: 0.01
  15066. }
  15067. },
  15068. uprightFull: {
  15069. height: math.unit(7, "feet"),
  15070. weight: math.unit(170, "lb"),
  15071. name: "Upright (Full)",
  15072. image: {
  15073. source: "./media/characters/cafat/upright-full.svg",
  15074. bottom: 0.01
  15075. }
  15076. },
  15077. side: {
  15078. height: math.unit(5, "feet"),
  15079. weight: math.unit(150, "lb"),
  15080. name: "Side",
  15081. image: {
  15082. source: "./media/characters/cafat/side.svg"
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Small",
  15089. height: math.unit(7, "feet"),
  15090. default: true
  15091. },
  15092. {
  15093. name: "Large",
  15094. height: math.unit(15.5, "feet")
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15100. {
  15101. front: {
  15102. height: math.unit(6, "feet"),
  15103. weight: math.unit(150, "lb"),
  15104. name: "Front",
  15105. image: {
  15106. source: "./media/characters/verin-raharra/front.svg",
  15107. extra: 5019 / 4835,
  15108. bottom: 0.023
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(7 + 5 / 12, "feet"),
  15116. default: true
  15117. },
  15118. {
  15119. name: "Upsized",
  15120. height: math.unit(20, "feet")
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(7, "feet"),
  15129. weight: math.unit(230, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/nakata/front.svg",
  15133. extra: 1.005,
  15134. bottom: 0.01
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(7, "feet"),
  15142. default: true
  15143. },
  15144. {
  15145. name: "Big",
  15146. height: math.unit(14, "feet")
  15147. },
  15148. {
  15149. name: "Macro",
  15150. height: math.unit(400, "feet")
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15156. {
  15157. front: {
  15158. height: math.unit(4.91, "feet"),
  15159. weight: math.unit(100, "lb"),
  15160. name: "Front",
  15161. image: {
  15162. source: "./media/characters/lily/front.svg",
  15163. extra: 1585 / 1415,
  15164. bottom: 0.02
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(4.91, "feet"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15178. {
  15179. laying: {
  15180. height: math.unit(4 + 4 / 12, "feet"),
  15181. weight: math.unit(600, "lb"),
  15182. name: "Laying",
  15183. image: {
  15184. source: "./media/characters/sheila/laying.svg",
  15185. extra: 1333 / 1265,
  15186. bottom: 0.16
  15187. }
  15188. },
  15189. },
  15190. [
  15191. {
  15192. name: "Normal",
  15193. height: math.unit(4 + 4 / 12, "feet"),
  15194. default: true
  15195. },
  15196. ]
  15197. ))
  15198. characterMakers.push(() => makeCharacter(
  15199. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15200. {
  15201. front: {
  15202. height: math.unit(6, "feet"),
  15203. weight: math.unit(190, "lb"),
  15204. name: "Front",
  15205. image: {
  15206. source: "./media/characters/sax/front.svg",
  15207. extra: 1187 / 973,
  15208. bottom: 0.042
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Micro",
  15215. height: math.unit(4, "inches"),
  15216. default: true
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(6, "feet"),
  15225. weight: math.unit(150, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/pandora/front.svg",
  15229. extra: 2720 / 2556,
  15230. bottom: 0.015
  15231. }
  15232. },
  15233. back: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Back",
  15237. image: {
  15238. source: "./media/characters/pandora/back.svg",
  15239. extra: 2720 / 2556,
  15240. bottom: 0.01
  15241. }
  15242. },
  15243. beans: {
  15244. height: math.unit(6 / 8, "feet"),
  15245. name: "Beans",
  15246. image: {
  15247. source: "./media/characters/pandora/beans.svg"
  15248. }
  15249. },
  15250. skirt: {
  15251. height: math.unit(6, "feet"),
  15252. weight: math.unit(150, "lb"),
  15253. name: "Skirt",
  15254. image: {
  15255. source: "./media/characters/pandora/skirt.svg",
  15256. extra: 1622 / 1525,
  15257. bottom: 0.015
  15258. }
  15259. },
  15260. hoodie: {
  15261. height: math.unit(6, "feet"),
  15262. weight: math.unit(150, "lb"),
  15263. name: "Hoodie",
  15264. image: {
  15265. source: "./media/characters/pandora/hoodie.svg",
  15266. extra: 1622 / 1525,
  15267. bottom: 0.015
  15268. }
  15269. },
  15270. casual: {
  15271. height: math.unit(6, "feet"),
  15272. weight: math.unit(150, "lb"),
  15273. name: "Casual",
  15274. image: {
  15275. source: "./media/characters/pandora/casual.svg",
  15276. extra: 1622 / 1525,
  15277. bottom: 0.015
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(6, "feet")
  15285. },
  15286. {
  15287. name: "Big Steppy",
  15288. height: math.unit(1, "km"),
  15289. default: true
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15295. {
  15296. side: {
  15297. height: math.unit(10, "feet"),
  15298. weight: math.unit(800, "kg"),
  15299. name: "Side",
  15300. image: {
  15301. source: "./media/characters/venio-darcony/side.svg",
  15302. extra: 1373 / 1003,
  15303. bottom: 0.037
  15304. }
  15305. },
  15306. front: {
  15307. height: math.unit(19, "feet"),
  15308. weight: math.unit(800, "kg"),
  15309. name: "Front",
  15310. image: {
  15311. source: "./media/characters/venio-darcony/front.svg"
  15312. }
  15313. },
  15314. back: {
  15315. height: math.unit(19, "feet"),
  15316. weight: math.unit(800, "kg"),
  15317. name: "Back",
  15318. image: {
  15319. source: "./media/characters/venio-darcony/back.svg"
  15320. }
  15321. },
  15322. sideNsfw: {
  15323. height: math.unit(10, "feet"),
  15324. weight: math.unit(800, "kg"),
  15325. name: "Side (NSFW)",
  15326. image: {
  15327. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15328. extra: 1373 / 1003,
  15329. bottom: 0.037
  15330. }
  15331. },
  15332. frontNsfw: {
  15333. height: math.unit(19, "feet"),
  15334. weight: math.unit(800, "kg"),
  15335. name: "Front (NSFW)",
  15336. image: {
  15337. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15338. }
  15339. },
  15340. backNsfw: {
  15341. height: math.unit(19, "feet"),
  15342. weight: math.unit(800, "kg"),
  15343. name: "Back (NSFW)",
  15344. image: {
  15345. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15346. }
  15347. },
  15348. sideArmored: {
  15349. height: math.unit(10, "feet"),
  15350. weight: math.unit(800, "kg"),
  15351. name: "Side (Armored)",
  15352. image: {
  15353. source: "./media/characters/venio-darcony/side-armored.svg",
  15354. extra: 1373 / 1003,
  15355. bottom: 0.037
  15356. }
  15357. },
  15358. frontArmored: {
  15359. height: math.unit(19, "feet"),
  15360. weight: math.unit(900, "kg"),
  15361. name: "Front (Armored)",
  15362. image: {
  15363. source: "./media/characters/venio-darcony/front-armored.svg"
  15364. }
  15365. },
  15366. backArmored: {
  15367. height: math.unit(19, "feet"),
  15368. weight: math.unit(900, "kg"),
  15369. name: "Back (Armored)",
  15370. image: {
  15371. source: "./media/characters/venio-darcony/back-armored.svg"
  15372. }
  15373. },
  15374. sword: {
  15375. height: math.unit(10, "feet"),
  15376. weight: math.unit(50, "lb"),
  15377. name: "Sword",
  15378. image: {
  15379. source: "./media/characters/venio-darcony/sword.svg"
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Normal",
  15386. height: math.unit(10, "feet")
  15387. },
  15388. {
  15389. name: "Macro",
  15390. height: math.unit(130, "feet"),
  15391. default: true
  15392. },
  15393. {
  15394. name: "Macro+",
  15395. height: math.unit(240, "feet")
  15396. },
  15397. ]
  15398. ))
  15399. characterMakers.push(() => makeCharacter(
  15400. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15401. {
  15402. front: {
  15403. height: math.unit(6, "feet"),
  15404. weight: math.unit(150, "lb"),
  15405. name: "Front",
  15406. image: {
  15407. source: "./media/characters/veski/front.svg",
  15408. extra: 1299 / 1225,
  15409. bottom: 0.04
  15410. }
  15411. },
  15412. back: {
  15413. height: math.unit(6, "feet"),
  15414. weight: math.unit(150, "lb"),
  15415. name: "Back",
  15416. image: {
  15417. source: "./media/characters/veski/back.svg",
  15418. extra: 1299 / 1225,
  15419. bottom: 0.008
  15420. }
  15421. },
  15422. maw: {
  15423. height: math.unit(1.5 * 1.21, "feet"),
  15424. name: "Maw",
  15425. image: {
  15426. source: "./media/characters/veski/maw.svg"
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Macro",
  15433. height: math.unit(2, "km"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(5 + 7 / 12, "feet"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/isabelle/front.svg",
  15446. extra: 2130 / 1976,
  15447. bottom: 0.05
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Supermicro",
  15454. height: math.unit(10, "micrometers")
  15455. },
  15456. {
  15457. name: "Micro",
  15458. height: math.unit(1, "inch")
  15459. },
  15460. {
  15461. name: "Tiny",
  15462. height: math.unit(5, "inches")
  15463. },
  15464. {
  15465. name: "Standard",
  15466. height: math.unit(5 + 7 / 12, "inches")
  15467. },
  15468. {
  15469. name: "Macro",
  15470. height: math.unit(80, "meters"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "Megamacro",
  15475. height: math.unit(250, "meters")
  15476. },
  15477. {
  15478. name: "Gigamacro",
  15479. height: math.unit(5, "km")
  15480. },
  15481. {
  15482. name: "Cosmic",
  15483. height: math.unit(2.5e6, "miles")
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15489. {
  15490. front: {
  15491. height: math.unit(6, "feet"),
  15492. weight: math.unit(150, "lb"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/hanzo/front.svg",
  15496. extra: 374 / 344,
  15497. bottom: 0.02
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Normal",
  15504. height: math.unit(8, "feet"),
  15505. default: true
  15506. },
  15507. ]
  15508. ))
  15509. characterMakers.push(() => makeCharacter(
  15510. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15511. {
  15512. front: {
  15513. height: math.unit(7, "feet"),
  15514. weight: math.unit(130, "lb"),
  15515. name: "Front",
  15516. image: {
  15517. source: "./media/characters/anna/front.svg",
  15518. extra: 169 / 145,
  15519. bottom: 0.06
  15520. }
  15521. },
  15522. full: {
  15523. height: math.unit(4.96, "feet"),
  15524. weight: math.unit(220, "lb"),
  15525. name: "Full",
  15526. image: {
  15527. source: "./media/characters/anna/full.svg",
  15528. extra: 138 / 114,
  15529. bottom: 0.15
  15530. }
  15531. },
  15532. tongue: {
  15533. height: math.unit(2.53, "feet"),
  15534. name: "Tongue",
  15535. image: {
  15536. source: "./media/characters/anna/tongue.svg"
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(7, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15550. {
  15551. front: {
  15552. height: math.unit(7, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/ian-corvid/front.svg",
  15557. extra: 150 / 142,
  15558. bottom: 0.02
  15559. }
  15560. },
  15561. back: {
  15562. height: math.unit(7, "feet"),
  15563. weight: math.unit(150, "lb"),
  15564. name: "Back",
  15565. image: {
  15566. source: "./media/characters/ian-corvid/back.svg",
  15567. extra: 150 / 143,
  15568. bottom: 0.01
  15569. }
  15570. },
  15571. stomping: {
  15572. height: math.unit(7, "feet"),
  15573. weight: math.unit(150, "lb"),
  15574. name: "Stomping",
  15575. image: {
  15576. source: "./media/characters/ian-corvid/stomping.svg",
  15577. extra: 76 / 72
  15578. }
  15579. },
  15580. sitting: {
  15581. height: math.unit(7 / 1.8, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Sitting",
  15584. image: {
  15585. source: "./media/characters/ian-corvid/sitting.svg",
  15586. extra: 1400 / 1269,
  15587. bottom: 0.15
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Tiny Microw",
  15594. height: math.unit(1, "inch")
  15595. },
  15596. {
  15597. name: "Microw",
  15598. height: math.unit(6, "inches")
  15599. },
  15600. {
  15601. name: "Crow",
  15602. height: math.unit(7 + 1 / 12, "feet"),
  15603. default: true
  15604. },
  15605. {
  15606. name: "Macrow",
  15607. height: math.unit(176, "feet")
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(5 + 7 / 12, "feet"),
  15616. weight: math.unit(147, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/natalie-kellon/front.svg",
  15620. extra: 1214 / 1141,
  15621. bottom: 0.02
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Micro",
  15628. height: math.unit(1 / 16, "inch")
  15629. },
  15630. {
  15631. name: "Tiny",
  15632. height: math.unit(4, "inches")
  15633. },
  15634. {
  15635. name: "Normal",
  15636. height: math.unit(5 + 7 / 12, "feet"),
  15637. default: true
  15638. },
  15639. {
  15640. name: "Amazon",
  15641. height: math.unit(12, "feet")
  15642. },
  15643. {
  15644. name: "Giantess",
  15645. height: math.unit(160, "meters")
  15646. },
  15647. {
  15648. name: "Titaness",
  15649. height: math.unit(800, "meters")
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(6, "feet"),
  15658. weight: math.unit(150, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/alluria/front.svg",
  15662. extra: 806 / 738,
  15663. bottom: 0.01
  15664. }
  15665. },
  15666. side: {
  15667. height: math.unit(6, "feet"),
  15668. weight: math.unit(150, "lb"),
  15669. name: "Side",
  15670. image: {
  15671. source: "./media/characters/alluria/side.svg",
  15672. extra: 800 / 750,
  15673. }
  15674. },
  15675. back: {
  15676. height: math.unit(6, "feet"),
  15677. weight: math.unit(150, "lb"),
  15678. name: "Back",
  15679. image: {
  15680. source: "./media/characters/alluria/back.svg",
  15681. extra: 806 / 738,
  15682. }
  15683. },
  15684. frontMaid: {
  15685. height: math.unit(6, "feet"),
  15686. weight: math.unit(150, "lb"),
  15687. name: "Front (Maid)",
  15688. image: {
  15689. source: "./media/characters/alluria/front-maid.svg",
  15690. extra: 806 / 738,
  15691. bottom: 0.01
  15692. }
  15693. },
  15694. sideMaid: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(150, "lb"),
  15697. name: "Side (Maid)",
  15698. image: {
  15699. source: "./media/characters/alluria/side-maid.svg",
  15700. extra: 800 / 750,
  15701. bottom: 0.005
  15702. }
  15703. },
  15704. backMaid: {
  15705. height: math.unit(6, "feet"),
  15706. weight: math.unit(150, "lb"),
  15707. name: "Back (Maid)",
  15708. image: {
  15709. source: "./media/characters/alluria/back-maid.svg",
  15710. extra: 806 / 738,
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Micro",
  15717. height: math.unit(6, "inches"),
  15718. default: true
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15724. {
  15725. front: {
  15726. height: math.unit(6, "feet"),
  15727. weight: math.unit(150, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/kyle/front.svg",
  15731. extra: 1069 / 962,
  15732. bottom: 77.228 / 1727.45
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Macro",
  15739. height: math.unit(150, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15746. {
  15747. front: {
  15748. height: math.unit(6, "feet"),
  15749. weight: math.unit(300, "lb"),
  15750. name: "Front",
  15751. image: {
  15752. source: "./media/characters/duncan/front.svg",
  15753. extra: 1650 / 1482,
  15754. bottom: 0.05
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Macro",
  15761. height: math.unit(100, "feet"),
  15762. default: true
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(5 + 4 / 12, "feet"),
  15771. weight: math.unit(220, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/memory/front.svg",
  15775. extra: 3641 / 3545,
  15776. bottom: 0.03
  15777. }
  15778. },
  15779. back: {
  15780. height: math.unit(5 + 4 / 12, "feet"),
  15781. weight: math.unit(220, "lb"),
  15782. name: "Back",
  15783. image: {
  15784. source: "./media/characters/memory/back.svg",
  15785. extra: 3641 / 3545,
  15786. bottom: 0.025
  15787. }
  15788. },
  15789. frontSkirt: {
  15790. height: math.unit(5 + 4 / 12, "feet"),
  15791. weight: math.unit(220, "lb"),
  15792. name: "Front (Skirt)",
  15793. image: {
  15794. source: "./media/characters/memory/front-skirt.svg",
  15795. extra: 3641 / 3545,
  15796. bottom: 0.03
  15797. }
  15798. },
  15799. frontDress: {
  15800. height: math.unit(5 + 4 / 12, "feet"),
  15801. weight: math.unit(220, "lb"),
  15802. name: "Front (Dress)",
  15803. image: {
  15804. source: "./media/characters/memory/front-dress.svg",
  15805. extra: 3641 / 3545,
  15806. bottom: 0.03
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Micro",
  15813. height: math.unit(6, "inches"),
  15814. default: true
  15815. },
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(5 + 4 / 12, "feet")
  15819. },
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(4 + 11 / 12, "feet"),
  15827. weight: math.unit(100, "lb"),
  15828. name: "Front",
  15829. image: {
  15830. source: "./media/characters/luno/front.svg",
  15831. extra: 1535 / 1487,
  15832. bottom: 0.03
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Micro",
  15839. height: math.unit(3, "inches")
  15840. },
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(4 + 11 / 12, "feet"),
  15844. default: true
  15845. },
  15846. {
  15847. name: "Macro",
  15848. height: math.unit(300, "feet")
  15849. },
  15850. {
  15851. name: "Megamacro",
  15852. height: math.unit(700, "miles")
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15858. {
  15859. front: {
  15860. height: math.unit(6 + 2 / 12, "feet"),
  15861. weight: math.unit(170, "lb"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/jamesy/front.svg",
  15865. extra: 440 / 382,
  15866. bottom: 0.005
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Micro",
  15873. height: math.unit(3, "inches")
  15874. },
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(6 + 2 / 12, "feet"),
  15878. default: true
  15879. },
  15880. {
  15881. name: "Macro",
  15882. height: math.unit(300, "feet")
  15883. },
  15884. {
  15885. name: "Megamacro",
  15886. height: math.unit(700, "miles")
  15887. },
  15888. ]
  15889. ))
  15890. characterMakers.push(() => makeCharacter(
  15891. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15892. {
  15893. front: {
  15894. height: math.unit(6, "feet"),
  15895. weight: math.unit(160, "lb"),
  15896. name: "Front",
  15897. image: {
  15898. source: "./media/characters/mark/front.svg",
  15899. extra: 3300 / 3100,
  15900. bottom: 136.42 / 3440.47
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Macro",
  15907. height: math.unit(120, "meters")
  15908. },
  15909. {
  15910. name: "Bigger Macro",
  15911. height: math.unit(350, "meters")
  15912. },
  15913. {
  15914. name: "Megamacro",
  15915. height: math.unit(8, "km"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Continental",
  15920. height: math.unit(4550, "km")
  15921. },
  15922. {
  15923. name: "Planetary",
  15924. height: math.unit(65000, "km")
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(6, "feet"),
  15933. weight: math.unit(400, "lb"),
  15934. name: "Front",
  15935. image: {
  15936. source: "./media/characters/mac/front.svg",
  15937. extra: 1048 / 987.7,
  15938. bottom: 60 / 1107.6,
  15939. }
  15940. },
  15941. },
  15942. [
  15943. {
  15944. name: "Macro",
  15945. height: math.unit(500, "feet"),
  15946. default: true
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15952. {
  15953. front: {
  15954. height: math.unit(5 + 2 / 12, "feet"),
  15955. weight: math.unit(190, "lb"),
  15956. name: "Front",
  15957. image: {
  15958. source: "./media/characters/bari/front.svg",
  15959. extra: 3156 / 2880,
  15960. bottom: 0.03
  15961. }
  15962. },
  15963. back: {
  15964. height: math.unit(5 + 2 / 12, "feet"),
  15965. weight: math.unit(190, "lb"),
  15966. name: "Back",
  15967. image: {
  15968. source: "./media/characters/bari/back.svg",
  15969. extra: 3260 / 2834,
  15970. bottom: 0.025
  15971. }
  15972. },
  15973. frontPlush: {
  15974. height: math.unit(5 + 2 / 12, "feet"),
  15975. weight: math.unit(190, "lb"),
  15976. name: "Front (Plush)",
  15977. image: {
  15978. source: "./media/characters/bari/front-plush.svg",
  15979. extra: 1112 / 1061,
  15980. bottom: 0.002
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Micro",
  15987. height: math.unit(3, "inches")
  15988. },
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(5 + 2 / 12, "feet"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Macro",
  15996. height: math.unit(20, "feet")
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16002. {
  16003. front: {
  16004. height: math.unit(6 + 1 / 12, "feet"),
  16005. weight: math.unit(275, "lb"),
  16006. name: "Front",
  16007. image: {
  16008. source: "./media/characters/hunter-misha-raven/front.svg"
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Mortal",
  16015. height: math.unit(6 + 1 / 12, "feet")
  16016. },
  16017. {
  16018. name: "Divine",
  16019. height: math.unit(1.12134e34, "parsecs"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(6 + 3 / 12, "feet"),
  16029. weight: math.unit(220, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/max-calore/front.svg",
  16033. extra: 1700 / 1648,
  16034. bottom: 0.01
  16035. }
  16036. },
  16037. back: {
  16038. height: math.unit(6 + 3 / 12, "feet"),
  16039. weight: math.unit(220, "lb"),
  16040. name: "Back",
  16041. image: {
  16042. source: "./media/characters/max-calore/back.svg",
  16043. extra: 1700 / 1648,
  16044. bottom: 0.01
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Normal",
  16051. height: math.unit(6 + 3 / 12, "feet"),
  16052. default: true
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16058. {
  16059. side: {
  16060. height: math.unit(2 + 8 / 12, "feet"),
  16061. weight: math.unit(99, "lb"),
  16062. name: "Side",
  16063. image: {
  16064. source: "./media/characters/aspen/side.svg",
  16065. extra: 152 / 138,
  16066. bottom: 0.032
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Normal",
  16073. height: math.unit(2 + 8 / 12, "feet"),
  16074. default: true
  16075. },
  16076. ]
  16077. ))
  16078. characterMakers.push(() => makeCharacter(
  16079. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16080. {
  16081. side: {
  16082. height: math.unit(3 + 2 / 12, "feet"),
  16083. weight: math.unit(224, "lb"),
  16084. name: "Side",
  16085. image: {
  16086. source: "./media/characters/sheila-feral-wolf/side.svg",
  16087. extra: 179 / 166,
  16088. bottom: 0.03
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Normal",
  16095. height: math.unit(3 + 2 / 12, "feet"),
  16096. default: true
  16097. },
  16098. ]
  16099. ))
  16100. characterMakers.push(() => makeCharacter(
  16101. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16102. {
  16103. side: {
  16104. height: math.unit(1 + 9 / 12, "feet"),
  16105. weight: math.unit(38, "lb"),
  16106. name: "Side",
  16107. image: {
  16108. source: "./media/characters/michelle/side.svg",
  16109. extra: 147 / 136.7,
  16110. bottom: 0.03
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Normal",
  16117. height: math.unit(1 + 9 / 12, "feet"),
  16118. default: true
  16119. },
  16120. ]
  16121. ))
  16122. characterMakers.push(() => makeCharacter(
  16123. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16124. {
  16125. front: {
  16126. height: math.unit(1 + 1 / 12, "feet"),
  16127. weight: math.unit(18, "lb"),
  16128. name: "Front",
  16129. image: {
  16130. source: "./media/characters/nino/front.svg"
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Normal",
  16137. height: math.unit(1 + 1 / 12, "feet"),
  16138. default: true
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16144. {
  16145. front: {
  16146. height: math.unit(1, "feet"),
  16147. weight: math.unit(16, "lb"),
  16148. name: "Front",
  16149. image: {
  16150. source: "./media/characters/viola/front.svg"
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(1, "feet"),
  16158. default: true
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6 + 5 / 12, "feet"),
  16167. weight: math.unit(580, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/atlas/front.svg",
  16171. extra: 298.5 / 290,
  16172. bottom: 0.015
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(6 + 5 / 12, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16186. {
  16187. side: {
  16188. height: math.unit(1 + 10 / 12, "feet"),
  16189. weight: math.unit(25, "lb"),
  16190. name: "Side",
  16191. image: {
  16192. source: "./media/characters/davy/side.svg",
  16193. extra: 200 / 170,
  16194. bottom: 0.01
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(1 + 10 / 12, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16208. {
  16209. side: {
  16210. height: math.unit(4 + 8 / 12, "feet"),
  16211. weight: math.unit(166, "lb"),
  16212. name: "Side",
  16213. image: {
  16214. source: "./media/characters/fiona/side.svg",
  16215. extra: 232 / 220,
  16216. bottom: 0.03
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(4 + 8 / 12, "feet"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16230. {
  16231. front: {
  16232. height: math.unit(2, "feet"),
  16233. weight: math.unit(62, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/lyla/front.svg",
  16237. bottom: 0.1
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(2, "feet"),
  16245. default: true
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16251. {
  16252. side: {
  16253. height: math.unit(1.8, "feet"),
  16254. weight: math.unit(44, "lb"),
  16255. name: "Side",
  16256. image: {
  16257. source: "./media/characters/perseus/side.svg",
  16258. bottom: 0.21
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(1.8, "feet"),
  16266. default: true
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16272. {
  16273. side: {
  16274. height: math.unit(4 + 2 / 12, "feet"),
  16275. weight: math.unit(20, "lb"),
  16276. name: "Side",
  16277. image: {
  16278. source: "./media/characters/remus/side.svg"
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(4 + 2 / 12, "feet"),
  16286. default: true
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(4 + 11 / 12, "feet"),
  16295. weight: math.unit(114, "lb"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/raf/front.svg",
  16299. bottom: 20.5 / 1863
  16300. }
  16301. },
  16302. side: {
  16303. height: math.unit(4 + 11 / 12, "feet"),
  16304. weight: math.unit(114, "lb"),
  16305. name: "Side",
  16306. image: {
  16307. source: "./media/characters/raf/side.svg",
  16308. bottom: 22 / 1822
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Micro",
  16315. height: math.unit(2, "inches")
  16316. },
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(4 + 11 / 12, "feet"),
  16320. default: true
  16321. },
  16322. {
  16323. name: "Macro",
  16324. height: math.unit(70, "feet")
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(1.5, "meters"),
  16333. weight: math.unit(68, "kg"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/liam-einarr/front.svg",
  16337. extra: 2822 / 2666
  16338. }
  16339. },
  16340. back: {
  16341. height: math.unit(1.5, "meters"),
  16342. weight: math.unit(68, "kg"),
  16343. name: "Back",
  16344. image: {
  16345. source: "./media/characters/liam-einarr/back.svg",
  16346. extra: 2822 / 2666,
  16347. bottom: 0.015
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Normal",
  16354. height: math.unit(1.5, "meters"),
  16355. default: true
  16356. },
  16357. {
  16358. name: "Macro",
  16359. height: math.unit(150, "meters")
  16360. },
  16361. {
  16362. name: "Megamacro",
  16363. height: math.unit(35, "km")
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16369. {
  16370. front: {
  16371. height: math.unit(6, "feet"),
  16372. weight: math.unit(75, "kg"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/linda/front.svg",
  16376. extra: 930 / 874,
  16377. bottom: 0.004
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Normal",
  16384. height: math.unit(6, "feet"),
  16385. default: true
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(6 + 8 / 12, "feet"),
  16394. weight: math.unit(220, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/caylex/front.svg",
  16398. extra: 821 / 772,
  16399. bottom: 0.07
  16400. }
  16401. },
  16402. back: {
  16403. height: math.unit(6 + 8 / 12, "feet"),
  16404. weight: math.unit(220, "lb"),
  16405. name: "Back",
  16406. image: {
  16407. source: "./media/characters/caylex/back.svg",
  16408. extra: 821 / 772,
  16409. bottom: 0.022
  16410. }
  16411. },
  16412. hand: {
  16413. height: math.unit(1.25, "feet"),
  16414. name: "Hand",
  16415. image: {
  16416. source: "./media/characters/caylex/hand.svg"
  16417. }
  16418. },
  16419. foot: {
  16420. height: math.unit(1.6, "feet"),
  16421. name: "Foot",
  16422. image: {
  16423. source: "./media/characters/caylex/foot.svg"
  16424. }
  16425. },
  16426. armored: {
  16427. height: math.unit(6 + 8 / 12, "feet"),
  16428. weight: math.unit(250, "lb"),
  16429. name: "Armored",
  16430. image: {
  16431. source: "./media/characters/caylex/armored.svg",
  16432. extra: 1420 / 1310,
  16433. bottom: 0.045
  16434. }
  16435. },
  16436. },
  16437. [
  16438. {
  16439. name: "Normal",
  16440. height: math.unit(6 + 8 / 12, "feet"),
  16441. default: true
  16442. },
  16443. {
  16444. name: "Normal+",
  16445. height: math.unit(12, "feet")
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(7 + 6 / 12, "feet"),
  16454. weight: math.unit(288, "lb"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/alana/front.svg",
  16458. extra: 679 / 653,
  16459. bottom: 22.5 / 701
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(7 + 6 / 12, "feet")
  16467. },
  16468. {
  16469. name: "Large",
  16470. height: math.unit(50, "feet")
  16471. },
  16472. {
  16473. name: "Macro",
  16474. height: math.unit(100, "feet"),
  16475. default: true
  16476. },
  16477. {
  16478. name: "Macro+",
  16479. height: math.unit(200, "feet")
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16485. {
  16486. front: {
  16487. height: math.unit(6 + 1 / 12, "feet"),
  16488. weight: math.unit(210, "lb"),
  16489. name: "Front",
  16490. image: {
  16491. source: "./media/characters/hasani/front.svg",
  16492. extra: 244 / 232,
  16493. bottom: 0.01
  16494. }
  16495. },
  16496. back: {
  16497. height: math.unit(6 + 1 / 12, "feet"),
  16498. weight: math.unit(210, "lb"),
  16499. name: "Back",
  16500. image: {
  16501. source: "./media/characters/hasani/back.svg",
  16502. extra: 244 / 232,
  16503. bottom: 0.01
  16504. }
  16505. },
  16506. },
  16507. [
  16508. {
  16509. name: "Normal",
  16510. height: math.unit(6 + 1 / 12, "feet")
  16511. },
  16512. {
  16513. name: "Macro",
  16514. height: math.unit(175, "feet"),
  16515. default: true
  16516. },
  16517. ]
  16518. ))
  16519. characterMakers.push(() => makeCharacter(
  16520. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16521. {
  16522. front: {
  16523. height: math.unit(1.82, "meters"),
  16524. weight: math.unit(140, "lb"),
  16525. name: "Front",
  16526. image: {
  16527. source: "./media/characters/nita/front.svg",
  16528. extra: 2473 / 2363,
  16529. bottom: 0.01
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(1.82, "m")
  16537. },
  16538. {
  16539. name: "Macro",
  16540. height: math.unit(300, "m")
  16541. },
  16542. {
  16543. name: "Mistake Canon",
  16544. height: math.unit(0.5, "miles"),
  16545. default: true
  16546. },
  16547. {
  16548. name: "Big Mistake",
  16549. height: math.unit(13, "miles")
  16550. },
  16551. {
  16552. name: "Playing God",
  16553. height: math.unit(2450, "miles")
  16554. },
  16555. ]
  16556. ))
  16557. characterMakers.push(() => makeCharacter(
  16558. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16559. {
  16560. front: {
  16561. height: math.unit(4, "feet"),
  16562. weight: math.unit(120, "lb"),
  16563. name: "Front",
  16564. image: {
  16565. source: "./media/characters/shiriko/front.svg",
  16566. extra: 195 / 188
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(4, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16580. {
  16581. front: {
  16582. height: math.unit(6, "feet"),
  16583. name: "front",
  16584. image: {
  16585. source: "./media/characters/deja/front.svg",
  16586. extra: 926 / 840,
  16587. bottom: 0.07
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Planck Length",
  16594. height: math.unit(1.6e-35, "meters")
  16595. },
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(30.48, "meters"),
  16599. default: true
  16600. },
  16601. {
  16602. name: "Universal",
  16603. height: math.unit(8.8e26, "meters")
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16609. {
  16610. side: {
  16611. height: math.unit(8, "feet"),
  16612. weight: math.unit(6300, "lb"),
  16613. name: "Side",
  16614. image: {
  16615. source: "./media/characters/anima/side.svg",
  16616. bottom: 0.035
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(8, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(8, "feet"),
  16633. weight: math.unit(350, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/bianca/front.svg",
  16637. extra: 234 / 225,
  16638. bottom: 0.03
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(8, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(6, "feet"),
  16655. weight: math.unit(150, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/adinia/front.svg",
  16659. extra: 1845 / 1672,
  16660. bottom: 0.02
  16661. }
  16662. },
  16663. back: {
  16664. height: math.unit(6, "feet"),
  16665. weight: math.unit(150, "lb"),
  16666. name: "Back",
  16667. image: {
  16668. source: "./media/characters/adinia/back.svg",
  16669. extra: 1845 / 1672,
  16670. bottom: 0.002
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(11 + 5 / 12, "feet"),
  16678. default: true
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16684. {
  16685. front: {
  16686. height: math.unit(3, "meters"),
  16687. weight: math.unit(200, "kg"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/lykasa/front.svg",
  16691. extra: 1076 / 976,
  16692. bottom: 0.06
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Normal",
  16699. height: math.unit(3, "meters")
  16700. },
  16701. {
  16702. name: "Kaiju",
  16703. height: math.unit(120, "meters"),
  16704. default: true
  16705. },
  16706. {
  16707. name: "Mega Kaiju",
  16708. height: math.unit(240, "km")
  16709. },
  16710. {
  16711. name: "Giga Kaiju",
  16712. height: math.unit(400, "megameters")
  16713. },
  16714. {
  16715. name: "Tera Kaiju",
  16716. height: math.unit(800, "gigameters")
  16717. },
  16718. {
  16719. name: "Kaiju Dragon Goddess",
  16720. height: math.unit(26, "zettaparsecs")
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16726. {
  16727. side: {
  16728. height: math.unit(283 / 124 * 6, "feet"),
  16729. weight: math.unit(35000, "lb"),
  16730. name: "Side",
  16731. image: {
  16732. source: "./media/characters/malfaren/side.svg",
  16733. extra: 2500 / 1010,
  16734. bottom: 0.01
  16735. }
  16736. },
  16737. front: {
  16738. height: math.unit(22.36, "feet"),
  16739. weight: math.unit(35000, "lb"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/malfaren/front.svg",
  16743. extra: 1631 / 1476,
  16744. bottom: 0.01
  16745. }
  16746. },
  16747. maw: {
  16748. height: math.unit(6.9, "feet"),
  16749. name: "Maw",
  16750. image: {
  16751. source: "./media/characters/malfaren/maw.svg"
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Big",
  16758. height: math.unit(283 / 162 * 6, "feet"),
  16759. },
  16760. {
  16761. name: "Bigger",
  16762. height: math.unit(283 / 124 * 6, "feet")
  16763. },
  16764. {
  16765. name: "Massive",
  16766. height: math.unit(283 / 92 * 6, "feet"),
  16767. default: true
  16768. },
  16769. {
  16770. name: "👀💦",
  16771. height: math.unit(283 / 73 * 6, "feet"),
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(1.7, "m"),
  16780. weight: math.unit(70, "kg"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/kernel/front.svg",
  16784. extra: 222 / 210,
  16785. bottom: 0.007
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Nano",
  16792. height: math.unit(17, "micrometers")
  16793. },
  16794. {
  16795. name: "Micro",
  16796. height: math.unit(1.7, "mm")
  16797. },
  16798. {
  16799. name: "Small",
  16800. height: math.unit(1.7, "cm")
  16801. },
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(1.7, "m"),
  16805. default: true
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16811. {
  16812. front: {
  16813. height: math.unit(1.75, "meters"),
  16814. weight: math.unit(65, "kg"),
  16815. name: "Front",
  16816. image: {
  16817. source: "./media/characters/jayne-folest/front.svg",
  16818. extra: 2115 / 2007,
  16819. bottom: 0.02
  16820. }
  16821. },
  16822. back: {
  16823. height: math.unit(1.75, "meters"),
  16824. weight: math.unit(65, "kg"),
  16825. name: "Back",
  16826. image: {
  16827. source: "./media/characters/jayne-folest/back.svg",
  16828. extra: 2115 / 2007,
  16829. bottom: 0.005
  16830. }
  16831. },
  16832. frontClothed: {
  16833. height: math.unit(1.75, "meters"),
  16834. weight: math.unit(65, "kg"),
  16835. name: "Front (Clothed)",
  16836. image: {
  16837. source: "./media/characters/jayne-folest/front-clothed.svg",
  16838. extra: 2115 / 2007,
  16839. bottom: 0.035
  16840. }
  16841. },
  16842. hand: {
  16843. height: math.unit(1 / 1.260, "feet"),
  16844. name: "Hand",
  16845. image: {
  16846. source: "./media/characters/jayne-folest/hand.svg"
  16847. }
  16848. },
  16849. foot: {
  16850. height: math.unit(1 / 0.918, "feet"),
  16851. name: "Foot",
  16852. image: {
  16853. source: "./media/characters/jayne-folest/foot.svg"
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Micro",
  16860. height: math.unit(4, "cm")
  16861. },
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(1.75, "meters")
  16865. },
  16866. {
  16867. name: "Macro",
  16868. height: math.unit(47.5, "meters"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(180, "cm"),
  16878. weight: math.unit(70, "kg"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/algier/front.svg",
  16882. extra: 596 / 572,
  16883. bottom: 0.04
  16884. }
  16885. },
  16886. back: {
  16887. height: math.unit(180, "cm"),
  16888. weight: math.unit(70, "kg"),
  16889. name: "Back",
  16890. image: {
  16891. source: "./media/characters/algier/back.svg",
  16892. extra: 596 / 572,
  16893. bottom: 0.025
  16894. }
  16895. },
  16896. frontdressed: {
  16897. height: math.unit(180, "cm"),
  16898. weight: math.unit(150, "kg"),
  16899. name: "Front-dressed",
  16900. image: {
  16901. source: "./media/characters/algier/front-dressed.svg",
  16902. extra: 596 / 572,
  16903. bottom: 0.038
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Micro",
  16910. height: math.unit(5, "cm")
  16911. },
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(180, "cm"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Macro",
  16919. height: math.unit(64, "m")
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16925. {
  16926. upright: {
  16927. height: math.unit(7, "feet"),
  16928. weight: math.unit(300, "lb"),
  16929. name: "Upright",
  16930. image: {
  16931. source: "./media/characters/pretzel/upright.svg",
  16932. extra: 534 / 522,
  16933. bottom: 0.065
  16934. }
  16935. },
  16936. sprawling: {
  16937. height: math.unit(3.75, "feet"),
  16938. weight: math.unit(300, "lb"),
  16939. name: "Sprawling",
  16940. image: {
  16941. source: "./media/characters/pretzel/sprawling.svg",
  16942. extra: 314 / 281,
  16943. bottom: 0.1
  16944. }
  16945. },
  16946. tongue: {
  16947. height: math.unit(2, "feet"),
  16948. name: "Tongue",
  16949. image: {
  16950. source: "./media/characters/pretzel/tongue.svg"
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Normal",
  16957. height: math.unit(7, "feet"),
  16958. default: true
  16959. },
  16960. {
  16961. name: "Oversized",
  16962. height: math.unit(15, "feet")
  16963. },
  16964. {
  16965. name: "Huge",
  16966. height: math.unit(30, "feet")
  16967. },
  16968. {
  16969. name: "Macro",
  16970. height: math.unit(250, "feet")
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16976. {
  16977. sideFront: {
  16978. height: math.unit(5 + 2 / 12, "feet"),
  16979. weight: math.unit(120, "lb"),
  16980. name: "Front Side",
  16981. image: {
  16982. source: "./media/characters/roxi/side-front.svg",
  16983. extra: 2924 / 2717,
  16984. bottom: 0.08
  16985. }
  16986. },
  16987. sideBack: {
  16988. height: math.unit(5 + 2 / 12, "feet"),
  16989. weight: math.unit(120, "lb"),
  16990. name: "Back Side",
  16991. image: {
  16992. source: "./media/characters/roxi/side-back.svg",
  16993. extra: 2904 / 2693,
  16994. bottom: 0.06
  16995. }
  16996. },
  16997. front: {
  16998. height: math.unit(5 + 2 / 12, "feet"),
  16999. weight: math.unit(120, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/roxi/front.svg",
  17003. extra: 2028 / 1907,
  17004. bottom: 0.01
  17005. }
  17006. },
  17007. frontAlt: {
  17008. height: math.unit(5 + 2 / 12, "feet"),
  17009. weight: math.unit(120, "lb"),
  17010. name: "Front (Alt)",
  17011. image: {
  17012. source: "./media/characters/roxi/front-alt.svg",
  17013. extra: 1828 / 1798,
  17014. bottom: 0.01
  17015. }
  17016. },
  17017. sitting: {
  17018. height: math.unit(2.8, "feet"),
  17019. weight: math.unit(120, "lb"),
  17020. name: "Sitting",
  17021. image: {
  17022. source: "./media/characters/roxi/sitting.svg",
  17023. extra: 2660 / 2462,
  17024. bottom: 0.1
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(5 + 2 / 12, "feet"),
  17032. default: true
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17038. {
  17039. side: {
  17040. height: math.unit(55, "feet"),
  17041. weight: math.unit(153, "tons"),
  17042. name: "Side",
  17043. image: {
  17044. source: "./media/characters/shadow/side.svg",
  17045. extra: 701 / 628,
  17046. bottom: 0.02
  17047. }
  17048. },
  17049. flying: {
  17050. height: math.unit(145, "feet"),
  17051. weight: math.unit(153, "tons"),
  17052. name: "Flying",
  17053. image: {
  17054. source: "./media/characters/shadow/flying.svg"
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(55, "feet"),
  17062. default: true
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17068. {
  17069. front: {
  17070. height: math.unit(6, "feet"),
  17071. weight: math.unit(200, "lb"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/marcie/front.svg",
  17075. extra: 960 / 876,
  17076. bottom: 58 / 1017.87
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Macro",
  17083. height: math.unit(1, "mile"),
  17084. default: true
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17090. {
  17091. front: {
  17092. height: math.unit(7, "feet"),
  17093. weight: math.unit(200, "lb"),
  17094. name: "Front",
  17095. image: {
  17096. source: "./media/characters/kachina/front.svg",
  17097. extra: 1290.68 / 1119,
  17098. bottom: 36.5 / 1327.18
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(7, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17112. {
  17113. looking: {
  17114. height: math.unit(2, "meters"),
  17115. weight: math.unit(300, "kg"),
  17116. name: "Looking",
  17117. image: {
  17118. source: "./media/characters/kash/looking.svg",
  17119. extra: 474 / 344,
  17120. bottom: 0.03
  17121. }
  17122. },
  17123. side: {
  17124. height: math.unit(2, "meters"),
  17125. weight: math.unit(300, "kg"),
  17126. name: "Side",
  17127. image: {
  17128. source: "./media/characters/kash/side.svg",
  17129. extra: 302 / 251,
  17130. bottom: 0.03
  17131. }
  17132. },
  17133. front: {
  17134. height: math.unit(2, "meters"),
  17135. weight: math.unit(300, "kg"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/kash/front.svg",
  17139. extra: 495 / 360,
  17140. bottom: 0.015
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(2, "meters"),
  17148. default: true
  17149. },
  17150. {
  17151. name: "Big",
  17152. height: math.unit(3, "meters")
  17153. },
  17154. {
  17155. name: "Large",
  17156. height: math.unit(5, "meters")
  17157. },
  17158. ]
  17159. ))
  17160. characterMakers.push(() => makeCharacter(
  17161. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17162. {
  17163. feeding: {
  17164. height: math.unit(6.7, "feet"),
  17165. weight: math.unit(350, "lb"),
  17166. name: "Feeding",
  17167. image: {
  17168. source: "./media/characters/lalim/feeding.svg",
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(6.7, "feet"),
  17176. default: true
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(9.5, "feet"),
  17185. weight: math.unit(600, "lb"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/de'vout/front.svg",
  17189. extra: 1443 / 1328,
  17190. bottom: 0.025
  17191. }
  17192. },
  17193. back: {
  17194. height: math.unit(9.5, "feet"),
  17195. weight: math.unit(600, "lb"),
  17196. name: "Back",
  17197. image: {
  17198. source: "./media/characters/de'vout/back.svg",
  17199. extra: 1443 / 1328
  17200. }
  17201. },
  17202. frontDressed: {
  17203. height: math.unit(9.5, "feet"),
  17204. weight: math.unit(600, "lb"),
  17205. name: "Front (Dressed",
  17206. image: {
  17207. source: "./media/characters/de'vout/front-dressed.svg",
  17208. extra: 1443 / 1328,
  17209. bottom: 0.025
  17210. }
  17211. },
  17212. backDressed: {
  17213. height: math.unit(9.5, "feet"),
  17214. weight: math.unit(600, "lb"),
  17215. name: "Back (Dressed",
  17216. image: {
  17217. source: "./media/characters/de'vout/back-dressed.svg",
  17218. extra: 1443 / 1328
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(9.5, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17232. {
  17233. front: {
  17234. height: math.unit(8, "feet"),
  17235. weight: math.unit(225, "lb"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/talana/front.svg",
  17239. extra: 1410 / 1300,
  17240. bottom: 0.015
  17241. }
  17242. },
  17243. frontDressed: {
  17244. height: math.unit(8, "feet"),
  17245. weight: math.unit(225, "lb"),
  17246. name: "Front (Dressed",
  17247. image: {
  17248. source: "./media/characters/talana/front-dressed.svg",
  17249. extra: 1410 / 1300,
  17250. bottom: 0.015
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(8, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17264. {
  17265. side: {
  17266. height: math.unit(7.2, "feet"),
  17267. weight: math.unit(150, "lb"),
  17268. name: "Side",
  17269. image: {
  17270. source: "./media/characters/xeauvok/side.svg",
  17271. extra: 1975 / 1523,
  17272. bottom: 0.07
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(7.2, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17286. {
  17287. side: {
  17288. height: math.unit(10, "feet"),
  17289. weight: math.unit(900, "kg"),
  17290. name: "Side",
  17291. image: {
  17292. source: "./media/characters/zara/side.svg",
  17293. extra: 504 / 498
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(10, "feet"),
  17301. default: true
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17307. {
  17308. side: {
  17309. height: math.unit(6, "feet"),
  17310. weight: math.unit(150, "lb"),
  17311. name: "Side",
  17312. image: {
  17313. source: "./media/characters/richard-dragon/side.svg",
  17314. extra: 845 / 340,
  17315. bottom: 0.017
  17316. }
  17317. },
  17318. maw: {
  17319. height: math.unit(2.97, "feet"),
  17320. name: "Maw",
  17321. image: {
  17322. source: "./media/characters/richard-dragon/maw.svg"
  17323. }
  17324. },
  17325. },
  17326. [
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17331. {
  17332. front: {
  17333. height: math.unit(4, "feet"),
  17334. weight: math.unit(100, "lb"),
  17335. name: "Front",
  17336. image: {
  17337. source: "./media/characters/richard-smeargle/front.svg",
  17338. extra: 2952 / 2820,
  17339. bottom: 0.028
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(4, "feet"),
  17347. default: true
  17348. },
  17349. {
  17350. name: "Dynamax",
  17351. height: math.unit(20, "meters")
  17352. },
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17357. {
  17358. front: {
  17359. height: math.unit(6, "feet"),
  17360. weight: math.unit(110, "lb"),
  17361. name: "Front",
  17362. image: {
  17363. source: "./media/characters/klay/front.svg",
  17364. extra: 962 / 883,
  17365. bottom: 0.04
  17366. }
  17367. },
  17368. back: {
  17369. height: math.unit(6, "feet"),
  17370. weight: math.unit(110, "lb"),
  17371. name: "Back",
  17372. image: {
  17373. source: "./media/characters/klay/back.svg",
  17374. extra: 962 / 883
  17375. }
  17376. },
  17377. beans: {
  17378. height: math.unit(1.15, "feet"),
  17379. name: "Beans",
  17380. image: {
  17381. source: "./media/characters/klay/beans.svg"
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Micro",
  17388. height: math.unit(6, "inches")
  17389. },
  17390. {
  17391. name: "Mini",
  17392. height: math.unit(3, "feet")
  17393. },
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(6, "feet"),
  17397. default: true
  17398. },
  17399. {
  17400. name: "Big",
  17401. height: math.unit(25, "feet")
  17402. },
  17403. {
  17404. name: "Macro",
  17405. height: math.unit(100, "feet")
  17406. },
  17407. {
  17408. name: "Megamacro",
  17409. height: math.unit(400, "feet")
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(6, "feet"),
  17418. weight: math.unit(160, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/marcus/front.svg",
  17422. extra: 734 / 676,
  17423. bottom: 0.03
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Little",
  17430. height: math.unit(6, "feet")
  17431. },
  17432. {
  17433. name: "Normal",
  17434. height: math.unit(110, "feet"),
  17435. default: true
  17436. },
  17437. {
  17438. name: "Macro",
  17439. height: math.unit(250, "feet")
  17440. },
  17441. {
  17442. name: "Megamacro",
  17443. height: math.unit(1000, "feet")
  17444. },
  17445. ]
  17446. ))
  17447. characterMakers.push(() => makeCharacter(
  17448. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17449. {
  17450. front: {
  17451. height: math.unit(7, "feet"),
  17452. weight: math.unit(275, "lb"),
  17453. name: "Front",
  17454. image: {
  17455. source: "./media/characters/claude-delroute/front.svg",
  17456. extra: 230 / 214,
  17457. bottom: 0.007
  17458. }
  17459. },
  17460. side: {
  17461. height: math.unit(7, "feet"),
  17462. weight: math.unit(275, "lb"),
  17463. name: "Side",
  17464. image: {
  17465. source: "./media/characters/claude-delroute/side.svg",
  17466. extra: 222 / 214,
  17467. bottom: 0.01
  17468. }
  17469. },
  17470. back: {
  17471. height: math.unit(7, "feet"),
  17472. weight: math.unit(275, "lb"),
  17473. name: "Back",
  17474. image: {
  17475. source: "./media/characters/claude-delroute/back.svg",
  17476. extra: 230 / 214,
  17477. bottom: 0.015
  17478. }
  17479. },
  17480. maw: {
  17481. height: math.unit(0.6407, "meters"),
  17482. name: "Maw",
  17483. image: {
  17484. source: "./media/characters/claude-delroute/maw.svg"
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Normal",
  17491. height: math.unit(7, "feet"),
  17492. default: true
  17493. },
  17494. {
  17495. name: "Lorge",
  17496. height: math.unit(20, "feet")
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17502. {
  17503. front: {
  17504. height: math.unit(8 + 4 / 12, "feet"),
  17505. weight: math.unit(600, "lb"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/dragonien/front.svg",
  17509. extra: 100 / 94,
  17510. bottom: 3.3 / 103.3445
  17511. }
  17512. },
  17513. back: {
  17514. height: math.unit(8 + 4 / 12, "feet"),
  17515. weight: math.unit(600, "lb"),
  17516. name: "Back",
  17517. image: {
  17518. source: "./media/characters/dragonien/back.svg",
  17519. extra: 776 / 746,
  17520. bottom: 6.4 / 782.0616
  17521. }
  17522. },
  17523. foot: {
  17524. height: math.unit(1.54, "feet"),
  17525. name: "Foot",
  17526. image: {
  17527. source: "./media/characters/dragonien/foot.svg",
  17528. }
  17529. },
  17530. },
  17531. [
  17532. {
  17533. name: "Normal",
  17534. height: math.unit(8 + 4 / 12, "feet"),
  17535. default: true
  17536. },
  17537. {
  17538. name: "Macro",
  17539. height: math.unit(200, "feet")
  17540. },
  17541. {
  17542. name: "Megamacro",
  17543. height: math.unit(1, "mile")
  17544. },
  17545. {
  17546. name: "Gigamacro",
  17547. height: math.unit(1000, "miles")
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17553. {
  17554. front: {
  17555. height: math.unit(5 + 2 / 12, "feet"),
  17556. weight: math.unit(110, "lb"),
  17557. name: "Front",
  17558. image: {
  17559. source: "./media/characters/desta/front.svg",
  17560. extra: 767 / 726,
  17561. bottom: 11.7 / 779
  17562. }
  17563. },
  17564. back: {
  17565. height: math.unit(5 + 2 / 12, "feet"),
  17566. weight: math.unit(110, "lb"),
  17567. name: "Back",
  17568. image: {
  17569. source: "./media/characters/desta/back.svg",
  17570. extra: 777 / 728,
  17571. bottom: 6 / 784
  17572. }
  17573. },
  17574. frontAlt: {
  17575. height: math.unit(5 + 2 / 12, "feet"),
  17576. weight: math.unit(110, "lb"),
  17577. name: "Front",
  17578. image: {
  17579. source: "./media/characters/desta/front-alt.svg",
  17580. extra: 1482 / 1417
  17581. }
  17582. },
  17583. side: {
  17584. height: math.unit(5 + 2 / 12, "feet"),
  17585. weight: math.unit(110, "lb"),
  17586. name: "Side",
  17587. image: {
  17588. source: "./media/characters/desta/side.svg",
  17589. extra: 2579 / 2491,
  17590. bottom: 0.053
  17591. }
  17592. },
  17593. },
  17594. [
  17595. {
  17596. name: "Micro",
  17597. height: math.unit(6, "inches")
  17598. },
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(5 + 2 / 12, "feet"),
  17602. default: true
  17603. },
  17604. {
  17605. name: "Macro",
  17606. height: math.unit(62, "feet")
  17607. },
  17608. {
  17609. name: "Megamacro",
  17610. height: math.unit(1800, "feet")
  17611. },
  17612. ]
  17613. ))
  17614. characterMakers.push(() => makeCharacter(
  17615. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17616. {
  17617. front: {
  17618. height: math.unit(10, "feet"),
  17619. weight: math.unit(700, "lb"),
  17620. name: "Front",
  17621. image: {
  17622. source: "./media/characters/storm-alystar/front.svg",
  17623. extra: 2112 / 1898,
  17624. bottom: 0.034
  17625. }
  17626. },
  17627. },
  17628. [
  17629. {
  17630. name: "Micro",
  17631. height: math.unit(3.5, "inches")
  17632. },
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(10, "feet"),
  17636. default: true
  17637. },
  17638. {
  17639. name: "Macro",
  17640. height: math.unit(400, "feet")
  17641. },
  17642. {
  17643. name: "Deific",
  17644. height: math.unit(60, "miles")
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17650. {
  17651. front: {
  17652. height: math.unit(2.35, "meters"),
  17653. weight: math.unit(119, "kg"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/ilia/front.svg",
  17657. extra: 1285 / 1255,
  17658. bottom: 0.06
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(2.35, "meters")
  17666. },
  17667. {
  17668. name: "Macro",
  17669. height: math.unit(140, "meters"),
  17670. default: true
  17671. },
  17672. {
  17673. name: "Megamacro",
  17674. height: math.unit(100, "miles")
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17680. {
  17681. front: {
  17682. height: math.unit(6 + 5 / 12, "feet"),
  17683. weight: math.unit(190, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/kingdead/front.svg",
  17687. extra: 1228 / 1177
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Micro",
  17694. height: math.unit(7, "inches")
  17695. },
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(6 + 5 / 12, "feet")
  17699. },
  17700. {
  17701. name: "Macro",
  17702. height: math.unit(150, "feet"),
  17703. default: true
  17704. },
  17705. {
  17706. name: "Megamacro",
  17707. height: math.unit(200, "miles")
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17713. {
  17714. front: {
  17715. height: math.unit(8, "feet"),
  17716. weight: math.unit(600, "lb"),
  17717. name: "Front",
  17718. image: {
  17719. source: "./media/characters/kyrehx/front.svg",
  17720. extra: 1195 / 1095,
  17721. bottom: 0.034
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Micro",
  17728. height: math.unit(2, "inches")
  17729. },
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(8, "feet"),
  17733. default: true
  17734. },
  17735. {
  17736. name: "Macro",
  17737. height: math.unit(255, "feet")
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17743. {
  17744. front: {
  17745. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17746. weight: math.unit(184, "lb"),
  17747. name: "Front",
  17748. image: {
  17749. source: "./media/characters/xang/front.svg",
  17750. extra: 845 / 755
  17751. }
  17752. },
  17753. },
  17754. [
  17755. {
  17756. name: "Normal",
  17757. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17758. default: true
  17759. },
  17760. {
  17761. name: "Macro",
  17762. height: math.unit(0.935 * 146, "feet")
  17763. },
  17764. {
  17765. name: "Megamacro",
  17766. height: math.unit(0.935 * 3, "miles")
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17772. {
  17773. frontDressed: {
  17774. height: math.unit(5 + 7 / 12, "feet"),
  17775. weight: math.unit(140, "lb"),
  17776. name: "Front (Dressed)",
  17777. image: {
  17778. source: "./media/characters/doc-weardno/front-dressed.svg",
  17779. extra: 263 / 234
  17780. }
  17781. },
  17782. backDressed: {
  17783. height: math.unit(5 + 7 / 12, "feet"),
  17784. weight: math.unit(140, "lb"),
  17785. name: "Back (Dressed)",
  17786. image: {
  17787. source: "./media/characters/doc-weardno/back-dressed.svg",
  17788. extra: 266 / 238
  17789. }
  17790. },
  17791. front: {
  17792. height: math.unit(5 + 7 / 12, "feet"),
  17793. weight: math.unit(140, "lb"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/doc-weardno/front.svg",
  17797. extra: 254 / 233
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Micro",
  17804. height: math.unit(3, "inches")
  17805. },
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(5 + 7 / 12, "feet"),
  17809. default: true
  17810. },
  17811. {
  17812. name: "Macro",
  17813. height: math.unit(25, "feet")
  17814. },
  17815. {
  17816. name: "Megamacro",
  17817. height: math.unit(2, "miles")
  17818. },
  17819. ]
  17820. ))
  17821. characterMakers.push(() => makeCharacter(
  17822. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17823. {
  17824. front: {
  17825. height: math.unit(6 + 2 / 12, "feet"),
  17826. weight: math.unit(153, "lb"),
  17827. name: "Front",
  17828. image: {
  17829. source: "./media/characters/seth-whilst/front.svg",
  17830. bottom: 0.07
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Micro",
  17837. height: math.unit(5, "inches")
  17838. },
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(6 + 2 / 12, "feet"),
  17842. default: true
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(3, "inches"),
  17851. weight: math.unit(8, "grams"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/pocket-jabari/front.svg",
  17855. extra: 1024 / 974,
  17856. bottom: 0.039
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Minimicro",
  17863. height: math.unit(8, "mm")
  17864. },
  17865. {
  17866. name: "Micro",
  17867. height: math.unit(3, "inches"),
  17868. default: true
  17869. },
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(3, "feet")
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(15, "feet"),
  17881. weight: math.unit(3280, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/sapphy/front.svg",
  17885. extra: 671 / 577,
  17886. bottom: 0.085
  17887. }
  17888. },
  17889. back: {
  17890. height: math.unit(15, "feet"),
  17891. weight: math.unit(3280, "lb"),
  17892. name: "Back",
  17893. image: {
  17894. source: "./media/characters/sapphy/back.svg",
  17895. extra: 631 / 607,
  17896. bottom: 0.045
  17897. }
  17898. },
  17899. },
  17900. [
  17901. {
  17902. name: "Normal",
  17903. height: math.unit(15, "feet")
  17904. },
  17905. {
  17906. name: "Casual Macro",
  17907. height: math.unit(120, "feet")
  17908. },
  17909. {
  17910. name: "Macro",
  17911. height: math.unit(2150, "feet"),
  17912. default: true
  17913. },
  17914. {
  17915. name: "Megamacro",
  17916. height: math.unit(8, "miles")
  17917. },
  17918. {
  17919. name: "Galaxy Mom",
  17920. height: math.unit(6, "megalightyears")
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(6, "feet"),
  17929. weight: math.unit(170, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/kiro/front.svg",
  17933. extra: 1064 / 1012,
  17934. bottom: 0.052
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Micro",
  17941. height: math.unit(6, "inches")
  17942. },
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(6, "feet"),
  17946. default: true
  17947. },
  17948. {
  17949. name: "Macro",
  17950. height: math.unit(72, "feet")
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(5 + 9 / 12, "feet"),
  17959. weight: math.unit(175, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/irishfox/front.svg",
  17963. extra: 1912 / 1680,
  17964. bottom: 0.02
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Nano",
  17971. height: math.unit(1, "mm")
  17972. },
  17973. {
  17974. name: "Micro",
  17975. height: math.unit(2, "inches")
  17976. },
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(5 + 9 / 12, "feet"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Macro",
  17984. height: math.unit(45, "feet")
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17990. {
  17991. front: {
  17992. height: math.unit(6 + 1 / 12, "feet"),
  17993. weight: math.unit(150, "lb"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/aronai-sieyes/front.svg",
  17997. extra: 1556 / 1480,
  17998. bottom: 0.015
  17999. }
  18000. },
  18001. side: {
  18002. height: math.unit(6 + 1 / 12, "feet"),
  18003. weight: math.unit(150, "lb"),
  18004. name: "Side",
  18005. image: {
  18006. source: "./media/characters/aronai-sieyes/side.svg",
  18007. extra: 1433 / 1390,
  18008. bottom: 0.0393
  18009. }
  18010. },
  18011. back: {
  18012. height: math.unit(6 + 1 / 12, "feet"),
  18013. weight: math.unit(150, "lb"),
  18014. name: "Back",
  18015. image: {
  18016. source: "./media/characters/aronai-sieyes/back.svg",
  18017. extra: 1544 / 1494,
  18018. bottom: 0.02
  18019. }
  18020. },
  18021. frontClothed: {
  18022. height: math.unit(6 + 1 / 12, "feet"),
  18023. weight: math.unit(150, "lb"),
  18024. name: "Front (Clothed)",
  18025. image: {
  18026. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18027. extra: 1582 / 1527
  18028. }
  18029. },
  18030. feral: {
  18031. height: math.unit(18, "feet"),
  18032. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18033. name: "Feral",
  18034. image: {
  18035. source: "./media/characters/aronai-sieyes/feral.svg",
  18036. extra: 1530 / 1240,
  18037. bottom: 0.035
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Micro",
  18044. height: math.unit(2, "inches")
  18045. },
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(6 + 1 / 12, "feet"),
  18049. default: true
  18050. }
  18051. ]
  18052. ))
  18053. characterMakers.push(() => makeCharacter(
  18054. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18055. {
  18056. front: {
  18057. height: math.unit(12, "feet"),
  18058. weight: math.unit(410, "kg"),
  18059. name: "Front",
  18060. image: {
  18061. source: "./media/characters/xuna/front.svg",
  18062. extra: 2184 / 1980
  18063. }
  18064. },
  18065. side: {
  18066. height: math.unit(12, "feet"),
  18067. weight: math.unit(410, "kg"),
  18068. name: "Side",
  18069. image: {
  18070. source: "./media/characters/xuna/side.svg",
  18071. extra: 2184 / 1980
  18072. }
  18073. },
  18074. back: {
  18075. height: math.unit(12, "feet"),
  18076. weight: math.unit(410, "kg"),
  18077. name: "Back",
  18078. image: {
  18079. source: "./media/characters/xuna/back.svg",
  18080. extra: 2184 / 1980
  18081. }
  18082. },
  18083. },
  18084. [
  18085. {
  18086. name: "Nano glow",
  18087. height: math.unit(10, "nm")
  18088. },
  18089. {
  18090. name: "Micro floof",
  18091. height: math.unit(0.3, "m")
  18092. },
  18093. {
  18094. name: "Huggable softy boi",
  18095. height: math.unit(3.6576, "m"),
  18096. default: true
  18097. },
  18098. {
  18099. name: "Admirable floof",
  18100. height: math.unit(80, "meters")
  18101. },
  18102. {
  18103. name: "Gentle macro",
  18104. height: math.unit(300, "meters")
  18105. },
  18106. {
  18107. name: "Very careful floof",
  18108. height: math.unit(3200, "meters")
  18109. },
  18110. {
  18111. name: "The mega floof",
  18112. height: math.unit(36000, "meters")
  18113. },
  18114. {
  18115. name: "Giga-fur-Wicker",
  18116. height: math.unit(4800000, "meters")
  18117. },
  18118. {
  18119. name: "Licky world",
  18120. height: math.unit(20000000, "meters")
  18121. },
  18122. {
  18123. name: "Floofy cyan sun",
  18124. height: math.unit(1500000000, "meters")
  18125. },
  18126. {
  18127. name: "Milky Wicker",
  18128. height: math.unit(1000000000000000000000, "meters")
  18129. },
  18130. {
  18131. name: "The observing Wicker",
  18132. height: math.unit(999999999999999999999999999, "meters")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(5 + 9 / 12, "feet"),
  18141. weight: math.unit(150, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/arokha-sieyes/front.svg",
  18145. extra: 1425 / 1284,
  18146. bottom: 0.05
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(5 + 9 / 12, "feet")
  18154. },
  18155. {
  18156. name: "Macro",
  18157. height: math.unit(30, "meters"),
  18158. default: true
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(6, "feet"),
  18167. weight: math.unit(180, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/arokh-sieyes/front.svg",
  18171. extra: 1830 / 1769,
  18172. bottom: 0.01
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(6, "feet")
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(30, "meters"),
  18184. default: true
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18190. {
  18191. side: {
  18192. height: math.unit(13 + 1 / 12, "feet"),
  18193. weight: math.unit(8.5, "tonnes"),
  18194. name: "Side",
  18195. image: {
  18196. source: "./media/characters/goldeneye/side.svg",
  18197. extra: 1182 / 778,
  18198. bottom: 0.067
  18199. }
  18200. },
  18201. paw: {
  18202. height: math.unit(3.4, "feet"),
  18203. name: "Paw",
  18204. image: {
  18205. source: "./media/characters/goldeneye/paw.svg"
  18206. }
  18207. },
  18208. },
  18209. [
  18210. {
  18211. name: "Normal",
  18212. height: math.unit(13 + 1 / 12, "feet"),
  18213. default: true
  18214. },
  18215. ]
  18216. ))
  18217. characterMakers.push(() => makeCharacter(
  18218. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18219. {
  18220. front: {
  18221. height: math.unit(6 + 1 / 12, "feet"),
  18222. weight: math.unit(210, "lb"),
  18223. name: "Front",
  18224. image: {
  18225. source: "./media/characters/leonardo-lycheborne/front.svg",
  18226. extra: 390 / 365,
  18227. bottom: 0.032
  18228. }
  18229. },
  18230. side: {
  18231. height: math.unit(6 + 1 / 12, "feet"),
  18232. weight: math.unit(210, "lb"),
  18233. name: "Side",
  18234. image: {
  18235. source: "./media/characters/leonardo-lycheborne/side.svg",
  18236. extra: 390 / 365,
  18237. bottom: 0.005
  18238. }
  18239. },
  18240. back: {
  18241. height: math.unit(6 + 1 / 12, "feet"),
  18242. weight: math.unit(210, "lb"),
  18243. name: "Back",
  18244. image: {
  18245. source: "./media/characters/leonardo-lycheborne/back.svg",
  18246. extra: 392 / 366,
  18247. bottom: 0.01
  18248. }
  18249. },
  18250. hand: {
  18251. height: math.unit(1.08, "feet"),
  18252. name: "Hand",
  18253. image: {
  18254. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18255. }
  18256. },
  18257. foot: {
  18258. height: math.unit(1.32, "feet"),
  18259. name: "Foot",
  18260. image: {
  18261. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18262. }
  18263. },
  18264. were: {
  18265. height: math.unit(20, "feet"),
  18266. weight: math.unit(7800, "lb"),
  18267. name: "Were",
  18268. image: {
  18269. source: "./media/characters/leonardo-lycheborne/were.svg",
  18270. extra: 308 / 294,
  18271. bottom: 0.048
  18272. }
  18273. },
  18274. feral: {
  18275. height: math.unit(7.5, "feet"),
  18276. weight: math.unit(600, "lb"),
  18277. name: "Feral",
  18278. image: {
  18279. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18280. extra: 210 / 186,
  18281. bottom: 0.108
  18282. }
  18283. },
  18284. taur: {
  18285. height: math.unit(11, "feet"),
  18286. weight: math.unit(3300, "lb"),
  18287. name: "Taur",
  18288. image: {
  18289. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18290. extra: 320 / 303,
  18291. bottom: 0.025
  18292. }
  18293. },
  18294. barghest: {
  18295. height: math.unit(11, "feet"),
  18296. weight: math.unit(1300, "lb"),
  18297. name: "Barghest",
  18298. image: {
  18299. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18300. extra: 323 / 302,
  18301. bottom: 0.027
  18302. }
  18303. },
  18304. dick: {
  18305. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18306. name: "Dick",
  18307. image: {
  18308. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18309. }
  18310. },
  18311. dickWere: {
  18312. height: math.unit((20) / 3.8, "feet"),
  18313. name: "Dick (Were)",
  18314. image: {
  18315. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18316. }
  18317. },
  18318. },
  18319. [
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(6 + 1 / 12, "feet"),
  18323. default: true
  18324. },
  18325. ]
  18326. ))
  18327. characterMakers.push(() => makeCharacter(
  18328. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18329. {
  18330. front: {
  18331. height: math.unit(10, "feet"),
  18332. weight: math.unit(350, "lb"),
  18333. name: "Front",
  18334. image: {
  18335. source: "./media/characters/jet/front.svg",
  18336. extra: 2050 / 1980,
  18337. bottom: 0.013
  18338. }
  18339. },
  18340. back: {
  18341. height: math.unit(10, "feet"),
  18342. weight: math.unit(350, "lb"),
  18343. name: "Back",
  18344. image: {
  18345. source: "./media/characters/jet/back.svg",
  18346. extra: 2050 / 1980,
  18347. bottom: 0.013
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Micro",
  18354. height: math.unit(6, "inches")
  18355. },
  18356. {
  18357. name: "Normal",
  18358. height: math.unit(10, "feet"),
  18359. default: true
  18360. },
  18361. {
  18362. name: "Macro",
  18363. height: math.unit(100, "feet")
  18364. },
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18369. {
  18370. front: {
  18371. height: math.unit(15, "feet"),
  18372. weight: math.unit(2800, "lb"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/tanarath/front.svg",
  18376. extra: 2392 / 2220,
  18377. bottom: 0.03
  18378. }
  18379. },
  18380. back: {
  18381. height: math.unit(15, "feet"),
  18382. weight: math.unit(2800, "lb"),
  18383. name: "Back",
  18384. image: {
  18385. source: "./media/characters/tanarath/back.svg",
  18386. extra: 2392 / 2220,
  18387. bottom: 0.03
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(15, "feet"),
  18395. default: true
  18396. },
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18401. {
  18402. front: {
  18403. height: math.unit(7 + 1 / 12, "feet"),
  18404. weight: math.unit(175, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/patty-cattybatty/front.svg",
  18408. extra: 908 / 874,
  18409. bottom: 0.025
  18410. }
  18411. },
  18412. },
  18413. [
  18414. {
  18415. name: "Micro",
  18416. height: math.unit(1, "inch")
  18417. },
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(7 + 1 / 12, "feet")
  18421. },
  18422. {
  18423. name: "Mini Macro",
  18424. height: math.unit(155, "feet")
  18425. },
  18426. {
  18427. name: "Macro",
  18428. height: math.unit(1077, "feet")
  18429. },
  18430. {
  18431. name: "Mega Macro",
  18432. height: math.unit(47650, "feet"),
  18433. default: true
  18434. },
  18435. {
  18436. name: "Giga Macro",
  18437. height: math.unit(440, "miles")
  18438. },
  18439. {
  18440. name: "Tera Macro",
  18441. height: math.unit(8700, "miles")
  18442. },
  18443. {
  18444. name: "Planetary Macro",
  18445. height: math.unit(32700, "miles")
  18446. },
  18447. {
  18448. name: "Solar Macro",
  18449. height: math.unit(550000, "miles")
  18450. },
  18451. {
  18452. name: "Celestial Macro",
  18453. height: math.unit(2.5, "AU")
  18454. },
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18459. {
  18460. front: {
  18461. height: math.unit(4 + 5 / 12, "feet"),
  18462. weight: math.unit(90, "lb"),
  18463. name: "Front",
  18464. image: {
  18465. source: "./media/characters/cappu/front.svg",
  18466. extra: 1247 / 1152,
  18467. bottom: 0.012
  18468. }
  18469. },
  18470. },
  18471. [
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(4 + 5 / 12, "feet"),
  18475. default: true
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18481. {
  18482. frontDressed: {
  18483. height: math.unit(70, "cm"),
  18484. weight: math.unit(6, "kg"),
  18485. name: "Front (Dressed)",
  18486. image: {
  18487. source: "./media/characters/sebi/front-dressed.svg",
  18488. extra: 713.5 / 686.5,
  18489. bottom: 0.003
  18490. }
  18491. },
  18492. front: {
  18493. height: math.unit(70, "cm"),
  18494. weight: math.unit(5, "kg"),
  18495. name: "Front",
  18496. image: {
  18497. source: "./media/characters/sebi/front.svg",
  18498. extra: 713.5 / 686.5,
  18499. bottom: 0.003
  18500. }
  18501. }
  18502. },
  18503. [
  18504. {
  18505. name: "Normal",
  18506. height: math.unit(70, "cm"),
  18507. default: true
  18508. },
  18509. {
  18510. name: "Macro",
  18511. height: math.unit(8, "meters")
  18512. },
  18513. ]
  18514. ))
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18517. {
  18518. front: {
  18519. height: math.unit(6, "feet"),
  18520. weight: math.unit(150, "lb"),
  18521. name: "Front",
  18522. image: {
  18523. source: "./media/characters/typhek/front.svg",
  18524. extra: 1948 / 1929,
  18525. bottom: 0.025
  18526. }
  18527. },
  18528. side: {
  18529. height: math.unit(6, "feet"),
  18530. weight: math.unit(150, "lb"),
  18531. name: "Side",
  18532. image: {
  18533. source: "./media/characters/typhek/side.svg",
  18534. extra: 2034 / 2010,
  18535. bottom: 0.003
  18536. }
  18537. },
  18538. back: {
  18539. height: math.unit(6, "feet"),
  18540. weight: math.unit(150, "lb"),
  18541. name: "Back",
  18542. image: {
  18543. source: "./media/characters/typhek/back.svg",
  18544. extra: 2005 / 1978,
  18545. bottom: 0.004
  18546. }
  18547. },
  18548. palm: {
  18549. height: math.unit(1.2, "feet"),
  18550. name: "Palm",
  18551. image: {
  18552. source: "./media/characters/typhek/palm.svg"
  18553. }
  18554. },
  18555. fist: {
  18556. height: math.unit(1.1, "feet"),
  18557. name: "Fist",
  18558. image: {
  18559. source: "./media/characters/typhek/fist.svg"
  18560. }
  18561. },
  18562. foot: {
  18563. height: math.unit(1.57, "feet"),
  18564. name: "Foot",
  18565. image: {
  18566. source: "./media/characters/typhek/foot.svg"
  18567. }
  18568. },
  18569. sole: {
  18570. height: math.unit(2.05, "feet"),
  18571. name: "Sole",
  18572. image: {
  18573. source: "./media/characters/typhek/sole.svg"
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Macro",
  18580. height: math.unit(40, "stories"),
  18581. default: true
  18582. },
  18583. {
  18584. name: "Megamacro",
  18585. height: math.unit(1, "mile")
  18586. },
  18587. {
  18588. name: "Gigamacro",
  18589. height: math.unit(4000, "solarradii")
  18590. },
  18591. {
  18592. name: "Universal",
  18593. height: math.unit(1.1, "universes")
  18594. }
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18599. {
  18600. side: {
  18601. height: math.unit(5 + 7 / 12, "feet"),
  18602. weight: math.unit(150, "lb"),
  18603. name: "Side",
  18604. image: {
  18605. source: "./media/characters/kassy/side.svg",
  18606. extra: 1280 / 1225,
  18607. bottom: 0.002
  18608. }
  18609. },
  18610. front: {
  18611. height: math.unit(5 + 7 / 12, "feet"),
  18612. weight: math.unit(150, "lb"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/kassy/front.svg",
  18616. extra: 1280 / 1225,
  18617. bottom: 0.025
  18618. }
  18619. },
  18620. back: {
  18621. height: math.unit(5 + 7 / 12, "feet"),
  18622. weight: math.unit(150, "lb"),
  18623. name: "Back",
  18624. image: {
  18625. source: "./media/characters/kassy/back.svg",
  18626. extra: 1280 / 1225,
  18627. bottom: 0.002
  18628. }
  18629. },
  18630. foot: {
  18631. height: math.unit(1.266, "feet"),
  18632. name: "Foot",
  18633. image: {
  18634. source: "./media/characters/kassy/foot.svg"
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(5 + 7 / 12, "feet")
  18642. },
  18643. {
  18644. name: "Macro",
  18645. height: math.unit(137, "feet"),
  18646. default: true
  18647. },
  18648. {
  18649. name: "Megamacro",
  18650. height: math.unit(1, "mile")
  18651. },
  18652. ]
  18653. ))
  18654. characterMakers.push(() => makeCharacter(
  18655. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18656. {
  18657. front: {
  18658. height: math.unit(6 + 1 / 12, "feet"),
  18659. weight: math.unit(200, "lb"),
  18660. name: "Front",
  18661. image: {
  18662. source: "./media/characters/neil/front.svg",
  18663. extra: 1326 / 1250,
  18664. bottom: 0.023
  18665. }
  18666. },
  18667. },
  18668. [
  18669. {
  18670. name: "Normal",
  18671. height: math.unit(6 + 1 / 12, "feet"),
  18672. default: true
  18673. },
  18674. {
  18675. name: "Macro",
  18676. height: math.unit(200, "feet")
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(5 + 9 / 12, "feet"),
  18685. weight: math.unit(190, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/atticus/front.svg",
  18689. extra: 2934 / 2785,
  18690. bottom: 0.025
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(5 + 9 / 12, "feet"),
  18698. default: true
  18699. },
  18700. {
  18701. name: "Macro",
  18702. height: math.unit(180, "feet")
  18703. },
  18704. ]
  18705. ))
  18706. characterMakers.push(() => makeCharacter(
  18707. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18708. {
  18709. side: {
  18710. height: math.unit(9, "feet"),
  18711. weight: math.unit(650, "lb"),
  18712. name: "Side",
  18713. image: {
  18714. source: "./media/characters/milo/side.svg",
  18715. extra: 2644 / 2310,
  18716. bottom: 0.032
  18717. }
  18718. },
  18719. },
  18720. [
  18721. {
  18722. name: "Normal",
  18723. height: math.unit(9, "feet"),
  18724. default: true
  18725. },
  18726. {
  18727. name: "Macro",
  18728. height: math.unit(300, "feet")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18734. {
  18735. side: {
  18736. height: math.unit(8, "meters"),
  18737. weight: math.unit(90000, "kg"),
  18738. name: "Side",
  18739. image: {
  18740. source: "./media/characters/ijzer/side.svg",
  18741. extra: 2756 / 1600,
  18742. bottom: 0.01
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Small",
  18749. height: math.unit(3, "meters")
  18750. },
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(8, "meters"),
  18754. default: true
  18755. },
  18756. {
  18757. name: "Normal+",
  18758. height: math.unit(10, "meters")
  18759. },
  18760. {
  18761. name: "Bigger",
  18762. height: math.unit(24, "meters")
  18763. },
  18764. {
  18765. name: "Huge",
  18766. height: math.unit(80, "meters")
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18772. {
  18773. front: {
  18774. height: math.unit(6 + 2 / 12, "feet"),
  18775. weight: math.unit(153, "lb"),
  18776. name: "Front",
  18777. image: {
  18778. source: "./media/characters/luca-cervicum/front.svg",
  18779. extra: 370 / 327,
  18780. bottom: 0.015
  18781. }
  18782. },
  18783. back: {
  18784. height: math.unit(6 + 2 / 12, "feet"),
  18785. weight: math.unit(153, "lb"),
  18786. name: "Back",
  18787. image: {
  18788. source: "./media/characters/luca-cervicum/back.svg",
  18789. extra: 367 / 333,
  18790. bottom: 0.005
  18791. }
  18792. },
  18793. frontGear: {
  18794. height: math.unit(6 + 2 / 12, "feet"),
  18795. weight: math.unit(173, "lb"),
  18796. name: "Front (Gear)",
  18797. image: {
  18798. source: "./media/characters/luca-cervicum/front-gear.svg",
  18799. extra: 377 / 333,
  18800. bottom: 0.006
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(6 + 2 / 12, "feet"),
  18808. default: true
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18814. {
  18815. front: {
  18816. height: math.unit(6 + 1 / 12, "feet"),
  18817. weight: math.unit(304, "lb"),
  18818. name: "Front",
  18819. image: {
  18820. source: "./media/characters/oliver/front.svg",
  18821. extra: 157 / 143,
  18822. bottom: 0.08
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(6 + 1 / 12, "feet"),
  18830. default: true
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(5 + 7 / 12, "feet"),
  18839. weight: math.unit(140, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/shane/front.svg",
  18843. extra: 304 / 289,
  18844. bottom: 0.005
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(5 + 7 / 12, "feet"),
  18852. default: true
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18858. {
  18859. front: {
  18860. height: math.unit(5 + 9 / 12, "feet"),
  18861. weight: math.unit(178, "lb"),
  18862. name: "Front",
  18863. image: {
  18864. source: "./media/characters/shin/front.svg",
  18865. extra: 159 / 151,
  18866. bottom: 0.015
  18867. }
  18868. },
  18869. },
  18870. [
  18871. {
  18872. name: "Normal",
  18873. height: math.unit(5 + 9 / 12, "feet"),
  18874. default: true
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18880. {
  18881. front: {
  18882. height: math.unit(5 + 10 / 12, "feet"),
  18883. weight: math.unit(168, "lb"),
  18884. name: "Front",
  18885. image: {
  18886. source: "./media/characters/xerxes/front.svg",
  18887. extra: 282 / 260,
  18888. bottom: 0.045
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(5 + 10 / 12, "feet"),
  18896. default: true
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(6 + 7 / 12, "feet"),
  18905. weight: math.unit(208, "lb"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/chaska/front.svg",
  18909. extra: 332 / 319,
  18910. bottom: 0.015
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(6 + 7 / 12, "feet"),
  18918. default: true
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(5 + 8 / 12, "feet"),
  18927. weight: math.unit(208, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/enuk/front.svg",
  18931. extra: 437 / 406,
  18932. bottom: 0.02
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(5 + 8 / 12, "feet"),
  18940. default: true
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18946. {
  18947. front: {
  18948. height: math.unit(5 + 10 / 12, "feet"),
  18949. weight: math.unit(252, "lb"),
  18950. name: "Front",
  18951. image: {
  18952. source: "./media/characters/bruun/front.svg",
  18953. extra: 197 / 187,
  18954. bottom: 0.012
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Normal",
  18961. height: math.unit(5 + 10 / 12, "feet"),
  18962. default: true
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18968. {
  18969. front: {
  18970. height: math.unit(6 + 10 / 12, "feet"),
  18971. weight: math.unit(255, "lb"),
  18972. name: "Front",
  18973. image: {
  18974. source: "./media/characters/alexeev/front.svg",
  18975. extra: 213 / 200,
  18976. bottom: 0.05
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(6 + 10 / 12, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(2 + 8 / 12, "feet"),
  18993. weight: math.unit(22, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/evelyn/front.svg",
  18997. extra: 208 / 180
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Normal",
  19004. height: math.unit(2 + 8 / 12, "feet"),
  19005. default: true
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(5 + 9 / 12, "feet"),
  19014. weight: math.unit(139, "lb"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/inca/front.svg",
  19018. extra: 294 / 291,
  19019. bottom: 0.03
  19020. }
  19021. },
  19022. },
  19023. [
  19024. {
  19025. name: "Normal",
  19026. height: math.unit(5 + 9 / 12, "feet"),
  19027. default: true
  19028. },
  19029. ]
  19030. ))
  19031. characterMakers.push(() => makeCharacter(
  19032. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19033. {
  19034. front: {
  19035. height: math.unit(5 + 1 / 12, "feet"),
  19036. weight: math.unit(84, "lb"),
  19037. name: "Front",
  19038. image: {
  19039. source: "./media/characters/magdalene/front.svg",
  19040. extra: 293 / 273
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(5 + 1 / 12, "feet"),
  19048. default: true
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19054. {
  19055. front: {
  19056. height: math.unit(6 + 3 / 12, "feet"),
  19057. weight: math.unit(185, "lb"),
  19058. name: "Front",
  19059. image: {
  19060. source: "./media/characters/mera/front.svg",
  19061. extra: 291 / 277,
  19062. bottom: 0.03
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(6 + 3 / 12, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19076. {
  19077. front: {
  19078. height: math.unit(6 + 7 / 12, "feet"),
  19079. weight: math.unit(160, "lb"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/ceres/front.svg",
  19083. extra: 1023 / 950,
  19084. bottom: 0.027
  19085. }
  19086. },
  19087. back: {
  19088. height: math.unit(6 + 7 / 12, "feet"),
  19089. weight: math.unit(160, "lb"),
  19090. name: "Back",
  19091. image: {
  19092. source: "./media/characters/ceres/back.svg",
  19093. extra: 1023 / 950
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(6 + 7 / 12, "feet"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19107. {
  19108. front: {
  19109. height: math.unit(5 + 10 / 12, "feet"),
  19110. weight: math.unit(150, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/kris/front.svg",
  19114. extra: 885 / 803,
  19115. bottom: 0.03
  19116. }
  19117. },
  19118. },
  19119. [
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(5 + 10 / 12, "feet"),
  19123. default: true
  19124. },
  19125. ]
  19126. ))
  19127. characterMakers.push(() => makeCharacter(
  19128. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19129. {
  19130. front: {
  19131. height: math.unit(7, "feet"),
  19132. weight: math.unit(120, "kg"),
  19133. name: "Front",
  19134. image: {
  19135. source: "./media/characters/taluthus/front.svg",
  19136. extra: 903 / 833,
  19137. bottom: 0.015
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Normal",
  19144. height: math.unit(7, "feet"),
  19145. default: true
  19146. },
  19147. {
  19148. name: "Macro",
  19149. height: math.unit(300, "feet")
  19150. },
  19151. ]
  19152. ))
  19153. characterMakers.push(() => makeCharacter(
  19154. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19155. {
  19156. front: {
  19157. height: math.unit(5 + 9 / 12, "feet"),
  19158. weight: math.unit(145, "lb"),
  19159. name: "Front",
  19160. image: {
  19161. source: "./media/characters/dawn/front.svg",
  19162. extra: 2094 / 2016,
  19163. bottom: 0.025
  19164. }
  19165. },
  19166. back: {
  19167. height: math.unit(5 + 9 / 12, "feet"),
  19168. weight: math.unit(160, "lb"),
  19169. name: "Back",
  19170. image: {
  19171. source: "./media/characters/dawn/back.svg",
  19172. extra: 2112 / 2080,
  19173. bottom: 0.005
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(6 + 7 / 12, "feet"),
  19181. default: true
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19187. {
  19188. anthro: {
  19189. height: math.unit(8 + 3 / 12, "feet"),
  19190. weight: math.unit(450, "lb"),
  19191. name: "Anthro",
  19192. image: {
  19193. source: "./media/characters/arador/anthro.svg",
  19194. extra: 1835 / 1718,
  19195. bottom: 0.025
  19196. }
  19197. },
  19198. feral: {
  19199. height: math.unit(4, "feet"),
  19200. weight: math.unit(200, "lb"),
  19201. name: "Feral",
  19202. image: {
  19203. source: "./media/characters/arador/feral.svg",
  19204. extra: 1683 / 1514,
  19205. bottom: 0.07
  19206. }
  19207. },
  19208. },
  19209. [
  19210. {
  19211. name: "Normal",
  19212. height: math.unit(8 + 3 / 12, "feet")
  19213. },
  19214. {
  19215. name: "Macro",
  19216. height: math.unit(82.5, "feet"),
  19217. default: true
  19218. },
  19219. ]
  19220. ))
  19221. characterMakers.push(() => makeCharacter(
  19222. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19223. {
  19224. front: {
  19225. height: math.unit(5 + 10 / 12, "feet"),
  19226. weight: math.unit(125, "lb"),
  19227. name: "Front",
  19228. image: {
  19229. source: "./media/characters/dharsi/front.svg",
  19230. extra: 716 / 630,
  19231. bottom: 0.035
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Nano",
  19238. height: math.unit(100, "nm")
  19239. },
  19240. {
  19241. name: "Micro",
  19242. height: math.unit(2, "inches")
  19243. },
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(5 + 10 / 12, "feet"),
  19247. default: true
  19248. },
  19249. {
  19250. name: "Macro",
  19251. height: math.unit(1000, "feet")
  19252. },
  19253. {
  19254. name: "Megamacro",
  19255. height: math.unit(10, "miles")
  19256. },
  19257. {
  19258. name: "Gigamacro",
  19259. height: math.unit(3000, "miles")
  19260. },
  19261. {
  19262. name: "Teramacro",
  19263. height: math.unit(500000, "miles")
  19264. },
  19265. {
  19266. name: "Teramacro+",
  19267. height: math.unit(30, "galaxies")
  19268. },
  19269. ]
  19270. ))
  19271. characterMakers.push(() => makeCharacter(
  19272. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19273. {
  19274. front: {
  19275. height: math.unit(6, "feet"),
  19276. weight: math.unit(150, "lb"),
  19277. name: "Front",
  19278. image: {
  19279. source: "./media/characters/deathy/front.svg",
  19280. extra: 1552 / 1463,
  19281. bottom: 0.025
  19282. }
  19283. },
  19284. side: {
  19285. height: math.unit(6, "feet"),
  19286. weight: math.unit(150, "lb"),
  19287. name: "Side",
  19288. image: {
  19289. source: "./media/characters/deathy/side.svg",
  19290. extra: 1604 / 1455,
  19291. bottom: 0.025
  19292. }
  19293. },
  19294. back: {
  19295. height: math.unit(6, "feet"),
  19296. weight: math.unit(150, "lb"),
  19297. name: "Back",
  19298. image: {
  19299. source: "./media/characters/deathy/back.svg",
  19300. extra: 1580 / 1463,
  19301. bottom: 0.005
  19302. }
  19303. },
  19304. },
  19305. [
  19306. {
  19307. name: "Micro",
  19308. height: math.unit(5, "millimeters")
  19309. },
  19310. {
  19311. name: "Normal",
  19312. height: math.unit(6 + 5 / 12, "feet"),
  19313. default: true
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19319. {
  19320. front: {
  19321. height: math.unit(16, "feet"),
  19322. weight: math.unit(4000, "lb"),
  19323. name: "Front",
  19324. image: {
  19325. source: "./media/characters/juniper/front.svg",
  19326. bottom: 0.04
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(16, "feet"),
  19334. default: true
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19340. {
  19341. front: {
  19342. height: math.unit(6, "feet"),
  19343. weight: math.unit(150, "lb"),
  19344. name: "Front",
  19345. image: {
  19346. source: "./media/characters/hipster/front.svg",
  19347. extra: 1312 / 1209,
  19348. bottom: 0.025
  19349. }
  19350. },
  19351. back: {
  19352. height: math.unit(6, "feet"),
  19353. weight: math.unit(150, "lb"),
  19354. name: "Back",
  19355. image: {
  19356. source: "./media/characters/hipster/back.svg",
  19357. extra: 1281 / 1196,
  19358. bottom: 0.01
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Micro",
  19365. height: math.unit(1, "mm")
  19366. },
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(4, "inches"),
  19370. default: true
  19371. },
  19372. {
  19373. name: "Macro",
  19374. height: math.unit(500, "feet")
  19375. },
  19376. {
  19377. name: "Megamacro",
  19378. height: math.unit(1000, "miles")
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19384. {
  19385. front: {
  19386. height: math.unit(6, "feet"),
  19387. weight: math.unit(150, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/tendirmuldr/front.svg",
  19391. extra: 1878 / 1772,
  19392. bottom: 0.015
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Megamacro",
  19399. height: math.unit(1500, "miles"),
  19400. default: true
  19401. },
  19402. ]
  19403. ))
  19404. characterMakers.push(() => makeCharacter(
  19405. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19406. {
  19407. front: {
  19408. height: math.unit(14, "feet"),
  19409. weight: math.unit(12000, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/mort/front.svg",
  19413. extra: 365 / 318,
  19414. bottom: 0.01
  19415. }
  19416. },
  19417. side: {
  19418. height: math.unit(14, "feet"),
  19419. weight: math.unit(12000, "lb"),
  19420. name: "Side",
  19421. image: {
  19422. source: "./media/characters/mort/side.svg",
  19423. extra: 365 / 318,
  19424. bottom: 0.052
  19425. },
  19426. default: true
  19427. },
  19428. back: {
  19429. height: math.unit(14, "feet"),
  19430. weight: math.unit(12000, "lb"),
  19431. name: "Back",
  19432. image: {
  19433. source: "./media/characters/mort/back.svg",
  19434. extra: 371 / 332,
  19435. bottom: 0.18
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(14, "feet"),
  19443. default: true
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19449. {
  19450. front: {
  19451. height: math.unit(8, "feet"),
  19452. weight: math.unit(1, "ton"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/lycoa/front.svg",
  19456. extra: 1875 / 1789,
  19457. bottom: 0.022
  19458. }
  19459. },
  19460. back: {
  19461. height: math.unit(8, "feet"),
  19462. weight: math.unit(1, "ton"),
  19463. name: "Back",
  19464. image: {
  19465. source: "./media/characters/lycoa/back.svg",
  19466. extra: 1835 / 1781,
  19467. bottom: 0.03
  19468. }
  19469. },
  19470. head: {
  19471. height: math.unit(2.1, "feet"),
  19472. name: "Head",
  19473. image: {
  19474. source: "./media/characters/lycoa/head.svg"
  19475. }
  19476. },
  19477. tailmaw: {
  19478. height: math.unit(1.9, "feet"),
  19479. name: "Tailmaw",
  19480. image: {
  19481. source: "./media/characters/lycoa/tailmaw.svg"
  19482. }
  19483. },
  19484. tentacles: {
  19485. height: math.unit(2.1, "feet"),
  19486. name: "Tentacles",
  19487. image: {
  19488. source: "./media/characters/lycoa/tentacles.svg"
  19489. }
  19490. },
  19491. dick: {
  19492. height: math.unit(1.73, "feet"),
  19493. name: "Dick",
  19494. image: {
  19495. source: "./media/characters/lycoa/dick.svg"
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(8, "feet"),
  19503. default: true
  19504. },
  19505. {
  19506. name: "Macro",
  19507. height: math.unit(30, "feet")
  19508. },
  19509. ]
  19510. ))
  19511. characterMakers.push(() => makeCharacter(
  19512. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19513. {
  19514. front: {
  19515. height: math.unit(4 + 2 / 12, "feet"),
  19516. weight: math.unit(70, "lb"),
  19517. name: "Front",
  19518. image: {
  19519. source: "./media/characters/naldara/front.svg",
  19520. extra: 841 / 720,
  19521. bottom: 0.04
  19522. }
  19523. },
  19524. naga: {
  19525. height: math.unit(23, "feet"),
  19526. weight: math.unit(15000, "kg"),
  19527. name: "Naga",
  19528. image: {
  19529. source: "./media/characters/naldara/naga.svg",
  19530. extra: 3290 / 2959,
  19531. bottom: 124 / 3432
  19532. }
  19533. },
  19534. },
  19535. [
  19536. {
  19537. name: "Normal",
  19538. height: math.unit(4 + 2 / 12, "feet"),
  19539. default: true
  19540. },
  19541. ]
  19542. ))
  19543. characterMakers.push(() => makeCharacter(
  19544. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19545. {
  19546. front: {
  19547. height: math.unit(13 + 7 / 12, "feet"),
  19548. weight: math.unit(1500, "lb"),
  19549. name: "Front",
  19550. image: {
  19551. source: "./media/characters/briar/front.svg",
  19552. extra: 626 / 596,
  19553. bottom: 0.08
  19554. }
  19555. },
  19556. },
  19557. [
  19558. {
  19559. name: "Normal",
  19560. height: math.unit(13 + 7 / 12, "feet"),
  19561. default: true
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19567. {
  19568. side: {
  19569. height: math.unit(10, "feet"),
  19570. weight: math.unit(500, "lb"),
  19571. name: "Side",
  19572. image: {
  19573. source: "./media/characters/vanguard/side.svg",
  19574. extra: 502 / 425,
  19575. bottom: 0.087
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Normal",
  19582. height: math.unit(10, "feet"),
  19583. default: true
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19589. {
  19590. front: {
  19591. height: math.unit(7.5, "feet"),
  19592. weight: math.unit(2, "lb"),
  19593. name: "Front",
  19594. image: {
  19595. source: "./media/characters/artemis/front.svg",
  19596. extra: 1192 / 1075,
  19597. bottom: 0.07
  19598. }
  19599. },
  19600. frontNsfw: {
  19601. height: math.unit(7.5, "feet"),
  19602. weight: math.unit(2, "lb"),
  19603. name: "Front (NSFW)",
  19604. image: {
  19605. source: "./media/characters/artemis/front-nsfw.svg",
  19606. extra: 1192 / 1075,
  19607. bottom: 0.07
  19608. }
  19609. },
  19610. frontNsfwer: {
  19611. height: math.unit(7.5, "feet"),
  19612. weight: math.unit(2, "lb"),
  19613. name: "Front (NSFW-er)",
  19614. image: {
  19615. source: "./media/characters/artemis/front-nsfwer.svg",
  19616. extra: 1192 / 1075,
  19617. bottom: 0.07
  19618. }
  19619. },
  19620. side: {
  19621. height: math.unit(7.5, "feet"),
  19622. weight: math.unit(2, "lb"),
  19623. name: "Side",
  19624. image: {
  19625. source: "./media/characters/artemis/side.svg",
  19626. extra: 1192 / 1075,
  19627. bottom: 0.07
  19628. }
  19629. },
  19630. sideNsfw: {
  19631. height: math.unit(7.5, "feet"),
  19632. weight: math.unit(2, "lb"),
  19633. name: "Side (NSFW)",
  19634. image: {
  19635. source: "./media/characters/artemis/side-nsfw.svg",
  19636. extra: 1192 / 1075,
  19637. bottom: 0.07
  19638. }
  19639. },
  19640. sideNsfwer: {
  19641. height: math.unit(7.5, "feet"),
  19642. weight: math.unit(2, "lb"),
  19643. name: "Side (NSFW-er)",
  19644. image: {
  19645. source: "./media/characters/artemis/side-nsfwer.svg",
  19646. extra: 1192 / 1075,
  19647. bottom: 0.07
  19648. }
  19649. },
  19650. maw: {
  19651. height: math.unit(1.1, "feet"),
  19652. name: "Maw",
  19653. image: {
  19654. source: "./media/characters/artemis/maw.svg"
  19655. }
  19656. },
  19657. stomach: {
  19658. height: math.unit(0.95, "feet"),
  19659. name: "Stomach",
  19660. image: {
  19661. source: "./media/characters/artemis/stomach.svg"
  19662. }
  19663. },
  19664. dickCanine: {
  19665. height: math.unit(1, "feet"),
  19666. name: "Dick (Canine)",
  19667. image: {
  19668. source: "./media/characters/artemis/dick-canine.svg"
  19669. }
  19670. },
  19671. dickEquine: {
  19672. height: math.unit(0.85, "feet"),
  19673. name: "Dick (Equine)",
  19674. image: {
  19675. source: "./media/characters/artemis/dick-equine.svg"
  19676. }
  19677. },
  19678. dickExotic: {
  19679. height: math.unit(0.85, "feet"),
  19680. name: "Dick (Exotic)",
  19681. image: {
  19682. source: "./media/characters/artemis/dick-exotic.svg"
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(7.5, "feet"),
  19690. default: true
  19691. },
  19692. {
  19693. name: "Enlarged",
  19694. height: math.unit(12, "feet")
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(5 + 3 / 12, "feet"),
  19703. weight: math.unit(160, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/kira/front.svg",
  19707. extra: 906 / 786,
  19708. bottom: 0.01
  19709. }
  19710. },
  19711. back: {
  19712. height: math.unit(5 + 3 / 12, "feet"),
  19713. weight: math.unit(160, "lb"),
  19714. name: "Back",
  19715. image: {
  19716. source: "./media/characters/kira/back.svg",
  19717. extra: 882 / 757,
  19718. bottom: 0.005
  19719. }
  19720. },
  19721. frontDressed: {
  19722. height: math.unit(5 + 3 / 12, "feet"),
  19723. weight: math.unit(160, "lb"),
  19724. name: "Front (Dressed)",
  19725. image: {
  19726. source: "./media/characters/kira/front-dressed.svg",
  19727. extra: 906 / 786,
  19728. bottom: 0.01
  19729. }
  19730. },
  19731. beans: {
  19732. height: math.unit(0.92, "feet"),
  19733. name: "Beans",
  19734. image: {
  19735. source: "./media/characters/kira/beans.svg"
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(5 + 3 / 12, "feet"),
  19743. default: true
  19744. },
  19745. ]
  19746. ))
  19747. characterMakers.push(() => makeCharacter(
  19748. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19749. {
  19750. front: {
  19751. height: math.unit(5 + 4 / 12, "feet"),
  19752. weight: math.unit(145, "lb"),
  19753. name: "Front",
  19754. image: {
  19755. source: "./media/characters/scramble/front.svg",
  19756. extra: 763 / 727,
  19757. bottom: 0.05
  19758. }
  19759. },
  19760. back: {
  19761. height: math.unit(5 + 4 / 12, "feet"),
  19762. weight: math.unit(145, "lb"),
  19763. name: "Back",
  19764. image: {
  19765. source: "./media/characters/scramble/back.svg",
  19766. extra: 826 / 737,
  19767. bottom: 0.002
  19768. }
  19769. },
  19770. },
  19771. [
  19772. {
  19773. name: "Normal",
  19774. height: math.unit(5 + 4 / 12, "feet"),
  19775. default: true
  19776. },
  19777. ]
  19778. ))
  19779. characterMakers.push(() => makeCharacter(
  19780. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19781. {
  19782. side: {
  19783. height: math.unit(6 + 2 / 12, "feet"),
  19784. weight: math.unit(190, "lb"),
  19785. name: "Side",
  19786. image: {
  19787. source: "./media/characters/biscuit/side.svg",
  19788. extra: 858 / 791,
  19789. bottom: 0.044
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Normal",
  19796. height: math.unit(6 + 2 / 12, "feet"),
  19797. default: true
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19803. {
  19804. front: {
  19805. height: math.unit(5 + 2 / 12, "feet"),
  19806. weight: math.unit(120, "lb"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/poffin/front.svg",
  19810. extra: 786 / 680,
  19811. bottom: 0.005
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Normal",
  19818. height: math.unit(5 + 2 / 12, "feet"),
  19819. default: true
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(6 + 3 / 12, "feet"),
  19828. weight: math.unit(519, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/dhari/front.svg",
  19832. extra: 1048 / 946,
  19833. bottom: 0.015
  19834. }
  19835. },
  19836. back: {
  19837. height: math.unit(6 + 3 / 12, "feet"),
  19838. weight: math.unit(519, "lb"),
  19839. name: "Back",
  19840. image: {
  19841. source: "./media/characters/dhari/back.svg",
  19842. extra: 1048 / 931,
  19843. bottom: 0.005
  19844. }
  19845. },
  19846. frontDressed: {
  19847. height: math.unit(6 + 3 / 12, "feet"),
  19848. weight: math.unit(519, "lb"),
  19849. name: "Front (Dressed)",
  19850. image: {
  19851. source: "./media/characters/dhari/front-dressed.svg",
  19852. extra: 1713 / 1546,
  19853. bottom: 0.02
  19854. }
  19855. },
  19856. backDressed: {
  19857. height: math.unit(6 + 3 / 12, "feet"),
  19858. weight: math.unit(519, "lb"),
  19859. name: "Back (Dressed)",
  19860. image: {
  19861. source: "./media/characters/dhari/back-dressed.svg",
  19862. extra: 1699 / 1537,
  19863. bottom: 0.01
  19864. }
  19865. },
  19866. maw: {
  19867. height: math.unit(0.95, "feet"),
  19868. name: "Maw",
  19869. image: {
  19870. source: "./media/characters/dhari/maw.svg"
  19871. }
  19872. },
  19873. wereFront: {
  19874. height: math.unit(12 + 8 / 12, "feet"),
  19875. weight: math.unit(4000, "lb"),
  19876. name: "Front (Were)",
  19877. image: {
  19878. source: "./media/characters/dhari/were-front.svg",
  19879. extra: 1065 / 969,
  19880. bottom: 0.015
  19881. }
  19882. },
  19883. wereBack: {
  19884. height: math.unit(12 + 8 / 12, "feet"),
  19885. weight: math.unit(4000, "lb"),
  19886. name: "Back (Were)",
  19887. image: {
  19888. source: "./media/characters/dhari/were-back.svg",
  19889. extra: 1065 / 969,
  19890. bottom: 0.012
  19891. }
  19892. },
  19893. wereMaw: {
  19894. height: math.unit(0.625, "meters"),
  19895. name: "Maw (Were)",
  19896. image: {
  19897. source: "./media/characters/dhari/were-maw.svg"
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(6 + 3 / 12, "feet"),
  19905. default: true
  19906. },
  19907. ]
  19908. ))
  19909. characterMakers.push(() => makeCharacter(
  19910. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19911. {
  19912. anthro: {
  19913. height: math.unit(5 + 7 / 12, "feet"),
  19914. weight: math.unit(175, "lb"),
  19915. name: "Anthro",
  19916. image: {
  19917. source: "./media/characters/rena-dyne/anthro.svg",
  19918. extra: 1849 / 1785,
  19919. bottom: 0.005
  19920. }
  19921. },
  19922. taur: {
  19923. height: math.unit(15 + 6 / 12, "feet"),
  19924. weight: math.unit(8000, "lb"),
  19925. name: "Taur",
  19926. image: {
  19927. source: "./media/characters/rena-dyne/taur.svg",
  19928. extra: 2315 / 2234,
  19929. bottom: 0.033
  19930. }
  19931. },
  19932. },
  19933. [
  19934. {
  19935. name: "Normal",
  19936. height: math.unit(5 + 7 / 12, "feet"),
  19937. default: true
  19938. },
  19939. ]
  19940. ))
  19941. characterMakers.push(() => makeCharacter(
  19942. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19943. {
  19944. front: {
  19945. height: math.unit(8, "feet"),
  19946. weight: math.unit(600, "lb"),
  19947. name: "Front",
  19948. image: {
  19949. source: "./media/characters/weremeep/front.svg",
  19950. extra: 967 / 862,
  19951. bottom: 0.01
  19952. }
  19953. },
  19954. },
  19955. [
  19956. {
  19957. name: "Normal",
  19958. height: math.unit(8, "feet"),
  19959. default: true
  19960. },
  19961. {
  19962. name: "Lorg",
  19963. height: math.unit(12, "feet")
  19964. },
  19965. {
  19966. name: "Oh Lawd She Comin'",
  19967. height: math.unit(20, "feet")
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19973. {
  19974. front: {
  19975. height: math.unit(4, "feet"),
  19976. weight: math.unit(90, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/reza/front.svg",
  19980. extra: 1183 / 1111,
  19981. bottom: 0.017
  19982. }
  19983. },
  19984. back: {
  19985. height: math.unit(4, "feet"),
  19986. weight: math.unit(90, "lb"),
  19987. name: "Back",
  19988. image: {
  19989. source: "./media/characters/reza/back.svg",
  19990. extra: 1183 / 1111,
  19991. bottom: 0.01
  19992. }
  19993. },
  19994. drake: {
  19995. height: math.unit(30, "feet"),
  19996. weight: math.unit(246960, "lb"),
  19997. name: "Drake",
  19998. image: {
  19999. source: "./media/characters/reza/drake.svg",
  20000. extra: 2350 / 2024,
  20001. bottom: 60.7 / 2403
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(4, "feet"),
  20009. default: true
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20015. {
  20016. side: {
  20017. height: math.unit(15, "feet"),
  20018. weight: math.unit(14, "tons"),
  20019. name: "Side",
  20020. image: {
  20021. source: "./media/characters/athea/side.svg",
  20022. extra: 960 / 540,
  20023. bottom: 0.003
  20024. }
  20025. },
  20026. sitting: {
  20027. height: math.unit(6 * 2.85, "feet"),
  20028. weight: math.unit(14, "tons"),
  20029. name: "Sitting",
  20030. image: {
  20031. source: "./media/characters/athea/sitting.svg",
  20032. extra: 621 / 581,
  20033. bottom: 0.075
  20034. }
  20035. },
  20036. maw: {
  20037. height: math.unit(7.59498031496063, "feet"),
  20038. name: "Maw",
  20039. image: {
  20040. source: "./media/characters/athea/maw.svg"
  20041. }
  20042. },
  20043. },
  20044. [
  20045. {
  20046. name: "Lap Cat",
  20047. height: math.unit(2.5, "feet")
  20048. },
  20049. {
  20050. name: "Minimacro",
  20051. height: math.unit(15, "feet"),
  20052. default: true
  20053. },
  20054. {
  20055. name: "Macro",
  20056. height: math.unit(120, "feet")
  20057. },
  20058. {
  20059. name: "Macro+",
  20060. height: math.unit(640, "feet")
  20061. },
  20062. {
  20063. name: "Colossus",
  20064. height: math.unit(2.2, "miles")
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(8 + 8 / 12, "feet"),
  20073. weight: math.unit(130, "kg"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/seroko/front.svg",
  20077. extra: 1385 / 1280,
  20078. bottom: 0.025
  20079. }
  20080. },
  20081. back: {
  20082. height: math.unit(8 + 8 / 12, "feet"),
  20083. weight: math.unit(130, "kg"),
  20084. name: "Back",
  20085. image: {
  20086. source: "./media/characters/seroko/back.svg",
  20087. extra: 1369 / 1238,
  20088. bottom: 0.018
  20089. }
  20090. },
  20091. frontDressed: {
  20092. height: math.unit(8 + 8 / 12, "feet"),
  20093. weight: math.unit(130, "kg"),
  20094. name: "Front (Dressed)",
  20095. image: {
  20096. source: "./media/characters/seroko/front-dressed.svg",
  20097. extra: 1366 / 1275,
  20098. bottom: 0.03
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(8 + 8 / 12, "feet"),
  20106. default: true
  20107. },
  20108. ]
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20112. {
  20113. front: {
  20114. height: math.unit(5.5, "feet"),
  20115. weight: math.unit(160, "lb"),
  20116. name: "Front",
  20117. image: {
  20118. source: "./media/characters/quatzi/front.svg",
  20119. extra: 2346 / 2242,
  20120. bottom: 0.015
  20121. }
  20122. },
  20123. },
  20124. [
  20125. {
  20126. name: "Normal",
  20127. height: math.unit(5.5, "feet"),
  20128. default: true
  20129. },
  20130. {
  20131. name: "Big",
  20132. height: math.unit(7.7, "feet")
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(5 + 11 / 12, "feet"),
  20141. weight: math.unit(180, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/sen/front.svg",
  20145. extra: 1321 / 1254,
  20146. bottom: 0.015
  20147. }
  20148. },
  20149. side: {
  20150. height: math.unit(5 + 11 / 12, "feet"),
  20151. weight: math.unit(180, "lb"),
  20152. name: "Side",
  20153. image: {
  20154. source: "./media/characters/sen/side.svg",
  20155. extra: 1321 / 1254,
  20156. bottom: 0.007
  20157. }
  20158. },
  20159. back: {
  20160. height: math.unit(5 + 11 / 12, "feet"),
  20161. weight: math.unit(180, "lb"),
  20162. name: "Back",
  20163. image: {
  20164. source: "./media/characters/sen/back.svg",
  20165. extra: 1321 / 1254
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(5 + 11 / 12, "feet"),
  20173. default: true
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20179. {
  20180. front: {
  20181. height: math.unit(166.6, "cm"),
  20182. weight: math.unit(66.6, "kg"),
  20183. name: "Front",
  20184. image: {
  20185. source: "./media/characters/fruity/front.svg",
  20186. extra: 1510 / 1386,
  20187. bottom: 0.04
  20188. }
  20189. },
  20190. back: {
  20191. height: math.unit(166.6, "cm"),
  20192. weight: math.unit(66.6, "lb"),
  20193. name: "Back",
  20194. image: {
  20195. source: "./media/characters/fruity/back.svg",
  20196. extra: 1563 / 1435,
  20197. bottom: 0.005
  20198. }
  20199. },
  20200. },
  20201. [
  20202. {
  20203. name: "Normal",
  20204. height: math.unit(166.6, "cm"),
  20205. default: true
  20206. },
  20207. {
  20208. name: "Demonic",
  20209. height: math.unit(166.6, "feet")
  20210. },
  20211. ]
  20212. ))
  20213. characterMakers.push(() => makeCharacter(
  20214. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20215. {
  20216. side: {
  20217. height: math.unit(10, "feet"),
  20218. weight: math.unit(500, "lb"),
  20219. name: "Side",
  20220. image: {
  20221. source: "./media/characters/zost/side.svg",
  20222. extra: 966 / 880,
  20223. bottom: 0.075
  20224. }
  20225. },
  20226. mawFront: {
  20227. height: math.unit(1.08, "meters"),
  20228. name: "Maw (Front)",
  20229. image: {
  20230. source: "./media/characters/zost/maw-front.svg"
  20231. }
  20232. },
  20233. mawSide: {
  20234. height: math.unit(2.66, "feet"),
  20235. name: "Maw (Side)",
  20236. image: {
  20237. source: "./media/characters/zost/maw-side.svg"
  20238. }
  20239. },
  20240. },
  20241. [
  20242. {
  20243. name: "Normal",
  20244. height: math.unit(10, "feet"),
  20245. default: true
  20246. },
  20247. ]
  20248. ))
  20249. characterMakers.push(() => makeCharacter(
  20250. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20251. {
  20252. front: {
  20253. height: math.unit(5 + 4 / 12, "feet"),
  20254. weight: math.unit(120, "lb"),
  20255. name: "Front",
  20256. image: {
  20257. source: "./media/characters/luci/front.svg",
  20258. extra: 1985 / 1884,
  20259. bottom: 0.04
  20260. }
  20261. },
  20262. back: {
  20263. height: math.unit(5 + 4 / 12, "feet"),
  20264. weight: math.unit(120, "lb"),
  20265. name: "Back",
  20266. image: {
  20267. source: "./media/characters/luci/back.svg",
  20268. extra: 1892 / 1791,
  20269. bottom: 0.002
  20270. }
  20271. },
  20272. },
  20273. [
  20274. {
  20275. name: "Normal",
  20276. height: math.unit(5 + 4 / 12, "feet"),
  20277. default: true
  20278. },
  20279. ]
  20280. ))
  20281. characterMakers.push(() => makeCharacter(
  20282. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20283. {
  20284. front: {
  20285. height: math.unit(1500, "feet"),
  20286. weight: math.unit(3.8e6, "tons"),
  20287. name: "Front",
  20288. image: {
  20289. source: "./media/characters/2th/front.svg",
  20290. extra: 3489 / 3350,
  20291. bottom: 0.1
  20292. }
  20293. },
  20294. foot: {
  20295. height: math.unit(461, "feet"),
  20296. name: "Foot",
  20297. image: {
  20298. source: "./media/characters/2th/foot.svg"
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "\"Micro\"",
  20305. height: math.unit(15 + 7 / 12, "feet")
  20306. },
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(1500, "feet"),
  20310. default: true
  20311. },
  20312. {
  20313. name: "Macro",
  20314. height: math.unit(5000, "feet")
  20315. },
  20316. {
  20317. name: "Megamacro",
  20318. height: math.unit(15, "miles")
  20319. },
  20320. {
  20321. name: "Gigamacro",
  20322. height: math.unit(4000, "miles")
  20323. },
  20324. {
  20325. name: "Galactic",
  20326. height: math.unit(50, "AU")
  20327. },
  20328. ]
  20329. ))
  20330. characterMakers.push(() => makeCharacter(
  20331. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20332. {
  20333. front: {
  20334. height: math.unit(5 + 6 / 12, "feet"),
  20335. weight: math.unit(220, "lb"),
  20336. name: "Front",
  20337. image: {
  20338. source: "./media/characters/amethyst/front.svg",
  20339. extra: 2078 / 2040,
  20340. bottom: 0.045
  20341. }
  20342. },
  20343. back: {
  20344. height: math.unit(5 + 6 / 12, "feet"),
  20345. weight: math.unit(220, "lb"),
  20346. name: "Back",
  20347. image: {
  20348. source: "./media/characters/amethyst/back.svg",
  20349. extra: 2021 / 1989,
  20350. bottom: 0.02
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Normal",
  20357. height: math.unit(5 + 6 / 12, "feet"),
  20358. default: true
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20364. {
  20365. front: {
  20366. height: math.unit(4 + 11 / 12, "feet"),
  20367. weight: math.unit(120, "lb"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/yumi-akiyama/front.svg",
  20371. extra: 1327 / 1235,
  20372. bottom: 0.02
  20373. }
  20374. },
  20375. back: {
  20376. height: math.unit(4 + 11 / 12, "feet"),
  20377. weight: math.unit(120, "lb"),
  20378. name: "Back",
  20379. image: {
  20380. source: "./media/characters/yumi-akiyama/back.svg",
  20381. extra: 1287 / 1245,
  20382. bottom: 0.002
  20383. }
  20384. },
  20385. },
  20386. [
  20387. {
  20388. name: "Galactic",
  20389. height: math.unit(50, "galaxies"),
  20390. default: true
  20391. },
  20392. {
  20393. name: "Universal",
  20394. height: math.unit(100, "universes")
  20395. },
  20396. ]
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20400. {
  20401. front: {
  20402. height: math.unit(8, "feet"),
  20403. weight: math.unit(500, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/rifter-yrmori/front.svg",
  20407. extra: 1180 / 1125,
  20408. bottom: 0.02
  20409. }
  20410. },
  20411. back: {
  20412. height: math.unit(8, "feet"),
  20413. weight: math.unit(500, "lb"),
  20414. name: "Back",
  20415. image: {
  20416. source: "./media/characters/rifter-yrmori/back.svg",
  20417. extra: 1190 / 1145,
  20418. bottom: 0.001
  20419. }
  20420. },
  20421. wings: {
  20422. height: math.unit(7.75, "feet"),
  20423. weight: math.unit(500, "lb"),
  20424. name: "Wings",
  20425. image: {
  20426. source: "./media/characters/rifter-yrmori/wings.svg",
  20427. extra: 1357 / 1285
  20428. }
  20429. },
  20430. maw: {
  20431. height: math.unit(0.8, "feet"),
  20432. name: "Maw",
  20433. image: {
  20434. source: "./media/characters/rifter-yrmori/maw.svg"
  20435. }
  20436. },
  20437. mawfront: {
  20438. height: math.unit(1.45, "feet"),
  20439. name: "Maw (Front)",
  20440. image: {
  20441. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20442. }
  20443. },
  20444. },
  20445. [
  20446. {
  20447. name: "Normal",
  20448. height: math.unit(8, "feet"),
  20449. default: true
  20450. },
  20451. {
  20452. name: "Macro",
  20453. height: math.unit(42, "meters")
  20454. },
  20455. ]
  20456. ))
  20457. characterMakers.push(() => makeCharacter(
  20458. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20459. {
  20460. were: {
  20461. height: math.unit(25 + 6 / 12, "feet"),
  20462. weight: math.unit(10000, "lb"),
  20463. name: "Were",
  20464. image: {
  20465. source: "./media/characters/tahajin/were.svg",
  20466. extra: 801 / 770,
  20467. bottom: 0.042
  20468. }
  20469. },
  20470. aquatic: {
  20471. height: math.unit(6 + 4 / 12, "feet"),
  20472. weight: math.unit(160, "lb"),
  20473. name: "Aquatic",
  20474. image: {
  20475. source: "./media/characters/tahajin/aquatic.svg",
  20476. extra: 572 / 542,
  20477. bottom: 0.04
  20478. }
  20479. },
  20480. chow: {
  20481. height: math.unit(8 + 11 / 12, "feet"),
  20482. weight: math.unit(450, "lb"),
  20483. name: "Chow",
  20484. image: {
  20485. source: "./media/characters/tahajin/chow.svg",
  20486. extra: 660 / 640,
  20487. bottom: 0.015
  20488. }
  20489. },
  20490. demiNaga: {
  20491. height: math.unit(6 + 8 / 12, "feet"),
  20492. weight: math.unit(300, "lb"),
  20493. name: "Demi Naga",
  20494. image: {
  20495. source: "./media/characters/tahajin/demi-naga.svg",
  20496. extra: 643 / 615,
  20497. bottom: 0.1
  20498. }
  20499. },
  20500. data: {
  20501. height: math.unit(5, "inches"),
  20502. weight: math.unit(0.1, "lb"),
  20503. name: "Data",
  20504. image: {
  20505. source: "./media/characters/tahajin/data.svg"
  20506. }
  20507. },
  20508. fluu: {
  20509. height: math.unit(5 + 7 / 12, "feet"),
  20510. weight: math.unit(140, "lb"),
  20511. name: "Fluu",
  20512. image: {
  20513. source: "./media/characters/tahajin/fluu.svg",
  20514. extra: 628 / 592,
  20515. bottom: 0.02
  20516. }
  20517. },
  20518. starWarrior: {
  20519. height: math.unit(4 + 5 / 12, "feet"),
  20520. weight: math.unit(50, "lb"),
  20521. name: "Star Warrior",
  20522. image: {
  20523. source: "./media/characters/tahajin/star-warrior.svg"
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Normal",
  20530. height: math.unit(25 + 6 / 12, "feet"),
  20531. default: true
  20532. },
  20533. ]
  20534. ))
  20535. characterMakers.push(() => makeCharacter(
  20536. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20537. {
  20538. front: {
  20539. height: math.unit(8, "feet"),
  20540. weight: math.unit(350, "lb"),
  20541. name: "Front",
  20542. image: {
  20543. source: "./media/characters/gabira/front.svg",
  20544. extra: 608 / 580,
  20545. bottom: 0.03
  20546. }
  20547. },
  20548. back: {
  20549. height: math.unit(8, "feet"),
  20550. weight: math.unit(350, "lb"),
  20551. name: "Back",
  20552. image: {
  20553. source: "./media/characters/gabira/back.svg",
  20554. extra: 608 / 580,
  20555. bottom: 0.03
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(8, "feet"),
  20563. default: true
  20564. },
  20565. ]
  20566. ))
  20567. characterMakers.push(() => makeCharacter(
  20568. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20569. {
  20570. front: {
  20571. height: math.unit(5 + 3 / 12, "feet"),
  20572. weight: math.unit(137, "lb"),
  20573. name: "Front",
  20574. image: {
  20575. source: "./media/characters/sasha-katraine/front.svg",
  20576. bottom: 0.045
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Micro",
  20583. height: math.unit(5, "inches")
  20584. },
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(5 + 3 / 12, "feet"),
  20588. default: true
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20594. {
  20595. side: {
  20596. height: math.unit(4, "inches"),
  20597. weight: math.unit(200, "grams"),
  20598. name: "Side",
  20599. image: {
  20600. source: "./media/characters/der/side.svg",
  20601. extra: 719 / 400,
  20602. bottom: 30.6 / 749.9187
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Micro",
  20609. height: math.unit(4, "inches"),
  20610. default: true
  20611. },
  20612. ]
  20613. ))
  20614. characterMakers.push(() => makeCharacter(
  20615. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20616. {
  20617. side: {
  20618. height: math.unit(30, "meters"),
  20619. weight: math.unit(700, "tonnes"),
  20620. name: "Side",
  20621. image: {
  20622. source: "./media/characters/fixerdragon/side.svg",
  20623. extra: (1293.0514 - 116.03) / 1106.86,
  20624. bottom: 116.03 / 1293.0514
  20625. }
  20626. },
  20627. },
  20628. [
  20629. {
  20630. name: "Planck",
  20631. height: math.unit(1.6e-35, "meters")
  20632. },
  20633. {
  20634. name: "Micro",
  20635. height: math.unit(0.4, "meters")
  20636. },
  20637. {
  20638. name: "Normal",
  20639. height: math.unit(30, "meters"),
  20640. default: true
  20641. },
  20642. {
  20643. name: "Megamacro",
  20644. height: math.unit(1.2, "megameters")
  20645. },
  20646. {
  20647. name: "Teramacro",
  20648. height: math.unit(130, "terameters")
  20649. },
  20650. {
  20651. name: "Yottamacro",
  20652. height: math.unit(6200, "yottameters")
  20653. },
  20654. ]
  20655. ));
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(8, "feet"),
  20661. weight: math.unit(250, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/kite/front.svg",
  20665. extra: 2796 / 2659,
  20666. bottom: 0.002
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(8, "feet"),
  20674. default: true
  20675. },
  20676. {
  20677. name: "Macro",
  20678. height: math.unit(360, "feet")
  20679. },
  20680. {
  20681. name: "Megamacro",
  20682. height: math.unit(1500, "feet")
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(5 + 10 / 12, "feet"),
  20691. weight: math.unit(150, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/poojawa-vynar/front.svg",
  20695. extra: (1506.1547 - 55) / 1356.6,
  20696. bottom: 55 / 1506.1547
  20697. }
  20698. },
  20699. frontTailless: {
  20700. height: math.unit(5 + 10 / 12, "feet"),
  20701. weight: math.unit(150, "lb"),
  20702. name: "Front (Tailless)",
  20703. image: {
  20704. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20705. extra: (1506.1547 - 55) / 1356.6,
  20706. bottom: 55 / 1506.1547
  20707. }
  20708. },
  20709. },
  20710. [
  20711. {
  20712. name: "Normal",
  20713. height: math.unit(5 + 10 / 12, "feet"),
  20714. default: true
  20715. },
  20716. ]
  20717. ))
  20718. characterMakers.push(() => makeCharacter(
  20719. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20720. {
  20721. front: {
  20722. height: math.unit(293, "meters"),
  20723. weight: math.unit(70400, "tons"),
  20724. name: "Front",
  20725. image: {
  20726. source: "./media/characters/violette/front.svg",
  20727. extra: 1227 / 1180,
  20728. bottom: 0.005
  20729. }
  20730. },
  20731. back: {
  20732. height: math.unit(293, "meters"),
  20733. weight: math.unit(70400, "tons"),
  20734. name: "Back",
  20735. image: {
  20736. source: "./media/characters/violette/back.svg",
  20737. extra: 1227 / 1180,
  20738. bottom: 0.005
  20739. }
  20740. },
  20741. },
  20742. [
  20743. {
  20744. name: "Macro",
  20745. height: math.unit(293, "meters"),
  20746. default: true
  20747. },
  20748. ]
  20749. ))
  20750. characterMakers.push(() => makeCharacter(
  20751. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20752. {
  20753. front: {
  20754. height: math.unit(1050, "feet"),
  20755. weight: math.unit(200000, "tons"),
  20756. name: "Front",
  20757. image: {
  20758. source: "./media/characters/alessandra/front.svg",
  20759. extra: 960 / 912,
  20760. bottom: 0.06
  20761. }
  20762. },
  20763. },
  20764. [
  20765. {
  20766. name: "Macro",
  20767. height: math.unit(1050, "feet")
  20768. },
  20769. {
  20770. name: "Macro+",
  20771. height: math.unit(900, "meters"),
  20772. default: true
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20778. {
  20779. front: {
  20780. height: math.unit(5, "feet"),
  20781. weight: math.unit(187, "lb"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/person/front.svg",
  20785. extra: 3087 / 2945,
  20786. bottom: 91 / 3181
  20787. }
  20788. },
  20789. },
  20790. [
  20791. {
  20792. name: "Micro",
  20793. height: math.unit(3, "inches")
  20794. },
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(5, "feet"),
  20798. default: true
  20799. },
  20800. {
  20801. name: "Macro",
  20802. height: math.unit(90, "feet")
  20803. },
  20804. {
  20805. name: "Max Size",
  20806. height: math.unit(280, "feet")
  20807. },
  20808. ]
  20809. ))
  20810. characterMakers.push(() => makeCharacter(
  20811. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20812. {
  20813. front: {
  20814. height: math.unit(4.5, "meters"),
  20815. weight: math.unit(3200, "lb"),
  20816. name: "Front",
  20817. image: {
  20818. source: "./media/characters/ty/front.svg",
  20819. extra: 1038 / 960,
  20820. bottom: 31.156 / 1068
  20821. }
  20822. },
  20823. back: {
  20824. height: math.unit(4.5, "meters"),
  20825. weight: math.unit(3200, "lb"),
  20826. name: "Back",
  20827. image: {
  20828. source: "./media/characters/ty/back.svg",
  20829. extra: 1044 / 966,
  20830. bottom: 7.48 / 1049
  20831. }
  20832. },
  20833. },
  20834. [
  20835. {
  20836. name: "Normal",
  20837. height: math.unit(4.5, "meters"),
  20838. default: true
  20839. },
  20840. ]
  20841. ))
  20842. characterMakers.push(() => makeCharacter(
  20843. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20844. {
  20845. front: {
  20846. height: math.unit(5 + 4 / 12, "feet"),
  20847. weight: math.unit(115, "lb"),
  20848. name: "Front",
  20849. image: {
  20850. source: "./media/characters/rocky/front.svg",
  20851. extra: 1012 / 975,
  20852. bottom: 54 / 1066
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Normal",
  20859. height: math.unit(5 + 4 / 12, "feet"),
  20860. default: true
  20861. },
  20862. ]
  20863. ))
  20864. characterMakers.push(() => makeCharacter(
  20865. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20866. {
  20867. upright: {
  20868. height: math.unit(6, "meters"),
  20869. weight: math.unit(4000, "kg"),
  20870. name: "Upright",
  20871. image: {
  20872. source: "./media/characters/ruin/upright.svg",
  20873. extra: 668 / 661,
  20874. bottom: 42 / 799.8396
  20875. }
  20876. },
  20877. },
  20878. [
  20879. {
  20880. name: "Normal",
  20881. height: math.unit(6, "meters"),
  20882. default: true
  20883. },
  20884. ]
  20885. ))
  20886. characterMakers.push(() => makeCharacter(
  20887. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20888. {
  20889. front: {
  20890. height: math.unit(5, "feet"),
  20891. weight: math.unit(106, "lb"),
  20892. name: "Front",
  20893. image: {
  20894. source: "./media/characters/robin/front.svg",
  20895. extra: 862 / 799,
  20896. bottom: 42.4 / 914.8856
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(5, "feet"),
  20904. default: true
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20910. {
  20911. side: {
  20912. height: math.unit(3, "feet"),
  20913. weight: math.unit(225, "lb"),
  20914. name: "Side",
  20915. image: {
  20916. source: "./media/characters/saian/side.svg",
  20917. extra: 566 / 356,
  20918. bottom: 79.7 / 643
  20919. }
  20920. },
  20921. maw: {
  20922. height: math.unit(2.85, "feet"),
  20923. name: "Maw",
  20924. image: {
  20925. source: "./media/characters/saian/maw.svg"
  20926. }
  20927. },
  20928. },
  20929. [
  20930. {
  20931. name: "Normal",
  20932. height: math.unit(3, "feet"),
  20933. default: true
  20934. },
  20935. ]
  20936. ))
  20937. characterMakers.push(() => makeCharacter(
  20938. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20939. {
  20940. side: {
  20941. height: math.unit(8, "feet"),
  20942. weight: math.unit(300, "lb"),
  20943. name: "Side",
  20944. image: {
  20945. source: "./media/characters/equus-silvermane/side.svg",
  20946. extra: 2176 / 2050,
  20947. bottom: 65.7 / 2245
  20948. }
  20949. },
  20950. front: {
  20951. height: math.unit(8, "feet"),
  20952. weight: math.unit(300, "lb"),
  20953. name: "Front",
  20954. image: {
  20955. source: "./media/characters/equus-silvermane/front.svg",
  20956. extra: 4633 / 4400,
  20957. bottom: 71.3 / 4706.915
  20958. }
  20959. },
  20960. sideStepping: {
  20961. height: math.unit(8, "feet"),
  20962. weight: math.unit(300, "lb"),
  20963. name: "Side (Stepping)",
  20964. image: {
  20965. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20966. extra: 1968 / 1860,
  20967. bottom: 16.4 / 1989
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(8, "feet")
  20975. },
  20976. {
  20977. name: "Minimacro",
  20978. height: math.unit(75, "feet"),
  20979. default: true
  20980. },
  20981. {
  20982. name: "Macro",
  20983. height: math.unit(150, "feet")
  20984. },
  20985. {
  20986. name: "Macro+",
  20987. height: math.unit(1000, "feet")
  20988. },
  20989. {
  20990. name: "Megamacro",
  20991. height: math.unit(1, "mile")
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20997. {
  20998. side: {
  20999. height: math.unit(20, "feet"),
  21000. weight: math.unit(30000, "kg"),
  21001. name: "Side",
  21002. image: {
  21003. source: "./media/characters/windar/side.svg",
  21004. extra: 1491 / 1248,
  21005. bottom: 82.56 / 1568
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(20, "feet"),
  21013. default: true
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21019. {
  21020. side: {
  21021. height: math.unit(15.66, "feet"),
  21022. weight: math.unit(150, "lb"),
  21023. name: "Side",
  21024. image: {
  21025. source: "./media/characters/melody/side.svg",
  21026. extra: 1097 / 944,
  21027. bottom: 11.8 / 1109
  21028. }
  21029. },
  21030. sideOutfit: {
  21031. height: math.unit(15.66, "feet"),
  21032. weight: math.unit(150, "lb"),
  21033. name: "Side (Outfit)",
  21034. image: {
  21035. source: "./media/characters/melody/side-outfit.svg",
  21036. extra: 1097 / 944,
  21037. bottom: 11.8 / 1109
  21038. }
  21039. },
  21040. },
  21041. [
  21042. {
  21043. name: "Normal",
  21044. height: math.unit(15.66, "feet"),
  21045. default: true
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21051. {
  21052. front: {
  21053. height: math.unit(8, "feet"),
  21054. weight: math.unit(325, "lb"),
  21055. name: "Front",
  21056. image: {
  21057. source: "./media/characters/windera/front.svg",
  21058. extra: 3180 / 2845,
  21059. bottom: 178 / 3365
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(8, "feet"),
  21067. default: true
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21073. {
  21074. front: {
  21075. height: math.unit(28.75, "feet"),
  21076. weight: math.unit(2000, "kg"),
  21077. name: "Front",
  21078. image: {
  21079. source: "./media/characters/sonear/front.svg",
  21080. extra: 1041.1 / 964.9,
  21081. bottom: 53.7 / 1096.6
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(28.75, "feet"),
  21089. default: true
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21095. {
  21096. side: {
  21097. height: math.unit(25.5, "feet"),
  21098. weight: math.unit(23000, "kg"),
  21099. name: "Side",
  21100. image: {
  21101. source: "./media/characters/kanara/side.svg"
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Normal",
  21108. height: math.unit(25.5, "feet"),
  21109. default: true
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21115. {
  21116. side: {
  21117. height: math.unit(10, "feet"),
  21118. weight: math.unit(1000, "kg"),
  21119. name: "Side",
  21120. image: {
  21121. source: "./media/characters/ereus/side.svg",
  21122. extra: 1157 / 959,
  21123. bottom: 153 / 1312.5
  21124. }
  21125. },
  21126. },
  21127. [
  21128. {
  21129. name: "Normal",
  21130. height: math.unit(10, "feet"),
  21131. default: true
  21132. },
  21133. ]
  21134. ))
  21135. characterMakers.push(() => makeCharacter(
  21136. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21137. {
  21138. side: {
  21139. height: math.unit(4.5, "feet"),
  21140. weight: math.unit(500, "lb"),
  21141. name: "Side",
  21142. image: {
  21143. source: "./media/characters/e-ter/side.svg",
  21144. extra: 1550 / 1248,
  21145. bottom: 146 / 1694
  21146. }
  21147. },
  21148. },
  21149. [
  21150. {
  21151. name: "Normal",
  21152. height: math.unit(4.5, "feet"),
  21153. default: true
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21159. {
  21160. side: {
  21161. height: math.unit(9.7, "feet"),
  21162. weight: math.unit(4000, "kg"),
  21163. name: "Side",
  21164. image: {
  21165. source: "./media/characters/yamie/side.svg"
  21166. }
  21167. },
  21168. },
  21169. [
  21170. {
  21171. name: "Normal",
  21172. height: math.unit(9.7, "feet"),
  21173. default: true
  21174. },
  21175. ]
  21176. ))
  21177. characterMakers.push(() => makeCharacter(
  21178. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21179. {
  21180. front: {
  21181. height: math.unit(50, "feet"),
  21182. weight: math.unit(50000, "kg"),
  21183. name: "Front",
  21184. image: {
  21185. source: "./media/characters/anders/front.svg",
  21186. extra: 570 / 539,
  21187. bottom: 14.7 / 586.7
  21188. }
  21189. },
  21190. },
  21191. [
  21192. {
  21193. name: "Large",
  21194. height: math.unit(50, "feet")
  21195. },
  21196. {
  21197. name: "Macro",
  21198. height: math.unit(2000, "feet"),
  21199. default: true
  21200. },
  21201. {
  21202. name: "Megamacro",
  21203. height: math.unit(12, "miles")
  21204. },
  21205. ]
  21206. ))
  21207. characterMakers.push(() => makeCharacter(
  21208. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21209. {
  21210. front: {
  21211. height: math.unit(7 + 2 / 12, "feet"),
  21212. weight: math.unit(300, "lb"),
  21213. name: "Front",
  21214. image: {
  21215. source: "./media/characters/reban/front.svg",
  21216. extra: 516 / 487,
  21217. bottom: 42.82 / 558.356
  21218. }
  21219. },
  21220. dick: {
  21221. height: math.unit(7 / 5, "feet"),
  21222. name: "Dick",
  21223. image: {
  21224. source: "./media/characters/reban/dick.svg"
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Natural Height",
  21231. height: math.unit(7 + 2 / 12, "feet")
  21232. },
  21233. {
  21234. name: "Macro",
  21235. height: math.unit(500, "feet"),
  21236. default: true
  21237. },
  21238. {
  21239. name: "Canon Height",
  21240. height: math.unit(50, "AU")
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21246. {
  21247. front: {
  21248. height: math.unit(6, "feet"),
  21249. weight: math.unit(150, "lb"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/terrance-keayes/front.svg",
  21253. extra: 1.005,
  21254. bottom: 151 / 1615
  21255. }
  21256. },
  21257. side: {
  21258. height: math.unit(6, "feet"),
  21259. weight: math.unit(150, "lb"),
  21260. name: "Side",
  21261. image: {
  21262. source: "./media/characters/terrance-keayes/side.svg",
  21263. extra: 1.005,
  21264. bottom: 129.4 / 1544
  21265. }
  21266. },
  21267. back: {
  21268. height: math.unit(6, "feet"),
  21269. weight: math.unit(150, "lb"),
  21270. name: "Back",
  21271. image: {
  21272. source: "./media/characters/terrance-keayes/back.svg",
  21273. extra: 1.005,
  21274. bottom: 58.4 / 1557.3
  21275. }
  21276. },
  21277. dick: {
  21278. height: math.unit(6 * 0.208, "feet"),
  21279. name: "Dick",
  21280. image: {
  21281. source: "./media/characters/terrance-keayes/dick.svg"
  21282. }
  21283. },
  21284. },
  21285. [
  21286. {
  21287. name: "Canon Height",
  21288. height: math.unit(35, "miles"),
  21289. default: true
  21290. },
  21291. ]
  21292. ))
  21293. characterMakers.push(() => makeCharacter(
  21294. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21295. {
  21296. front: {
  21297. height: math.unit(6, "feet"),
  21298. weight: math.unit(150, "lb"),
  21299. name: "Front",
  21300. image: {
  21301. source: "./media/characters/ofelia/front.svg",
  21302. extra: 546 / 541,
  21303. bottom: 39 / 583
  21304. }
  21305. },
  21306. back: {
  21307. height: math.unit(6, "feet"),
  21308. weight: math.unit(150, "lb"),
  21309. name: "Back",
  21310. image: {
  21311. source: "./media/characters/ofelia/back.svg",
  21312. extra: 564 / 559.5,
  21313. bottom: 8.69 / 573.02
  21314. }
  21315. },
  21316. maw: {
  21317. height: math.unit(1, "feet"),
  21318. name: "Maw",
  21319. image: {
  21320. source: "./media/characters/ofelia/maw.svg"
  21321. }
  21322. },
  21323. foot: {
  21324. height: math.unit(1.949, "feet"),
  21325. name: "Foot",
  21326. image: {
  21327. source: "./media/characters/ofelia/foot.svg"
  21328. }
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Canon Height",
  21334. height: math.unit(2000, "miles"),
  21335. default: true
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(6, "feet"),
  21344. weight: math.unit(150, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/samuel/front.svg",
  21348. extra: 265 / 258,
  21349. bottom: 2 / 266.1566
  21350. }
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Macro",
  21356. height: math.unit(100, "feet"),
  21357. default: true
  21358. },
  21359. {
  21360. name: "Full Size",
  21361. height: math.unit(1000, "miles")
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21367. {
  21368. front: {
  21369. height: math.unit(6, "feet"),
  21370. weight: math.unit(300, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/beishir-kiel/front.svg",
  21374. extra: 569 / 547,
  21375. bottom: 41.9 / 609
  21376. }
  21377. },
  21378. maw: {
  21379. height: math.unit(6 * 0.202, "feet"),
  21380. name: "Maw",
  21381. image: {
  21382. source: "./media/characters/beishir-kiel/maw.svg"
  21383. }
  21384. },
  21385. },
  21386. [
  21387. {
  21388. name: "Macro",
  21389. height: math.unit(300, "feet"),
  21390. default: true
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21396. {
  21397. front: {
  21398. height: math.unit(5 + 8 / 12, "feet"),
  21399. weight: math.unit(120, "lb"),
  21400. name: "Front",
  21401. image: {
  21402. source: "./media/characters/logan-grey/front.svg",
  21403. extra: 2539 / 2393,
  21404. bottom: 97.6 / 2636.37
  21405. }
  21406. },
  21407. frontAlt: {
  21408. height: math.unit(5 + 8 / 12, "feet"),
  21409. weight: math.unit(120, "lb"),
  21410. name: "Front (Alt)",
  21411. image: {
  21412. source: "./media/characters/logan-grey/front-alt.svg",
  21413. extra: 958 / 893,
  21414. bottom: 15 / 970.768
  21415. }
  21416. },
  21417. back: {
  21418. height: math.unit(5 + 8 / 12, "feet"),
  21419. weight: math.unit(120, "lb"),
  21420. name: "Back",
  21421. image: {
  21422. source: "./media/characters/logan-grey/back.svg",
  21423. extra: 958 / 893,
  21424. bottom: 2.1881 / 970.9788
  21425. }
  21426. },
  21427. dick: {
  21428. height: math.unit(1.437, "feet"),
  21429. name: "Dick",
  21430. image: {
  21431. source: "./media/characters/logan-grey/dick.svg"
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(5 + 8 / 12, "feet")
  21439. },
  21440. {
  21441. name: "The 500 Foot Femboy",
  21442. height: math.unit(500, "feet"),
  21443. default: true
  21444. },
  21445. {
  21446. name: "Megmacro",
  21447. height: math.unit(20, "miles")
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(8 + 2 / 12, "feet"),
  21456. weight: math.unit(275, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/draganta/front.svg",
  21460. extra: 1177 / 1135,
  21461. bottom: 33.46 / 1212.1
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(8 + 6 / 12, "feet"),
  21469. default: true
  21470. },
  21471. {
  21472. name: "Macro",
  21473. height: math.unit(150, "feet")
  21474. },
  21475. {
  21476. name: "Megamacro",
  21477. height: math.unit(1000, "miles")
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21483. {
  21484. front: {
  21485. height: math.unit(1.72, "m"),
  21486. weight: math.unit(80, "lb"),
  21487. name: "Front",
  21488. image: {
  21489. source: "./media/characters/voski/front.svg",
  21490. extra: 2076.22 / 2022.4,
  21491. bottom: 102.7 / 2177.3866
  21492. }
  21493. },
  21494. frontNsfw: {
  21495. height: math.unit(1.72, "m"),
  21496. weight: math.unit(80, "lb"),
  21497. name: "Front (NSFW)",
  21498. image: {
  21499. source: "./media/characters/voski/front-nsfw.svg",
  21500. extra: 2076.22 / 2022.4,
  21501. bottom: 102.7 / 2177.3866
  21502. }
  21503. },
  21504. back: {
  21505. height: math.unit(1.72, "m"),
  21506. weight: math.unit(80, "lb"),
  21507. name: "Back",
  21508. image: {
  21509. source: "./media/characters/voski/back.svg",
  21510. extra: 2104 / 2051,
  21511. bottom: 10.45 / 2113.63
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(1.72, "m")
  21519. },
  21520. {
  21521. name: "Macro",
  21522. height: math.unit(55, "m"),
  21523. default: true
  21524. },
  21525. {
  21526. name: "Macro+",
  21527. height: math.unit(300, "m")
  21528. },
  21529. {
  21530. name: "Macro++",
  21531. height: math.unit(700, "m")
  21532. },
  21533. {
  21534. name: "Macro+++",
  21535. height: math.unit(4500, "m")
  21536. },
  21537. {
  21538. name: "Macro++++",
  21539. height: math.unit(45, "km")
  21540. },
  21541. {
  21542. name: "Macro+++++",
  21543. height: math.unit(1220, "km")
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21549. {
  21550. front: {
  21551. height: math.unit(2.3, "m"),
  21552. weight: math.unit(304, "kg"),
  21553. name: "Front",
  21554. image: {
  21555. source: "./media/characters/icowom-lee/front.svg",
  21556. extra: 985 / 955,
  21557. bottom: 25.4 / 1012
  21558. }
  21559. },
  21560. fronttentacles: {
  21561. height: math.unit(2.3, "m"),
  21562. weight: math.unit(304, "kg"),
  21563. name: "Front-tentacles",
  21564. image: {
  21565. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21566. extra: 985 / 955,
  21567. bottom: 25.4 / 1012
  21568. }
  21569. },
  21570. back: {
  21571. height: math.unit(2.3, "m"),
  21572. weight: math.unit(304, "kg"),
  21573. name: "Back",
  21574. image: {
  21575. source: "./media/characters/icowom-lee/back.svg",
  21576. extra: 975 / 954,
  21577. bottom: 9.5 / 985
  21578. }
  21579. },
  21580. backtentacles: {
  21581. height: math.unit(2.3, "m"),
  21582. weight: math.unit(304, "kg"),
  21583. name: "Back-tentacles",
  21584. image: {
  21585. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21586. extra: 975 / 954,
  21587. bottom: 9.5 / 985
  21588. }
  21589. },
  21590. frontDressed: {
  21591. height: math.unit(2.3, "m"),
  21592. weight: math.unit(304, "kg"),
  21593. name: "Front (Dressed)",
  21594. image: {
  21595. source: "./media/characters/icowom-lee/front-dressed.svg",
  21596. extra: 3076 / 2933,
  21597. bottom: 51.4 / 3125.1889
  21598. }
  21599. },
  21600. rump: {
  21601. height: math.unit(0.776, "meters"),
  21602. name: "Rump",
  21603. image: {
  21604. source: "./media/characters/icowom-lee/rump.svg"
  21605. }
  21606. },
  21607. genitals: {
  21608. height: math.unit(0.78, "meters"),
  21609. name: "Genitals",
  21610. image: {
  21611. source: "./media/characters/icowom-lee/genitals.svg"
  21612. }
  21613. },
  21614. },
  21615. [
  21616. {
  21617. name: "Normal",
  21618. height: math.unit(2.3, "meters"),
  21619. default: true
  21620. },
  21621. {
  21622. name: "Macro",
  21623. height: math.unit(94, "meters"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(22, "meters"),
  21633. weight: math.unit(21000, "kg"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/shock-diamond/front.svg",
  21637. extra: 2204 / 2053,
  21638. bottom: 65 / 2239.47
  21639. }
  21640. },
  21641. frontNude: {
  21642. height: math.unit(22, "meters"),
  21643. weight: math.unit(21000, "kg"),
  21644. name: "Front (Nude)",
  21645. image: {
  21646. source: "./media/characters/shock-diamond/front-nude.svg",
  21647. extra: 2514 / 2285,
  21648. bottom: 13 / 2527.56
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(3, "meters")
  21656. },
  21657. {
  21658. name: "Macro",
  21659. height: math.unit(22, "meters"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(5 + 4 / 12, "feet"),
  21669. weight: math.unit(120, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/rory/front.svg",
  21673. extra: 589 / 556,
  21674. bottom: 45.7 / 635.76
  21675. }
  21676. },
  21677. frontNude: {
  21678. height: math.unit(5 + 4 / 12, "feet"),
  21679. weight: math.unit(120, "lb"),
  21680. name: "Front (Nude)",
  21681. image: {
  21682. source: "./media/characters/rory/front-nude.svg",
  21683. extra: 589 / 556,
  21684. bottom: 45.7 / 635.76
  21685. }
  21686. },
  21687. side: {
  21688. height: math.unit(5 + 4 / 12, "feet"),
  21689. weight: math.unit(120, "lb"),
  21690. name: "Side",
  21691. image: {
  21692. source: "./media/characters/rory/side.svg",
  21693. extra: 597 / 564,
  21694. bottom: 55 / 653
  21695. }
  21696. },
  21697. back: {
  21698. height: math.unit(5 + 4 / 12, "feet"),
  21699. weight: math.unit(120, "lb"),
  21700. name: "Back",
  21701. image: {
  21702. source: "./media/characters/rory/back.svg",
  21703. extra: 620 / 585,
  21704. bottom: 8.86 / 630.43
  21705. }
  21706. },
  21707. dick: {
  21708. height: math.unit(0.86, "feet"),
  21709. name: "Dick",
  21710. image: {
  21711. source: "./media/characters/rory/dick.svg"
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(5 + 4 / 12, "feet"),
  21719. default: true
  21720. },
  21721. {
  21722. name: "Macro",
  21723. height: math.unit(100, "feet")
  21724. },
  21725. {
  21726. name: "Macro+",
  21727. height: math.unit(140, "feet")
  21728. },
  21729. {
  21730. name: "Macro++",
  21731. height: math.unit(300, "feet")
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21737. {
  21738. front: {
  21739. height: math.unit(5 + 9 / 12, "feet"),
  21740. weight: math.unit(190, "lb"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/sprisk/front.svg",
  21744. extra: 1225 / 1180,
  21745. bottom: 42.7 / 1266.4
  21746. }
  21747. },
  21748. frontNsfw: {
  21749. height: math.unit(5 + 9 / 12, "feet"),
  21750. weight: math.unit(190, "lb"),
  21751. name: "Front (NSFW)",
  21752. image: {
  21753. source: "./media/characters/sprisk/front-nsfw.svg",
  21754. extra: 1225 / 1180,
  21755. bottom: 42.7 / 1266.4
  21756. }
  21757. },
  21758. back: {
  21759. height: math.unit(5 + 9 / 12, "feet"),
  21760. weight: math.unit(190, "lb"),
  21761. name: "Back",
  21762. image: {
  21763. source: "./media/characters/sprisk/back.svg",
  21764. extra: 1247 / 1200,
  21765. bottom: 5.6 / 1253.04
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Tiny",
  21772. height: math.unit(2, "inches")
  21773. },
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(5 + 9 / 12, "feet"),
  21777. default: true
  21778. },
  21779. {
  21780. name: "Mini Macro",
  21781. height: math.unit(18, "feet")
  21782. },
  21783. {
  21784. name: "Macro",
  21785. height: math.unit(100, "feet")
  21786. },
  21787. {
  21788. name: "MACRO",
  21789. height: math.unit(50, "miles")
  21790. },
  21791. {
  21792. name: "M A C R O",
  21793. height: math.unit(300, "miles")
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21799. {
  21800. side: {
  21801. height: math.unit(15.6, "meters"),
  21802. weight: math.unit(700000, "kg"),
  21803. name: "Side",
  21804. image: {
  21805. source: "./media/characters/bunsen/side.svg",
  21806. extra: 1644 / 358
  21807. }
  21808. },
  21809. foot: {
  21810. height: math.unit(1.611 * 1644 / 358, "meter"),
  21811. name: "Foot",
  21812. image: {
  21813. source: "./media/characters/bunsen/foot.svg"
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Small",
  21820. height: math.unit(10, "feet")
  21821. },
  21822. {
  21823. name: "Normal",
  21824. height: math.unit(15.6, "meters"),
  21825. default: true
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21831. {
  21832. front: {
  21833. height: math.unit(4 + 11 / 12, "feet"),
  21834. weight: math.unit(140, "lb"),
  21835. name: "Front",
  21836. image: {
  21837. source: "./media/characters/sesh/front.svg",
  21838. extra: 3420 / 3231,
  21839. bottom: 72 / 3949.5
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Normal",
  21846. height: math.unit(4 + 11 / 12, "feet")
  21847. },
  21848. {
  21849. name: "Grown",
  21850. height: math.unit(15, "feet"),
  21851. default: true
  21852. },
  21853. {
  21854. name: "Macro",
  21855. height: math.unit(1500, "feet")
  21856. },
  21857. {
  21858. name: "Megamacro",
  21859. height: math.unit(30, "miles")
  21860. },
  21861. {
  21862. name: "Continental",
  21863. height: math.unit(3000, "miles")
  21864. },
  21865. {
  21866. name: "Gravity Mass",
  21867. height: math.unit(300000, "miles")
  21868. },
  21869. {
  21870. name: "Planet Buster",
  21871. height: math.unit(30000000, "miles")
  21872. },
  21873. {
  21874. name: "Big",
  21875. height: math.unit(3000000000, "miles")
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(9, "feet"),
  21884. weight: math.unit(350, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/pepper/front.svg",
  21888. extra: 1448 / 1312,
  21889. bottom: 9.4 / 1457.88
  21890. }
  21891. },
  21892. back: {
  21893. height: math.unit(9, "feet"),
  21894. weight: math.unit(350, "lb"),
  21895. name: "Back",
  21896. image: {
  21897. source: "./media/characters/pepper/back.svg",
  21898. extra: 1423 / 1300,
  21899. bottom: 4.6 / 1429
  21900. }
  21901. },
  21902. maw: {
  21903. height: math.unit(0.932, "feet"),
  21904. name: "Maw",
  21905. image: {
  21906. source: "./media/characters/pepper/maw.svg"
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Normal",
  21913. height: math.unit(9, "feet"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21920. {
  21921. front: {
  21922. height: math.unit(6, "feet"),
  21923. weight: math.unit(150, "lb"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/maelstrom/front.svg",
  21927. extra: 2100 / 1883,
  21928. bottom: 94 / 2196.7
  21929. }
  21930. },
  21931. },
  21932. [
  21933. {
  21934. name: "Less Kaiju",
  21935. height: math.unit(200, "feet")
  21936. },
  21937. {
  21938. name: "Kaiju",
  21939. height: math.unit(400, "feet"),
  21940. default: true
  21941. },
  21942. {
  21943. name: "Kaiju-er",
  21944. height: math.unit(600, "feet")
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21950. {
  21951. front: {
  21952. height: math.unit(6 + 5 / 12, "feet"),
  21953. weight: math.unit(180, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/lexir/front.svg",
  21957. extra: 180 / 172,
  21958. bottom: 12 / 192
  21959. }
  21960. },
  21961. back: {
  21962. height: math.unit(6 + 5 / 12, "feet"),
  21963. weight: math.unit(180, "lb"),
  21964. name: "Back",
  21965. image: {
  21966. source: "./media/characters/lexir/back.svg",
  21967. extra: 183.84 / 175.5,
  21968. bottom: 3.1 / 187
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Very Smal",
  21975. height: math.unit(1, "nm")
  21976. },
  21977. {
  21978. name: "Normal",
  21979. height: math.unit(6 + 5 / 12, "feet"),
  21980. default: true
  21981. },
  21982. {
  21983. name: "Macro",
  21984. height: math.unit(1, "mile")
  21985. },
  21986. {
  21987. name: "Megamacro",
  21988. height: math.unit(50, "miles")
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21994. {
  21995. front: {
  21996. height: math.unit(1.5, "meters"),
  21997. weight: math.unit(100, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/maksio/front.svg",
  22001. extra: 1549 / 1531,
  22002. bottom: 123.7 / 1674.5429
  22003. }
  22004. },
  22005. back: {
  22006. height: math.unit(1.5, "meters"),
  22007. weight: math.unit(100, "lb"),
  22008. name: "Back",
  22009. image: {
  22010. source: "./media/characters/maksio/back.svg",
  22011. extra: 1541 / 1509,
  22012. bottom: 97 / 1639
  22013. }
  22014. },
  22015. hand: {
  22016. height: math.unit(0.621, "feet"),
  22017. name: "Hand",
  22018. image: {
  22019. source: "./media/characters/maksio/hand.svg"
  22020. }
  22021. },
  22022. foot: {
  22023. height: math.unit(1.611, "feet"),
  22024. name: "Foot",
  22025. image: {
  22026. source: "./media/characters/maksio/foot.svg"
  22027. }
  22028. },
  22029. },
  22030. [
  22031. {
  22032. name: "Shrunken",
  22033. height: math.unit(10, "cm")
  22034. },
  22035. {
  22036. name: "Normal",
  22037. height: math.unit(150, "cm"),
  22038. default: true
  22039. },
  22040. ]
  22041. ))
  22042. characterMakers.push(() => makeCharacter(
  22043. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22044. {
  22045. front: {
  22046. height: math.unit(100, "feet"),
  22047. name: "Front",
  22048. image: {
  22049. source: "./media/characters/erza-bear/front.svg",
  22050. extra: 2449 / 2390,
  22051. bottom: 46 / 2494
  22052. }
  22053. },
  22054. back: {
  22055. height: math.unit(100, "feet"),
  22056. name: "Back",
  22057. image: {
  22058. source: "./media/characters/erza-bear/back.svg",
  22059. extra: 2489 / 2430,
  22060. bottom: 85.4 / 2480
  22061. }
  22062. },
  22063. tail: {
  22064. height: math.unit(42, "feet"),
  22065. name: "Tail",
  22066. image: {
  22067. source: "./media/characters/erza-bear/tail.svg"
  22068. }
  22069. },
  22070. tongue: {
  22071. height: math.unit(8, "feet"),
  22072. name: "Tongue",
  22073. image: {
  22074. source: "./media/characters/erza-bear/tongue.svg"
  22075. }
  22076. },
  22077. dick: {
  22078. height: math.unit(10.5, "feet"),
  22079. name: "Dick",
  22080. image: {
  22081. source: "./media/characters/erza-bear/dick.svg"
  22082. }
  22083. },
  22084. dickVertical: {
  22085. height: math.unit(16.9, "feet"),
  22086. name: "Dick (Vertical)",
  22087. image: {
  22088. source: "./media/characters/erza-bear/dick-vertical.svg"
  22089. }
  22090. },
  22091. },
  22092. [
  22093. {
  22094. name: "Macro",
  22095. height: math.unit(100, "feet"),
  22096. default: true
  22097. },
  22098. ]
  22099. ))
  22100. characterMakers.push(() => makeCharacter(
  22101. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22102. {
  22103. front: {
  22104. height: math.unit(172, "cm"),
  22105. weight: math.unit(73, "kg"),
  22106. name: "Front",
  22107. image: {
  22108. source: "./media/characters/violet-flor/front.svg",
  22109. extra: 1530 / 1442,
  22110. bottom: 61.9 / 1588.8
  22111. }
  22112. },
  22113. back: {
  22114. height: math.unit(180, "cm"),
  22115. weight: math.unit(73, "kg"),
  22116. name: "Back",
  22117. image: {
  22118. source: "./media/characters/violet-flor/back.svg",
  22119. extra: 1692 / 1630,
  22120. bottom: 20 / 1712
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(172, "cm"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(6, "feet"),
  22137. weight: math.unit(220, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/lynn-rhea/front.svg",
  22141. extra: 310 / 273
  22142. }
  22143. },
  22144. back: {
  22145. height: math.unit(6, "feet"),
  22146. weight: math.unit(220, "lb"),
  22147. name: "Back",
  22148. image: {
  22149. source: "./media/characters/lynn-rhea/back.svg",
  22150. extra: 310 / 273
  22151. }
  22152. },
  22153. dicks: {
  22154. height: math.unit(0.9, "feet"),
  22155. name: "Dicks",
  22156. image: {
  22157. source: "./media/characters/lynn-rhea/dicks.svg"
  22158. }
  22159. },
  22160. slit: {
  22161. height: math.unit(0.4, "feet"),
  22162. name: "Slit",
  22163. image: {
  22164. source: "./media/characters/lynn-rhea/slit.svg"
  22165. }
  22166. },
  22167. },
  22168. [
  22169. {
  22170. name: "Micro",
  22171. height: math.unit(1, "inch")
  22172. },
  22173. {
  22174. name: "Macro",
  22175. height: math.unit(60, "feet"),
  22176. default: true
  22177. },
  22178. {
  22179. name: "Megamacro",
  22180. height: math.unit(2, "miles")
  22181. },
  22182. {
  22183. name: "Gigamacro",
  22184. height: math.unit(3, "earths")
  22185. },
  22186. {
  22187. name: "Galactic",
  22188. height: math.unit(0.8, "galaxies")
  22189. },
  22190. ]
  22191. ))
  22192. characterMakers.push(() => makeCharacter(
  22193. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22194. {
  22195. front: {
  22196. height: math.unit(1600, "feet"),
  22197. weight: math.unit(85758785169, "kg"),
  22198. name: "Front",
  22199. image: {
  22200. source: "./media/characters/valathos/front.svg",
  22201. extra: 1451 / 1339
  22202. }
  22203. },
  22204. },
  22205. [
  22206. {
  22207. name: "Macro",
  22208. height: math.unit(1600, "feet"),
  22209. default: true
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(7 + 5 / 12, "feet"),
  22218. weight: math.unit(300, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/azula/front.svg",
  22222. extra: 3208 / 2880,
  22223. bottom: 80.2 / 3277
  22224. }
  22225. },
  22226. back: {
  22227. height: math.unit(7 + 5 / 12, "feet"),
  22228. weight: math.unit(300, "lb"),
  22229. name: "Back",
  22230. image: {
  22231. source: "./media/characters/azula/back.svg",
  22232. extra: 3169 / 2822,
  22233. bottom: 150.6 / 3321
  22234. }
  22235. },
  22236. },
  22237. [
  22238. {
  22239. name: "Normal",
  22240. height: math.unit(7 + 5 / 12, "feet"),
  22241. default: true
  22242. },
  22243. {
  22244. name: "Big",
  22245. height: math.unit(20, "feet")
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22251. {
  22252. front: {
  22253. height: math.unit(5 + 1 / 12, "feet"),
  22254. weight: math.unit(110, "lb"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/rupert/front.svg",
  22258. extra: 1549 / 1495,
  22259. bottom: 54.2 / 1604.4
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(5 + 1 / 12, "feet"),
  22267. default: true
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22273. {
  22274. front: {
  22275. height: math.unit(8 + 4 / 12, "feet"),
  22276. weight: math.unit(350, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/sheera-castellar/front.svg",
  22280. extra: 1957 / 1894,
  22281. bottom: 26.97 / 1975.017
  22282. }
  22283. },
  22284. side: {
  22285. height: math.unit(8 + 4 / 12, "feet"),
  22286. weight: math.unit(350, "lb"),
  22287. name: "Side",
  22288. image: {
  22289. source: "./media/characters/sheera-castellar/side.svg",
  22290. extra: 1957 / 1894
  22291. }
  22292. },
  22293. back: {
  22294. height: math.unit(8 + 4 / 12, "feet"),
  22295. weight: math.unit(350, "lb"),
  22296. name: "Back",
  22297. image: {
  22298. source: "./media/characters/sheera-castellar/back.svg",
  22299. extra: 1957 / 1894
  22300. }
  22301. },
  22302. angled: {
  22303. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22304. weight: math.unit(350, "lb"),
  22305. name: "Angled",
  22306. image: {
  22307. source: "./media/characters/sheera-castellar/angled.svg",
  22308. extra: 1807 / 1707,
  22309. bottom: 68 / 1875
  22310. }
  22311. },
  22312. genitals: {
  22313. height: math.unit(2.2, "feet"),
  22314. name: "Genitals",
  22315. image: {
  22316. source: "./media/characters/sheera-castellar/genitals.svg"
  22317. }
  22318. },
  22319. },
  22320. [
  22321. {
  22322. name: "Normal",
  22323. height: math.unit(8 + 4 / 12, "feet")
  22324. },
  22325. {
  22326. name: "Macro",
  22327. height: math.unit(150, "feet"),
  22328. default: true
  22329. },
  22330. {
  22331. name: "Macro+",
  22332. height: math.unit(800, "feet")
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(6, "feet"),
  22341. weight: math.unit(150, "lb"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/jaipur/front.svg",
  22345. extra: 3860 / 3731,
  22346. bottom: 287 / 4140
  22347. }
  22348. },
  22349. back: {
  22350. height: math.unit(6, "feet"),
  22351. weight: math.unit(150, "lb"),
  22352. name: "Back",
  22353. image: {
  22354. source: "./media/characters/jaipur/back.svg",
  22355. extra: 4060 / 3930,
  22356. bottom: 151 / 4200
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(1.85, "meters"),
  22364. default: true
  22365. },
  22366. {
  22367. name: "Macro",
  22368. height: math.unit(150, "meters")
  22369. },
  22370. {
  22371. name: "Macro+",
  22372. height: math.unit(0.5, "miles")
  22373. },
  22374. {
  22375. name: "Macro++",
  22376. height: math.unit(2.5, "miles")
  22377. },
  22378. {
  22379. name: "Macro+++",
  22380. height: math.unit(12, "miles")
  22381. },
  22382. {
  22383. name: "Macro++++",
  22384. height: math.unit(120, "miles")
  22385. },
  22386. {
  22387. name: "Macro+++++",
  22388. height: math.unit(1200, "miles")
  22389. },
  22390. ]
  22391. ))
  22392. characterMakers.push(() => makeCharacter(
  22393. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22394. {
  22395. front: {
  22396. height: math.unit(6, "feet"),
  22397. weight: math.unit(150, "lb"),
  22398. name: "Front",
  22399. image: {
  22400. source: "./media/characters/sheila-wolf/front.svg",
  22401. extra: 1931 / 1808,
  22402. bottom: 29.5 / 1960
  22403. }
  22404. },
  22405. dick: {
  22406. height: math.unit(1.464, "feet"),
  22407. name: "Dick",
  22408. image: {
  22409. source: "./media/characters/sheila-wolf/dick.svg"
  22410. }
  22411. },
  22412. muzzle: {
  22413. height: math.unit(0.513, "feet"),
  22414. name: "Muzzle",
  22415. image: {
  22416. source: "./media/characters/sheila-wolf/muzzle.svg"
  22417. }
  22418. },
  22419. },
  22420. [
  22421. {
  22422. name: "Macro",
  22423. height: math.unit(70, "feet"),
  22424. default: true
  22425. },
  22426. ]
  22427. ))
  22428. characterMakers.push(() => makeCharacter(
  22429. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22430. {
  22431. front: {
  22432. height: math.unit(32, "meters"),
  22433. weight: math.unit(300000, "kg"),
  22434. name: "Front",
  22435. image: {
  22436. source: "./media/characters/almor/front.svg",
  22437. extra: 1408 / 1322,
  22438. bottom: 94.6 / 1506.5
  22439. }
  22440. },
  22441. },
  22442. [
  22443. {
  22444. name: "Macro",
  22445. height: math.unit(32, "meters"),
  22446. default: true
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22452. {
  22453. front: {
  22454. height: math.unit(7, "feet"),
  22455. weight: math.unit(200, "lb"),
  22456. name: "Front",
  22457. image: {
  22458. source: "./media/characters/silver/front.svg",
  22459. extra: 472.1 / 450.5,
  22460. bottom: 26.5 / 499.424
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Normal",
  22467. height: math.unit(7, "feet"),
  22468. default: true
  22469. },
  22470. {
  22471. name: "Macro",
  22472. height: math.unit(800, "feet")
  22473. },
  22474. {
  22475. name: "Megamacro",
  22476. height: math.unit(250, "miles")
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(6, "feet"),
  22485. weight: math.unit(150, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/pliskin/front.svg",
  22489. extra: 1469 / 1359,
  22490. bottom: 70 / 1540
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Micro",
  22497. height: math.unit(3, "inches")
  22498. },
  22499. {
  22500. name: "Normal",
  22501. height: math.unit(5 + 11 / 12, "feet"),
  22502. default: true
  22503. },
  22504. {
  22505. name: "Macro",
  22506. height: math.unit(120, "feet")
  22507. },
  22508. ]
  22509. ))
  22510. characterMakers.push(() => makeCharacter(
  22511. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22512. {
  22513. front: {
  22514. height: math.unit(6, "feet"),
  22515. weight: math.unit(150, "lb"),
  22516. name: "Front",
  22517. image: {
  22518. source: "./media/characters/sammy/front.svg",
  22519. extra: 1193 / 1089,
  22520. bottom: 30.5 / 1226
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Macro",
  22527. height: math.unit(1700, "feet"),
  22528. default: true
  22529. },
  22530. {
  22531. name: "Examacro",
  22532. height: math.unit(2.5e9, "lightyears")
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(21, "meters"),
  22541. weight: math.unit(12, "tonnes"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/kuru/front.svg",
  22545. extra: 4301 / 3785,
  22546. bottom: 371.3 / 4691
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Macro",
  22553. height: math.unit(21, "meters"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(23, "meters"),
  22563. weight: math.unit(12.2, "tonnes"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/rakka/front.svg",
  22567. extra: 4670 / 4169,
  22568. bottom: 301 / 4968.7
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Macro",
  22575. height: math.unit(23, "meters"),
  22576. default: true
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22582. {
  22583. front: {
  22584. height: math.unit(6, "feet"),
  22585. weight: math.unit(150, "lb"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/rhys-feline/front.svg",
  22589. extra: 2488 / 2308,
  22590. bottom: 35.67 / 2519.19
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Really Small",
  22597. height: math.unit(1, "nm")
  22598. },
  22599. {
  22600. name: "Micro",
  22601. height: math.unit(4, "inches")
  22602. },
  22603. {
  22604. name: "Normal",
  22605. height: math.unit(4 + 10 / 12, "feet"),
  22606. default: true
  22607. },
  22608. {
  22609. name: "Macro",
  22610. height: math.unit(100, "feet")
  22611. },
  22612. {
  22613. name: "Megamacto",
  22614. height: math.unit(50, "miles")
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22620. {
  22621. side: {
  22622. height: math.unit(30, "feet"),
  22623. weight: math.unit(35000, "kg"),
  22624. name: "Side",
  22625. image: {
  22626. source: "./media/characters/alydar/side.svg",
  22627. extra: 234 / 222,
  22628. bottom: 6.5 / 241
  22629. }
  22630. },
  22631. front: {
  22632. height: math.unit(30, "feet"),
  22633. weight: math.unit(35000, "kg"),
  22634. name: "Front",
  22635. image: {
  22636. source: "./media/characters/alydar/front.svg",
  22637. extra: 223.37 / 210.2,
  22638. bottom: 22.3 / 246.76
  22639. }
  22640. },
  22641. top: {
  22642. height: math.unit(64.54, "feet"),
  22643. weight: math.unit(35000, "kg"),
  22644. name: "Top",
  22645. image: {
  22646. source: "./media/characters/alydar/top.svg"
  22647. }
  22648. },
  22649. anthro: {
  22650. height: math.unit(30, "feet"),
  22651. weight: math.unit(9000, "kg"),
  22652. name: "Anthro",
  22653. image: {
  22654. source: "./media/characters/alydar/anthro.svg",
  22655. extra: 432 / 421,
  22656. bottom: 7.18 / 440
  22657. }
  22658. },
  22659. maw: {
  22660. height: math.unit(11.693, "feet"),
  22661. name: "Maw",
  22662. image: {
  22663. source: "./media/characters/alydar/maw.svg"
  22664. }
  22665. },
  22666. head: {
  22667. height: math.unit(11.693, "feet"),
  22668. name: "Head",
  22669. image: {
  22670. source: "./media/characters/alydar/head.svg"
  22671. }
  22672. },
  22673. headAlt: {
  22674. height: math.unit(12.861, "feet"),
  22675. name: "Head (Alt)",
  22676. image: {
  22677. source: "./media/characters/alydar/head-alt.svg"
  22678. }
  22679. },
  22680. wing: {
  22681. height: math.unit(20.712, "feet"),
  22682. name: "Wing",
  22683. image: {
  22684. source: "./media/characters/alydar/wing.svg"
  22685. }
  22686. },
  22687. wingFeather: {
  22688. height: math.unit(9.662, "feet"),
  22689. name: "Wing Feather",
  22690. image: {
  22691. source: "./media/characters/alydar/wing-feather.svg"
  22692. }
  22693. },
  22694. countourFeather: {
  22695. height: math.unit(4.154, "feet"),
  22696. name: "Contour Feather",
  22697. image: {
  22698. source: "./media/characters/alydar/contour-feather.svg"
  22699. }
  22700. },
  22701. },
  22702. [
  22703. {
  22704. name: "Diplomatic",
  22705. height: math.unit(13, "feet"),
  22706. default: true
  22707. },
  22708. {
  22709. name: "Small",
  22710. height: math.unit(30, "feet")
  22711. },
  22712. {
  22713. name: "Normal",
  22714. height: math.unit(95, "feet"),
  22715. default: true
  22716. },
  22717. {
  22718. name: "Large",
  22719. height: math.unit(285, "feet")
  22720. },
  22721. {
  22722. name: "Incomprehensible",
  22723. height: math.unit(450, "megameters")
  22724. },
  22725. ]
  22726. ))
  22727. characterMakers.push(() => makeCharacter(
  22728. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22729. {
  22730. side: {
  22731. height: math.unit(11, "feet"),
  22732. weight: math.unit(1750, "kg"),
  22733. name: "Side",
  22734. image: {
  22735. source: "./media/characters/selicia/side.svg",
  22736. extra: 440 / 396,
  22737. bottom: 24.8 / 465.979
  22738. }
  22739. },
  22740. maw: {
  22741. height: math.unit(4.665, "feet"),
  22742. name: "Maw",
  22743. image: {
  22744. source: "./media/characters/selicia/maw.svg"
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(11, "feet"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22758. {
  22759. side: {
  22760. height: math.unit(2 + 6 / 12, "feet"),
  22761. weight: math.unit(30, "lb"),
  22762. name: "Side",
  22763. image: {
  22764. source: "./media/characters/layla/side.svg",
  22765. extra: 244 / 188,
  22766. bottom: 18.2 / 262.1
  22767. }
  22768. },
  22769. back: {
  22770. height: math.unit(2 + 6 / 12, "feet"),
  22771. weight: math.unit(30, "lb"),
  22772. name: "Back",
  22773. image: {
  22774. source: "./media/characters/layla/back.svg",
  22775. extra: 308 / 241.5,
  22776. bottom: 8.9 / 316.8
  22777. }
  22778. },
  22779. cumming: {
  22780. height: math.unit(2 + 6 / 12, "feet"),
  22781. weight: math.unit(30, "lb"),
  22782. name: "Cumming",
  22783. image: {
  22784. source: "./media/characters/layla/cumming.svg",
  22785. extra: 342 / 279,
  22786. bottom: 595 / 938
  22787. }
  22788. },
  22789. dickFlaccid: {
  22790. height: math.unit(2.595, "feet"),
  22791. name: "Flaccid Genitals",
  22792. image: {
  22793. source: "./media/characters/layla/dick-flaccid.svg"
  22794. }
  22795. },
  22796. dickErect: {
  22797. height: math.unit(2.359, "feet"),
  22798. name: "Erect Genitals",
  22799. image: {
  22800. source: "./media/characters/layla/dick-erect.svg"
  22801. }
  22802. },
  22803. },
  22804. [
  22805. {
  22806. name: "Micro",
  22807. height: math.unit(1, "inch")
  22808. },
  22809. {
  22810. name: "Small",
  22811. height: math.unit(1, "foot")
  22812. },
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(2 + 6 / 12, "feet"),
  22816. default: true
  22817. },
  22818. {
  22819. name: "Macro",
  22820. height: math.unit(200, "feet")
  22821. },
  22822. {
  22823. name: "Megamacro",
  22824. height: math.unit(1000, "miles")
  22825. },
  22826. {
  22827. name: "Planetary",
  22828. height: math.unit(8000, "miles")
  22829. },
  22830. {
  22831. name: "True Layla",
  22832. height: math.unit(200000 * 7, "multiverses")
  22833. },
  22834. ]
  22835. ))
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22838. {
  22839. back: {
  22840. height: math.unit(10.5, "feet"),
  22841. weight: math.unit(800, "lb"),
  22842. name: "Back",
  22843. image: {
  22844. source: "./media/characters/knox/back.svg",
  22845. extra: 1486 / 1089,
  22846. bottom: 107 / 1601.4
  22847. }
  22848. },
  22849. side: {
  22850. height: math.unit(10.5, "feet"),
  22851. weight: math.unit(800, "lb"),
  22852. name: "Side",
  22853. image: {
  22854. source: "./media/characters/knox/side.svg",
  22855. extra: 244 / 218,
  22856. bottom: 14 / 260
  22857. }
  22858. },
  22859. },
  22860. [
  22861. {
  22862. name: "Compact",
  22863. height: math.unit(10.5, "feet"),
  22864. default: true
  22865. },
  22866. {
  22867. name: "Dynamax",
  22868. height: math.unit(210, "feet")
  22869. },
  22870. {
  22871. name: "Full Macro",
  22872. height: math.unit(850, "feet")
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22878. {
  22879. front: {
  22880. height: math.unit(6, "feet"),
  22881. weight: math.unit(152, "lb"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/shin-pikachu/front.svg",
  22885. extra: 1574 / 1480,
  22886. bottom: 53.3 / 1626
  22887. }
  22888. },
  22889. hand: {
  22890. height: math.unit(1.055, "feet"),
  22891. name: "Hand",
  22892. image: {
  22893. source: "./media/characters/shin-pikachu/hand.svg"
  22894. }
  22895. },
  22896. foot: {
  22897. height: math.unit(1.1, "feet"),
  22898. name: "Foot",
  22899. image: {
  22900. source: "./media/characters/shin-pikachu/foot.svg"
  22901. }
  22902. },
  22903. collar: {
  22904. height: math.unit(0.386, "feet"),
  22905. name: "Collar",
  22906. image: {
  22907. source: "./media/characters/shin-pikachu/collar.svg"
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Smallest",
  22914. height: math.unit(0.5, "inches")
  22915. },
  22916. {
  22917. name: "Micro",
  22918. height: math.unit(6, "inches")
  22919. },
  22920. {
  22921. name: "Normal",
  22922. height: math.unit(6, "feet"),
  22923. default: true
  22924. },
  22925. {
  22926. name: "Macro",
  22927. height: math.unit(150, "feet")
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22933. {
  22934. front: {
  22935. height: math.unit(28, "feet"),
  22936. weight: math.unit(10500, "lb"),
  22937. name: "Front",
  22938. image: {
  22939. source: "./media/characters/kayda/front.svg",
  22940. extra: 1536 / 1428,
  22941. bottom: 68.7 / 1603
  22942. }
  22943. },
  22944. back: {
  22945. height: math.unit(28, "feet"),
  22946. weight: math.unit(10500, "lb"),
  22947. name: "Back",
  22948. image: {
  22949. source: "./media/characters/kayda/back.svg",
  22950. extra: 1557 / 1464,
  22951. bottom: 39.5 / 1597.49
  22952. }
  22953. },
  22954. dick: {
  22955. height: math.unit(3.858, "feet"),
  22956. name: "Dick",
  22957. image: {
  22958. source: "./media/characters/kayda/dick.svg"
  22959. }
  22960. },
  22961. },
  22962. [
  22963. {
  22964. name: "Macro",
  22965. height: math.unit(28, "feet"),
  22966. default: true
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22972. {
  22973. front: {
  22974. height: math.unit(10 + 11 / 12, "feet"),
  22975. weight: math.unit(1400, "lb"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/brian/front.svg",
  22979. extra: 737 / 692,
  22980. bottom: 55.4 / 785
  22981. }
  22982. },
  22983. },
  22984. [
  22985. {
  22986. name: "Normal",
  22987. height: math.unit(10 + 11 / 12, "feet"),
  22988. default: true
  22989. },
  22990. ]
  22991. ))
  22992. characterMakers.push(() => makeCharacter(
  22993. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22994. {
  22995. front: {
  22996. height: math.unit(5 + 8 / 12, "feet"),
  22997. weight: math.unit(140, "lb"),
  22998. name: "Front",
  22999. image: {
  23000. source: "./media/characters/khemri/front.svg",
  23001. extra: 4780 / 4059,
  23002. bottom: 80.1 / 4859.25
  23003. }
  23004. },
  23005. },
  23006. [
  23007. {
  23008. name: "Micro",
  23009. height: math.unit(6, "inches")
  23010. },
  23011. {
  23012. name: "Normal",
  23013. height: math.unit(5 + 8 / 12, "feet"),
  23014. default: true
  23015. },
  23016. ]
  23017. ))
  23018. characterMakers.push(() => makeCharacter(
  23019. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23020. {
  23021. front: {
  23022. height: math.unit(13, "feet"),
  23023. weight: math.unit(1700, "lb"),
  23024. name: "Front",
  23025. image: {
  23026. source: "./media/characters/felix-braveheart/front.svg",
  23027. extra: 1222 / 1157,
  23028. bottom: 53.2 / 1280
  23029. }
  23030. },
  23031. back: {
  23032. height: math.unit(13, "feet"),
  23033. weight: math.unit(1700, "lb"),
  23034. name: "Back",
  23035. image: {
  23036. source: "./media/characters/felix-braveheart/back.svg",
  23037. extra: 1277 / 1203,
  23038. bottom: 50.2 / 1327
  23039. }
  23040. },
  23041. feral: {
  23042. height: math.unit(6, "feet"),
  23043. weight: math.unit(400, "lb"),
  23044. name: "Feral",
  23045. image: {
  23046. source: "./media/characters/felix-braveheart/feral.svg",
  23047. extra: 682 / 625,
  23048. bottom: 6.9 / 688
  23049. }
  23050. },
  23051. },
  23052. [
  23053. {
  23054. name: "Normal",
  23055. height: math.unit(13, "feet"),
  23056. default: true
  23057. },
  23058. ]
  23059. ))
  23060. characterMakers.push(() => makeCharacter(
  23061. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23062. {
  23063. side: {
  23064. height: math.unit(5 + 11 / 12, "feet"),
  23065. weight: math.unit(1400, "lb"),
  23066. name: "Side",
  23067. image: {
  23068. source: "./media/characters/shadow-blade/side.svg",
  23069. extra: 1726 / 1267,
  23070. bottom: 58.4 / 1785
  23071. }
  23072. },
  23073. },
  23074. [
  23075. {
  23076. name: "Normal",
  23077. height: math.unit(5 + 11 / 12, "feet"),
  23078. default: true
  23079. },
  23080. ]
  23081. ))
  23082. characterMakers.push(() => makeCharacter(
  23083. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23084. {
  23085. front: {
  23086. height: math.unit(1 + 6 / 12, "feet"),
  23087. weight: math.unit(25, "lb"),
  23088. name: "Front",
  23089. image: {
  23090. source: "./media/characters/karla-halldor/front.svg",
  23091. extra: 1459 / 1383,
  23092. bottom: 12 / 1472
  23093. }
  23094. },
  23095. },
  23096. [
  23097. {
  23098. name: "Normal",
  23099. height: math.unit(1 + 6 / 12, "feet"),
  23100. default: true
  23101. },
  23102. ]
  23103. ))
  23104. characterMakers.push(() => makeCharacter(
  23105. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23106. {
  23107. front: {
  23108. height: math.unit(6 + 2 / 12, "feet"),
  23109. weight: math.unit(160, "lb"),
  23110. name: "Front",
  23111. image: {
  23112. source: "./media/characters/ariam/front.svg",
  23113. extra: 714 / 617,
  23114. bottom: 23.4 / 737,
  23115. }
  23116. },
  23117. squatting: {
  23118. height: math.unit(4.1, "feet"),
  23119. weight: math.unit(160, "lb"),
  23120. name: "Squatting",
  23121. image: {
  23122. source: "./media/characters/ariam/squatting.svg",
  23123. extra: 2617 / 2112,
  23124. bottom: 61.2 / 2681,
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(6 + 2 / 12, "feet"),
  23132. default: true
  23133. },
  23134. {
  23135. name: "Normal+",
  23136. height: math.unit(4, "meters")
  23137. },
  23138. {
  23139. name: "Macro",
  23140. height: math.unit(50, "meters")
  23141. },
  23142. {
  23143. name: "Macro+",
  23144. height: math.unit(100, "meters")
  23145. },
  23146. {
  23147. name: "Megamacro",
  23148. height: math.unit(20, "km")
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23154. {
  23155. front: {
  23156. height: math.unit(1.67, "meters"),
  23157. weight: math.unit(140, "lb"),
  23158. name: "Front",
  23159. image: {
  23160. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23161. extra: 438 / 410,
  23162. bottom: 0.75 / 439
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Shrunken",
  23169. height: math.unit(7.6, "cm")
  23170. },
  23171. {
  23172. name: "Human Scale",
  23173. height: math.unit(1.67, "meters")
  23174. },
  23175. {
  23176. name: "Wolxi Scale",
  23177. height: math.unit(36.7, "meters"),
  23178. default: true
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(1.73, "meters"),
  23187. weight: math.unit(240, "lb"),
  23188. name: "Front",
  23189. image: {
  23190. source: "./media/characters/izue-two-mothers/front.svg",
  23191. extra: 469 / 437,
  23192. bottom: 1.24 / 470.6
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Shrunken",
  23199. height: math.unit(7.86, "cm")
  23200. },
  23201. {
  23202. name: "Human Scale",
  23203. height: math.unit(1.73, "meters")
  23204. },
  23205. {
  23206. name: "Wolxi Scale",
  23207. height: math.unit(38, "meters"),
  23208. default: true
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23214. {
  23215. front: {
  23216. height: math.unit(1.55, "meters"),
  23217. weight: math.unit(120, "lb"),
  23218. name: "Front",
  23219. image: {
  23220. source: "./media/characters/teeku-love-shack/front.svg",
  23221. extra: 387 / 362,
  23222. bottom: 1.51 / 388
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "Shrunken",
  23229. height: math.unit(7, "cm")
  23230. },
  23231. {
  23232. name: "Human Scale",
  23233. height: math.unit(1.55, "meters")
  23234. },
  23235. {
  23236. name: "Wolxi Scale",
  23237. height: math.unit(34.1, "meters"),
  23238. default: true
  23239. },
  23240. ]
  23241. ))
  23242. characterMakers.push(() => makeCharacter(
  23243. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23244. {
  23245. front: {
  23246. height: math.unit(1.83, "meters"),
  23247. weight: math.unit(135, "lb"),
  23248. name: "Front",
  23249. image: {
  23250. source: "./media/characters/dejma-the-red/front.svg",
  23251. extra: 480 / 458,
  23252. bottom: 1.8 / 482
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Shrunken",
  23259. height: math.unit(8.3, "cm")
  23260. },
  23261. {
  23262. name: "Human Scale",
  23263. height: math.unit(1.83, "meters")
  23264. },
  23265. {
  23266. name: "Wolxi Scale",
  23267. height: math.unit(40, "meters"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(1.78, "meters"),
  23277. weight: math.unit(65, "kg"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/aki/front.svg",
  23281. extra: 452 / 415
  23282. }
  23283. },
  23284. frontNsfw: {
  23285. height: math.unit(1.78, "meters"),
  23286. weight: math.unit(65, "kg"),
  23287. name: "Front (NSFW)",
  23288. image: {
  23289. source: "./media/characters/aki/front-nsfw.svg",
  23290. extra: 452 / 415
  23291. }
  23292. },
  23293. back: {
  23294. height: math.unit(1.78, "meters"),
  23295. weight: math.unit(65, "kg"),
  23296. name: "Back",
  23297. image: {
  23298. source: "./media/characters/aki/back.svg",
  23299. extra: 452 / 415
  23300. }
  23301. },
  23302. rump: {
  23303. height: math.unit(2.05, "feet"),
  23304. name: "Rump",
  23305. image: {
  23306. source: "./media/characters/aki/rump.svg"
  23307. }
  23308. },
  23309. dick: {
  23310. height: math.unit(0.95, "feet"),
  23311. name: "Dick",
  23312. image: {
  23313. source: "./media/characters/aki/dick.svg"
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Micro",
  23320. height: math.unit(15, "cm")
  23321. },
  23322. {
  23323. name: "Normal",
  23324. height: math.unit(178, "cm"),
  23325. default: true
  23326. },
  23327. {
  23328. name: "Macro",
  23329. height: math.unit(214, "m")
  23330. },
  23331. {
  23332. name: "Macro+",
  23333. height: math.unit(534, "m")
  23334. },
  23335. ]
  23336. ))
  23337. characterMakers.push(() => makeCharacter(
  23338. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23339. {
  23340. front: {
  23341. height: math.unit(5 + 5 / 12, "feet"),
  23342. weight: math.unit(120, "lb"),
  23343. name: "Front",
  23344. image: {
  23345. source: "./media/characters/ari/front.svg",
  23346. extra: 714.5 / 682,
  23347. bottom: 8 / 722.5
  23348. }
  23349. },
  23350. },
  23351. [
  23352. {
  23353. name: "Normal",
  23354. height: math.unit(5 + 5 / 12, "feet")
  23355. },
  23356. {
  23357. name: "Macro",
  23358. height: math.unit(100, "feet"),
  23359. default: true
  23360. },
  23361. {
  23362. name: "Megamacro",
  23363. height: math.unit(100, "miles")
  23364. },
  23365. {
  23366. name: "Gigamacro",
  23367. height: math.unit(80000, "miles")
  23368. },
  23369. ]
  23370. ))
  23371. characterMakers.push(() => makeCharacter(
  23372. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23373. {
  23374. side: {
  23375. height: math.unit(9, "feet"),
  23376. weight: math.unit(400, "kg"),
  23377. name: "Side",
  23378. image: {
  23379. source: "./media/characters/bolt/side.svg",
  23380. extra: 1126 / 896,
  23381. bottom: 60 / 1187.3,
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "Micro",
  23388. height: math.unit(5, "inches")
  23389. },
  23390. {
  23391. name: "Normal",
  23392. height: math.unit(9, "feet"),
  23393. default: true
  23394. },
  23395. {
  23396. name: "Macro",
  23397. height: math.unit(700, "feet")
  23398. },
  23399. {
  23400. name: "Max Size",
  23401. height: math.unit(1.52e22, "yottameters")
  23402. },
  23403. ]
  23404. ))
  23405. characterMakers.push(() => makeCharacter(
  23406. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23407. {
  23408. front: {
  23409. height: math.unit(4.53, "meters"),
  23410. weight: math.unit(3, "tons"),
  23411. name: "Front",
  23412. image: {
  23413. source: "./media/characters/draekon-sylviar/front.svg",
  23414. extra: 1228 / 1068,
  23415. bottom: 41 / 1270
  23416. }
  23417. },
  23418. tail: {
  23419. height: math.unit(1.772, "meter"),
  23420. name: "Tail",
  23421. image: {
  23422. source: "./media/characters/draekon-sylviar/tail.svg"
  23423. }
  23424. },
  23425. head: {
  23426. height: math.unit(1.331, "meter"),
  23427. name: "Head",
  23428. image: {
  23429. source: "./media/characters/draekon-sylviar/head.svg"
  23430. }
  23431. },
  23432. hand: {
  23433. height: math.unit(0.564, "meter"),
  23434. name: "Hand",
  23435. image: {
  23436. source: "./media/characters/draekon-sylviar/hand.svg"
  23437. }
  23438. },
  23439. foot: {
  23440. height: math.unit(0.621, "meter"),
  23441. name: "Foot",
  23442. image: {
  23443. source: "./media/characters/draekon-sylviar/foot.svg",
  23444. bottom: 32 / 324
  23445. }
  23446. },
  23447. dick: {
  23448. height: math.unit(61, "cm"),
  23449. name: "Dick",
  23450. image: {
  23451. source: "./media/characters/draekon-sylviar/dick.svg"
  23452. }
  23453. },
  23454. dickseparated: {
  23455. height: math.unit(61, "cm"),
  23456. name: "Dick-separated",
  23457. image: {
  23458. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23459. }
  23460. },
  23461. },
  23462. [
  23463. {
  23464. name: "Small",
  23465. height: math.unit(4.53 / 2, "meters"),
  23466. default: true
  23467. },
  23468. {
  23469. name: "Normal",
  23470. height: math.unit(4.53, "meters"),
  23471. default: true
  23472. },
  23473. {
  23474. name: "Large",
  23475. height: math.unit(4.53 * 2, "meters"),
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23481. {
  23482. front: {
  23483. height: math.unit(6 + 2 / 12, "feet"),
  23484. weight: math.unit(180, "lb"),
  23485. name: "Front",
  23486. image: {
  23487. source: "./media/characters/brawler/front.svg",
  23488. extra: 3301 / 3027,
  23489. bottom: 138 / 3439
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Normal",
  23496. height: math.unit(6 + 2 / 12, "feet"),
  23497. default: true
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(11, "feet"),
  23506. weight: math.unit(1000, "lb"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/alex/front.svg",
  23510. bottom: 44.5 / 620
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Micro",
  23517. height: math.unit(5, "inches")
  23518. },
  23519. {
  23520. name: "Normal",
  23521. height: math.unit(11, "feet"),
  23522. default: true
  23523. },
  23524. {
  23525. name: "Macro",
  23526. height: math.unit(9.5e9, "feet")
  23527. },
  23528. {
  23529. name: "Max Size",
  23530. height: math.unit(1.4e283, "yottameters")
  23531. },
  23532. ]
  23533. ))
  23534. characterMakers.push(() => makeCharacter(
  23535. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23536. {
  23537. female: {
  23538. height: math.unit(29.9, "m"),
  23539. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23540. name: "Female",
  23541. image: {
  23542. source: "./media/characters/zenari/female.svg",
  23543. extra: 3281.6 / 3217,
  23544. bottom: 72.2 / 3353
  23545. }
  23546. },
  23547. male: {
  23548. height: math.unit(27.7, "m"),
  23549. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23550. name: "Male",
  23551. image: {
  23552. source: "./media/characters/zenari/male.svg",
  23553. extra: 3008 / 2991,
  23554. bottom: 54.6 / 3069
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Macro",
  23561. height: math.unit(29.7, "meters"),
  23562. default: true
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23568. {
  23569. female: {
  23570. height: math.unit(23.8, "m"),
  23571. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23572. name: "Female",
  23573. image: {
  23574. source: "./media/characters/mactarian/female.svg",
  23575. extra: 2662 / 2569,
  23576. bottom: 73 / 2736
  23577. }
  23578. },
  23579. male: {
  23580. height: math.unit(23.8, "m"),
  23581. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23582. name: "Male",
  23583. image: {
  23584. source: "./media/characters/mactarian/male.svg",
  23585. extra: 2673 / 2600,
  23586. bottom: 76 / 2750
  23587. }
  23588. },
  23589. },
  23590. [
  23591. {
  23592. name: "Macro",
  23593. height: math.unit(23.8, "meters"),
  23594. default: true
  23595. },
  23596. ]
  23597. ))
  23598. characterMakers.push(() => makeCharacter(
  23599. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23600. {
  23601. female: {
  23602. height: math.unit(19.3, "m"),
  23603. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23604. name: "Female",
  23605. image: {
  23606. source: "./media/characters/umok/female.svg",
  23607. extra: 2186 / 2078,
  23608. bottom: 87 / 2277
  23609. }
  23610. },
  23611. male: {
  23612. height: math.unit(19.5, "m"),
  23613. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23614. name: "Male",
  23615. image: {
  23616. source: "./media/characters/umok/male.svg",
  23617. extra: 2233 / 2140,
  23618. bottom: 24.4 / 2258
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Macro",
  23625. height: math.unit(19.3, "meters"),
  23626. default: true
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23632. {
  23633. female: {
  23634. height: math.unit(26.15, "m"),
  23635. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23636. name: "Female",
  23637. image: {
  23638. source: "./media/characters/joraxian/female.svg",
  23639. extra: 2912 / 2824,
  23640. bottom: 36 / 2956
  23641. }
  23642. },
  23643. male: {
  23644. height: math.unit(25.4, "m"),
  23645. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23646. name: "Male",
  23647. image: {
  23648. source: "./media/characters/joraxian/male.svg",
  23649. extra: 2877 / 2721,
  23650. bottom: 82 / 2967
  23651. }
  23652. },
  23653. },
  23654. [
  23655. {
  23656. name: "Macro",
  23657. height: math.unit(26.15, "meters"),
  23658. default: true
  23659. },
  23660. ]
  23661. ))
  23662. characterMakers.push(() => makeCharacter(
  23663. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23664. {
  23665. female: {
  23666. height: math.unit(21.6, "m"),
  23667. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23668. name: "Female",
  23669. image: {
  23670. source: "./media/characters/sthara/female.svg",
  23671. extra: 2516 / 2347,
  23672. bottom: 21.5 / 2537
  23673. }
  23674. },
  23675. male: {
  23676. height: math.unit(24, "m"),
  23677. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23678. name: "Male",
  23679. image: {
  23680. source: "./media/characters/sthara/male.svg",
  23681. extra: 2732 / 2607,
  23682. bottom: 23 / 2732
  23683. }
  23684. },
  23685. },
  23686. [
  23687. {
  23688. name: "Macro",
  23689. height: math.unit(21.6, "meters"),
  23690. default: true
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(6 + 4 / 12, "feet"),
  23699. weight: math.unit(175, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/luka-bryzant/front.svg",
  23703. extra: 311 / 289,
  23704. bottom: 4 / 315
  23705. }
  23706. },
  23707. back: {
  23708. height: math.unit(6 + 4 / 12, "feet"),
  23709. weight: math.unit(175, "lb"),
  23710. name: "Back",
  23711. image: {
  23712. source: "./media/characters/luka-bryzant/back.svg",
  23713. extra: 311 / 289,
  23714. bottom: 3.8 / 313.7
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Micro",
  23721. height: math.unit(10, "inches")
  23722. },
  23723. {
  23724. name: "Normal",
  23725. height: math.unit(6 + 4 / 12, "feet"),
  23726. default: true
  23727. },
  23728. {
  23729. name: "Large",
  23730. height: math.unit(12, "feet")
  23731. },
  23732. ]
  23733. ))
  23734. characterMakers.push(() => makeCharacter(
  23735. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23736. {
  23737. front: {
  23738. height: math.unit(5 + 7 / 12, "feet"),
  23739. weight: math.unit(185, "lb"),
  23740. name: "Front",
  23741. image: {
  23742. source: "./media/characters/aman-aquila/front.svg",
  23743. extra: 1013 / 976,
  23744. bottom: 45.6 / 1057
  23745. }
  23746. },
  23747. side: {
  23748. height: math.unit(5 + 7 / 12, "feet"),
  23749. weight: math.unit(185, "lb"),
  23750. name: "Side",
  23751. image: {
  23752. source: "./media/characters/aman-aquila/side.svg",
  23753. extra: 1054 / 1011,
  23754. bottom: 15 / 1070
  23755. }
  23756. },
  23757. back: {
  23758. height: math.unit(5 + 7 / 12, "feet"),
  23759. weight: math.unit(185, "lb"),
  23760. name: "Back",
  23761. image: {
  23762. source: "./media/characters/aman-aquila/back.svg",
  23763. extra: 1026 / 970,
  23764. bottom: 12 / 1039
  23765. }
  23766. },
  23767. head: {
  23768. height: math.unit(1.211, "feet"),
  23769. name: "Head",
  23770. image: {
  23771. source: "./media/characters/aman-aquila/head.svg",
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Minimicro",
  23778. height: math.unit(0.057, "inches")
  23779. },
  23780. {
  23781. name: "Micro",
  23782. height: math.unit(7, "inches")
  23783. },
  23784. {
  23785. name: "Mini",
  23786. height: math.unit(3 + 7 / 12, "feet")
  23787. },
  23788. {
  23789. name: "Normal",
  23790. height: math.unit(5 + 7 / 12, "feet"),
  23791. default: true
  23792. },
  23793. {
  23794. name: "Macro",
  23795. height: math.unit(157 + 7 / 12, "feet")
  23796. },
  23797. {
  23798. name: "Megamacro",
  23799. height: math.unit(1557 + 7 / 12, "feet")
  23800. },
  23801. {
  23802. name: "Gigamacro",
  23803. height: math.unit(15557 + 7 / 12, "feet")
  23804. },
  23805. ]
  23806. ))
  23807. characterMakers.push(() => makeCharacter(
  23808. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23809. {
  23810. front: {
  23811. height: math.unit(3 + 2 / 12, "inches"),
  23812. weight: math.unit(0.3, "ounces"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/hiphae/front.svg",
  23816. extra: 1931 / 1683,
  23817. bottom: 24 / 1955
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Normal",
  23824. height: math.unit(3 + 1 / 2, "inches"),
  23825. default: true
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23831. {
  23832. front: {
  23833. height: math.unit(5 + 10 / 12, "feet"),
  23834. weight: math.unit(165, "lb"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/nicky/front.svg",
  23838. extra: 3144 / 2886,
  23839. bottom: 45.6 / 3192
  23840. }
  23841. },
  23842. back: {
  23843. height: math.unit(5 + 10 / 12, "feet"),
  23844. weight: math.unit(165, "lb"),
  23845. name: "Back",
  23846. image: {
  23847. source: "./media/characters/nicky/back.svg",
  23848. extra: 3055 / 2804,
  23849. bottom: 28.4 / 3087
  23850. }
  23851. },
  23852. frontclothed: {
  23853. height: math.unit(5 + 10 / 12, "feet"),
  23854. weight: math.unit(165, "lb"),
  23855. name: "Front-clothed",
  23856. image: {
  23857. source: "./media/characters/nicky/front-clothed.svg",
  23858. extra: 3184.9 / 2926.9,
  23859. bottom: 86.5 / 3239.9
  23860. }
  23861. },
  23862. foot: {
  23863. height: math.unit(1.16, "feet"),
  23864. name: "Foot",
  23865. image: {
  23866. source: "./media/characters/nicky/foot.svg"
  23867. }
  23868. },
  23869. feet: {
  23870. height: math.unit(1.34, "feet"),
  23871. name: "Feet",
  23872. image: {
  23873. source: "./media/characters/nicky/feet.svg"
  23874. }
  23875. },
  23876. maw: {
  23877. height: math.unit(0.9, "feet"),
  23878. name: "Maw",
  23879. image: {
  23880. source: "./media/characters/nicky/maw.svg"
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Normal",
  23887. height: math.unit(5 + 10 / 12, "feet"),
  23888. default: true
  23889. },
  23890. {
  23891. name: "Macro",
  23892. height: math.unit(60, "feet")
  23893. },
  23894. {
  23895. name: "Megamacro",
  23896. height: math.unit(1, "mile")
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23902. {
  23903. side: {
  23904. height: math.unit(10, "feet"),
  23905. weight: math.unit(600, "lb"),
  23906. name: "Side",
  23907. image: {
  23908. source: "./media/characters/blair/side.svg",
  23909. bottom: 16.6 / 475,
  23910. extra: 458 / 431
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Micro",
  23917. height: math.unit(8, "inches")
  23918. },
  23919. {
  23920. name: "Normal",
  23921. height: math.unit(10, "feet"),
  23922. default: true
  23923. },
  23924. {
  23925. name: "Macro",
  23926. height: math.unit(180, "feet")
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23932. {
  23933. front: {
  23934. height: math.unit(5 + 4 / 12, "feet"),
  23935. weight: math.unit(125, "lb"),
  23936. name: "Front",
  23937. image: {
  23938. source: "./media/characters/fisher/front.svg",
  23939. extra: 444 / 390,
  23940. bottom: 2 / 444.8
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Micro",
  23947. height: math.unit(4, "inches")
  23948. },
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(5 + 4 / 12, "feet"),
  23952. default: true
  23953. },
  23954. {
  23955. name: "Macro",
  23956. height: math.unit(100, "feet")
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23962. {
  23963. front: {
  23964. height: math.unit(6.71, "feet"),
  23965. weight: math.unit(200, "lb"),
  23966. capacity: math.unit(1000000, "people"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/gliss/front.svg",
  23970. extra: 2347 / 2231,
  23971. bottom: 113 / 2462
  23972. }
  23973. },
  23974. hammerspaceSize: {
  23975. height: math.unit(6.71 * 717, "feet"),
  23976. weight: math.unit(200, "lb"),
  23977. capacity: math.unit(1000000, "people"),
  23978. name: "Hammerspace Size",
  23979. image: {
  23980. source: "./media/characters/gliss/front.svg",
  23981. extra: 2347 / 2231,
  23982. bottom: 113 / 2462
  23983. }
  23984. },
  23985. },
  23986. [
  23987. {
  23988. name: "Normal",
  23989. height: math.unit(6.71, "feet"),
  23990. default: true
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23996. {
  23997. side: {
  23998. height: math.unit(1.44, "m"),
  23999. weight: math.unit(80, "kg"),
  24000. name: "Side",
  24001. image: {
  24002. source: "./media/characters/dune-anderson/side.svg",
  24003. bottom: 49 / 1426
  24004. }
  24005. },
  24006. },
  24007. [
  24008. {
  24009. name: "Wolf-sized",
  24010. height: math.unit(1.44, "meters")
  24011. },
  24012. {
  24013. name: "Normal",
  24014. height: math.unit(5.05, "meters"),
  24015. default: true
  24016. },
  24017. {
  24018. name: "Big",
  24019. height: math.unit(14.4, "meters")
  24020. },
  24021. {
  24022. name: "Huge",
  24023. height: math.unit(144, "meters")
  24024. },
  24025. ]
  24026. ))
  24027. characterMakers.push(() => makeCharacter(
  24028. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24029. {
  24030. front: {
  24031. height: math.unit(7, "feet"),
  24032. weight: math.unit(425, "lb"),
  24033. name: "Front",
  24034. image: {
  24035. source: "./media/characters/hind/front.svg",
  24036. extra: 2091 / 1860,
  24037. bottom: 129 / 2220
  24038. }
  24039. },
  24040. back: {
  24041. height: math.unit(7, "feet"),
  24042. weight: math.unit(425, "lb"),
  24043. name: "Back",
  24044. image: {
  24045. source: "./media/characters/hind/back.svg",
  24046. extra: 2091 / 1860,
  24047. bottom: 24.6 / 2309
  24048. }
  24049. },
  24050. tail: {
  24051. height: math.unit(2.8, "feet"),
  24052. name: "Tail",
  24053. image: {
  24054. source: "./media/characters/hind/tail.svg"
  24055. }
  24056. },
  24057. head: {
  24058. height: math.unit(2.55, "feet"),
  24059. name: "Head",
  24060. image: {
  24061. source: "./media/characters/hind/head.svg"
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "XS",
  24068. height: math.unit(0.7, "feet")
  24069. },
  24070. {
  24071. name: "Normal",
  24072. height: math.unit(7, "feet"),
  24073. default: true
  24074. },
  24075. {
  24076. name: "XL",
  24077. height: math.unit(70, "feet")
  24078. },
  24079. ]
  24080. ))
  24081. characterMakers.push(() => makeCharacter(
  24082. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24083. {
  24084. front: {
  24085. height: math.unit(6, "feet"),
  24086. weight: math.unit(150, "lb"),
  24087. name: "Front",
  24088. image: {
  24089. source: "./media/characters/dylan-skaven/front.svg",
  24090. extra: 2318 / 2063,
  24091. bottom: 93.4 / 2410
  24092. }
  24093. },
  24094. },
  24095. [
  24096. {
  24097. name: "Nano",
  24098. height: math.unit(1, "mm")
  24099. },
  24100. {
  24101. name: "Micro",
  24102. height: math.unit(1, "cm")
  24103. },
  24104. {
  24105. name: "Normal",
  24106. height: math.unit(2.1, "meters"),
  24107. default: true
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24113. {
  24114. front: {
  24115. height: math.unit(7 + 5 / 12, "feet"),
  24116. weight: math.unit(357, "lb"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/solex-draconov/front.svg",
  24120. extra: 1993 / 1865,
  24121. bottom: 117 / 2111
  24122. }
  24123. },
  24124. },
  24125. [
  24126. {
  24127. name: "Natural Height",
  24128. height: math.unit(7 + 5 / 12, "feet"),
  24129. default: true
  24130. },
  24131. {
  24132. name: "Macro",
  24133. height: math.unit(350, "feet")
  24134. },
  24135. {
  24136. name: "Macro+",
  24137. height: math.unit(1000, "feet")
  24138. },
  24139. {
  24140. name: "Megamacro",
  24141. height: math.unit(20, "km")
  24142. },
  24143. {
  24144. name: "Megamacro+",
  24145. height: math.unit(1000, "km")
  24146. },
  24147. {
  24148. name: "Gigamacro",
  24149. height: math.unit(2.5, "Gm")
  24150. },
  24151. {
  24152. name: "Teramacro",
  24153. height: math.unit(15, "Tm")
  24154. },
  24155. {
  24156. name: "Galactic",
  24157. height: math.unit(30, "Zm")
  24158. },
  24159. {
  24160. name: "Universal",
  24161. height: math.unit(21000, "Ym")
  24162. },
  24163. {
  24164. name: "Omniversal",
  24165. height: math.unit(9.861e50, "Ym")
  24166. },
  24167. {
  24168. name: "Existential",
  24169. height: math.unit(1e300, "meters")
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24175. {
  24176. side: {
  24177. height: math.unit(25, "feet"),
  24178. weight: math.unit(90000, "lb"),
  24179. name: "Side",
  24180. image: {
  24181. source: "./media/characters/mandarax/side.svg",
  24182. extra: 614 / 332,
  24183. bottom: 55 / 630
  24184. }
  24185. },
  24186. head: {
  24187. height: math.unit(11.4, "feet"),
  24188. name: "Head",
  24189. image: {
  24190. source: "./media/characters/mandarax/head.svg"
  24191. }
  24192. },
  24193. belly: {
  24194. height: math.unit(33, "feet"),
  24195. name: "Belly",
  24196. capacity: math.unit(500, "people"),
  24197. image: {
  24198. source: "./media/characters/mandarax/belly.svg"
  24199. }
  24200. },
  24201. dick: {
  24202. height: math.unit(8.46, "feet"),
  24203. name: "Dick",
  24204. image: {
  24205. source: "./media/characters/mandarax/dick.svg"
  24206. }
  24207. },
  24208. top: {
  24209. height: math.unit(28, "meters"),
  24210. name: "Top",
  24211. image: {
  24212. source: "./media/characters/mandarax/top.svg"
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Normal",
  24219. height: math.unit(25, "feet"),
  24220. default: true
  24221. },
  24222. ]
  24223. ))
  24224. characterMakers.push(() => makeCharacter(
  24225. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24226. {
  24227. front: {
  24228. height: math.unit(5, "feet"),
  24229. weight: math.unit(90, "lb"),
  24230. name: "Front",
  24231. image: {
  24232. source: "./media/characters/pixil/front.svg",
  24233. extra: 2000 / 1618,
  24234. bottom: 12.3 / 2011
  24235. }
  24236. },
  24237. },
  24238. [
  24239. {
  24240. name: "Normal",
  24241. height: math.unit(5, "feet"),
  24242. default: true
  24243. },
  24244. {
  24245. name: "Megamacro",
  24246. height: math.unit(10, "miles"),
  24247. },
  24248. ]
  24249. ))
  24250. characterMakers.push(() => makeCharacter(
  24251. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24252. {
  24253. front: {
  24254. height: math.unit(7 + 2 / 12, "feet"),
  24255. weight: math.unit(200, "lb"),
  24256. name: "Front",
  24257. image: {
  24258. source: "./media/characters/angel/front.svg",
  24259. extra: 1830 / 1737,
  24260. bottom: 22.6 / 1854,
  24261. }
  24262. },
  24263. },
  24264. [
  24265. {
  24266. name: "Normal",
  24267. height: math.unit(7 + 2 / 12, "feet"),
  24268. default: true
  24269. },
  24270. {
  24271. name: "Macro",
  24272. height: math.unit(1000, "feet")
  24273. },
  24274. {
  24275. name: "Megamacro",
  24276. height: math.unit(2, "miles")
  24277. },
  24278. {
  24279. name: "Gigamacro",
  24280. height: math.unit(20, "earths")
  24281. },
  24282. ]
  24283. ))
  24284. characterMakers.push(() => makeCharacter(
  24285. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24286. {
  24287. front: {
  24288. height: math.unit(5, "feet"),
  24289. weight: math.unit(180, "lb"),
  24290. name: "Front",
  24291. image: {
  24292. source: "./media/characters/mekana/front.svg",
  24293. extra: 1671 / 1605,
  24294. bottom: 3.5 / 1691
  24295. }
  24296. },
  24297. side: {
  24298. height: math.unit(5, "feet"),
  24299. weight: math.unit(180, "lb"),
  24300. name: "Side",
  24301. image: {
  24302. source: "./media/characters/mekana/side.svg",
  24303. extra: 1671 / 1605,
  24304. bottom: 3.5 / 1691
  24305. }
  24306. },
  24307. back: {
  24308. height: math.unit(5, "feet"),
  24309. weight: math.unit(180, "lb"),
  24310. name: "Back",
  24311. image: {
  24312. source: "./media/characters/mekana/back.svg",
  24313. extra: 1671 / 1605,
  24314. bottom: 3.5 / 1691
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Normal",
  24321. height: math.unit(5, "feet"),
  24322. default: true
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24328. {
  24329. front: {
  24330. height: math.unit(4 + 6 / 12, "feet"),
  24331. weight: math.unit(80, "lb"),
  24332. name: "Front",
  24333. image: {
  24334. source: "./media/characters/pixie/front.svg",
  24335. extra: 1924 / 1825,
  24336. bottom: 22.4 / 1946
  24337. }
  24338. },
  24339. },
  24340. [
  24341. {
  24342. name: "Normal",
  24343. height: math.unit(4 + 6 / 12, "feet"),
  24344. default: true
  24345. },
  24346. {
  24347. name: "Macro",
  24348. height: math.unit(40, "feet")
  24349. },
  24350. ]
  24351. ))
  24352. characterMakers.push(() => makeCharacter(
  24353. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24354. {
  24355. front: {
  24356. height: math.unit(2.1, "meters"),
  24357. weight: math.unit(200, "lb"),
  24358. name: "Front",
  24359. image: {
  24360. source: "./media/characters/the-lascivious/front.svg",
  24361. extra: 1 / 0.893,
  24362. bottom: 3.5 / 573.7
  24363. }
  24364. },
  24365. },
  24366. [
  24367. {
  24368. name: "Human Scale",
  24369. height: math.unit(2.1, "meters")
  24370. },
  24371. {
  24372. name: "Wolxi Scale",
  24373. height: math.unit(46.2, "m"),
  24374. default: true
  24375. },
  24376. {
  24377. name: "Boinker of Buildings",
  24378. height: math.unit(10, "km")
  24379. },
  24380. {
  24381. name: "Shagger of Skyscrapers",
  24382. height: math.unit(40, "km")
  24383. },
  24384. {
  24385. name: "Banger of Boroughs",
  24386. height: math.unit(4000, "km")
  24387. },
  24388. {
  24389. name: "Screwer of States",
  24390. height: math.unit(100000, "km")
  24391. },
  24392. {
  24393. name: "Pounder of Planets",
  24394. height: math.unit(2000000, "km")
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(6, "feet"),
  24403. weight: math.unit(150, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/aj/front.svg",
  24407. extra: 2039 / 1562,
  24408. bottom: 40 / 2079
  24409. }
  24410. },
  24411. },
  24412. [
  24413. {
  24414. name: "Normal",
  24415. height: math.unit(11 + 6 / 12, "feet"),
  24416. default: true
  24417. },
  24418. {
  24419. name: "Megamacro",
  24420. height: math.unit(60, "megameters")
  24421. },
  24422. ]
  24423. ))
  24424. characterMakers.push(() => makeCharacter(
  24425. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24426. {
  24427. side: {
  24428. height: math.unit(31 + 8 / 12, "feet"),
  24429. weight: math.unit(75000, "kg"),
  24430. name: "Side",
  24431. image: {
  24432. source: "./media/characters/koros/side.svg",
  24433. extra: 1442 / 1297,
  24434. bottom: 122.7 / 1562
  24435. }
  24436. },
  24437. dicksKingsCrown: {
  24438. height: math.unit(6, "feet"),
  24439. name: "Dicks (King's Crown)",
  24440. image: {
  24441. source: "./media/characters/koros/dicks-kings-crown.svg"
  24442. }
  24443. },
  24444. dicksTailSet: {
  24445. height: math.unit(3, "feet"),
  24446. name: "Dicks (Tail Set)",
  24447. image: {
  24448. source: "./media/characters/koros/dicks-tail-set.svg"
  24449. }
  24450. },
  24451. dickCumming: {
  24452. height: math.unit(7.98, "feet"),
  24453. name: "Dick (Cumming)",
  24454. image: {
  24455. source: "./media/characters/koros/dick-cumming.svg"
  24456. }
  24457. },
  24458. dicksBack: {
  24459. height: math.unit(5.9, "feet"),
  24460. name: "Dicks (Back)",
  24461. image: {
  24462. source: "./media/characters/koros/dicks-back.svg"
  24463. }
  24464. },
  24465. dicksFront: {
  24466. height: math.unit(3.72, "feet"),
  24467. name: "Dicks (Front)",
  24468. image: {
  24469. source: "./media/characters/koros/dicks-front.svg"
  24470. }
  24471. },
  24472. dicksPeeking: {
  24473. height: math.unit(3.0, "feet"),
  24474. name: "Dicks (Peeking)",
  24475. image: {
  24476. source: "./media/characters/koros/dicks-peeking.svg"
  24477. }
  24478. },
  24479. eye: {
  24480. height: math.unit(1.7, "feet"),
  24481. name: "Eye",
  24482. image: {
  24483. source: "./media/characters/koros/eye.svg"
  24484. }
  24485. },
  24486. headFront: {
  24487. height: math.unit(11.69, "feet"),
  24488. name: "Head (Front)",
  24489. image: {
  24490. source: "./media/characters/koros/head-front.svg"
  24491. }
  24492. },
  24493. headSide: {
  24494. height: math.unit(14, "feet"),
  24495. name: "Head (Side)",
  24496. image: {
  24497. source: "./media/characters/koros/head-side.svg"
  24498. }
  24499. },
  24500. leg: {
  24501. height: math.unit(17, "feet"),
  24502. name: "Leg",
  24503. image: {
  24504. source: "./media/characters/koros/leg.svg"
  24505. }
  24506. },
  24507. mawSide: {
  24508. height: math.unit(12.8, "feet"),
  24509. name: "Maw (Side)",
  24510. image: {
  24511. source: "./media/characters/koros/maw-side.svg"
  24512. }
  24513. },
  24514. mawSpitting: {
  24515. height: math.unit(17, "feet"),
  24516. name: "Maw (Spitting)",
  24517. image: {
  24518. source: "./media/characters/koros/maw-spitting.svg"
  24519. }
  24520. },
  24521. slit: {
  24522. height: math.unit(2.8, "feet"),
  24523. name: "Slit",
  24524. image: {
  24525. source: "./media/characters/koros/slit.svg"
  24526. }
  24527. },
  24528. stomach: {
  24529. height: math.unit(6.8, "feet"),
  24530. capacity: math.unit(20, "people"),
  24531. name: "Stomach",
  24532. image: {
  24533. source: "./media/characters/koros/stomach.svg"
  24534. }
  24535. },
  24536. wingspanBottom: {
  24537. height: math.unit(114, "feet"),
  24538. name: "Wingspan (Bottom)",
  24539. image: {
  24540. source: "./media/characters/koros/wingspan-bottom.svg"
  24541. }
  24542. },
  24543. wingspanTop: {
  24544. height: math.unit(104, "feet"),
  24545. name: "Wingspan (Top)",
  24546. image: {
  24547. source: "./media/characters/koros/wingspan-top.svg"
  24548. }
  24549. },
  24550. },
  24551. [
  24552. {
  24553. name: "Normal",
  24554. height: math.unit(31 + 8 / 12, "feet"),
  24555. default: true
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24561. {
  24562. front: {
  24563. height: math.unit(18 + 5 / 12, "feet"),
  24564. weight: math.unit(3750, "kg"),
  24565. name: "Front",
  24566. image: {
  24567. source: "./media/characters/vexx/front.svg",
  24568. extra: 426 / 396,
  24569. bottom: 31.5 / 458
  24570. }
  24571. },
  24572. maw: {
  24573. height: math.unit(6, "feet"),
  24574. name: "Maw",
  24575. image: {
  24576. source: "./media/characters/vexx/maw.svg"
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Normal",
  24583. height: math.unit(18 + 5 / 12, "feet"),
  24584. default: true
  24585. },
  24586. ]
  24587. ))
  24588. characterMakers.push(() => makeCharacter(
  24589. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24590. {
  24591. front: {
  24592. height: math.unit(17 + 6 / 12, "feet"),
  24593. weight: math.unit(150, "lb"),
  24594. name: "Front",
  24595. image: {
  24596. source: "./media/characters/baadra/front.svg",
  24597. extra: 3137 / 2890,
  24598. bottom: 168.4 / 3305
  24599. }
  24600. },
  24601. back: {
  24602. height: math.unit(17 + 6 / 12, "feet"),
  24603. weight: math.unit(150, "lb"),
  24604. name: "Back",
  24605. image: {
  24606. source: "./media/characters/baadra/back.svg",
  24607. extra: 3142 / 2890,
  24608. bottom: 220 / 3371
  24609. }
  24610. },
  24611. head: {
  24612. height: math.unit(5.45, "feet"),
  24613. name: "Head",
  24614. image: {
  24615. source: "./media/characters/baadra/head.svg"
  24616. }
  24617. },
  24618. headAngry: {
  24619. height: math.unit(4.95, "feet"),
  24620. name: "Head (Angry)",
  24621. image: {
  24622. source: "./media/characters/baadra/head-angry.svg"
  24623. }
  24624. },
  24625. headOpen: {
  24626. height: math.unit(6, "feet"),
  24627. name: "Head (Open)",
  24628. image: {
  24629. source: "./media/characters/baadra/head-open.svg"
  24630. }
  24631. },
  24632. },
  24633. [
  24634. {
  24635. name: "Normal",
  24636. height: math.unit(17 + 6 / 12, "feet"),
  24637. default: true
  24638. },
  24639. ]
  24640. ))
  24641. characterMakers.push(() => makeCharacter(
  24642. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24643. {
  24644. front: {
  24645. height: math.unit(7 + 3 / 12, "feet"),
  24646. weight: math.unit(180, "lb"),
  24647. name: "Front",
  24648. image: {
  24649. source: "./media/characters/juri/front.svg",
  24650. extra: 1401 / 1237,
  24651. bottom: 18.5 / 1418
  24652. }
  24653. },
  24654. side: {
  24655. height: math.unit(7 + 3 / 12, "feet"),
  24656. weight: math.unit(180, "lb"),
  24657. name: "Side",
  24658. image: {
  24659. source: "./media/characters/juri/side.svg",
  24660. extra: 1424 / 1242,
  24661. bottom: 18.5 / 1447
  24662. }
  24663. },
  24664. sitting: {
  24665. height: math.unit(6, "feet"),
  24666. weight: math.unit(180, "lb"),
  24667. name: "Sitting",
  24668. image: {
  24669. source: "./media/characters/juri/sitting.svg",
  24670. extra: 1270 / 1143,
  24671. bottom: 100 / 1343
  24672. }
  24673. },
  24674. back: {
  24675. height: math.unit(7 + 3 / 12, "feet"),
  24676. weight: math.unit(180, "lb"),
  24677. name: "Back",
  24678. image: {
  24679. source: "./media/characters/juri/back.svg",
  24680. extra: 1377 / 1240,
  24681. bottom: 23.7 / 1405
  24682. }
  24683. },
  24684. maw: {
  24685. height: math.unit(2.8, "feet"),
  24686. name: "Maw",
  24687. image: {
  24688. source: "./media/characters/juri/maw.svg"
  24689. }
  24690. },
  24691. stomach: {
  24692. height: math.unit(0.89, "feet"),
  24693. capacity: math.unit(4, "liters"),
  24694. name: "Stomach",
  24695. image: {
  24696. source: "./media/characters/juri/stomach.svg"
  24697. }
  24698. },
  24699. },
  24700. [
  24701. {
  24702. name: "Normal",
  24703. height: math.unit(7 + 3 / 12, "feet"),
  24704. default: true
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24710. {
  24711. fox: {
  24712. height: math.unit(5 + 6 / 12, "feet"),
  24713. weight: math.unit(140, "lb"),
  24714. name: "Fox",
  24715. image: {
  24716. source: "./media/characters/maxene-sita/fox.svg",
  24717. extra: 146 / 138,
  24718. bottom: 2.1 / 148.19
  24719. }
  24720. },
  24721. kitsune: {
  24722. height: math.unit(10, "feet"),
  24723. weight: math.unit(800, "lb"),
  24724. name: "Kitsune",
  24725. image: {
  24726. source: "./media/characters/maxene-sita/kitsune.svg",
  24727. extra: 185 / 176,
  24728. bottom: 4.7 / 189.9
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(5 + 6 / 12, "feet"),
  24736. default: true
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24742. {
  24743. front: {
  24744. height: math.unit(3 + 4 / 12, "feet"),
  24745. weight: math.unit(70, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/maia/front.svg",
  24749. extra: 227 / 219.5,
  24750. bottom: 40 / 267
  24751. }
  24752. },
  24753. back: {
  24754. height: math.unit(3 + 4 / 12, "feet"),
  24755. weight: math.unit(70, "lb"),
  24756. name: "Back",
  24757. image: {
  24758. source: "./media/characters/maia/back.svg",
  24759. extra: 237 / 225
  24760. }
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Normal",
  24766. height: math.unit(3 + 4 / 12, "feet"),
  24767. default: true
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24773. {
  24774. front: {
  24775. height: math.unit(5 + 10 / 12, "feet"),
  24776. weight: math.unit(197, "lb"),
  24777. name: "Front",
  24778. image: {
  24779. source: "./media/characters/jabaro/front.svg",
  24780. extra: 225 / 216,
  24781. bottom: 5.06 / 230
  24782. }
  24783. },
  24784. back: {
  24785. height: math.unit(5 + 10 / 12, "feet"),
  24786. weight: math.unit(197, "lb"),
  24787. name: "Back",
  24788. image: {
  24789. source: "./media/characters/jabaro/back.svg",
  24790. extra: 225 / 219,
  24791. bottom: 1.9 / 227
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(5 + 10 / 12, "feet"),
  24799. default: true
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24805. {
  24806. front: {
  24807. height: math.unit(5 + 8 / 12, "feet"),
  24808. weight: math.unit(139, "lb"),
  24809. name: "Front",
  24810. image: {
  24811. source: "./media/characters/risa/front.svg",
  24812. extra: 270 / 260,
  24813. bottom: 11.2 / 282
  24814. }
  24815. },
  24816. back: {
  24817. height: math.unit(5 + 8 / 12, "feet"),
  24818. weight: math.unit(139, "lb"),
  24819. name: "Back",
  24820. image: {
  24821. source: "./media/characters/risa/back.svg",
  24822. extra: 264 / 255,
  24823. bottom: 4 / 268
  24824. }
  24825. },
  24826. },
  24827. [
  24828. {
  24829. name: "Normal",
  24830. height: math.unit(5 + 8 / 12, "feet"),
  24831. default: true
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24837. {
  24838. front: {
  24839. height: math.unit(2 + 11 / 12, "feet"),
  24840. weight: math.unit(30, "lb"),
  24841. name: "Front",
  24842. image: {
  24843. source: "./media/characters/weatley/front.svg",
  24844. bottom: 10.7 / 414,
  24845. extra: 403.5 / 362
  24846. }
  24847. },
  24848. back: {
  24849. height: math.unit(2 + 11 / 12, "feet"),
  24850. weight: math.unit(30, "lb"),
  24851. name: "Back",
  24852. image: {
  24853. source: "./media/characters/weatley/back.svg",
  24854. bottom: 10.7 / 414,
  24855. extra: 403.5 / 362
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Normal",
  24862. height: math.unit(2 + 11 / 12, "feet"),
  24863. default: true
  24864. },
  24865. ]
  24866. ))
  24867. characterMakers.push(() => makeCharacter(
  24868. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24869. {
  24870. front: {
  24871. height: math.unit(5 + 2 / 12, "feet"),
  24872. weight: math.unit(50, "kg"),
  24873. name: "Front",
  24874. image: {
  24875. source: "./media/characters/mercury-crescent/front.svg",
  24876. extra: 1088 / 1033,
  24877. bottom: 18.9 / 1109
  24878. }
  24879. },
  24880. },
  24881. [
  24882. {
  24883. name: "Normal",
  24884. height: math.unit(5 + 2 / 12, "feet"),
  24885. default: true
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24891. {
  24892. front: {
  24893. height: math.unit(2, "feet"),
  24894. weight: math.unit(15, "kg"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/diamond-jones/front.svg",
  24898. bottom: 16 / 568
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Normal",
  24905. height: math.unit(2, "feet"),
  24906. default: true
  24907. },
  24908. ]
  24909. ))
  24910. characterMakers.push(() => makeCharacter(
  24911. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24912. {
  24913. front: {
  24914. height: math.unit(3, "feet"),
  24915. weight: math.unit(30, "kg"),
  24916. name: "Front",
  24917. image: {
  24918. source: "./media/characters/sweet-bit/front.svg",
  24919. extra: 675 / 567,
  24920. bottom: 27.7 / 703
  24921. }
  24922. },
  24923. },
  24924. [
  24925. {
  24926. name: "Normal",
  24927. height: math.unit(3, "feet"),
  24928. default: true
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24934. {
  24935. side: {
  24936. height: math.unit(9.178, "feet"),
  24937. weight: math.unit(500, "lb"),
  24938. name: "Side",
  24939. image: {
  24940. source: "./media/characters/umbrazen/side.svg",
  24941. extra: 1730 / 1473,
  24942. bottom: 34.6 / 1765
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(9.178, "feet"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(10, "feet"),
  24959. weight: math.unit(750, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/arlist/front.svg",
  24963. extra: 961 / 778,
  24964. bottom: 6.2 / 986
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Normal",
  24971. height: math.unit(10, "feet"),
  24972. default: true
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24978. {
  24979. front: {
  24980. height: math.unit(5 + 1 / 12, "feet"),
  24981. weight: math.unit(110, "lb"),
  24982. name: "Front",
  24983. image: {
  24984. source: "./media/characters/aradel/front.svg",
  24985. extra: 324 / 303,
  24986. bottom: 3.6 / 329.4
  24987. }
  24988. },
  24989. },
  24990. [
  24991. {
  24992. name: "Normal",
  24993. height: math.unit(5 + 1 / 12, "feet"),
  24994. default: true
  24995. },
  24996. ]
  24997. ))
  24998. characterMakers.push(() => makeCharacter(
  24999. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25000. {
  25001. front: {
  25002. height: math.unit(3 + 8 / 12, "feet"),
  25003. weight: math.unit(50, "lb"),
  25004. name: "Front",
  25005. image: {
  25006. source: "./media/characters/serryn/front.svg",
  25007. extra: 1792 / 1656,
  25008. bottom: 43.5 / 1840
  25009. }
  25010. },
  25011. },
  25012. [
  25013. {
  25014. name: "Normal",
  25015. height: math.unit(3 + 8 / 12, "feet"),
  25016. default: true
  25017. },
  25018. ]
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Xavier Thyme" },
  25022. {
  25023. front: {
  25024. height: math.unit(7 + 10 / 12, "feet"),
  25025. weight: math.unit(255, "lb"),
  25026. name: "Front",
  25027. image: {
  25028. source: "./media/characters/xavier-thyme/front.svg",
  25029. extra: 3733 / 3642,
  25030. bottom: 131 / 3869
  25031. }
  25032. },
  25033. frontRaven: {
  25034. height: math.unit(7 + 10 / 12, "feet"),
  25035. weight: math.unit(255, "lb"),
  25036. name: "Front (Raven)",
  25037. image: {
  25038. source: "./media/characters/xavier-thyme/front-raven.svg",
  25039. extra: 4385 / 3642,
  25040. bottom: 131 / 4517
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Normal",
  25047. height: math.unit(7 + 10 / 12, "feet"),
  25048. default: true
  25049. },
  25050. ]
  25051. ))
  25052. characterMakers.push(() => makeCharacter(
  25053. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25054. {
  25055. front: {
  25056. height: math.unit(1.6, "m"),
  25057. weight: math.unit(50, "kg"),
  25058. name: "Front",
  25059. image: {
  25060. source: "./media/characters/kiki/front.svg",
  25061. extra: 4682 / 3610,
  25062. bottom: 115 / 4777
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Normal",
  25069. height: math.unit(1.6, "meters"),
  25070. default: true
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25076. {
  25077. front: {
  25078. height: math.unit(50, "m"),
  25079. weight: math.unit(500, "tonnes"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/ryoko/front.svg",
  25083. extra: 4632 / 3926,
  25084. bottom: 193 / 4823
  25085. }
  25086. },
  25087. },
  25088. [
  25089. {
  25090. name: "Normal",
  25091. height: math.unit(50, "meters"),
  25092. default: true
  25093. },
  25094. ]
  25095. ))
  25096. characterMakers.push(() => makeCharacter(
  25097. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25098. {
  25099. front: {
  25100. height: math.unit(30, "m"),
  25101. weight: math.unit(22, "tonnes"),
  25102. name: "Front",
  25103. image: {
  25104. source: "./media/characters/elio/front.svg",
  25105. extra: 4582 / 3720,
  25106. bottom: 236 / 4828
  25107. }
  25108. },
  25109. },
  25110. [
  25111. {
  25112. name: "Normal",
  25113. height: math.unit(30, "meters"),
  25114. default: true
  25115. },
  25116. ]
  25117. ))
  25118. characterMakers.push(() => makeCharacter(
  25119. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25120. {
  25121. front: {
  25122. height: math.unit(6 + 3 / 12, "feet"),
  25123. weight: math.unit(120, "lb"),
  25124. name: "Front",
  25125. image: {
  25126. source: "./media/characters/azura/front.svg",
  25127. extra: 1149 / 1135,
  25128. bottom: 45 / 1194
  25129. }
  25130. },
  25131. frontClothed: {
  25132. height: math.unit(6 + 3 / 12, "feet"),
  25133. weight: math.unit(120, "lb"),
  25134. name: "Front (Clothed)",
  25135. image: {
  25136. source: "./media/characters/azura/front-clothed.svg",
  25137. extra: 1149 / 1135,
  25138. bottom: 45 / 1194
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Normal",
  25145. height: math.unit(6 + 3 / 12, "feet"),
  25146. default: true
  25147. },
  25148. {
  25149. name: "Macro",
  25150. height: math.unit(20 + 6 / 12, "feet")
  25151. },
  25152. {
  25153. name: "Megamacro",
  25154. height: math.unit(12, "miles")
  25155. },
  25156. {
  25157. name: "Gigamacro",
  25158. height: math.unit(10000, "miles")
  25159. },
  25160. {
  25161. name: "Teramacro",
  25162. height: math.unit(900000, "miles")
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(12, "feet"),
  25171. weight: math.unit(1, "ton"),
  25172. capacity: math.unit(660000, "gallons"),
  25173. name: "Front",
  25174. image: {
  25175. source: "./media/characters/zeus/front.svg",
  25176. extra: 5005 / 4717,
  25177. bottom: 363 / 5388
  25178. }
  25179. },
  25180. },
  25181. [
  25182. {
  25183. name: "Normal",
  25184. height: math.unit(12, "feet")
  25185. },
  25186. {
  25187. name: "Preferred Size",
  25188. height: math.unit(0.5, "miles"),
  25189. default: true
  25190. },
  25191. {
  25192. name: "Giga Horse",
  25193. height: math.unit(300, "miles")
  25194. },
  25195. {
  25196. name: "Riding Planets",
  25197. height: math.unit(30, "megameters")
  25198. },
  25199. {
  25200. name: "Cosmic Giant",
  25201. height: math.unit(3, "zettameters")
  25202. },
  25203. {
  25204. name: "Breeding God",
  25205. height: math.unit(9.92e22, "yottameters")
  25206. },
  25207. ]
  25208. ))
  25209. characterMakers.push(() => makeCharacter(
  25210. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25211. {
  25212. side: {
  25213. height: math.unit(9, "feet"),
  25214. weight: math.unit(1500, "kg"),
  25215. name: "Side",
  25216. image: {
  25217. source: "./media/characters/fang/side.svg",
  25218. extra: 924 / 866,
  25219. bottom: 47.5 / 972.3
  25220. }
  25221. },
  25222. },
  25223. [
  25224. {
  25225. name: "Normal",
  25226. height: math.unit(9, "feet"),
  25227. default: true
  25228. },
  25229. {
  25230. name: "Macro",
  25231. height: math.unit(75 + 6 / 12, "feet")
  25232. },
  25233. {
  25234. name: "Teramacro",
  25235. height: math.unit(50000, "miles")
  25236. },
  25237. ]
  25238. ))
  25239. characterMakers.push(() => makeCharacter(
  25240. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25241. {
  25242. front: {
  25243. height: math.unit(10, "feet"),
  25244. weight: math.unit(2, "tons"),
  25245. name: "Front",
  25246. image: {
  25247. source: "./media/characters/rekhit/front.svg",
  25248. extra: 2796 / 2590,
  25249. bottom: 225 / 3022
  25250. }
  25251. },
  25252. },
  25253. [
  25254. {
  25255. name: "Normal",
  25256. height: math.unit(10, "feet"),
  25257. default: true
  25258. },
  25259. {
  25260. name: "Macro",
  25261. height: math.unit(500, "feet")
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Dahlia Verrick" },
  25267. {
  25268. front: {
  25269. height: math.unit(7 + 6.451 / 12, "feet"),
  25270. weight: math.unit(310, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/dahlia-verrick/front.svg",
  25274. extra: 1488 / 1365,
  25275. bottom: 6.2 / 1495
  25276. }
  25277. },
  25278. back: {
  25279. height: math.unit(7 + 6.451 / 12, "feet"),
  25280. weight: math.unit(310, "lb"),
  25281. name: "Back",
  25282. image: {
  25283. source: "./media/characters/dahlia-verrick/back.svg",
  25284. extra: 1472 / 1351,
  25285. bottom: 5.28 / 1477
  25286. }
  25287. },
  25288. frontBusiness: {
  25289. height: math.unit(7 + 6.451 / 12, "feet"),
  25290. weight: math.unit(200, "lb"),
  25291. name: "Front (Business)",
  25292. image: {
  25293. source: "./media/characters/dahlia-verrick/front-business.svg",
  25294. extra: 1478 / 1381,
  25295. bottom: 5.5 / 1484
  25296. }
  25297. },
  25298. frontCasual: {
  25299. height: math.unit(7 + 6.451 / 12, "feet"),
  25300. weight: math.unit(200, "lb"),
  25301. name: "Front (Casual)",
  25302. image: {
  25303. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25304. extra: 1478 / 1381,
  25305. bottom: 5.5 / 1484
  25306. }
  25307. },
  25308. },
  25309. [
  25310. {
  25311. name: "Travel-Sized",
  25312. height: math.unit(7.45, "inches")
  25313. },
  25314. {
  25315. name: "Normal",
  25316. height: math.unit(7 + 6.451 / 12, "feet"),
  25317. default: true
  25318. },
  25319. {
  25320. name: "Hitting the Town",
  25321. height: math.unit(37 + 8 / 12, "feet")
  25322. },
  25323. {
  25324. name: "Stomp in the Suburbs",
  25325. height: math.unit(964 + 9.728 / 12, "feet")
  25326. },
  25327. {
  25328. name: "Sit on the City",
  25329. height: math.unit(61747 + 10.592 / 12, "feet")
  25330. },
  25331. {
  25332. name: "Glomp the Globe",
  25333. height: math.unit(252919327 + 4.832 / 12, "feet")
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25339. {
  25340. front: {
  25341. height: math.unit(6 + 4 / 12, "feet"),
  25342. weight: math.unit(320, "lb"),
  25343. name: "Front",
  25344. image: {
  25345. source: "./media/characters/balina-mahigan/front.svg",
  25346. extra: 447 / 428,
  25347. bottom: 18 / 466
  25348. }
  25349. },
  25350. back: {
  25351. height: math.unit(6 + 4 / 12, "feet"),
  25352. weight: math.unit(320, "lb"),
  25353. name: "Back",
  25354. image: {
  25355. source: "./media/characters/balina-mahigan/back.svg",
  25356. extra: 445 / 428,
  25357. bottom: 4.07 / 448
  25358. }
  25359. },
  25360. arm: {
  25361. height: math.unit(1.88, "feet"),
  25362. name: "Arm",
  25363. image: {
  25364. source: "./media/characters/balina-mahigan/arm.svg"
  25365. }
  25366. },
  25367. backPort: {
  25368. height: math.unit(0.685, "feet"),
  25369. name: "Back Port",
  25370. image: {
  25371. source: "./media/characters/balina-mahigan/back-port.svg"
  25372. }
  25373. },
  25374. hoofpaw: {
  25375. height: math.unit(1.41, "feet"),
  25376. name: "Hoofpaw",
  25377. image: {
  25378. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25379. }
  25380. },
  25381. leftHandBack: {
  25382. height: math.unit(0.938, "feet"),
  25383. name: "Left Hand (Back)",
  25384. image: {
  25385. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25386. }
  25387. },
  25388. leftHandFront: {
  25389. height: math.unit(0.938, "feet"),
  25390. name: "Left Hand (Front)",
  25391. image: {
  25392. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25393. }
  25394. },
  25395. rightHandBack: {
  25396. height: math.unit(0.95, "feet"),
  25397. name: "Right Hand (Back)",
  25398. image: {
  25399. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25400. }
  25401. },
  25402. rightHandFront: {
  25403. height: math.unit(0.95, "feet"),
  25404. name: "Right Hand (Front)",
  25405. image: {
  25406. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25407. }
  25408. },
  25409. },
  25410. [
  25411. {
  25412. name: "Normal",
  25413. height: math.unit(6 + 4 / 12, "feet"),
  25414. default: true
  25415. },
  25416. ]
  25417. ))
  25418. characterMakers.push(() => makeCharacter(
  25419. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25420. {
  25421. front: {
  25422. height: math.unit(6, "feet"),
  25423. weight: math.unit(320, "lb"),
  25424. name: "Front",
  25425. image: {
  25426. source: "./media/characters/balina-mejeri/front.svg",
  25427. extra: 517 / 488,
  25428. bottom: 44.2 / 561
  25429. }
  25430. },
  25431. },
  25432. [
  25433. {
  25434. name: "Normal",
  25435. height: math.unit(6 + 4 / 12, "feet")
  25436. },
  25437. {
  25438. name: "Business",
  25439. height: math.unit(155, "feet"),
  25440. default: true
  25441. },
  25442. ]
  25443. ))
  25444. characterMakers.push(() => makeCharacter(
  25445. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25446. {
  25447. kneeling: {
  25448. height: math.unit(6 + 4 / 12, "feet"),
  25449. weight: math.unit(300 * 20, "lb"),
  25450. name: "Kneeling",
  25451. image: {
  25452. source: "./media/characters/balbarian/kneeling.svg",
  25453. extra: 922 / 862,
  25454. bottom: 42.4 / 965
  25455. }
  25456. },
  25457. },
  25458. [
  25459. {
  25460. name: "Normal",
  25461. height: math.unit(6 + 4 / 12, "feet")
  25462. },
  25463. {
  25464. name: "Treasured",
  25465. height: math.unit(18 + 9 / 12, "feet"),
  25466. default: true
  25467. },
  25468. {
  25469. name: "Macro",
  25470. height: math.unit(900, "feet")
  25471. },
  25472. ]
  25473. ))
  25474. characterMakers.push(() => makeCharacter(
  25475. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25476. {
  25477. front: {
  25478. height: math.unit(6 + 4 / 12, "feet"),
  25479. weight: math.unit(325, "lb"),
  25480. name: "Front",
  25481. image: {
  25482. source: "./media/characters/balina-amarini/front.svg",
  25483. extra: 415 / 403,
  25484. bottom: 19 / 433.4
  25485. }
  25486. },
  25487. back: {
  25488. height: math.unit(6 + 4 / 12, "feet"),
  25489. weight: math.unit(325, "lb"),
  25490. name: "Back",
  25491. image: {
  25492. source: "./media/characters/balina-amarini/back.svg",
  25493. extra: 415 / 403,
  25494. bottom: 13.5 / 432
  25495. }
  25496. },
  25497. overdrive: {
  25498. height: math.unit(6 + 4 / 12, "feet"),
  25499. weight: math.unit(400, "lb"),
  25500. name: "Overdrive",
  25501. image: {
  25502. source: "./media/characters/balina-amarini/overdrive.svg",
  25503. extra: 269 / 259,
  25504. bottom: 12 / 282
  25505. }
  25506. },
  25507. },
  25508. [
  25509. {
  25510. name: "Boom",
  25511. height: math.unit(9 + 10 / 12, "feet"),
  25512. default: true
  25513. },
  25514. {
  25515. name: "Macro",
  25516. height: math.unit(280, "feet")
  25517. },
  25518. ]
  25519. ))
  25520. characterMakers.push(() => makeCharacter(
  25521. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25522. {
  25523. goddess: {
  25524. height: math.unit(600, "feet"),
  25525. weight: math.unit(2000000, "tons"),
  25526. name: "Goddess",
  25527. image: {
  25528. source: "./media/characters/lady-kubwa/goddess.svg",
  25529. extra: 1240.5 / 1223,
  25530. bottom: 22 / 1263
  25531. }
  25532. },
  25533. goddesser: {
  25534. height: math.unit(900, "feet"),
  25535. weight: math.unit(20000000, "lb"),
  25536. name: "Goddess-er",
  25537. image: {
  25538. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25539. extra: 899 / 888,
  25540. bottom: 12.6 / 912
  25541. }
  25542. },
  25543. },
  25544. [
  25545. {
  25546. name: "Macro",
  25547. height: math.unit(600, "feet"),
  25548. default: true
  25549. },
  25550. {
  25551. name: "Megamacro",
  25552. height: math.unit(250, "miles")
  25553. },
  25554. ]
  25555. ))
  25556. characterMakers.push(() => makeCharacter(
  25557. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25558. {
  25559. front: {
  25560. height: math.unit(7 + 7 / 12, "feet"),
  25561. weight: math.unit(250, "lb"),
  25562. name: "Front",
  25563. image: {
  25564. source: "./media/characters/tala-grovehorn/front.svg",
  25565. extra: 2636 / 2525,
  25566. bottom: 147 / 2781
  25567. }
  25568. },
  25569. back: {
  25570. height: math.unit(7 + 7 / 12, "feet"),
  25571. weight: math.unit(250, "lb"),
  25572. name: "Back",
  25573. image: {
  25574. source: "./media/characters/tala-grovehorn/back.svg",
  25575. extra: 2635 / 2539,
  25576. bottom: 100 / 2732.8
  25577. }
  25578. },
  25579. mouth: {
  25580. height: math.unit(1.15, "feet"),
  25581. name: "Mouth",
  25582. image: {
  25583. source: "./media/characters/tala-grovehorn/mouth.svg"
  25584. }
  25585. },
  25586. dick: {
  25587. height: math.unit(2.36, "feet"),
  25588. name: "Dick",
  25589. image: {
  25590. source: "./media/characters/tala-grovehorn/dick.svg"
  25591. }
  25592. },
  25593. slit: {
  25594. height: math.unit(0.61, "feet"),
  25595. name: "Slit",
  25596. image: {
  25597. source: "./media/characters/tala-grovehorn/slit.svg"
  25598. }
  25599. },
  25600. },
  25601. [
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25606. {
  25607. front: {
  25608. height: math.unit(7 + 7 / 12, "feet"),
  25609. weight: math.unit(225, "lb"),
  25610. name: "Front",
  25611. image: {
  25612. source: "./media/characters/epona/front.svg",
  25613. extra: 2445 / 2290,
  25614. bottom: 251 / 2696
  25615. }
  25616. },
  25617. back: {
  25618. height: math.unit(7 + 7 / 12, "feet"),
  25619. weight: math.unit(225, "lb"),
  25620. name: "Back",
  25621. image: {
  25622. source: "./media/characters/epona/back.svg",
  25623. extra: 2546 / 2408,
  25624. bottom: 44 / 2589
  25625. }
  25626. },
  25627. genitals: {
  25628. height: math.unit(1.5, "feet"),
  25629. name: "Genitals",
  25630. image: {
  25631. source: "./media/characters/epona/genitals.svg"
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(7 + 7 / 12, "feet")
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25644. {
  25645. front: {
  25646. height: math.unit(7, "feet"),
  25647. weight: math.unit(518, "lb"),
  25648. name: "Front",
  25649. image: {
  25650. source: "./media/characters/avia-bloodbourn/front.svg",
  25651. extra: 1466 / 1350,
  25652. bottom: 65 / 1527
  25653. }
  25654. },
  25655. },
  25656. [
  25657. ]
  25658. ))
  25659. characterMakers.push(() => makeCharacter(
  25660. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25661. {
  25662. front: {
  25663. height: math.unit(9.35, "feet"),
  25664. weight: math.unit(600, "lb"),
  25665. name: "Front",
  25666. image: {
  25667. source: "./media/characters/amera/front.svg",
  25668. extra: 891 / 818,
  25669. bottom: 30 / 922.7
  25670. }
  25671. },
  25672. back: {
  25673. height: math.unit(9.35, "feet"),
  25674. weight: math.unit(600, "lb"),
  25675. name: "Back",
  25676. image: {
  25677. source: "./media/characters/amera/back.svg",
  25678. extra: 876 / 824,
  25679. bottom: 6.8 / 884
  25680. }
  25681. },
  25682. dick: {
  25683. height: math.unit(2.14, "feet"),
  25684. name: "Dick",
  25685. image: {
  25686. source: "./media/characters/amera/dick.svg"
  25687. }
  25688. },
  25689. },
  25690. [
  25691. {
  25692. name: "Normal",
  25693. height: math.unit(9.35, "feet"),
  25694. default: true
  25695. },
  25696. ]
  25697. ))
  25698. characterMakers.push(() => makeCharacter(
  25699. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25700. {
  25701. kneeling: {
  25702. height: math.unit(3 + 4 / 12, "feet"),
  25703. weight: math.unit(90, "lb"),
  25704. name: "Kneeling",
  25705. image: {
  25706. source: "./media/characters/rosewen/kneeling.svg",
  25707. extra: 1835 / 1571,
  25708. bottom: 27.7 / 1862
  25709. }
  25710. },
  25711. },
  25712. [
  25713. {
  25714. name: "Normal",
  25715. height: math.unit(3 + 4 / 12, "feet"),
  25716. default: true
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25722. {
  25723. front: {
  25724. height: math.unit(5 + 10 / 12, "feet"),
  25725. weight: math.unit(200, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/sabah/front.svg",
  25729. extra: 849 / 763,
  25730. bottom: 33.9 / 881
  25731. }
  25732. },
  25733. },
  25734. [
  25735. {
  25736. name: "Normal",
  25737. height: math.unit(5 + 10 / 12, "feet"),
  25738. default: true
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25744. {
  25745. front: {
  25746. height: math.unit(3 + 5 / 12, "feet"),
  25747. weight: math.unit(40, "kg"),
  25748. name: "Front",
  25749. image: {
  25750. source: "./media/characters/purple-flame/front.svg",
  25751. extra: 1577 / 1412,
  25752. bottom: 97 / 1694
  25753. }
  25754. },
  25755. frontDressed: {
  25756. height: math.unit(3 + 5 / 12, "feet"),
  25757. weight: math.unit(40, "kg"),
  25758. name: "Front (Dressed)",
  25759. image: {
  25760. source: "./media/characters/purple-flame/front-dressed.svg",
  25761. extra: 1577 / 1412,
  25762. bottom: 97 / 1694
  25763. }
  25764. },
  25765. headphones: {
  25766. height: math.unit(0.85, "feet"),
  25767. name: "Headphones",
  25768. image: {
  25769. source: "./media/characters/purple-flame/headphones.svg"
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Really Small",
  25776. height: math.unit(5, "cm")
  25777. },
  25778. {
  25779. name: "Micro",
  25780. height: math.unit(1 + 5 / 12, "feet")
  25781. },
  25782. {
  25783. name: "Normal",
  25784. height: math.unit(3 + 5 / 12, "feet"),
  25785. default: true
  25786. },
  25787. {
  25788. name: "Minimacro",
  25789. height: math.unit(125, "feet")
  25790. },
  25791. {
  25792. name: "Macro",
  25793. height: math.unit(0.5, "miles")
  25794. },
  25795. {
  25796. name: "Megamacro",
  25797. height: math.unit(50, "miles")
  25798. },
  25799. {
  25800. name: "Gigantic",
  25801. height: math.unit(750, "miles")
  25802. },
  25803. {
  25804. name: "Planetary",
  25805. height: math.unit(15000, "miles")
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(14, "feet"),
  25814. weight: math.unit(959, "lb"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/arsenal/front.svg",
  25818. extra: 2357 / 2157,
  25819. bottom: 93 / 2458
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(14, "feet"),
  25827. default: true
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25833. {
  25834. front: {
  25835. height: math.unit(6, "feet"),
  25836. weight: math.unit(150, "lb"),
  25837. name: "Front",
  25838. image: {
  25839. source: "./media/characters/adira/front.svg",
  25840. extra: 1078 / 1029,
  25841. bottom: 87 / 1166
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Micro",
  25848. height: math.unit(4, "inches"),
  25849. default: true
  25850. },
  25851. {
  25852. name: "Macro",
  25853. height: math.unit(50, "feet")
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25859. {
  25860. front: {
  25861. height: math.unit(16, "feet"),
  25862. weight: math.unit(1000, "lb"),
  25863. name: "Front",
  25864. image: {
  25865. source: "./media/characters/grim/front.svg",
  25866. extra: 622 / 614,
  25867. bottom: 18.1 / 642
  25868. }
  25869. },
  25870. back: {
  25871. height: math.unit(16, "feet"),
  25872. weight: math.unit(1000, "lb"),
  25873. name: "Back",
  25874. image: {
  25875. source: "./media/characters/grim/back.svg",
  25876. extra: 610.6 / 602,
  25877. bottom: 40.8 / 652
  25878. }
  25879. },
  25880. hunched: {
  25881. height: math.unit(9.75, "feet"),
  25882. weight: math.unit(1000, "lb"),
  25883. name: "Hunched",
  25884. image: {
  25885. source: "./media/characters/grim/hunched.svg",
  25886. extra: 304 / 297,
  25887. bottom: 35.4 / 394
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Normal",
  25894. height: math.unit(16, "feet"),
  25895. default: true
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(2.3, "meters"),
  25904. weight: math.unit(300, "lb"),
  25905. name: "Front",
  25906. image: {
  25907. source: "./media/characters/sinja/front-sfw.svg",
  25908. extra: 1393 / 1294,
  25909. bottom: 70 / 1463
  25910. }
  25911. },
  25912. frontNsfw: {
  25913. height: math.unit(2.3, "meters"),
  25914. weight: math.unit(300, "lb"),
  25915. name: "Front (NSFW)",
  25916. image: {
  25917. source: "./media/characters/sinja/front-nsfw.svg",
  25918. extra: 1393 / 1294,
  25919. bottom: 70 / 1463
  25920. }
  25921. },
  25922. back: {
  25923. height: math.unit(2.3, "meters"),
  25924. weight: math.unit(300, "lb"),
  25925. name: "Back",
  25926. image: {
  25927. source: "./media/characters/sinja/back.svg",
  25928. extra: 1393 / 1294,
  25929. bottom: 70 / 1463
  25930. }
  25931. },
  25932. head: {
  25933. height: math.unit(1.771, "feet"),
  25934. name: "Head",
  25935. image: {
  25936. source: "./media/characters/sinja/head.svg"
  25937. }
  25938. },
  25939. slit: {
  25940. height: math.unit(0.8, "feet"),
  25941. name: "Slit",
  25942. image: {
  25943. source: "./media/characters/sinja/slit.svg"
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Normal",
  25950. height: math.unit(2.3, "meters")
  25951. },
  25952. {
  25953. name: "Macro",
  25954. height: math.unit(91, "meters"),
  25955. default: true
  25956. },
  25957. {
  25958. name: "Megamacro",
  25959. height: math.unit(91440, "meters")
  25960. },
  25961. {
  25962. name: "Gigamacro",
  25963. height: math.unit(60960000, "meters")
  25964. },
  25965. {
  25966. name: "Teramacro",
  25967. height: math.unit(9144000000, "meters")
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25973. {
  25974. front: {
  25975. height: math.unit(1.7, "meters"),
  25976. weight: math.unit(130, "lb"),
  25977. name: "Front",
  25978. image: {
  25979. source: "./media/characters/kyu/front.svg",
  25980. extra: 415 / 395,
  25981. bottom: 5 / 420
  25982. }
  25983. },
  25984. head: {
  25985. height: math.unit(1.75, "feet"),
  25986. name: "Head",
  25987. image: {
  25988. source: "./media/characters/kyu/head.svg"
  25989. }
  25990. },
  25991. foot: {
  25992. height: math.unit(0.81, "feet"),
  25993. name: "Foot",
  25994. image: {
  25995. source: "./media/characters/kyu/foot.svg"
  25996. }
  25997. },
  25998. },
  25999. [
  26000. {
  26001. name: "Normal",
  26002. height: math.unit(1.7, "meters")
  26003. },
  26004. {
  26005. name: "Macro",
  26006. height: math.unit(131, "feet"),
  26007. default: true
  26008. },
  26009. {
  26010. name: "Megamacro",
  26011. height: math.unit(91440, "meters")
  26012. },
  26013. {
  26014. name: "Gigamacro",
  26015. height: math.unit(60960000, "meters")
  26016. },
  26017. {
  26018. name: "Teramacro",
  26019. height: math.unit(9144000000, "meters")
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(7 + 1 / 12, "feet"),
  26028. weight: math.unit(250, "lb"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/joey/front.svg",
  26032. extra: 1791 / 1537,
  26033. bottom: 28 / 1816
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Micro",
  26040. height: math.unit(3, "inches")
  26041. },
  26042. {
  26043. name: "Normal",
  26044. height: math.unit(7 + 1 / 12, "feet"),
  26045. default: true
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(165, "cm"),
  26054. weight: math.unit(140, "lb"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/sam-evans/front.svg",
  26058. extra: 3417 / 3230,
  26059. bottom: 41.3 / 3417
  26060. }
  26061. },
  26062. frontSixTails: {
  26063. height: math.unit(165, "cm"),
  26064. weight: math.unit(140, "lb"),
  26065. name: "Front-six-tails",
  26066. image: {
  26067. source: "./media/characters/sam-evans/front-six-tails.svg",
  26068. extra: 3417 / 3230,
  26069. bottom: 41.3 / 3417
  26070. }
  26071. },
  26072. back: {
  26073. height: math.unit(165, "cm"),
  26074. weight: math.unit(140, "lb"),
  26075. name: "Back",
  26076. image: {
  26077. source: "./media/characters/sam-evans/back.svg",
  26078. extra: 3227 / 3032,
  26079. bottom: 6.8 / 3234
  26080. }
  26081. },
  26082. face: {
  26083. height: math.unit(0.68, "feet"),
  26084. name: "Face",
  26085. image: {
  26086. source: "./media/characters/sam-evans/face.svg"
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(165, "cm"),
  26094. default: true
  26095. },
  26096. {
  26097. name: "Macro",
  26098. height: math.unit(100, "meters")
  26099. },
  26100. {
  26101. name: "Macro+",
  26102. height: math.unit(800, "meters")
  26103. },
  26104. {
  26105. name: "Macro++",
  26106. height: math.unit(3, "km")
  26107. },
  26108. {
  26109. name: "Macro+++",
  26110. height: math.unit(30, "km")
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26116. {
  26117. front: {
  26118. height: math.unit(10, "feet"),
  26119. weight: math.unit(750, "lb"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/juliet-a/front.svg",
  26123. extra: 1766 / 1720,
  26124. bottom: 43 / 1809
  26125. }
  26126. },
  26127. back: {
  26128. height: math.unit(10, "feet"),
  26129. weight: math.unit(750, "lb"),
  26130. name: "Back",
  26131. image: {
  26132. source: "./media/characters/juliet-a/back.svg",
  26133. extra: 1781 / 1734,
  26134. bottom: 35 / 1810,
  26135. }
  26136. },
  26137. },
  26138. [
  26139. {
  26140. name: "Normal",
  26141. height: math.unit(10, "feet"),
  26142. default: true
  26143. },
  26144. {
  26145. name: "Dragon Form",
  26146. height: math.unit(250, "feet")
  26147. },
  26148. {
  26149. name: "Macro",
  26150. height: math.unit(1000, "feet")
  26151. },
  26152. {
  26153. name: "Megamacro",
  26154. height: math.unit(10000, "feet")
  26155. }
  26156. ]
  26157. ))
  26158. characterMakers.push(() => makeCharacter(
  26159. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26160. {
  26161. regular: {
  26162. height: math.unit(7 + 3 / 12, "feet"),
  26163. weight: math.unit(260, "lb"),
  26164. name: "Regular",
  26165. image: {
  26166. source: "./media/characters/wild/regular.svg",
  26167. extra: 97.45 / 92,
  26168. bottom: 6.8 / 104.3
  26169. }
  26170. },
  26171. biggums: {
  26172. height: math.unit(8 + 6 / 12, "feet"),
  26173. weight: math.unit(425, "lb"),
  26174. name: "Biggums",
  26175. image: {
  26176. source: "./media/characters/wild/biggums.svg",
  26177. extra: 97.45 / 92,
  26178. bottom: 7.5 / 132.34
  26179. }
  26180. },
  26181. mawRegular: {
  26182. height: math.unit(1.24, "feet"),
  26183. name: "Maw (Regular)",
  26184. image: {
  26185. source: "./media/characters/wild/maw.svg"
  26186. }
  26187. },
  26188. mawBiggums: {
  26189. height: math.unit(1.47, "feet"),
  26190. name: "Maw (Biggums)",
  26191. image: {
  26192. source: "./media/characters/wild/maw.svg"
  26193. }
  26194. },
  26195. },
  26196. [
  26197. {
  26198. name: "Normal",
  26199. height: math.unit(7 + 3 / 12, "feet"),
  26200. default: true
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26206. {
  26207. front: {
  26208. height: math.unit(2.5, "meters"),
  26209. weight: math.unit(200, "kg"),
  26210. name: "Front",
  26211. image: {
  26212. source: "./media/characters/vidar/front.svg",
  26213. extra: 2994 / 2795,
  26214. bottom: 56 / 3061
  26215. }
  26216. },
  26217. back: {
  26218. height: math.unit(2.5, "meters"),
  26219. weight: math.unit(200, "kg"),
  26220. name: "Back",
  26221. image: {
  26222. source: "./media/characters/vidar/back.svg",
  26223. extra: 3131 / 2928,
  26224. bottom: 13.5 / 3141.5
  26225. }
  26226. },
  26227. feral: {
  26228. height: math.unit(2.5, "meters"),
  26229. weight: math.unit(2000, "kg"),
  26230. name: "Feral",
  26231. image: {
  26232. source: "./media/characters/vidar/feral.svg",
  26233. extra: 2790 / 1765,
  26234. bottom: 6 / 2796
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(2.5, "meters"),
  26242. default: true
  26243. },
  26244. {
  26245. name: "Macro",
  26246. height: math.unit(100, "meters")
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26252. {
  26253. front: {
  26254. height: math.unit(5 + 9 / 12, "feet"),
  26255. weight: math.unit(120, "lb"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/ash/front.svg",
  26259. extra: 2189 / 1961,
  26260. bottom: 5.2 / 2194
  26261. }
  26262. },
  26263. },
  26264. [
  26265. {
  26266. name: "Normal",
  26267. height: math.unit(5 + 9 / 12, "feet"),
  26268. default: true
  26269. },
  26270. ]
  26271. ))
  26272. characterMakers.push(() => makeCharacter(
  26273. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26274. {
  26275. front: {
  26276. height: math.unit(9, "feet"),
  26277. weight: math.unit(10000, "lb"),
  26278. name: "Front",
  26279. image: {
  26280. source: "./media/characters/gygabite/front.svg",
  26281. bottom: 31.7 / 537.8,
  26282. extra: 505 / 370
  26283. }
  26284. },
  26285. },
  26286. [
  26287. {
  26288. name: "Normal",
  26289. height: math.unit(9, "feet"),
  26290. default: true
  26291. },
  26292. ]
  26293. ))
  26294. characterMakers.push(() => makeCharacter(
  26295. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26296. {
  26297. front: {
  26298. height: math.unit(12, "feet"),
  26299. weight: math.unit(35000, "lb"),
  26300. name: "Front",
  26301. image: {
  26302. source: "./media/characters/p0tat0/front.svg",
  26303. extra: 1065 / 921,
  26304. bottom: 55.7 / 1121.25
  26305. }
  26306. },
  26307. },
  26308. [
  26309. {
  26310. name: "Normal",
  26311. height: math.unit(12, "feet"),
  26312. default: true
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26318. {
  26319. side: {
  26320. height: math.unit(6.5, "feet"),
  26321. weight: math.unit(800, "lb"),
  26322. name: "Side",
  26323. image: {
  26324. source: "./media/characters/dusk/side.svg",
  26325. extra: 615 / 373,
  26326. bottom: 53 / 664
  26327. }
  26328. },
  26329. sitting: {
  26330. height: math.unit(7, "feet"),
  26331. weight: math.unit(800, "lb"),
  26332. name: "Sitting",
  26333. image: {
  26334. source: "./media/characters/dusk/sitting.svg",
  26335. extra: 753 / 425,
  26336. bottom: 33 / 774
  26337. }
  26338. },
  26339. head: {
  26340. height: math.unit(6.1, "feet"),
  26341. name: "Head",
  26342. image: {
  26343. source: "./media/characters/dusk/head.svg"
  26344. }
  26345. },
  26346. },
  26347. [
  26348. {
  26349. name: "Normal",
  26350. height: math.unit(7, "feet"),
  26351. default: true
  26352. },
  26353. ]
  26354. ))
  26355. characterMakers.push(() => makeCharacter(
  26356. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26357. {
  26358. front: {
  26359. height: math.unit(15, "feet"),
  26360. weight: math.unit(7000, "lb"),
  26361. name: "Front",
  26362. image: {
  26363. source: "./media/characters/jay-direwolf/front.svg",
  26364. extra: 1810 / 1732,
  26365. bottom: 66 / 1892
  26366. }
  26367. },
  26368. },
  26369. [
  26370. {
  26371. name: "Normal",
  26372. height: math.unit(15, "feet"),
  26373. default: true
  26374. },
  26375. ]
  26376. ))
  26377. characterMakers.push(() => makeCharacter(
  26378. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26379. {
  26380. front: {
  26381. height: math.unit(4 + 9 / 12, "feet"),
  26382. weight: math.unit(130, "lb"),
  26383. name: "Front",
  26384. image: {
  26385. source: "./media/characters/anchovie/front.svg",
  26386. extra: 382 / 350,
  26387. bottom: 25 / 409
  26388. }
  26389. },
  26390. back: {
  26391. height: math.unit(4 + 9 / 12, "feet"),
  26392. weight: math.unit(130, "lb"),
  26393. name: "Back",
  26394. image: {
  26395. source: "./media/characters/anchovie/back.svg",
  26396. extra: 385 / 352,
  26397. bottom: 16.6 / 402
  26398. }
  26399. },
  26400. frontDressed: {
  26401. height: math.unit(4 + 9 / 12, "feet"),
  26402. weight: math.unit(130, "lb"),
  26403. name: "Front (Dressed)",
  26404. image: {
  26405. source: "./media/characters/anchovie/front-dressed.svg",
  26406. extra: 382 / 350,
  26407. bottom: 25 / 409
  26408. }
  26409. },
  26410. backDressed: {
  26411. height: math.unit(4 + 9 / 12, "feet"),
  26412. weight: math.unit(130, "lb"),
  26413. name: "Back (Dressed)",
  26414. image: {
  26415. source: "./media/characters/anchovie/back-dressed.svg",
  26416. extra: 385 / 352,
  26417. bottom: 16.6 / 402
  26418. }
  26419. },
  26420. },
  26421. [
  26422. {
  26423. name: "Micro",
  26424. height: math.unit(6.4, "inches")
  26425. },
  26426. {
  26427. name: "Normal",
  26428. height: math.unit(4 + 9 / 12, "feet"),
  26429. default: true
  26430. },
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(2, "meters"),
  26438. weight: math.unit(180, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/acidrenamon/front.svg",
  26442. extra: 987 / 890,
  26443. bottom: 22.8 / 1009
  26444. }
  26445. },
  26446. back: {
  26447. height: math.unit(2, "meters"),
  26448. weight: math.unit(180, "lb"),
  26449. name: "Back",
  26450. image: {
  26451. source: "./media/characters/acidrenamon/back.svg",
  26452. extra: 983 / 891,
  26453. bottom: 8.4 / 992
  26454. }
  26455. },
  26456. head: {
  26457. height: math.unit(1.92, "feet"),
  26458. name: "Head",
  26459. image: {
  26460. source: "./media/characters/acidrenamon/head.svg"
  26461. }
  26462. },
  26463. rump: {
  26464. height: math.unit(1.72, "feet"),
  26465. name: "Rump",
  26466. image: {
  26467. source: "./media/characters/acidrenamon/rump.svg"
  26468. }
  26469. },
  26470. tail: {
  26471. height: math.unit(4.2, "feet"),
  26472. name: "Tail",
  26473. image: {
  26474. source: "./media/characters/acidrenamon/tail.svg"
  26475. }
  26476. },
  26477. },
  26478. [
  26479. {
  26480. name: "Normal",
  26481. height: math.unit(2, "meters"),
  26482. default: true
  26483. },
  26484. {
  26485. name: "Minimacro",
  26486. height: math.unit(7, "meters")
  26487. },
  26488. {
  26489. name: "Macro",
  26490. height: math.unit(200, "meters")
  26491. },
  26492. {
  26493. name: "Gigamacro",
  26494. height: math.unit(0.2, "earths")
  26495. },
  26496. ]
  26497. ))
  26498. characterMakers.push(() => makeCharacter(
  26499. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26500. {
  26501. front: {
  26502. height: math.unit(6, "feet"),
  26503. weight: math.unit(150, "lb"),
  26504. name: "Front",
  26505. image: {
  26506. source: "./media/characters/kenzie-lee/front.svg",
  26507. extra: 1525 / 1465,
  26508. bottom: 45 / 1570
  26509. }
  26510. },
  26511. side: {
  26512. height: math.unit(6, "feet"),
  26513. weight: math.unit(150, "lb"),
  26514. name: "Side",
  26515. image: {
  26516. source: "./media/characters/kenzie-lee/side.svg",
  26517. extra: 5505 / 5383,
  26518. bottom: 60 / 5573
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(152, "feet"),
  26526. default: true
  26527. },
  26528. {
  26529. name: "Megamacro",
  26530. height: math.unit(7, "miles")
  26531. },
  26532. {
  26533. name: "Gigamacro",
  26534. height: math.unit(8000, "miles")
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26540. {
  26541. side: {
  26542. height: math.unit(6, "feet"),
  26543. weight: math.unit(150, "lb"),
  26544. name: "Side",
  26545. image: {
  26546. source: "./media/characters/withers/side.svg",
  26547. extra: 1830 / 1728,
  26548. bottom: 96 / 1927
  26549. }
  26550. },
  26551. front: {
  26552. height: math.unit(6, "feet"),
  26553. weight: math.unit(150, "lb"),
  26554. name: "Front",
  26555. image: {
  26556. source: "./media/characters/withers/front.svg",
  26557. extra: 1514 / 1438,
  26558. bottom: 118 / 1632
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Macro",
  26565. height: math.unit(168, "feet"),
  26566. default: true
  26567. },
  26568. {
  26569. name: "Megamacro",
  26570. height: math.unit(15, "miles")
  26571. }
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26576. {
  26577. front: {
  26578. height: math.unit(6 + 7 / 12, "feet"),
  26579. weight: math.unit(250, "lb"),
  26580. name: "Front",
  26581. image: {
  26582. source: "./media/characters/nemoskii/front.svg",
  26583. extra: 2270 / 1734,
  26584. bottom: 86 / 2354
  26585. }
  26586. },
  26587. back: {
  26588. height: math.unit(6 + 7 / 12, "feet"),
  26589. weight: math.unit(250, "lb"),
  26590. name: "Back",
  26591. image: {
  26592. source: "./media/characters/nemoskii/back.svg",
  26593. extra: 1845 / 1788,
  26594. bottom: 10.5 / 1852
  26595. }
  26596. },
  26597. head: {
  26598. height: math.unit(1.31, "feet"),
  26599. name: "Head",
  26600. image: {
  26601. source: "./media/characters/nemoskii/head.svg"
  26602. }
  26603. },
  26604. },
  26605. [
  26606. {
  26607. name: "Normal",
  26608. height: math.unit(6 + 7 / 12, "feet"),
  26609. default: true
  26610. },
  26611. ]
  26612. ))
  26613. characterMakers.push(() => makeCharacter(
  26614. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26615. {
  26616. front: {
  26617. height: math.unit(1, "mile"),
  26618. weight: math.unit(265261.9, "lb"),
  26619. name: "Front",
  26620. image: {
  26621. source: "./media/characters/shui/front.svg",
  26622. extra: 1633 / 1564,
  26623. bottom: 91.5 / 1726
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Macro",
  26630. height: math.unit(1, "mile"),
  26631. default: true
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26637. {
  26638. front: {
  26639. height: math.unit(12 + 6 / 12, "feet"),
  26640. weight: math.unit(1342, "lb"),
  26641. name: "Front",
  26642. image: {
  26643. source: "./media/characters/arokh-takakura/front.svg",
  26644. extra: 1089 / 1043,
  26645. bottom: 77.4 / 1176.7
  26646. }
  26647. },
  26648. back: {
  26649. height: math.unit(12 + 6 / 12, "feet"),
  26650. weight: math.unit(1342, "lb"),
  26651. name: "Back",
  26652. image: {
  26653. source: "./media/characters/arokh-takakura/back.svg",
  26654. extra: 1046 / 1019,
  26655. bottom: 102 / 1150
  26656. }
  26657. },
  26658. },
  26659. [
  26660. {
  26661. name: "Big",
  26662. height: math.unit(12 + 6 / 12, "feet"),
  26663. default: true
  26664. },
  26665. ]
  26666. ))
  26667. characterMakers.push(() => makeCharacter(
  26668. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26669. {
  26670. front: {
  26671. height: math.unit(5 + 6 / 12, "feet"),
  26672. weight: math.unit(150, "lb"),
  26673. name: "Front",
  26674. image: {
  26675. source: "./media/characters/theo/front.svg",
  26676. extra: 1184 / 1131,
  26677. bottom: 7.4 / 1191
  26678. }
  26679. },
  26680. },
  26681. [
  26682. {
  26683. name: "Micro",
  26684. height: math.unit(5, "inches")
  26685. },
  26686. {
  26687. name: "Normal",
  26688. height: math.unit(5 + 6 / 12, "feet"),
  26689. default: true
  26690. },
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26695. {
  26696. front: {
  26697. height: math.unit(5 + 9 / 12, "feet"),
  26698. weight: math.unit(130, "lb"),
  26699. name: "Front",
  26700. image: {
  26701. source: "./media/characters/cecelia-swift/front.svg",
  26702. extra: 502 / 484,
  26703. bottom: 23 / 523
  26704. }
  26705. },
  26706. back: {
  26707. height: math.unit(5 + 9 / 12, "feet"),
  26708. weight: math.unit(130, "lb"),
  26709. name: "Back",
  26710. image: {
  26711. source: "./media/characters/cecelia-swift/back.svg",
  26712. extra: 499 / 485,
  26713. bottom: 12 / 511
  26714. }
  26715. },
  26716. head: {
  26717. height: math.unit(0.90, "feet"),
  26718. name: "Head",
  26719. image: {
  26720. source: "./media/characters/cecelia-swift/head.svg"
  26721. }
  26722. },
  26723. rump: {
  26724. height: math.unit(1.75, "feet"),
  26725. name: "Rump",
  26726. image: {
  26727. source: "./media/characters/cecelia-swift/rump.svg"
  26728. }
  26729. },
  26730. },
  26731. [
  26732. {
  26733. name: "Normal",
  26734. height: math.unit(5 + 9 / 12, "feet"),
  26735. default: true
  26736. },
  26737. {
  26738. name: "Big",
  26739. height: math.unit(50, "feet")
  26740. },
  26741. {
  26742. name: "Macro",
  26743. height: math.unit(100, "feet")
  26744. },
  26745. {
  26746. name: "Macro+",
  26747. height: math.unit(500, "feet")
  26748. },
  26749. {
  26750. name: "Macro++",
  26751. height: math.unit(1000, "feet")
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26757. {
  26758. front: {
  26759. height: math.unit(6, "feet"),
  26760. weight: math.unit(150, "lb"),
  26761. name: "Front",
  26762. image: {
  26763. source: "./media/characters/kaunan/front.svg",
  26764. extra: 2890 / 2523,
  26765. bottom: 49 / 2939
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Macro",
  26772. height: math.unit(150, "feet"),
  26773. default: true
  26774. },
  26775. ]
  26776. ))
  26777. characterMakers.push(() => makeCharacter(
  26778. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26779. {
  26780. front: {
  26781. height: math.unit(175, "cm"),
  26782. weight: math.unit(60, "kg"),
  26783. name: "Front",
  26784. image: {
  26785. source: "./media/characters/fei/front.svg",
  26786. extra: 2581 / 2400,
  26787. bottom: 82.2 / 2663
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Mortal",
  26794. height: math.unit(175, "cm")
  26795. },
  26796. {
  26797. name: "Normal",
  26798. height: math.unit(3500, "m"),
  26799. default: true
  26800. },
  26801. {
  26802. name: "Stroll",
  26803. height: math.unit(17.5, "km")
  26804. },
  26805. {
  26806. name: "Showoff",
  26807. height: math.unit(175, "km")
  26808. },
  26809. ]
  26810. ))
  26811. characterMakers.push(() => makeCharacter(
  26812. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26813. {
  26814. front: {
  26815. height: math.unit(7, "feet"),
  26816. weight: math.unit(1000, "kg"),
  26817. name: "Front",
  26818. image: {
  26819. source: "./media/characters/edrax/front.svg",
  26820. extra: 2838 / 2550,
  26821. bottom: 130 / 2968
  26822. }
  26823. },
  26824. },
  26825. [
  26826. {
  26827. name: "Small",
  26828. height: math.unit(7, "feet")
  26829. },
  26830. {
  26831. name: "Normal",
  26832. height: math.unit(1500, "meters")
  26833. },
  26834. {
  26835. name: "Mega",
  26836. height: math.unit(12000000, "km"),
  26837. default: true
  26838. },
  26839. {
  26840. name: "Megamacro",
  26841. height: math.unit(10600000, "lightyears")
  26842. },
  26843. {
  26844. name: "Hypermacro",
  26845. height: math.unit(256, "yottameters")
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26851. {
  26852. front: {
  26853. height: math.unit(10, "feet"),
  26854. weight: math.unit(750, "lb"),
  26855. name: "Front",
  26856. image: {
  26857. source: "./media/characters/clove/front.svg",
  26858. extra: 2031 / 1860,
  26859. bottom: 47.8 / 2080
  26860. }
  26861. },
  26862. back: {
  26863. height: math.unit(10, "feet"),
  26864. weight: math.unit(750, "lb"),
  26865. name: "Back",
  26866. image: {
  26867. source: "./media/characters/clove/back.svg",
  26868. extra: 2025 / 1859,
  26869. bottom: 46 / 2071
  26870. }
  26871. },
  26872. },
  26873. [
  26874. {
  26875. name: "Normal",
  26876. height: math.unit(10, "feet")
  26877. },
  26878. ]
  26879. ))
  26880. characterMakers.push(() => makeCharacter(
  26881. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26882. {
  26883. front: {
  26884. height: math.unit(4, "feet"),
  26885. weight: math.unit(50, "lb"),
  26886. name: "Front",
  26887. image: {
  26888. source: "./media/characters/alex-rabbit/front.svg",
  26889. extra: 507 / 458,
  26890. bottom: 18.5 / 527
  26891. }
  26892. },
  26893. back: {
  26894. height: math.unit(4, "feet"),
  26895. weight: math.unit(50, "lb"),
  26896. name: "Back",
  26897. image: {
  26898. source: "./media/characters/alex-rabbit/back.svg",
  26899. extra: 502 / 460,
  26900. bottom: 18.9 / 521
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Normal",
  26907. height: math.unit(4, "feet"),
  26908. default: true
  26909. },
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26914. {
  26915. front: {
  26916. height: math.unit(1 + 3 / 12, "feet"),
  26917. weight: math.unit(80, "lb"),
  26918. name: "Front",
  26919. image: {
  26920. source: "./media/characters/zander-rose/front.svg",
  26921. extra: 916 / 797,
  26922. bottom: 17 / 933
  26923. }
  26924. },
  26925. back: {
  26926. height: math.unit(1 + 3 / 12, "feet"),
  26927. weight: math.unit(80, "lb"),
  26928. name: "Back",
  26929. image: {
  26930. source: "./media/characters/zander-rose/back.svg",
  26931. extra: 903 / 779,
  26932. bottom: 31 / 934
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Normal",
  26939. height: math.unit(1 + 3 / 12, "feet"),
  26940. default: true
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26946. {
  26947. anthro: {
  26948. height: math.unit(6, "feet"),
  26949. weight: math.unit(150, "lb"),
  26950. name: "Anthro",
  26951. image: {
  26952. source: "./media/characters/razz/anthro.svg",
  26953. extra: 1437 / 1343,
  26954. bottom: 48 / 1485
  26955. }
  26956. },
  26957. feral: {
  26958. height: math.unit(6, "feet"),
  26959. weight: math.unit(150, "lb"),
  26960. name: "Feral",
  26961. image: {
  26962. source: "./media/characters/razz/feral.svg",
  26963. extra: 2569 / 1385,
  26964. bottom: 95 / 2664
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Normal",
  26971. height: math.unit(6, "feet"),
  26972. default: true
  26973. },
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26978. {
  26979. front: {
  26980. height: math.unit(9 + 4 / 12, "feet"),
  26981. weight: math.unit(500, "lb"),
  26982. name: "Front",
  26983. image: {
  26984. source: "./media/characters/morrigan/front.svg",
  26985. extra: 2707 / 2579,
  26986. bottom: 156 / 2863
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Normal",
  26993. height: math.unit(9 + 4 / 12, "feet"),
  26994. default: true
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27000. {
  27001. front: {
  27002. height: math.unit(5, "stories"),
  27003. weight: math.unit(4000, "lb"),
  27004. name: "Front",
  27005. image: {
  27006. source: "./media/characters/jenene/front.svg",
  27007. extra: 1780 / 1710,
  27008. bottom: 57 / 1837
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Normal",
  27015. height: math.unit(5, "stories"),
  27016. default: true
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27022. {
  27023. front: {
  27024. height: math.unit(6, "feet"),
  27025. weight: math.unit(150, "lb"),
  27026. name: "Front",
  27027. image: {
  27028. source: "./media/characters/vix-archaser/front.svg",
  27029. extra: 2767 / 2562,
  27030. bottom: 36 / 2803
  27031. }
  27032. },
  27033. },
  27034. [
  27035. {
  27036. name: "Micro",
  27037. height: math.unit(1, "foot")
  27038. },
  27039. {
  27040. name: "Normal",
  27041. height: math.unit(6 + 5 / 12, "feet")
  27042. },
  27043. {
  27044. name: "Minimacro",
  27045. height: math.unit(500, "feet")
  27046. },
  27047. {
  27048. name: "Macro",
  27049. height: math.unit(4, "miles")
  27050. },
  27051. {
  27052. name: "Megamacro",
  27053. height: math.unit(250, "miles"),
  27054. default: true
  27055. },
  27056. {
  27057. name: "Gigamacro",
  27058. height: math.unit(1, "universe")
  27059. },
  27060. {
  27061. name: "Endgame",
  27062. height: math.unit(100, "multiverses")
  27063. }
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27068. {
  27069. taurSfw: {
  27070. height: math.unit(10, "meters"),
  27071. weight: math.unit(17500, "kg"),
  27072. name: "Taur",
  27073. image: {
  27074. source: "./media/characters/faey/taur-sfw.svg",
  27075. extra: 1200 / 968,
  27076. bottom: 41 / 1241
  27077. }
  27078. },
  27079. chestmaw: {
  27080. height: math.unit(2.01, "meters"),
  27081. name: "Chestmaw",
  27082. image: {
  27083. source: "./media/characters/faey/chestmaw.svg"
  27084. }
  27085. },
  27086. foot: {
  27087. height: math.unit(2.43, "meters"),
  27088. name: "Foot",
  27089. image: {
  27090. source: "./media/characters/faey/foot.svg"
  27091. }
  27092. },
  27093. jaws: {
  27094. height: math.unit(1.66, "meters"),
  27095. name: "Jaws",
  27096. image: {
  27097. source: "./media/characters/faey/jaws.svg"
  27098. }
  27099. },
  27100. tongues: {
  27101. height: math.unit(2.01, "meters"),
  27102. name: "Tongues",
  27103. image: {
  27104. source: "./media/characters/faey/tongues.svg"
  27105. }
  27106. },
  27107. },
  27108. [
  27109. {
  27110. name: "Small",
  27111. height: math.unit(10, "meters"),
  27112. default: true
  27113. },
  27114. {
  27115. name: "Big",
  27116. height: math.unit(500000, "km")
  27117. },
  27118. ]
  27119. ))
  27120. characterMakers.push(() => makeCharacter(
  27121. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27122. {
  27123. front: {
  27124. height: math.unit(7, "feet"),
  27125. weight: math.unit(275, "lb"),
  27126. name: "Front",
  27127. image: {
  27128. source: "./media/characters/roku/front.svg",
  27129. extra: 903 / 878,
  27130. bottom: 37 / 940
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(7, "feet"),
  27138. default: true
  27139. },
  27140. {
  27141. name: "Macro",
  27142. height: math.unit(500, "feet")
  27143. },
  27144. {
  27145. name: "Megamacro",
  27146. height: math.unit(200, "miles")
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27152. {
  27153. front: {
  27154. height: math.unit(6 + 2 / 12, "feet"),
  27155. weight: math.unit(150, "lb"),
  27156. name: "Front",
  27157. image: {
  27158. source: "./media/characters/lira/front.svg",
  27159. extra: 1727 / 1605,
  27160. bottom: 26 / 1753
  27161. }
  27162. },
  27163. back: {
  27164. height: math.unit(6 + 2 / 12, "feet"),
  27165. weight: math.unit(150, "lb"),
  27166. name: "Back",
  27167. image: {
  27168. source: "./media/characters/lira/back.svg",
  27169. extra: 1713 / 159,
  27170. bottom: 20 / 1733
  27171. }
  27172. },
  27173. hand: {
  27174. height: math.unit(0.75, "feet"),
  27175. name: "Hand",
  27176. image: {
  27177. source: "./media/characters/lira/hand.svg"
  27178. }
  27179. },
  27180. maw: {
  27181. height: math.unit(0.65, "feet"),
  27182. name: "Maw",
  27183. image: {
  27184. source: "./media/characters/lira/maw.svg"
  27185. }
  27186. },
  27187. pawDigi: {
  27188. height: math.unit(1.6, "feet"),
  27189. name: "Paw Digi",
  27190. image: {
  27191. source: "./media/characters/lira/paw-digi.svg"
  27192. }
  27193. },
  27194. pawPlanti: {
  27195. height: math.unit(1.4, "feet"),
  27196. name: "Paw Planti",
  27197. image: {
  27198. source: "./media/characters/lira/paw-planti.svg"
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(6 + 2 / 12, "feet"),
  27206. default: true
  27207. },
  27208. {
  27209. name: "Macro",
  27210. height: math.unit(100, "feet")
  27211. },
  27212. {
  27213. name: "Macro²",
  27214. height: math.unit(1600, "feet")
  27215. },
  27216. {
  27217. name: "Planetary",
  27218. height: math.unit(20, "earths")
  27219. },
  27220. ]
  27221. ))
  27222. characterMakers.push(() => makeCharacter(
  27223. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27224. {
  27225. front: {
  27226. height: math.unit(6, "feet"),
  27227. weight: math.unit(150, "lb"),
  27228. name: "Front",
  27229. image: {
  27230. source: "./media/characters/hadjet/front.svg",
  27231. extra: 1480 / 1346,
  27232. bottom: 26 / 1506
  27233. }
  27234. },
  27235. frontNsfw: {
  27236. height: math.unit(6, "feet"),
  27237. weight: math.unit(150, "lb"),
  27238. name: "Front (NSFW)",
  27239. image: {
  27240. source: "./media/characters/hadjet/front-nsfw.svg",
  27241. extra: 1440 / 1358,
  27242. bottom: 52 / 1492
  27243. }
  27244. },
  27245. },
  27246. [
  27247. {
  27248. name: "Macro",
  27249. height: math.unit(10, "stories"),
  27250. default: true
  27251. },
  27252. {
  27253. name: "Megamacro",
  27254. height: math.unit(1.5, "miles")
  27255. },
  27256. {
  27257. name: "Megamacro+",
  27258. height: math.unit(5, "miles")
  27259. },
  27260. ]
  27261. ))
  27262. characterMakers.push(() => makeCharacter(
  27263. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27264. {
  27265. side: {
  27266. height: math.unit(106, "feet"),
  27267. weight: math.unit(500, "tonnes"),
  27268. name: "Side",
  27269. image: {
  27270. source: "./media/characters/kodran/side.svg",
  27271. extra: 553 / 480,
  27272. bottom: 33 / 586
  27273. }
  27274. },
  27275. front: {
  27276. height: math.unit(132, "feet"),
  27277. weight: math.unit(500, "tonnes"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/kodran/front.svg",
  27281. extra: 667 / 643,
  27282. bottom: 42 / 709
  27283. }
  27284. },
  27285. flying: {
  27286. height: math.unit(350, "feet"),
  27287. weight: math.unit(500, "tonnes"),
  27288. name: "Flying",
  27289. image: {
  27290. source: "./media/characters/kodran/flying.svg"
  27291. }
  27292. },
  27293. foot: {
  27294. height: math.unit(33, "feet"),
  27295. name: "Foot",
  27296. image: {
  27297. source: "./media/characters/kodran/foot.svg"
  27298. }
  27299. },
  27300. footFront: {
  27301. height: math.unit(19, "feet"),
  27302. name: "Foot (Front)",
  27303. image: {
  27304. source: "./media/characters/kodran/foot-front.svg",
  27305. extra: 261 / 261,
  27306. bottom: 91 / 352
  27307. }
  27308. },
  27309. headFront: {
  27310. height: math.unit(53, "feet"),
  27311. name: "Head (Front)",
  27312. image: {
  27313. source: "./media/characters/kodran/head-front.svg"
  27314. }
  27315. },
  27316. headSide: {
  27317. height: math.unit(65, "feet"),
  27318. name: "Head (Side)",
  27319. image: {
  27320. source: "./media/characters/kodran/head-side.svg"
  27321. }
  27322. },
  27323. throat: {
  27324. height: math.unit(79, "feet"),
  27325. name: "Throat",
  27326. image: {
  27327. source: "./media/characters/kodran/throat.svg"
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Large",
  27334. height: math.unit(106, "feet"),
  27335. default: true
  27336. },
  27337. ]
  27338. ))
  27339. characterMakers.push(() => makeCharacter(
  27340. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27341. {
  27342. side: {
  27343. height: math.unit(11, "feet"),
  27344. weight: math.unit(150, "lb"),
  27345. name: "Side",
  27346. image: {
  27347. source: "./media/characters/pyxaron/side.svg",
  27348. extra: 305 / 195,
  27349. bottom: 17 / 322
  27350. }
  27351. },
  27352. },
  27353. [
  27354. {
  27355. name: "Normal",
  27356. height: math.unit(11, "feet")
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27362. {
  27363. front: {
  27364. height: math.unit(6, "feet"),
  27365. weight: math.unit(150, "lb"),
  27366. name: "Front",
  27367. image: {
  27368. source: "./media/characters/meep/front.svg",
  27369. extra: 88 / 80,
  27370. bottom: 6 / 94
  27371. }
  27372. },
  27373. },
  27374. [
  27375. {
  27376. name: "Fun Sized",
  27377. height: math.unit(2, "inches"),
  27378. default: true
  27379. },
  27380. {
  27381. name: "Friend Sized",
  27382. height: math.unit(8, "inches")
  27383. },
  27384. ]
  27385. ))
  27386. characterMakers.push(() => makeCharacter(
  27387. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27388. {
  27389. front: {
  27390. height: math.unit(15, "feet"),
  27391. weight: math.unit(2500, "lb"),
  27392. name: "Front",
  27393. image: {
  27394. source: "./media/characters/holly-rabbit/front.svg",
  27395. extra: 1433 / 1233,
  27396. bottom: 125 / 1558
  27397. }
  27398. },
  27399. dick: {
  27400. height: math.unit(4.6, "feet"),
  27401. name: "Dick",
  27402. image: {
  27403. source: "./media/characters/holly-rabbit/dick.svg"
  27404. }
  27405. },
  27406. },
  27407. [
  27408. {
  27409. name: "Normal",
  27410. height: math.unit(15, "feet"),
  27411. default: true
  27412. },
  27413. {
  27414. name: "Macro",
  27415. height: math.unit(250, "feet")
  27416. },
  27417. {
  27418. name: "Macro+",
  27419. height: math.unit(2500, "feet")
  27420. },
  27421. ]
  27422. ))
  27423. characterMakers.push(() => makeCharacter(
  27424. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27425. {
  27426. front: {
  27427. height: math.unit(3.02, "meters"),
  27428. weight: math.unit(500, "kg"),
  27429. name: "Front",
  27430. image: {
  27431. source: "./media/characters/drena/front.svg",
  27432. extra: 282 / 243,
  27433. bottom: 8 / 290
  27434. }
  27435. },
  27436. side: {
  27437. height: math.unit(3.02, "meters"),
  27438. weight: math.unit(500, "kg"),
  27439. name: "Side",
  27440. image: {
  27441. source: "./media/characters/drena/side.svg",
  27442. extra: 280 / 245,
  27443. bottom: 10 / 290
  27444. }
  27445. },
  27446. back: {
  27447. height: math.unit(3.02, "meters"),
  27448. weight: math.unit(500, "kg"),
  27449. name: "Back",
  27450. image: {
  27451. source: "./media/characters/drena/back.svg",
  27452. extra: 278 / 243,
  27453. bottom: 2 / 280
  27454. }
  27455. },
  27456. foot: {
  27457. height: math.unit(0.75, "meters"),
  27458. name: "Foot",
  27459. image: {
  27460. source: "./media/characters/drena/foot.svg"
  27461. }
  27462. },
  27463. maw: {
  27464. height: math.unit(0.82, "meters"),
  27465. name: "Maw",
  27466. image: {
  27467. source: "./media/characters/drena/maw.svg"
  27468. }
  27469. },
  27470. rump: {
  27471. height: math.unit(0.93, "meters"),
  27472. name: "Rump",
  27473. image: {
  27474. source: "./media/characters/drena/rump.svg"
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Normal",
  27481. height: math.unit(3.02, "meters"),
  27482. default: true
  27483. },
  27484. ]
  27485. ))
  27486. characterMakers.push(() => makeCharacter(
  27487. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27488. {
  27489. front: {
  27490. height: math.unit(6 + 4 / 12, "feet"),
  27491. weight: math.unit(250, "lb"),
  27492. name: "Front",
  27493. image: {
  27494. source: "./media/characters/remmyzilla/front.svg",
  27495. extra: 4033 / 3588,
  27496. bottom: 123 / 4156
  27497. }
  27498. },
  27499. back: {
  27500. height: math.unit(6 + 4 / 12, "feet"),
  27501. weight: math.unit(250, "lb"),
  27502. name: "Back",
  27503. image: {
  27504. source: "./media/characters/remmyzilla/back.svg",
  27505. extra: 2687 / 2555,
  27506. bottom: 48 / 2735
  27507. }
  27508. },
  27509. frontFancy: {
  27510. height: math.unit(6 + 4 / 12, "feet"),
  27511. weight: math.unit(250, "lb"),
  27512. name: "Front (Fancy)",
  27513. image: {
  27514. source: "./media/characters/remmyzilla/front-fancy.svg",
  27515. extra: 4119 / 3419,
  27516. bottom: 237 / 4356
  27517. }
  27518. },
  27519. paw: {
  27520. height: math.unit(1.73, "feet"),
  27521. name: "Paw",
  27522. image: {
  27523. source: "./media/characters/remmyzilla/paw.svg"
  27524. }
  27525. },
  27526. maw: {
  27527. height: math.unit(1.73, "feet"),
  27528. name: "Maw",
  27529. image: {
  27530. source: "./media/characters/remmyzilla/maw.svg"
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Normal",
  27537. height: math.unit(6 + 4 / 12, "feet")
  27538. },
  27539. {
  27540. name: "Minimacro",
  27541. height: math.unit(12 + 8 / 12, "feet")
  27542. },
  27543. {
  27544. name: "Normal",
  27545. height: math.unit(640, "feet"),
  27546. default: true
  27547. },
  27548. {
  27549. name: "Megamacro",
  27550. height: math.unit(6400, "feet")
  27551. },
  27552. {
  27553. name: "Gigamacro",
  27554. height: math.unit(64000, "miles")
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(2.5, "meters"),
  27563. weight: math.unit(300, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/lawrence/front.svg",
  27567. extra: 357 / 335,
  27568. bottom: 30 / 387
  27569. }
  27570. },
  27571. back: {
  27572. height: math.unit(2.5, "meters"),
  27573. weight: math.unit(300, "lb"),
  27574. name: "Back",
  27575. image: {
  27576. source: "./media/characters/lawrence/back.svg",
  27577. extra: 357 / 338,
  27578. bottom: 16 / 373
  27579. }
  27580. },
  27581. head: {
  27582. height: math.unit(0.9, "meter"),
  27583. name: "Head",
  27584. image: {
  27585. source: "./media/characters/lawrence/head.svg"
  27586. }
  27587. },
  27588. maw: {
  27589. height: math.unit(0.7, "meter"),
  27590. name: "Maw",
  27591. image: {
  27592. source: "./media/characters/lawrence/maw.svg"
  27593. }
  27594. },
  27595. footBottom: {
  27596. height: math.unit(0.5, "meter"),
  27597. name: "Foot (Bottom)",
  27598. image: {
  27599. source: "./media/characters/lawrence/foot-bottom.svg"
  27600. }
  27601. },
  27602. footTop: {
  27603. height: math.unit(0.5, "meter"),
  27604. name: "Foot (Top)",
  27605. image: {
  27606. source: "./media/characters/lawrence/foot-top.svg"
  27607. }
  27608. },
  27609. },
  27610. [
  27611. {
  27612. name: "Normal",
  27613. height: math.unit(2.5, "meters"),
  27614. default: true
  27615. },
  27616. {
  27617. name: "Macro",
  27618. height: math.unit(95, "meters")
  27619. },
  27620. {
  27621. name: "Megamacro",
  27622. height: math.unit(150, "km")
  27623. },
  27624. ]
  27625. ))
  27626. characterMakers.push(() => makeCharacter(
  27627. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27628. {
  27629. front: {
  27630. height: math.unit(4.2, "meters"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/sydney/front.svg",
  27634. extra: 1323 / 1277,
  27635. bottom: 111 / 1434
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(4.2, "meters")
  27643. },
  27644. ]
  27645. ))
  27646. characterMakers.push(() => makeCharacter(
  27647. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27648. {
  27649. back: {
  27650. height: math.unit(201, "feet"),
  27651. name: "Back",
  27652. image: {
  27653. source: "./media/characters/jessica/back.svg",
  27654. extra: 273 / 259,
  27655. bottom: 7 / 280
  27656. }
  27657. },
  27658. },
  27659. [
  27660. {
  27661. name: "Normal",
  27662. height: math.unit(201, "feet"),
  27663. default: true
  27664. },
  27665. {
  27666. name: "Megamacro",
  27667. height: math.unit(8, "miles")
  27668. },
  27669. ]
  27670. ))
  27671. characterMakers.push(() => makeCharacter(
  27672. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27673. {
  27674. side: {
  27675. height: math.unit(320, "cm"),
  27676. name: "Side",
  27677. image: {
  27678. source: "./media/characters/victoria/side.svg",
  27679. extra: 778 / 346,
  27680. bottom: 56 / 834
  27681. }
  27682. },
  27683. maw: {
  27684. height: math.unit(5.9, "feet"),
  27685. name: "Maw",
  27686. image: {
  27687. source: "./media/characters/victoria/maw.svg"
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Normal",
  27694. height: math.unit(320, "cm"),
  27695. default: true
  27696. },
  27697. ]
  27698. ))
  27699. characterMakers.push(() => makeCharacter(
  27700. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27701. {
  27702. front: {
  27703. height: math.unit(5 + 6 / 12, "feet"),
  27704. name: "Front",
  27705. image: {
  27706. source: "./media/characters/cat/front.svg",
  27707. extra: 1374 / 1257,
  27708. bottom: 59 / 1433
  27709. }
  27710. },
  27711. back: {
  27712. height: math.unit(5 + 6 / 12, "feet"),
  27713. name: "Back",
  27714. image: {
  27715. source: "./media/characters/cat/back.svg",
  27716. extra: 1337 / 1226,
  27717. bottom: 34 / 1371
  27718. }
  27719. },
  27720. taur: {
  27721. height: math.unit(7, "feet"),
  27722. name: "Taur",
  27723. image: {
  27724. source: "./media/characters/cat/taur.svg",
  27725. extra: 1345 / 1231,
  27726. bottom: 66 / 1411
  27727. }
  27728. },
  27729. lucario: {
  27730. height: math.unit(4, "feet"),
  27731. name: "Lucario",
  27732. image: {
  27733. source: "./media/characters/cat/lucario.svg",
  27734. extra: 1470 / 1318,
  27735. bottom: 65 / 1535
  27736. }
  27737. },
  27738. megaLucario: {
  27739. height: math.unit(4, "feet"),
  27740. name: "Mega Lucario",
  27741. image: {
  27742. source: "./media/characters/cat/mega-lucario.svg",
  27743. extra: 1515 / 1319,
  27744. bottom: 63 / 1578
  27745. }
  27746. },
  27747. nickit: {
  27748. height: math.unit(2, "feet"),
  27749. name: "Nickit",
  27750. image: {
  27751. source: "./media/characters/cat/nickit.svg",
  27752. extra: 1980 / 1585,
  27753. bottom: 102 / 2082
  27754. }
  27755. },
  27756. lopunnyFront: {
  27757. height: math.unit(5, "feet"),
  27758. name: "Lopunny (Front)",
  27759. image: {
  27760. source: "./media/characters/cat/lopunny-front.svg",
  27761. extra: 1782 / 1469,
  27762. bottom: 38 / 1820
  27763. }
  27764. },
  27765. lopunnyBack: {
  27766. height: math.unit(5, "feet"),
  27767. name: "Lopunny (Back)",
  27768. image: {
  27769. source: "./media/characters/cat/lopunny-back.svg",
  27770. extra: 1660 / 1490,
  27771. bottom: 25 / 1685
  27772. }
  27773. },
  27774. },
  27775. [
  27776. {
  27777. name: "Really small",
  27778. height: math.unit(1, "nm")
  27779. },
  27780. {
  27781. name: "Micro",
  27782. height: math.unit(5, "inches")
  27783. },
  27784. {
  27785. name: "Normal",
  27786. height: math.unit(5 + 6 / 12, "feet"),
  27787. default: true
  27788. },
  27789. {
  27790. name: "Macro",
  27791. height: math.unit(50, "feet")
  27792. },
  27793. {
  27794. name: "Macro+",
  27795. height: math.unit(150, "feet")
  27796. },
  27797. {
  27798. name: "Megamacro",
  27799. height: math.unit(100, "miles")
  27800. },
  27801. ]
  27802. ))
  27803. characterMakers.push(() => makeCharacter(
  27804. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27805. {
  27806. front: {
  27807. height: math.unit(63.4, "meters"),
  27808. weight: math.unit(3.28349e+6, "kilograms"),
  27809. name: "Front",
  27810. image: {
  27811. source: "./media/characters/kirina-violet/front.svg",
  27812. extra: 2812/2725,
  27813. bottom: 0/2812
  27814. }
  27815. },
  27816. back: {
  27817. height: math.unit(63.4, "meters"),
  27818. weight: math.unit(3.28349e+6, "kilograms"),
  27819. name: "Back",
  27820. image: {
  27821. source: "./media/characters/kirina-violet/back.svg",
  27822. extra: 2812/2725,
  27823. bottom: 0/2812
  27824. }
  27825. },
  27826. mouth: {
  27827. height: math.unit(4.35, "meters"),
  27828. name: "Mouth",
  27829. image: {
  27830. source: "./media/characters/kirina-violet/mouth.svg"
  27831. }
  27832. },
  27833. paw: {
  27834. height: math.unit(5.6, "meters"),
  27835. name: "Paw",
  27836. image: {
  27837. source: "./media/characters/kirina-violet/paw.svg"
  27838. }
  27839. },
  27840. tail: {
  27841. height: math.unit(18, "meters"),
  27842. name: "Tail",
  27843. image: {
  27844. source: "./media/characters/kirina-violet/tail.svg"
  27845. }
  27846. },
  27847. },
  27848. [
  27849. {
  27850. name: "Macro",
  27851. height: math.unit(63.4, "meters"),
  27852. default: true
  27853. },
  27854. ]
  27855. ))
  27856. characterMakers.push(() => makeCharacter(
  27857. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27858. {
  27859. front: {
  27860. height: math.unit(60, "feet"),
  27861. name: "Front",
  27862. image: {
  27863. source: "./media/characters/cat-gigachu/front.svg",
  27864. extra: 1024/780,
  27865. bottom: 23/1047
  27866. }
  27867. },
  27868. back: {
  27869. height: math.unit(60, "feet"),
  27870. name: "Back",
  27871. image: {
  27872. source: "./media/characters/cat-gigachu/back.svg",
  27873. extra: 1024/780,
  27874. bottom: 23/1047
  27875. }
  27876. },
  27877. },
  27878. [
  27879. {
  27880. name: "Dynamax",
  27881. height: math.unit(60, "feet"),
  27882. default: true
  27883. },
  27884. ]
  27885. ))
  27886. characterMakers.push(() => makeCharacter(
  27887. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27888. {
  27889. front: {
  27890. height: math.unit(6, "feet"),
  27891. weight: math.unit(150, "lb"),
  27892. name: "Front",
  27893. image: {
  27894. source: "./media/characters/sfaiyan/front.svg",
  27895. extra: 999/978,
  27896. bottom: 5/1004
  27897. }
  27898. },
  27899. },
  27900. [
  27901. {
  27902. name: "Normal",
  27903. height: math.unit(1.82, "meters")
  27904. },
  27905. {
  27906. name: "Giant",
  27907. height: math.unit(2.27, "km"),
  27908. default: true
  27909. },
  27910. ]
  27911. ))
  27912. characterMakers.push(() => makeCharacter(
  27913. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  27914. {
  27915. front: {
  27916. height: math.unit(179, "cm"),
  27917. weight: math.unit(100, "kg"),
  27918. name: "Front",
  27919. image: {
  27920. source: "./media/characters/raunehkeli/front.svg",
  27921. extra: 1934/1926,
  27922. bottom: 0/1934
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Normal",
  27929. height: math.unit(179, "cm")
  27930. },
  27931. {
  27932. name: "Maximum",
  27933. height: math.unit(575, "meters"),
  27934. default: true
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(6, "feet"),
  27943. weight: math.unit(150, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  27947. extra: 2625/2518,
  27948. bottom: 60/2685
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(6 + 2/12, "feet"),
  27956. default: true
  27957. },
  27958. {
  27959. name: "Macro",
  27960. height: math.unit(1180, "feet")
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  27966. {
  27967. front: {
  27968. height: math.unit(5 + 6/12, "feet"),
  27969. weight: math.unit(108, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/lilith-zott/front.svg",
  27973. extra: 2510/2238,
  27974. bottom: 100/2610
  27975. }
  27976. },
  27977. frontDressed: {
  27978. height: math.unit(5 + 6/12, "feet"),
  27979. weight: math.unit(108, "lb"),
  27980. name: "Front (Dressed)",
  27981. image: {
  27982. source: "./media/characters/lilith-zott/front-dressed.svg",
  27983. extra: 2510/2238,
  27984. bottom: 100/2610
  27985. }
  27986. },
  27987. },
  27988. [
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(5 + 6/12, "feet")
  27992. },
  27993. {
  27994. name: "Macro",
  27995. height: math.unit(200, "feet"),
  27996. default: true
  27997. },
  27998. {
  27999. name: "Macro+",
  28000. height: math.unit(1030, "feet")
  28001. },
  28002. ]
  28003. ))
  28004. characterMakers.push(() => makeCharacter(
  28005. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28006. {
  28007. front: {
  28008. height: math.unit(6, "feet"),
  28009. weight: math.unit(150, "lb"),
  28010. name: "Front",
  28011. image: {
  28012. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28013. extra: 2567/2435,
  28014. bottom: 39/2606
  28015. }
  28016. },
  28017. frontSuper: {
  28018. height: math.unit(6, "feet"),
  28019. name: "Front (Super)",
  28020. image: {
  28021. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28022. extra: 2567/2435,
  28023. bottom: 39/2606
  28024. }
  28025. },
  28026. },
  28027. [
  28028. {
  28029. name: "Normal",
  28030. height: math.unit(5 + 10/12, "feet")
  28031. },
  28032. {
  28033. name: "Macro",
  28034. height: math.unit(220, "feet"),
  28035. default: true
  28036. },
  28037. {
  28038. name: "Macro+",
  28039. height: math.unit(1100, "feet")
  28040. },
  28041. ]
  28042. ))
  28043. characterMakers.push(() => makeCharacter(
  28044. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28045. {
  28046. front: {
  28047. height: math.unit(100, "miles"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/sona/front.svg",
  28051. extra: 2433/2201,
  28052. bottom: 53/2486
  28053. }
  28054. },
  28055. foot: {
  28056. height: math.unit(16.1, "miles"),
  28057. name: "Foot",
  28058. image: {
  28059. source: "./media/characters/sona/foot.svg"
  28060. }
  28061. },
  28062. },
  28063. [
  28064. {
  28065. name: "Macro",
  28066. height: math.unit(100, "miles"),
  28067. default: true
  28068. },
  28069. ]
  28070. ))
  28071. characterMakers.push(() => makeCharacter(
  28072. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28073. {
  28074. front: {
  28075. height: math.unit(6, "feet"),
  28076. weight: math.unit(150, "lb"),
  28077. name: "Front",
  28078. image: {
  28079. source: "./media/characters/bailey/front.svg",
  28080. extra: 1778/1724,
  28081. bottom: 30/1808
  28082. }
  28083. },
  28084. },
  28085. [
  28086. {
  28087. name: "Micro",
  28088. height: math.unit(4, "inches")
  28089. },
  28090. {
  28091. name: "Normal",
  28092. height: math.unit(5 + 5/12, "feet"),
  28093. default: true
  28094. },
  28095. {
  28096. name: "Macro",
  28097. height: math.unit(250, "feet")
  28098. },
  28099. {
  28100. name: "Megamacro",
  28101. height: math.unit(100, "miles")
  28102. },
  28103. ]
  28104. ))
  28105. characterMakers.push(() => makeCharacter(
  28106. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28107. {
  28108. front: {
  28109. height: math.unit(5 + 2/12, "feet"),
  28110. weight: math.unit(120, "lb"),
  28111. name: "Front",
  28112. image: {
  28113. source: "./media/characters/snaps/front.svg",
  28114. extra: 2370/2177,
  28115. bottom: 48/2418
  28116. }
  28117. },
  28118. back: {
  28119. height: math.unit(5 + 2/12, "feet"),
  28120. weight: math.unit(120, "lb"),
  28121. name: "Back",
  28122. image: {
  28123. source: "./media/characters/snaps/back.svg",
  28124. extra: 2408/2258,
  28125. bottom: 15/2423
  28126. }
  28127. },
  28128. },
  28129. [
  28130. {
  28131. name: "Micro",
  28132. height: math.unit(9, "inches")
  28133. },
  28134. {
  28135. name: "Normal",
  28136. height: math.unit(5 + 2/12, "feet"),
  28137. default: true
  28138. },
  28139. {
  28140. name: "Mini Macro",
  28141. height: math.unit(10, "feet")
  28142. },
  28143. ]
  28144. ))
  28145. characterMakers.push(() => makeCharacter(
  28146. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28147. {
  28148. front: {
  28149. height: math.unit(1.8, "meters"),
  28150. weight: math.unit(85, "kg"),
  28151. name: "Front",
  28152. image: {
  28153. source: "./media/characters/azteck/front.svg",
  28154. extra: 2815/2625,
  28155. bottom: 89/2904
  28156. }
  28157. },
  28158. back: {
  28159. height: math.unit(1.8, "meters"),
  28160. weight: math.unit(85, "kg"),
  28161. name: "Back",
  28162. image: {
  28163. source: "./media/characters/azteck/back.svg",
  28164. extra: 2856/2648,
  28165. bottom: 85/2941
  28166. }
  28167. },
  28168. frontDressed: {
  28169. height: math.unit(1.8, "meters"),
  28170. weight: math.unit(85, "kg"),
  28171. name: "Front (Dressed)",
  28172. image: {
  28173. source: "./media/characters/azteck/front-dressed.svg",
  28174. extra: 2147/2003,
  28175. bottom: 68/2215
  28176. }
  28177. },
  28178. head: {
  28179. height: math.unit(0.47, "meters"),
  28180. weight: math.unit(85, "kg"),
  28181. name: "Head",
  28182. image: {
  28183. source: "./media/characters/azteck/head.svg"
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Bite sized",
  28190. height: math.unit(16, "cm")
  28191. },
  28192. {
  28193. name: "Normal",
  28194. height: math.unit(1.8, "meters"),
  28195. default: true
  28196. },
  28197. ]
  28198. ))
  28199. characterMakers.push(() => makeCharacter(
  28200. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28201. {
  28202. front: {
  28203. height: math.unit(6, "feet"),
  28204. weight: math.unit(150, "lb"),
  28205. name: "Front",
  28206. image: {
  28207. source: "./media/characters/pidge/front.svg",
  28208. extra: 620/588,
  28209. bottom: 9/629
  28210. }
  28211. },
  28212. back: {
  28213. height: math.unit(6, "feet"),
  28214. weight: math.unit(150, "lb"),
  28215. name: "Back",
  28216. image: {
  28217. source: "./media/characters/pidge/back.svg",
  28218. extra: 620/588,
  28219. bottom: 9/629
  28220. }
  28221. },
  28222. },
  28223. [
  28224. {
  28225. name: "Macro",
  28226. height: math.unit(1, "mile"),
  28227. default: true
  28228. },
  28229. ]
  28230. ))
  28231. characterMakers.push(() => makeCharacter(
  28232. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28233. {
  28234. front: {
  28235. height: math.unit(6, "feet"),
  28236. weight: math.unit(150, "lb"),
  28237. name: "Front",
  28238. image: {
  28239. source: "./media/characters/en/front.svg",
  28240. extra: 1697/1563,
  28241. bottom: 103/1800
  28242. }
  28243. },
  28244. back: {
  28245. height: math.unit(6, "feet"),
  28246. weight: math.unit(150, "lb"),
  28247. name: "Back",
  28248. image: {
  28249. source: "./media/characters/en/back.svg",
  28250. extra: 1700/1570,
  28251. bottom: 51/1751
  28252. }
  28253. },
  28254. frontDressed: {
  28255. height: math.unit(6, "feet"),
  28256. weight: math.unit(150, "lb"),
  28257. name: "Front (Dressed)",
  28258. image: {
  28259. source: "./media/characters/en/front-dressed.svg",
  28260. extra: 1697/1563,
  28261. bottom: 103/1800
  28262. }
  28263. },
  28264. backDressed: {
  28265. height: math.unit(6, "feet"),
  28266. weight: math.unit(150, "lb"),
  28267. name: "Back (Dressed)",
  28268. image: {
  28269. source: "./media/characters/en/back-dressed.svg",
  28270. extra: 1700/1570,
  28271. bottom: 51/1751
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Macro",
  28278. height: math.unit(210, "feet"),
  28279. default: true
  28280. },
  28281. ]
  28282. ))
  28283. characterMakers.push(() => makeCharacter(
  28284. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28285. {
  28286. front: {
  28287. height: math.unit(6, "feet"),
  28288. weight: math.unit(150, "lb"),
  28289. name: "Front",
  28290. image: {
  28291. source: "./media/characters/haze-orris/front.svg",
  28292. extra: 3975/3525,
  28293. bottom: 137/4112
  28294. }
  28295. },
  28296. },
  28297. [
  28298. {
  28299. name: "Micro",
  28300. height: math.unit(150, "mm"),
  28301. default: true
  28302. },
  28303. ]
  28304. ))
  28305. characterMakers.push(() => makeCharacter(
  28306. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28307. {
  28308. front: {
  28309. height: math.unit(6, "feet"),
  28310. weight: math.unit(150, "lb"),
  28311. name: "Front",
  28312. image: {
  28313. source: "./media/characters/casselene-yaro/front.svg",
  28314. extra: 4721/4541,
  28315. bottom: 82/4803
  28316. }
  28317. },
  28318. back: {
  28319. height: math.unit(6, "feet"),
  28320. weight: math.unit(150, "lb"),
  28321. name: "Back",
  28322. image: {
  28323. source: "./media/characters/casselene-yaro/back.svg",
  28324. extra: 4569/4377,
  28325. bottom: 69/4638
  28326. }
  28327. },
  28328. frontDressed: {
  28329. height: math.unit(6, "feet"),
  28330. weight: math.unit(150, "lb"),
  28331. name: "Front-dressed",
  28332. image: {
  28333. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28334. extra: 4721/4541,
  28335. bottom: 82/4803
  28336. }
  28337. },
  28338. },
  28339. [
  28340. {
  28341. name: "Macro",
  28342. height: math.unit(190, "feet")
  28343. },
  28344. ]
  28345. ))
  28346. characterMakers.push(() => makeCharacter(
  28347. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28348. {
  28349. front: {
  28350. height: math.unit(6, "feet"),
  28351. weight: math.unit(150, "lb"),
  28352. name: "Front",
  28353. image: {
  28354. source: "./media/characters/myra-rue-delore/front.svg",
  28355. extra: 1340/1308,
  28356. bottom: 67/1407
  28357. }
  28358. },
  28359. back: {
  28360. height: math.unit(6, "feet"),
  28361. weight: math.unit(150, "lb"),
  28362. name: "Back",
  28363. image: {
  28364. source: "./media/characters/myra-rue-delore/back.svg",
  28365. extra: 1341/1310,
  28366. bottom: 40/1381
  28367. }
  28368. },
  28369. frontDressed: {
  28370. height: math.unit(6, "feet"),
  28371. weight: math.unit(150, "lb"),
  28372. name: "Front (Dressed)",
  28373. image: {
  28374. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28375. extra: 1340/1308,
  28376. bottom: 67/1407
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Macro",
  28383. height: math.unit(150, "feet")
  28384. },
  28385. ]
  28386. ))
  28387. characterMakers.push(() => makeCharacter(
  28388. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28389. {
  28390. front: {
  28391. height: math.unit(10, "feet"),
  28392. weight: math.unit(15015, "lb"),
  28393. name: "Front",
  28394. image: {
  28395. source: "./media/characters/fem!plat/front.svg",
  28396. extra: 2799/2604,
  28397. bottom: 149/2948
  28398. }
  28399. },
  28400. },
  28401. [
  28402. {
  28403. name: "Normal",
  28404. height: math.unit(10, "feet"),
  28405. default: true
  28406. },
  28407. {
  28408. name: "Macro",
  28409. height: math.unit(100, "feet")
  28410. },
  28411. {
  28412. name: "Megamacro",
  28413. height: math.unit(1000, "feet")
  28414. },
  28415. ]
  28416. ))
  28417. //characters
  28418. function makeCharacters() {
  28419. const results = [];
  28420. characterMakers.forEach(character => {
  28421. results.push(character());
  28422. });
  28423. return results;
  28424. }