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.
 
 
 

28083 lines
699 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. }
  1332. //species
  1333. function getSpeciesInfo(speciesList) {
  1334. let result = new Set();
  1335. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1336. result.add(entry)
  1337. });
  1338. return Array.from(result);
  1339. };
  1340. function getSpeciesInfoHelper(species) {
  1341. if (!speciesData[species]) {
  1342. console.warn(species + " doesn't exist");
  1343. return [];
  1344. }
  1345. if (speciesData[species].parents) {
  1346. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1347. } else {
  1348. return [species];
  1349. }
  1350. }
  1351. characterMakers.push(() => makeCharacter(
  1352. {
  1353. name: "Fen",
  1354. species: ["crux"],
  1355. description: {
  1356. title: "Bio",
  1357. text: "Very furry. Sheds on everything."
  1358. },
  1359. tags: [
  1360. "anthro",
  1361. "goo"
  1362. ]
  1363. },
  1364. {
  1365. back: {
  1366. height: math.unit(2.2428, "meter"),
  1367. weight: math.unit(124.738, "kg"),
  1368. name: "Back",
  1369. image: {
  1370. source: "./media/characters/fen/back.svg",
  1371. extra: 1025 / 935,
  1372. bottom: 0.01
  1373. },
  1374. info: {
  1375. description: {
  1376. mode: "append",
  1377. text: "\n\nHe is not currently looking at you."
  1378. }
  1379. }
  1380. },
  1381. full: {
  1382. height: math.unit(1.34, "meter"),
  1383. weight: math.unit(225, "kg"),
  1384. name: "Full",
  1385. image: {
  1386. source: "./media/characters/fen/full.svg"
  1387. },
  1388. info: {
  1389. description: {
  1390. mode: "append",
  1391. text: "\n\nMunch."
  1392. }
  1393. }
  1394. },
  1395. kneeling: {
  1396. height: math.unit(5.4, "feet"),
  1397. weight: math.unit(124.738, "kg"),
  1398. name: "Kneeling",
  1399. image: {
  1400. source: "./media/characters/fen/kneeling.svg",
  1401. extra: 563 / 507
  1402. }
  1403. },
  1404. goo: {
  1405. height: math.unit(2.8, "feet"),
  1406. weight: math.unit(125, "kg"),
  1407. capacity: math.unit(1, "people"),
  1408. name: "Goo",
  1409. image: {
  1410. source: "./media/characters/fen/goo.svg",
  1411. bottom: 116 / 613
  1412. }
  1413. },
  1414. lounging: {
  1415. height: math.unit(6.5, "feet"),
  1416. weight: math.unit(125, "kg"),
  1417. name: "Lounging",
  1418. image: {
  1419. source: "./media/characters/fen/lounging.svg"
  1420. }
  1421. },
  1422. },
  1423. [
  1424. {
  1425. name: "Normal",
  1426. height: math.unit(2.2428, "meter")
  1427. },
  1428. {
  1429. name: "Big",
  1430. height: math.unit(12, "feet")
  1431. },
  1432. {
  1433. name: "Minimacro",
  1434. height: math.unit(40, "feet"),
  1435. default: true,
  1436. info: {
  1437. description: {
  1438. mode: "append",
  1439. text: "\n\nTOO DAMN BIG"
  1440. }
  1441. }
  1442. },
  1443. {
  1444. name: "Macro",
  1445. height: math.unit(100, "feet"),
  1446. info: {
  1447. description: {
  1448. mode: "append",
  1449. text: "\n\nTOO DAMN BIG"
  1450. }
  1451. }
  1452. },
  1453. {
  1454. name: "Macro+",
  1455. height: math.unit(300, "feet")
  1456. },
  1457. {
  1458. name: "Megamacro",
  1459. height: math.unit(2, "miles")
  1460. }
  1461. ]
  1462. ))
  1463. characterMakers.push(() => makeCharacter(
  1464. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1465. {
  1466. front: {
  1467. height: math.unit(183, "cm"),
  1468. weight: math.unit(80, "kg"),
  1469. name: "Front",
  1470. image: {
  1471. source: "./media/characters/sofia-fluttertail/front.svg",
  1472. bottom: 0.01,
  1473. extra: 2154 / 2081
  1474. }
  1475. },
  1476. frontAlt: {
  1477. height: math.unit(183, "cm"),
  1478. weight: math.unit(80, "kg"),
  1479. name: "Front (alt)",
  1480. image: {
  1481. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1482. }
  1483. },
  1484. back: {
  1485. height: math.unit(183, "cm"),
  1486. weight: math.unit(80, "kg"),
  1487. name: "Back",
  1488. image: {
  1489. source: "./media/characters/sofia-fluttertail/back.svg"
  1490. }
  1491. },
  1492. kneeling: {
  1493. height: math.unit(125, "cm"),
  1494. weight: math.unit(80, "kg"),
  1495. name: "Kneeling",
  1496. image: {
  1497. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1498. extra: 1033 / 977,
  1499. bottom: 23.7 / 1057
  1500. }
  1501. },
  1502. maw: {
  1503. height: math.unit(183 / 5, "cm"),
  1504. name: "Maw",
  1505. image: {
  1506. source: "./media/characters/sofia-fluttertail/maw.svg"
  1507. }
  1508. },
  1509. mawcloseup: {
  1510. height: math.unit(183 / 5 * 0.41, "cm"),
  1511. name: "Maw (Closeup)",
  1512. image: {
  1513. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1514. }
  1515. },
  1516. },
  1517. [
  1518. {
  1519. name: "Normal",
  1520. height: math.unit(1.83, "meter")
  1521. },
  1522. {
  1523. name: "Size Thief",
  1524. height: math.unit(18, "feet")
  1525. },
  1526. {
  1527. name: "50 Foot Collie",
  1528. height: math.unit(50, "feet")
  1529. },
  1530. {
  1531. name: "Macro",
  1532. height: math.unit(96, "feet"),
  1533. default: true
  1534. },
  1535. {
  1536. name: "Megamerger",
  1537. height: math.unit(650, "feet")
  1538. },
  1539. ]
  1540. ))
  1541. characterMakers.push(() => makeCharacter(
  1542. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1543. {
  1544. front: {
  1545. height: math.unit(7, "feet"),
  1546. weight: math.unit(100, "kg"),
  1547. name: "Front",
  1548. image: {
  1549. source: "./media/characters/march/front.svg",
  1550. extra: 1,
  1551. bottom: 0.015
  1552. }
  1553. },
  1554. foot: {
  1555. height: math.unit(0.9, "feet"),
  1556. name: "Foot",
  1557. image: {
  1558. source: "./media/characters/march/foot.svg"
  1559. }
  1560. },
  1561. },
  1562. [
  1563. {
  1564. name: "Normal",
  1565. height: math.unit(7.9, "feet")
  1566. },
  1567. {
  1568. name: "Macro",
  1569. height: math.unit(220, "meters")
  1570. },
  1571. {
  1572. name: "Megamacro",
  1573. height: math.unit(2.98, "km"),
  1574. default: true
  1575. },
  1576. {
  1577. name: "Gigamacro",
  1578. height: math.unit(15963, "km")
  1579. },
  1580. {
  1581. name: "Teramacro",
  1582. height: math.unit(2980000000, "km")
  1583. },
  1584. {
  1585. name: "Examacro",
  1586. height: math.unit(250, "parsecs")
  1587. },
  1588. ]
  1589. ))
  1590. characterMakers.push(() => makeCharacter(
  1591. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1592. {
  1593. front: {
  1594. height: math.unit(6, "feet"),
  1595. weight: math.unit(60, "kg"),
  1596. name: "Front",
  1597. image: {
  1598. source: "./media/characters/noir/front.svg",
  1599. extra: 1,
  1600. bottom: 0.032
  1601. }
  1602. },
  1603. },
  1604. [
  1605. {
  1606. name: "Normal",
  1607. height: math.unit(6.6, "feet")
  1608. },
  1609. {
  1610. name: "Macro",
  1611. height: math.unit(500, "feet")
  1612. },
  1613. {
  1614. name: "Megamacro",
  1615. height: math.unit(2.5, "km"),
  1616. default: true
  1617. },
  1618. {
  1619. name: "Gigamacro",
  1620. height: math.unit(22500, "km")
  1621. },
  1622. {
  1623. name: "Teramacro",
  1624. height: math.unit(2500000000, "km")
  1625. },
  1626. {
  1627. name: "Examacro",
  1628. height: math.unit(200, "parsecs")
  1629. },
  1630. ]
  1631. ))
  1632. characterMakers.push(() => makeCharacter(
  1633. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1634. {
  1635. front: {
  1636. height: math.unit(7, "feet"),
  1637. weight: math.unit(100, "kg"),
  1638. name: "Front",
  1639. image: {
  1640. source: "./media/characters/okuri/front.svg",
  1641. extra: 1,
  1642. bottom: 0.037
  1643. }
  1644. },
  1645. back: {
  1646. height: math.unit(7, "feet"),
  1647. weight: math.unit(100, "kg"),
  1648. name: "Back",
  1649. image: {
  1650. source: "./media/characters/okuri/back.svg",
  1651. extra: 1,
  1652. bottom: 0.007
  1653. }
  1654. },
  1655. },
  1656. [
  1657. {
  1658. name: "Megamacro",
  1659. height: math.unit(100, "miles"),
  1660. default: true
  1661. },
  1662. ]
  1663. ))
  1664. characterMakers.push(() => makeCharacter(
  1665. { name: "Manny", species: ["manectric"], 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/manny/front.svg",
  1673. extra: 1,
  1674. bottom: 0.06
  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/manny/back.svg",
  1683. extra: 1,
  1684. bottom: 0.014
  1685. }
  1686. },
  1687. },
  1688. [
  1689. {
  1690. name: "Normal",
  1691. height: math.unit(7, "feet"),
  1692. },
  1693. {
  1694. name: "Macro",
  1695. height: math.unit(78, "feet"),
  1696. default: true
  1697. },
  1698. {
  1699. name: "Macro+",
  1700. height: math.unit(300, "meters")
  1701. },
  1702. {
  1703. name: "Macro++",
  1704. height: math.unit(2400, "meters")
  1705. },
  1706. {
  1707. name: "Megamacro",
  1708. height: math.unit(5167, "meters")
  1709. },
  1710. {
  1711. name: "Gigamacro",
  1712. height: math.unit(41769, "miles")
  1713. },
  1714. ]
  1715. ))
  1716. characterMakers.push(() => makeCharacter(
  1717. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1718. {
  1719. front: {
  1720. height: math.unit(7, "feet"),
  1721. weight: math.unit(100, "kg"),
  1722. name: "Front",
  1723. image: {
  1724. source: "./media/characters/adake/front-1.svg"
  1725. }
  1726. },
  1727. frontAlt: {
  1728. height: math.unit(7, "feet"),
  1729. weight: math.unit(100, "kg"),
  1730. name: "Front (Alt)",
  1731. image: {
  1732. source: "./media/characters/adake/front-2.svg",
  1733. extra: 1,
  1734. bottom: 0.01
  1735. }
  1736. },
  1737. back: {
  1738. height: math.unit(7, "feet"),
  1739. weight: math.unit(100, "kg"),
  1740. name: "Back",
  1741. image: {
  1742. source: "./media/characters/adake/back.svg",
  1743. }
  1744. },
  1745. kneel: {
  1746. height: math.unit(5.385, "feet"),
  1747. weight: math.unit(100, "kg"),
  1748. name: "Kneeling",
  1749. image: {
  1750. source: "./media/characters/adake/kneel.svg",
  1751. bottom: 0.052
  1752. }
  1753. },
  1754. },
  1755. [
  1756. {
  1757. name: "Normal",
  1758. height: math.unit(7, "feet"),
  1759. },
  1760. {
  1761. name: "Macro",
  1762. height: math.unit(78, "feet"),
  1763. default: true
  1764. },
  1765. {
  1766. name: "Macro+",
  1767. height: math.unit(300, "meters")
  1768. },
  1769. {
  1770. name: "Macro++",
  1771. height: math.unit(2400, "meters")
  1772. },
  1773. {
  1774. name: "Megamacro",
  1775. height: math.unit(5167, "meters")
  1776. },
  1777. {
  1778. name: "Gigamacro",
  1779. height: math.unit(41769, "miles")
  1780. },
  1781. ]
  1782. ))
  1783. characterMakers.push(() => makeCharacter(
  1784. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1785. {
  1786. front: {
  1787. height: math.unit(1.65, "meters"),
  1788. weight: math.unit(50, "kg"),
  1789. name: "Front",
  1790. image: {
  1791. source: "./media/characters/elijah/front.svg",
  1792. extra: 858 / 830,
  1793. bottom: 95.5 / 953.8559
  1794. }
  1795. },
  1796. back: {
  1797. height: math.unit(1.65, "meters"),
  1798. weight: math.unit(50, "kg"),
  1799. name: "Back",
  1800. image: {
  1801. source: "./media/characters/elijah/back.svg",
  1802. extra: 895 / 850,
  1803. bottom: 5.3 / 897.956
  1804. }
  1805. },
  1806. frontNsfw: {
  1807. height: math.unit(1.65, "meters"),
  1808. weight: math.unit(50, "kg"),
  1809. name: "Front (NSFW)",
  1810. image: {
  1811. source: "./media/characters/elijah/front-nsfw.svg",
  1812. extra: 858 / 830,
  1813. bottom: 95.5 / 953.8559
  1814. }
  1815. },
  1816. backNsfw: {
  1817. height: math.unit(1.65, "meters"),
  1818. weight: math.unit(50, "kg"),
  1819. name: "Back (NSFW)",
  1820. image: {
  1821. source: "./media/characters/elijah/back-nsfw.svg",
  1822. extra: 895 / 850,
  1823. bottom: 5.3 / 897.956
  1824. }
  1825. },
  1826. dick: {
  1827. height: math.unit(1, "feet"),
  1828. name: "Dick",
  1829. image: {
  1830. source: "./media/characters/elijah/dick.svg"
  1831. }
  1832. },
  1833. beakOpen: {
  1834. height: math.unit(1.25, "feet"),
  1835. name: "Beak (Open)",
  1836. image: {
  1837. source: "./media/characters/elijah/beak-open.svg"
  1838. }
  1839. },
  1840. beakShut: {
  1841. height: math.unit(1.25, "feet"),
  1842. name: "Beak (Shut)",
  1843. image: {
  1844. source: "./media/characters/elijah/beak-shut.svg"
  1845. }
  1846. },
  1847. footFlexing: {
  1848. height: math.unit(1.61, "feet"),
  1849. name: "Foot (Flexing)",
  1850. image: {
  1851. source: "./media/characters/elijah/foot-flexing.svg"
  1852. }
  1853. },
  1854. footStepping: {
  1855. height: math.unit(1.44, "feet"),
  1856. name: "Foot (Stepping)",
  1857. image: {
  1858. source: "./media/characters/elijah/foot-stepping.svg"
  1859. }
  1860. },
  1861. plantigradeLeg: {
  1862. height: math.unit(2.34, "feet"),
  1863. name: "Plantigrade Leg",
  1864. image: {
  1865. source: "./media/characters/elijah/plantigrade-leg.svg"
  1866. }
  1867. },
  1868. plantigradeFootLeft: {
  1869. height: math.unit(0.9, "feet"),
  1870. name: "Plantigrade Foot (Left)",
  1871. image: {
  1872. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1873. }
  1874. },
  1875. plantigradeFootRight: {
  1876. height: math.unit(0.9, "feet"),
  1877. name: "Plantigrade Foot (Right)",
  1878. image: {
  1879. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1880. }
  1881. },
  1882. },
  1883. [
  1884. {
  1885. name: "Normal",
  1886. height: math.unit(1.65, "meters")
  1887. },
  1888. {
  1889. name: "Macro",
  1890. height: math.unit(55, "meters"),
  1891. default: true
  1892. },
  1893. {
  1894. name: "Macro+",
  1895. height: math.unit(105, "meters")
  1896. },
  1897. ]
  1898. ))
  1899. characterMakers.push(() => makeCharacter(
  1900. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1901. {
  1902. front: {
  1903. height: math.unit(11, "feet"),
  1904. weight: math.unit(80, "kg"),
  1905. name: "Front",
  1906. image: {
  1907. source: "./media/characters/rai/front.svg",
  1908. extra: 1,
  1909. bottom: 0.03
  1910. }
  1911. },
  1912. side: {
  1913. height: math.unit(11, "feet"),
  1914. weight: math.unit(80, "kg"),
  1915. name: "Side",
  1916. image: {
  1917. source: "./media/characters/rai/side.svg"
  1918. }
  1919. },
  1920. back: {
  1921. height: math.unit(11, "feet"),
  1922. weight: math.unit(80, "lb"),
  1923. name: "Back",
  1924. image: {
  1925. source: "./media/characters/rai/back.svg",
  1926. extra: 1,
  1927. bottom: 0.01
  1928. }
  1929. },
  1930. feral: {
  1931. height: math.unit(11, "feet"),
  1932. weight: math.unit(800, "lb"),
  1933. name: "Feral",
  1934. image: {
  1935. source: "./media/characters/rai/feral.svg",
  1936. extra: 1050 / 659,
  1937. bottom: 0.07
  1938. }
  1939. },
  1940. dragon: {
  1941. height: math.unit(23, "feet"),
  1942. weight: math.unit(50000, "lb"),
  1943. name: "Dragon",
  1944. image: {
  1945. source: "./media/characters/rai/dragon.svg",
  1946. extra: 2498 / 2030,
  1947. bottom: 85.2 / 2584
  1948. }
  1949. },
  1950. maw: {
  1951. height: math.unit(6 / 3.81416, "feet"),
  1952. name: "Maw",
  1953. image: {
  1954. source: "./media/characters/rai/maw.svg"
  1955. }
  1956. },
  1957. },
  1958. [
  1959. {
  1960. name: "Normal",
  1961. height: math.unit(11, "feet")
  1962. },
  1963. {
  1964. name: "Macro",
  1965. height: math.unit(302, "feet"),
  1966. default: true
  1967. },
  1968. ]
  1969. ))
  1970. characterMakers.push(() => makeCharacter(
  1971. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1972. {
  1973. frontDressed: {
  1974. height: math.unit(216, "feet"),
  1975. weight: math.unit(7000000, "lb"),
  1976. name: "Front (Dressed)",
  1977. image: {
  1978. source: "./media/characters/jazzy/front-dressed.svg",
  1979. extra: 2738 / 2651,
  1980. bottom: 41.8 / 2786
  1981. }
  1982. },
  1983. backDressed: {
  1984. height: math.unit(216, "feet"),
  1985. weight: math.unit(7000000, "lb"),
  1986. name: "Back (Dressed)",
  1987. image: {
  1988. source: "./media/characters/jazzy/back-dressed.svg",
  1989. extra: 2775 / 2673,
  1990. bottom: 36.8 / 2817
  1991. }
  1992. },
  1993. front: {
  1994. height: math.unit(216, "feet"),
  1995. weight: math.unit(7000000, "lb"),
  1996. name: "Front",
  1997. image: {
  1998. source: "./media/characters/jazzy/front.svg",
  1999. extra: 2738 / 2651,
  2000. bottom: 41.8 / 2786
  2001. }
  2002. },
  2003. back: {
  2004. height: math.unit(216, "feet"),
  2005. weight: math.unit(7000000, "lb"),
  2006. name: "Back",
  2007. image: {
  2008. source: "./media/characters/jazzy/back.svg",
  2009. extra: 2775 / 2673,
  2010. bottom: 36.8 / 2817
  2011. }
  2012. },
  2013. maw: {
  2014. height: math.unit(20, "feet"),
  2015. name: "Maw",
  2016. image: {
  2017. source: "./media/characters/jazzy/maw.svg"
  2018. }
  2019. },
  2020. paws: {
  2021. height: math.unit(27.5, "feet"),
  2022. name: "Paws",
  2023. image: {
  2024. source: "./media/characters/jazzy/paws.svg"
  2025. }
  2026. },
  2027. eye: {
  2028. height: math.unit(4.4, "feet"),
  2029. name: "Eye",
  2030. image: {
  2031. source: "./media/characters/jazzy/eye.svg"
  2032. }
  2033. },
  2034. droneOffense: {
  2035. height: math.unit(9.5, "inches"),
  2036. name: "Drone (Offense)",
  2037. image: {
  2038. source: "./media/characters/jazzy/drone-offense.svg"
  2039. }
  2040. },
  2041. droneRecon: {
  2042. height: math.unit(9.5, "inches"),
  2043. name: "Drone (Recon)",
  2044. image: {
  2045. source: "./media/characters/jazzy/drone-recon.svg"
  2046. }
  2047. },
  2048. droneDefense: {
  2049. height: math.unit(9.5, "inches"),
  2050. name: "Drone (Defense)",
  2051. image: {
  2052. source: "./media/characters/jazzy/drone-defense.svg"
  2053. }
  2054. },
  2055. },
  2056. [
  2057. {
  2058. name: "Macro",
  2059. height: math.unit(216, "feet"),
  2060. default: true
  2061. },
  2062. ]
  2063. ))
  2064. characterMakers.push(() => makeCharacter(
  2065. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2066. {
  2067. front: {
  2068. height: math.unit(7, "feet"),
  2069. weight: math.unit(80, "kg"),
  2070. name: "Front",
  2071. image: {
  2072. source: "./media/characters/flamm/front.svg",
  2073. extra: 1794 / 1677,
  2074. bottom: 31.7 / 1828.5
  2075. }
  2076. },
  2077. },
  2078. [
  2079. {
  2080. name: "Normal",
  2081. height: math.unit(9.5, "feet")
  2082. },
  2083. {
  2084. name: "Macro",
  2085. height: math.unit(200, "feet"),
  2086. default: true
  2087. },
  2088. ]
  2089. ))
  2090. characterMakers.push(() => makeCharacter(
  2091. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2092. {
  2093. front: {
  2094. height: math.unit(7, "feet"),
  2095. weight: math.unit(80, "kg"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/zephiro/front.svg",
  2099. extra: 2309 / 2162,
  2100. bottom: 0.069
  2101. }
  2102. },
  2103. side: {
  2104. height: math.unit(7, "feet"),
  2105. weight: math.unit(80, "kg"),
  2106. name: "Side",
  2107. image: {
  2108. source: "./media/characters/zephiro/side.svg",
  2109. extra: 2403 / 2279,
  2110. bottom: 0.015
  2111. }
  2112. },
  2113. back: {
  2114. height: math.unit(7, "feet"),
  2115. weight: math.unit(80, "kg"),
  2116. name: "Back",
  2117. image: {
  2118. source: "./media/characters/zephiro/back.svg",
  2119. extra: 2373 / 2244,
  2120. bottom: 0.013
  2121. }
  2122. },
  2123. },
  2124. [
  2125. {
  2126. name: "Micro",
  2127. height: math.unit(3, "inches")
  2128. },
  2129. {
  2130. name: "Normal",
  2131. height: math.unit(5 + 3 / 12, "feet"),
  2132. default: true
  2133. },
  2134. {
  2135. name: "Macro",
  2136. height: math.unit(118, "feet")
  2137. },
  2138. ]
  2139. ))
  2140. characterMakers.push(() => makeCharacter(
  2141. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2142. {
  2143. front: {
  2144. height: math.unit(5, "feet"),
  2145. weight: math.unit(90, "kg"),
  2146. name: "Front",
  2147. image: {
  2148. source: "./media/characters/fory/front.svg",
  2149. extra: 2862 / 2674,
  2150. bottom: 180 / 3043.8
  2151. }
  2152. },
  2153. back: {
  2154. height: math.unit(5, "feet"),
  2155. weight: math.unit(90, "kg"),
  2156. name: "Back",
  2157. image: {
  2158. source: "./media/characters/fory/back.svg",
  2159. extra: 2962 / 2791,
  2160. bottom: 106 / 3071.8
  2161. }
  2162. },
  2163. foot: {
  2164. height: math.unit(2.14, "feet"),
  2165. name: "Foot",
  2166. image: {
  2167. source: "./media/characters/fory/foot.svg"
  2168. }
  2169. },
  2170. },
  2171. [
  2172. {
  2173. name: "Normal",
  2174. height: math.unit(5, "feet")
  2175. },
  2176. {
  2177. name: "Macro",
  2178. height: math.unit(50, "feet"),
  2179. default: true
  2180. },
  2181. {
  2182. name: "Megamacro",
  2183. height: math.unit(10, "miles")
  2184. },
  2185. {
  2186. name: "Gigamacro",
  2187. height: math.unit(5, "earths")
  2188. },
  2189. ]
  2190. ))
  2191. characterMakers.push(() => makeCharacter(
  2192. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2193. {
  2194. front: {
  2195. height: math.unit(7, "feet"),
  2196. weight: math.unit(90, "kg"),
  2197. name: "Front",
  2198. image: {
  2199. source: "./media/characters/kurrikage/front.svg",
  2200. extra: 1,
  2201. bottom: 0.035
  2202. }
  2203. },
  2204. back: {
  2205. height: math.unit(7, "feet"),
  2206. weight: math.unit(90, "lb"),
  2207. name: "Back",
  2208. image: {
  2209. source: "./media/characters/kurrikage/back.svg"
  2210. }
  2211. },
  2212. paw: {
  2213. height: math.unit(1.5, "feet"),
  2214. name: "Paw",
  2215. image: {
  2216. source: "./media/characters/kurrikage/paw.svg"
  2217. }
  2218. },
  2219. staff: {
  2220. height: math.unit(6.7, "feet"),
  2221. name: "Staff",
  2222. image: {
  2223. source: "./media/characters/kurrikage/staff.svg"
  2224. }
  2225. },
  2226. peek: {
  2227. height: math.unit(1.05, "feet"),
  2228. name: "Peeking",
  2229. image: {
  2230. source: "./media/characters/kurrikage/peek.svg",
  2231. bottom: 0.08
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(12, "feet"),
  2239. default: true
  2240. },
  2241. {
  2242. name: "Big",
  2243. height: math.unit(20, "feet")
  2244. },
  2245. {
  2246. name: "Macro",
  2247. height: math.unit(500, "feet")
  2248. },
  2249. {
  2250. name: "Megamacro",
  2251. height: math.unit(20, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(6, "feet"),
  2260. weight: math.unit(75, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/shingo/front.svg",
  2264. extra: 3511 / 3338,
  2265. bottom: 0.005
  2266. }
  2267. },
  2268. paw: {
  2269. height: math.unit(1, "feet"),
  2270. name: "Paw",
  2271. image: {
  2272. source: "./media/characters/shingo/paw.svg"
  2273. }
  2274. },
  2275. },
  2276. [
  2277. {
  2278. name: "Micro",
  2279. height: math.unit(4, "inches")
  2280. },
  2281. {
  2282. name: "Normal",
  2283. height: math.unit(6, "feet"),
  2284. default: true
  2285. },
  2286. {
  2287. name: "Macro",
  2288. height: math.unit(108, "feet")
  2289. }
  2290. ]
  2291. ))
  2292. characterMakers.push(() => makeCharacter(
  2293. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2294. {
  2295. side: {
  2296. height: math.unit(6, "feet"),
  2297. weight: math.unit(75, "kg"),
  2298. name: "Side",
  2299. image: {
  2300. source: "./media/characters/aigey/side.svg"
  2301. }
  2302. },
  2303. },
  2304. [
  2305. {
  2306. name: "Macro",
  2307. height: math.unit(200, "feet"),
  2308. default: true
  2309. },
  2310. {
  2311. name: "Megamacro",
  2312. height: math.unit(100, "miles")
  2313. },
  2314. ]
  2315. )
  2316. )
  2317. characterMakers.push(() => makeCharacter(
  2318. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2319. {
  2320. front: {
  2321. height: math.unit(5 + 5 / 12, "feet"),
  2322. weight: math.unit(75, "kg"),
  2323. name: "Front",
  2324. image: {
  2325. source: "./media/characters/natasha/front.svg",
  2326. extra: 859 / 824,
  2327. bottom: 23 / 879.6
  2328. }
  2329. },
  2330. frontNsfw: {
  2331. height: math.unit(5 + 5 / 12, "feet"),
  2332. weight: math.unit(75, "kg"),
  2333. name: "Front (NSFW)",
  2334. image: {
  2335. source: "./media/characters/natasha/front-nsfw.svg",
  2336. extra: 859 / 824,
  2337. bottom: 23 / 879.6
  2338. }
  2339. },
  2340. frontErect: {
  2341. height: math.unit(5 + 5 / 12, "feet"),
  2342. weight: math.unit(75, "kg"),
  2343. name: "Front (Erect)",
  2344. image: {
  2345. source: "./media/characters/natasha/front-erect.svg",
  2346. extra: 859 / 824,
  2347. bottom: 23 / 879.6
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(5 + 5 / 12, "feet"),
  2352. weight: math.unit(75, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/natasha/back.svg",
  2356. extra: 887.9 / 852.6,
  2357. bottom: 9.7 / 896.4
  2358. }
  2359. },
  2360. backAlt: {
  2361. height: math.unit(5 + 5 / 12, "feet"),
  2362. weight: math.unit(75, "kg"),
  2363. name: "Back (Alt)",
  2364. image: {
  2365. source: "./media/characters/natasha/back-alt.svg",
  2366. extra: 1236.7 / 1192,
  2367. bottom: 22.3 / 1258.2
  2368. }
  2369. },
  2370. dick: {
  2371. height: math.unit(1.772, "feet"),
  2372. name: "Dick",
  2373. image: {
  2374. source: "./media/characters/natasha/dick.svg"
  2375. }
  2376. },
  2377. },
  2378. [
  2379. {
  2380. name: "Normal",
  2381. height: math.unit(5 + 5 / 12, "feet")
  2382. },
  2383. {
  2384. name: "Large",
  2385. height: math.unit(12, "feet")
  2386. },
  2387. {
  2388. name: "Macro",
  2389. height: math.unit(100, "feet"),
  2390. default: true
  2391. },
  2392. {
  2393. name: "Macro+",
  2394. height: math.unit(260, "feet")
  2395. },
  2396. {
  2397. name: "Macro++",
  2398. height: math.unit(1, "mile")
  2399. },
  2400. ]
  2401. ))
  2402. characterMakers.push(() => makeCharacter(
  2403. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2404. {
  2405. front: {
  2406. height: math.unit(6, "feet"),
  2407. weight: math.unit(75, "kg"),
  2408. name: "Front",
  2409. image: {
  2410. source: "./media/characters/malik/front.svg"
  2411. }
  2412. },
  2413. side: {
  2414. height: math.unit(6, "feet"),
  2415. weight: math.unit(75, "kg"),
  2416. name: "Side",
  2417. image: {
  2418. source: "./media/characters/malik/side.svg",
  2419. extra: 1.1539
  2420. }
  2421. },
  2422. back: {
  2423. height: math.unit(6, "feet"),
  2424. weight: math.unit(75, "kg"),
  2425. name: "Back",
  2426. image: {
  2427. source: "./media/characters/malik/back.svg"
  2428. }
  2429. },
  2430. },
  2431. [
  2432. {
  2433. name: "Macro",
  2434. height: math.unit(156, "feet"),
  2435. default: true
  2436. },
  2437. {
  2438. name: "Macro+",
  2439. height: math.unit(1188, "feet")
  2440. },
  2441. ]
  2442. ))
  2443. characterMakers.push(() => makeCharacter(
  2444. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2445. {
  2446. front: {
  2447. height: math.unit(6, "feet"),
  2448. weight: math.unit(75, "kg"),
  2449. name: "Front",
  2450. image: {
  2451. source: "./media/characters/sefer/front.svg",
  2452. extra: 848 / 659,
  2453. bottom: 28.3 / 876.442
  2454. }
  2455. },
  2456. back: {
  2457. height: math.unit(6, "feet"),
  2458. weight: math.unit(75, "kg"),
  2459. name: "Back",
  2460. image: {
  2461. source: "./media/characters/sefer/back.svg",
  2462. extra: 864 / 695,
  2463. bottom: 10 / 871
  2464. }
  2465. },
  2466. frontDressed: {
  2467. height: math.unit(6, "feet"),
  2468. weight: math.unit(75, "kg"),
  2469. name: "Front (Dressed)",
  2470. image: {
  2471. source: "./media/characters/sefer/front-dressed.svg",
  2472. extra: 839 / 653,
  2473. bottom: 37.6 / 878
  2474. }
  2475. },
  2476. },
  2477. [
  2478. {
  2479. name: "Normal",
  2480. height: math.unit(6, "feet"),
  2481. default: true
  2482. },
  2483. ]
  2484. ))
  2485. characterMakers.push(() => makeCharacter(
  2486. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2487. {
  2488. body: {
  2489. height: math.unit(2.2428, "meter"),
  2490. weight: math.unit(124.738, "kg"),
  2491. name: "Body",
  2492. image: {
  2493. extra: 1225 / 1050,
  2494. source: "./media/characters/north/front.svg"
  2495. }
  2496. }
  2497. },
  2498. [
  2499. {
  2500. name: "Micro",
  2501. height: math.unit(4, "inches")
  2502. },
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(63, "meters")
  2506. },
  2507. {
  2508. name: "Megamacro",
  2509. height: math.unit(101, "miles"),
  2510. default: true
  2511. }
  2512. ]
  2513. ))
  2514. characterMakers.push(() => makeCharacter(
  2515. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2516. {
  2517. angled: {
  2518. height: math.unit(4, "meter"),
  2519. weight: math.unit(150, "kg"),
  2520. name: "Angled",
  2521. image: {
  2522. source: "./media/characters/talan/angled-sfw.svg",
  2523. bottom: 29 / 3734
  2524. }
  2525. },
  2526. angledNsfw: {
  2527. height: math.unit(4, "meter"),
  2528. weight: math.unit(150, "kg"),
  2529. name: "Angled (NSFW)",
  2530. image: {
  2531. source: "./media/characters/talan/angled-nsfw.svg",
  2532. bottom: 29 / 3734
  2533. }
  2534. },
  2535. frontNsfw: {
  2536. height: math.unit(4, "meter"),
  2537. weight: math.unit(150, "kg"),
  2538. name: "Front (NSFW)",
  2539. image: {
  2540. source: "./media/characters/talan/front-nsfw.svg",
  2541. bottom: 29 / 3734
  2542. }
  2543. },
  2544. sideNsfw: {
  2545. height: math.unit(4, "meter"),
  2546. weight: math.unit(150, "kg"),
  2547. name: "Side (NSFW)",
  2548. image: {
  2549. source: "./media/characters/talan/side-nsfw.svg",
  2550. bottom: 29 / 3734
  2551. }
  2552. },
  2553. back: {
  2554. height: math.unit(4, "meter"),
  2555. weight: math.unit(150, "kg"),
  2556. name: "Back",
  2557. image: {
  2558. source: "./media/characters/talan/back.svg"
  2559. }
  2560. },
  2561. dickBottom: {
  2562. height: math.unit(0.621, "meter"),
  2563. name: "Dick (Bottom)",
  2564. image: {
  2565. source: "./media/characters/talan/dick-bottom.svg"
  2566. }
  2567. },
  2568. dickTop: {
  2569. height: math.unit(0.621, "meter"),
  2570. name: "Dick (Top)",
  2571. image: {
  2572. source: "./media/characters/talan/dick-top.svg"
  2573. }
  2574. },
  2575. dickSide: {
  2576. height: math.unit(0.305, "meter"),
  2577. name: "Dick (Side)",
  2578. image: {
  2579. source: "./media/characters/talan/dick-side.svg"
  2580. }
  2581. },
  2582. dickFront: {
  2583. height: math.unit(0.305, "meter"),
  2584. name: "Dick (Front)",
  2585. image: {
  2586. source: "./media/characters/talan/dick-front.svg"
  2587. }
  2588. },
  2589. },
  2590. [
  2591. {
  2592. name: "Normal",
  2593. height: math.unit(4, "meters")
  2594. },
  2595. {
  2596. name: "Macro",
  2597. height: math.unit(100, "meters")
  2598. },
  2599. {
  2600. name: "Megamacro",
  2601. height: math.unit(2, "miles"),
  2602. default: true
  2603. },
  2604. {
  2605. name: "Gigamacro",
  2606. height: math.unit(5000, "miles")
  2607. },
  2608. {
  2609. name: "Teramacro",
  2610. height: math.unit(100, "parsecs")
  2611. }
  2612. ]
  2613. ))
  2614. characterMakers.push(() => makeCharacter(
  2615. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2616. {
  2617. front: {
  2618. height: math.unit(2, "meter"),
  2619. weight: math.unit(90, "kg"),
  2620. name: "Front",
  2621. image: {
  2622. source: "./media/characters/gael'rathus/front.svg"
  2623. }
  2624. },
  2625. frontAlt: {
  2626. height: math.unit(2, "meter"),
  2627. weight: math.unit(90, "kg"),
  2628. name: "Front (alt)",
  2629. image: {
  2630. source: "./media/characters/gael'rathus/front-alt.svg"
  2631. }
  2632. },
  2633. frontAlt2: {
  2634. height: math.unit(2, "meter"),
  2635. weight: math.unit(90, "kg"),
  2636. name: "Front (alt 2)",
  2637. image: {
  2638. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2639. }
  2640. }
  2641. },
  2642. [
  2643. {
  2644. name: "Normal",
  2645. height: math.unit(9, "feet"),
  2646. default: true
  2647. },
  2648. {
  2649. name: "Large",
  2650. height: math.unit(25, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(0.25, "miles")
  2655. },
  2656. {
  2657. name: "Megamacro",
  2658. height: math.unit(10, "miles")
  2659. }
  2660. ]
  2661. ))
  2662. characterMakers.push(() => makeCharacter(
  2663. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2664. {
  2665. side: {
  2666. height: math.unit(2, "meter"),
  2667. weight: math.unit(140, "kg"),
  2668. name: "Side",
  2669. image: {
  2670. source: "./media/characters/sosha/side.svg",
  2671. bottom: 0.042
  2672. }
  2673. },
  2674. },
  2675. [
  2676. {
  2677. name: "Normal",
  2678. height: math.unit(12, "feet"),
  2679. default: true
  2680. }
  2681. ]
  2682. ))
  2683. characterMakers.push(() => makeCharacter(
  2684. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2685. {
  2686. side: {
  2687. height: math.unit(5 + 5 / 12, "feet"),
  2688. weight: math.unit(170, "kg"),
  2689. name: "Side",
  2690. image: {
  2691. source: "./media/characters/runnola/side.svg",
  2692. extra: 741 / 448,
  2693. bottom: 0.05
  2694. }
  2695. },
  2696. },
  2697. [
  2698. {
  2699. name: "Small",
  2700. height: math.unit(3, "feet")
  2701. },
  2702. {
  2703. name: "Normal",
  2704. height: math.unit(5 + 5 / 12, "feet"),
  2705. default: true
  2706. },
  2707. {
  2708. name: "Big",
  2709. height: math.unit(10, "feet")
  2710. },
  2711. ]
  2712. ))
  2713. characterMakers.push(() => makeCharacter(
  2714. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2715. {
  2716. front: {
  2717. height: math.unit(2, "meter"),
  2718. weight: math.unit(50, "kg"),
  2719. name: "Front",
  2720. image: {
  2721. source: "./media/characters/kurribird/front.svg",
  2722. bottom: 0.015
  2723. }
  2724. },
  2725. frontAlt: {
  2726. height: math.unit(1.5, "meter"),
  2727. weight: math.unit(50, "kg"),
  2728. name: "Front (Alt)",
  2729. image: {
  2730. source: "./media/characters/kurribird/front-alt.svg",
  2731. extra: 1.45
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Normal",
  2738. height: math.unit(7, "feet")
  2739. },
  2740. {
  2741. name: "Big",
  2742. height: math.unit(12, "feet"),
  2743. default: true
  2744. },
  2745. {
  2746. name: "Macro",
  2747. height: math.unit(1500, "feet")
  2748. },
  2749. {
  2750. name: "Megamacro",
  2751. height: math.unit(2, "miles")
  2752. }
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2757. {
  2758. front: {
  2759. height: math.unit(2, "meter"),
  2760. weight: math.unit(80, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/elbial/front.svg",
  2764. extra: 1643 / 1556,
  2765. bottom: 60.2 / 1696
  2766. }
  2767. },
  2768. side: {
  2769. height: math.unit(2, "meter"),
  2770. weight: math.unit(80, "kg"),
  2771. name: "Side",
  2772. image: {
  2773. source: "./media/characters/elbial/side.svg",
  2774. extra: 1630 / 1565,
  2775. bottom: 71.5 / 1697
  2776. }
  2777. },
  2778. back: {
  2779. height: math.unit(2, "meter"),
  2780. weight: math.unit(80, "kg"),
  2781. name: "Back",
  2782. image: {
  2783. source: "./media/characters/elbial/back.svg",
  2784. extra: 1668 / 1595,
  2785. bottom: 5.6 / 1672
  2786. }
  2787. },
  2788. frontDressed: {
  2789. height: math.unit(2, "meter"),
  2790. weight: math.unit(80, "kg"),
  2791. name: "Front (Dressed)",
  2792. image: {
  2793. source: "./media/characters/elbial/front-dressed.svg",
  2794. extra: 1653 / 1584,
  2795. bottom: 57 / 1708
  2796. }
  2797. },
  2798. genitals: {
  2799. height: math.unit(2 / 3.367, "meter"),
  2800. name: "Genitals",
  2801. image: {
  2802. source: "./media/characters/elbial/genitals.svg"
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Large",
  2809. height: math.unit(100, "feet")
  2810. },
  2811. {
  2812. name: "Macro",
  2813. height: math.unit(500, "feet"),
  2814. default: true
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(10, "miles")
  2819. },
  2820. {
  2821. name: "Gigamacro",
  2822. height: math.unit(25000, "miles")
  2823. },
  2824. {
  2825. name: "Full-Size",
  2826. height: math.unit(8000000, "gigaparsecs")
  2827. }
  2828. ]
  2829. ))
  2830. characterMakers.push(() => makeCharacter(
  2831. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2832. {
  2833. front: {
  2834. height: math.unit(2, "meter"),
  2835. weight: math.unit(60, "kg"),
  2836. name: "Front",
  2837. image: {
  2838. source: "./media/characters/noah/front.svg"
  2839. }
  2840. },
  2841. talons: {
  2842. height: math.unit(0.315, "meter"),
  2843. name: "Talons",
  2844. image: {
  2845. source: "./media/characters/noah/talons.svg"
  2846. }
  2847. }
  2848. },
  2849. [
  2850. {
  2851. name: "Large",
  2852. height: math.unit(50, "feet")
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(750, "feet"),
  2857. default: true
  2858. },
  2859. {
  2860. name: "Megamacro",
  2861. height: math.unit(50, "miles")
  2862. },
  2863. {
  2864. name: "Gigamacro",
  2865. height: math.unit(100000, "miles")
  2866. },
  2867. {
  2868. name: "Full-Size",
  2869. height: math.unit(3000000000, "miles")
  2870. }
  2871. ]
  2872. ))
  2873. characterMakers.push(() => makeCharacter(
  2874. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2875. {
  2876. front: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(80, "kg"),
  2879. name: "Front",
  2880. image: {
  2881. source: "./media/characters/natalya/front.svg"
  2882. }
  2883. },
  2884. back: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(80, "kg"),
  2887. name: "Back",
  2888. image: {
  2889. source: "./media/characters/natalya/back.svg"
  2890. }
  2891. }
  2892. },
  2893. [
  2894. {
  2895. name: "Normal",
  2896. height: math.unit(150, "feet"),
  2897. default: true
  2898. },
  2899. {
  2900. name: "Megamacro",
  2901. height: math.unit(5, "miles")
  2902. },
  2903. {
  2904. name: "Full-Size",
  2905. height: math.unit(600, "kiloparsecs")
  2906. }
  2907. ]
  2908. ))
  2909. characterMakers.push(() => makeCharacter(
  2910. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2911. {
  2912. front: {
  2913. height: math.unit(2, "meter"),
  2914. weight: math.unit(50, "kg"),
  2915. name: "Front",
  2916. image: {
  2917. source: "./media/characters/erestrebah/front.svg",
  2918. extra: 208 / 193,
  2919. bottom: 0.055
  2920. }
  2921. },
  2922. back: {
  2923. height: math.unit(2, "meter"),
  2924. weight: math.unit(50, "kg"),
  2925. name: "Back",
  2926. image: {
  2927. source: "./media/characters/erestrebah/back.svg",
  2928. extra: 1.3
  2929. }
  2930. }
  2931. },
  2932. [
  2933. {
  2934. name: "Normal",
  2935. height: math.unit(10, "feet")
  2936. },
  2937. {
  2938. name: "Large",
  2939. height: math.unit(50, "feet"),
  2940. default: true
  2941. },
  2942. {
  2943. name: "Macro",
  2944. height: math.unit(300, "feet")
  2945. },
  2946. {
  2947. name: "Macro+",
  2948. height: math.unit(750, "feet")
  2949. },
  2950. {
  2951. name: "Megamacro",
  2952. height: math.unit(3, "miles")
  2953. }
  2954. ]
  2955. ))
  2956. characterMakers.push(() => makeCharacter(
  2957. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2958. {
  2959. front: {
  2960. height: math.unit(2, "meter"),
  2961. weight: math.unit(80, "kg"),
  2962. name: "Front",
  2963. image: {
  2964. source: "./media/characters/jennifer/front.svg",
  2965. bottom: 0.11,
  2966. extra: 1.16
  2967. }
  2968. },
  2969. frontAlt: {
  2970. height: math.unit(2, "meter"),
  2971. weight: math.unit(80, "kg"),
  2972. name: "Front (Alt)",
  2973. image: {
  2974. source: "./media/characters/jennifer/front-alt.svg"
  2975. }
  2976. }
  2977. },
  2978. [
  2979. {
  2980. name: "Canon Height",
  2981. height: math.unit(120, "feet"),
  2982. default: true
  2983. },
  2984. {
  2985. name: "Macro+",
  2986. height: math.unit(300, "feet")
  2987. },
  2988. {
  2989. name: "Megamacro",
  2990. height: math.unit(20000, "feet")
  2991. }
  2992. ]
  2993. ))
  2994. characterMakers.push(() => makeCharacter(
  2995. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2996. {
  2997. front: {
  2998. height: math.unit(2, "meter"),
  2999. weight: math.unit(50, "kg"),
  3000. name: "Front",
  3001. image: {
  3002. source: "./media/characters/kalista/front.svg",
  3003. extra: 1947 / 1700,
  3004. bottom: 76.6 / 1412.98
  3005. }
  3006. },
  3007. back: {
  3008. height: math.unit(2, "meter"),
  3009. weight: math.unit(50, "kg"),
  3010. name: "Back",
  3011. image: {
  3012. source: "./media/characters/kalista/back.svg",
  3013. extra: 1366 / 1156,
  3014. bottom: 33.9 / 1362.78
  3015. }
  3016. }
  3017. },
  3018. [
  3019. {
  3020. name: "Uncomfortably Small",
  3021. height: math.unit(10, "feet")
  3022. },
  3023. {
  3024. name: "Small",
  3025. height: math.unit(30, "feet")
  3026. },
  3027. {
  3028. name: "Macro",
  3029. height: math.unit(100, "feet"),
  3030. default: true
  3031. },
  3032. {
  3033. name: "Macro+",
  3034. height: math.unit(2000, "feet")
  3035. },
  3036. {
  3037. name: "True Form",
  3038. height: math.unit(8924, "miles")
  3039. }
  3040. ]
  3041. ))
  3042. characterMakers.push(() => makeCharacter(
  3043. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3044. {
  3045. front: {
  3046. height: math.unit(2, "meter"),
  3047. weight: math.unit(120, "kg"),
  3048. name: "Front",
  3049. image: {
  3050. source: "./media/characters/ggv/front.svg"
  3051. }
  3052. },
  3053. side: {
  3054. height: math.unit(2, "meter"),
  3055. weight: math.unit(120, "kg"),
  3056. name: "Side",
  3057. image: {
  3058. source: "./media/characters/ggv/side.svg"
  3059. }
  3060. }
  3061. },
  3062. [
  3063. {
  3064. name: "Extremely Puny",
  3065. height: math.unit(9 + 5 / 12, "feet")
  3066. },
  3067. {
  3068. name: "Horribly Small",
  3069. height: math.unit(47.7, "miles"),
  3070. default: true
  3071. },
  3072. {
  3073. name: "Reasonably Sized",
  3074. height: math.unit(25000, "parsecs")
  3075. },
  3076. {
  3077. name: "Slightly Uncompressed",
  3078. height: math.unit(7.77e31, "parsecs")
  3079. },
  3080. {
  3081. name: "Omniversal",
  3082. height: math.unit(1e300, "meters")
  3083. },
  3084. ]
  3085. ))
  3086. characterMakers.push(() => makeCharacter(
  3087. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3088. {
  3089. front: {
  3090. height: math.unit(2, "meter"),
  3091. weight: math.unit(75, "lb"),
  3092. name: "Front",
  3093. image: {
  3094. source: "./media/characters/napalm/front.svg"
  3095. }
  3096. },
  3097. back: {
  3098. height: math.unit(2, "meter"),
  3099. weight: math.unit(75, "lb"),
  3100. name: "Back",
  3101. image: {
  3102. source: "./media/characters/napalm/back.svg"
  3103. }
  3104. }
  3105. },
  3106. [
  3107. {
  3108. name: "Standard",
  3109. height: math.unit(55, "feet"),
  3110. default: true
  3111. }
  3112. ]
  3113. ))
  3114. characterMakers.push(() => makeCharacter(
  3115. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3116. {
  3117. front: {
  3118. height: math.unit(7 + 5 / 6, "feet"),
  3119. weight: math.unit(325, "lb"),
  3120. name: "Front",
  3121. image: {
  3122. source: "./media/characters/asana/front.svg",
  3123. extra: 1133 / 1060,
  3124. bottom: 15.2/1148.6
  3125. }
  3126. },
  3127. back: {
  3128. height: math.unit(7 + 5 / 6, "feet"),
  3129. weight: math.unit(325, "lb"),
  3130. name: "Back",
  3131. image: {
  3132. source: "./media/characters/asana/back.svg",
  3133. extra: 1114 / 1043,
  3134. bottom: 5/1120
  3135. }
  3136. },
  3137. dressedDark: {
  3138. height: math.unit(7 + 5 / 6, "feet"),
  3139. weight: math.unit(325, "lb"),
  3140. name: "Dressed (Dark)",
  3141. image: {
  3142. source: "./media/characters/asana/dressed-dark.svg",
  3143. extra: 1133 / 1060,
  3144. bottom: 15.2/1148.6
  3145. }
  3146. },
  3147. dressedLight: {
  3148. height: math.unit(7 + 5 / 6, "feet"),
  3149. weight: math.unit(325, "lb"),
  3150. name: "Dressed (Light)",
  3151. image: {
  3152. source: "./media/characters/asana/dressed-light.svg",
  3153. extra: 1133 / 1060,
  3154. bottom: 15.2/1148.6
  3155. }
  3156. },
  3157. },
  3158. [
  3159. {
  3160. name: "Standard",
  3161. height: math.unit(7 + 5 / 6, "feet"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Large",
  3166. height: math.unit(10, "meters")
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(2500, "meters")
  3171. },
  3172. {
  3173. name: "Megamacro",
  3174. height: math.unit(5e6, "meters")
  3175. },
  3176. {
  3177. name: "Examacro",
  3178. height: math.unit(5e12, "lightyears")
  3179. },
  3180. {
  3181. name: "Max Size",
  3182. height: math.unit(1e31, "lightyears")
  3183. }
  3184. ]
  3185. ))
  3186. characterMakers.push(() => makeCharacter(
  3187. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3188. {
  3189. front: {
  3190. height: math.unit(2, "meter"),
  3191. weight: math.unit(60, "kg"),
  3192. name: "Front",
  3193. image: {
  3194. source: "./media/characters/ebony/front.svg",
  3195. bottom: 0.03,
  3196. extra: 1045 / 810 + 0.03
  3197. }
  3198. },
  3199. side: {
  3200. height: math.unit(2, "meter"),
  3201. weight: math.unit(60, "kg"),
  3202. name: "Side",
  3203. image: {
  3204. source: "./media/characters/ebony/side.svg",
  3205. bottom: 0.03,
  3206. extra: 1045 / 810 + 0.03
  3207. }
  3208. },
  3209. back: {
  3210. height: math.unit(2, "meter"),
  3211. weight: math.unit(60, "kg"),
  3212. name: "Back",
  3213. image: {
  3214. source: "./media/characters/ebony/back.svg",
  3215. bottom: 0.01,
  3216. extra: 1045 / 810 + 0.01
  3217. }
  3218. },
  3219. },
  3220. [
  3221. // TODO check why I did this lol
  3222. {
  3223. name: "Standard",
  3224. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3225. default: true
  3226. },
  3227. {
  3228. name: "Macro",
  3229. height: math.unit(200, "feet")
  3230. },
  3231. {
  3232. name: "Gigamacro",
  3233. height: math.unit(13000, "km")
  3234. }
  3235. ]
  3236. ))
  3237. characterMakers.push(() => makeCharacter(
  3238. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3239. {
  3240. front: {
  3241. height: math.unit(6, "feet"),
  3242. weight: math.unit(175, "lb"),
  3243. name: "Front",
  3244. image: {
  3245. source: "./media/characters/mountain/front.svg",
  3246. extra: 972/955,
  3247. bottom: 64/1036.6
  3248. }
  3249. },
  3250. back: {
  3251. height: math.unit(6, "feet"),
  3252. weight: math.unit(175, "lb"),
  3253. name: "Back",
  3254. image: {
  3255. source: "./media/characters/mountain/back.svg",
  3256. extra: 970/950,
  3257. bottom: 28.25/999
  3258. }
  3259. },
  3260. },
  3261. [
  3262. {
  3263. name: "Large",
  3264. height: math.unit(20, "meters")
  3265. },
  3266. {
  3267. name: "Macro",
  3268. height: math.unit(300, "meters")
  3269. },
  3270. {
  3271. name: "Gigamacro",
  3272. height: math.unit(10000, "km"),
  3273. default: true
  3274. },
  3275. {
  3276. name: "Examacro",
  3277. height: math.unit(10e9, "lightyears")
  3278. }
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(8, "feet"),
  3286. weight: math.unit(500, "lb"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/rick/front.svg"
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(8, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Macro",
  3301. height: math.unit(5, "km")
  3302. }
  3303. ]
  3304. ))
  3305. characterMakers.push(() => makeCharacter(
  3306. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3307. {
  3308. front: {
  3309. height: math.unit(8, "feet"),
  3310. weight: math.unit(120, "lb"),
  3311. name: "Front",
  3312. image: {
  3313. source: "./media/characters/ona/front.svg"
  3314. }
  3315. },
  3316. frontAlt: {
  3317. height: math.unit(8, "feet"),
  3318. weight: math.unit(120, "lb"),
  3319. name: "Front (Alt)",
  3320. image: {
  3321. source: "./media/characters/ona/front-alt.svg"
  3322. }
  3323. },
  3324. back: {
  3325. height: math.unit(8, "feet"),
  3326. weight: math.unit(120, "lb"),
  3327. name: "Back",
  3328. image: {
  3329. source: "./media/characters/ona/back.svg"
  3330. }
  3331. },
  3332. foot: {
  3333. height: math.unit(1.1, "feet"),
  3334. name: "Foot",
  3335. image: {
  3336. source: "./media/characters/ona/foot.svg"
  3337. }
  3338. }
  3339. },
  3340. [
  3341. {
  3342. name: "Megamacro",
  3343. height: math.unit(70, "km"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Gigamacro",
  3348. height: math.unit(681818, "miles")
  3349. },
  3350. {
  3351. name: "Examacro",
  3352. height: math.unit(3800000, "lightyears")
  3353. },
  3354. ]
  3355. ))
  3356. characterMakers.push(() => makeCharacter(
  3357. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3358. {
  3359. front: {
  3360. height: math.unit(12, "feet"),
  3361. weight: math.unit(3000, "lb"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/mech/front.svg",
  3365. bottom: 0.025,
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(12, "feet"),
  3370. weight: math.unit(3000, "lb"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/mech/back.svg",
  3374. bottom: 0.03,
  3375. }
  3376. }
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(12, "feet")
  3382. },
  3383. {
  3384. name: "Macro",
  3385. height: math.unit(300, "feet"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Macro+",
  3390. height: math.unit(1500, "feet")
  3391. },
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(1.3, "meter"),
  3399. weight: math.unit(30, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/gregory/front.svg",
  3403. }
  3404. }
  3405. },
  3406. [
  3407. {
  3408. name: "Normal",
  3409. height: math.unit(1.3, "meter"),
  3410. default: true
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(20, "meter")
  3415. }
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3420. {
  3421. front: {
  3422. height: math.unit(2.8, "meter"),
  3423. weight: math.unit(200, "kg"),
  3424. name: "Front",
  3425. image: {
  3426. source: "./media/characters/elory/front.svg",
  3427. }
  3428. }
  3429. },
  3430. [
  3431. {
  3432. name: "Normal",
  3433. height: math.unit(2.8, "meter"),
  3434. default: true
  3435. },
  3436. {
  3437. name: "Macro",
  3438. height: math.unit(38, "meter")
  3439. }
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3444. {
  3445. front: {
  3446. height: math.unit(470, "feet"),
  3447. weight: math.unit(924, "tons"),
  3448. name: "Front",
  3449. image: {
  3450. source: "./media/characters/angelpatamon/front.svg",
  3451. }
  3452. }
  3453. },
  3454. [
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(470, "feet"),
  3458. default: true
  3459. },
  3460. {
  3461. name: "Deity Size I",
  3462. height: math.unit(28651.2, "km")
  3463. },
  3464. {
  3465. name: "Deity Size II",
  3466. height: math.unit(171907.2, "km")
  3467. }
  3468. ]
  3469. ))
  3470. characterMakers.push(() => makeCharacter(
  3471. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3472. {
  3473. side: {
  3474. height: math.unit(7.2, "meter"),
  3475. weight: math.unit(8.2, "tons"),
  3476. name: "Side",
  3477. image: {
  3478. source: "./media/characters/cryae/side.svg",
  3479. extra: 3500 / 1500
  3480. }
  3481. }
  3482. },
  3483. [
  3484. {
  3485. name: "Normal",
  3486. height: math.unit(7.2, "meter"),
  3487. default: true
  3488. }
  3489. ]
  3490. ))
  3491. characterMakers.push(() => makeCharacter(
  3492. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3493. {
  3494. front: {
  3495. height: math.unit(6, "feet"),
  3496. weight: math.unit(175, "lb"),
  3497. name: "Front",
  3498. image: {
  3499. source: "./media/characters/xera/front.svg",
  3500. extra: 2377 / 1972,
  3501. bottom: 75.5/2452
  3502. }
  3503. },
  3504. side: {
  3505. height: math.unit(6, "feet"),
  3506. weight: math.unit(175, "lb"),
  3507. name: "Side",
  3508. image: {
  3509. source: "./media/characters/xera/side.svg",
  3510. extra: 2345/2019,
  3511. bottom: 39.7/2384
  3512. }
  3513. },
  3514. back: {
  3515. height: math.unit(6, "feet"),
  3516. weight: math.unit(175, "lb"),
  3517. name: "Back",
  3518. image: {
  3519. source: "./media/characters/xera/back.svg",
  3520. extra: 2095/1984,
  3521. bottom: 67/2166
  3522. }
  3523. },
  3524. },
  3525. [
  3526. {
  3527. name: "Small",
  3528. height: math.unit(10, "feet")
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(500, "meters"),
  3533. default: true
  3534. },
  3535. {
  3536. name: "Macro+",
  3537. height: math.unit(10, "km")
  3538. },
  3539. {
  3540. name: "Gigamacro",
  3541. height: math.unit(25000, "km")
  3542. },
  3543. {
  3544. name: "Teramacro",
  3545. height: math.unit(3e6, "km")
  3546. }
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(6, "feet"),
  3554. weight: math.unit(175, "lb"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/nebula/front.svg",
  3558. extra: 2566/2362,
  3559. bottom: 81/2644
  3560. }
  3561. }
  3562. },
  3563. [
  3564. {
  3565. name: "Small",
  3566. height: math.unit(4.5, "meters")
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(1500, "meters"),
  3571. default: true
  3572. },
  3573. {
  3574. name: "Megamacro",
  3575. height: math.unit(150, "km")
  3576. },
  3577. {
  3578. name: "Gigamacro",
  3579. height: math.unit(27000, "km")
  3580. }
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(6, "feet"),
  3588. weight: math.unit(225, "lb"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/abysgar/front.svg"
  3592. }
  3593. }
  3594. },
  3595. [
  3596. {
  3597. name: "Small",
  3598. height: math.unit(4.5, "meters")
  3599. },
  3600. {
  3601. name: "Macro",
  3602. height: math.unit(1250, "meters"),
  3603. default: true
  3604. },
  3605. {
  3606. name: "Megamacro",
  3607. height: math.unit(125, "km")
  3608. },
  3609. {
  3610. name: "Gigamacro",
  3611. height: math.unit(26000, "km")
  3612. }
  3613. ]
  3614. ))
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3617. {
  3618. front: {
  3619. height: math.unit(6, "feet"),
  3620. weight: math.unit(180, "lb"),
  3621. name: "Front",
  3622. image: {
  3623. source: "./media/characters/yakuz/front.svg"
  3624. }
  3625. }
  3626. },
  3627. [
  3628. {
  3629. name: "Small",
  3630. height: math.unit(5, "meters")
  3631. },
  3632. {
  3633. name: "Macro",
  3634. height: math.unit(1500, "meters"),
  3635. default: true
  3636. },
  3637. {
  3638. name: "Megamacro",
  3639. height: math.unit(200, "km")
  3640. },
  3641. {
  3642. name: "Gigamacro",
  3643. height: math.unit(100000, "km")
  3644. }
  3645. ]
  3646. ))
  3647. characterMakers.push(() => makeCharacter(
  3648. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3649. {
  3650. front: {
  3651. height: math.unit(6, "feet"),
  3652. weight: math.unit(175, "lb"),
  3653. name: "Front",
  3654. image: {
  3655. source: "./media/characters/mirova/front.svg",
  3656. extra: 3334/3071,
  3657. bottom: 42/3375.6
  3658. }
  3659. }
  3660. },
  3661. [
  3662. {
  3663. name: "Small",
  3664. height: math.unit(5, "meters")
  3665. },
  3666. {
  3667. name: "Macro",
  3668. height: math.unit(900, "meters"),
  3669. default: true
  3670. },
  3671. {
  3672. name: "Megamacro",
  3673. height: math.unit(135, "km")
  3674. },
  3675. {
  3676. name: "Gigamacro",
  3677. height: math.unit(20000, "km")
  3678. }
  3679. ]
  3680. ))
  3681. characterMakers.push(() => makeCharacter(
  3682. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3683. {
  3684. side: {
  3685. height: math.unit(28.35, "feet"),
  3686. weight: math.unit(99.75, "tons"),
  3687. name: "Side",
  3688. image: {
  3689. source: "./media/characters/asana-mech/side.svg",
  3690. extra: 923/699,
  3691. bottom: 50/975
  3692. }
  3693. },
  3694. chaingun: {
  3695. height: math.unit(7, "feet"),
  3696. weight: math.unit(2400, "lb"),
  3697. name: "Chaingun",
  3698. image: {
  3699. source: "./media/characters/asana-mech/chaingun.svg"
  3700. }
  3701. },
  3702. laser: {
  3703. height: math.unit(7.12, "feet"),
  3704. weight: math.unit(2000, "lb"),
  3705. name: "Laser",
  3706. image: {
  3707. source: "./media/characters/asana-mech/laser.svg"
  3708. }
  3709. },
  3710. },
  3711. [
  3712. {
  3713. name: "Normal",
  3714. height: math.unit(28.35, "feet"),
  3715. default: true
  3716. },
  3717. {
  3718. name: "Macro",
  3719. height: math.unit(2500, "feet")
  3720. },
  3721. {
  3722. name: "Megamacro",
  3723. height: math.unit(25, "miles")
  3724. },
  3725. {
  3726. name: "Examacro",
  3727. height: math.unit(6e8, "lightyears")
  3728. },
  3729. ]
  3730. ))
  3731. characterMakers.push(() => makeCharacter(
  3732. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3733. {
  3734. front: {
  3735. height: math.unit(5, "meters"),
  3736. weight: math.unit(1000, "kg"),
  3737. name: "Front",
  3738. image: {
  3739. source: "./media/characters/asche/front.svg",
  3740. extra: 1258/1190,
  3741. bottom: 47/1305
  3742. }
  3743. },
  3744. frontUnderwear: {
  3745. height: math.unit(5, "meters"),
  3746. weight: math.unit(1000, "kg"),
  3747. name: "Front (Underwear)",
  3748. image: {
  3749. source: "./media/characters/asche/front-underwear.svg",
  3750. extra: 1258/1190,
  3751. bottom: 47/1305
  3752. }
  3753. },
  3754. frontDressed: {
  3755. height: math.unit(5, "meters"),
  3756. weight: math.unit(1000, "kg"),
  3757. name: "Front (Dressed)",
  3758. image: {
  3759. source: "./media/characters/asche/front-dressed.svg",
  3760. extra: 1258/1190,
  3761. bottom: 47/1305
  3762. }
  3763. },
  3764. frontArmor: {
  3765. height: math.unit(5, "meters"),
  3766. weight: math.unit(1000, "kg"),
  3767. name: "Front (Armored)",
  3768. image: {
  3769. source: "./media/characters/asche/front-armored.svg",
  3770. extra: 1374 / 1308,
  3771. bottom: 23/1397
  3772. }
  3773. },
  3774. mp724: {
  3775. height: math.unit(0.96, "meters"),
  3776. weight: math.unit(38, "kg"),
  3777. name: "H&K MP724",
  3778. image: {
  3779. source: "./media/characters/asche/h&k-mp724.svg"
  3780. }
  3781. },
  3782. side: {
  3783. height: math.unit(5, "meters"),
  3784. weight: math.unit(1000, "kg"),
  3785. name: "Side",
  3786. image: {
  3787. source: "./media/characters/asche/side.svg",
  3788. extra: 1717 / 1609,
  3789. bottom: 0.005
  3790. }
  3791. },
  3792. back: {
  3793. height: math.unit(5, "meters"),
  3794. weight: math.unit(1000, "kg"),
  3795. name: "Back",
  3796. image: {
  3797. source: "./media/characters/asche/back.svg",
  3798. extra: 1570 / 1501
  3799. }
  3800. },
  3801. },
  3802. [
  3803. {
  3804. name: "DEFCON 5",
  3805. height: math.unit(5, "meters")
  3806. },
  3807. {
  3808. name: "DEFCON 4",
  3809. height: math.unit(500, "meters"),
  3810. default: true
  3811. },
  3812. {
  3813. name: "DEFCON 3",
  3814. height: math.unit(5, "km")
  3815. },
  3816. {
  3817. name: "DEFCON 2",
  3818. height: math.unit(500, "km")
  3819. },
  3820. {
  3821. name: "DEFCON 1",
  3822. height: math.unit(500000, "km")
  3823. },
  3824. {
  3825. name: "DEFCON 0",
  3826. height: math.unit(3, "gigaparsecs")
  3827. },
  3828. ]
  3829. ))
  3830. characterMakers.push(() => makeCharacter(
  3831. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3832. {
  3833. front: {
  3834. height: math.unit(2, "meters"),
  3835. weight: math.unit(76, "kg"),
  3836. name: "Front",
  3837. image: {
  3838. source: "./media/characters/gale/front.svg"
  3839. }
  3840. },
  3841. frontAlt1: {
  3842. height: math.unit(2, "meters"),
  3843. weight: math.unit(76, "kg"),
  3844. name: "Front (Alt 1)",
  3845. image: {
  3846. source: "./media/characters/gale/front-alt-1.svg"
  3847. }
  3848. },
  3849. frontAlt2: {
  3850. height: math.unit(2, "meters"),
  3851. weight: math.unit(76, "kg"),
  3852. name: "Front (Alt 2)",
  3853. image: {
  3854. source: "./media/characters/gale/front-alt-2.svg"
  3855. }
  3856. },
  3857. },
  3858. [
  3859. {
  3860. name: "Normal",
  3861. height: math.unit(7, "feet")
  3862. },
  3863. {
  3864. name: "Macro",
  3865. height: math.unit(150, "feet"),
  3866. default: true
  3867. },
  3868. {
  3869. name: "Macro+",
  3870. height: math.unit(300, "feet")
  3871. },
  3872. ]
  3873. ))
  3874. characterMakers.push(() => makeCharacter(
  3875. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3876. {
  3877. front: {
  3878. height: math.unit(2, "meters"),
  3879. weight: math.unit(76, "kg"),
  3880. name: "Front",
  3881. image: {
  3882. source: "./media/characters/draylen/front.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(150, "feet"),
  3890. default: true
  3891. }
  3892. ]
  3893. ))
  3894. characterMakers.push(() => makeCharacter(
  3895. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3896. {
  3897. front: {
  3898. height: math.unit(7 + 9 / 12, "feet"),
  3899. weight: math.unit(379, "lbs"),
  3900. name: "Front",
  3901. image: {
  3902. source: "./media/characters/chez/front.svg"
  3903. }
  3904. },
  3905. side: {
  3906. height: math.unit(7 + 9 / 12, "feet"),
  3907. weight: math.unit(379, "lbs"),
  3908. name: "Side",
  3909. image: {
  3910. source: "./media/characters/chez/side.svg"
  3911. }
  3912. }
  3913. },
  3914. [
  3915. {
  3916. name: "Normal",
  3917. height: math.unit(7 + 9 / 12, "feet"),
  3918. default: true
  3919. },
  3920. {
  3921. name: "God King",
  3922. height: math.unit(9750000, "meters")
  3923. }
  3924. ]
  3925. ))
  3926. characterMakers.push(() => makeCharacter(
  3927. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3928. {
  3929. front: {
  3930. height: math.unit(6, "feet"),
  3931. weight: math.unit(275, "lbs"),
  3932. name: "Front",
  3933. image: {
  3934. source: "./media/characters/kaylum/front.svg",
  3935. bottom: 0.01,
  3936. extra: 1166 / 1031
  3937. }
  3938. },
  3939. frontWingless: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(275, "lbs"),
  3942. name: "Front (Wingless)",
  3943. image: {
  3944. source: "./media/characters/kaylum/front-wingless.svg",
  3945. bottom: 0.01,
  3946. extra: 1117 / 1031
  3947. }
  3948. }
  3949. },
  3950. [
  3951. {
  3952. name: "Normal",
  3953. height: math.unit(3.05, "meters")
  3954. },
  3955. {
  3956. name: "Master",
  3957. height: math.unit(5.5, "meters")
  3958. },
  3959. {
  3960. name: "Rampage",
  3961. height: math.unit(19, "meters")
  3962. },
  3963. {
  3964. name: "Macro Lite",
  3965. height: math.unit(37, "meters")
  3966. },
  3967. {
  3968. name: "Hyper Predator",
  3969. height: math.unit(61, "meters")
  3970. },
  3971. {
  3972. name: "Macro",
  3973. height: math.unit(138, "meters"),
  3974. default: true
  3975. }
  3976. ]
  3977. ))
  3978. characterMakers.push(() => makeCharacter(
  3979. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3980. {
  3981. front: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(150, "lbs"),
  3984. name: "Front",
  3985. image: {
  3986. source: "./media/characters/geta/front.svg"
  3987. }
  3988. }
  3989. },
  3990. [
  3991. {
  3992. name: "Micro",
  3993. height: math.unit(3, "inches"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Normal",
  3998. height: math.unit(5 + 5 / 12, "feet")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(6, "feet"),
  4007. weight: math.unit(300, "lbs"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/tyrnn/front.svg"
  4011. }
  4012. }
  4013. },
  4014. [
  4015. {
  4016. name: "Main Height",
  4017. height: math.unit(355, "feet"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Fave. Height",
  4022. height: math.unit(2400, "feet")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(300, "lbs"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/appledectomy/front.svg"
  4035. }
  4036. }
  4037. },
  4038. [
  4039. {
  4040. name: "Macro",
  4041. height: math.unit(2500, "feet")
  4042. },
  4043. {
  4044. name: "Megamacro",
  4045. height: math.unit(50, "miles"),
  4046. default: true
  4047. },
  4048. {
  4049. name: "Gigamacro",
  4050. height: math.unit(5000, "miles")
  4051. },
  4052. {
  4053. name: "Teramacro",
  4054. height: math.unit(250000, "miles")
  4055. },
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(6, "feet"),
  4063. weight: math.unit(200, "lbs"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/vulpes/front.svg",
  4067. extra: 573 / 543,
  4068. bottom: 0.033
  4069. }
  4070. },
  4071. side: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(200, "lbs"),
  4074. name: "Side",
  4075. image: {
  4076. source: "./media/characters/vulpes/side.svg",
  4077. extra: 573 / 543,
  4078. bottom: 0.01
  4079. }
  4080. },
  4081. back: {
  4082. height: math.unit(6, "feet"),
  4083. weight: math.unit(200, "lbs"),
  4084. name: "Back",
  4085. image: {
  4086. source: "./media/characters/vulpes/back.svg",
  4087. extra: 573 / 543,
  4088. }
  4089. },
  4090. feet: {
  4091. height: math.unit(1.276, "feet"),
  4092. name: "Feet",
  4093. image: {
  4094. source: "./media/characters/vulpes/feet.svg"
  4095. }
  4096. },
  4097. maw: {
  4098. height: math.unit(1.18, "feet"),
  4099. name: "Maw",
  4100. image: {
  4101. source: "./media/characters/vulpes/maw.svg"
  4102. }
  4103. },
  4104. },
  4105. [
  4106. {
  4107. name: "Micro",
  4108. height: math.unit(2, "inches")
  4109. },
  4110. {
  4111. name: "Normal",
  4112. height: math.unit(6.3, "feet")
  4113. },
  4114. {
  4115. name: "Macro",
  4116. height: math.unit(850, "feet")
  4117. },
  4118. {
  4119. name: "Megamacro",
  4120. height: math.unit(7500, "feet"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Gigamacro",
  4125. height: math.unit(570000, "miles")
  4126. }
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4131. {
  4132. front: {
  4133. height: math.unit(6, "feet"),
  4134. weight: math.unit(210, "lbs"),
  4135. name: "Front",
  4136. image: {
  4137. source: "./media/characters/rain-fallen/front.svg"
  4138. }
  4139. },
  4140. side: {
  4141. height: math.unit(6, "feet"),
  4142. weight: math.unit(210, "lbs"),
  4143. name: "Side",
  4144. image: {
  4145. source: "./media/characters/rain-fallen/side.svg"
  4146. }
  4147. },
  4148. back: {
  4149. height: math.unit(6, "feet"),
  4150. weight: math.unit(210, "lbs"),
  4151. name: "Back",
  4152. image: {
  4153. source: "./media/characters/rain-fallen/back.svg"
  4154. }
  4155. },
  4156. feral: {
  4157. height: math.unit(9, "feet"),
  4158. weight: math.unit(700, "lbs"),
  4159. name: "Feral",
  4160. image: {
  4161. source: "./media/characters/rain-fallen/feral.svg"
  4162. }
  4163. },
  4164. },
  4165. [
  4166. {
  4167. name: "Normal",
  4168. height: math.unit(5, "meter")
  4169. },
  4170. {
  4171. name: "Macro",
  4172. height: math.unit(150, "meter"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Megamacro",
  4177. height: math.unit(278e6, "meter")
  4178. },
  4179. {
  4180. name: "Gigamacro",
  4181. height: math.unit(2e9, "meter")
  4182. },
  4183. {
  4184. name: "Teramacro",
  4185. height: math.unit(8e12, "meter")
  4186. },
  4187. {
  4188. name: "Devourer",
  4189. height: math.unit(14, "zettameters")
  4190. },
  4191. {
  4192. name: "Scarlet King",
  4193. height: math.unit(18, "yottameters")
  4194. },
  4195. {
  4196. name: "Void",
  4197. height: math.unit(6.66e66, "yottameters")
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4203. {
  4204. standing: {
  4205. height: math.unit(6, "feet"),
  4206. weight: math.unit(180, "lbs"),
  4207. name: "Standing",
  4208. image: {
  4209. source: "./media/characters/zaakira/standing.svg"
  4210. }
  4211. },
  4212. laying: {
  4213. height: math.unit(3, "feet"),
  4214. weight: math.unit(180, "lbs"),
  4215. name: "Laying",
  4216. image: {
  4217. source: "./media/characters/zaakira/laying.svg"
  4218. }
  4219. },
  4220. },
  4221. [
  4222. {
  4223. name: "Normal",
  4224. height: math.unit(12, "feet")
  4225. },
  4226. {
  4227. name: "Macro",
  4228. height: math.unit(279, "feet"),
  4229. default: true
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4235. {
  4236. femSfw: {
  4237. height: math.unit(8, "feet"),
  4238. weight: math.unit(350, "lb"),
  4239. name: "Fem",
  4240. image: {
  4241. source: "./media/characters/sigvald/fem-sfw.svg",
  4242. extra: 182/164,
  4243. bottom: 8.7/190.5
  4244. }
  4245. },
  4246. femNsfw: {
  4247. height: math.unit(8, "feet"),
  4248. weight: math.unit(350, "lb"),
  4249. name: "Fem (NSFW)",
  4250. image: {
  4251. source: "./media/characters/sigvald/fem-nsfw.svg",
  4252. extra: 182/164,
  4253. bottom: 8.7/190.5
  4254. }
  4255. },
  4256. maleNsfw: {
  4257. height: math.unit(8, "feet"),
  4258. weight: math.unit(350, "lb"),
  4259. name: "Male (NSFW)",
  4260. image: {
  4261. source: "./media/characters/sigvald/male-nsfw.svg",
  4262. extra: 182/164,
  4263. bottom: 8.7/190.5
  4264. }
  4265. },
  4266. hermNsfw: {
  4267. height: math.unit(8, "feet"),
  4268. weight: math.unit(350, "lb"),
  4269. name: "Herm (NSFW)",
  4270. image: {
  4271. source: "./media/characters/sigvald/herm-nsfw.svg",
  4272. extra: 182/164,
  4273. bottom: 8.7/190.5
  4274. }
  4275. },
  4276. dick: {
  4277. height: math.unit(2.36, "feet"),
  4278. name: "Dick",
  4279. image: {
  4280. source: "./media/characters/sigvald/dick.svg"
  4281. }
  4282. },
  4283. eye: {
  4284. height: math.unit(0.31, "feet"),
  4285. name: "Eye",
  4286. image: {
  4287. source: "./media/characters/sigvald/eye.svg"
  4288. }
  4289. },
  4290. mouth: {
  4291. height: math.unit(0.92, "feet"),
  4292. name: "Mouth",
  4293. image: {
  4294. source: "./media/characters/sigvald/mouth.svg"
  4295. }
  4296. },
  4297. paws: {
  4298. height: math.unit(2.2, "feet"),
  4299. name: "Paws",
  4300. image: {
  4301. source: "./media/characters/sigvald/paws.svg"
  4302. }
  4303. }
  4304. },
  4305. [
  4306. {
  4307. name: "Normal",
  4308. height: math.unit(8, "feet")
  4309. },
  4310. {
  4311. name: "Large",
  4312. height: math.unit(12, "feet")
  4313. },
  4314. {
  4315. name: "Larger",
  4316. height: math.unit(20, "feet")
  4317. },
  4318. {
  4319. name: "Macro",
  4320. height: math.unit(150, "feet")
  4321. },
  4322. {
  4323. name: "Macro+",
  4324. height: math.unit(200, "feet"),
  4325. default: true
  4326. },
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4331. {
  4332. side: {
  4333. height: math.unit(12, "feet"),
  4334. weight: math.unit(2000, "kg"),
  4335. name: "Side",
  4336. image: {
  4337. source: "./media/characters/scott/side.svg",
  4338. extra: 754 / 724,
  4339. bottom: 0.069
  4340. }
  4341. },
  4342. upright: {
  4343. height: math.unit(12, "feet"),
  4344. weight: math.unit(2000, "kg"),
  4345. name: "Upright",
  4346. image: {
  4347. source: "./media/characters/scott/upright.svg",
  4348. extra: 3881 / 3722,
  4349. bottom: 0.05
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(12, "feet"),
  4357. default: true
  4358. },
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4363. {
  4364. side: {
  4365. height: math.unit(8, "meters"),
  4366. weight: math.unit(84755, "lbs"),
  4367. name: "Side",
  4368. image: {
  4369. source: "./media/characters/tobias/side.svg",
  4370. extra: 1474 / 1096,
  4371. bottom: 38.9 / 1513.1235
  4372. }
  4373. },
  4374. },
  4375. [
  4376. {
  4377. name: "Normal",
  4378. height: math.unit(8, "meters"),
  4379. default: true
  4380. },
  4381. ]
  4382. ))
  4383. characterMakers.push(() => makeCharacter(
  4384. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4385. {
  4386. front: {
  4387. height: math.unit(5.5, "feet"),
  4388. weight: math.unit(400, "lbs"),
  4389. name: "Front",
  4390. image: {
  4391. source: "./media/characters/kieran/front.svg",
  4392. extra: 2694 / 2364,
  4393. bottom: 217 / 2908
  4394. }
  4395. },
  4396. side: {
  4397. height: math.unit(5.5, "feet"),
  4398. weight: math.unit(400, "lbs"),
  4399. name: "Side",
  4400. image: {
  4401. source: "./media/characters/kieran/side.svg",
  4402. extra: 875 / 777,
  4403. bottom: 84.6 / 959
  4404. }
  4405. },
  4406. },
  4407. [
  4408. {
  4409. name: "Normal",
  4410. height: math.unit(5.5, "feet"),
  4411. default: true
  4412. },
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4417. {
  4418. side: {
  4419. height: math.unit(2, "meters"),
  4420. weight: math.unit(70, "kg"),
  4421. name: "Side",
  4422. image: {
  4423. source: "./media/characters/sanya/side.svg",
  4424. bottom: 0.02,
  4425. extra: 1.02
  4426. }
  4427. },
  4428. },
  4429. [
  4430. {
  4431. name: "Small",
  4432. height: math.unit(2, "meters")
  4433. },
  4434. {
  4435. name: "Normal",
  4436. height: math.unit(3, "meters")
  4437. },
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(16, "meters"),
  4441. default: true
  4442. },
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4447. {
  4448. front: {
  4449. height: math.unit(2, "meters"),
  4450. weight: math.unit(120, "kg"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/miranda/front.svg",
  4454. extra: 195/185,
  4455. bottom: 10.9/206.5
  4456. }
  4457. },
  4458. back: {
  4459. height: math.unit(2, "meters"),
  4460. weight: math.unit(120, "kg"),
  4461. name: "Back",
  4462. image: {
  4463. source: "./media/characters/miranda/back.svg",
  4464. extra: 201/193,
  4465. bottom: 2.3/203.7
  4466. }
  4467. },
  4468. },
  4469. [
  4470. {
  4471. name: "Normal",
  4472. height: math.unit(10, "feet"),
  4473. default: true
  4474. }
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "James", species: ["deer"], tags: ["anthro"] },
  4479. {
  4480. side: {
  4481. height: math.unit(2, "meters"),
  4482. weight: math.unit(100, "kg"),
  4483. name: "Front",
  4484. image: {
  4485. source: "./media/characters/james/front.svg",
  4486. extra: 10 / 8.5
  4487. }
  4488. },
  4489. },
  4490. [
  4491. {
  4492. name: "Normal",
  4493. height: math.unit(8.5, "feet"),
  4494. default: true
  4495. }
  4496. ]
  4497. ))
  4498. characterMakers.push(() => makeCharacter(
  4499. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4500. {
  4501. side: {
  4502. height: math.unit(9.5, "feet"),
  4503. weight: math.unit(2500, "lbs"),
  4504. name: "Side",
  4505. image: {
  4506. source: "./media/characters/heather/side.svg"
  4507. }
  4508. },
  4509. },
  4510. [
  4511. {
  4512. name: "Normal",
  4513. height: math.unit(9.5, "feet"),
  4514. default: true
  4515. }
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4520. {
  4521. side: {
  4522. height: math.unit(6.5, "feet"),
  4523. weight: math.unit(400, "lbs"),
  4524. name: "Side",
  4525. image: {
  4526. source: "./media/characters/lukas/side.svg",
  4527. extra: 7.25 / 6.5
  4528. }
  4529. },
  4530. },
  4531. [
  4532. {
  4533. name: "Normal",
  4534. height: math.unit(6.5, "feet"),
  4535. default: true
  4536. }
  4537. ]
  4538. ))
  4539. characterMakers.push(() => makeCharacter(
  4540. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4541. {
  4542. side: {
  4543. height: math.unit(5, "feet"),
  4544. weight: math.unit(3000, "lbs"),
  4545. name: "Side",
  4546. image: {
  4547. source: "./media/characters/louise/side.svg"
  4548. }
  4549. },
  4550. },
  4551. [
  4552. {
  4553. name: "Normal",
  4554. height: math.unit(5, "feet"),
  4555. default: true
  4556. }
  4557. ]
  4558. ))
  4559. characterMakers.push(() => makeCharacter(
  4560. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4561. {
  4562. side: {
  4563. height: math.unit(6, "feet"),
  4564. weight: math.unit(150, "lbs"),
  4565. name: "Side",
  4566. image: {
  4567. source: "./media/characters/ramona/side.svg"
  4568. }
  4569. },
  4570. },
  4571. [
  4572. {
  4573. name: "Normal",
  4574. height: math.unit(5.3, "meters"),
  4575. default: true
  4576. },
  4577. {
  4578. name: "Macro",
  4579. height: math.unit(20, "stories")
  4580. },
  4581. {
  4582. name: "Macro+",
  4583. height: math.unit(50, "stories")
  4584. },
  4585. ]
  4586. ))
  4587. characterMakers.push(() => makeCharacter(
  4588. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4589. {
  4590. standing: {
  4591. height: math.unit(5.75, "feet"),
  4592. weight: math.unit(160, "lbs"),
  4593. name: "Standing",
  4594. image: {
  4595. source: "./media/characters/deerpuff/standing.svg",
  4596. extra: 682 / 624
  4597. }
  4598. },
  4599. sitting: {
  4600. height: math.unit(5.75 / 1.79, "feet"),
  4601. weight: math.unit(160, "lbs"),
  4602. name: "Sitting",
  4603. image: {
  4604. source: "./media/characters/deerpuff/sitting.svg",
  4605. bottom: 44 / 400,
  4606. extra: 1
  4607. }
  4608. },
  4609. taurLaying: {
  4610. height: math.unit(6, "feet"),
  4611. weight: math.unit(400, "lbs"),
  4612. name: "Taur (Laying)",
  4613. image: {
  4614. source: "./media/characters/deerpuff/taur-laying.svg"
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Puffball",
  4621. height: math.unit(6, "inches")
  4622. },
  4623. {
  4624. name: "Normalpuff",
  4625. height: math.unit(5.75, "feet")
  4626. },
  4627. {
  4628. name: "Macropuff",
  4629. height: math.unit(1500, "feet"),
  4630. default: true
  4631. },
  4632. {
  4633. name: "Megapuff",
  4634. height: math.unit(500, "miles")
  4635. },
  4636. {
  4637. name: "Gigapuff",
  4638. height: math.unit(250000, "miles")
  4639. },
  4640. {
  4641. name: "Omegapuff",
  4642. height: math.unit(1000, "lightyears")
  4643. },
  4644. ]
  4645. ))
  4646. characterMakers.push(() => makeCharacter(
  4647. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4648. {
  4649. stomping: {
  4650. height: math.unit(6, "feet"),
  4651. weight: math.unit(170, "lbs"),
  4652. name: "Stomping",
  4653. image: {
  4654. source: "./media/characters/vivian/stomping.svg"
  4655. }
  4656. },
  4657. sitting: {
  4658. height: math.unit(6 / 1.75, "feet"),
  4659. weight: math.unit(170, "lbs"),
  4660. name: "Sitting",
  4661. image: {
  4662. source: "./media/characters/vivian/sitting.svg",
  4663. bottom: 1 / 6.4,
  4664. extra: 1,
  4665. }
  4666. },
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(7, "feet"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Macro",
  4676. height: math.unit(10, "stories")
  4677. },
  4678. {
  4679. name: "Macro+",
  4680. height: math.unit(30, "stories")
  4681. },
  4682. {
  4683. name: "Megamacro",
  4684. height: math.unit(10, "miles")
  4685. },
  4686. {
  4687. name: "Megamacro+",
  4688. height: math.unit(2750000, "meters")
  4689. },
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(160, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/prince/front.svg",
  4701. extra: 3400 / 3000
  4702. }
  4703. },
  4704. jumping: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(160, "lbs"),
  4707. name: "Jumping",
  4708. image: {
  4709. source: "./media/characters/prince/jump.svg",
  4710. extra: 2555 / 2134
  4711. }
  4712. },
  4713. },
  4714. [
  4715. {
  4716. name: "Normal",
  4717. height: math.unit(7.75, "feet"),
  4718. default: true
  4719. },
  4720. {
  4721. name: "Not cute",
  4722. height: math.unit(17, "feet")
  4723. },
  4724. {
  4725. name: "I said NOT",
  4726. height: math.unit(91, "feet")
  4727. },
  4728. {
  4729. name: "Please stop",
  4730. height: math.unit(560, "feet")
  4731. },
  4732. {
  4733. name: "What have you done",
  4734. height: math.unit(2200, "feet")
  4735. },
  4736. {
  4737. name: "Deer God",
  4738. height: math.unit(3.6, "miles")
  4739. },
  4740. ]
  4741. ))
  4742. characterMakers.push(() => makeCharacter(
  4743. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4744. {
  4745. standing: {
  4746. height: math.unit(6, "feet"),
  4747. weight: math.unit(300, "lbs"),
  4748. name: "Standing",
  4749. image: {
  4750. source: "./media/characters/psymon/standing.svg",
  4751. extra: 1888 / 1810,
  4752. bottom: 0.05
  4753. }
  4754. },
  4755. slithering: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(300, "lbs"),
  4758. name: "Slithering",
  4759. image: {
  4760. source: "./media/characters/psymon/slithering.svg",
  4761. extra: 1330 / 1224
  4762. }
  4763. },
  4764. slitheringAlt: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(300, "lbs"),
  4767. name: "Slithering (Alt)",
  4768. image: {
  4769. source: "./media/characters/psymon/slithering-alt.svg",
  4770. extra: 1330 / 1224
  4771. }
  4772. },
  4773. },
  4774. [
  4775. {
  4776. name: "Normal",
  4777. height: math.unit(11.25, "feet"),
  4778. default: true
  4779. },
  4780. {
  4781. name: "Large",
  4782. height: math.unit(27, "feet")
  4783. },
  4784. {
  4785. name: "Giant",
  4786. height: math.unit(87, "feet")
  4787. },
  4788. {
  4789. name: "Macro",
  4790. height: math.unit(365, "feet")
  4791. },
  4792. {
  4793. name: "Megamacro",
  4794. height: math.unit(3, "miles")
  4795. },
  4796. {
  4797. name: "World Serpent",
  4798. height: math.unit(8000, "miles")
  4799. },
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4804. {
  4805. front: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(180, "lbs"),
  4808. name: "Front",
  4809. image: {
  4810. source: "./media/characters/daimos/front.svg",
  4811. extra: 4160 / 3897,
  4812. bottom: 0.021
  4813. }
  4814. }
  4815. },
  4816. [
  4817. {
  4818. name: "Normal",
  4819. height: math.unit(8, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Big Dog",
  4824. height: math.unit(22, "feet")
  4825. },
  4826. {
  4827. name: "Macro",
  4828. height: math.unit(127, "feet")
  4829. },
  4830. {
  4831. name: "Megamacro",
  4832. height: math.unit(3600, "feet")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4838. {
  4839. side: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(180, "lbs"),
  4842. name: "Side",
  4843. image: {
  4844. source: "./media/characters/blake/side.svg",
  4845. extra: 1212 / 1120,
  4846. bottom: 0.05
  4847. }
  4848. },
  4849. crouched: {
  4850. height: math.unit(6 * 0.57, "feet"),
  4851. weight: math.unit(180, "lbs"),
  4852. name: "Crouched",
  4853. image: {
  4854. source: "./media/characters/blake/crouched.svg",
  4855. extra: 840 / 587,
  4856. bottom: 0.04
  4857. }
  4858. },
  4859. bent: {
  4860. height: math.unit(6 * 0.75, "feet"),
  4861. weight: math.unit(180, "lbs"),
  4862. name: "Bent",
  4863. image: {
  4864. source: "./media/characters/blake/bent.svg",
  4865. extra: 592 / 544,
  4866. bottom: 0.035
  4867. }
  4868. },
  4869. },
  4870. [
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(8 + 1 / 6, "feet"),
  4874. default: true
  4875. },
  4876. {
  4877. name: "Big Backside",
  4878. height: math.unit(37, "feet")
  4879. },
  4880. {
  4881. name: "Subway Shredder",
  4882. height: math.unit(72, "feet")
  4883. },
  4884. {
  4885. name: "City Carver",
  4886. height: math.unit(1675, "feet")
  4887. },
  4888. {
  4889. name: "Tectonic Tweaker",
  4890. height: math.unit(2300, "miles")
  4891. },
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4896. {
  4897. front: {
  4898. height: math.unit(6, "feet"),
  4899. weight: math.unit(180, "lbs"),
  4900. name: "Front",
  4901. image: {
  4902. source: "./media/characters/guisetto/front.svg",
  4903. extra: 856 / 817,
  4904. bottom: 0.06
  4905. }
  4906. },
  4907. airborne: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(180, "lbs"),
  4910. name: "Airborne",
  4911. image: {
  4912. source: "./media/characters/guisetto/airborne.svg",
  4913. extra: 584 / 525
  4914. }
  4915. },
  4916. },
  4917. [
  4918. {
  4919. name: "Normal",
  4920. height: math.unit(10 + 11 / 12, "feet"),
  4921. default: true
  4922. },
  4923. {
  4924. name: "Large",
  4925. height: math.unit(35, "feet")
  4926. },
  4927. {
  4928. name: "Macro",
  4929. height: math.unit(475, "feet")
  4930. },
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4935. {
  4936. front: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(180, "lbs"),
  4939. name: "Front",
  4940. image: {
  4941. source: "./media/characters/luxor/front.svg",
  4942. extra: 2940 / 2152
  4943. }
  4944. },
  4945. back: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(180, "lbs"),
  4948. name: "Back",
  4949. image: {
  4950. source: "./media/characters/luxor/back.svg",
  4951. extra: 1083 / 960
  4952. }
  4953. },
  4954. },
  4955. [
  4956. {
  4957. name: "Normal",
  4958. height: math.unit(5 + 5 / 6, "feet"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "Lamp",
  4963. height: math.unit(50, "feet")
  4964. },
  4965. {
  4966. name: "Lämp",
  4967. height: math.unit(300, "feet")
  4968. },
  4969. {
  4970. name: "The sun is a lamp",
  4971. height: math.unit(250000, "miles")
  4972. },
  4973. ]
  4974. ))
  4975. characterMakers.push(() => makeCharacter(
  4976. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4977. {
  4978. front: {
  4979. height: math.unit(6, "feet"),
  4980. weight: math.unit(50, "lbs"),
  4981. name: "Front",
  4982. image: {
  4983. source: "./media/characters/huoyan/front.svg"
  4984. }
  4985. },
  4986. side: {
  4987. height: math.unit(6, "feet"),
  4988. weight: math.unit(180, "lbs"),
  4989. name: "Side",
  4990. image: {
  4991. source: "./media/characters/huoyan/side.svg"
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "Chef",
  4998. height: math.unit(9, "feet")
  4999. },
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(65, "feet"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Macro",
  5007. height: math.unit(780, "feet")
  5008. },
  5009. {
  5010. name: "Flaming Mountain",
  5011. height: math.unit(4.8, "miles")
  5012. },
  5013. {
  5014. name: "Celestial",
  5015. height: math.unit(765000, "miles")
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(5 + 3 / 4, "feet"),
  5024. weight: math.unit(120, "lbs"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/tails/front.svg"
  5028. }
  5029. }
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(5 + 3 / 4, "feet"),
  5035. default: true
  5036. }
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(4, "feet"),
  5044. weight: math.unit(50, "lbs"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/rainy/front.svg"
  5048. }
  5049. }
  5050. },
  5051. [
  5052. {
  5053. name: "Macro",
  5054. height: math.unit(800, "feet"),
  5055. default: true
  5056. }
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5061. {
  5062. front: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(150, "lbs"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/rainier/front.svg"
  5068. }
  5069. }
  5070. },
  5071. [
  5072. {
  5073. name: "Micro",
  5074. height: math.unit(2, "mm"),
  5075. default: true
  5076. }
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5081. {
  5082. front: {
  5083. height: math.unit(6, "feet"),
  5084. weight: math.unit(180, "lbs"),
  5085. name: "Front",
  5086. image: {
  5087. source: "./media/characters/andy/front.svg"
  5088. }
  5089. }
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(8, "feet"),
  5095. default: true
  5096. },
  5097. {
  5098. name: "Macro",
  5099. height: math.unit(1000, "feet")
  5100. },
  5101. {
  5102. name: "Megamacro",
  5103. height: math.unit(5, "miles")
  5104. },
  5105. {
  5106. name: "Gigamacro",
  5107. height: math.unit(5000, "miles")
  5108. },
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5113. {
  5114. front: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(210, "lbs"),
  5117. name: "Front",
  5118. image: {
  5119. source: "./media/characters/cimmaron/front-sfw.svg",
  5120. extra: 701 / 676,
  5121. bottom: 0.046
  5122. }
  5123. },
  5124. back: {
  5125. height: math.unit(6, "feet"),
  5126. weight: math.unit(210, "lbs"),
  5127. name: "Back",
  5128. image: {
  5129. source: "./media/characters/cimmaron/back-sfw.svg",
  5130. extra: 701 / 676,
  5131. bottom: 0.046
  5132. }
  5133. },
  5134. frontNsfw: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(210, "lbs"),
  5137. name: "Front (NSFW)",
  5138. image: {
  5139. source: "./media/characters/cimmaron/front-nsfw.svg",
  5140. extra: 701 / 676,
  5141. bottom: 0.046
  5142. }
  5143. },
  5144. backNsfw: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(210, "lbs"),
  5147. name: "Back (NSFW)",
  5148. image: {
  5149. source: "./media/characters/cimmaron/back-nsfw.svg",
  5150. extra: 701 / 676,
  5151. bottom: 0.046
  5152. }
  5153. },
  5154. dick: {
  5155. height: math.unit(1.714, "feet"),
  5156. name: "Dick",
  5157. image: {
  5158. source: "./media/characters/cimmaron/dick.svg"
  5159. }
  5160. },
  5161. },
  5162. [
  5163. {
  5164. name: "Normal",
  5165. height: math.unit(6, "feet"),
  5166. default: true
  5167. },
  5168. {
  5169. name: "Macro Mayor",
  5170. height: math.unit(350, "meters")
  5171. },
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5176. {
  5177. front: {
  5178. height: math.unit(6, "feet"),
  5179. weight: math.unit(200, "lbs"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/akari/front.svg",
  5183. extra: 962 / 901,
  5184. bottom: 0.04
  5185. }
  5186. }
  5187. },
  5188. [
  5189. {
  5190. name: "Micro",
  5191. height: math.unit(5, "inches"),
  5192. default: true
  5193. },
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(7, "feet")
  5197. },
  5198. ]
  5199. ))
  5200. characterMakers.push(() => makeCharacter(
  5201. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5202. {
  5203. front: {
  5204. height: math.unit(6, "feet"),
  5205. weight: math.unit(140, "lbs"),
  5206. name: "Front",
  5207. image: {
  5208. source: "./media/characters/cynosura/front.svg",
  5209. extra: 896 / 847
  5210. }
  5211. },
  5212. back: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(140, "lbs"),
  5215. name: "Back",
  5216. image: {
  5217. source: "./media/characters/cynosura/back.svg",
  5218. extra: 1365 / 1250
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Micro",
  5225. height: math.unit(4, "inches")
  5226. },
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(5.75, "feet"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Tall",
  5234. height: math.unit(10, "feet")
  5235. },
  5236. {
  5237. name: "Big",
  5238. height: math.unit(20, "feet")
  5239. },
  5240. {
  5241. name: "Macro",
  5242. height: math.unit(50, "feet")
  5243. },
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(170, "lbs"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/gin/front.svg",
  5255. extra: 1.053,
  5256. bottom: 0.025
  5257. }
  5258. },
  5259. foot: {
  5260. height: math.unit(6 / 4.25, "feet"),
  5261. name: "Foot",
  5262. image: {
  5263. source: "./media/characters/gin/foot.svg"
  5264. }
  5265. },
  5266. sole: {
  5267. height: math.unit(6 / 4.40, "feet"),
  5268. name: "Sole",
  5269. image: {
  5270. source: "./media/characters/gin/sole.svg"
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(13 + 2 / 12, "feet")
  5278. },
  5279. {
  5280. name: "Macro",
  5281. height: math.unit(1500, "feet")
  5282. },
  5283. {
  5284. name: "Megamacro",
  5285. height: math.unit(200, "miles"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Gigamacro",
  5290. height: math.unit(500, "megameters")
  5291. },
  5292. {
  5293. name: "Teramacro",
  5294. height: math.unit(15, "lightyears")
  5295. }
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(6 + 1 / 6, "feet"),
  5303. weight: math.unit(178, "lbs"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/guy/front.svg"
  5307. }
  5308. }
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(6 + 1 / 6, "feet"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Large",
  5318. height: math.unit(25 + 7 / 12, "feet")
  5319. },
  5320. {
  5321. name: "Macro",
  5322. height: math.unit(60 + 9 / 12, "feet")
  5323. },
  5324. {
  5325. name: "Macro+",
  5326. height: math.unit(246, "feet")
  5327. },
  5328. {
  5329. name: "Macro++",
  5330. height: math.unit(878, "feet")
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(9, "feet"),
  5339. weight: math.unit(800, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/tiberius/front.svg",
  5343. extra: 2295 / 2071
  5344. }
  5345. },
  5346. back: {
  5347. height: math.unit(9, "feet"),
  5348. weight: math.unit(800, "lbs"),
  5349. name: "Back",
  5350. image: {
  5351. source: "./media/characters/tiberius/back.svg",
  5352. extra: 2373 / 2160
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(9, "feet"),
  5360. default: true
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5366. {
  5367. front: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(600, "lbs"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/surgo/front.svg",
  5373. extra: 3591 / 2227
  5374. }
  5375. },
  5376. back: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(600, "lbs"),
  5379. name: "Back",
  5380. image: {
  5381. source: "./media/characters/surgo/back.svg",
  5382. extra: 3557 / 2228
  5383. }
  5384. },
  5385. laying: {
  5386. height: math.unit(6 * 0.85, "feet"),
  5387. weight: math.unit(600, "lbs"),
  5388. name: "Laying",
  5389. image: {
  5390. source: "./media/characters/surgo/laying.svg"
  5391. }
  5392. },
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(6, "feet"),
  5398. default: true
  5399. }
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5404. {
  5405. side: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(150, "lbs"),
  5408. name: "Side",
  5409. image: {
  5410. source: "./media/characters/cibus/side.svg",
  5411. extra: 800 / 400
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(6, "feet"),
  5419. default: true
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(240, "lbs"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/nibbles/front.svg"
  5432. }
  5433. },
  5434. side: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(240, "lbs"),
  5437. name: "Side",
  5438. image: {
  5439. source: "./media/characters/nibbles/side.svg"
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(9, "feet"),
  5447. default: true
  5448. }
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5453. {
  5454. side: {
  5455. height: math.unit(5 + 1 / 6, "feet"),
  5456. weight: math.unit(130, "lbs"),
  5457. name: "Side",
  5458. image: {
  5459. source: "./media/characters/rikky/side.svg",
  5460. extra: 851/801
  5461. }
  5462. },
  5463. },
  5464. [
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(5 + 1 / 6, "feet")
  5468. },
  5469. {
  5470. name: "Macro",
  5471. height: math.unit(152, "feet"),
  5472. default: true
  5473. },
  5474. {
  5475. name: "Megamacro",
  5476. height: math.unit(7, "miles")
  5477. }
  5478. ]
  5479. ))
  5480. characterMakers.push(() => makeCharacter(
  5481. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5482. {
  5483. side: {
  5484. height: math.unit(370, "cm"),
  5485. weight: math.unit(350, "lbs"),
  5486. name: "Side",
  5487. image: {
  5488. source: "./media/characters/malfressa/side.svg"
  5489. }
  5490. },
  5491. walking: {
  5492. height: math.unit(370, "cm"),
  5493. weight: math.unit(350, "lbs"),
  5494. name: "Walking",
  5495. image: {
  5496. source: "./media/characters/malfressa/walking.svg"
  5497. }
  5498. },
  5499. feral: {
  5500. height: math.unit(2500, "cm"),
  5501. weight: math.unit(100000, "lbs"),
  5502. name: "Feral",
  5503. image: {
  5504. source: "./media/characters/malfressa/feral.svg",
  5505. extra: 2108 / 837,
  5506. bottom: 0.02
  5507. }
  5508. },
  5509. },
  5510. [
  5511. {
  5512. name: "Normal",
  5513. height: math.unit(370, "cm")
  5514. },
  5515. {
  5516. name: "Macro",
  5517. height: math.unit(300, "meters"),
  5518. default: true
  5519. }
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5524. {
  5525. front: {
  5526. height: math.unit(6, "feet"),
  5527. weight: math.unit(60, "kg"),
  5528. name: "Front",
  5529. image: {
  5530. source: "./media/characters/jaro/front.svg"
  5531. }
  5532. },
  5533. back: {
  5534. height: math.unit(6, "feet"),
  5535. weight: math.unit(60, "kg"),
  5536. name: "Back",
  5537. image: {
  5538. source: "./media/characters/jaro/back.svg"
  5539. }
  5540. },
  5541. },
  5542. [
  5543. {
  5544. name: "Micro",
  5545. height: math.unit(7, "inches")
  5546. },
  5547. {
  5548. name: "Normal",
  5549. height: math.unit(5.5, "feet"),
  5550. default: true
  5551. },
  5552. {
  5553. name: "Minimacro",
  5554. height: math.unit(20, "feet")
  5555. },
  5556. {
  5557. name: "Macro",
  5558. height: math.unit(200, "meters")
  5559. }
  5560. ]
  5561. ))
  5562. characterMakers.push(() => makeCharacter(
  5563. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5564. {
  5565. front: {
  5566. height: math.unit(6, "feet"),
  5567. weight: math.unit(195, "lb"),
  5568. name: "Front",
  5569. image: {
  5570. source: "./media/characters/rogue/front.svg"
  5571. }
  5572. },
  5573. },
  5574. [
  5575. {
  5576. name: "Macro",
  5577. height: math.unit(90, "feet"),
  5578. default: true
  5579. },
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5584. {
  5585. front: {
  5586. height: math.unit(5 + 8 / 12, "feet"),
  5587. weight: math.unit(140, "lb"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/piper/front.svg",
  5591. extra: 3928 / 3681
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Micro",
  5598. height: math.unit(2, "inches")
  5599. },
  5600. {
  5601. name: "Normal",
  5602. height: math.unit(5 + 8 / 12, "feet")
  5603. },
  5604. {
  5605. name: "Macro",
  5606. height: math.unit(250, "feet"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Megamacro",
  5611. height: math.unit(7, "miles")
  5612. },
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5617. {
  5618. front: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(220, "lb"),
  5621. name: "Front",
  5622. image: {
  5623. source: "./media/characters/gemini/front.svg"
  5624. }
  5625. },
  5626. back: {
  5627. height: math.unit(6, "feet"),
  5628. weight: math.unit(220, "lb"),
  5629. name: "Back",
  5630. image: {
  5631. source: "./media/characters/gemini/back.svg"
  5632. }
  5633. },
  5634. kneeling: {
  5635. height: math.unit(6 / 1.5, "feet"),
  5636. weight: math.unit(220, "lb"),
  5637. name: "Kneeling",
  5638. image: {
  5639. source: "./media/characters/gemini/kneeling.svg",
  5640. bottom: 0.02
  5641. }
  5642. },
  5643. },
  5644. [
  5645. {
  5646. name: "Macro",
  5647. height: math.unit(300, "meters"),
  5648. default: true
  5649. },
  5650. {
  5651. name: "Megamacro",
  5652. height: math.unit(6900, "meters")
  5653. },
  5654. ]
  5655. ))
  5656. characterMakers.push(() => makeCharacter(
  5657. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5658. {
  5659. anthro: {
  5660. height: math.unit(2.35, "meters"),
  5661. weight: math.unit(73, "kg"),
  5662. name: "Anthro",
  5663. image: {
  5664. source: "./media/characters/alicia/anthro.svg",
  5665. extra: 2571 / 2385,
  5666. bottom: 75 / 2648
  5667. }
  5668. },
  5669. paw: {
  5670. height: math.unit(1.32, "feet"),
  5671. name: "Paw",
  5672. image: {
  5673. source: "./media/characters/alicia/paw.svg"
  5674. }
  5675. },
  5676. feral: {
  5677. height: math.unit(1.69, "meters"),
  5678. weight: math.unit(73, "kg"),
  5679. name: "Feral",
  5680. image: {
  5681. source: "./media/characters/alicia/feral.svg",
  5682. extra: 2123 / 1715,
  5683. bottom: 222 / 2349
  5684. }
  5685. },
  5686. },
  5687. [
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(2.35, "meters")
  5691. },
  5692. {
  5693. name: "Macro",
  5694. height: math.unit(60, "meters"),
  5695. default: true
  5696. },
  5697. {
  5698. name: "Megamacro",
  5699. height: math.unit(10000, "kilometers")
  5700. },
  5701. ]
  5702. ))
  5703. characterMakers.push(() => makeCharacter(
  5704. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5705. {
  5706. front: {
  5707. height: math.unit(7, "feet"),
  5708. weight: math.unit(250, "lbs"),
  5709. name: "Front",
  5710. image: {
  5711. source: "./media/characters/archy/front.svg"
  5712. }
  5713. }
  5714. },
  5715. [
  5716. {
  5717. name: "Micro",
  5718. height: math.unit(1, "inch")
  5719. },
  5720. {
  5721. name: "Shorty",
  5722. height: math.unit(5, "feet")
  5723. },
  5724. {
  5725. name: "Normal",
  5726. height: math.unit(7, "feet")
  5727. },
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(600, "meters"),
  5731. default: true
  5732. },
  5733. {
  5734. name: "Megamacro",
  5735. height: math.unit(1, "mile")
  5736. },
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(1.65, "meters"),
  5744. weight: math.unit(74, "kg"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/berri/front.svg",
  5748. extra: 857 / 837,
  5749. bottom: 18 / 877
  5750. }
  5751. },
  5752. bum: {
  5753. height: math.unit(1.46, "feet"),
  5754. name: "Bum",
  5755. image: {
  5756. source: "./media/characters/berri/bum.svg"
  5757. }
  5758. },
  5759. mouth: {
  5760. height: math.unit(0.44, "feet"),
  5761. name: "Mouth",
  5762. image: {
  5763. source: "./media/characters/berri/mouth.svg"
  5764. }
  5765. },
  5766. paw: {
  5767. height: math.unit(0.826, "feet"),
  5768. name: "Paw",
  5769. image: {
  5770. source: "./media/characters/berri/paw.svg"
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(1.65, "meters")
  5778. },
  5779. {
  5780. name: "Macro",
  5781. height: math.unit(60, "m"),
  5782. default: true
  5783. },
  5784. {
  5785. name: "Megamacro",
  5786. height: math.unit(9.213, "km")
  5787. },
  5788. {
  5789. name: "Planet Eater",
  5790. height: math.unit(489, "megameters")
  5791. },
  5792. {
  5793. name: "Teramacro",
  5794. height: math.unit(2471635000000, "meters")
  5795. },
  5796. {
  5797. name: "Examacro",
  5798. height: math.unit(8.0624e+26, "meters")
  5799. }
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(1.72, "meters"),
  5807. weight: math.unit(68, "kg"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/lexi/front.svg"
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Very Smol",
  5817. height: math.unit(10, "mm")
  5818. },
  5819. {
  5820. name: "Micro",
  5821. height: math.unit(6.8, "cm"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(1.72, "m")
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(1.69, "meters"),
  5835. weight: math.unit(68, "kg"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/martin/front.svg",
  5839. extra: 596 / 581
  5840. }
  5841. }
  5842. },
  5843. [
  5844. {
  5845. name: "Micro",
  5846. height: math.unit(6.85, "cm"),
  5847. default: true
  5848. },
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(1.69, "m")
  5852. }
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5857. {
  5858. front: {
  5859. height: math.unit(1.69, "meters"),
  5860. weight: math.unit(68, "kg"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/juno/front.svg"
  5864. }
  5865. }
  5866. },
  5867. [
  5868. {
  5869. name: "Micro",
  5870. height: math.unit(7, "cm")
  5871. },
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(1.89, "m")
  5875. },
  5876. {
  5877. name: "Macro",
  5878. height: math.unit(353, "meters"),
  5879. default: true
  5880. }
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5885. {
  5886. front: {
  5887. height: math.unit(1.93, "meters"),
  5888. weight: math.unit(83, "kg"),
  5889. name: "Front",
  5890. image: {
  5891. source: "./media/characters/samantha/front.svg"
  5892. }
  5893. },
  5894. frontClothed: {
  5895. height: math.unit(1.93, "meters"),
  5896. weight: math.unit(83, "kg"),
  5897. name: "Front (Clothed)",
  5898. image: {
  5899. source: "./media/characters/samantha/front-clothed.svg"
  5900. }
  5901. },
  5902. back: {
  5903. height: math.unit(1.93, "meters"),
  5904. weight: math.unit(83, "kg"),
  5905. name: "Back",
  5906. image: {
  5907. source: "./media/characters/samantha/back.svg"
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(1.93, "m")
  5915. },
  5916. {
  5917. name: "Macro",
  5918. height: math.unit(74, "meters"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Macro+",
  5923. height: math.unit(223, "meters"),
  5924. },
  5925. {
  5926. name: "Megamacro",
  5927. height: math.unit(8381, "meters"),
  5928. },
  5929. {
  5930. name: "Megamacro+",
  5931. height: math.unit(12000, "kilometers")
  5932. },
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(1.92, "meters"),
  5940. weight: math.unit(80, "kg"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/dr-clay/front.svg"
  5944. }
  5945. },
  5946. frontClothed: {
  5947. height: math.unit(1.92, "meters"),
  5948. weight: math.unit(80, "kg"),
  5949. name: "Front (Clothed)",
  5950. image: {
  5951. source: "./media/characters/dr-clay/front-clothed.svg"
  5952. }
  5953. }
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(1.92, "m")
  5959. },
  5960. {
  5961. name: "Macro",
  5962. height: math.unit(214, "meters"),
  5963. default: true
  5964. },
  5965. {
  5966. name: "Macro+",
  5967. height: math.unit(12.237, "meters"),
  5968. },
  5969. {
  5970. name: "Megamacro",
  5971. height: math.unit(557, "megameters"),
  5972. },
  5973. {
  5974. name: "Unimaginable",
  5975. height: math.unit(120e9, "lightyears")
  5976. },
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5981. {
  5982. front: {
  5983. height: math.unit(2, "meters"),
  5984. weight: math.unit(80, "kg"),
  5985. name: "Front",
  5986. image: {
  5987. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5988. }
  5989. }
  5990. },
  5991. [
  5992. {
  5993. name: "Teramacro",
  5994. height: math.unit(500000, "lightyears"),
  5995. default: true
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(2, "meters"),
  6004. weight: math.unit(150, "kg"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/vemus/front.svg",
  6008. extra: 2384 / 2084,
  6009. bottom: 0.0123
  6010. }
  6011. }
  6012. },
  6013. [
  6014. {
  6015. name: "Normal",
  6016. height: math.unit(3.75, "meters"),
  6017. default: true
  6018. },
  6019. {
  6020. name: "Big",
  6021. height: math.unit(8, "meters")
  6022. },
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(100, "meters")
  6026. },
  6027. {
  6028. name: "Macro+",
  6029. height: math.unit(1500, "meters")
  6030. },
  6031. {
  6032. name: "Stellar",
  6033. height: math.unit(14e8, "meters")
  6034. },
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6039. {
  6040. front: {
  6041. height: math.unit(2, "meters"),
  6042. weight: math.unit(70, "kg"),
  6043. name: "Front",
  6044. image: {
  6045. source: "./media/characters/beherit/front.svg",
  6046. extra: 1408 / 1242
  6047. }
  6048. }
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(6, "feet")
  6054. },
  6055. {
  6056. name: "Lorg",
  6057. height: math.unit(25, "feet"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Lorger",
  6062. height: math.unit(75, "feet")
  6063. },
  6064. {
  6065. name: "Macro",
  6066. height: math.unit(200, "meters")
  6067. },
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6072. {
  6073. front: {
  6074. height: math.unit(2, "meters"),
  6075. weight: math.unit(150, "kg"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/everett/front.svg",
  6079. extra: 2038 / 1737,
  6080. bottom: 0.03
  6081. }
  6082. },
  6083. paw: {
  6084. height: math.unit(2 / 3.6, "meters"),
  6085. name: "Paw",
  6086. image: {
  6087. source: "./media/characters/everett/paw.svg"
  6088. }
  6089. },
  6090. },
  6091. [
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(15, "feet"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "Lorg",
  6099. height: math.unit(70, "feet"),
  6100. default: true
  6101. },
  6102. {
  6103. name: "Lorger",
  6104. height: math.unit(250, "feet")
  6105. },
  6106. {
  6107. name: "Macro",
  6108. height: math.unit(500, "meters")
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6114. {
  6115. front: {
  6116. height: math.unit(2, "meters"),
  6117. weight: math.unit(86, "kg"),
  6118. name: "Front",
  6119. image: {
  6120. source: "./media/characters/rose-lion/front.svg"
  6121. }
  6122. },
  6123. bent: {
  6124. height: math.unit(2 / 1.4288, "meters"),
  6125. weight: math.unit(86, "kg"),
  6126. name: "Bent",
  6127. image: {
  6128. source: "./media/characters/rose-lion/bent.svg"
  6129. }
  6130. }
  6131. },
  6132. [
  6133. {
  6134. name: "Mini-Micro",
  6135. height: math.unit(1, "cm")
  6136. },
  6137. {
  6138. name: "Micro",
  6139. height: math.unit(3.5, "inches"),
  6140. default: true
  6141. },
  6142. {
  6143. name: "Normal",
  6144. height: math.unit(6 + 1 / 6, "feet")
  6145. },
  6146. {
  6147. name: "Mini-Macro",
  6148. height: math.unit(9 + 10 / 12, "feet")
  6149. },
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6154. {
  6155. front: {
  6156. height: math.unit(2, "meters"),
  6157. weight: math.unit(350, "lbs"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/regal/front.svg"
  6161. }
  6162. },
  6163. back: {
  6164. height: math.unit(2, "meters"),
  6165. weight: math.unit(350, "lbs"),
  6166. name: "Back",
  6167. image: {
  6168. source: "./media/characters/regal/back.svg"
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Macro",
  6175. height: math.unit(350, "feet"),
  6176. default: true
  6177. }
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(4 + 11 / 12, "feet"),
  6185. weight: math.unit(100, "lbs"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/opal/front.svg"
  6189. }
  6190. },
  6191. frontAlt: {
  6192. height: math.unit(4 + 11 / 12, "feet"),
  6193. weight: math.unit(100, "lbs"),
  6194. name: "Front (Alt)",
  6195. image: {
  6196. source: "./media/characters/opal/front-alt.svg"
  6197. }
  6198. },
  6199. },
  6200. [
  6201. {
  6202. name: "Small",
  6203. height: math.unit(4 + 11 / 12, "feet")
  6204. },
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(20, "feet"),
  6208. default: true
  6209. },
  6210. {
  6211. name: "Macro",
  6212. height: math.unit(120, "feet")
  6213. },
  6214. {
  6215. name: "Megamacro",
  6216. height: math.unit(80, "miles")
  6217. },
  6218. {
  6219. name: "True Size",
  6220. height: math.unit(100000, "lightyears")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(200, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/vector-wuff/front.svg"
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(2.8, "meters")
  6240. },
  6241. {
  6242. name: "Macro",
  6243. height: math.unit(450, "meters"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Megamacro",
  6248. height: math.unit(15, "kilometers")
  6249. }
  6250. ]
  6251. ))
  6252. characterMakers.push(() => makeCharacter(
  6253. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6254. {
  6255. front: {
  6256. height: math.unit(6, "feet"),
  6257. weight: math.unit(256, "lbs"),
  6258. name: "Front",
  6259. image: {
  6260. source: "./media/characters/dannik/front.svg"
  6261. }
  6262. }
  6263. },
  6264. [
  6265. {
  6266. name: "Macro",
  6267. height: math.unit(69.57, "meters"),
  6268. default: true
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(120, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/azura-saharah/front.svg"
  6281. }
  6282. },
  6283. back: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(120, "lbs"),
  6286. name: "Back",
  6287. image: {
  6288. source: "./media/characters/azura-saharah/back.svg"
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Macro",
  6295. height: math.unit(100, "feet"),
  6296. default: true
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6302. {
  6303. side: {
  6304. height: math.unit(5 + 4 / 12, "feet"),
  6305. weight: math.unit(163, "lbs"),
  6306. name: "Side",
  6307. image: {
  6308. source: "./media/characters/kennedy/side.svg"
  6309. }
  6310. }
  6311. },
  6312. [
  6313. {
  6314. name: "Standard Doggo",
  6315. height: math.unit(5 + 4 / 12, "feet")
  6316. },
  6317. {
  6318. name: "Big Doggo",
  6319. height: math.unit(25 + 3 / 12, "feet"),
  6320. default: true
  6321. },
  6322. ]
  6323. ))
  6324. characterMakers.push(() => makeCharacter(
  6325. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6326. {
  6327. front: {
  6328. height: math.unit(6, "feet"),
  6329. weight: math.unit(90, "lbs"),
  6330. name: "Front",
  6331. image: {
  6332. source: "./media/characters/odi-lunar/front.svg"
  6333. }
  6334. }
  6335. },
  6336. [
  6337. {
  6338. name: "Micro",
  6339. height: math.unit(3, "inches"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(5.5, "feet")
  6345. }
  6346. ]
  6347. ))
  6348. characterMakers.push(() => makeCharacter(
  6349. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6350. {
  6351. back: {
  6352. height: math.unit(6, "feet"),
  6353. weight: math.unit(220, "lbs"),
  6354. name: "Back",
  6355. image: {
  6356. source: "./media/characters/mandake/back.svg"
  6357. }
  6358. }
  6359. },
  6360. [
  6361. {
  6362. name: "Normal",
  6363. height: math.unit(7, "feet"),
  6364. default: true
  6365. },
  6366. {
  6367. name: "Macro",
  6368. height: math.unit(78, "feet")
  6369. },
  6370. {
  6371. name: "Macro+",
  6372. height: math.unit(300, "meters")
  6373. },
  6374. {
  6375. name: "Macro++",
  6376. height: math.unit(2400, "feet")
  6377. },
  6378. {
  6379. name: "Megamacro",
  6380. height: math.unit(5167, "meters")
  6381. },
  6382. {
  6383. name: "Gigamacro",
  6384. height: math.unit(41769, "miles")
  6385. },
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(6, "feet"),
  6393. weight: math.unit(120, "lbs"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/yozey/front.svg"
  6397. }
  6398. },
  6399. frontAlt: {
  6400. height: math.unit(6, "feet"),
  6401. weight: math.unit(120, "lbs"),
  6402. name: "Front (Alt)",
  6403. image: {
  6404. source: "./media/characters/yozey/front-alt.svg"
  6405. }
  6406. },
  6407. side: {
  6408. height: math.unit(6, "feet"),
  6409. weight: math.unit(120, "lbs"),
  6410. name: "Side",
  6411. image: {
  6412. source: "./media/characters/yozey/side.svg"
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Micro",
  6419. height: math.unit(3, "inches"),
  6420. default: true
  6421. },
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(6, "feet")
  6425. }
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6430. {
  6431. front: {
  6432. height: math.unit(6, "feet"),
  6433. weight: math.unit(103, "lbs"),
  6434. name: "Front",
  6435. image: {
  6436. source: "./media/characters/valeska-voss/front.svg"
  6437. }
  6438. }
  6439. },
  6440. [
  6441. {
  6442. name: "Mini-Sized Sub",
  6443. height: math.unit(3.1, "inches")
  6444. },
  6445. {
  6446. name: "Mid-Sized Sub",
  6447. height: math.unit(6.2, "inches")
  6448. },
  6449. {
  6450. name: "Full-Sized Sub",
  6451. height: math.unit(9.3, "inches")
  6452. },
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(5 + 2 / 12, "foot"),
  6456. default: true
  6457. },
  6458. ]
  6459. ))
  6460. characterMakers.push(() => makeCharacter(
  6461. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6462. {
  6463. front: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(160, "lbs"),
  6466. name: "Front",
  6467. image: {
  6468. source: "./media/characters/gene-zeta/front.svg",
  6469. bottom: 0.03,
  6470. extra: 1
  6471. }
  6472. }
  6473. },
  6474. [
  6475. {
  6476. name: "Normal",
  6477. height: math.unit(6.25, "foot"),
  6478. default: true
  6479. },
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(350, "lbs"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/razinox/front.svg",
  6491. extra: 1686 / 1548,
  6492. bottom: 28.2 / 1868
  6493. }
  6494. },
  6495. back: {
  6496. height: math.unit(6, "feet"),
  6497. weight: math.unit(350, "lbs"),
  6498. name: "Back",
  6499. image: {
  6500. source: "./media/characters/razinox/back.svg",
  6501. extra: 1660 / 1590,
  6502. bottom: 15 / 1665
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Normal",
  6509. height: math.unit(10 + 8 / 12, "foot")
  6510. },
  6511. {
  6512. name: "Minimacro",
  6513. height: math.unit(15, "foot")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(60, "foot"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Megamacro",
  6522. height: math.unit(5, "miles")
  6523. },
  6524. {
  6525. name: "Gigamacro",
  6526. height: math.unit(6000, "miles")
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(150, "lbs"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/cobalt/front.svg"
  6539. }
  6540. }
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(8 + 1 / 12, "foot")
  6546. },
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(111, "foot"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Supracosmic",
  6554. height: math.unit(1e42, "feet")
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(140, "lbs"),
  6564. name: "Front",
  6565. image: {
  6566. source: "./media/characters/amanda/front.svg"
  6567. }
  6568. }
  6569. },
  6570. [
  6571. {
  6572. name: "Micro",
  6573. height: math.unit(5, "inches"),
  6574. default: true
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(5.59, "feet"),
  6583. weight: math.unit(250, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/teal/front.svg"
  6587. }
  6588. },
  6589. frontAlt: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(250, "lbs"),
  6592. name: "Front (Alt)",
  6593. image: {
  6594. source: "./media/characters/teal/front-alt.svg",
  6595. bottom: 0.04,
  6596. extra: 1
  6597. }
  6598. },
  6599. },
  6600. [
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(12, "feet"),
  6604. default: true
  6605. },
  6606. {
  6607. name: "Macro",
  6608. height: math.unit(300, "feet")
  6609. },
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6614. {
  6615. frontCat: {
  6616. height: math.unit(6, "feet"),
  6617. weight: math.unit(180, "lbs"),
  6618. name: "Front (Cat)",
  6619. image: {
  6620. source: "./media/characters/ravin-amulet/front-cat.svg"
  6621. }
  6622. },
  6623. frontCatAlt: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(180, "lbs"),
  6626. name: "Front (Alt, Cat)",
  6627. image: {
  6628. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6629. }
  6630. },
  6631. frontWerewolf: {
  6632. height: math.unit(6 * 1.2, "feet"),
  6633. weight: math.unit(225, "lbs"),
  6634. name: "Front (Werewolf)",
  6635. image: {
  6636. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6637. }
  6638. },
  6639. backWerewolf: {
  6640. height: math.unit(6 * 1.2, "feet"),
  6641. weight: math.unit(225, "lbs"),
  6642. name: "Back (Werewolf)",
  6643. image: {
  6644. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6645. }
  6646. },
  6647. },
  6648. [
  6649. {
  6650. name: "Nano",
  6651. height: math.unit(1, "micrometer")
  6652. },
  6653. {
  6654. name: "Micro",
  6655. height: math.unit(1, "inch")
  6656. },
  6657. {
  6658. name: "Normal",
  6659. height: math.unit(6, "feet"),
  6660. default: true
  6661. },
  6662. {
  6663. name: "Macro",
  6664. height: math.unit(60, "feet")
  6665. }
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6670. {
  6671. front: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(165, "lbs"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/fluoresce/front.svg"
  6677. }
  6678. }
  6679. },
  6680. [
  6681. {
  6682. name: "Micro",
  6683. height: math.unit(6, "cm")
  6684. },
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(5 + 7 / 12, "feet"),
  6688. default: true
  6689. },
  6690. {
  6691. name: "Macro",
  6692. height: math.unit(56, "feet")
  6693. },
  6694. {
  6695. name: "Megamacro",
  6696. height: math.unit(1.9, "miles")
  6697. },
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(9 + 6 / 12, "feet"),
  6705. weight: math.unit(523, "lbs"),
  6706. name: "Side",
  6707. image: {
  6708. source: "./media/characters/aurora/side.svg"
  6709. }
  6710. }
  6711. },
  6712. [
  6713. {
  6714. name: "Normal",
  6715. height: math.unit(9 + 6 / 12, "feet")
  6716. },
  6717. {
  6718. name: "Macro",
  6719. height: math.unit(96, "feet"),
  6720. default: true
  6721. },
  6722. {
  6723. name: "Macro+",
  6724. height: math.unit(243, "feet")
  6725. },
  6726. ]
  6727. ))
  6728. characterMakers.push(() => makeCharacter(
  6729. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6730. {
  6731. front: {
  6732. height: math.unit(194, "cm"),
  6733. weight: math.unit(90, "kg"),
  6734. name: "Front",
  6735. image: {
  6736. source: "./media/characters/ranek/front.svg"
  6737. }
  6738. },
  6739. side: {
  6740. height: math.unit(194, "cm"),
  6741. weight: math.unit(90, "kg"),
  6742. name: "Side",
  6743. image: {
  6744. source: "./media/characters/ranek/side.svg"
  6745. }
  6746. },
  6747. back: {
  6748. height: math.unit(194, "cm"),
  6749. weight: math.unit(90, "kg"),
  6750. name: "Back",
  6751. image: {
  6752. source: "./media/characters/ranek/back.svg"
  6753. }
  6754. },
  6755. feral: {
  6756. height: math.unit(30, "cm"),
  6757. weight: math.unit(1.6, "lbs"),
  6758. name: "Feral",
  6759. image: {
  6760. source: "./media/characters/ranek/feral.svg"
  6761. }
  6762. },
  6763. },
  6764. [
  6765. {
  6766. name: "Normal",
  6767. height: math.unit(194, "cm"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Macro",
  6772. height: math.unit(100, "meters")
  6773. },
  6774. ]
  6775. ))
  6776. characterMakers.push(() => makeCharacter(
  6777. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6778. {
  6779. front: {
  6780. height: math.unit(5 + 6 / 12, "feet"),
  6781. weight: math.unit(153, "lbs"),
  6782. name: "Front",
  6783. image: {
  6784. source: "./media/characters/andrew-cooper/front.svg"
  6785. }
  6786. },
  6787. },
  6788. [
  6789. {
  6790. name: "Nano",
  6791. height: math.unit(1, "mm")
  6792. },
  6793. {
  6794. name: "Micro",
  6795. height: math.unit(2, "inches")
  6796. },
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(5 + 6 / 12, "feet"),
  6800. default: true
  6801. }
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(6, "feet"),
  6809. weight: math.unit(180, "lbs"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/akane-sato/front.svg",
  6813. extra: 1219 / 1140
  6814. }
  6815. },
  6816. back: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(180, "lbs"),
  6819. name: "Back",
  6820. image: {
  6821. source: "./media/characters/akane-sato/back.svg",
  6822. extra: 1219 / 1170
  6823. }
  6824. },
  6825. },
  6826. [
  6827. {
  6828. name: "Normal",
  6829. height: math.unit(2.5, "meters")
  6830. },
  6831. {
  6832. name: "Macro",
  6833. height: math.unit(250, "meters"),
  6834. default: true
  6835. },
  6836. {
  6837. name: "Megamacro",
  6838. height: math.unit(25, "km")
  6839. },
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6844. {
  6845. front: {
  6846. height: math.unit(6, "feet"),
  6847. weight: math.unit(65, "kg"),
  6848. name: "Front",
  6849. image: {
  6850. source: "./media/characters/rook/front.svg",
  6851. extra: 960 / 950
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(8.8, "feet")
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(88, "feet"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Megamacro",
  6867. height: math.unit(8, "miles")
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(12 + 2 / 12, "feet"),
  6876. weight: math.unit(808, "lbs"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/prodigy/front.svg"
  6880. }
  6881. }
  6882. },
  6883. [
  6884. {
  6885. name: "Normal",
  6886. height: math.unit(12 + 2 / 12, "feet"),
  6887. default: true
  6888. },
  6889. {
  6890. name: "Macro",
  6891. height: math.unit(143, "feet")
  6892. },
  6893. {
  6894. name: "Macro+",
  6895. height: math.unit(400, "feet")
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(225, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/daniel/front.svg"
  6908. }
  6909. },
  6910. leaning: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(225, "lbs"),
  6913. name: "Leaning",
  6914. image: {
  6915. source: "./media/characters/daniel/leaning.svg"
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Macro",
  6922. height: math.unit(1000, "feet"),
  6923. default: true
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(88, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/chiros/front.svg",
  6936. extra: 306 / 226
  6937. }
  6938. },
  6939. side: {
  6940. height: math.unit(6, "feet"),
  6941. weight: math.unit(88, "lbs"),
  6942. name: "Side",
  6943. image: {
  6944. source: "./media/characters/chiros/side.svg",
  6945. extra: 306 / 226
  6946. }
  6947. },
  6948. },
  6949. [
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(6, "cm"),
  6953. default: true
  6954. },
  6955. ]
  6956. ))
  6957. characterMakers.push(() => makeCharacter(
  6958. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6959. {
  6960. front: {
  6961. height: math.unit(6, "feet"),
  6962. weight: math.unit(100, "lbs"),
  6963. name: "Front",
  6964. image: {
  6965. source: "./media/characters/selka/front.svg",
  6966. extra: 947 / 887
  6967. }
  6968. }
  6969. },
  6970. [
  6971. {
  6972. name: "Normal",
  6973. height: math.unit(5, "cm"),
  6974. default: true
  6975. },
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6980. {
  6981. front: {
  6982. height: math.unit(8 + 3 / 12, "feet"),
  6983. weight: math.unit(424, "lbs"),
  6984. name: "Front",
  6985. image: {
  6986. source: "./media/characters/verin/front.svg",
  6987. extra: 1845 / 1550
  6988. }
  6989. },
  6990. frontArmored: {
  6991. height: math.unit(8 + 3 / 12, "feet"),
  6992. weight: math.unit(424, "lbs"),
  6993. name: "Front (Armored)",
  6994. image: {
  6995. source: "./media/characters/verin/front-armor.svg",
  6996. extra: 1845 / 1550,
  6997. bottom: 0.01
  6998. }
  6999. },
  7000. back: {
  7001. height: math.unit(8 + 3 / 12, "feet"),
  7002. weight: math.unit(424, "lbs"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/verin/back.svg",
  7006. bottom: 0.1,
  7007. extra: 1
  7008. }
  7009. },
  7010. foot: {
  7011. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7012. name: "Foot",
  7013. image: {
  7014. source: "./media/characters/verin/foot.svg"
  7015. }
  7016. },
  7017. },
  7018. [
  7019. {
  7020. name: "Normal",
  7021. height: math.unit(8 + 3 / 12, "feet")
  7022. },
  7023. {
  7024. name: "Minimacro",
  7025. height: math.unit(21, "feet"),
  7026. default: true
  7027. },
  7028. {
  7029. name: "Macro",
  7030. height: math.unit(626, "feet")
  7031. },
  7032. ]
  7033. ))
  7034. characterMakers.push(() => makeCharacter(
  7035. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7036. {
  7037. front: {
  7038. height: math.unit(2.718, "meters"),
  7039. weight: math.unit(150, "lbs"),
  7040. name: "Front",
  7041. image: {
  7042. source: "./media/characters/sovrim-terraquian/front.svg"
  7043. }
  7044. },
  7045. back: {
  7046. height: math.unit(2.718, "meters"),
  7047. weight: math.unit(150, "lbs"),
  7048. name: "Back",
  7049. image: {
  7050. source: "./media/characters/sovrim-terraquian/back.svg"
  7051. }
  7052. }
  7053. },
  7054. [
  7055. {
  7056. name: "Micro",
  7057. height: math.unit(2, "inches")
  7058. },
  7059. {
  7060. name: "Small",
  7061. height: math.unit(1, "meter")
  7062. },
  7063. {
  7064. name: "Normal",
  7065. height: math.unit(Math.E, "meters"),
  7066. default: true
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(20, "meters")
  7071. },
  7072. {
  7073. name: "Macro+",
  7074. height: math.unit(400, "meters")
  7075. },
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7080. {
  7081. front: {
  7082. height: math.unit(7, "feet"),
  7083. weight: math.unit(489, "lbs"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/reece-silvermane/front.svg",
  7087. bottom: 0.02,
  7088. extra: 1
  7089. }
  7090. },
  7091. },
  7092. [
  7093. {
  7094. name: "Macro",
  7095. height: math.unit(1.5, "miles"),
  7096. default: true
  7097. },
  7098. ]
  7099. ))
  7100. characterMakers.push(() => makeCharacter(
  7101. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7102. {
  7103. front: {
  7104. height: math.unit(6, "feet"),
  7105. weight: math.unit(78, "kg"),
  7106. name: "Front",
  7107. image: {
  7108. source: "./media/characters/kane/front.svg",
  7109. extra: 978 / 899
  7110. }
  7111. },
  7112. },
  7113. [
  7114. {
  7115. name: "Normal",
  7116. height: math.unit(2.1, "m"),
  7117. },
  7118. {
  7119. name: "Macro",
  7120. height: math.unit(1, "km"),
  7121. default: true
  7122. },
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(200, "kg"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/tegon/front.svg",
  7134. bottom: 0.01,
  7135. extra: 1
  7136. }
  7137. },
  7138. },
  7139. [
  7140. {
  7141. name: "Micro",
  7142. height: math.unit(1, "inch")
  7143. },
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(6 + 3 / 12, "feet"),
  7147. default: true
  7148. },
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(300, "feet")
  7152. },
  7153. {
  7154. name: "Megamacro",
  7155. height: math.unit(69, "miles")
  7156. },
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7161. {
  7162. side: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(2304, "lbs"),
  7165. name: "Side",
  7166. image: {
  7167. source: "./media/characters/arcturax/side.svg",
  7168. extra: 790 / 376,
  7169. bottom: 0.01
  7170. }
  7171. },
  7172. },
  7173. [
  7174. {
  7175. name: "Micro",
  7176. height: math.unit(2, "inch")
  7177. },
  7178. {
  7179. name: "Normal",
  7180. height: math.unit(6, "feet")
  7181. },
  7182. {
  7183. name: "Macro",
  7184. height: math.unit(39, "feet"),
  7185. default: true
  7186. },
  7187. {
  7188. name: "Megamacro",
  7189. height: math.unit(7, "miles")
  7190. },
  7191. ]
  7192. ))
  7193. characterMakers.push(() => makeCharacter(
  7194. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7195. {
  7196. front: {
  7197. height: math.unit(6, "feet"),
  7198. weight: math.unit(50, "lbs"),
  7199. name: "Front",
  7200. image: {
  7201. source: "./media/characters/sentri/front.svg",
  7202. extra: 1750 / 1570,
  7203. bottom: 0.025
  7204. }
  7205. },
  7206. frontAlt: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(50, "lbs"),
  7209. name: "Front (Alt)",
  7210. image: {
  7211. source: "./media/characters/sentri/front-alt.svg",
  7212. extra: 1750 / 1570,
  7213. bottom: 0.025
  7214. }
  7215. },
  7216. },
  7217. [
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(15, "feet"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(2500, "feet")
  7226. }
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(5 + 8 / 12, "feet"),
  7234. weight: math.unit(130, "lbs"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/corvin/front.svg",
  7238. extra: 1803 / 1629
  7239. }
  7240. },
  7241. frontShirt: {
  7242. height: math.unit(5 + 8 / 12, "feet"),
  7243. weight: math.unit(130, "lbs"),
  7244. name: "Front (Shirt)",
  7245. image: {
  7246. source: "./media/characters/corvin/front-shirt.svg",
  7247. extra: 1803 / 1629
  7248. }
  7249. },
  7250. frontPoncho: {
  7251. height: math.unit(5 + 8 / 12, "feet"),
  7252. weight: math.unit(130, "lbs"),
  7253. name: "Front (Poncho)",
  7254. image: {
  7255. source: "./media/characters/corvin/front-poncho.svg",
  7256. extra: 1803 / 1629
  7257. }
  7258. },
  7259. side: {
  7260. height: math.unit(5 + 8 / 12, "feet"),
  7261. weight: math.unit(130, "lbs"),
  7262. name: "Side",
  7263. image: {
  7264. source: "./media/characters/corvin/side.svg",
  7265. extra: 1012 / 945
  7266. }
  7267. },
  7268. back: {
  7269. height: math.unit(5 + 8 / 12, "feet"),
  7270. weight: math.unit(130, "lbs"),
  7271. name: "Back",
  7272. image: {
  7273. source: "./media/characters/corvin/back.svg",
  7274. extra: 1803 / 1629
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Micro",
  7281. height: math.unit(3, "inches")
  7282. },
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(5 + 8 / 12, "feet")
  7286. },
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(300, "feet"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Megamacro",
  7294. height: math.unit(500, "miles")
  7295. }
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(135, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/q/front.svg",
  7307. extra: 854 / 752,
  7308. bottom: 0.005
  7309. }
  7310. },
  7311. back: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(130, "lbs"),
  7314. name: "Back",
  7315. image: {
  7316. source: "./media/characters/q/back.svg",
  7317. extra: 854 / 752
  7318. }
  7319. },
  7320. },
  7321. [
  7322. {
  7323. name: "Macro",
  7324. height: math.unit(90, "feet"),
  7325. default: true
  7326. },
  7327. {
  7328. name: "Extra Macro",
  7329. height: math.unit(300, "feet"),
  7330. },
  7331. {
  7332. name: "BIG WALF",
  7333. height: math.unit(750, "feet"),
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7339. {
  7340. front: {
  7341. height: math.unit(6, "feet"),
  7342. weight: math.unit(150, "lbs"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/carley/front.svg",
  7346. extra: 3927 / 3540,
  7347. bottom: 29.2/735
  7348. }
  7349. }
  7350. },
  7351. [
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(6 + 3 / 12, "feet")
  7355. },
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(185, "feet"),
  7359. default: true
  7360. },
  7361. {
  7362. name: "Megamacro",
  7363. height: math.unit(8, "miles"),
  7364. },
  7365. ]
  7366. ))
  7367. characterMakers.push(() => makeCharacter(
  7368. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7369. {
  7370. front: {
  7371. height: math.unit(3, "feet"),
  7372. weight: math.unit(28, "lbs"),
  7373. name: "Front",
  7374. image: {
  7375. source: "./media/characters/citrine/front.svg"
  7376. }
  7377. }
  7378. },
  7379. [
  7380. {
  7381. name: "Normal",
  7382. height: math.unit(3, "feet"),
  7383. default: true
  7384. }
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7389. {
  7390. front: {
  7391. height: math.unit(14, "feet"),
  7392. weight: math.unit(1450, "kg"),
  7393. capacity: math.unit(15, "people"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/aura-starwind/front.svg",
  7397. extra: 1455 / 1335
  7398. }
  7399. },
  7400. side: {
  7401. height: math.unit(14, "feet"),
  7402. weight: math.unit(1450, "kg"),
  7403. capacity: math.unit(15, "people"),
  7404. name: "Side",
  7405. image: {
  7406. source: "./media/characters/aura-starwind/side.svg",
  7407. extra: 1654 / 1497
  7408. }
  7409. },
  7410. taur: {
  7411. height: math.unit(18, "feet"),
  7412. weight: math.unit(5500, "kg"),
  7413. capacity: math.unit(50, "people"),
  7414. name: "Taur",
  7415. image: {
  7416. source: "./media/characters/aura-starwind/taur.svg",
  7417. extra: 1760 / 1650
  7418. }
  7419. },
  7420. feral: {
  7421. height: math.unit(46, "feet"),
  7422. weight: math.unit(25000, "kg"),
  7423. capacity: math.unit(120, "people"),
  7424. name: "Feral",
  7425. image: {
  7426. source: "./media/characters/aura-starwind/feral.svg"
  7427. }
  7428. },
  7429. },
  7430. [
  7431. {
  7432. name: "Normal",
  7433. height: math.unit(14, "feet"),
  7434. default: true
  7435. },
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(50, "meters")
  7439. },
  7440. {
  7441. name: "Megamacro",
  7442. height: math.unit(5000, "meters")
  7443. },
  7444. {
  7445. name: "Gigamacro",
  7446. height: math.unit(100000, "kilometers")
  7447. },
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7452. {
  7453. front: {
  7454. height: math.unit(2 + 7 / 12, "feet"),
  7455. weight: math.unit(32, "lbs"),
  7456. name: "Front",
  7457. image: {
  7458. source: "./media/characters/rivet/front.svg",
  7459. extra: 1716 / 1658,
  7460. bottom: 0.03
  7461. }
  7462. },
  7463. foot: {
  7464. height: math.unit(0.551, "feet"),
  7465. name: "Rivet's Foot",
  7466. image: {
  7467. source: "./media/characters/rivet/foot.svg"
  7468. },
  7469. rename: true
  7470. }
  7471. },
  7472. [
  7473. {
  7474. name: "Micro",
  7475. height: math.unit(1.5, "inches"),
  7476. },
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(2 + 7 / 12, "feet"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Macro",
  7484. height: math.unit(85, "feet")
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(2.2, "km")
  7489. }
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(5 + 9 / 12, "feet"),
  7497. weight: math.unit(150, "lbs"),
  7498. name: "Front",
  7499. image: {
  7500. source: "./media/characters/coffee/front.svg",
  7501. extra: 3666 / 3032,
  7502. bottom: 0.04
  7503. }
  7504. },
  7505. foot: {
  7506. height: math.unit(1.29, "feet"),
  7507. name: "Foot",
  7508. image: {
  7509. source: "./media/characters/coffee/foot.svg"
  7510. }
  7511. },
  7512. },
  7513. [
  7514. {
  7515. name: "Micro",
  7516. height: math.unit(2, "inches"),
  7517. },
  7518. {
  7519. name: "Normal",
  7520. height: math.unit(5 + 9 / 12, "feet"),
  7521. default: true
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(800, "feet")
  7526. },
  7527. {
  7528. name: "Megamacro",
  7529. height: math.unit(25, "miles")
  7530. }
  7531. ]
  7532. ))
  7533. characterMakers.push(() => makeCharacter(
  7534. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7535. {
  7536. front: {
  7537. height: math.unit(6, "feet"),
  7538. weight: math.unit(200, "lbs"),
  7539. name: "Front",
  7540. image: {
  7541. source: "./media/characters/chari-gal/front.svg",
  7542. extra: 1568 / 1385,
  7543. bottom: 0.047
  7544. }
  7545. },
  7546. gigantamax: {
  7547. height: math.unit(6 * 16, "feet"),
  7548. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7549. name: "Gigantamax",
  7550. image: {
  7551. source: "./media/characters/chari-gal/gigantamax.svg",
  7552. extra: 1124 / 888,
  7553. bottom: 0.03
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(5 + 7 / 12, "feet")
  7561. },
  7562. {
  7563. name: "Macro",
  7564. height: math.unit(200, "feet"),
  7565. default: true
  7566. }
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(150, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/nova/front.svg",
  7578. extra: 5000 / 4722,
  7579. bottom: 0.02
  7580. }
  7581. }
  7582. },
  7583. [
  7584. {
  7585. name: "Micro-",
  7586. height: math.unit(0.8, "inches")
  7587. },
  7588. {
  7589. name: "Micro",
  7590. height: math.unit(2, "inches"),
  7591. default: true
  7592. },
  7593. ]
  7594. ))
  7595. characterMakers.push(() => makeCharacter(
  7596. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7597. {
  7598. front: {
  7599. height: math.unit(3 + 1 / 12, "feet"),
  7600. weight: math.unit(21.7, "lbs"),
  7601. name: "Front",
  7602. image: {
  7603. source: "./media/characters/argent/front.svg",
  7604. extra: 1471 / 1331,
  7605. bottom: 100.8 / 1575.5
  7606. }
  7607. }
  7608. },
  7609. [
  7610. {
  7611. name: "Micro",
  7612. height: math.unit(2, "inches")
  7613. },
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(3 + 1 / 12, "feet"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(120, "feet")
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7627. {
  7628. lamp: {
  7629. height: math.unit(7 * 1559 / 989, "feet"),
  7630. name: "Magic Lamp",
  7631. image: {
  7632. source: "./media/characters/mira-al-cul/lamp.svg",
  7633. extra: 1617 / 1559
  7634. }
  7635. },
  7636. front: {
  7637. height: math.unit(7, "feet"),
  7638. name: "Front",
  7639. image: {
  7640. source: "./media/characters/mira-al-cul/front.svg",
  7641. extra: 1044 / 990
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Heavily Restricted",
  7648. height: math.unit(7 * 1559 / 989, "feet")
  7649. },
  7650. {
  7651. name: "Freshly Freed",
  7652. height: math.unit(50 * 1559 / 989, "feet")
  7653. },
  7654. {
  7655. name: "World Encompassing",
  7656. height: math.unit(10000 * 1559 / 989, "miles")
  7657. },
  7658. {
  7659. name: "Galactic",
  7660. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7661. },
  7662. {
  7663. name: "Palmed Universe",
  7664. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Multiversal Matriarch",
  7669. height: math.unit(8.87e10, "yottameters")
  7670. },
  7671. {
  7672. name: "Void Mother",
  7673. height: math.unit(3.14e110, "yottaparsecs")
  7674. },
  7675. {
  7676. name: "Toying with Transcendence",
  7677. height: math.unit(1e307, "meters")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7683. {
  7684. front: {
  7685. height: math.unit(17 + 1 / 12, "feet"),
  7686. weight: math.unit(476.2 * 5, "lbs"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/kuro-shi-uchū/front.svg",
  7690. extra: 2329 / 1835,
  7691. bottom: 0.02
  7692. }
  7693. },
  7694. },
  7695. [
  7696. {
  7697. name: "Micro",
  7698. height: math.unit(2, "inches")
  7699. },
  7700. {
  7701. name: "Normal",
  7702. height: math.unit(12, "meters")
  7703. },
  7704. {
  7705. name: "Planetary",
  7706. height: math.unit(0.00929, "AU"),
  7707. default: true
  7708. },
  7709. {
  7710. name: "Universal",
  7711. height: math.unit(20, "gigaparsecs")
  7712. },
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7717. {
  7718. front: {
  7719. height: math.unit(5 + 2 / 12, "feet"),
  7720. weight: math.unit(120, "lbs"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/katherine/front.svg",
  7724. extra: 2075 / 1969
  7725. }
  7726. },
  7727. dress: {
  7728. height: math.unit(5 + 2 / 12, "feet"),
  7729. weight: math.unit(120, "lbs"),
  7730. name: "Dress",
  7731. image: {
  7732. source: "./media/characters/katherine/dress.svg",
  7733. extra: 2258 / 2064
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Micro",
  7740. height: math.unit(1, "inches"),
  7741. default: true
  7742. },
  7743. {
  7744. name: "Normal",
  7745. height: math.unit(5 + 2 / 12, "feet")
  7746. },
  7747. {
  7748. name: "Macro",
  7749. height: math.unit(100, "meters")
  7750. },
  7751. {
  7752. name: "Megamacro",
  7753. height: math.unit(80, "miles")
  7754. },
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(7 + 8 / 12, "feet"),
  7762. weight: math.unit(250, "lbs"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/yevis/front.svg",
  7766. extra: 1938 / 1755
  7767. }
  7768. }
  7769. },
  7770. [
  7771. {
  7772. name: "Mortal",
  7773. height: math.unit(7 + 8 / 12, "feet")
  7774. },
  7775. {
  7776. name: "Battle",
  7777. height: math.unit(25 + 11 / 12, "feet")
  7778. },
  7779. {
  7780. name: "Wrath",
  7781. height: math.unit(1654 + 11 / 12, "feet")
  7782. },
  7783. {
  7784. name: "Planet Destroyer",
  7785. height: math.unit(12000, "miles")
  7786. },
  7787. {
  7788. name: "Galaxy Conqueror",
  7789. height: math.unit(1.45, "zettameters"),
  7790. default: true
  7791. },
  7792. {
  7793. name: "Universal War",
  7794. height: math.unit(184, "gigaparsecs")
  7795. },
  7796. {
  7797. name: "Eternity War",
  7798. height: math.unit(1.98e55, "yottaparsecs")
  7799. },
  7800. ]
  7801. ))
  7802. characterMakers.push(() => makeCharacter(
  7803. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7804. {
  7805. front: {
  7806. height: math.unit(5 + 8 / 12, "feet"),
  7807. weight: math.unit(63, "kg"),
  7808. name: "Front",
  7809. image: {
  7810. source: "./media/characters/xavier/front.svg",
  7811. extra: 944 / 883
  7812. }
  7813. },
  7814. frontStretch: {
  7815. height: math.unit(5 + 8 / 12, "feet"),
  7816. weight: math.unit(63, "kg"),
  7817. name: "Stretching",
  7818. image: {
  7819. source: "./media/characters/xavier/front-stretch.svg",
  7820. extra: 962 / 820
  7821. }
  7822. },
  7823. },
  7824. [
  7825. {
  7826. name: "Normal",
  7827. height: math.unit(5 + 8 / 12, "feet")
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(100, "meters"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "McLargeHuge",
  7836. height: math.unit(10, "miles")
  7837. },
  7838. ]
  7839. ))
  7840. characterMakers.push(() => makeCharacter(
  7841. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7842. {
  7843. front: {
  7844. height: math.unit(5 + 5 / 12, "feet"),
  7845. weight: math.unit(150, "lb"),
  7846. name: "Front",
  7847. image: {
  7848. source: "./media/characters/joshii/front.svg"
  7849. }
  7850. },
  7851. foot: {
  7852. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7853. name: "Foot",
  7854. image: {
  7855. source: "./media/characters/joshii/foot.svg"
  7856. }
  7857. },
  7858. },
  7859. [
  7860. {
  7861. name: "Micro",
  7862. height: math.unit(2, "inches")
  7863. },
  7864. {
  7865. name: "Normal",
  7866. height: math.unit(5 + 5 / 12, "feet"),
  7867. default: true
  7868. },
  7869. {
  7870. name: "Macro",
  7871. height: math.unit(785, "feet")
  7872. },
  7873. {
  7874. name: "Megamacro",
  7875. height: math.unit(24.5, "miles")
  7876. },
  7877. ]
  7878. ))
  7879. characterMakers.push(() => makeCharacter(
  7880. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7881. {
  7882. front: {
  7883. height: math.unit(6, "feet"),
  7884. weight: math.unit(150, "lb"),
  7885. name: "Front",
  7886. image: {
  7887. source: "./media/characters/goddess-elizabeth/front.svg",
  7888. extra: 1800 / 1525,
  7889. bottom: 0.005
  7890. }
  7891. },
  7892. foot: {
  7893. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7894. name: "Foot",
  7895. image: {
  7896. source: "./media/characters/goddess-elizabeth/foot.svg"
  7897. }
  7898. },
  7899. mouth: {
  7900. height: math.unit(6, "feet"),
  7901. name: "Mouth",
  7902. image: {
  7903. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7904. }
  7905. },
  7906. },
  7907. [
  7908. {
  7909. name: "Micro",
  7910. height: math.unit(12, "feet")
  7911. },
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(80, "miles"),
  7915. default: true
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(15000, "parsecs")
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7925. {
  7926. front: {
  7927. height: math.unit(5 + 9 / 12, "feet"),
  7928. weight: math.unit(144, "lb"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/kara/front.svg"
  7932. }
  7933. },
  7934. feet: {
  7935. height: math.unit(6 / 6.765, "feet"),
  7936. name: "Kara's Feet",
  7937. rename: true,
  7938. image: {
  7939. source: "./media/characters/kara/feet.svg"
  7940. }
  7941. },
  7942. },
  7943. [
  7944. {
  7945. name: "Normal",
  7946. height: math.unit(5 + 9 / 12, "feet")
  7947. },
  7948. {
  7949. name: "Macro",
  7950. height: math.unit(174, "feet"),
  7951. default: true
  7952. },
  7953. ]
  7954. ))
  7955. characterMakers.push(() => makeCharacter(
  7956. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7957. {
  7958. front: {
  7959. height: math.unit(18, "feet"),
  7960. weight: math.unit(4050, "lb"),
  7961. name: "Front",
  7962. image: {
  7963. source: "./media/characters/tyrone/front.svg",
  7964. extra: 2520 / 2402,
  7965. bottom: 0.025
  7966. }
  7967. },
  7968. },
  7969. [
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(18, "feet"),
  7973. default: true
  7974. },
  7975. {
  7976. name: "Macro",
  7977. height: math.unit(300, "feet")
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7983. {
  7984. front: {
  7985. height: math.unit(7 + 8 / 12, "feet"),
  7986. weight: math.unit(120, "lb"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/danny/front.svg",
  7990. extra: 1490 / 1350
  7991. }
  7992. },
  7993. back: {
  7994. height: math.unit(7 + 8 / 12, "feet"),
  7995. weight: math.unit(120, "lb"),
  7996. name: "Back",
  7997. image: {
  7998. source: "./media/characters/danny/back.svg",
  7999. extra: 1490 / 1350
  8000. }
  8001. },
  8002. },
  8003. [
  8004. {
  8005. name: "Normal",
  8006. height: math.unit(7 + 8 / 12, "feet"),
  8007. default: true
  8008. },
  8009. ]
  8010. ))
  8011. characterMakers.push(() => makeCharacter(
  8012. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8013. {
  8014. front: {
  8015. height: math.unit(3.5, "inches"),
  8016. weight: math.unit(19, "grams"),
  8017. name: "Front",
  8018. image: {
  8019. source: "./media/characters/mallow/front.svg",
  8020. extra: 471 / 431
  8021. }
  8022. },
  8023. back: {
  8024. height: math.unit(3.5, "inches"),
  8025. weight: math.unit(19, "grams"),
  8026. name: "Back",
  8027. image: {
  8028. source: "./media/characters/mallow/back.svg",
  8029. extra: 471 / 431
  8030. }
  8031. },
  8032. },
  8033. [
  8034. {
  8035. name: "Normal",
  8036. height: math.unit(3.5, "inches"),
  8037. default: true
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(9, "feet"),
  8046. weight: math.unit(230, "kg"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/starry-aqua/front.svg"
  8050. }
  8051. },
  8052. back: {
  8053. height: math.unit(9, "feet"),
  8054. weight: math.unit(230, "kg"),
  8055. name: "Back",
  8056. image: {
  8057. source: "./media/characters/starry-aqua/back.svg"
  8058. }
  8059. },
  8060. hand: {
  8061. height: math.unit(9 * 0.1168, "feet"),
  8062. name: "Hand",
  8063. image: {
  8064. source: "./media/characters/starry-aqua/hand.svg"
  8065. }
  8066. },
  8067. foot: {
  8068. height: math.unit(9 * 0.18, "feet"),
  8069. name: "Foot",
  8070. image: {
  8071. source: "./media/characters/starry-aqua/foot.svg"
  8072. }
  8073. }
  8074. },
  8075. [
  8076. {
  8077. name: "Micro",
  8078. height: math.unit(3, "inches")
  8079. },
  8080. {
  8081. name: "Normal",
  8082. height: math.unit(9, "feet")
  8083. },
  8084. {
  8085. name: "Macro",
  8086. height: math.unit(300, "feet"),
  8087. default: true
  8088. },
  8089. {
  8090. name: "Megamacro",
  8091. height: math.unit(3200, "feet")
  8092. }
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8097. {
  8098. front: {
  8099. height: math.unit(6, "feet"),
  8100. weight: math.unit(230, "lb"),
  8101. name: "Front",
  8102. image: {
  8103. source: "./media/characters/luka/front.svg",
  8104. extra: 1,
  8105. bottom: 0.025
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(12 + 8 / 12, "feet"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Minimacro",
  8117. height: math.unit(20, "feet")
  8118. },
  8119. {
  8120. name: "Macro",
  8121. height: math.unit(250, "feet")
  8122. },
  8123. {
  8124. name: "Megamacro",
  8125. height: math.unit(5, "miles")
  8126. },
  8127. {
  8128. name: "Gigamacro",
  8129. height: math.unit(8000, "miles")
  8130. },
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8135. {
  8136. front: {
  8137. height: math.unit(6, "feet"),
  8138. weight: math.unit(150, "lb"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/natalie-nightring/front.svg",
  8142. extra: 1,
  8143. bottom: 0.06
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Uh Oh",
  8150. height: math.unit(0.1, "mm")
  8151. },
  8152. {
  8153. name: "Small",
  8154. height: math.unit(3, "inches")
  8155. },
  8156. {
  8157. name: "Human Scale",
  8158. height: math.unit(6, "feet")
  8159. },
  8160. {
  8161. name: "Librarian",
  8162. height: math.unit(50, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Immense",
  8167. height: math.unit(200, "miles")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(180, "lbs"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/danni-rosie/front.svg",
  8180. extra: 1260 / 1128,
  8181. bottom: 0.022
  8182. }
  8183. },
  8184. },
  8185. [
  8186. {
  8187. name: "Micro",
  8188. height: math.unit(2, "inches"),
  8189. default: true
  8190. },
  8191. ]
  8192. ))
  8193. characterMakers.push(() => makeCharacter(
  8194. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8195. {
  8196. front: {
  8197. height: math.unit(5 + 9 / 12, "feet"),
  8198. weight: math.unit(220, "lb"),
  8199. name: "Front",
  8200. image: {
  8201. source: "./media/characters/samantha-kruse/front.svg",
  8202. extra: (985 / 935),
  8203. bottom: 0.03
  8204. }
  8205. },
  8206. frontUndressed: {
  8207. height: math.unit(5 + 9 / 12, "feet"),
  8208. weight: math.unit(220, "lb"),
  8209. name: "Front (Undressed)",
  8210. image: {
  8211. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8212. extra: (973 / 923),
  8213. bottom: 0.025
  8214. }
  8215. },
  8216. fat: {
  8217. height: math.unit(5 + 9 / 12, "feet"),
  8218. weight: math.unit(900, "lb"),
  8219. name: "Front (Fat)",
  8220. image: {
  8221. source: "./media/characters/samantha-kruse/fat.svg",
  8222. extra: 2688 / 2561
  8223. }
  8224. },
  8225. },
  8226. [
  8227. {
  8228. name: "Normal",
  8229. height: math.unit(5 + 9 / 12, "feet"),
  8230. default: true
  8231. }
  8232. ]
  8233. ))
  8234. characterMakers.push(() => makeCharacter(
  8235. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8236. {
  8237. back: {
  8238. height: math.unit(5 + 4 / 12, "feet"),
  8239. weight: math.unit(4963, "lb"),
  8240. name: "Back",
  8241. image: {
  8242. source: "./media/characters/amelia-rosie/back.svg",
  8243. extra: 1113 / 963,
  8244. bottom: 0.01
  8245. }
  8246. },
  8247. },
  8248. [
  8249. {
  8250. name: "Level 0",
  8251. height: math.unit(5 + 4 / 12, "feet")
  8252. },
  8253. {
  8254. name: "Level 1",
  8255. height: math.unit(164597, "feet"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Level 2",
  8260. height: math.unit(956243, "miles")
  8261. },
  8262. {
  8263. name: "Level 3",
  8264. height: math.unit(29421709423, "miles")
  8265. },
  8266. {
  8267. name: "Level 4",
  8268. height: math.unit(154, "lightyears")
  8269. },
  8270. {
  8271. name: "Level 5",
  8272. height: math.unit(4738272, "lightyears")
  8273. },
  8274. {
  8275. name: "Level 6",
  8276. height: math.unit(145787152896, "lightyears")
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(5 + 11 / 12, "feet"),
  8285. weight: math.unit(65, "kg"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/rook-kitara/front.svg",
  8289. extra: 1347 / 1274,
  8290. bottom: 0.005
  8291. }
  8292. },
  8293. },
  8294. [
  8295. {
  8296. name: "Totally Unfair",
  8297. height: math.unit(1.8, "mm")
  8298. },
  8299. {
  8300. name: "Lap Rookie",
  8301. height: math.unit(1.4, "feet")
  8302. },
  8303. {
  8304. name: "Normal",
  8305. height: math.unit(5 + 11 / 12, "feet"),
  8306. default: true
  8307. },
  8308. {
  8309. name: "How Did This Happen",
  8310. height: math.unit(80, "miles")
  8311. }
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8316. {
  8317. front: {
  8318. height: math.unit(7, "feet"),
  8319. weight: math.unit(300, "lb"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/pisces/front.svg",
  8323. extra: 2255 / 2115,
  8324. bottom: 0.03
  8325. }
  8326. },
  8327. back: {
  8328. height: math.unit(7, "feet"),
  8329. weight: math.unit(300, "lb"),
  8330. name: "Back",
  8331. image: {
  8332. source: "./media/characters/pisces/back.svg",
  8333. extra: 2146 / 2055,
  8334. bottom: 0.04
  8335. }
  8336. },
  8337. },
  8338. [
  8339. {
  8340. name: "Normal",
  8341. height: math.unit(7, "feet"),
  8342. default: true
  8343. },
  8344. {
  8345. name: "Swimming Pool",
  8346. height: math.unit(12.2, "meters")
  8347. },
  8348. {
  8349. name: "Olympic Swimming Pool",
  8350. height: math.unit(56.3, "meters")
  8351. },
  8352. {
  8353. name: "Lake Superior",
  8354. height: math.unit(93900, "meters")
  8355. },
  8356. {
  8357. name: "Mediterranean Sea",
  8358. height: math.unit(644457, "meters")
  8359. },
  8360. {
  8361. name: "World's Oceans",
  8362. height: math.unit(4567491, "meters")
  8363. },
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(2.3, "meters"),
  8371. weight: math.unit(120, "kg"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/zelas/front.svg"
  8375. }
  8376. },
  8377. side: {
  8378. height: math.unit(2.3, "meters"),
  8379. weight: math.unit(120, "kg"),
  8380. name: "Side",
  8381. image: {
  8382. source: "./media/characters/zelas/side.svg"
  8383. }
  8384. },
  8385. back: {
  8386. height: math.unit(2.3, "meters"),
  8387. weight: math.unit(120, "kg"),
  8388. name: "Back",
  8389. image: {
  8390. source: "./media/characters/zelas/back.svg"
  8391. }
  8392. },
  8393. foot: {
  8394. height: math.unit(1.116, "feet"),
  8395. name: "Foot",
  8396. image: {
  8397. source: "./media/characters/zelas/foot.svg"
  8398. }
  8399. },
  8400. },
  8401. [
  8402. {
  8403. name: "Normal",
  8404. height: math.unit(2.3, "meters")
  8405. },
  8406. {
  8407. name: "Macro",
  8408. height: math.unit(30, "meters"),
  8409. default: true
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(1, "inch"),
  8418. weight: math.unit(0.21, "grams"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/talbot/front.svg",
  8422. extra: 594 / 544
  8423. }
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "Micro",
  8429. height: math.unit(1, "inch"),
  8430. default: true
  8431. },
  8432. ]
  8433. ))
  8434. characterMakers.push(() => makeCharacter(
  8435. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8436. {
  8437. front: {
  8438. height: math.unit(3 + 3 / 12, "feet"),
  8439. weight: math.unit(51.8, "lb"),
  8440. name: "Front",
  8441. image: {
  8442. source: "./media/characters/fliss/front.svg",
  8443. extra: 840 / 640
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Teeny Tiny",
  8450. height: math.unit(1, "mm")
  8451. },
  8452. {
  8453. name: "Small",
  8454. height: math.unit(1, "inch"),
  8455. default: true
  8456. },
  8457. {
  8458. name: "Standard Sylveon",
  8459. height: math.unit(3 + 3 / 12, "feet")
  8460. },
  8461. {
  8462. name: "Large Nuisance",
  8463. height: math.unit(33, "feet")
  8464. },
  8465. {
  8466. name: "City Filler",
  8467. height: math.unit(3000, "feet")
  8468. },
  8469. {
  8470. name: "New Horizon",
  8471. height: math.unit(6000, "miles")
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(5, "cm"),
  8480. weight: math.unit(1.94, "g"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/fleta/front.svg",
  8484. extra: 835 / 803
  8485. }
  8486. },
  8487. back: {
  8488. height: math.unit(5, "cm"),
  8489. weight: math.unit(1.94, "g"),
  8490. name: "Back",
  8491. image: {
  8492. source: "./media/characters/fleta/back.svg",
  8493. extra: 835 / 803
  8494. }
  8495. },
  8496. },
  8497. [
  8498. {
  8499. name: "Micro",
  8500. height: math.unit(5, "cm"),
  8501. default: true
  8502. },
  8503. ]
  8504. ))
  8505. characterMakers.push(() => makeCharacter(
  8506. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8507. {
  8508. front: {
  8509. height: math.unit(6, "feet"),
  8510. weight: math.unit(225, "lb"),
  8511. name: "Front",
  8512. image: {
  8513. source: "./media/characters/dominic/front.svg",
  8514. extra: 1770 / 1620,
  8515. bottom: 0.025
  8516. }
  8517. },
  8518. back: {
  8519. height: math.unit(6, "feet"),
  8520. weight: math.unit(225, "lb"),
  8521. name: "Back",
  8522. image: {
  8523. source: "./media/characters/dominic/back.svg",
  8524. extra: 1745 / 1620,
  8525. bottom: 0.065
  8526. }
  8527. },
  8528. },
  8529. [
  8530. {
  8531. name: "Nano",
  8532. height: math.unit(0.1, "mm")
  8533. },
  8534. {
  8535. name: "Micro-",
  8536. height: math.unit(1, "mm")
  8537. },
  8538. {
  8539. name: "Micro",
  8540. height: math.unit(4, "inches")
  8541. },
  8542. {
  8543. name: "Normal",
  8544. height: math.unit(6 + 4 / 12, "feet"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Macro",
  8549. height: math.unit(115, "feet")
  8550. },
  8551. {
  8552. name: "Macro+",
  8553. height: math.unit(955, "feet")
  8554. },
  8555. {
  8556. name: "Megamacro",
  8557. height: math.unit(8990, "feet")
  8558. },
  8559. {
  8560. name: "Gigmacro",
  8561. height: math.unit(9310, "miles")
  8562. },
  8563. {
  8564. name: "Teramacro",
  8565. height: math.unit(1567005010, "miles")
  8566. },
  8567. {
  8568. name: "Examacro",
  8569. height: math.unit(1425, "parsecs")
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(400, "feet"),
  8578. weight: math.unit(44444444, "lb"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/major-colonel/front.svg"
  8582. }
  8583. },
  8584. back: {
  8585. height: math.unit(400, "feet"),
  8586. weight: math.unit(44444444, "lb"),
  8587. name: "Back",
  8588. image: {
  8589. source: "./media/characters/major-colonel/back.svg"
  8590. }
  8591. },
  8592. },
  8593. [
  8594. {
  8595. name: "Macro",
  8596. height: math.unit(400, "feet"),
  8597. default: true
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8603. {
  8604. catFront: {
  8605. height: math.unit(6, "feet"),
  8606. weight: math.unit(120, "lb"),
  8607. name: "Front (Cat Side)",
  8608. image: {
  8609. source: "./media/characters/axel-lycan/cat-front.svg",
  8610. extra: 430 / 402,
  8611. bottom: 43 / 472.35
  8612. }
  8613. },
  8614. catBack: {
  8615. height: math.unit(6, "feet"),
  8616. weight: math.unit(120, "lb"),
  8617. name: "Back (Cat Side)",
  8618. image: {
  8619. source: "./media/characters/axel-lycan/cat-back.svg",
  8620. extra: 447 / 419,
  8621. bottom: 23.3 / 469
  8622. }
  8623. },
  8624. wolfFront: {
  8625. height: math.unit(6, "feet"),
  8626. weight: math.unit(120, "lb"),
  8627. name: "Front (Wolf Side)",
  8628. image: {
  8629. source: "./media/characters/axel-lycan/wolf-front.svg",
  8630. extra: 485 / 456,
  8631. bottom: 19 / 504
  8632. }
  8633. },
  8634. wolfBack: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(120, "lb"),
  8637. name: "Back (Wolf Side)",
  8638. image: {
  8639. source: "./media/characters/axel-lycan/wolf-back.svg",
  8640. extra: 475 / 438,
  8641. bottom: 39.2 / 514
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Macro",
  8648. height: math.unit(1, "km"),
  8649. default: true
  8650. },
  8651. ]
  8652. ))
  8653. characterMakers.push(() => makeCharacter(
  8654. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8655. {
  8656. front: {
  8657. height: math.unit(5 + 9 / 12, "feet"),
  8658. weight: math.unit(175, "lb"),
  8659. name: "Front",
  8660. image: {
  8661. source: "./media/characters/vanrel-hyena/front.svg",
  8662. extra: 1086 / 1010,
  8663. bottom: 0.04
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(5 + 9 / 12, "feet"),
  8671. default: true
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(103, "lb"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/abbott-absol/front.svg",
  8684. extra: 2010 / 1842
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Megamicro",
  8691. height: math.unit(0.1, "mm")
  8692. },
  8693. {
  8694. name: "Micro",
  8695. height: math.unit(1, "inch")
  8696. },
  8697. {
  8698. name: "Normal",
  8699. height: math.unit(6, "feet"),
  8700. default: true
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8706. {
  8707. front: {
  8708. height: math.unit(6, "feet"),
  8709. weight: math.unit(264, "lb"),
  8710. name: "Front",
  8711. image: {
  8712. source: "./media/characters/hector/front.svg",
  8713. extra: 2280 / 2130,
  8714. bottom: 0.07
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(12.25, "foot"),
  8722. default: true
  8723. },
  8724. {
  8725. name: "Macro",
  8726. height: math.unit(160, "feet")
  8727. },
  8728. ]
  8729. ))
  8730. characterMakers.push(() => makeCharacter(
  8731. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8732. {
  8733. front: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(150, "lb"),
  8736. name: "Front",
  8737. image: {
  8738. source: "./media/characters/sal/front.svg",
  8739. extra: 1846 / 1699,
  8740. bottom: 0.04
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Megamacro",
  8747. height: math.unit(10, "miles"),
  8748. default: true
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8754. {
  8755. front: {
  8756. height: math.unit(3, "meters"),
  8757. weight: math.unit(450, "kg"),
  8758. name: "front",
  8759. image: {
  8760. source: "./media/characters/ranger/front.svg",
  8761. extra: 2401 / 2243,
  8762. bottom: 0.05
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Normal",
  8769. height: math.unit(3, "meters"),
  8770. default: true
  8771. },
  8772. ]
  8773. ))
  8774. characterMakers.push(() => makeCharacter(
  8775. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8776. {
  8777. front: {
  8778. height: math.unit(14, "feet"),
  8779. weight: math.unit(800, "kg"),
  8780. name: "Front",
  8781. image: {
  8782. source: "./media/characters/theresa/front.svg",
  8783. extra: 3575 / 3346,
  8784. bottom: 0.03
  8785. }
  8786. },
  8787. },
  8788. [
  8789. {
  8790. name: "Normal",
  8791. height: math.unit(14, "feet"),
  8792. default: true
  8793. },
  8794. ]
  8795. ))
  8796. characterMakers.push(() => makeCharacter(
  8797. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8798. {
  8799. front: {
  8800. height: math.unit(6, "feet"),
  8801. weight: math.unit(3, "kg"),
  8802. name: "Front",
  8803. image: {
  8804. source: "./media/characters/ine/front.svg",
  8805. extra: 678 / 539,
  8806. bottom: 0.023
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Normal",
  8813. height: math.unit(2.265, "feet"),
  8814. default: true
  8815. },
  8816. ]
  8817. ))
  8818. characterMakers.push(() => makeCharacter(
  8819. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8820. {
  8821. front: {
  8822. height: math.unit(5, "feet"),
  8823. weight: math.unit(30, "kg"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/vial/front.svg",
  8827. extra: 1365 / 1277,
  8828. bottom: 0.04
  8829. }
  8830. },
  8831. },
  8832. [
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(5, "feet"),
  8836. default: true
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8842. {
  8843. side: {
  8844. height: math.unit(3.4, "meters"),
  8845. weight: math.unit(1000, "lb"),
  8846. name: "Side",
  8847. image: {
  8848. source: "./media/characters/rovoska/side.svg",
  8849. extra: 4403 / 1515
  8850. }
  8851. },
  8852. },
  8853. [
  8854. {
  8855. name: "Normal",
  8856. height: math.unit(3.4, "meters"),
  8857. default: true
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(8, "feet"),
  8866. weight: math.unit(315, "lb"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/gunner-rotthbauer/front.svg"
  8870. }
  8871. },
  8872. back: {
  8873. height: math.unit(8, "feet"),
  8874. weight: math.unit(315, "lb"),
  8875. name: "Back",
  8876. image: {
  8877. source: "./media/characters/gunner-rotthbauer/back.svg"
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Micro",
  8884. height: math.unit(3.5, "inches")
  8885. },
  8886. {
  8887. name: "Normal",
  8888. height: math.unit(8, "feet"),
  8889. default: true
  8890. },
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(250, "feet")
  8894. },
  8895. {
  8896. name: "Megamacro",
  8897. height: math.unit(1, "AU")
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8903. {
  8904. front: {
  8905. height: math.unit(5 + 5 / 12, "feet"),
  8906. weight: math.unit(140, "lb"),
  8907. name: "Front",
  8908. image: {
  8909. source: "./media/characters/allatia/front.svg",
  8910. extra: 1227 / 1180,
  8911. bottom: 0.027
  8912. }
  8913. },
  8914. },
  8915. [
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(5 + 5 / 12, "feet")
  8919. },
  8920. {
  8921. name: "Macro",
  8922. height: math.unit(250, "feet"),
  8923. default: true
  8924. },
  8925. {
  8926. name: "Megamacro",
  8927. height: math.unit(8, "miles")
  8928. }
  8929. ]
  8930. ))
  8931. characterMakers.push(() => makeCharacter(
  8932. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8933. {
  8934. front: {
  8935. height: math.unit(6, "feet"),
  8936. weight: math.unit(120, "lb"),
  8937. name: "Front",
  8938. image: {
  8939. source: "./media/characters/tene/front.svg",
  8940. extra: 1728 / 1578,
  8941. bottom: 0.022
  8942. }
  8943. },
  8944. stomping: {
  8945. height: math.unit(2.025, "meters"),
  8946. weight: math.unit(120, "lb"),
  8947. name: "Stomping",
  8948. image: {
  8949. source: "./media/characters/tene/stomping.svg",
  8950. extra: 938 / 873,
  8951. bottom: 0.01
  8952. }
  8953. },
  8954. sitting: {
  8955. height: math.unit(1, "meter"),
  8956. weight: math.unit(120, "lb"),
  8957. name: "Sitting",
  8958. image: {
  8959. source: "./media/characters/tene/sitting.svg",
  8960. extra: 437 / 415,
  8961. bottom: 0.1
  8962. }
  8963. },
  8964. feral: {
  8965. height: math.unit(3.9, "feet"),
  8966. weight: math.unit(250, "lb"),
  8967. name: "Feral",
  8968. image: {
  8969. source: "./media/characters/tene/feral.svg",
  8970. extra: 717 / 458,
  8971. bottom: 0.179
  8972. }
  8973. },
  8974. },
  8975. [
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(6, "feet")
  8979. },
  8980. {
  8981. name: "Macro",
  8982. height: math.unit(300, "feet"),
  8983. default: true
  8984. },
  8985. {
  8986. name: "Megamacro",
  8987. height: math.unit(5, "miles")
  8988. },
  8989. ]
  8990. ))
  8991. characterMakers.push(() => makeCharacter(
  8992. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8993. {
  8994. side: {
  8995. height: math.unit(6, "feet"),
  8996. name: "Side",
  8997. image: {
  8998. source: "./media/characters/evander/side.svg",
  8999. extra: 877 / 477
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Normal",
  9006. height: math.unit(0.83, "meters"),
  9007. default: true
  9008. },
  9009. ]
  9010. ))
  9011. characterMakers.push(() => makeCharacter(
  9012. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9013. {
  9014. front: {
  9015. height: math.unit(12, "feet"),
  9016. weight: math.unit(1000, "lb"),
  9017. name: "Front",
  9018. image: {
  9019. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9020. extra: 1762 / 1611
  9021. }
  9022. },
  9023. back: {
  9024. height: math.unit(12, "feet"),
  9025. weight: math.unit(1000, "lb"),
  9026. name: "Back",
  9027. image: {
  9028. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9029. extra: 1762 / 1611
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(12, "feet"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Kaiju",
  9041. height: math.unit(150, "feet")
  9042. },
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9047. {
  9048. front: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(150, "lb"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/zero-alurus/front.svg"
  9054. }
  9055. },
  9056. back: {
  9057. height: math.unit(6, "feet"),
  9058. weight: math.unit(150, "lb"),
  9059. name: "Back",
  9060. image: {
  9061. source: "./media/characters/zero-alurus/back.svg"
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(5 + 10 / 12, "feet")
  9069. },
  9070. {
  9071. name: "Macro",
  9072. height: math.unit(60, "feet"),
  9073. default: true
  9074. },
  9075. {
  9076. name: "Macro+",
  9077. height: math.unit(450, "feet")
  9078. },
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9083. {
  9084. front: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(200, "lb"),
  9087. name: "Front",
  9088. image: {
  9089. source: "./media/characters/mega-shi/front.svg",
  9090. extra: 1279 / 1250,
  9091. bottom: 0.02
  9092. }
  9093. },
  9094. back: {
  9095. height: math.unit(6, "feet"),
  9096. weight: math.unit(200, "lb"),
  9097. name: "Back",
  9098. image: {
  9099. source: "./media/characters/mega-shi/back.svg",
  9100. extra: 1279 / 1250,
  9101. bottom: 0.02
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(16 + 6 / 12, "feet")
  9109. },
  9110. {
  9111. name: "Third Dimension",
  9112. height: math.unit(40, "meters")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(660, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Megamacro",
  9121. height: math.unit(10, "miles")
  9122. },
  9123. {
  9124. name: "Planetary Launch",
  9125. height: math.unit(500, "miles")
  9126. },
  9127. {
  9128. name: "Interstellar",
  9129. height: math.unit(1e9, "miles")
  9130. },
  9131. {
  9132. name: "Leaving the Universe",
  9133. height: math.unit(1, "gigaparsec")
  9134. },
  9135. {
  9136. name: "Travelling Universes",
  9137. height: math.unit(30e15, "parsecs")
  9138. },
  9139. ]
  9140. ))
  9141. characterMakers.push(() => makeCharacter(
  9142. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9143. {
  9144. front: {
  9145. height: math.unit(6, "feet"),
  9146. weight: math.unit(150, "lb"),
  9147. name: "Front",
  9148. image: {
  9149. source: "./media/characters/odyssey/front.svg",
  9150. extra: 1782 / 1582,
  9151. bottom: 0.01
  9152. }
  9153. },
  9154. side: {
  9155. height: math.unit(5.7, "feet"),
  9156. weight: math.unit(140, "lb"),
  9157. name: "Side",
  9158. image: {
  9159. source: "./media/characters/odyssey/side.svg",
  9160. extra: 6462 / 5700
  9161. }
  9162. },
  9163. },
  9164. [
  9165. {
  9166. name: "Normal",
  9167. height: math.unit(5 + 4 / 12, "feet")
  9168. },
  9169. {
  9170. name: "Macro",
  9171. height: math.unit(1, "km")
  9172. },
  9173. {
  9174. name: "Megamacro",
  9175. height: math.unit(3000, "km")
  9176. },
  9177. {
  9178. name: "Gigamacro",
  9179. height: math.unit(1, "AU"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Omniversal",
  9184. height: math.unit(100e14, "lightyears")
  9185. },
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(6, "feet"),
  9193. weight: math.unit(300, "lb"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/mekuto/front.svg",
  9197. extra: 921 / 832,
  9198. bottom: 0.03
  9199. }
  9200. },
  9201. hand: {
  9202. height: math.unit(6 / 10.24, "feet"),
  9203. name: "Hand",
  9204. image: {
  9205. source: "./media/characters/mekuto/hand.svg"
  9206. }
  9207. },
  9208. foot: {
  9209. height: math.unit(6 / 5.05, "feet"),
  9210. name: "Foot",
  9211. image: {
  9212. source: "./media/characters/mekuto/foot.svg"
  9213. }
  9214. },
  9215. },
  9216. [
  9217. {
  9218. name: "Minimicro",
  9219. height: math.unit(0.2, "inches")
  9220. },
  9221. {
  9222. name: "Micro",
  9223. height: math.unit(1.5, "inches")
  9224. },
  9225. {
  9226. name: "Normal",
  9227. height: math.unit(5 + 11 / 12, "feet"),
  9228. default: true
  9229. },
  9230. {
  9231. name: "Minimacro",
  9232. height: math.unit(17 + 9 / 12, "feet")
  9233. },
  9234. {
  9235. name: "Macro",
  9236. height: math.unit(177.5, "feet")
  9237. },
  9238. {
  9239. name: "Megamacro",
  9240. height: math.unit(152, "miles")
  9241. },
  9242. ]
  9243. ))
  9244. characterMakers.push(() => makeCharacter(
  9245. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9246. {
  9247. front: {
  9248. height: math.unit(6.5, "inches"),
  9249. weight: math.unit(13, "oz"),
  9250. name: "Front",
  9251. image: {
  9252. source: "./media/characters/dafydd-tomos/front.svg",
  9253. extra: 2990 / 2603,
  9254. bottom: 0.03
  9255. }
  9256. },
  9257. },
  9258. [
  9259. {
  9260. name: "Micro",
  9261. height: math.unit(6.5, "inches"),
  9262. default: true
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(6, "feet"),
  9271. weight: math.unit(150, "lb"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/splinter/front.svg",
  9275. extra: 2990 / 2882,
  9276. bottom: 0.04
  9277. }
  9278. },
  9279. back: {
  9280. height: math.unit(6, "feet"),
  9281. weight: math.unit(150, "lb"),
  9282. name: "Back",
  9283. image: {
  9284. source: "./media/characters/splinter/back.svg",
  9285. extra: 2990 / 2882,
  9286. bottom: 0.04
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(6, "feet")
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(230, "meters"),
  9298. default: true
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(4 + 10 / 12, "feet"),
  9307. weight: math.unit(480, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/snow-gabumon/front.svg",
  9311. extra: 1140 / 963,
  9312. bottom: 0.058
  9313. }
  9314. },
  9315. back: {
  9316. height: math.unit(4 + 10 / 12, "feet"),
  9317. weight: math.unit(480, "lb"),
  9318. name: "Back",
  9319. image: {
  9320. source: "./media/characters/snow-gabumon/back.svg",
  9321. extra: 1115 / 962,
  9322. bottom: 0.041
  9323. }
  9324. },
  9325. frontUndresed: {
  9326. height: math.unit(4 + 10 / 12, "feet"),
  9327. weight: math.unit(480, "lb"),
  9328. name: "Front (Undressed)",
  9329. image: {
  9330. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9331. extra: 1061 / 960,
  9332. bottom: 0.045
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Micro",
  9339. height: math.unit(1, "inch")
  9340. },
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(4 + 10 / 12, "feet"),
  9344. default: true
  9345. },
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(200, "feet")
  9349. },
  9350. {
  9351. name: "Megamacro",
  9352. height: math.unit(120, "miles")
  9353. },
  9354. {
  9355. name: "Gigamacro",
  9356. height: math.unit(9800, "miles")
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(1.7, "meters"),
  9365. weight: math.unit(140, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/moody/front.svg",
  9369. extra: 3226 / 3007,
  9370. bottom: 0.087
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(1, "mm")
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(1.7, "meters"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(80, "meters")
  9387. },
  9388. {
  9389. name: "Macro+",
  9390. height: math.unit(500, "meters")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(150, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/zyas/front.svg",
  9403. extra: 1180 / 1120,
  9404. bottom: 0.045
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(10, "feet"),
  9412. default: true
  9413. },
  9414. {
  9415. name: "Macro",
  9416. height: math.unit(500, "feet")
  9417. },
  9418. {
  9419. name: "Megamacro",
  9420. height: math.unit(5, "miles")
  9421. },
  9422. {
  9423. name: "Teramacro",
  9424. height: math.unit(150000, "miles")
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9430. {
  9431. front: {
  9432. height: math.unit(6, "feet"),
  9433. weight: math.unit(150, "lb"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/cuon/front.svg",
  9437. extra: 1390 / 1320,
  9438. bottom: 0.008
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Micro",
  9445. height: math.unit(3, "inches")
  9446. },
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(18 + 9 / 12, "feet"),
  9450. default: true
  9451. },
  9452. {
  9453. name: "Macro",
  9454. height: math.unit(360, "feet")
  9455. },
  9456. {
  9457. name: "Megamacro",
  9458. height: math.unit(360, "miles")
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(2.4, "meters"),
  9467. weight: math.unit(70, "kg"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/nyanuxk/front.svg",
  9471. extra: 1172 / 1084,
  9472. bottom: 0.065
  9473. }
  9474. },
  9475. side: {
  9476. height: math.unit(2.4, "meters"),
  9477. weight: math.unit(70, "kg"),
  9478. name: "Side",
  9479. image: {
  9480. source: "./media/characters/nyanuxk/side.svg",
  9481. extra: 1190 / 1132,
  9482. bottom: 0.007
  9483. }
  9484. },
  9485. back: {
  9486. height: math.unit(2.4, "meters"),
  9487. weight: math.unit(70, "kg"),
  9488. name: "Back",
  9489. image: {
  9490. source: "./media/characters/nyanuxk/back.svg",
  9491. extra: 1200 / 1141,
  9492. bottom: 0.015
  9493. }
  9494. },
  9495. foot: {
  9496. height: math.unit(0.52, "meters"),
  9497. name: "Foot",
  9498. image: {
  9499. source: "./media/characters/nyanuxk/foot.svg"
  9500. }
  9501. },
  9502. },
  9503. [
  9504. {
  9505. name: "Micro",
  9506. height: math.unit(2, "cm")
  9507. },
  9508. {
  9509. name: "Normal",
  9510. height: math.unit(2.4, "meters"),
  9511. default: true
  9512. },
  9513. {
  9514. name: "Smaller Macro",
  9515. height: math.unit(120, "meters")
  9516. },
  9517. {
  9518. name: "Bigger Macro",
  9519. height: math.unit(1.2, "km")
  9520. },
  9521. {
  9522. name: "Megamacro",
  9523. height: math.unit(15, "kilometers")
  9524. },
  9525. {
  9526. name: "Gigamacro",
  9527. height: math.unit(2000, "km")
  9528. },
  9529. {
  9530. name: "Teramacro",
  9531. height: math.unit(500000, "km")
  9532. },
  9533. ]
  9534. ))
  9535. characterMakers.push(() => makeCharacter(
  9536. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9537. {
  9538. side: {
  9539. height: math.unit(6, "feet"),
  9540. name: "Side",
  9541. image: {
  9542. source: "./media/characters/ailbhe/side.svg",
  9543. extra: 757 / 464,
  9544. bottom: 0.041
  9545. }
  9546. },
  9547. },
  9548. [
  9549. {
  9550. name: "Normal",
  9551. height: math.unit(1.07, "meters"),
  9552. default: true
  9553. },
  9554. ]
  9555. ))
  9556. characterMakers.push(() => makeCharacter(
  9557. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9558. {
  9559. front: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(120, "kg"),
  9562. name: "Front",
  9563. image: {
  9564. source: "./media/characters/zevulfius/front.svg",
  9565. extra: 965 / 903
  9566. }
  9567. },
  9568. side: {
  9569. height: math.unit(6, "feet"),
  9570. weight: math.unit(120, "kg"),
  9571. name: "Side",
  9572. image: {
  9573. source: "./media/characters/zevulfius/side.svg",
  9574. extra: 939 / 900
  9575. }
  9576. },
  9577. back: {
  9578. height: math.unit(6, "feet"),
  9579. weight: math.unit(120, "kg"),
  9580. name: "Back",
  9581. image: {
  9582. source: "./media/characters/zevulfius/back.svg",
  9583. extra: 918 / 854,
  9584. bottom: 0.005
  9585. }
  9586. },
  9587. foot: {
  9588. height: math.unit(6 / 3.72, "feet"),
  9589. name: "Foot",
  9590. image: {
  9591. source: "./media/characters/zevulfius/foot.svg"
  9592. }
  9593. },
  9594. },
  9595. [
  9596. {
  9597. name: "Macro",
  9598. height: math.unit(750, "meters")
  9599. },
  9600. {
  9601. name: "Megamacro",
  9602. height: math.unit(20, "km"),
  9603. default: true
  9604. },
  9605. {
  9606. name: "Gigamacro",
  9607. height: math.unit(2000, "km")
  9608. },
  9609. {
  9610. name: "Teramacro",
  9611. height: math.unit(250000, "km")
  9612. },
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9617. {
  9618. front: {
  9619. height: math.unit(100, "feet"),
  9620. weight: math.unit(350, "kg"),
  9621. name: "Front",
  9622. image: {
  9623. source: "./media/characters/rikes/front.svg",
  9624. extra: 1565 / 1483,
  9625. bottom: 0.017
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Macro",
  9632. height: math.unit(100, "feet"),
  9633. default: true
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9639. {
  9640. anthro: {
  9641. height: math.unit(8, "feet"),
  9642. weight: math.unit(120, "kg"),
  9643. name: "Anthro",
  9644. image: {
  9645. source: "./media/characters/adam-silver-mane/anthro.svg",
  9646. extra: 5743 / 5339,
  9647. bottom: 0.07
  9648. }
  9649. },
  9650. taur: {
  9651. height: math.unit(16, "feet"),
  9652. weight: math.unit(1500, "kg"),
  9653. name: "Taur",
  9654. image: {
  9655. source: "./media/characters/adam-silver-mane/taur.svg",
  9656. extra: 1713 / 1571,
  9657. bottom: 0.01
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(8, "feet")
  9665. },
  9666. {
  9667. name: "Minimacro",
  9668. height: math.unit(80, "feet")
  9669. },
  9670. {
  9671. name: "Macro",
  9672. height: math.unit(800, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(8000, "feet")
  9678. },
  9679. {
  9680. name: "Gigamacro",
  9681. height: math.unit(800, "miles")
  9682. },
  9683. {
  9684. name: "Teramacro",
  9685. height: math.unit(80000, "miles")
  9686. },
  9687. {
  9688. name: "Celestial",
  9689. height: math.unit(8e6, "miles")
  9690. },
  9691. {
  9692. name: "Star Dragon",
  9693. height: math.unit(800000, "parsecs")
  9694. },
  9695. {
  9696. name: "Godly",
  9697. height: math.unit(800, "teraparsecs")
  9698. },
  9699. ]
  9700. ))
  9701. characterMakers.push(() => makeCharacter(
  9702. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9703. {
  9704. front: {
  9705. height: math.unit(6, "feet"),
  9706. weight: math.unit(150, "lb"),
  9707. name: "Front",
  9708. image: {
  9709. source: "./media/characters/ky'owin/front.svg",
  9710. extra: 3888 / 3068,
  9711. bottom: 0.015
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(6 + 8 / 12, "feet")
  9719. },
  9720. {
  9721. name: "Large",
  9722. height: math.unit(68, "feet")
  9723. },
  9724. {
  9725. name: "Macro",
  9726. height: math.unit(132, "feet")
  9727. },
  9728. {
  9729. name: "Macro+",
  9730. height: math.unit(340, "feet")
  9731. },
  9732. {
  9733. name: "Macro++",
  9734. height: math.unit(680, "feet"),
  9735. default: true
  9736. },
  9737. {
  9738. name: "Megamacro",
  9739. height: math.unit(1, "mile")
  9740. },
  9741. {
  9742. name: "Megamacro+",
  9743. height: math.unit(10, "miles")
  9744. },
  9745. ]
  9746. ))
  9747. characterMakers.push(() => makeCharacter(
  9748. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9749. {
  9750. front: {
  9751. height: math.unit(4, "feet"),
  9752. weight: math.unit(50, "lb"),
  9753. name: "Front",
  9754. image: {
  9755. source: "./media/characters/mal/front.svg",
  9756. extra: 785 / 724,
  9757. bottom: 0.07
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(4, "inches")
  9765. },
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(4, "feet"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(200, "feet")
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(150, "lb"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/jordan-deware/front.svg",
  9786. extra: 1191 / 1012
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Nano",
  9793. height: math.unit(0.01, "mm")
  9794. },
  9795. {
  9796. name: "Minimicro",
  9797. height: math.unit(1, "mm")
  9798. },
  9799. {
  9800. name: "Micro",
  9801. height: math.unit(0.5, "inches")
  9802. },
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(4, "feet"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "Minimacro",
  9810. height: math.unit(40, "meters")
  9811. },
  9812. {
  9813. name: "Small Macro",
  9814. height: math.unit(400, "meters")
  9815. },
  9816. {
  9817. name: "Macro",
  9818. height: math.unit(4, "miles")
  9819. },
  9820. {
  9821. name: "Megamacro",
  9822. height: math.unit(40, "miles")
  9823. },
  9824. {
  9825. name: "Megamacro+",
  9826. height: math.unit(400, "miles")
  9827. },
  9828. {
  9829. name: "Gigamacro",
  9830. height: math.unit(400000, "miles")
  9831. },
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9836. {
  9837. side: {
  9838. height: math.unit(6, "feet"),
  9839. weight: math.unit(150, "lb"),
  9840. name: "Side",
  9841. image: {
  9842. source: "./media/characters/kimiko/side.svg",
  9843. extra: 600 / 358
  9844. }
  9845. },
  9846. },
  9847. [
  9848. {
  9849. name: "Normal",
  9850. height: math.unit(15, "feet"),
  9851. default: true
  9852. },
  9853. {
  9854. name: "Macro",
  9855. height: math.unit(220, "feet")
  9856. },
  9857. {
  9858. name: "Macro+",
  9859. height: math.unit(1450, "feet")
  9860. },
  9861. {
  9862. name: "Megamacro",
  9863. height: math.unit(11500, "feet")
  9864. },
  9865. {
  9866. name: "Gigamacro",
  9867. height: math.unit(9500, "miles")
  9868. },
  9869. {
  9870. name: "Teramacro",
  9871. height: math.unit(2208005005, "miles")
  9872. },
  9873. {
  9874. name: "Examacro",
  9875. height: math.unit(2750, "parsecs")
  9876. },
  9877. {
  9878. name: "Zettamacro",
  9879. height: math.unit(101500, "parsecs")
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(70, "kg"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/andrew-sleepy/front.svg"
  9892. }
  9893. },
  9894. side: {
  9895. height: math.unit(6, "feet"),
  9896. weight: math.unit(70, "kg"),
  9897. name: "Side",
  9898. image: {
  9899. source: "./media/characters/andrew-sleepy/side.svg"
  9900. }
  9901. },
  9902. },
  9903. [
  9904. {
  9905. name: "Micro",
  9906. height: math.unit(1, "mm"),
  9907. default: true
  9908. },
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9913. {
  9914. front: {
  9915. height: math.unit(6, "feet"),
  9916. weight: math.unit(150, "lb"),
  9917. name: "Front",
  9918. image: {
  9919. source: "./media/characters/judio/front.svg",
  9920. extra: 1258 / 1110
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(5 + 6 / 12, "feet")
  9928. },
  9929. {
  9930. name: "Macro",
  9931. height: math.unit(1000, "feet"),
  9932. default: true
  9933. },
  9934. {
  9935. name: "Megamacro",
  9936. height: math.unit(10, "miles")
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(6, "feet"),
  9945. weight: math.unit(68, "kg"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/nomaxice/front.svg",
  9949. extra: 1498 / 1073,
  9950. bottom: 0.075
  9951. }
  9952. },
  9953. foot: {
  9954. height: math.unit(1.1, "feet"),
  9955. name: "Foot",
  9956. image: {
  9957. source: "./media/characters/nomaxice/foot.svg"
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Micro",
  9964. height: math.unit(8, "cm")
  9965. },
  9966. {
  9967. name: "Norm",
  9968. height: math.unit(1.82, "m")
  9969. },
  9970. {
  9971. name: "Norm+",
  9972. height: math.unit(8.8, "feet")
  9973. },
  9974. {
  9975. name: "Big",
  9976. height: math.unit(8, "meters"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Macro",
  9981. height: math.unit(18, "meters")
  9982. },
  9983. {
  9984. name: "Macro+",
  9985. height: math.unit(88, "meters")
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(12, "feet"),
  9994. weight: math.unit(1.5, "tons"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/dydros/front.svg",
  9998. extra: 863 / 800,
  9999. bottom: 0.015
  10000. }
  10001. },
  10002. back: {
  10003. height: math.unit(12, "feet"),
  10004. weight: math.unit(1.5, "tons"),
  10005. name: "Back",
  10006. image: {
  10007. source: "./media/characters/dydros/back.svg",
  10008. extra: 900 / 843,
  10009. bottom: 0.005
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(12, "feet"),
  10017. default: true
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(6, "feet"),
  10026. weight: math.unit(100, "kg"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/riggi/front.svg",
  10030. extra: 5787 / 5303
  10031. }
  10032. },
  10033. hyper: {
  10034. height: math.unit(6 * 5 / 3, "feet"),
  10035. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10036. name: "Hyper",
  10037. image: {
  10038. source: "./media/characters/riggi/hyper.svg",
  10039. extra: 3595 / 3485
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Small Macro",
  10046. height: math.unit(50, "feet")
  10047. },
  10048. {
  10049. name: "Default",
  10050. height: math.unit(200, "feet"),
  10051. default: true
  10052. },
  10053. {
  10054. name: "Loom",
  10055. height: math.unit(10000, "feet")
  10056. },
  10057. {
  10058. name: "Cruising Altitude",
  10059. height: math.unit(30000, "feet")
  10060. },
  10061. {
  10062. name: "Megamacro",
  10063. height: math.unit(100, "miles")
  10064. },
  10065. {
  10066. name: "Continent Sized",
  10067. height: math.unit(2800, "miles")
  10068. },
  10069. {
  10070. name: "Earth Sized",
  10071. height: math.unit(8000, "miles")
  10072. },
  10073. ]
  10074. ))
  10075. characterMakers.push(() => makeCharacter(
  10076. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10077. {
  10078. front: {
  10079. height: math.unit(6, "feet"),
  10080. weight: math.unit(250, "lb"),
  10081. name: "Front",
  10082. image: {
  10083. source: "./media/characters/alexi/front.svg",
  10084. extra: 3483 / 3291,
  10085. bottom: 0.04
  10086. }
  10087. },
  10088. back: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(250, "lb"),
  10091. name: "Back",
  10092. image: {
  10093. source: "./media/characters/alexi/back.svg",
  10094. extra: 3533 / 3356,
  10095. bottom: 0.021
  10096. }
  10097. },
  10098. frontTransforming: {
  10099. height: math.unit(8.58, "feet"),
  10100. weight: math.unit(1300, "lb"),
  10101. name: "Transforming",
  10102. image: {
  10103. source: "./media/characters/alexi/front-transforming.svg",
  10104. extra: 437 / 409,
  10105. bottom: 19 / 458.66
  10106. }
  10107. },
  10108. frontTransformed: {
  10109. height: math.unit(12.5, "feet"),
  10110. weight: math.unit(4000, "lb"),
  10111. name: "Transformed",
  10112. image: {
  10113. source: "./media/characters/alexi/front-transformed.svg",
  10114. extra: 639 / 614,
  10115. bottom: 30.55 / 671
  10116. }
  10117. },
  10118. },
  10119. [
  10120. {
  10121. name: "Normal",
  10122. height: math.unit(3, "meters"),
  10123. default: true
  10124. },
  10125. {
  10126. name: "Minimacro",
  10127. height: math.unit(30, "meters")
  10128. },
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(500, "meters")
  10132. },
  10133. {
  10134. name: "Megamacro",
  10135. height: math.unit(9000, "km")
  10136. },
  10137. {
  10138. name: "Teramacro",
  10139. height: math.unit(384000, "km")
  10140. },
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10145. {
  10146. front: {
  10147. height: math.unit(6, "feet"),
  10148. weight: math.unit(150, "lb"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/kayroo/front.svg",
  10152. extra: 1153 / 1038,
  10153. bottom: 0.06
  10154. }
  10155. },
  10156. foot: {
  10157. height: math.unit(6, "feet"),
  10158. weight: math.unit(150, "lb"),
  10159. name: "Foot",
  10160. image: {
  10161. source: "./media/characters/kayroo/foot.svg"
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Normal",
  10168. height: math.unit(8, "feet"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Minimacro",
  10173. height: math.unit(250, "feet")
  10174. },
  10175. {
  10176. name: "Macro",
  10177. height: math.unit(2800, "feet")
  10178. },
  10179. {
  10180. name: "Megamacro",
  10181. height: math.unit(5200, "feet")
  10182. },
  10183. {
  10184. name: "Gigamacro",
  10185. height: math.unit(27000, "feet")
  10186. },
  10187. {
  10188. name: "Omega",
  10189. height: math.unit(45000, "feet")
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10195. {
  10196. front: {
  10197. height: math.unit(18, "feet"),
  10198. weight: math.unit(5800, "lb"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/rhys/front.svg",
  10202. extra: 3386 / 3090,
  10203. bottom: 0.07
  10204. }
  10205. },
  10206. },
  10207. [
  10208. {
  10209. name: "Normal",
  10210. height: math.unit(18, "feet"),
  10211. default: true
  10212. },
  10213. {
  10214. name: "Working Size",
  10215. height: math.unit(200, "feet")
  10216. },
  10217. {
  10218. name: "Demolition Size",
  10219. height: math.unit(2000, "feet")
  10220. },
  10221. {
  10222. name: "Maximum Licensed Size",
  10223. height: math.unit(5, "miles")
  10224. },
  10225. {
  10226. name: "Maximum Observed Size",
  10227. height: math.unit(10, "yottameters")
  10228. },
  10229. ]
  10230. ))
  10231. characterMakers.push(() => makeCharacter(
  10232. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10233. {
  10234. front: {
  10235. height: math.unit(6, "feet"),
  10236. weight: math.unit(250, "lb"),
  10237. name: "Front",
  10238. image: {
  10239. source: "./media/characters/toto/front.svg",
  10240. extra: 527 / 479,
  10241. bottom: 0.05
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Micro",
  10248. height: math.unit(3, "feet")
  10249. },
  10250. {
  10251. name: "Normal",
  10252. height: math.unit(10, "feet")
  10253. },
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(150, "feet"),
  10257. default: true
  10258. },
  10259. {
  10260. name: "Megamacro",
  10261. height: math.unit(1200, "feet")
  10262. },
  10263. ]
  10264. ))
  10265. characterMakers.push(() => makeCharacter(
  10266. { name: "King", species: ["lion"], tags: ["anthro"] },
  10267. {
  10268. back: {
  10269. height: math.unit(6, "feet"),
  10270. weight: math.unit(150, "lb"),
  10271. name: "Back",
  10272. image: {
  10273. source: "./media/characters/king/back.svg"
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Micro",
  10280. height: math.unit(2, "inches")
  10281. },
  10282. {
  10283. name: "Normal",
  10284. height: math.unit(8, "feet")
  10285. },
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(200, "feet"),
  10289. default: true
  10290. },
  10291. {
  10292. name: "Megamacro",
  10293. height: math.unit(50, "miles")
  10294. },
  10295. ]
  10296. ))
  10297. characterMakers.push(() => makeCharacter(
  10298. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10299. {
  10300. anthro: {
  10301. height: math.unit(6 + 5 / 12, "feet"),
  10302. weight: math.unit(280, "lb"),
  10303. name: "Anthro",
  10304. image: {
  10305. source: "./media/characters/cordite/anthro.svg",
  10306. extra: 1986 / 1905,
  10307. bottom: 0.025
  10308. }
  10309. },
  10310. feral: {
  10311. height: math.unit(2, "feet"),
  10312. weight: math.unit(90, "lb"),
  10313. name: "Feral",
  10314. image: {
  10315. source: "./media/characters/cordite/feral.svg",
  10316. extra: 1260 / 755,
  10317. bottom: 0.05
  10318. }
  10319. },
  10320. },
  10321. [
  10322. {
  10323. name: "Normal",
  10324. height: math.unit(6 + 5 / 12, "feet"),
  10325. default: true
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10331. {
  10332. front: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(150, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/pianostrong/front.svg",
  10338. extra: 6577 / 6254,
  10339. bottom: 0.02
  10340. }
  10341. },
  10342. side: {
  10343. height: math.unit(6, "feet"),
  10344. weight: math.unit(150, "lb"),
  10345. name: "Side",
  10346. image: {
  10347. source: "./media/characters/pianostrong/side.svg",
  10348. extra: 6106 / 5730
  10349. }
  10350. },
  10351. back: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(150, "lb"),
  10354. name: "Back",
  10355. image: {
  10356. source: "./media/characters/pianostrong/back.svg",
  10357. extra: 6085 / 5733,
  10358. bottom: 0.01
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Macro",
  10365. height: math.unit(100, "feet")
  10366. },
  10367. {
  10368. name: "Macro+",
  10369. height: math.unit(300, "feet"),
  10370. default: true
  10371. },
  10372. {
  10373. name: "Macro++",
  10374. height: math.unit(1000, "feet")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(6, "feet"),
  10383. weight: math.unit(150, "lb"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/kona/front.svg",
  10387. extra: 2960 / 2629,
  10388. bottom: 0.005
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(11 + 8 / 12, "feet")
  10396. },
  10397. {
  10398. name: "Macro",
  10399. height: math.unit(850, "feet"),
  10400. default: true
  10401. },
  10402. {
  10403. name: "Macro+",
  10404. height: math.unit(1.5, "km"),
  10405. default: true
  10406. },
  10407. {
  10408. name: "Megamacro",
  10409. height: math.unit(80, "miles")
  10410. },
  10411. {
  10412. name: "Gigamacro",
  10413. height: math.unit(3500, "miles")
  10414. },
  10415. ]
  10416. ))
  10417. characterMakers.push(() => makeCharacter(
  10418. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10419. {
  10420. side: {
  10421. height: math.unit(1.9, "meters"),
  10422. weight: math.unit(326, "kg"),
  10423. name: "Side",
  10424. image: {
  10425. source: "./media/characters/levi/side.svg",
  10426. extra: 1704 / 1334,
  10427. bottom: 0.02
  10428. }
  10429. },
  10430. },
  10431. [
  10432. {
  10433. name: "Normal",
  10434. height: math.unit(1.9, "meters"),
  10435. default: true
  10436. },
  10437. {
  10438. name: "Macro",
  10439. height: math.unit(20, "meters")
  10440. },
  10441. {
  10442. name: "Macro+",
  10443. height: math.unit(200, "meters")
  10444. },
  10445. {
  10446. name: "Megamacro",
  10447. height: math.unit(2, "km")
  10448. },
  10449. {
  10450. name: "Megamacro+",
  10451. height: math.unit(20, "km")
  10452. },
  10453. {
  10454. name: "Gigamacro",
  10455. height: math.unit(2500, "km")
  10456. },
  10457. {
  10458. name: "Gigamacro+",
  10459. height: math.unit(120000, "km")
  10460. },
  10461. {
  10462. name: "Teramacro",
  10463. height: math.unit(7.77e6, "km")
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10469. {
  10470. front: {
  10471. height: math.unit(6 + 4 / 12, "feet"),
  10472. weight: math.unit(188, "lb"),
  10473. name: "Front",
  10474. image: {
  10475. source: "./media/characters/bmc/front.svg",
  10476. extra: 1067 / 1022,
  10477. bottom: 0.047
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Human-sized",
  10484. height: math.unit(6 + 4 / 12, "feet")
  10485. },
  10486. {
  10487. name: "Small",
  10488. height: math.unit(250, "feet")
  10489. },
  10490. {
  10491. name: "Normal",
  10492. height: math.unit(1250, "feet"),
  10493. default: true
  10494. },
  10495. {
  10496. name: "Good Day",
  10497. height: math.unit(88, "miles")
  10498. },
  10499. {
  10500. name: "Largest Measured Size",
  10501. height: math.unit(11.2e6, "lightyears")
  10502. },
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10507. {
  10508. front: {
  10509. height: math.unit(20, "feet"),
  10510. weight: math.unit(2016, "kg"),
  10511. name: "Front",
  10512. image: {
  10513. source: "./media/characters/sven-the-kaiju/front.svg",
  10514. extra: 1479 / 1449,
  10515. bottom: 0.05
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Fairy",
  10522. height: math.unit(6, "inches")
  10523. },
  10524. {
  10525. name: "Normal",
  10526. height: math.unit(20, "feet"),
  10527. default: true
  10528. },
  10529. {
  10530. name: "Rampage",
  10531. height: math.unit(200, "feet")
  10532. },
  10533. {
  10534. name: "Archfey Forest Guardian",
  10535. height: math.unit(1, "mile")
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(4, "meters"),
  10544. weight: math.unit(2, "tons"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/marik/front.svg",
  10548. extra: 1057 / 1003,
  10549. bottom: 0.08
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Normal",
  10556. height: math.unit(4, "meters"),
  10557. default: true
  10558. },
  10559. {
  10560. name: "Macro",
  10561. height: math.unit(20, "meters")
  10562. },
  10563. {
  10564. name: "Megamacro",
  10565. height: math.unit(50, "km")
  10566. },
  10567. {
  10568. name: "Gigamacro",
  10569. height: math.unit(100, "km")
  10570. },
  10571. {
  10572. name: "Alpha Macro",
  10573. height: math.unit(7.88e7, "yottameters")
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10579. {
  10580. front: {
  10581. height: math.unit(6, "feet"),
  10582. weight: math.unit(110, "lb"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/mel/front.svg",
  10586. extra: 736 / 617,
  10587. bottom: 0.017
  10588. }
  10589. },
  10590. },
  10591. [
  10592. {
  10593. name: "Pico",
  10594. height: math.unit(3, "pm")
  10595. },
  10596. {
  10597. name: "Nano",
  10598. height: math.unit(3, "nm")
  10599. },
  10600. {
  10601. name: "Micro",
  10602. height: math.unit(0.3, "mm"),
  10603. default: true
  10604. },
  10605. {
  10606. name: "Micro+",
  10607. height: math.unit(3, "mm")
  10608. },
  10609. {
  10610. name: "Normal",
  10611. height: math.unit(5 + 10.5 / 12, "feet")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10617. {
  10618. kaiju: {
  10619. height: math.unit(1.75, "meters"),
  10620. weight: math.unit(55, "kg"),
  10621. name: "Kaiju",
  10622. image: {
  10623. source: "./media/characters/lykonous/kaiju.svg",
  10624. extra: 1055 / 946,
  10625. bottom: 0.135
  10626. }
  10627. },
  10628. },
  10629. [
  10630. {
  10631. name: "Normal",
  10632. height: math.unit(2.5, "meters"),
  10633. default: true
  10634. },
  10635. {
  10636. name: "Kaiju Dragon",
  10637. height: math.unit(60, "meters")
  10638. },
  10639. {
  10640. name: "Mega Kaiju",
  10641. height: math.unit(120, "km")
  10642. },
  10643. {
  10644. name: "Giga Kaiju",
  10645. height: math.unit(200, "megameters")
  10646. },
  10647. {
  10648. name: "Terra Kaiju",
  10649. height: math.unit(400, "gigameters")
  10650. },
  10651. {
  10652. name: "Kaiju Dragon God",
  10653. height: math.unit(13000, "exaparsecs")
  10654. },
  10655. ]
  10656. ))
  10657. characterMakers.push(() => makeCharacter(
  10658. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10659. {
  10660. front: {
  10661. height: math.unit(6, "feet"),
  10662. weight: math.unit(150, "lb"),
  10663. name: "Front",
  10664. image: {
  10665. source: "./media/characters/blü/front.svg",
  10666. extra: 1883 / 1564,
  10667. bottom: 0.031
  10668. }
  10669. },
  10670. },
  10671. [
  10672. {
  10673. name: "Normal",
  10674. height: math.unit(13, "feet"),
  10675. default: true
  10676. },
  10677. {
  10678. name: "Big Boi",
  10679. height: math.unit(150, "meters")
  10680. },
  10681. {
  10682. name: "Mini Stomper",
  10683. height: math.unit(300, "meters")
  10684. },
  10685. {
  10686. name: "Macro",
  10687. height: math.unit(1000, "meters")
  10688. },
  10689. {
  10690. name: "Megamacro",
  10691. height: math.unit(11000, "meters")
  10692. },
  10693. {
  10694. name: "Gigamacro",
  10695. height: math.unit(11000, "km")
  10696. },
  10697. {
  10698. name: "Teramacro",
  10699. height: math.unit(420000, "km")
  10700. },
  10701. {
  10702. name: "Examacro",
  10703. height: math.unit(120, "parsecs")
  10704. },
  10705. {
  10706. name: "God Tho",
  10707. height: math.unit(98000000000, "parsecs")
  10708. },
  10709. ]
  10710. ))
  10711. characterMakers.push(() => makeCharacter(
  10712. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10713. {
  10714. taurFront: {
  10715. height: math.unit(6, "feet"),
  10716. weight: math.unit(200, "lb"),
  10717. name: "Taur (Front)",
  10718. image: {
  10719. source: "./media/characters/scales/taur-front.svg",
  10720. extra: 1,
  10721. bottom: 0.05
  10722. }
  10723. },
  10724. taurBack: {
  10725. height: math.unit(6, "feet"),
  10726. weight: math.unit(200, "lb"),
  10727. name: "Taur (Back)",
  10728. image: {
  10729. source: "./media/characters/scales/taur-back.svg",
  10730. extra: 1,
  10731. bottom: 0.08
  10732. }
  10733. },
  10734. anthro: {
  10735. height: math.unit(6 * 7 / 12, "feet"),
  10736. weight: math.unit(100, "lb"),
  10737. name: "Anthro",
  10738. image: {
  10739. source: "./media/characters/scales/anthro.svg",
  10740. extra: 1,
  10741. bottom: 0.06
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(12, "feet"),
  10749. default: true
  10750. },
  10751. ]
  10752. ))
  10753. characterMakers.push(() => makeCharacter(
  10754. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10755. {
  10756. front: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(150, "lb"),
  10759. name: "Front",
  10760. image: {
  10761. source: "./media/characters/koragos/front.svg",
  10762. extra: 841 / 794,
  10763. bottom: 0.035
  10764. }
  10765. },
  10766. back: {
  10767. height: math.unit(6, "feet"),
  10768. weight: math.unit(150, "lb"),
  10769. name: "Back",
  10770. image: {
  10771. source: "./media/characters/koragos/back.svg",
  10772. extra: 841 / 810,
  10773. bottom: 0.022
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(6 + 11 / 12, "feet"),
  10781. default: true
  10782. },
  10783. {
  10784. name: "Macro",
  10785. height: math.unit(490, "feet")
  10786. },
  10787. {
  10788. name: "Megamacro",
  10789. height: math.unit(10, "miles")
  10790. },
  10791. {
  10792. name: "Gigamacro",
  10793. height: math.unit(50, "miles")
  10794. },
  10795. ]
  10796. ))
  10797. characterMakers.push(() => makeCharacter(
  10798. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10799. {
  10800. front: {
  10801. height: math.unit(6, "feet"),
  10802. weight: math.unit(250, "lb"),
  10803. name: "Front",
  10804. image: {
  10805. source: "./media/characters/xylrem/front.svg",
  10806. extra: 3323 / 3050,
  10807. bottom: 0.065
  10808. }
  10809. },
  10810. },
  10811. [
  10812. {
  10813. name: "Micro",
  10814. height: math.unit(4, "feet")
  10815. },
  10816. {
  10817. name: "Normal",
  10818. height: math.unit(16, "feet"),
  10819. default: true
  10820. },
  10821. {
  10822. name: "Macro",
  10823. height: math.unit(2720, "feet")
  10824. },
  10825. {
  10826. name: "Megamacro",
  10827. height: math.unit(25000, "miles")
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10833. {
  10834. front: {
  10835. height: math.unit(8, "feet"),
  10836. weight: math.unit(250, "kg"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/ikideru/front.svg",
  10840. extra: 930 / 870,
  10841. bottom: 0.087
  10842. }
  10843. },
  10844. back: {
  10845. height: math.unit(8, "feet"),
  10846. weight: math.unit(250, "kg"),
  10847. name: "Back",
  10848. image: {
  10849. source: "./media/characters/ikideru/back.svg",
  10850. extra: 919 / 852,
  10851. bottom: 0.055
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Rare",
  10858. height: math.unit(8, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Playful Loom",
  10863. height: math.unit(80, "feet")
  10864. },
  10865. {
  10866. name: "City Leaner",
  10867. height: math.unit(230, "feet")
  10868. },
  10869. {
  10870. name: "Megamacro",
  10871. height: math.unit(2500, "feet")
  10872. },
  10873. {
  10874. name: "Gigamacro",
  10875. height: math.unit(26400, "feet")
  10876. },
  10877. {
  10878. name: "Tectonic Shifter",
  10879. height: math.unit(1.7, "megameters")
  10880. },
  10881. {
  10882. name: "Planet Carer",
  10883. height: math.unit(21, "megameters")
  10884. },
  10885. {
  10886. name: "God",
  10887. height: math.unit(11157.22, "parsecs")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(6, "feet"),
  10896. weight: math.unit(120, "lb"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/neo/front.svg"
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Micro",
  10906. height: math.unit(2, "inches"),
  10907. default: true
  10908. },
  10909. {
  10910. name: "Human Size",
  10911. height: math.unit(5 + 8 / 12, "feet")
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(13 + 10 / 12, "feet"),
  10920. weight: math.unit(5320, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/chauncey-chantz/front.svg",
  10924. extra: 1587 / 1435,
  10925. bottom: 0.02
  10926. }
  10927. },
  10928. },
  10929. [
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(13 + 10 / 12, "feet"),
  10933. default: true
  10934. },
  10935. {
  10936. name: "Macro",
  10937. height: math.unit(45, "feet")
  10938. },
  10939. {
  10940. name: "Megamacro",
  10941. height: math.unit(250, "miles")
  10942. },
  10943. {
  10944. name: "Planetary",
  10945. height: math.unit(10000, "miles")
  10946. },
  10947. {
  10948. name: "Galactic",
  10949. height: math.unit(40000, "parsecs")
  10950. },
  10951. {
  10952. name: "Universal",
  10953. height: math.unit(1, "yottameter")
  10954. },
  10955. ]
  10956. ))
  10957. characterMakers.push(() => makeCharacter(
  10958. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10959. {
  10960. front: {
  10961. height: math.unit(6, "feet"),
  10962. weight: math.unit(150, "lb"),
  10963. name: "Front",
  10964. image: {
  10965. source: "./media/characters/epifox/front.svg",
  10966. extra: 1,
  10967. bottom: 0.075
  10968. }
  10969. },
  10970. },
  10971. [
  10972. {
  10973. name: "Micro",
  10974. height: math.unit(6, "inches")
  10975. },
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(12, "feet"),
  10979. default: true
  10980. },
  10981. {
  10982. name: "Macro",
  10983. height: math.unit(3810, "feet")
  10984. },
  10985. {
  10986. name: "Megamacro",
  10987. height: math.unit(500, "miles")
  10988. },
  10989. ]
  10990. ))
  10991. characterMakers.push(() => makeCharacter(
  10992. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10993. {
  10994. front: {
  10995. height: math.unit(1.8796, "m"),
  10996. weight: math.unit(230, "lb"),
  10997. name: "Front",
  10998. image: {
  10999. source: "./media/characters/colin-t/front.svg",
  11000. extra: 1272 / 1193,
  11001. bottom: 0.07
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Micro",
  11008. height: math.unit(0.571, "meters")
  11009. },
  11010. {
  11011. name: "Normal",
  11012. height: math.unit(1.8796, "meters"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Tall",
  11017. height: math.unit(4, "meters")
  11018. },
  11019. {
  11020. name: "Macro",
  11021. height: math.unit(67.241, "meters")
  11022. },
  11023. {
  11024. name: "Megamacro",
  11025. height: math.unit(371.856, "meters")
  11026. },
  11027. {
  11028. name: "Planetary",
  11029. height: math.unit(12631.5689, "km")
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11035. {
  11036. front: {
  11037. height: math.unit(1.85, "meters"),
  11038. weight: math.unit(80, "kg"),
  11039. name: "Front",
  11040. image: {
  11041. source: "./media/characters/matvei/front.svg",
  11042. extra: 614 / 594,
  11043. bottom: 0.01
  11044. }
  11045. },
  11046. },
  11047. [
  11048. {
  11049. name: "Normal",
  11050. height: math.unit(1.85, "meters"),
  11051. default: true
  11052. },
  11053. ]
  11054. ))
  11055. characterMakers.push(() => makeCharacter(
  11056. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11057. {
  11058. front: {
  11059. height: math.unit(5 + 9 / 12, "feet"),
  11060. weight: math.unit(70, "lb"),
  11061. name: "Front",
  11062. image: {
  11063. source: "./media/characters/quincy/front.svg",
  11064. extra: 3041 / 2751
  11065. }
  11066. },
  11067. back: {
  11068. height: math.unit(5 + 9 / 12, "feet"),
  11069. weight: math.unit(70, "lb"),
  11070. name: "Back",
  11071. image: {
  11072. source: "./media/characters/quincy/back.svg",
  11073. extra: 3041 / 2751
  11074. }
  11075. },
  11076. flying: {
  11077. height: math.unit(5 + 4 / 12, "feet"),
  11078. weight: math.unit(70, "lb"),
  11079. name: "Flying",
  11080. image: {
  11081. source: "./media/characters/quincy/flying.svg",
  11082. extra: 1044 / 930
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Micro",
  11089. height: math.unit(3, "cm")
  11090. },
  11091. {
  11092. name: "Normal",
  11093. height: math.unit(5 + 9 / 12, "feet")
  11094. },
  11095. {
  11096. name: "Macro",
  11097. height: math.unit(200, "meters"),
  11098. default: true
  11099. },
  11100. {
  11101. name: "Megamacro",
  11102. height: math.unit(1000, "meters")
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(4 + 7 / 12, "feet"),
  11111. weight: math.unit(150, "lb"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/vanrel/front.svg",
  11115. extra: 1,
  11116. bottom: 0.02
  11117. }
  11118. },
  11119. elemental: {
  11120. height: math.unit(3, "feet"),
  11121. weight: math.unit(150, "lb"),
  11122. name: "Elemental",
  11123. image: {
  11124. source: "./media/characters/vanrel/elemental.svg",
  11125. extra: 192.3 / 162.8,
  11126. bottom: 1.79 / 194.17
  11127. }
  11128. },
  11129. side: {
  11130. height: math.unit(4 + 7 / 12, "feet"),
  11131. weight: math.unit(150, "lb"),
  11132. name: "Side",
  11133. image: {
  11134. source: "./media/characters/vanrel/side.svg",
  11135. extra: 1,
  11136. bottom: 0.025
  11137. }
  11138. },
  11139. tome: {
  11140. height: math.unit(1.35, "feet"),
  11141. weight: math.unit(10, "lb"),
  11142. name: "Vanrel's Tome",
  11143. rename: true,
  11144. image: {
  11145. source: "./media/characters/vanrel/tome.svg"
  11146. }
  11147. },
  11148. beans: {
  11149. height: math.unit(0.89, "feet"),
  11150. name: "Beans",
  11151. image: {
  11152. source: "./media/characters/vanrel/beans.svg"
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(4 + 7 / 12, "feet"),
  11160. default: true
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(7 + 5 / 12, "feet"),
  11169. weight: math.unit(150, "lb"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/kuiper-vanrel/front.svg",
  11173. extra: 1118 / 1068,
  11174. bottom: 0.09
  11175. }
  11176. },
  11177. foot: {
  11178. height: math.unit(0.55, "meters"),
  11179. name: "Foot",
  11180. image: {
  11181. source: "./media/characters/kuiper-vanrel/foot.svg",
  11182. }
  11183. },
  11184. battle: {
  11185. height: math.unit(6.824, "feet"),
  11186. weight: math.unit(150, "lb"),
  11187. name: "Battle",
  11188. image: {
  11189. source: "./media/characters/kuiper-vanrel/battle.svg",
  11190. extra: 1466 / 1327,
  11191. bottom: 29 / 1492.5
  11192. }
  11193. },
  11194. battleAlt: {
  11195. height: math.unit(6.824, "feet"),
  11196. weight: math.unit(150, "lb"),
  11197. name: "Battle (Alt)",
  11198. image: {
  11199. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11200. extra: 2081/1965,
  11201. bottom: 40/2121
  11202. }
  11203. },
  11204. },
  11205. [
  11206. {
  11207. name: "Normal",
  11208. height: math.unit(7 + 5 / 12, "feet"),
  11209. default: true
  11210. },
  11211. ]
  11212. ))
  11213. characterMakers.push(() => makeCharacter(
  11214. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11215. {
  11216. front: {
  11217. height: math.unit(8 + 5 / 12, "feet"),
  11218. weight: math.unit(150, "lb"),
  11219. name: "Front",
  11220. image: {
  11221. source: "./media/characters/keset-vanrel/front.svg",
  11222. extra: 1150 / 1084,
  11223. bottom: 0.05
  11224. }
  11225. },
  11226. hand: {
  11227. height: math.unit(0.6, "meters"),
  11228. name: "Hand",
  11229. image: {
  11230. source: "./media/characters/keset-vanrel/hand.svg"
  11231. }
  11232. },
  11233. foot: {
  11234. height: math.unit(0.94978, "meters"),
  11235. name: "Foot",
  11236. image: {
  11237. source: "./media/characters/keset-vanrel/foot.svg"
  11238. }
  11239. },
  11240. battle: {
  11241. height: math.unit(7.408, "feet"),
  11242. weight: math.unit(150, "lb"),
  11243. name: "Battle",
  11244. image: {
  11245. source: "./media/characters/keset-vanrel/battle.svg",
  11246. extra: 1890 / 1386,
  11247. bottom: 73.28 / 1970
  11248. }
  11249. },
  11250. },
  11251. [
  11252. {
  11253. name: "Normal",
  11254. height: math.unit(8 + 5 / 12, "feet"),
  11255. default: true
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(150, "lb"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/neos/front.svg",
  11268. extra: 1696 / 992,
  11269. bottom: 0.14
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Normal",
  11276. height: math.unit(54, "cm"),
  11277. default: true
  11278. },
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(100, "m")
  11282. },
  11283. {
  11284. name: "Megamacro",
  11285. height: math.unit(10, "km")
  11286. },
  11287. {
  11288. name: "Megamacro+",
  11289. height: math.unit(100, "km")
  11290. },
  11291. {
  11292. name: "Gigamacro",
  11293. height: math.unit(100, "Mm")
  11294. },
  11295. {
  11296. name: "Teramacro",
  11297. height: math.unit(100, "Gm")
  11298. },
  11299. {
  11300. name: "Examacro",
  11301. height: math.unit(100, "Em")
  11302. },
  11303. {
  11304. name: "Godly",
  11305. height: math.unit(10000, "Ym")
  11306. },
  11307. {
  11308. name: "Beyond Godly",
  11309. height: math.unit(25, "multiverses")
  11310. },
  11311. ]
  11312. ))
  11313. characterMakers.push(() => makeCharacter(
  11314. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11315. {
  11316. feminine: {
  11317. height: math.unit(5, "feet"),
  11318. weight: math.unit(100, "lb"),
  11319. name: "Feminine",
  11320. image: {
  11321. source: "./media/characters/sammy-mouse/feminine.svg",
  11322. extra: 2526 / 2425,
  11323. bottom: 0.123
  11324. }
  11325. },
  11326. masculine: {
  11327. height: math.unit(5, "feet"),
  11328. weight: math.unit(100, "lb"),
  11329. name: "Masculine",
  11330. image: {
  11331. source: "./media/characters/sammy-mouse/masculine.svg",
  11332. extra: 2526 / 2425,
  11333. bottom: 0.123
  11334. }
  11335. },
  11336. },
  11337. [
  11338. {
  11339. name: "Micro",
  11340. height: math.unit(5, "inches")
  11341. },
  11342. {
  11343. name: "Normal",
  11344. height: math.unit(5, "feet"),
  11345. default: true
  11346. },
  11347. {
  11348. name: "Macro",
  11349. height: math.unit(60, "feet")
  11350. },
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11355. {
  11356. front: {
  11357. height: math.unit(4, "feet"),
  11358. weight: math.unit(50, "lb"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/kole/front.svg",
  11362. extra: 1423 / 1303,
  11363. bottom: 0.025
  11364. }
  11365. },
  11366. back: {
  11367. height: math.unit(4, "feet"),
  11368. weight: math.unit(50, "lb"),
  11369. name: "Back",
  11370. image: {
  11371. source: "./media/characters/kole/back.svg",
  11372. extra: 1426 / 1280,
  11373. bottom: 0.02
  11374. }
  11375. },
  11376. },
  11377. [
  11378. {
  11379. name: "Normal",
  11380. height: math.unit(4, "feet"),
  11381. default: true
  11382. },
  11383. ]
  11384. ))
  11385. characterMakers.push(() => makeCharacter(
  11386. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11387. {
  11388. front: {
  11389. height: math.unit(2 + 6 / 12, "feet"),
  11390. weight: math.unit(20, "lb"),
  11391. name: "Front",
  11392. image: {
  11393. source: "./media/characters/rufran/front.svg",
  11394. extra: 2041 / 1839,
  11395. bottom: 0.055
  11396. }
  11397. },
  11398. back: {
  11399. height: math.unit(2 + 6 / 12, "feet"),
  11400. weight: math.unit(20, "lb"),
  11401. name: "Back",
  11402. image: {
  11403. source: "./media/characters/rufran/back.svg",
  11404. extra: 2054 / 1839,
  11405. bottom: 0.01
  11406. }
  11407. },
  11408. hand: {
  11409. height: math.unit(0.2166, "meters"),
  11410. name: "Hand",
  11411. image: {
  11412. source: "./media/characters/rufran/hand.svg"
  11413. }
  11414. },
  11415. foot: {
  11416. height: math.unit(0.185, "meters"),
  11417. name: "Foot",
  11418. image: {
  11419. source: "./media/characters/rufran/foot.svg"
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Micro",
  11426. height: math.unit(1, "inch")
  11427. },
  11428. {
  11429. name: "Normal",
  11430. height: math.unit(2 + 6 / 12, "feet"),
  11431. default: true
  11432. },
  11433. {
  11434. name: "Big",
  11435. height: math.unit(60, "feet")
  11436. },
  11437. {
  11438. name: "Macro",
  11439. height: math.unit(325, "feet")
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11445. {
  11446. front: {
  11447. height: math.unit(0.3, "meters"),
  11448. weight: math.unit(3.5, "kg"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/chip/front.svg",
  11452. extra: 748 / 674
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Micro",
  11459. height: math.unit(1, "inch"),
  11460. default: true
  11461. },
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11466. {
  11467. side: {
  11468. height: math.unit(2.3, "meters"),
  11469. weight: math.unit(3500, "lb"),
  11470. name: "Side",
  11471. image: {
  11472. source: "./media/characters/torvid/side.svg",
  11473. extra: 1972 / 722,
  11474. bottom: 0.035
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(2.3, "meters"),
  11482. default: true
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(2, "meters"),
  11491. weight: math.unit(150.5, "kg"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/susan/front.svg",
  11495. extra: 693 / 635,
  11496. bottom: 0.05
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Megamacro",
  11503. height: math.unit(505, "miles"),
  11504. default: true
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11510. {
  11511. front: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(150, "lb"),
  11514. name: "Front",
  11515. image: {
  11516. source: "./media/characters/raindrops/front.svg",
  11517. extra: 2655 / 2461,
  11518. bottom: 49/2705
  11519. }
  11520. },
  11521. back: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Back",
  11525. image: {
  11526. source: "./media/characters/raindrops/back.svg",
  11527. extra: 2574 / 2400,
  11528. bottom: 65/2634
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Micro",
  11535. height: math.unit(6, "inches")
  11536. },
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(6 + 2 / 12, "feet")
  11540. },
  11541. {
  11542. name: "Macro",
  11543. height: math.unit(131, "feet"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(15, "miles")
  11549. },
  11550. {
  11551. name: "Gigamacro",
  11552. height: math.unit(4000, "miles")
  11553. },
  11554. {
  11555. name: "Teramacro",
  11556. height: math.unit(315000, "miles")
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11562. {
  11563. front: {
  11564. height: math.unit(2.794, "meters"),
  11565. weight: math.unit(325, "kg"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/tezwa/front.svg",
  11569. extra: 2083 / 1906,
  11570. bottom: 0.031
  11571. }
  11572. },
  11573. foot: {
  11574. height: math.unit(0.687, "meters"),
  11575. name: "Foot",
  11576. image: {
  11577. source: "./media/characters/tezwa/foot.svg"
  11578. }
  11579. },
  11580. },
  11581. [
  11582. {
  11583. name: "Normal",
  11584. height: math.unit(9 + 2 / 12, "feet"),
  11585. default: true
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11591. {
  11592. front: {
  11593. height: math.unit(58, "feet"),
  11594. weight: math.unit(89000, "lb"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/typhus/front.svg",
  11598. extra: 816 / 800,
  11599. bottom: 0.065
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Macro",
  11606. height: math.unit(58, "feet"),
  11607. default: true
  11608. },
  11609. ]
  11610. ))
  11611. characterMakers.push(() => makeCharacter(
  11612. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11613. {
  11614. front: {
  11615. height: math.unit(12, "feet"),
  11616. weight: math.unit(6, "tonnes"),
  11617. name: "Front",
  11618. image: {
  11619. source: "./media/characters/lyra-von-wulf/front.svg",
  11620. extra: 1,
  11621. bottom: 0.10
  11622. }
  11623. },
  11624. frontMecha: {
  11625. height: math.unit(12, "feet"),
  11626. weight: math.unit(12, "tonnes"),
  11627. name: "Front (Mecha)",
  11628. image: {
  11629. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11630. extra: 1,
  11631. bottom: 0.042
  11632. }
  11633. },
  11634. maw: {
  11635. height: math.unit(2.2, "feet"),
  11636. name: "Maw",
  11637. image: {
  11638. source: "./media/characters/lyra-von-wulf/maw.svg"
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(12, "feet"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Classic",
  11650. height: math.unit(50, "feet")
  11651. },
  11652. {
  11653. name: "Macro",
  11654. height: math.unit(500, "feet")
  11655. },
  11656. {
  11657. name: "Megamacro",
  11658. height: math.unit(1, "mile")
  11659. },
  11660. {
  11661. name: "Gigamacro",
  11662. height: math.unit(400, "miles")
  11663. },
  11664. {
  11665. name: "Teramacro",
  11666. height: math.unit(22000, "miles")
  11667. },
  11668. {
  11669. name: "Solarmacro",
  11670. height: math.unit(8600000, "miles")
  11671. },
  11672. {
  11673. name: "Galactic",
  11674. height: math.unit(1057000, "lightyears")
  11675. },
  11676. ]
  11677. ))
  11678. characterMakers.push(() => makeCharacter(
  11679. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11680. {
  11681. front: {
  11682. height: math.unit(6 + 10 / 12, "feet"),
  11683. weight: math.unit(150, "lb"),
  11684. name: "Front",
  11685. image: {
  11686. source: "./media/characters/dixon/front.svg",
  11687. extra: 3361 / 3209,
  11688. bottom: 0.01
  11689. }
  11690. },
  11691. },
  11692. [
  11693. {
  11694. name: "Normal",
  11695. height: math.unit(6 + 10 / 12, "feet"),
  11696. default: true
  11697. },
  11698. {
  11699. name: "Big",
  11700. height: math.unit(12, "meters")
  11701. },
  11702. {
  11703. name: "Macro",
  11704. height: math.unit(500, "meters")
  11705. },
  11706. {
  11707. name: "Megamacro",
  11708. height: math.unit(2, "km")
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11714. {
  11715. front: {
  11716. height: math.unit(185, "cm"),
  11717. weight: math.unit(68, "kg"),
  11718. name: "Front",
  11719. image: {
  11720. source: "./media/characters/kauko/front.svg",
  11721. extra: 1455 / 1421,
  11722. bottom: 0.03
  11723. }
  11724. },
  11725. back: {
  11726. height: math.unit(185, "cm"),
  11727. weight: math.unit(68, "kg"),
  11728. name: "Back",
  11729. image: {
  11730. source: "./media/characters/kauko/back.svg",
  11731. extra: 1455 / 1421,
  11732. bottom: 0.004
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(185, "cm"),
  11740. default: true
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(6, "feet"),
  11749. weight: math.unit(150, "kg"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/varg/front.svg",
  11753. extra: 1108 / 1018,
  11754. bottom: 0.0375
  11755. }
  11756. },
  11757. },
  11758. [
  11759. {
  11760. name: "Normal",
  11761. height: math.unit(5, "meters")
  11762. },
  11763. {
  11764. name: "Macro",
  11765. height: math.unit(200, "meters")
  11766. },
  11767. {
  11768. name: "Megamacro",
  11769. height: math.unit(20, "kilometers")
  11770. },
  11771. {
  11772. name: "True Size",
  11773. height: math.unit(211, "km"),
  11774. default: true
  11775. },
  11776. {
  11777. name: "Gigamacro",
  11778. height: math.unit(1000, "km")
  11779. },
  11780. {
  11781. name: "Gigamacro+",
  11782. height: math.unit(8000, "km")
  11783. },
  11784. {
  11785. name: "Teramacro",
  11786. height: math.unit(1000000, "km")
  11787. },
  11788. ]
  11789. ))
  11790. characterMakers.push(() => makeCharacter(
  11791. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11792. {
  11793. front: {
  11794. height: math.unit(7 + 7 / 12, "feet"),
  11795. weight: math.unit(267, "lb"),
  11796. name: "Front",
  11797. image: {
  11798. source: "./media/characters/dayza/front.svg",
  11799. extra: 1262 / 1200,
  11800. bottom: 0.035
  11801. }
  11802. },
  11803. side: {
  11804. height: math.unit(7 + 7 / 12, "feet"),
  11805. weight: math.unit(267, "lb"),
  11806. name: "Side",
  11807. image: {
  11808. source: "./media/characters/dayza/side.svg",
  11809. extra: 1295 / 1245,
  11810. bottom: 0.05
  11811. }
  11812. },
  11813. back: {
  11814. height: math.unit(7 + 7 / 12, "feet"),
  11815. weight: math.unit(267, "lb"),
  11816. name: "Back",
  11817. image: {
  11818. source: "./media/characters/dayza/back.svg",
  11819. extra: 1241 / 1170
  11820. }
  11821. },
  11822. },
  11823. [
  11824. {
  11825. name: "Normal",
  11826. height: math.unit(7 + 7 / 12, "feet"),
  11827. default: true
  11828. },
  11829. {
  11830. name: "Macro",
  11831. height: math.unit(155, "feet")
  11832. },
  11833. ]
  11834. ))
  11835. characterMakers.push(() => makeCharacter(
  11836. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11837. {
  11838. front: {
  11839. height: math.unit(6 + 5 / 12, "feet"),
  11840. weight: math.unit(160, "lb"),
  11841. name: "Front",
  11842. image: {
  11843. source: "./media/characters/xanthos/front.svg",
  11844. extra: 1,
  11845. bottom: 0.04
  11846. }
  11847. },
  11848. back: {
  11849. height: math.unit(6 + 5 / 12, "feet"),
  11850. weight: math.unit(160, "lb"),
  11851. name: "Back",
  11852. image: {
  11853. source: "./media/characters/xanthos/back.svg",
  11854. extra: 1,
  11855. bottom: 0.03
  11856. }
  11857. },
  11858. hand: {
  11859. height: math.unit(0.928, "feet"),
  11860. name: "Hand",
  11861. image: {
  11862. source: "./media/characters/xanthos/hand.svg"
  11863. }
  11864. },
  11865. foot: {
  11866. height: math.unit(1.286, "feet"),
  11867. name: "Foot",
  11868. image: {
  11869. source: "./media/characters/xanthos/foot.svg"
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Normal",
  11876. height: math.unit(6 + 5 / 12, "feet"),
  11877. default: true
  11878. },
  11879. {
  11880. name: "Normal+",
  11881. height: math.unit(6, "meters")
  11882. },
  11883. {
  11884. name: "Macro",
  11885. height: math.unit(40, "feet")
  11886. },
  11887. {
  11888. name: "Macro+",
  11889. height: math.unit(200, "meters")
  11890. },
  11891. {
  11892. name: "Megamacro",
  11893. height: math.unit(20, "km")
  11894. },
  11895. {
  11896. name: "Megamacro+",
  11897. height: math.unit(100, "km")
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(6 + 3 / 12, "feet"),
  11906. weight: math.unit(215, "lb"),
  11907. name: "Front",
  11908. image: {
  11909. source: "./media/characters/grynn/front.svg",
  11910. extra: 4627 / 4209,
  11911. bottom: 0.047
  11912. }
  11913. },
  11914. },
  11915. [
  11916. {
  11917. name: "Micro",
  11918. height: math.unit(6, "inches")
  11919. },
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(6 + 3 / 12, "feet"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Big",
  11927. height: math.unit(104, "feet")
  11928. },
  11929. {
  11930. name: "Macro",
  11931. height: math.unit(944, "feet")
  11932. },
  11933. {
  11934. name: "Macro+",
  11935. height: math.unit(9480, "feet")
  11936. },
  11937. {
  11938. name: "Megamacro",
  11939. height: math.unit(78752, "feet")
  11940. },
  11941. {
  11942. name: "Megamacro+",
  11943. height: math.unit(630128, "feet")
  11944. },
  11945. {
  11946. name: "Megamacro++",
  11947. height: math.unit(3150695, "feet")
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11953. {
  11954. front: {
  11955. height: math.unit(7 + 5 / 12, "feet"),
  11956. weight: math.unit(450, "lb"),
  11957. name: "Front",
  11958. image: {
  11959. source: "./media/characters/mocha-aura/front.svg",
  11960. extra: 1907 / 1817,
  11961. bottom: 0.04
  11962. }
  11963. },
  11964. back: {
  11965. height: math.unit(7 + 5 / 12, "feet"),
  11966. weight: math.unit(450, "lb"),
  11967. name: "Back",
  11968. image: {
  11969. source: "./media/characters/mocha-aura/back.svg",
  11970. extra: 1900 / 1825,
  11971. bottom: 0.045
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Nano",
  11978. height: math.unit(1, "nm")
  11979. },
  11980. {
  11981. name: "Megamicro",
  11982. height: math.unit(1, "mm")
  11983. },
  11984. {
  11985. name: "Micro",
  11986. height: math.unit(3, "inches")
  11987. },
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(7 + 5 / 12, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(30, "feet")
  11996. },
  11997. {
  11998. name: "Megamacro",
  11999. height: math.unit(3500, "feet")
  12000. },
  12001. {
  12002. name: "Teramacro",
  12003. height: math.unit(500000, "miles")
  12004. },
  12005. {
  12006. name: "Petamacro",
  12007. height: math.unit(50000000000000000, "parsecs")
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12013. {
  12014. front: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(150, "lb"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/ilisha-devya/front.svg",
  12020. extra: 1,
  12021. bottom: 0.175
  12022. }
  12023. },
  12024. back: {
  12025. height: math.unit(6, "feet"),
  12026. weight: math.unit(150, "lb"),
  12027. name: "Back",
  12028. image: {
  12029. source: "./media/characters/ilisha-devya/back.svg",
  12030. extra: 1,
  12031. bottom: 0.015
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Macro",
  12038. height: math.unit(500, "feet"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Megamacro",
  12043. height: math.unit(10, "miles")
  12044. },
  12045. {
  12046. name: "Gigamacro",
  12047. height: math.unit(100000, "miles")
  12048. },
  12049. {
  12050. name: "Examacro",
  12051. height: math.unit(1e9, "lightyears")
  12052. },
  12053. {
  12054. name: "Omniversal",
  12055. height: math.unit(1e33, "lightyears")
  12056. },
  12057. {
  12058. name: "Beyond Infinite",
  12059. height: math.unit(1e100, "lightyears")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12065. {
  12066. Side: {
  12067. height: math.unit(6, "feet"),
  12068. weight: math.unit(150, "lb"),
  12069. name: "Side",
  12070. image: {
  12071. source: "./media/characters/mira/side.svg",
  12072. extra: 900 / 799,
  12073. bottom: 0.02
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Human Size",
  12080. height: math.unit(6, "feet")
  12081. },
  12082. {
  12083. name: "Macro",
  12084. height: math.unit(100, "feet"),
  12085. default: true
  12086. },
  12087. {
  12088. name: "Megamacro",
  12089. height: math.unit(10, "miles")
  12090. },
  12091. {
  12092. name: "Gigamacro",
  12093. height: math.unit(25000, "miles")
  12094. },
  12095. {
  12096. name: "Teramacro",
  12097. height: math.unit(300, "AU")
  12098. },
  12099. {
  12100. name: "Full Size",
  12101. height: math.unit(4.5e10, "lightyears")
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12107. {
  12108. front: {
  12109. height: math.unit(6, "feet"),
  12110. weight: math.unit(150, "lb"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/holly/front.svg",
  12114. extra: 639 / 606
  12115. }
  12116. },
  12117. back: {
  12118. height: math.unit(6, "feet"),
  12119. weight: math.unit(150, "lb"),
  12120. name: "Back",
  12121. image: {
  12122. source: "./media/characters/holly/back.svg",
  12123. extra: 623 / 598
  12124. }
  12125. },
  12126. frontWorking: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(150, "lb"),
  12129. name: "Front (Working)",
  12130. image: {
  12131. source: "./media/characters/holly/front-working.svg",
  12132. extra: 607 / 577,
  12133. bottom: 0.048
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Normal",
  12140. height: math.unit(12 + 3 / 12, "feet"),
  12141. default: true
  12142. },
  12143. ]
  12144. ))
  12145. characterMakers.push(() => makeCharacter(
  12146. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12147. {
  12148. front: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(150, "lb"),
  12151. name: "Front",
  12152. image: {
  12153. source: "./media/characters/porter/front.svg",
  12154. extra: 1,
  12155. bottom: 0.01
  12156. }
  12157. },
  12158. frontRobes: {
  12159. height: math.unit(6, "feet"),
  12160. weight: math.unit(150, "lb"),
  12161. name: "Front (Robes)",
  12162. image: {
  12163. source: "./media/characters/porter/front-robes.svg",
  12164. extra: 1.01,
  12165. bottom: 0.01
  12166. }
  12167. },
  12168. },
  12169. [
  12170. {
  12171. name: "Normal",
  12172. height: math.unit(11 + 9 / 12, "feet"),
  12173. default: true
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12179. {
  12180. legendary: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(150, "lb"),
  12183. name: "Legendary",
  12184. image: {
  12185. source: "./media/characters/lucy/legendary.svg",
  12186. extra: 1355 / 1100,
  12187. bottom: 0.045
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Legendary",
  12194. height: math.unit(86882 * 2, "miles"),
  12195. default: true
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(6, "feet"),
  12204. weight: math.unit(150, "lb"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/drusilla/front.svg",
  12208. extra: 678 / 635,
  12209. bottom: 0.03
  12210. }
  12211. },
  12212. back: {
  12213. height: math.unit(6, "feet"),
  12214. weight: math.unit(150, "lb"),
  12215. name: "Back",
  12216. image: {
  12217. source: "./media/characters/drusilla/back.svg",
  12218. extra: 678 / 635,
  12219. bottom: 0.005
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Macro",
  12226. height: math.unit(100, "feet")
  12227. },
  12228. {
  12229. name: "Canon Height",
  12230. height: math.unit(2000, "feet"),
  12231. default: true
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12237. {
  12238. front: {
  12239. height: math.unit(6, "feet"),
  12240. weight: math.unit(180, "lb"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/renard-thatch/front.svg",
  12244. extra: 2411 / 2275,
  12245. bottom: 0.01
  12246. }
  12247. },
  12248. frontPosing: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(180, "lb"),
  12251. name: "Front (Posing)",
  12252. image: {
  12253. source: "./media/characters/renard-thatch/front-posing.svg",
  12254. extra: 2381 / 2261,
  12255. bottom: 0.01
  12256. }
  12257. },
  12258. back: {
  12259. height: math.unit(6, "feet"),
  12260. weight: math.unit(180, "lb"),
  12261. name: "Back",
  12262. image: {
  12263. source: "./media/characters/renard-thatch/back.svg",
  12264. extra: 2428 / 2288
  12265. }
  12266. },
  12267. },
  12268. [
  12269. {
  12270. name: "Micro",
  12271. height: math.unit(3, "inches")
  12272. },
  12273. {
  12274. name: "Default",
  12275. height: math.unit(6, "feet"),
  12276. default: true
  12277. },
  12278. {
  12279. name: "Macro",
  12280. height: math.unit(75, "feet")
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12286. {
  12287. front: {
  12288. height: math.unit(1450, "feet"),
  12289. weight: math.unit(1.21e6, "tons"),
  12290. name: "Front",
  12291. image: {
  12292. source: "./media/characters/sekvra/front.svg",
  12293. extra: 1,
  12294. bottom: 0.03
  12295. }
  12296. },
  12297. frontClothed: {
  12298. height: math.unit(1450, "feet"),
  12299. weight: math.unit(1.21e6, "tons"),
  12300. name: "Front (Clothed)",
  12301. image: {
  12302. source: "./media/characters/sekvra/front-clothed.svg",
  12303. extra: 1,
  12304. bottom: 0.03
  12305. }
  12306. },
  12307. side: {
  12308. height: math.unit(1450, "feet"),
  12309. weight: math.unit(1.21e6, "tons"),
  12310. name: "Side",
  12311. image: {
  12312. source: "./media/characters/sekvra/side.svg",
  12313. extra: 1,
  12314. bottom: 0.025
  12315. }
  12316. },
  12317. back: {
  12318. height: math.unit(1450, "feet"),
  12319. weight: math.unit(1.21e6, "tons"),
  12320. name: "Back",
  12321. image: {
  12322. source: "./media/characters/sekvra/back.svg",
  12323. extra: 1,
  12324. bottom: 0.005
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(1450, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(15000, "feet")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(150, "lb"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/carmine/front.svg",
  12349. extra: 1,
  12350. bottom: 0.035
  12351. }
  12352. },
  12353. frontArmor: {
  12354. height: math.unit(6, "feet"),
  12355. weight: math.unit(150, "lb"),
  12356. name: "Front (Armor)",
  12357. image: {
  12358. source: "./media/characters/carmine/front-armor.svg",
  12359. extra: 1,
  12360. bottom: 0.035
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Large",
  12367. height: math.unit(1, "mile")
  12368. },
  12369. {
  12370. name: "Huge",
  12371. height: math.unit(40, "miles"),
  12372. default: true
  12373. },
  12374. {
  12375. name: "Colossal",
  12376. height: math.unit(2500, "miles")
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(150, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/elyssia/front.svg",
  12389. extra: 2201 / 2035,
  12390. bottom: 0.05
  12391. }
  12392. },
  12393. frontClothed: {
  12394. height: math.unit(6, "feet"),
  12395. weight: math.unit(150, "lb"),
  12396. name: "Front (Clothed)",
  12397. image: {
  12398. source: "./media/characters/elyssia/front-clothed.svg",
  12399. extra: 2201 / 2035,
  12400. bottom: 0.05
  12401. }
  12402. },
  12403. back: {
  12404. height: math.unit(6, "feet"),
  12405. weight: math.unit(150, "lb"),
  12406. name: "Back",
  12407. image: {
  12408. source: "./media/characters/elyssia/back.svg",
  12409. extra: 2201 / 2035,
  12410. bottom: 0.013
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Smaller",
  12417. height: math.unit(150, "feet")
  12418. },
  12419. {
  12420. name: "Standard",
  12421. height: math.unit(1400, "feet"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Distracted",
  12426. height: math.unit(15000, "feet")
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12432. {
  12433. front: {
  12434. height: math.unit(7 + 4 / 12, "feet"),
  12435. weight: math.unit(500, "lb"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/geno-maxwell/front.svg",
  12439. extra: 2207 / 2040,
  12440. bottom: 0.015
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Micro",
  12447. height: math.unit(3, "inches")
  12448. },
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(7 + 4 / 12, "feet"),
  12452. default: true
  12453. },
  12454. {
  12455. name: "Macro",
  12456. height: math.unit(220, "feet")
  12457. },
  12458. {
  12459. name: "Megamacro",
  12460. height: math.unit(11, "miles")
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12466. {
  12467. front: {
  12468. height: math.unit(7 + 4 / 12, "feet"),
  12469. weight: math.unit(500, "lb"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/regena-maxwell/front.svg",
  12473. extra: 3115 / 2770,
  12474. bottom: 0.02
  12475. }
  12476. },
  12477. },
  12478. [
  12479. {
  12480. name: "Normal",
  12481. height: math.unit(7 + 4 / 12, "feet"),
  12482. default: true
  12483. },
  12484. {
  12485. name: "Macro",
  12486. height: math.unit(220, "feet")
  12487. },
  12488. {
  12489. name: "Megamacro",
  12490. height: math.unit(11, "miles")
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12496. {
  12497. front: {
  12498. height: math.unit(6, "feet"),
  12499. weight: math.unit(150, "lb"),
  12500. name: "Front",
  12501. image: {
  12502. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12503. extra: 860 / 690,
  12504. bottom: 0.03
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(1.7, "meters"),
  12512. default: true
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(150, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/quilly/front.svg",
  12525. extra: 890 / 776
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Gigamacro",
  12532. height: math.unit(404090, "miles"),
  12533. default: true
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(7 + 8 / 12, "feet"),
  12542. weight: math.unit(350, "lb"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/tempest/front.svg",
  12546. extra: 1175 / 1086,
  12547. bottom: 0.02
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Normal",
  12554. height: math.unit(7 + 8 / 12, "feet"),
  12555. default: true
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12561. {
  12562. side: {
  12563. height: math.unit(4 + 5 / 12, "feet"),
  12564. weight: math.unit(80, "lb"),
  12565. name: "Side",
  12566. image: {
  12567. source: "./media/characters/rodger/side.svg",
  12568. extra: 1235 / 1118
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Micro",
  12575. height: math.unit(1, "inch")
  12576. },
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(4 + 5 / 12, "feet"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Macro",
  12584. height: math.unit(120, "feet")
  12585. },
  12586. ]
  12587. ))
  12588. characterMakers.push(() => makeCharacter(
  12589. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12590. {
  12591. front: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(150, "lb"),
  12594. name: "Front",
  12595. image: {
  12596. source: "./media/characters/danyel/front.svg",
  12597. extra: 1185 / 1123,
  12598. bottom: 0.05
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Shrunken",
  12605. height: math.unit(0.5, "mm")
  12606. },
  12607. {
  12608. name: "Micro",
  12609. height: math.unit(1, "mm"),
  12610. default: true
  12611. },
  12612. {
  12613. name: "Upsized",
  12614. height: math.unit(5 + 5 / 12, "feet")
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12620. {
  12621. front: {
  12622. height: math.unit(5 + 6 / 12, "feet"),
  12623. weight: math.unit(200, "lb"),
  12624. name: "Front",
  12625. image: {
  12626. source: "./media/characters/vivian-bijoux/front.svg",
  12627. extra: 1,
  12628. bottom: 0.072
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Normal",
  12635. height: math.unit(5 + 6 / 12, "feet"),
  12636. default: true
  12637. },
  12638. {
  12639. name: "Bad Dream",
  12640. height: math.unit(500, "feet")
  12641. },
  12642. {
  12643. name: "Nightmare",
  12644. height: math.unit(500, "miles")
  12645. },
  12646. ]
  12647. ))
  12648. characterMakers.push(() => makeCharacter(
  12649. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12650. {
  12651. front: {
  12652. height: math.unit(6 + 1 / 12, "feet"),
  12653. weight: math.unit(260, "lb"),
  12654. name: "Front",
  12655. image: {
  12656. source: "./media/characters/zeta/front.svg",
  12657. extra: 1968 / 1889,
  12658. bottom: 0.06
  12659. }
  12660. },
  12661. back: {
  12662. height: math.unit(6 + 1 / 12, "feet"),
  12663. weight: math.unit(260, "lb"),
  12664. name: "Back",
  12665. image: {
  12666. source: "./media/characters/zeta/back.svg",
  12667. extra: 1944 / 1858,
  12668. bottom: 0.03
  12669. }
  12670. },
  12671. hand: {
  12672. height: math.unit(1.112, "feet"),
  12673. name: "Hand",
  12674. image: {
  12675. source: "./media/characters/zeta/hand.svg"
  12676. }
  12677. },
  12678. foot: {
  12679. height: math.unit(1.48, "feet"),
  12680. name: "Foot",
  12681. image: {
  12682. source: "./media/characters/zeta/foot.svg"
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Micro",
  12689. height: math.unit(6, "inches")
  12690. },
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(6 + 1 / 12, "feet"),
  12694. default: true
  12695. },
  12696. {
  12697. name: "Macro",
  12698. height: math.unit(20, "feet")
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(150, "lb"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/jamie-larsen/front.svg",
  12711. extra: 962 / 933,
  12712. bottom: 0.02
  12713. }
  12714. },
  12715. back: {
  12716. height: math.unit(6, "feet"),
  12717. weight: math.unit(150, "lb"),
  12718. name: "Back",
  12719. image: {
  12720. source: "./media/characters/jamie-larsen/back.svg",
  12721. extra: 997 / 946
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Macro",
  12728. height: math.unit(28 + 7 / 12, "feet"),
  12729. default: true
  12730. },
  12731. {
  12732. name: "Macro+",
  12733. height: math.unit(180, "feet")
  12734. },
  12735. {
  12736. name: "Megamacro",
  12737. height: math.unit(10, "miles")
  12738. },
  12739. {
  12740. name: "Gigamacro",
  12741. height: math.unit(200000, "miles")
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12747. {
  12748. front: {
  12749. height: math.unit(6, "feet"),
  12750. weight: math.unit(120, "lb"),
  12751. name: "Front",
  12752. image: {
  12753. source: "./media/characters/vance/front.svg",
  12754. extra: 1980 / 1890,
  12755. bottom: 0.09
  12756. }
  12757. },
  12758. back: {
  12759. height: math.unit(6, "feet"),
  12760. weight: math.unit(120, "lb"),
  12761. name: "Back",
  12762. image: {
  12763. source: "./media/characters/vance/back.svg",
  12764. extra: 2081 / 1994,
  12765. bottom: 0.014
  12766. }
  12767. },
  12768. hand: {
  12769. height: math.unit(0.88, "feet"),
  12770. name: "Hand",
  12771. image: {
  12772. source: "./media/characters/vance/hand.svg"
  12773. }
  12774. },
  12775. foot: {
  12776. height: math.unit(0.64, "feet"),
  12777. name: "Foot",
  12778. image: {
  12779. source: "./media/characters/vance/foot.svg"
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Small",
  12786. height: math.unit(90, "feet"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Macro",
  12791. height: math.unit(100, "meters")
  12792. },
  12793. {
  12794. name: "Megamacro",
  12795. height: math.unit(15, "miles")
  12796. },
  12797. ]
  12798. ))
  12799. characterMakers.push(() => makeCharacter(
  12800. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12801. {
  12802. front: {
  12803. height: math.unit(6, "feet"),
  12804. weight: math.unit(180, "lb"),
  12805. name: "Front",
  12806. image: {
  12807. source: "./media/characters/xochitl/front.svg",
  12808. extra: 2297 / 2261,
  12809. bottom: 0.065
  12810. }
  12811. },
  12812. back: {
  12813. height: math.unit(6, "feet"),
  12814. weight: math.unit(180, "lb"),
  12815. name: "Back",
  12816. image: {
  12817. source: "./media/characters/xochitl/back.svg",
  12818. extra: 2386 / 2354,
  12819. bottom: 0.01
  12820. }
  12821. },
  12822. foot: {
  12823. height: math.unit(6 / 5 * 1.15, "feet"),
  12824. weight: math.unit(150, "lb"),
  12825. name: "Foot",
  12826. image: {
  12827. source: "./media/characters/xochitl/foot.svg"
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Macro",
  12834. height: math.unit(80, "feet")
  12835. },
  12836. {
  12837. name: "Macro+",
  12838. height: math.unit(400, "feet"),
  12839. default: true
  12840. },
  12841. {
  12842. name: "Gigamacro",
  12843. height: math.unit(80000, "miles")
  12844. },
  12845. {
  12846. name: "Gigamacro+",
  12847. height: math.unit(400000, "miles")
  12848. },
  12849. {
  12850. name: "Teramacro",
  12851. height: math.unit(300, "AU")
  12852. },
  12853. ]
  12854. ))
  12855. characterMakers.push(() => makeCharacter(
  12856. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12857. {
  12858. front: {
  12859. height: math.unit(6, "feet"),
  12860. weight: math.unit(150, "lb"),
  12861. name: "Front",
  12862. image: {
  12863. source: "./media/characters/vincent/front.svg",
  12864. extra: 1130 / 1080,
  12865. bottom: 0.055
  12866. }
  12867. },
  12868. beak: {
  12869. height: math.unit(6 * 0.1, "feet"),
  12870. name: "Beak",
  12871. image: {
  12872. source: "./media/characters/vincent/beak.svg"
  12873. }
  12874. },
  12875. hand: {
  12876. height: math.unit(6 * 0.85, "feet"),
  12877. weight: math.unit(150, "lb"),
  12878. name: "Hand",
  12879. image: {
  12880. source: "./media/characters/vincent/hand.svg"
  12881. }
  12882. },
  12883. foot: {
  12884. height: math.unit(6 * 0.19, "feet"),
  12885. weight: math.unit(150, "lb"),
  12886. name: "Foot",
  12887. image: {
  12888. source: "./media/characters/vincent/foot.svg"
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Base",
  12895. height: math.unit(6 + 5 / 12, "feet"),
  12896. default: true
  12897. },
  12898. {
  12899. name: "Macro",
  12900. height: math.unit(300, "feet")
  12901. },
  12902. {
  12903. name: "Megamacro",
  12904. height: math.unit(2, "miles")
  12905. },
  12906. {
  12907. name: "Gigamacro",
  12908. height: math.unit(1000, "miles")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(6 + 2 / 12, "feet"),
  12917. weight: math.unit(265, "lb"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/jay/front.svg",
  12921. extra: 1510 / 1430,
  12922. bottom: 0.042
  12923. }
  12924. },
  12925. back: {
  12926. height: math.unit(6 + 2 / 12, "feet"),
  12927. weight: math.unit(265, "lb"),
  12928. name: "Back",
  12929. image: {
  12930. source: "./media/characters/jay/back.svg",
  12931. extra: 1510 / 1430,
  12932. bottom: 0.025
  12933. }
  12934. },
  12935. clothed: {
  12936. height: math.unit(6 + 2 / 12, "feet"),
  12937. weight: math.unit(265, "lb"),
  12938. name: "Front (Clothed)",
  12939. image: {
  12940. source: "./media/characters/jay/clothed.svg",
  12941. extra: 744 / 699,
  12942. bottom: 0.043
  12943. }
  12944. },
  12945. head: {
  12946. height: math.unit(1.772, "feet"),
  12947. name: "Head",
  12948. image: {
  12949. source: "./media/characters/jay/head.svg"
  12950. }
  12951. },
  12952. sizeRay: {
  12953. height: math.unit(1.331, "feet"),
  12954. name: "Size Ray",
  12955. image: {
  12956. source: "./media/characters/jay/size-ray.svg"
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Micro",
  12963. height: math.unit(1, "inch")
  12964. },
  12965. {
  12966. name: "Normal",
  12967. height: math.unit(6 + 2 / 12, "feet"),
  12968. default: true
  12969. },
  12970. {
  12971. name: "Macro",
  12972. height: math.unit(1, "mile")
  12973. },
  12974. {
  12975. name: "Megamacro",
  12976. height: math.unit(100, "miles")
  12977. },
  12978. ]
  12979. ))
  12980. characterMakers.push(() => makeCharacter(
  12981. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12982. {
  12983. front: {
  12984. height: math.unit(2, "meters"),
  12985. weight: math.unit(500, "kg"),
  12986. name: "Front",
  12987. image: {
  12988. source: "./media/characters/coatl/front.svg",
  12989. extra: 3948 / 3500,
  12990. bottom: 0.082
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Normal",
  12997. height: math.unit(4, "meters")
  12998. },
  12999. {
  13000. name: "Macro",
  13001. height: math.unit(100, "meters"),
  13002. default: true
  13003. },
  13004. {
  13005. name: "Macro+",
  13006. height: math.unit(300, "meters")
  13007. },
  13008. {
  13009. name: "Megamacro",
  13010. height: math.unit(3, "gigameters")
  13011. },
  13012. {
  13013. name: "Megamacro+",
  13014. height: math.unit(300, "terameters")
  13015. },
  13016. {
  13017. name: "Megamacro++",
  13018. height: math.unit(3, "lightyears")
  13019. },
  13020. ]
  13021. ))
  13022. characterMakers.push(() => makeCharacter(
  13023. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13024. {
  13025. front: {
  13026. height: math.unit(6, "feet"),
  13027. weight: math.unit(50, "kg"),
  13028. name: "front",
  13029. image: {
  13030. source: "./media/characters/shiroryu/front.svg",
  13031. extra: 1990 / 1935
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Mortal Mingling",
  13038. height: math.unit(3, "meters")
  13039. },
  13040. {
  13041. name: "Kaiju-ish",
  13042. height: math.unit(250, "meters")
  13043. },
  13044. {
  13045. name: "Somewhat Godly",
  13046. height: math.unit(400, "km"),
  13047. default: true
  13048. },
  13049. {
  13050. name: "Planetary",
  13051. height: math.unit(300, "megameters")
  13052. },
  13053. {
  13054. name: "Galaxy-dwarfing",
  13055. height: math.unit(450, "kiloparsecs")
  13056. },
  13057. {
  13058. name: "Universe Eater",
  13059. height: math.unit(150, "gigaparsecs")
  13060. },
  13061. {
  13062. name: "Almost Immeasurable",
  13063. height: math.unit(1.3e266, "yottaparsecs")
  13064. },
  13065. ]
  13066. ))
  13067. characterMakers.push(() => makeCharacter(
  13068. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13069. {
  13070. front: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Front",
  13074. image: {
  13075. source: "./media/characters/umeko/front.svg",
  13076. extra: 1,
  13077. bottom: 0.019
  13078. }
  13079. },
  13080. frontArmored: {
  13081. height: math.unit(6, "feet"),
  13082. weight: math.unit(150, "lb"),
  13083. name: "Front (Armored)",
  13084. image: {
  13085. source: "./media/characters/umeko/front-armored.svg",
  13086. extra: 1,
  13087. bottom: 0.021
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Macro",
  13094. height: math.unit(220, "feet"),
  13095. default: true
  13096. },
  13097. {
  13098. name: "Guardian Dragon",
  13099. height: math.unit(50, "miles")
  13100. },
  13101. {
  13102. name: "Cosmic",
  13103. height: math.unit(800000, "miles")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(150, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/cassidy/front.svg",
  13116. extra: 1,
  13117. bottom: 0.043
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Canon Height",
  13124. height: math.unit(120, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro+",
  13129. height: math.unit(400, "feet")
  13130. },
  13131. {
  13132. name: "Macro++",
  13133. height: math.unit(4000, "feet")
  13134. },
  13135. {
  13136. name: "Megamacro",
  13137. height: math.unit(3, "miles")
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(6, "feet"),
  13146. weight: math.unit(150, "lb"),
  13147. name: "Front",
  13148. image: {
  13149. source: "./media/characters/isaac/front.svg",
  13150. extra: 896 / 815,
  13151. bottom: 0.11
  13152. }
  13153. },
  13154. },
  13155. [
  13156. {
  13157. name: "Human Size",
  13158. height: math.unit(8, "feet"),
  13159. default: true
  13160. },
  13161. {
  13162. name: "Macro",
  13163. height: math.unit(400, "feet")
  13164. },
  13165. {
  13166. name: "Megamacro",
  13167. height: math.unit(50, "miles")
  13168. },
  13169. {
  13170. name: "Canon Height",
  13171. height: math.unit(200, "AU")
  13172. },
  13173. ]
  13174. ))
  13175. characterMakers.push(() => makeCharacter(
  13176. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13177. {
  13178. front: {
  13179. height: math.unit(6, "feet"),
  13180. weight: math.unit(72, "kg"),
  13181. name: "Front",
  13182. image: {
  13183. source: "./media/characters/sleekit/front.svg",
  13184. extra: 4693 / 4487,
  13185. bottom: 0.012
  13186. }
  13187. },
  13188. },
  13189. [
  13190. {
  13191. name: "Minimum Height",
  13192. height: math.unit(10, "meters")
  13193. },
  13194. {
  13195. name: "Smaller",
  13196. height: math.unit(25, "meters")
  13197. },
  13198. {
  13199. name: "Larger",
  13200. height: math.unit(38, "meters"),
  13201. default: true
  13202. },
  13203. {
  13204. name: "Maximum height",
  13205. height: math.unit(100, "meters")
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13211. {
  13212. front: {
  13213. height: math.unit(6, "feet"),
  13214. weight: math.unit(150, "lb"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/nillia/front.svg",
  13218. extra: 2195 / 2037,
  13219. bottom: 0.005
  13220. }
  13221. },
  13222. back: {
  13223. height: math.unit(6, "feet"),
  13224. weight: math.unit(150, "lb"),
  13225. name: "Back",
  13226. image: {
  13227. source: "./media/characters/nillia/back.svg",
  13228. extra: 2195 / 2037,
  13229. bottom: 0.005
  13230. }
  13231. },
  13232. },
  13233. [
  13234. {
  13235. name: "Canon Height",
  13236. height: math.unit(489, "feet"),
  13237. default: true
  13238. }
  13239. ]
  13240. ))
  13241. characterMakers.push(() => makeCharacter(
  13242. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13243. {
  13244. front: {
  13245. height: math.unit(6, "feet"),
  13246. weight: math.unit(150, "lb"),
  13247. name: "Front",
  13248. image: {
  13249. source: "./media/characters/mesmyriza/front.svg",
  13250. extra: 2067 / 1784,
  13251. bottom: 0.035
  13252. }
  13253. },
  13254. foot: {
  13255. height: math.unit(6 / (250 / 35), "feet"),
  13256. name: "Foot",
  13257. image: {
  13258. source: "./media/characters/mesmyriza/foot.svg"
  13259. }
  13260. },
  13261. },
  13262. [
  13263. {
  13264. name: "Macro",
  13265. height: math.unit(457, "meters"),
  13266. default: true
  13267. },
  13268. {
  13269. name: "Megamacro",
  13270. height: math.unit(8, "megameters")
  13271. },
  13272. ]
  13273. ))
  13274. characterMakers.push(() => makeCharacter(
  13275. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13276. {
  13277. front: {
  13278. height: math.unit(6, "feet"),
  13279. weight: math.unit(250, "lb"),
  13280. name: "Front",
  13281. image: {
  13282. source: "./media/characters/saudade/front.svg",
  13283. extra: 1172 / 1139,
  13284. bottom: 0.035
  13285. }
  13286. },
  13287. },
  13288. [
  13289. {
  13290. name: "Micro",
  13291. height: math.unit(3, "inches")
  13292. },
  13293. {
  13294. name: "Normal",
  13295. height: math.unit(6, "feet"),
  13296. default: true
  13297. },
  13298. {
  13299. name: "Macro",
  13300. height: math.unit(50, "feet")
  13301. },
  13302. {
  13303. name: "Megamacro",
  13304. height: math.unit(2800, "feet")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(5 + 4 / 12, "feet"),
  13313. weight: math.unit(100, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/keireer/front.svg",
  13317. extra: 716 / 666,
  13318. bottom: 0.05
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Normal",
  13325. height: math.unit(5 + 4 / 12, "feet"),
  13326. default: true
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13332. {
  13333. front: {
  13334. height: math.unit(6, "feet"),
  13335. weight: math.unit(90, "kg"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/mirja/front.svg",
  13339. extra: 1789 / 1683,
  13340. bottom: 0.05
  13341. }
  13342. },
  13343. frontDressed: {
  13344. height: math.unit(6, "feet"),
  13345. weight: math.unit(90, "lb"),
  13346. name: "Front (Dressed)",
  13347. image: {
  13348. source: "./media/characters/mirja/front-dressed.svg",
  13349. extra: 1789 / 1683,
  13350. bottom: 0.05
  13351. }
  13352. },
  13353. back: {
  13354. height: math.unit(6, "feet"),
  13355. weight: math.unit(90, "lb"),
  13356. name: "Back",
  13357. image: {
  13358. source: "./media/characters/mirja/back.svg",
  13359. extra: 953 / 917,
  13360. bottom: 0.017
  13361. }
  13362. },
  13363. },
  13364. [
  13365. {
  13366. name: "\"Incognito\"",
  13367. height: math.unit(3, "meters")
  13368. },
  13369. {
  13370. name: "Strolling Size",
  13371. height: math.unit(15, "km")
  13372. },
  13373. {
  13374. name: "Larger Strolling Size",
  13375. height: math.unit(400, "km")
  13376. },
  13377. {
  13378. name: "Preferred Size",
  13379. height: math.unit(5000, "km")
  13380. },
  13381. {
  13382. name: "True Size",
  13383. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13384. default: true
  13385. },
  13386. ]
  13387. ))
  13388. characterMakers.push(() => makeCharacter(
  13389. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13390. {
  13391. front: {
  13392. height: math.unit(15, "feet"),
  13393. weight: math.unit(880, "kg"),
  13394. name: "Front",
  13395. image: {
  13396. source: "./media/characters/nightraver/front.svg",
  13397. extra: 2444 / 2160,
  13398. bottom: 0.027
  13399. }
  13400. },
  13401. back: {
  13402. height: math.unit(15, "feet"),
  13403. weight: math.unit(880, "kg"),
  13404. name: "Back",
  13405. image: {
  13406. source: "./media/characters/nightraver/back.svg",
  13407. extra: 2309 / 2180,
  13408. bottom: 0.005
  13409. }
  13410. },
  13411. sole: {
  13412. height: math.unit(2.878, "feet"),
  13413. name: "Sole",
  13414. image: {
  13415. source: "./media/characters/nightraver/sole.svg"
  13416. }
  13417. },
  13418. foot: {
  13419. height: math.unit(2.285, "feet"),
  13420. name: "Foot",
  13421. image: {
  13422. source: "./media/characters/nightraver/foot.svg"
  13423. }
  13424. },
  13425. maw: {
  13426. height: math.unit(2.67, "feet"),
  13427. name: "Maw",
  13428. image: {
  13429. source: "./media/characters/nightraver/maw.svg"
  13430. }
  13431. },
  13432. },
  13433. [
  13434. {
  13435. name: "Micro",
  13436. height: math.unit(1, "cm")
  13437. },
  13438. {
  13439. name: "Normal",
  13440. height: math.unit(15, "feet"),
  13441. default: true
  13442. },
  13443. {
  13444. name: "Macro",
  13445. height: math.unit(300, "feet")
  13446. },
  13447. {
  13448. name: "Megamacro",
  13449. height: math.unit(300, "miles")
  13450. },
  13451. {
  13452. name: "Gigamacro",
  13453. height: math.unit(10000, "miles")
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13459. {
  13460. side: {
  13461. height: math.unit(2, "inches"),
  13462. weight: math.unit(5, "grams"),
  13463. name: "Side",
  13464. image: {
  13465. source: "./media/characters/arc/side.svg"
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Micro",
  13472. height: math.unit(2, "inches"),
  13473. default: true
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(1.1938, "meters"),
  13482. weight: math.unit(54, "kg"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/nebula-shahar/front.svg",
  13486. extra: 1642 / 1436,
  13487. bottom: 0.06
  13488. }
  13489. },
  13490. },
  13491. [
  13492. {
  13493. name: "Megamicro",
  13494. height: math.unit(0.3, "mm")
  13495. },
  13496. {
  13497. name: "Micro",
  13498. height: math.unit(3, "cm")
  13499. },
  13500. {
  13501. name: "Normal",
  13502. height: math.unit(138, "cm"),
  13503. default: true
  13504. },
  13505. {
  13506. name: "Macro",
  13507. height: math.unit(30, "m")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13513. {
  13514. front: {
  13515. height: math.unit(5.24, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Front",
  13518. image: {
  13519. source: "./media/characters/shayla/front.svg",
  13520. extra: 1512 / 1414,
  13521. bottom: 0.01
  13522. }
  13523. },
  13524. back: {
  13525. height: math.unit(5.24, "feet"),
  13526. weight: math.unit(150, "lb"),
  13527. name: "Back",
  13528. image: {
  13529. source: "./media/characters/shayla/back.svg",
  13530. extra: 1512 / 1414
  13531. }
  13532. },
  13533. hand: {
  13534. height: math.unit(0.7781496062992126, "feet"),
  13535. name: "Hand",
  13536. image: {
  13537. source: "./media/characters/shayla/hand.svg"
  13538. }
  13539. },
  13540. foot: {
  13541. height: math.unit(1.4206036745406823, "feet"),
  13542. name: "Foot",
  13543. image: {
  13544. source: "./media/characters/shayla/foot.svg"
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Micro",
  13551. height: math.unit(0.32, "feet")
  13552. },
  13553. {
  13554. name: "Normal",
  13555. height: math.unit(5.24, "feet"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Macro",
  13560. height: math.unit(492.12, "feet")
  13561. },
  13562. {
  13563. name: "Megamacro",
  13564. height: math.unit(186.41, "miles")
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13570. {
  13571. front: {
  13572. height: math.unit(2.2, "m"),
  13573. weight: math.unit(120, "kg"),
  13574. name: "Front",
  13575. image: {
  13576. source: "./media/characters/pia-jr/front.svg",
  13577. extra: 1000 / 970,
  13578. bottom: 0.035
  13579. }
  13580. },
  13581. hand: {
  13582. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13583. name: "Hand",
  13584. image: {
  13585. source: "./media/characters/pia-jr/hand.svg"
  13586. }
  13587. },
  13588. paw: {
  13589. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13590. name: "Paw",
  13591. image: {
  13592. source: "./media/characters/pia-jr/paw.svg"
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Micro",
  13599. height: math.unit(1.2, "cm")
  13600. },
  13601. {
  13602. name: "Normal",
  13603. height: math.unit(2.2, "m"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Macro",
  13608. height: math.unit(180, "m")
  13609. },
  13610. {
  13611. name: "Megamacro",
  13612. height: math.unit(420, "km")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(2, "m"),
  13621. weight: math.unit(115, "kg"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/pia-sr/front.svg",
  13625. extra: 760 / 730,
  13626. bottom: 0.015
  13627. }
  13628. },
  13629. back: {
  13630. height: math.unit(2, "m"),
  13631. weight: math.unit(115, "kg"),
  13632. name: "Back",
  13633. image: {
  13634. source: "./media/characters/pia-sr/back.svg",
  13635. extra: 760 / 730,
  13636. bottom: 0.01
  13637. }
  13638. },
  13639. hand: {
  13640. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13641. name: "Hand",
  13642. image: {
  13643. source: "./media/characters/pia-sr/hand.svg"
  13644. }
  13645. },
  13646. foot: {
  13647. height: math.unit(1.83, "feet"),
  13648. name: "Foot",
  13649. image: {
  13650. source: "./media/characters/pia-sr/foot.svg"
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Micro",
  13657. height: math.unit(88, "mm")
  13658. },
  13659. {
  13660. name: "Normal",
  13661. height: math.unit(2, "m"),
  13662. default: true
  13663. },
  13664. {
  13665. name: "Macro",
  13666. height: math.unit(200, "m")
  13667. },
  13668. {
  13669. name: "Megamacro",
  13670. height: math.unit(420, "km")
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13676. {
  13677. front: {
  13678. height: math.unit(8 + 2 / 12, "feet"),
  13679. weight: math.unit(300, "lb"),
  13680. name: "Front",
  13681. image: {
  13682. source: "./media/characters/kibibyte/front.svg",
  13683. extra: 2221 / 2098,
  13684. bottom: 0.04
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Normal",
  13691. height: math.unit(8 + 2 / 12, "feet"),
  13692. default: true
  13693. },
  13694. {
  13695. name: "Socialable Macro",
  13696. height: math.unit(50, "feet")
  13697. },
  13698. {
  13699. name: "Macro",
  13700. height: math.unit(300, "feet")
  13701. },
  13702. {
  13703. name: "Megamacro",
  13704. height: math.unit(500, "miles")
  13705. },
  13706. ]
  13707. ))
  13708. characterMakers.push(() => makeCharacter(
  13709. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13710. {
  13711. front: {
  13712. height: math.unit(6, "feet"),
  13713. weight: math.unit(150, "lb"),
  13714. name: "Front",
  13715. image: {
  13716. source: "./media/characters/felix/front.svg",
  13717. extra: 762 / 722,
  13718. bottom: 0.02
  13719. }
  13720. },
  13721. frontClothed: {
  13722. height: math.unit(6, "feet"),
  13723. weight: math.unit(150, "lb"),
  13724. name: "Front (Clothed)",
  13725. image: {
  13726. source: "./media/characters/felix/front-clothed.svg",
  13727. extra: 762 / 722,
  13728. bottom: 0.02
  13729. }
  13730. },
  13731. },
  13732. [
  13733. {
  13734. name: "Normal",
  13735. height: math.unit(6 + 8 / 12, "feet"),
  13736. default: true
  13737. },
  13738. {
  13739. name: "Macro",
  13740. height: math.unit(2600, "feet")
  13741. },
  13742. {
  13743. name: "Megamacro",
  13744. height: math.unit(450, "miles")
  13745. },
  13746. ]
  13747. ))
  13748. characterMakers.push(() => makeCharacter(
  13749. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13750. {
  13751. front: {
  13752. height: math.unit(6 + 1 / 12, "feet"),
  13753. weight: math.unit(250, "lb"),
  13754. name: "Front",
  13755. image: {
  13756. source: "./media/characters/tobo/front.svg",
  13757. extra: 608 / 586,
  13758. bottom: 0.023
  13759. }
  13760. },
  13761. back: {
  13762. height: math.unit(6 + 1 / 12, "feet"),
  13763. weight: math.unit(250, "lb"),
  13764. name: "Back",
  13765. image: {
  13766. source: "./media/characters/tobo/back.svg",
  13767. extra: 608 / 586
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Nano",
  13774. height: math.unit(2, "nm")
  13775. },
  13776. {
  13777. name: "Megamicro",
  13778. height: math.unit(0.1, "mm")
  13779. },
  13780. {
  13781. name: "Micro",
  13782. height: math.unit(1, "inch"),
  13783. default: true
  13784. },
  13785. {
  13786. name: "Human-sized",
  13787. height: math.unit(6 + 1 / 12, "feet")
  13788. },
  13789. {
  13790. name: "Macro",
  13791. height: math.unit(250, "feet")
  13792. },
  13793. {
  13794. name: "Megamacro",
  13795. height: math.unit(75, "miles")
  13796. },
  13797. {
  13798. name: "Texas-sized",
  13799. height: math.unit(750, "miles")
  13800. },
  13801. {
  13802. name: "Teramacro",
  13803. height: math.unit(50000, "miles")
  13804. },
  13805. ]
  13806. ))
  13807. characterMakers.push(() => makeCharacter(
  13808. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13809. {
  13810. front: {
  13811. height: math.unit(6, "feet"),
  13812. weight: math.unit(269, "lb"),
  13813. name: "Front",
  13814. image: {
  13815. source: "./media/characters/danny-kapowsky/front.svg",
  13816. extra: 766 / 736,
  13817. bottom: 0.044
  13818. }
  13819. },
  13820. back: {
  13821. height: math.unit(6, "feet"),
  13822. weight: math.unit(269, "lb"),
  13823. name: "Back",
  13824. image: {
  13825. source: "./media/characters/danny-kapowsky/back.svg",
  13826. extra: 797 / 760,
  13827. bottom: 0.025
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Macro",
  13834. height: math.unit(150, "feet"),
  13835. default: true
  13836. },
  13837. {
  13838. name: "Macro+",
  13839. height: math.unit(200, "feet")
  13840. },
  13841. {
  13842. name: "Macro++",
  13843. height: math.unit(300, "feet")
  13844. },
  13845. {
  13846. name: "Macro+++",
  13847. height: math.unit(400, "feet")
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13853. {
  13854. side: {
  13855. height: math.unit(6, "feet"),
  13856. weight: math.unit(170, "lb"),
  13857. name: "Side",
  13858. image: {
  13859. source: "./media/characters/finn/side.svg",
  13860. extra: 1953 / 1807,
  13861. bottom: 0.057
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Megamacro",
  13868. height: math.unit(14445, "feet"),
  13869. default: true
  13870. },
  13871. ]
  13872. ))
  13873. characterMakers.push(() => makeCharacter(
  13874. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13875. {
  13876. front: {
  13877. height: math.unit(5 + 6 / 12, "feet"),
  13878. weight: math.unit(125, "lb"),
  13879. name: "Front",
  13880. image: {
  13881. source: "./media/characters/roy/front.svg",
  13882. extra: 1,
  13883. bottom: 0.11
  13884. }
  13885. },
  13886. },
  13887. [
  13888. {
  13889. name: "Micro",
  13890. height: math.unit(3, "inches"),
  13891. default: true
  13892. },
  13893. {
  13894. name: "Normal",
  13895. height: math.unit(5 + 6 / 12, "feet")
  13896. },
  13897. {
  13898. name: "Lesser Macro",
  13899. height: math.unit(60, "feet")
  13900. },
  13901. {
  13902. name: "Greater Macro",
  13903. height: math.unit(120, "feet")
  13904. },
  13905. ]
  13906. ))
  13907. characterMakers.push(() => makeCharacter(
  13908. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13909. {
  13910. front: {
  13911. height: math.unit(6, "feet"),
  13912. weight: math.unit(100, "lb"),
  13913. name: "Front",
  13914. image: {
  13915. source: "./media/characters/aevsivs/front.svg",
  13916. extra: 1,
  13917. bottom: 0.03
  13918. }
  13919. },
  13920. back: {
  13921. height: math.unit(6, "feet"),
  13922. weight: math.unit(100, "lb"),
  13923. name: "Back",
  13924. image: {
  13925. source: "./media/characters/aevsivs/back.svg"
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Micro",
  13932. height: math.unit(2, "inches"),
  13933. default: true
  13934. },
  13935. {
  13936. name: "Normal",
  13937. height: math.unit(5, "feet")
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(5 + 7 / 12, "feet"),
  13946. weight: math.unit(159, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/hildegard/front.svg",
  13950. extra: 289 / 269,
  13951. bottom: 7.63/297.8
  13952. }
  13953. },
  13954. back: {
  13955. height: math.unit(5 + 7 / 12, "feet"),
  13956. weight: math.unit(159, "lb"),
  13957. name: "Back",
  13958. image: {
  13959. source: "./media/characters/hildegard/back.svg",
  13960. extra: 280/260,
  13961. bottom: 2.3/282
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Normal",
  13968. height: math.unit(5 + 7 / 12, "feet"),
  13969. default: true
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13975. {
  13976. bernard: {
  13977. height: math.unit(2 + 7 / 12, "feet"),
  13978. weight: math.unit(66, "lb"),
  13979. name: "Bernard",
  13980. rename: true,
  13981. image: {
  13982. source: "./media/characters/bernard-wilder/bernard.svg",
  13983. extra: 192 / 128,
  13984. bottom: 0.05
  13985. }
  13986. },
  13987. wilder: {
  13988. height: math.unit(5 + 8 / 12, "feet"),
  13989. weight: math.unit(143, "lb"),
  13990. name: "Wilder",
  13991. rename: true,
  13992. image: {
  13993. source: "./media/characters/bernard-wilder/wilder.svg",
  13994. extra: 361 / 312,
  13995. bottom: 0.02
  13996. }
  13997. },
  13998. },
  13999. [
  14000. {
  14001. name: "Normal",
  14002. height: math.unit(2 + 7 / 12, "feet"),
  14003. default: true
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14009. {
  14010. anthro: {
  14011. height: math.unit(6 + 1 / 12, "feet"),
  14012. weight: math.unit(155, "lb"),
  14013. name: "Anthro",
  14014. image: {
  14015. source: "./media/characters/hearth/anthro.svg",
  14016. extra: 260 / 250,
  14017. bottom: 0.02
  14018. }
  14019. },
  14020. feral: {
  14021. height: math.unit(3.78, "feet"),
  14022. weight: math.unit(35, "kg"),
  14023. name: "Feral",
  14024. image: {
  14025. source: "./media/characters/hearth/feral.svg",
  14026. extra: 153 / 135,
  14027. bottom: 0.03
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Normal",
  14034. height: math.unit(6 + 1 / 12, "feet"),
  14035. default: true
  14036. },
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14041. {
  14042. front: {
  14043. height: math.unit(6, "feet"),
  14044. weight: math.unit(182, "lb"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/ingrid/front.svg",
  14048. extra: 294 / 268,
  14049. bottom: 0.027
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(6, "feet"),
  14057. default: true
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14063. {
  14064. eevee: {
  14065. height: math.unit(2 + 10 / 12, "feet"),
  14066. weight: math.unit(86, "lb"),
  14067. name: "Malgam",
  14068. image: {
  14069. source: "./media/characters/malgam/eevee.svg",
  14070. extra: 218 / 180,
  14071. bottom: 0.2
  14072. }
  14073. },
  14074. sylveon: {
  14075. height: math.unit(4, "feet"),
  14076. weight: math.unit(101, "lb"),
  14077. name: "Future Malgam",
  14078. rename: true,
  14079. image: {
  14080. source: "./media/characters/malgam/sylveon.svg",
  14081. extra: 371 / 325,
  14082. bottom: 0.015
  14083. }
  14084. },
  14085. gigantamax: {
  14086. height: math.unit(50, "feet"),
  14087. name: "Gigantamax Malgam",
  14088. rename: true,
  14089. image: {
  14090. source: "./media/characters/malgam/gigantamax.svg"
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Normal",
  14097. height: math.unit(2 + 10 / 12, "feet"),
  14098. default: true
  14099. },
  14100. ]
  14101. ))
  14102. characterMakers.push(() => makeCharacter(
  14103. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14104. {
  14105. front: {
  14106. height: math.unit(5 + 11 / 12, "feet"),
  14107. weight: math.unit(188, "lb"),
  14108. name: "Front",
  14109. image: {
  14110. source: "./media/characters/fleur/front.svg",
  14111. extra: 309 / 283,
  14112. bottom: 0.007
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Normal",
  14119. height: math.unit(5 + 11 / 12, "feet"),
  14120. default: true
  14121. },
  14122. ]
  14123. ))
  14124. characterMakers.push(() => makeCharacter(
  14125. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14126. {
  14127. front: {
  14128. height: math.unit(5 + 4 / 12, "feet"),
  14129. weight: math.unit(122, "lb"),
  14130. name: "Front",
  14131. image: {
  14132. source: "./media/characters/jude/front.svg",
  14133. extra: 288 / 273,
  14134. bottom: 0.03
  14135. }
  14136. },
  14137. },
  14138. [
  14139. {
  14140. name: "Normal",
  14141. height: math.unit(5 + 4 / 12, "feet"),
  14142. default: true
  14143. },
  14144. ]
  14145. ))
  14146. characterMakers.push(() => makeCharacter(
  14147. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14148. {
  14149. front: {
  14150. height: math.unit(5 + 11 / 12, "feet"),
  14151. weight: math.unit(190, "lb"),
  14152. name: "Front",
  14153. image: {
  14154. source: "./media/characters/seara/front.svg",
  14155. extra: 1,
  14156. bottom: 0.05
  14157. }
  14158. },
  14159. },
  14160. [
  14161. {
  14162. name: "Normal",
  14163. height: math.unit(5 + 11 / 12, "feet"),
  14164. default: true
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(16 + 5 / 12, "feet"),
  14173. weight: math.unit(524, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/caspian/front.svg",
  14177. extra: 1,
  14178. bottom: 0.04
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Normal",
  14185. height: math.unit(16 + 5 / 12, "feet"),
  14186. default: true
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(5 + 7 / 12, "feet"),
  14195. weight: math.unit(170, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/mika/front.svg",
  14199. extra: 1,
  14200. bottom: 0.016
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Normal",
  14207. height: math.unit(5 + 7 / 12, "feet"),
  14208. default: true
  14209. },
  14210. ]
  14211. ))
  14212. characterMakers.push(() => makeCharacter(
  14213. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14214. {
  14215. front: {
  14216. height: math.unit(6 + 2 / 12, "feet"),
  14217. weight: math.unit(268, "lb"),
  14218. name: "Front",
  14219. image: {
  14220. source: "./media/characters/sol/front.svg",
  14221. extra: 247 / 231,
  14222. bottom: 0.05
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(6 + 2 / 12, "feet"),
  14230. default: true
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14236. {
  14237. buizel: {
  14238. height: math.unit(2 + 5 / 12, "feet"),
  14239. weight: math.unit(87, "lb"),
  14240. name: "Buizel",
  14241. image: {
  14242. source: "./media/characters/umiko/buizel.svg",
  14243. extra: 172 / 157,
  14244. bottom: 0.01
  14245. }
  14246. },
  14247. floatzel: {
  14248. height: math.unit(5 + 9 / 12, "feet"),
  14249. weight: math.unit(250, "lb"),
  14250. name: "Floatzel",
  14251. image: {
  14252. source: "./media/characters/umiko/floatzel.svg",
  14253. extra: 262 / 248
  14254. }
  14255. },
  14256. },
  14257. [
  14258. {
  14259. name: "Normal",
  14260. height: math.unit(2 + 5 / 12, "feet"),
  14261. default: true
  14262. },
  14263. ]
  14264. ))
  14265. characterMakers.push(() => makeCharacter(
  14266. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14267. {
  14268. front: {
  14269. height: math.unit(6 + 2 / 12, "feet"),
  14270. weight: math.unit(146, "lb"),
  14271. name: "Front",
  14272. image: {
  14273. source: "./media/characters/iliac/front.svg",
  14274. extra: 389 / 365,
  14275. bottom: 0.035
  14276. }
  14277. },
  14278. },
  14279. [
  14280. {
  14281. name: "Normal",
  14282. height: math.unit(6 + 2 / 12, "feet"),
  14283. default: true
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14289. {
  14290. front: {
  14291. height: math.unit(6, "feet"),
  14292. weight: math.unit(170, "lb"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/topaz/front.svg",
  14296. extra: 317 / 303,
  14297. bottom: 0.055
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(6, "feet"),
  14305. default: true
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14311. {
  14312. front: {
  14313. height: math.unit(5 + 11 / 12, "feet"),
  14314. weight: math.unit(144, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/gabriel/front.svg",
  14318. extra: 285 / 262,
  14319. bottom: 0.004
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(5 + 11 / 12, "feet"),
  14327. default: true
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14333. {
  14334. side: {
  14335. height: math.unit(6 + 5 / 12, "feet"),
  14336. weight: math.unit(300, "lb"),
  14337. name: "Side",
  14338. image: {
  14339. source: "./media/characters/tempest-suicune/side.svg",
  14340. extra: 195 / 154,
  14341. bottom: 0.04
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(6 + 5 / 12, "feet"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14355. {
  14356. front: {
  14357. height: math.unit(7 + 2 / 12, "feet"),
  14358. weight: math.unit(322, "lb"),
  14359. name: "Front",
  14360. image: {
  14361. source: "./media/characters/vulcan/front.svg",
  14362. extra: 154 / 147,
  14363. bottom: 0.04
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(7 + 2 / 12, "feet"),
  14371. default: true
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(5 + 10 / 12, "feet"),
  14380. weight: math.unit(264, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/gault/front.svg",
  14384. extra: 161 / 140,
  14385. bottom: 0.028
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(5 + 10 / 12, "feet"),
  14393. default: true
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(6, "feet"),
  14402. weight: math.unit(150, "lb"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/shard/front.svg",
  14406. extra: 273 / 238,
  14407. bottom: 0.02
  14408. }
  14409. },
  14410. },
  14411. [
  14412. {
  14413. name: "Normal",
  14414. height: math.unit(3 + 6 / 12, "feet"),
  14415. default: true
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(5 + 11 / 12, "feet"),
  14424. weight: math.unit(146, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/ashe/front.svg",
  14428. extra: 400 / 373,
  14429. bottom: 0.01
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(5 + 11 / 12, "feet"),
  14437. default: true
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14443. {
  14444. front: {
  14445. height: math.unit(5 + 5 / 12, "feet"),
  14446. weight: math.unit(135, "lb"),
  14447. name: "Front",
  14448. image: {
  14449. source: "./media/characters/beatrix/front.svg",
  14450. extra: 392 / 379,
  14451. bottom: 0.01
  14452. }
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "Normal",
  14458. height: math.unit(6, "feet"),
  14459. default: true
  14460. },
  14461. ]
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14465. {
  14466. front: {
  14467. height: math.unit(6, "feet"),
  14468. weight: math.unit(150, "lb"),
  14469. name: "Front",
  14470. image: {
  14471. source: "./media/characters/ignatius/front.svg",
  14472. extra: 245 / 222,
  14473. bottom: 0.01
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(5 + 5 / 12, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(6 + 2 / 12, "feet"),
  14490. weight: math.unit(138, "lb"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/mei-li/front.svg",
  14494. extra: 237 / 229,
  14495. bottom: 0.03
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Normal",
  14502. height: math.unit(6 + 2 / 12, "feet"),
  14503. default: true
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14509. {
  14510. front: {
  14511. height: math.unit(2 + 4 / 12, "feet"),
  14512. weight: math.unit(62, "lb"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/puru/front.svg",
  14516. extra: 206 / 149,
  14517. bottom: 0.06
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(2 + 4 / 12, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14531. {
  14532. taur: {
  14533. height: math.unit(11, "feet"),
  14534. weight: math.unit(500, "lb"),
  14535. name: "Taur",
  14536. image: {
  14537. source: "./media/characters/kee/taur.svg",
  14538. extra: 1,
  14539. bottom: 0.04
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Normal",
  14546. height: math.unit(11, "feet"),
  14547. default: true
  14548. },
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14553. {
  14554. anthro: {
  14555. height: math.unit(7, "feet"),
  14556. weight: math.unit(190, "lb"),
  14557. name: "Anthro",
  14558. image: {
  14559. source: "./media/characters/cobalt-dracha/anthro.svg",
  14560. extra: 231 / 225,
  14561. bottom: 0.04
  14562. }
  14563. },
  14564. feral: {
  14565. height: math.unit(9 + 7 / 12, "feet"),
  14566. weight: math.unit(294, "lb"),
  14567. name: "Feral",
  14568. image: {
  14569. source: "./media/characters/cobalt-dracha/feral.svg",
  14570. extra: 692 / 633,
  14571. bottom: 0.05
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(7, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14585. {
  14586. fallen: {
  14587. height: math.unit(11 + 8 / 12, "feet"),
  14588. weight: math.unit(485, "lb"),
  14589. name: "Java (Fallen)",
  14590. rename: true,
  14591. image: {
  14592. source: "./media/characters/java/fallen.svg",
  14593. extra: 226 / 208,
  14594. bottom: 0.005
  14595. }
  14596. },
  14597. godkin: {
  14598. height: math.unit(10 + 6 / 12, "feet"),
  14599. weight: math.unit(328, "lb"),
  14600. name: "Java (Godkin)",
  14601. rename: true,
  14602. image: {
  14603. source: "./media/characters/java/godkin.svg",
  14604. extra: 270 / 262,
  14605. bottom: 0.02
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Normal",
  14612. height: math.unit(11 + 8 / 12, "feet"),
  14613. default: true
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14619. {
  14620. front: {
  14621. height: math.unit(7 + 8 / 12, "feet"),
  14622. weight: math.unit(320, "lb"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/skoll/front.svg",
  14626. extra: 232 / 220,
  14627. bottom: 0.02
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Normal",
  14634. height: math.unit(7 + 8 / 12, "feet"),
  14635. default: true
  14636. },
  14637. ]
  14638. ))
  14639. characterMakers.push(() => makeCharacter(
  14640. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14641. {
  14642. front: {
  14643. height: math.unit(5 + 9 / 12, "feet"),
  14644. weight: math.unit(170, "lb"),
  14645. name: "Front",
  14646. image: {
  14647. source: "./media/characters/purna/front.svg",
  14648. extra: 239 / 229,
  14649. bottom: 0.01
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Normal",
  14656. height: math.unit(5 + 9 / 12, "feet"),
  14657. default: true
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14663. {
  14664. front: {
  14665. height: math.unit(5 + 9 / 12, "feet"),
  14666. weight: math.unit(142, "lb"),
  14667. name: "Front",
  14668. image: {
  14669. source: "./media/characters/kuva/front.svg",
  14670. extra: 281 / 271,
  14671. bottom: 0.006
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Normal",
  14678. height: math.unit(5 + 9 / 12, "feet"),
  14679. default: true
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14685. {
  14686. anthro: {
  14687. height: math.unit(9 + 2 / 12, "feet"),
  14688. weight: math.unit(270, "lb"),
  14689. name: "Anthro",
  14690. image: {
  14691. source: "./media/characters/embra/anthro.svg",
  14692. extra: 200 / 187,
  14693. bottom: 0.02
  14694. }
  14695. },
  14696. feral: {
  14697. height: math.unit(18 + 8 / 12, "feet"),
  14698. weight: math.unit(576, "lb"),
  14699. name: "Feral",
  14700. image: {
  14701. source: "./media/characters/embra/feral.svg",
  14702. extra: 152 / 137,
  14703. bottom: 0.037
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Normal",
  14710. height: math.unit(9 + 2 / 12, "feet"),
  14711. default: true
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14717. {
  14718. anthro: {
  14719. height: math.unit(10 + 9 / 12, "feet"),
  14720. weight: math.unit(224, "lb"),
  14721. name: "Anthro",
  14722. image: {
  14723. source: "./media/characters/grottos/anthro.svg",
  14724. extra: 350 / 332,
  14725. bottom: 0.045
  14726. }
  14727. },
  14728. feral: {
  14729. height: math.unit(20 + 7 / 12, "feet"),
  14730. weight: math.unit(629, "lb"),
  14731. name: "Feral",
  14732. image: {
  14733. source: "./media/characters/grottos/feral.svg",
  14734. extra: 207 / 190,
  14735. bottom: 0.05
  14736. }
  14737. },
  14738. },
  14739. [
  14740. {
  14741. name: "Normal",
  14742. height: math.unit(10 + 9 / 12, "feet"),
  14743. default: true
  14744. },
  14745. ]
  14746. ))
  14747. characterMakers.push(() => makeCharacter(
  14748. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14749. {
  14750. anthro: {
  14751. height: math.unit(9 + 6 / 12, "feet"),
  14752. weight: math.unit(298, "lb"),
  14753. name: "Anthro",
  14754. image: {
  14755. source: "./media/characters/frifna/anthro.svg",
  14756. extra: 282 / 269,
  14757. bottom: 0.015
  14758. }
  14759. },
  14760. feral: {
  14761. height: math.unit(16 + 2 / 12, "feet"),
  14762. weight: math.unit(624, "lb"),
  14763. name: "Feral",
  14764. image: {
  14765. source: "./media/characters/frifna/feral.svg"
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Normal",
  14772. height: math.unit(9 + 6 / 12, "feet"),
  14773. default: true
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(6 + 2 / 12, "feet"),
  14782. weight: math.unit(168, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/elise/front.svg",
  14786. extra: 276 / 271
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(6 + 2 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(5 + 10 / 12, "feet"),
  14803. weight: math.unit(210, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/glade/front.svg",
  14807. extra: 258 / 247,
  14808. bottom: 0.008
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(5 + 10 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(5 + 10 / 12, "feet"),
  14825. weight: math.unit(129, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/rina/front.svg",
  14829. extra: 266 / 255,
  14830. bottom: 0.005
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(5 + 10 / 12, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(6 + 1 / 12, "feet"),
  14847. weight: math.unit(192, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/veronica/front.svg",
  14851. extra: 319 / 309,
  14852. bottom: 0.005
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(6 + 1 / 12, "feet"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(9 + 3 / 12, "feet"),
  14869. weight: math.unit(1100, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/braxton/front.svg",
  14873. extra: 1057 / 984,
  14874. bottom: 0.05
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(9 + 3 / 12, "feet")
  14882. },
  14883. {
  14884. name: "Giant",
  14885. height: math.unit(300, "feet"),
  14886. default: true
  14887. },
  14888. {
  14889. name: "Macro",
  14890. height: math.unit(700, "feet")
  14891. },
  14892. {
  14893. name: "Megamacro",
  14894. height: math.unit(6000, "feet")
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(6 + 7 / 12, "feet"),
  14903. weight: math.unit(150, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/blue-feyonics/front.svg",
  14907. extra: 1403 / 1306,
  14908. bottom: 0.047
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(6 + 7 / 12, "feet"),
  14916. default: true
  14917. },
  14918. ]
  14919. ))
  14920. characterMakers.push(() => makeCharacter(
  14921. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14922. {
  14923. front: {
  14924. height: math.unit(1.8, "meters"),
  14925. weight: math.unit(60, "kg"),
  14926. name: "Front",
  14927. image: {
  14928. source: "./media/characters/maxwell/front.svg",
  14929. extra: 2060 / 1873
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Micro",
  14936. height: math.unit(1, "mm")
  14937. },
  14938. {
  14939. name: "Normal",
  14940. height: math.unit(1.8, "meter"),
  14941. default: true
  14942. },
  14943. {
  14944. name: "Macro",
  14945. height: math.unit(30, "meters")
  14946. },
  14947. {
  14948. name: "Megamacro",
  14949. height: math.unit(10, "km")
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(150, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/jack/front.svg",
  14962. extra: 1754 / 1640,
  14963. bottom: 0.01
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Normal",
  14970. height: math.unit(80000, "feet"),
  14971. default: true
  14972. },
  14973. {
  14974. name: "Max size",
  14975. height: math.unit(10, "lightyears")
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14981. {
  14982. upright: {
  14983. height: math.unit(7, "feet"),
  14984. weight: math.unit(170, "lb"),
  14985. name: "Upright",
  14986. image: {
  14987. source: "./media/characters/cafat/upright.svg",
  14988. bottom: 0.01
  14989. }
  14990. },
  14991. uprightFull: {
  14992. height: math.unit(7, "feet"),
  14993. weight: math.unit(170, "lb"),
  14994. name: "Upright (Full)",
  14995. image: {
  14996. source: "./media/characters/cafat/upright-full.svg",
  14997. bottom: 0.01
  14998. }
  14999. },
  15000. side: {
  15001. height: math.unit(5, "feet"),
  15002. weight: math.unit(150, "lb"),
  15003. name: "Side",
  15004. image: {
  15005. source: "./media/characters/cafat/side.svg"
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Small",
  15012. height: math.unit(7, "feet"),
  15013. default: true
  15014. },
  15015. {
  15016. name: "Large",
  15017. height: math.unit(15.5, "feet")
  15018. },
  15019. ]
  15020. ))
  15021. characterMakers.push(() => makeCharacter(
  15022. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15023. {
  15024. front: {
  15025. height: math.unit(6, "feet"),
  15026. weight: math.unit(150, "lb"),
  15027. name: "Front",
  15028. image: {
  15029. source: "./media/characters/verin-raharra/front.svg",
  15030. extra: 5019 / 4835,
  15031. bottom: 0.023
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Normal",
  15038. height: math.unit(7 + 5 / 12, "feet"),
  15039. default: true
  15040. },
  15041. {
  15042. name: "Upsized",
  15043. height: math.unit(20, "feet")
  15044. },
  15045. ]
  15046. ))
  15047. characterMakers.push(() => makeCharacter(
  15048. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15049. {
  15050. front: {
  15051. height: math.unit(7, "feet"),
  15052. weight: math.unit(230, "lb"),
  15053. name: "Front",
  15054. image: {
  15055. source: "./media/characters/nakata/front.svg",
  15056. extra: 1.005,
  15057. bottom: 0.01
  15058. }
  15059. },
  15060. },
  15061. [
  15062. {
  15063. name: "Normal",
  15064. height: math.unit(7, "feet"),
  15065. default: true
  15066. },
  15067. {
  15068. name: "Big",
  15069. height: math.unit(14, "feet")
  15070. },
  15071. {
  15072. name: "Macro",
  15073. height: math.unit(400, "feet")
  15074. },
  15075. ]
  15076. ))
  15077. characterMakers.push(() => makeCharacter(
  15078. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15079. {
  15080. front: {
  15081. height: math.unit(4.91, "feet"),
  15082. weight: math.unit(100, "lb"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/lily/front.svg",
  15086. extra: 1585 / 1415,
  15087. bottom: 0.02
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(4.91, "feet"),
  15095. default: true
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15101. {
  15102. laying: {
  15103. height: math.unit(4 + 4 / 12, "feet"),
  15104. weight: math.unit(600, "lb"),
  15105. name: "Laying",
  15106. image: {
  15107. source: "./media/characters/sheila/laying.svg",
  15108. extra: 1333 / 1265,
  15109. bottom: 0.16
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Normal",
  15116. height: math.unit(4 + 4 / 12, "feet"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(190, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/sax/front.svg",
  15130. extra: 1187 / 973,
  15131. bottom: 0.042
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Micro",
  15138. height: math.unit(4, "inches"),
  15139. default: true
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15145. {
  15146. front: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(150, "lb"),
  15149. name: "Front",
  15150. image: {
  15151. source: "./media/characters/pandora/front.svg",
  15152. extra: 2720 / 2556,
  15153. bottom: 0.015
  15154. }
  15155. },
  15156. back: {
  15157. height: math.unit(6, "feet"),
  15158. weight: math.unit(150, "lb"),
  15159. name: "Back",
  15160. image: {
  15161. source: "./media/characters/pandora/back.svg",
  15162. extra: 2720 / 2556,
  15163. bottom: 0.01
  15164. }
  15165. },
  15166. beans: {
  15167. height: math.unit(6 / 8, "feet"),
  15168. name: "Beans",
  15169. image: {
  15170. source: "./media/characters/pandora/beans.svg"
  15171. }
  15172. },
  15173. skirt: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Skirt",
  15177. image: {
  15178. source: "./media/characters/pandora/skirt.svg",
  15179. extra: 1622 / 1525,
  15180. bottom: 0.015
  15181. }
  15182. },
  15183. hoodie: {
  15184. height: math.unit(6, "feet"),
  15185. weight: math.unit(150, "lb"),
  15186. name: "Hoodie",
  15187. image: {
  15188. source: "./media/characters/pandora/hoodie.svg",
  15189. extra: 1622 / 1525,
  15190. bottom: 0.015
  15191. }
  15192. },
  15193. casual: {
  15194. height: math.unit(6, "feet"),
  15195. weight: math.unit(150, "lb"),
  15196. name: "Casual",
  15197. image: {
  15198. source: "./media/characters/pandora/casual.svg",
  15199. extra: 1622 / 1525,
  15200. bottom: 0.015
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(6, "feet")
  15208. },
  15209. {
  15210. name: "Big Steppy",
  15211. height: math.unit(1, "km"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15218. {
  15219. side: {
  15220. height: math.unit(10, "feet"),
  15221. weight: math.unit(800, "kg"),
  15222. name: "Side",
  15223. image: {
  15224. source: "./media/characters/venio-darcony/side.svg",
  15225. extra: 1373 / 1003,
  15226. bottom: 0.037
  15227. }
  15228. },
  15229. front: {
  15230. height: math.unit(19, "feet"),
  15231. weight: math.unit(800, "kg"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/venio-darcony/front.svg"
  15235. }
  15236. },
  15237. back: {
  15238. height: math.unit(19, "feet"),
  15239. weight: math.unit(800, "kg"),
  15240. name: "Back",
  15241. image: {
  15242. source: "./media/characters/venio-darcony/back.svg"
  15243. }
  15244. },
  15245. sideNsfw: {
  15246. height: math.unit(10, "feet"),
  15247. weight: math.unit(800, "kg"),
  15248. name: "Side (NSFW)",
  15249. image: {
  15250. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15251. extra: 1373 / 1003,
  15252. bottom: 0.037
  15253. }
  15254. },
  15255. frontNsfw: {
  15256. height: math.unit(19, "feet"),
  15257. weight: math.unit(800, "kg"),
  15258. name: "Front (NSFW)",
  15259. image: {
  15260. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15261. }
  15262. },
  15263. backNsfw: {
  15264. height: math.unit(19, "feet"),
  15265. weight: math.unit(800, "kg"),
  15266. name: "Back (NSFW)",
  15267. image: {
  15268. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15269. }
  15270. },
  15271. sideArmored: {
  15272. height: math.unit(10, "feet"),
  15273. weight: math.unit(800, "kg"),
  15274. name: "Side (Armored)",
  15275. image: {
  15276. source: "./media/characters/venio-darcony/side-armored.svg",
  15277. extra: 1373 / 1003,
  15278. bottom: 0.037
  15279. }
  15280. },
  15281. frontArmored: {
  15282. height: math.unit(19, "feet"),
  15283. weight: math.unit(900, "kg"),
  15284. name: "Front (Armored)",
  15285. image: {
  15286. source: "./media/characters/venio-darcony/front-armored.svg"
  15287. }
  15288. },
  15289. backArmored: {
  15290. height: math.unit(19, "feet"),
  15291. weight: math.unit(900, "kg"),
  15292. name: "Back (Armored)",
  15293. image: {
  15294. source: "./media/characters/venio-darcony/back-armored.svg"
  15295. }
  15296. },
  15297. sword: {
  15298. height: math.unit(10, "feet"),
  15299. weight: math.unit(50, "lb"),
  15300. name: "Sword",
  15301. image: {
  15302. source: "./media/characters/venio-darcony/sword.svg"
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Normal",
  15309. height: math.unit(10, "feet")
  15310. },
  15311. {
  15312. name: "Macro",
  15313. height: math.unit(130, "feet"),
  15314. default: true
  15315. },
  15316. {
  15317. name: "Macro+",
  15318. height: math.unit(240, "feet")
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(6, "feet"),
  15327. weight: math.unit(150, "lb"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/veski/front.svg",
  15331. extra: 1299 / 1225,
  15332. bottom: 0.04
  15333. }
  15334. },
  15335. back: {
  15336. height: math.unit(6, "feet"),
  15337. weight: math.unit(150, "lb"),
  15338. name: "Back",
  15339. image: {
  15340. source: "./media/characters/veski/back.svg",
  15341. extra: 1299 / 1225,
  15342. bottom: 0.008
  15343. }
  15344. },
  15345. maw: {
  15346. height: math.unit(1.5 * 1.21, "feet"),
  15347. name: "Maw",
  15348. image: {
  15349. source: "./media/characters/veski/maw.svg"
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Macro",
  15356. height: math.unit(2, "km"),
  15357. default: true
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15363. {
  15364. front: {
  15365. height: math.unit(5 + 7 / 12, "feet"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/isabelle/front.svg",
  15369. extra: 2130 / 1976,
  15370. bottom: 0.05
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Supermicro",
  15377. height: math.unit(10, "micrometers")
  15378. },
  15379. {
  15380. name: "Micro",
  15381. height: math.unit(1, "inch")
  15382. },
  15383. {
  15384. name: "Tiny",
  15385. height: math.unit(5, "inches")
  15386. },
  15387. {
  15388. name: "Standard",
  15389. height: math.unit(5 + 7 / 12, "inches")
  15390. },
  15391. {
  15392. name: "Macro",
  15393. height: math.unit(80, "meters"),
  15394. default: true
  15395. },
  15396. {
  15397. name: "Megamacro",
  15398. height: math.unit(250, "meters")
  15399. },
  15400. {
  15401. name: "Gigamacro",
  15402. height: math.unit(5, "km")
  15403. },
  15404. {
  15405. name: "Cosmic",
  15406. height: math.unit(2.5e6, "miles")
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15412. {
  15413. front: {
  15414. height: math.unit(6, "feet"),
  15415. weight: math.unit(150, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/hanzo/front.svg",
  15419. extra: 374 / 344,
  15420. bottom: 0.02
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Normal",
  15427. height: math.unit(8, "feet"),
  15428. default: true
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(7, "feet"),
  15437. weight: math.unit(130, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/anna/front.svg",
  15441. extra: 169 / 145,
  15442. bottom: 0.06
  15443. }
  15444. },
  15445. full: {
  15446. height: math.unit(4.96, "feet"),
  15447. weight: math.unit(220, "lb"),
  15448. name: "Full",
  15449. image: {
  15450. source: "./media/characters/anna/full.svg",
  15451. extra: 138 / 114,
  15452. bottom: 0.15
  15453. }
  15454. },
  15455. tongue: {
  15456. height: math.unit(2.53, "feet"),
  15457. name: "Tongue",
  15458. image: {
  15459. source: "./media/characters/anna/tongue.svg"
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Normal",
  15466. height: math.unit(7, "feet"),
  15467. default: true
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15473. {
  15474. front: {
  15475. height: math.unit(7, "feet"),
  15476. weight: math.unit(150, "lb"),
  15477. name: "Front",
  15478. image: {
  15479. source: "./media/characters/ian-corvid/front.svg",
  15480. extra: 150 / 142,
  15481. bottom: 0.02
  15482. }
  15483. },
  15484. back: {
  15485. height: math.unit(7, "feet"),
  15486. weight: math.unit(150, "lb"),
  15487. name: "Back",
  15488. image: {
  15489. source: "./media/characters/ian-corvid/back.svg",
  15490. extra: 150 / 143,
  15491. bottom: 0.01
  15492. }
  15493. },
  15494. stomping: {
  15495. height: math.unit(7, "feet"),
  15496. weight: math.unit(150, "lb"),
  15497. name: "Stomping",
  15498. image: {
  15499. source: "./media/characters/ian-corvid/stomping.svg",
  15500. extra: 76 / 72
  15501. }
  15502. },
  15503. sitting: {
  15504. height: math.unit(7 / 1.8, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Sitting",
  15507. image: {
  15508. source: "./media/characters/ian-corvid/sitting.svg",
  15509. extra: 1400 / 1269,
  15510. bottom: 0.15
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Tiny Microw",
  15517. height: math.unit(1, "inch")
  15518. },
  15519. {
  15520. name: "Microw",
  15521. height: math.unit(6, "inches")
  15522. },
  15523. {
  15524. name: "Crow",
  15525. height: math.unit(7 + 1 / 12, "feet"),
  15526. default: true
  15527. },
  15528. {
  15529. name: "Macrow",
  15530. height: math.unit(176, "feet")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(5 + 7 / 12, "feet"),
  15539. weight: math.unit(147, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/natalie-kellon/front.svg",
  15543. extra: 1214 / 1141,
  15544. bottom: 0.02
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Micro",
  15551. height: math.unit(1 / 16, "inch")
  15552. },
  15553. {
  15554. name: "Tiny",
  15555. height: math.unit(4, "inches")
  15556. },
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(5 + 7 / 12, "feet"),
  15560. default: true
  15561. },
  15562. {
  15563. name: "Amazon",
  15564. height: math.unit(12, "feet")
  15565. },
  15566. {
  15567. name: "Giantess",
  15568. height: math.unit(160, "meters")
  15569. },
  15570. {
  15571. name: "Titaness",
  15572. height: math.unit(800, "meters")
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(6, "feet"),
  15581. weight: math.unit(150, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/alluria/front.svg",
  15585. extra: 806 / 738,
  15586. bottom: 0.01
  15587. }
  15588. },
  15589. side: {
  15590. height: math.unit(6, "feet"),
  15591. weight: math.unit(150, "lb"),
  15592. name: "Side",
  15593. image: {
  15594. source: "./media/characters/alluria/side.svg",
  15595. extra: 800 / 750,
  15596. }
  15597. },
  15598. back: {
  15599. height: math.unit(6, "feet"),
  15600. weight: math.unit(150, "lb"),
  15601. name: "Back",
  15602. image: {
  15603. source: "./media/characters/alluria/back.svg",
  15604. extra: 806 / 738,
  15605. }
  15606. },
  15607. frontMaid: {
  15608. height: math.unit(6, "feet"),
  15609. weight: math.unit(150, "lb"),
  15610. name: "Front (Maid)",
  15611. image: {
  15612. source: "./media/characters/alluria/front-maid.svg",
  15613. extra: 806 / 738,
  15614. bottom: 0.01
  15615. }
  15616. },
  15617. sideMaid: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Side (Maid)",
  15621. image: {
  15622. source: "./media/characters/alluria/side-maid.svg",
  15623. extra: 800 / 750,
  15624. bottom: 0.005
  15625. }
  15626. },
  15627. backMaid: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(150, "lb"),
  15630. name: "Back (Maid)",
  15631. image: {
  15632. source: "./media/characters/alluria/back-maid.svg",
  15633. extra: 806 / 738,
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "Micro",
  15640. height: math.unit(6, "inches"),
  15641. default: true
  15642. },
  15643. ]
  15644. ))
  15645. characterMakers.push(() => makeCharacter(
  15646. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15647. {
  15648. front: {
  15649. height: math.unit(6, "feet"),
  15650. weight: math.unit(150, "lb"),
  15651. name: "Front",
  15652. image: {
  15653. source: "./media/characters/kyle/front.svg",
  15654. extra: 1069 / 962,
  15655. bottom: 77.228 / 1727.45
  15656. }
  15657. },
  15658. },
  15659. [
  15660. {
  15661. name: "Macro",
  15662. height: math.unit(150, "feet"),
  15663. default: true
  15664. },
  15665. ]
  15666. ))
  15667. characterMakers.push(() => makeCharacter(
  15668. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15669. {
  15670. front: {
  15671. height: math.unit(6, "feet"),
  15672. weight: math.unit(300, "lb"),
  15673. name: "Front",
  15674. image: {
  15675. source: "./media/characters/duncan/front.svg",
  15676. extra: 1650 / 1482,
  15677. bottom: 0.05
  15678. }
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Macro",
  15684. height: math.unit(100, "feet"),
  15685. default: true
  15686. },
  15687. ]
  15688. ))
  15689. characterMakers.push(() => makeCharacter(
  15690. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15691. {
  15692. front: {
  15693. height: math.unit(5 + 4 / 12, "feet"),
  15694. weight: math.unit(220, "lb"),
  15695. name: "Front",
  15696. image: {
  15697. source: "./media/characters/memory/front.svg",
  15698. extra: 3641 / 3545,
  15699. bottom: 0.03
  15700. }
  15701. },
  15702. back: {
  15703. height: math.unit(5 + 4 / 12, "feet"),
  15704. weight: math.unit(220, "lb"),
  15705. name: "Back",
  15706. image: {
  15707. source: "./media/characters/memory/back.svg",
  15708. extra: 3641 / 3545,
  15709. bottom: 0.025
  15710. }
  15711. },
  15712. frontSkirt: {
  15713. height: math.unit(5 + 4 / 12, "feet"),
  15714. weight: math.unit(220, "lb"),
  15715. name: "Front (Skirt)",
  15716. image: {
  15717. source: "./media/characters/memory/front-skirt.svg",
  15718. extra: 3641 / 3545,
  15719. bottom: 0.03
  15720. }
  15721. },
  15722. frontDress: {
  15723. height: math.unit(5 + 4 / 12, "feet"),
  15724. weight: math.unit(220, "lb"),
  15725. name: "Front (Dress)",
  15726. image: {
  15727. source: "./media/characters/memory/front-dress.svg",
  15728. extra: 3641 / 3545,
  15729. bottom: 0.03
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Micro",
  15736. height: math.unit(6, "inches"),
  15737. default: true
  15738. },
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(5 + 4 / 12, "feet")
  15742. },
  15743. ]
  15744. ))
  15745. characterMakers.push(() => makeCharacter(
  15746. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15747. {
  15748. front: {
  15749. height: math.unit(4 + 11 / 12, "feet"),
  15750. weight: math.unit(100, "lb"),
  15751. name: "Front",
  15752. image: {
  15753. source: "./media/characters/luno/front.svg",
  15754. extra: 1535 / 1487,
  15755. bottom: 0.03
  15756. }
  15757. },
  15758. },
  15759. [
  15760. {
  15761. name: "Micro",
  15762. height: math.unit(3, "inches")
  15763. },
  15764. {
  15765. name: "Normal",
  15766. height: math.unit(4 + 11 / 12, "feet"),
  15767. default: true
  15768. },
  15769. {
  15770. name: "Macro",
  15771. height: math.unit(300, "feet")
  15772. },
  15773. {
  15774. name: "Megamacro",
  15775. height: math.unit(700, "miles")
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15781. {
  15782. front: {
  15783. height: math.unit(6 + 2 / 12, "feet"),
  15784. weight: math.unit(170, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/jamesy/front.svg",
  15788. extra: 440 / 382,
  15789. bottom: 0.005
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Micro",
  15796. height: math.unit(3, "inches")
  15797. },
  15798. {
  15799. name: "Normal",
  15800. height: math.unit(6 + 2 / 12, "feet"),
  15801. default: true
  15802. },
  15803. {
  15804. name: "Macro",
  15805. height: math.unit(300, "feet")
  15806. },
  15807. {
  15808. name: "Megamacro",
  15809. height: math.unit(700, "miles")
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15815. {
  15816. front: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(160, "lb"),
  15819. name: "Front",
  15820. image: {
  15821. source: "./media/characters/mark/front.svg",
  15822. extra: 3300 / 3100,
  15823. bottom: 136.42 / 3440.47
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Macro",
  15830. height: math.unit(120, "meters")
  15831. },
  15832. {
  15833. name: "Bigger Macro",
  15834. height: math.unit(350, "meters")
  15835. },
  15836. {
  15837. name: "Megamacro",
  15838. height: math.unit(8, "km"),
  15839. default: true
  15840. },
  15841. {
  15842. name: "Continental",
  15843. height: math.unit(4550, "km")
  15844. },
  15845. {
  15846. name: "Planetary",
  15847. height: math.unit(65000, "km")
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(6, "feet"),
  15856. weight: math.unit(400, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/mac/front.svg",
  15860. extra: 1048 / 987.7,
  15861. bottom: 60 / 1107.6,
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Macro",
  15868. height: math.unit(500, "feet"),
  15869. default: true
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15875. {
  15876. front: {
  15877. height: math.unit(5 + 2 / 12, "feet"),
  15878. weight: math.unit(190, "lb"),
  15879. name: "Front",
  15880. image: {
  15881. source: "./media/characters/bari/front.svg",
  15882. extra: 3156 / 2880,
  15883. bottom: 0.03
  15884. }
  15885. },
  15886. back: {
  15887. height: math.unit(5 + 2 / 12, "feet"),
  15888. weight: math.unit(190, "lb"),
  15889. name: "Back",
  15890. image: {
  15891. source: "./media/characters/bari/back.svg",
  15892. extra: 3260 / 2834,
  15893. bottom: 0.025
  15894. }
  15895. },
  15896. frontPlush: {
  15897. height: math.unit(5 + 2 / 12, "feet"),
  15898. weight: math.unit(190, "lb"),
  15899. name: "Front (Plush)",
  15900. image: {
  15901. source: "./media/characters/bari/front-plush.svg",
  15902. extra: 1112 / 1061,
  15903. bottom: 0.002
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Micro",
  15910. height: math.unit(3, "inches")
  15911. },
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(5 + 2 / 12, "feet"),
  15915. default: true
  15916. },
  15917. {
  15918. name: "Macro",
  15919. height: math.unit(20, "feet")
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(6 + 1 / 12, "feet"),
  15928. weight: math.unit(275, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/hunter-misha-raven/front.svg"
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Mortal",
  15938. height: math.unit(6 + 1 / 12, "feet")
  15939. },
  15940. {
  15941. name: "Divine",
  15942. height: math.unit(1.12134e34, "parsecs"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(6 + 3 / 12, "feet"),
  15952. weight: math.unit(220, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/max-calore/front.svg",
  15956. extra: 1700 / 1648,
  15957. bottom: 0.01
  15958. }
  15959. },
  15960. back: {
  15961. height: math.unit(6 + 3 / 12, "feet"),
  15962. weight: math.unit(220, "lb"),
  15963. name: "Back",
  15964. image: {
  15965. source: "./media/characters/max-calore/back.svg",
  15966. extra: 1700 / 1648,
  15967. bottom: 0.01
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(6 + 3 / 12, "feet"),
  15975. default: true
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15981. {
  15982. side: {
  15983. height: math.unit(2 + 8 / 12, "feet"),
  15984. weight: math.unit(99, "lb"),
  15985. name: "Side",
  15986. image: {
  15987. source: "./media/characters/aspen/side.svg",
  15988. extra: 152 / 138,
  15989. bottom: 0.032
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(2 + 8 / 12, "feet"),
  15997. default: true
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16003. {
  16004. side: {
  16005. height: math.unit(3 + 2 / 12, "feet"),
  16006. weight: math.unit(224, "lb"),
  16007. name: "Side",
  16008. image: {
  16009. source: "./media/characters/sheila-feral-wolf/side.svg",
  16010. extra: 179 / 166,
  16011. bottom: 0.03
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Normal",
  16018. height: math.unit(3 + 2 / 12, "feet"),
  16019. default: true
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16025. {
  16026. side: {
  16027. height: math.unit(1 + 9 / 12, "feet"),
  16028. weight: math.unit(38, "lb"),
  16029. name: "Side",
  16030. image: {
  16031. source: "./media/characters/michelle/side.svg",
  16032. extra: 147 / 136.7,
  16033. bottom: 0.03
  16034. }
  16035. },
  16036. },
  16037. [
  16038. {
  16039. name: "Normal",
  16040. height: math.unit(1 + 9 / 12, "feet"),
  16041. default: true
  16042. },
  16043. ]
  16044. ))
  16045. characterMakers.push(() => makeCharacter(
  16046. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16047. {
  16048. front: {
  16049. height: math.unit(1 + 1 / 12, "feet"),
  16050. weight: math.unit(18, "lb"),
  16051. name: "Front",
  16052. image: {
  16053. source: "./media/characters/nino/front.svg"
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(1 + 1 / 12, "feet"),
  16061. default: true
  16062. },
  16063. ]
  16064. ))
  16065. characterMakers.push(() => makeCharacter(
  16066. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16067. {
  16068. front: {
  16069. height: math.unit(1, "feet"),
  16070. weight: math.unit(16, "lb"),
  16071. name: "Front",
  16072. image: {
  16073. source: "./media/characters/viola/front.svg"
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(1, "feet"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16087. {
  16088. front: {
  16089. height: math.unit(6 + 5 / 12, "feet"),
  16090. weight: math.unit(580, "lb"),
  16091. name: "Front",
  16092. image: {
  16093. source: "./media/characters/atlas/front.svg",
  16094. extra: 298.5 / 290,
  16095. bottom: 0.015
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(6 + 5 / 12, "feet"),
  16103. default: true
  16104. },
  16105. ]
  16106. ))
  16107. characterMakers.push(() => makeCharacter(
  16108. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16109. {
  16110. side: {
  16111. height: math.unit(1 + 10 / 12, "feet"),
  16112. weight: math.unit(25, "lb"),
  16113. name: "Side",
  16114. image: {
  16115. source: "./media/characters/davy/side.svg",
  16116. extra: 200 / 170,
  16117. bottom: 0.01
  16118. }
  16119. },
  16120. },
  16121. [
  16122. {
  16123. name: "Normal",
  16124. height: math.unit(1 + 10 / 12, "feet"),
  16125. default: true
  16126. },
  16127. ]
  16128. ))
  16129. characterMakers.push(() => makeCharacter(
  16130. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16131. {
  16132. side: {
  16133. height: math.unit(4 + 8 / 12, "feet"),
  16134. weight: math.unit(166, "lb"),
  16135. name: "Side",
  16136. image: {
  16137. source: "./media/characters/fiona/side.svg",
  16138. extra: 232 / 220,
  16139. bottom: 0.03
  16140. }
  16141. },
  16142. },
  16143. [
  16144. {
  16145. name: "Normal",
  16146. height: math.unit(4 + 8 / 12, "feet"),
  16147. default: true
  16148. },
  16149. ]
  16150. ))
  16151. characterMakers.push(() => makeCharacter(
  16152. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16153. {
  16154. front: {
  16155. height: math.unit(2, "feet"),
  16156. weight: math.unit(62, "lb"),
  16157. name: "Front",
  16158. image: {
  16159. source: "./media/characters/lyla/front.svg",
  16160. bottom: 0.1
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Normal",
  16167. height: math.unit(2, "feet"),
  16168. default: true
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16174. {
  16175. side: {
  16176. height: math.unit(1.8, "feet"),
  16177. weight: math.unit(44, "lb"),
  16178. name: "Side",
  16179. image: {
  16180. source: "./media/characters/perseus/side.svg",
  16181. bottom: 0.21
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(1.8, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16195. {
  16196. side: {
  16197. height: math.unit(4 + 2 / 12, "feet"),
  16198. weight: math.unit(20, "lb"),
  16199. name: "Side",
  16200. image: {
  16201. source: "./media/characters/remus/side.svg"
  16202. }
  16203. },
  16204. },
  16205. [
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(4 + 2 / 12, "feet"),
  16209. default: true
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16215. {
  16216. front: {
  16217. height: math.unit(4 + 11 / 12, "feet"),
  16218. weight: math.unit(114, "lb"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/raf/front.svg",
  16222. bottom: 20.5/1863
  16223. }
  16224. },
  16225. side: {
  16226. height: math.unit(4 + 11 / 12, "feet"),
  16227. weight: math.unit(114, "lb"),
  16228. name: "Side",
  16229. image: {
  16230. source: "./media/characters/raf/side.svg",
  16231. bottom: 22/1822
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Micro",
  16238. height: math.unit(2, "inches")
  16239. },
  16240. {
  16241. name: "Normal",
  16242. height: math.unit(4 + 11 / 12, "feet"),
  16243. default: true
  16244. },
  16245. {
  16246. name: "Macro",
  16247. height: math.unit(70, "feet")
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16253. {
  16254. front: {
  16255. height: math.unit(1.5, "meters"),
  16256. weight: math.unit(68, "kg"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/liam-einarr/front.svg",
  16260. extra: 2822 / 2666
  16261. }
  16262. },
  16263. back: {
  16264. height: math.unit(1.5, "meters"),
  16265. weight: math.unit(68, "kg"),
  16266. name: "Back",
  16267. image: {
  16268. source: "./media/characters/liam-einarr/back.svg",
  16269. extra: 2822 / 2666,
  16270. bottom: 0.015
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Normal",
  16277. height: math.unit(1.5, "meters"),
  16278. default: true
  16279. },
  16280. {
  16281. name: "Macro",
  16282. height: math.unit(150, "meters")
  16283. },
  16284. {
  16285. name: "Megamacro",
  16286. height: math.unit(35, "km")
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(75, "kg"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/linda/front.svg",
  16299. extra: 930 / 874,
  16300. bottom: 0.004
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(6, "feet"),
  16308. default: true
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(6 + 8 / 12, "feet"),
  16317. weight: math.unit(220, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/caylex/front.svg",
  16321. extra: 821 / 772,
  16322. bottom: 0.07
  16323. }
  16324. },
  16325. back: {
  16326. height: math.unit(6 + 8 / 12, "feet"),
  16327. weight: math.unit(220, "lb"),
  16328. name: "Back",
  16329. image: {
  16330. source: "./media/characters/caylex/back.svg",
  16331. extra: 821 / 772,
  16332. bottom: 0.022
  16333. }
  16334. },
  16335. hand: {
  16336. height: math.unit(1.25, "feet"),
  16337. name: "Hand",
  16338. image: {
  16339. source: "./media/characters/caylex/hand.svg"
  16340. }
  16341. },
  16342. foot: {
  16343. height: math.unit(1.6, "feet"),
  16344. name: "Foot",
  16345. image: {
  16346. source: "./media/characters/caylex/foot.svg"
  16347. }
  16348. },
  16349. armored: {
  16350. height: math.unit(6 + 8 / 12, "feet"),
  16351. weight: math.unit(250, "lb"),
  16352. name: "Armored",
  16353. image: {
  16354. source: "./media/characters/caylex/armored.svg",
  16355. extra: 1420 / 1310,
  16356. bottom: 0.045
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Normal",
  16363. height: math.unit(6 + 8 / 12, "feet"),
  16364. default: true
  16365. },
  16366. {
  16367. name: "Normal+",
  16368. height: math.unit(12, "feet")
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(7 + 6 / 12, "feet"),
  16377. weight: math.unit(288, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/alana/front.svg",
  16381. extra: 679 / 653,
  16382. bottom: 22.5 / 701
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(7 + 6 / 12, "feet")
  16390. },
  16391. {
  16392. name: "Large",
  16393. height: math.unit(50, "feet")
  16394. },
  16395. {
  16396. name: "Macro",
  16397. height: math.unit(100, "feet"),
  16398. default: true
  16399. },
  16400. {
  16401. name: "Macro+",
  16402. height: math.unit(200, "feet")
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16408. {
  16409. front: {
  16410. height: math.unit(6 + 1 / 12, "feet"),
  16411. weight: math.unit(210, "lb"),
  16412. name: "Front",
  16413. image: {
  16414. source: "./media/characters/hasani/front.svg",
  16415. extra: 244 / 232,
  16416. bottom: 0.01
  16417. }
  16418. },
  16419. back: {
  16420. height: math.unit(6 + 1 / 12, "feet"),
  16421. weight: math.unit(210, "lb"),
  16422. name: "Back",
  16423. image: {
  16424. source: "./media/characters/hasani/back.svg",
  16425. extra: 244 / 232,
  16426. bottom: 0.01
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(6 + 1 / 12, "feet")
  16434. },
  16435. {
  16436. name: "Macro",
  16437. height: math.unit(175, "feet"),
  16438. default: true
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(1.82, "meters"),
  16447. weight: math.unit(140, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/nita/front.svg",
  16451. extra: 2473 / 2363,
  16452. bottom: 0.01
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(1.82, "m")
  16460. },
  16461. {
  16462. name: "Macro",
  16463. height: math.unit(300, "m")
  16464. },
  16465. {
  16466. name: "Mistake Canon",
  16467. height: math.unit(0.5, "miles"),
  16468. default: true
  16469. },
  16470. {
  16471. name: "Big Mistake",
  16472. height: math.unit(13, "miles")
  16473. },
  16474. {
  16475. name: "Playing God",
  16476. height: math.unit(2450, "miles")
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(4, "feet"),
  16485. weight: math.unit(120, "lb"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/shiriko/front.svg",
  16489. extra: 195 / 188
  16490. }
  16491. },
  16492. },
  16493. [
  16494. {
  16495. name: "Normal",
  16496. height: math.unit(4, "feet"),
  16497. default: true
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16503. {
  16504. front: {
  16505. height: math.unit(6, "feet"),
  16506. name: "front",
  16507. image: {
  16508. source: "./media/characters/deja/front.svg",
  16509. extra: 926 / 840,
  16510. bottom: 0.07
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Planck Length",
  16517. height: math.unit(1.6e-35, "meters")
  16518. },
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(30.48, "meters"),
  16522. default: true
  16523. },
  16524. {
  16525. name: "Universal",
  16526. height: math.unit(8.8e26, "meters")
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16532. {
  16533. side: {
  16534. height: math.unit(8, "feet"),
  16535. weight: math.unit(6300, "lb"),
  16536. name: "Side",
  16537. image: {
  16538. source: "./media/characters/anima/side.svg",
  16539. bottom: 0.035
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Normal",
  16546. height: math.unit(8, "feet"),
  16547. default: true
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16553. {
  16554. front: {
  16555. height: math.unit(8, "feet"),
  16556. weight: math.unit(350, "lb"),
  16557. name: "Front",
  16558. image: {
  16559. source: "./media/characters/bianca/front.svg",
  16560. extra: 234 / 225,
  16561. bottom: 0.03
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(8, "feet"),
  16569. default: true
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16575. {
  16576. front: {
  16577. height: math.unit(6, "feet"),
  16578. weight: math.unit(150, "lb"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/adinia/front.svg",
  16582. extra: 1845 / 1672,
  16583. bottom: 0.02
  16584. }
  16585. },
  16586. back: {
  16587. height: math.unit(6, "feet"),
  16588. weight: math.unit(150, "lb"),
  16589. name: "Back",
  16590. image: {
  16591. source: "./media/characters/adinia/back.svg",
  16592. extra: 1845 / 1672,
  16593. bottom: 0.002
  16594. }
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Normal",
  16600. height: math.unit(11 + 5 / 12, "feet"),
  16601. default: true
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16607. {
  16608. front: {
  16609. height: math.unit(3, "meters"),
  16610. weight: math.unit(200, "kg"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/lykasa/front.svg",
  16614. extra: 1076 / 976,
  16615. bottom: 0.06
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(3, "meters")
  16623. },
  16624. {
  16625. name: "Kaiju",
  16626. height: math.unit(120, "meters"),
  16627. default: true
  16628. },
  16629. {
  16630. name: "Mega Kaiju",
  16631. height: math.unit(240, "km")
  16632. },
  16633. {
  16634. name: "Giga Kaiju",
  16635. height: math.unit(400, "megameters")
  16636. },
  16637. {
  16638. name: "Tera Kaiju",
  16639. height: math.unit(800, "gigameters")
  16640. },
  16641. {
  16642. name: "Kaiju Dragon Goddess",
  16643. height: math.unit(26, "zettaparsecs")
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16649. {
  16650. side: {
  16651. height: math.unit(283 / 124 * 6, "feet"),
  16652. weight: math.unit(35000, "lb"),
  16653. name: "Side",
  16654. image: {
  16655. source: "./media/characters/malfaren/side.svg",
  16656. extra: 2500 / 1010,
  16657. bottom: 0.01
  16658. }
  16659. },
  16660. front: {
  16661. height: math.unit(22.36, "feet"),
  16662. weight: math.unit(35000, "lb"),
  16663. name: "Front",
  16664. image: {
  16665. source: "./media/characters/malfaren/front.svg",
  16666. extra: 1631 / 1476,
  16667. bottom: 0.01
  16668. }
  16669. },
  16670. maw: {
  16671. height: math.unit(6.9, "feet"),
  16672. name: "Maw",
  16673. image: {
  16674. source: "./media/characters/malfaren/maw.svg"
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Big",
  16681. height: math.unit(283 / 162 * 6, "feet"),
  16682. },
  16683. {
  16684. name: "Bigger",
  16685. height: math.unit(283 / 124 * 6, "feet")
  16686. },
  16687. {
  16688. name: "Massive",
  16689. height: math.unit(283 / 92 * 6, "feet"),
  16690. default: true
  16691. },
  16692. {
  16693. name: "👀💦",
  16694. height: math.unit(283 / 73 * 6, "feet"),
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(1.7, "m"),
  16703. weight: math.unit(70, "kg"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/kernel/front.svg",
  16707. extra: 222 / 210,
  16708. bottom: 0.007
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Nano",
  16715. height: math.unit(17, "micrometers")
  16716. },
  16717. {
  16718. name: "Micro",
  16719. height: math.unit(1.7, "mm")
  16720. },
  16721. {
  16722. name: "Small",
  16723. height: math.unit(1.7, "cm")
  16724. },
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(1.7, "m"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(1.75, "meters"),
  16737. weight: math.unit(65, "kg"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/jayne-folest/front.svg",
  16741. extra: 2115 / 2007,
  16742. bottom: 0.02
  16743. }
  16744. },
  16745. back: {
  16746. height: math.unit(1.75, "meters"),
  16747. weight: math.unit(65, "kg"),
  16748. name: "Back",
  16749. image: {
  16750. source: "./media/characters/jayne-folest/back.svg",
  16751. extra: 2115 / 2007,
  16752. bottom: 0.005
  16753. }
  16754. },
  16755. frontClothed: {
  16756. height: math.unit(1.75, "meters"),
  16757. weight: math.unit(65, "kg"),
  16758. name: "Front (Clothed)",
  16759. image: {
  16760. source: "./media/characters/jayne-folest/front-clothed.svg",
  16761. extra: 2115 / 2007,
  16762. bottom: 0.035
  16763. }
  16764. },
  16765. hand: {
  16766. height: math.unit(1 / 1.260, "feet"),
  16767. name: "Hand",
  16768. image: {
  16769. source: "./media/characters/jayne-folest/hand.svg"
  16770. }
  16771. },
  16772. foot: {
  16773. height: math.unit(1 / 0.918, "feet"),
  16774. name: "Foot",
  16775. image: {
  16776. source: "./media/characters/jayne-folest/foot.svg"
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Micro",
  16783. height: math.unit(4, "cm")
  16784. },
  16785. {
  16786. name: "Normal",
  16787. height: math.unit(1.75, "meters")
  16788. },
  16789. {
  16790. name: "Macro",
  16791. height: math.unit(47.5, "meters"),
  16792. default: true
  16793. },
  16794. ]
  16795. ))
  16796. characterMakers.push(() => makeCharacter(
  16797. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16798. {
  16799. front: {
  16800. height: math.unit(180, "cm"),
  16801. weight: math.unit(70, "kg"),
  16802. name: "Front",
  16803. image: {
  16804. source: "./media/characters/algier/front.svg",
  16805. extra: 596 / 572,
  16806. bottom: 0.04
  16807. }
  16808. },
  16809. back: {
  16810. height: math.unit(180, "cm"),
  16811. weight: math.unit(70, "kg"),
  16812. name: "Back",
  16813. image: {
  16814. source: "./media/characters/algier/back.svg",
  16815. extra: 596 / 572,
  16816. bottom: 0.025
  16817. }
  16818. },
  16819. frontdressed: {
  16820. height: math.unit(180, "cm"),
  16821. weight: math.unit(150, "kg"),
  16822. name: "Front-dressed",
  16823. image: {
  16824. source: "./media/characters/algier/front-dressed.svg",
  16825. extra: 596 / 572,
  16826. bottom: 0.038
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Micro",
  16833. height: math.unit(5, "cm")
  16834. },
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(180, "cm"),
  16838. default: true
  16839. },
  16840. {
  16841. name: "Macro",
  16842. height: math.unit(64, "m")
  16843. },
  16844. ]
  16845. ))
  16846. characterMakers.push(() => makeCharacter(
  16847. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16848. {
  16849. upright: {
  16850. height: math.unit(7, "feet"),
  16851. weight: math.unit(300, "lb"),
  16852. name: "Upright",
  16853. image: {
  16854. source: "./media/characters/pretzel/upright.svg",
  16855. extra: 534 / 522,
  16856. bottom: 0.065
  16857. }
  16858. },
  16859. sprawling: {
  16860. height: math.unit(3.75, "feet"),
  16861. weight: math.unit(300, "lb"),
  16862. name: "Sprawling",
  16863. image: {
  16864. source: "./media/characters/pretzel/sprawling.svg",
  16865. extra: 314 / 281,
  16866. bottom: 0.1
  16867. }
  16868. },
  16869. tongue: {
  16870. height: math.unit(2, "feet"),
  16871. name: "Tongue",
  16872. image: {
  16873. source: "./media/characters/pretzel/tongue.svg"
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(7, "feet"),
  16881. default: true
  16882. },
  16883. {
  16884. name: "Oversized",
  16885. height: math.unit(15, "feet")
  16886. },
  16887. {
  16888. name: "Huge",
  16889. height: math.unit(30, "feet")
  16890. },
  16891. {
  16892. name: "Macro",
  16893. height: math.unit(250, "feet")
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16899. {
  16900. sideFront: {
  16901. height: math.unit(5 + 2 / 12, "feet"),
  16902. weight: math.unit(120, "lb"),
  16903. name: "Front Side",
  16904. image: {
  16905. source: "./media/characters/roxi/side-front.svg",
  16906. extra: 2924 / 2717,
  16907. bottom: 0.08
  16908. }
  16909. },
  16910. sideBack: {
  16911. height: math.unit(5 + 2 / 12, "feet"),
  16912. weight: math.unit(120, "lb"),
  16913. name: "Back Side",
  16914. image: {
  16915. source: "./media/characters/roxi/side-back.svg",
  16916. extra: 2904 / 2693,
  16917. bottom: 0.06
  16918. }
  16919. },
  16920. front: {
  16921. height: math.unit(5 + 2 / 12, "feet"),
  16922. weight: math.unit(120, "lb"),
  16923. name: "Front",
  16924. image: {
  16925. source: "./media/characters/roxi/front.svg",
  16926. extra: 2028 / 1907,
  16927. bottom: 0.01
  16928. }
  16929. },
  16930. frontAlt: {
  16931. height: math.unit(5 + 2 / 12, "feet"),
  16932. weight: math.unit(120, "lb"),
  16933. name: "Front (Alt)",
  16934. image: {
  16935. source: "./media/characters/roxi/front-alt.svg",
  16936. extra: 1828 / 1798,
  16937. bottom: 0.01
  16938. }
  16939. },
  16940. sitting: {
  16941. height: math.unit(2.8, "feet"),
  16942. weight: math.unit(120, "lb"),
  16943. name: "Sitting",
  16944. image: {
  16945. source: "./media/characters/roxi/sitting.svg",
  16946. extra: 2660 / 2462,
  16947. bottom: 0.1
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(5 + 2 / 12, "feet"),
  16955. default: true
  16956. },
  16957. ]
  16958. ))
  16959. characterMakers.push(() => makeCharacter(
  16960. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16961. {
  16962. side: {
  16963. height: math.unit(55, "feet"),
  16964. weight: math.unit(153, "tons"),
  16965. name: "Side",
  16966. image: {
  16967. source: "./media/characters/shadow/side.svg",
  16968. extra: 701 / 628,
  16969. bottom: 0.02
  16970. }
  16971. },
  16972. flying: {
  16973. height: math.unit(145, "feet"),
  16974. weight: math.unit(153, "tons"),
  16975. name: "Flying",
  16976. image: {
  16977. source: "./media/characters/shadow/flying.svg"
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(55, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16991. {
  16992. front: {
  16993. height: math.unit(6, "feet"),
  16994. weight: math.unit(200, "lb"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/marcie/front.svg",
  16998. extra: 960 / 876,
  16999. bottom: 58 / 1017.87
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Macro",
  17006. height: math.unit(1, "mile"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17013. {
  17014. front: {
  17015. height: math.unit(7, "feet"),
  17016. weight: math.unit(200, "lb"),
  17017. name: "Front",
  17018. image: {
  17019. source: "./media/characters/kachina/front.svg",
  17020. extra: 1290.68 / 1119,
  17021. bottom: 36.5 / 1327.18
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(7, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17035. {
  17036. looking: {
  17037. height: math.unit(2, "meters"),
  17038. weight: math.unit(300, "kg"),
  17039. name: "Looking",
  17040. image: {
  17041. source: "./media/characters/kash/looking.svg",
  17042. extra: 474 / 344,
  17043. bottom: 0.03
  17044. }
  17045. },
  17046. side: {
  17047. height: math.unit(2, "meters"),
  17048. weight: math.unit(300, "kg"),
  17049. name: "Side",
  17050. image: {
  17051. source: "./media/characters/kash/side.svg",
  17052. extra: 302 / 251,
  17053. bottom: 0.03
  17054. }
  17055. },
  17056. front: {
  17057. height: math.unit(2, "meters"),
  17058. weight: math.unit(300, "kg"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/kash/front.svg",
  17062. extra: 495 / 360,
  17063. bottom: 0.015
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(2, "meters"),
  17071. default: true
  17072. },
  17073. {
  17074. name: "Big",
  17075. height: math.unit(3, "meters")
  17076. },
  17077. {
  17078. name: "Large",
  17079. height: math.unit(5, "meters")
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17085. {
  17086. feeding: {
  17087. height: math.unit(6.7, "feet"),
  17088. weight: math.unit(350, "lb"),
  17089. name: "Feeding",
  17090. image: {
  17091. source: "./media/characters/lalim/feeding.svg",
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(6.7, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(9.5, "feet"),
  17108. weight: math.unit(600, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/de'vout/front.svg",
  17112. extra: 1443 / 1328,
  17113. bottom: 0.025
  17114. }
  17115. },
  17116. back: {
  17117. height: math.unit(9.5, "feet"),
  17118. weight: math.unit(600, "lb"),
  17119. name: "Back",
  17120. image: {
  17121. source: "./media/characters/de'vout/back.svg",
  17122. extra: 1443 / 1328
  17123. }
  17124. },
  17125. frontDressed: {
  17126. height: math.unit(9.5, "feet"),
  17127. weight: math.unit(600, "lb"),
  17128. name: "Front (Dressed",
  17129. image: {
  17130. source: "./media/characters/de'vout/front-dressed.svg",
  17131. extra: 1443 / 1328,
  17132. bottom: 0.025
  17133. }
  17134. },
  17135. backDressed: {
  17136. height: math.unit(9.5, "feet"),
  17137. weight: math.unit(600, "lb"),
  17138. name: "Back (Dressed",
  17139. image: {
  17140. source: "./media/characters/de'vout/back-dressed.svg",
  17141. extra: 1443 / 1328
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Normal",
  17148. height: math.unit(9.5, "feet"),
  17149. default: true
  17150. },
  17151. ]
  17152. ))
  17153. characterMakers.push(() => makeCharacter(
  17154. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17155. {
  17156. front: {
  17157. height: math.unit(8, "feet"),
  17158. weight: math.unit(225, "lb"),
  17159. name: "Front",
  17160. image: {
  17161. source: "./media/characters/talana/front.svg",
  17162. extra: 1410 / 1300,
  17163. bottom: 0.015
  17164. }
  17165. },
  17166. frontDressed: {
  17167. height: math.unit(8, "feet"),
  17168. weight: math.unit(225, "lb"),
  17169. name: "Front (Dressed",
  17170. image: {
  17171. source: "./media/characters/talana/front-dressed.svg",
  17172. extra: 1410 / 1300,
  17173. bottom: 0.015
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(8, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17187. {
  17188. side: {
  17189. height: math.unit(7.2, "feet"),
  17190. weight: math.unit(150, "lb"),
  17191. name: "Side",
  17192. image: {
  17193. source: "./media/characters/xeauvok/side.svg",
  17194. extra: 1975 / 1523,
  17195. bottom: 0.07
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(7.2, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17209. {
  17210. side: {
  17211. height: math.unit(10, "feet"),
  17212. weight: math.unit(900, "kg"),
  17213. name: "Side",
  17214. image: {
  17215. source: "./media/characters/zara/side.svg",
  17216. extra: 504 / 498
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(10, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17230. {
  17231. side: {
  17232. height: math.unit(6, "feet"),
  17233. weight: math.unit(150, "lb"),
  17234. name: "Side",
  17235. image: {
  17236. source: "./media/characters/richard-dragon/side.svg",
  17237. extra: 845 / 340,
  17238. bottom: 0.017
  17239. }
  17240. },
  17241. maw: {
  17242. height: math.unit(2.97, "feet"),
  17243. name: "Maw",
  17244. image: {
  17245. source: "./media/characters/richard-dragon/maw.svg"
  17246. }
  17247. },
  17248. },
  17249. [
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17254. {
  17255. front: {
  17256. height: math.unit(4, "feet"),
  17257. weight: math.unit(100, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/richard-smeargle/front.svg",
  17261. extra: 2952 / 2820,
  17262. bottom: 0.028
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Normal",
  17269. height: math.unit(4, "feet"),
  17270. default: true
  17271. },
  17272. {
  17273. name: "Dynamax",
  17274. height: math.unit(20, "meters")
  17275. },
  17276. ]
  17277. ))
  17278. characterMakers.push(() => makeCharacter(
  17279. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17280. {
  17281. front: {
  17282. height: math.unit(6, "feet"),
  17283. weight: math.unit(110, "lb"),
  17284. name: "Front",
  17285. image: {
  17286. source: "./media/characters/klay/front.svg",
  17287. extra: 962 / 883,
  17288. bottom: 0.04
  17289. }
  17290. },
  17291. back: {
  17292. height: math.unit(6, "feet"),
  17293. weight: math.unit(110, "lb"),
  17294. name: "Back",
  17295. image: {
  17296. source: "./media/characters/klay/back.svg",
  17297. extra: 962 / 883
  17298. }
  17299. },
  17300. beans: {
  17301. height: math.unit(1.15, "feet"),
  17302. name: "Beans",
  17303. image: {
  17304. source: "./media/characters/klay/beans.svg"
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Micro",
  17311. height: math.unit(6, "inches")
  17312. },
  17313. {
  17314. name: "Mini",
  17315. height: math.unit(3, "feet")
  17316. },
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(6, "feet"),
  17320. default: true
  17321. },
  17322. {
  17323. name: "Big",
  17324. height: math.unit(25, "feet")
  17325. },
  17326. {
  17327. name: "Macro",
  17328. height: math.unit(100, "feet")
  17329. },
  17330. {
  17331. name: "Megamacro",
  17332. height: math.unit(400, "feet")
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17338. {
  17339. front: {
  17340. height: math.unit(6, "feet"),
  17341. weight: math.unit(160, "lb"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/marcus/front.svg",
  17345. extra: 734 / 676,
  17346. bottom: 0.03
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Little",
  17353. height: math.unit(6, "feet")
  17354. },
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(110, "feet"),
  17358. default: true
  17359. },
  17360. {
  17361. name: "Macro",
  17362. height: math.unit(250, "feet")
  17363. },
  17364. {
  17365. name: "Megamacro",
  17366. height: math.unit(1000, "feet")
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17372. {
  17373. front: {
  17374. height: math.unit(7, "feet"),
  17375. weight: math.unit(275, "lb"),
  17376. name: "Front",
  17377. image: {
  17378. source: "./media/characters/claude-delroute/front.svg",
  17379. extra: 230 / 214,
  17380. bottom: 0.007
  17381. }
  17382. },
  17383. side: {
  17384. height: math.unit(7, "feet"),
  17385. weight: math.unit(275, "lb"),
  17386. name: "Side",
  17387. image: {
  17388. source: "./media/characters/claude-delroute/side.svg",
  17389. extra: 222 / 214,
  17390. bottom: 0.01
  17391. }
  17392. },
  17393. back: {
  17394. height: math.unit(7, "feet"),
  17395. weight: math.unit(275, "lb"),
  17396. name: "Back",
  17397. image: {
  17398. source: "./media/characters/claude-delroute/back.svg",
  17399. extra: 230 / 214,
  17400. bottom: 0.015
  17401. }
  17402. },
  17403. maw: {
  17404. height: math.unit(0.6407, "meters"),
  17405. name: "Maw",
  17406. image: {
  17407. source: "./media/characters/claude-delroute/maw.svg"
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(7, "feet"),
  17415. default: true
  17416. },
  17417. {
  17418. name: "Lorge",
  17419. height: math.unit(20, "feet")
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17425. {
  17426. front: {
  17427. height: math.unit(8 + 4 / 12, "feet"),
  17428. weight: math.unit(600, "lb"),
  17429. name: "Front",
  17430. image: {
  17431. source: "./media/characters/dragonien/front.svg",
  17432. extra: 100 / 94,
  17433. bottom: 3.3 / 103.3445
  17434. }
  17435. },
  17436. back: {
  17437. height: math.unit(8 + 4 / 12, "feet"),
  17438. weight: math.unit(600, "lb"),
  17439. name: "Back",
  17440. image: {
  17441. source: "./media/characters/dragonien/back.svg",
  17442. extra: 776 / 746,
  17443. bottom: 6.4 / 782.0616
  17444. }
  17445. },
  17446. foot: {
  17447. height: math.unit(1.54, "feet"),
  17448. name: "Foot",
  17449. image: {
  17450. source: "./media/characters/dragonien/foot.svg",
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(8 + 4 / 12, "feet"),
  17458. default: true
  17459. },
  17460. {
  17461. name: "Macro",
  17462. height: math.unit(200, "feet")
  17463. },
  17464. {
  17465. name: "Megamacro",
  17466. height: math.unit(1, "mile")
  17467. },
  17468. {
  17469. name: "Gigamacro",
  17470. height: math.unit(1000, "miles")
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17476. {
  17477. front: {
  17478. height: math.unit(5 + 2 / 12, "feet"),
  17479. weight: math.unit(110, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/desta/front.svg",
  17483. extra: 767/726,
  17484. bottom: 11.7/779
  17485. }
  17486. },
  17487. back: {
  17488. height: math.unit(5 + 2 / 12, "feet"),
  17489. weight: math.unit(110, "lb"),
  17490. name: "Back",
  17491. image: {
  17492. source: "./media/characters/desta/back.svg",
  17493. extra: 777/728,
  17494. bottom: 6/784
  17495. }
  17496. },
  17497. frontAlt: {
  17498. height: math.unit(5 + 2 / 12, "feet"),
  17499. weight: math.unit(110, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/desta/front-alt.svg",
  17503. extra: 1482 / 1417
  17504. }
  17505. },
  17506. side: {
  17507. height: math.unit(5 + 2 / 12, "feet"),
  17508. weight: math.unit(110, "lb"),
  17509. name: "Side",
  17510. image: {
  17511. source: "./media/characters/desta/side.svg",
  17512. extra: 2579 / 2491,
  17513. bottom: 0.053
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Micro",
  17520. height: math.unit(6, "inches")
  17521. },
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(5 + 2 / 12, "feet"),
  17525. default: true
  17526. },
  17527. {
  17528. name: "Macro",
  17529. height: math.unit(62, "feet")
  17530. },
  17531. {
  17532. name: "Megamacro",
  17533. height: math.unit(1800, "feet")
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17539. {
  17540. front: {
  17541. height: math.unit(10, "feet"),
  17542. weight: math.unit(700, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/storm-alystar/front.svg",
  17546. extra: 2112 / 1898,
  17547. bottom: 0.034
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Micro",
  17554. height: math.unit(3.5, "inches")
  17555. },
  17556. {
  17557. name: "Normal",
  17558. height: math.unit(10, "feet"),
  17559. default: true
  17560. },
  17561. {
  17562. name: "Macro",
  17563. height: math.unit(400, "feet")
  17564. },
  17565. {
  17566. name: "Deific",
  17567. height: math.unit(60, "miles")
  17568. },
  17569. ]
  17570. ))
  17571. characterMakers.push(() => makeCharacter(
  17572. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17573. {
  17574. front: {
  17575. height: math.unit(2.35, "meters"),
  17576. weight: math.unit(119, "kg"),
  17577. name: "Front",
  17578. image: {
  17579. source: "./media/characters/ilia/front.svg",
  17580. extra: 1285 / 1255,
  17581. bottom: 0.06
  17582. }
  17583. },
  17584. },
  17585. [
  17586. {
  17587. name: "Normal",
  17588. height: math.unit(2.35, "meters")
  17589. },
  17590. {
  17591. name: "Macro",
  17592. height: math.unit(140, "meters"),
  17593. default: true
  17594. },
  17595. {
  17596. name: "Megamacro",
  17597. height: math.unit(100, "miles")
  17598. },
  17599. ]
  17600. ))
  17601. characterMakers.push(() => makeCharacter(
  17602. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17603. {
  17604. front: {
  17605. height: math.unit(6 + 5 / 12, "feet"),
  17606. weight: math.unit(190, "lb"),
  17607. name: "Front",
  17608. image: {
  17609. source: "./media/characters/kingdead/front.svg",
  17610. extra: 1228 / 1177
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Micro",
  17617. height: math.unit(7, "inches")
  17618. },
  17619. {
  17620. name: "Normal",
  17621. height: math.unit(6 + 5 / 12, "feet")
  17622. },
  17623. {
  17624. name: "Macro",
  17625. height: math.unit(150, "feet"),
  17626. default: true
  17627. },
  17628. {
  17629. name: "Megamacro",
  17630. height: math.unit(200, "miles")
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17636. {
  17637. front: {
  17638. height: math.unit(8, "feet"),
  17639. weight: math.unit(600, "lb"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/kyrehx/front.svg",
  17643. extra: 1195 / 1095,
  17644. bottom: 0.034
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Micro",
  17651. height: math.unit(2, "inches")
  17652. },
  17653. {
  17654. name: "Normal",
  17655. height: math.unit(8, "feet"),
  17656. default: true
  17657. },
  17658. {
  17659. name: "Macro",
  17660. height: math.unit(255, "feet")
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17669. weight: math.unit(184, "lb"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/xang/front.svg",
  17673. extra: 845 / 755
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17681. default: true
  17682. },
  17683. {
  17684. name: "Macro",
  17685. height: math.unit(0.935 * 146, "feet")
  17686. },
  17687. {
  17688. name: "Megamacro",
  17689. height: math.unit(0.935 * 3, "miles")
  17690. },
  17691. ]
  17692. ))
  17693. characterMakers.push(() => makeCharacter(
  17694. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17695. {
  17696. frontDressed: {
  17697. height: math.unit(5 + 7 / 12, "feet"),
  17698. weight: math.unit(140, "lb"),
  17699. name: "Front (Dressed)",
  17700. image: {
  17701. source: "./media/characters/doc-weardno/front-dressed.svg",
  17702. extra: 263 / 234
  17703. }
  17704. },
  17705. backDressed: {
  17706. height: math.unit(5 + 7 / 12, "feet"),
  17707. weight: math.unit(140, "lb"),
  17708. name: "Back (Dressed)",
  17709. image: {
  17710. source: "./media/characters/doc-weardno/back-dressed.svg",
  17711. extra: 266 / 238
  17712. }
  17713. },
  17714. front: {
  17715. height: math.unit(5 + 7 / 12, "feet"),
  17716. weight: math.unit(140, "lb"),
  17717. name: "Front",
  17718. image: {
  17719. source: "./media/characters/doc-weardno/front.svg",
  17720. extra: 254 / 233
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Micro",
  17727. height: math.unit(3, "inches")
  17728. },
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(5 + 7 / 12, "feet"),
  17732. default: true
  17733. },
  17734. {
  17735. name: "Macro",
  17736. height: math.unit(25, "feet")
  17737. },
  17738. {
  17739. name: "Megamacro",
  17740. height: math.unit(2, "miles")
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17746. {
  17747. front: {
  17748. height: math.unit(6 + 2 / 12, "feet"),
  17749. weight: math.unit(153, "lb"),
  17750. name: "Front",
  17751. image: {
  17752. source: "./media/characters/seth-whilst/front.svg",
  17753. bottom: 0.07
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Micro",
  17760. height: math.unit(5, "inches")
  17761. },
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(6 + 2 / 12, "feet"),
  17765. default: true
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(3, "inches"),
  17774. weight: math.unit(8, "grams"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/pocket-jabari/front.svg",
  17778. extra: 1024 / 974,
  17779. bottom: 0.039
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Minimicro",
  17786. height: math.unit(8, "mm")
  17787. },
  17788. {
  17789. name: "Micro",
  17790. height: math.unit(3, "inches"),
  17791. default: true
  17792. },
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(3, "feet")
  17796. },
  17797. ]
  17798. ))
  17799. characterMakers.push(() => makeCharacter(
  17800. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17801. {
  17802. front: {
  17803. height: math.unit(15, "feet"),
  17804. weight: math.unit(3280, "lb"),
  17805. name: "Front",
  17806. image: {
  17807. source: "./media/characters/sapphy/front.svg",
  17808. extra: 671 / 577,
  17809. bottom: 0.085
  17810. }
  17811. },
  17812. back: {
  17813. height: math.unit(15, "feet"),
  17814. weight: math.unit(3280, "lb"),
  17815. name: "Back",
  17816. image: {
  17817. source: "./media/characters/sapphy/back.svg",
  17818. extra: 631 / 607,
  17819. bottom: 0.045
  17820. }
  17821. },
  17822. },
  17823. [
  17824. {
  17825. name: "Normal",
  17826. height: math.unit(15, "feet")
  17827. },
  17828. {
  17829. name: "Casual Macro",
  17830. height: math.unit(120, "feet")
  17831. },
  17832. {
  17833. name: "Macro",
  17834. height: math.unit(2150, "feet"),
  17835. default: true
  17836. },
  17837. {
  17838. name: "Megamacro",
  17839. height: math.unit(8, "miles")
  17840. },
  17841. {
  17842. name: "Galaxy Mom",
  17843. height: math.unit(6, "megalightyears")
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17849. {
  17850. front: {
  17851. height: math.unit(6, "feet"),
  17852. weight: math.unit(170, "lb"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/kiro/front.svg",
  17856. extra: 1064 / 1012,
  17857. bottom: 0.052
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Micro",
  17864. height: math.unit(6, "inches")
  17865. },
  17866. {
  17867. name: "Normal",
  17868. height: math.unit(6, "feet"),
  17869. default: true
  17870. },
  17871. {
  17872. name: "Macro",
  17873. height: math.unit(72, "feet")
  17874. },
  17875. ]
  17876. ))
  17877. characterMakers.push(() => makeCharacter(
  17878. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17879. {
  17880. front: {
  17881. height: math.unit(5 + 9 / 12, "feet"),
  17882. weight: math.unit(175, "lb"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/irishfox/front.svg",
  17886. extra: 1912 / 1680,
  17887. bottom: 0.02
  17888. }
  17889. },
  17890. },
  17891. [
  17892. {
  17893. name: "Nano",
  17894. height: math.unit(1, "mm")
  17895. },
  17896. {
  17897. name: "Micro",
  17898. height: math.unit(2, "inches")
  17899. },
  17900. {
  17901. name: "Normal",
  17902. height: math.unit(5 + 9 / 12, "feet"),
  17903. default: true
  17904. },
  17905. {
  17906. name: "Macro",
  17907. height: math.unit(45, "feet")
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17913. {
  17914. front: {
  17915. height: math.unit(6 + 1 / 12, "feet"),
  17916. weight: math.unit(150, "lb"),
  17917. name: "Front",
  17918. image: {
  17919. source: "./media/characters/aronai-sieyes/front.svg",
  17920. extra: 1556 / 1480,
  17921. bottom: 0.015
  17922. }
  17923. },
  17924. side: {
  17925. height: math.unit(6 + 1 / 12, "feet"),
  17926. weight: math.unit(150, "lb"),
  17927. name: "Side",
  17928. image: {
  17929. source: "./media/characters/aronai-sieyes/side.svg",
  17930. extra: 1433 / 1390,
  17931. bottom: 0.0393
  17932. }
  17933. },
  17934. back: {
  17935. height: math.unit(6 + 1 / 12, "feet"),
  17936. weight: math.unit(150, "lb"),
  17937. name: "Back",
  17938. image: {
  17939. source: "./media/characters/aronai-sieyes/back.svg",
  17940. extra: 1544 / 1494,
  17941. bottom: 0.02
  17942. }
  17943. },
  17944. frontClothed: {
  17945. height: math.unit(6 + 1 / 12, "feet"),
  17946. weight: math.unit(150, "lb"),
  17947. name: "Front (Clothed)",
  17948. image: {
  17949. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17950. extra: 1582 / 1527
  17951. }
  17952. },
  17953. feral: {
  17954. height: math.unit(18, "feet"),
  17955. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17956. name: "Feral",
  17957. image: {
  17958. source: "./media/characters/aronai-sieyes/feral.svg",
  17959. extra: 1530 / 1240,
  17960. bottom: 0.035
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Micro",
  17967. height: math.unit(2, "inches")
  17968. },
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(6 + 1 / 12, "feet"),
  17972. default: true
  17973. }
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(12, "feet"),
  17981. weight: math.unit(410, "kg"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/xuna/front.svg",
  17985. extra: 2184 / 1980
  17986. }
  17987. },
  17988. side: {
  17989. height: math.unit(12, "feet"),
  17990. weight: math.unit(410, "kg"),
  17991. name: "Side",
  17992. image: {
  17993. source: "./media/characters/xuna/side.svg",
  17994. extra: 2184 / 1980
  17995. }
  17996. },
  17997. back: {
  17998. height: math.unit(12, "feet"),
  17999. weight: math.unit(410, "kg"),
  18000. name: "Back",
  18001. image: {
  18002. source: "./media/characters/xuna/back.svg",
  18003. extra: 2184 / 1980
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Nano glow",
  18010. height: math.unit(10, "nm")
  18011. },
  18012. {
  18013. name: "Micro floof",
  18014. height: math.unit(0.3, "m")
  18015. },
  18016. {
  18017. name: "Huggable softy boi",
  18018. height: math.unit(3.6576, "m"),
  18019. default: true
  18020. },
  18021. {
  18022. name: "Admirable floof",
  18023. height: math.unit(80, "meters")
  18024. },
  18025. {
  18026. name: "Gentle macro",
  18027. height: math.unit(300, "meters")
  18028. },
  18029. {
  18030. name: "Very careful floof",
  18031. height: math.unit(3200, "meters")
  18032. },
  18033. {
  18034. name: "The mega floof",
  18035. height: math.unit(36000, "meters")
  18036. },
  18037. {
  18038. name: "Giga-fur-Wicker",
  18039. height: math.unit(4800000, "meters")
  18040. },
  18041. {
  18042. name: "Licky world",
  18043. height: math.unit(20000000, "meters")
  18044. },
  18045. {
  18046. name: "Floofy cyan sun",
  18047. height: math.unit(1500000000, "meters")
  18048. },
  18049. {
  18050. name: "Milky Wicker",
  18051. height: math.unit(1000000000000000000000, "meters")
  18052. },
  18053. {
  18054. name: "The observing Wicker",
  18055. height: math.unit(999999999999999999999999999, "meters")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18061. {
  18062. front: {
  18063. height: math.unit(5 + 9 / 12, "feet"),
  18064. weight: math.unit(150, "lb"),
  18065. name: "Front",
  18066. image: {
  18067. source: "./media/characters/arokha-sieyes/front.svg",
  18068. extra: 1425 / 1284,
  18069. bottom: 0.05
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Normal",
  18076. height: math.unit(5 + 9 / 12, "feet")
  18077. },
  18078. {
  18079. name: "Macro",
  18080. height: math.unit(30, "meters"),
  18081. default: true
  18082. },
  18083. ]
  18084. ))
  18085. characterMakers.push(() => makeCharacter(
  18086. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18087. {
  18088. front: {
  18089. height: math.unit(6, "feet"),
  18090. weight: math.unit(180, "lb"),
  18091. name: "Front",
  18092. image: {
  18093. source: "./media/characters/arokh-sieyes/front.svg",
  18094. extra: 1830 / 1769,
  18095. bottom: 0.01
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Normal",
  18102. height: math.unit(6, "feet")
  18103. },
  18104. {
  18105. name: "Macro",
  18106. height: math.unit(30, "meters"),
  18107. default: true
  18108. },
  18109. ]
  18110. ))
  18111. characterMakers.push(() => makeCharacter(
  18112. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18113. {
  18114. side: {
  18115. height: math.unit(13 + 1 / 12, "feet"),
  18116. weight: math.unit(8.5, "tonnes"),
  18117. name: "Side",
  18118. image: {
  18119. source: "./media/characters/goldeneye/side.svg",
  18120. extra: 1182 / 778,
  18121. bottom: 0.067
  18122. }
  18123. },
  18124. paw: {
  18125. height: math.unit(3.4, "feet"),
  18126. name: "Paw",
  18127. image: {
  18128. source: "./media/characters/goldeneye/paw.svg"
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(13 + 1 / 12, "feet"),
  18136. default: true
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18142. {
  18143. front: {
  18144. height: math.unit(6 + 1 / 12, "feet"),
  18145. weight: math.unit(210, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/leonardo-lycheborne/front.svg",
  18149. extra: 390 / 365,
  18150. bottom: 0.032
  18151. }
  18152. },
  18153. side: {
  18154. height: math.unit(6 + 1 / 12, "feet"),
  18155. weight: math.unit(210, "lb"),
  18156. name: "Side",
  18157. image: {
  18158. source: "./media/characters/leonardo-lycheborne/side.svg",
  18159. extra: 390 / 365,
  18160. bottom: 0.005
  18161. }
  18162. },
  18163. back: {
  18164. height: math.unit(6 + 1 / 12, "feet"),
  18165. weight: math.unit(210, "lb"),
  18166. name: "Back",
  18167. image: {
  18168. source: "./media/characters/leonardo-lycheborne/back.svg",
  18169. extra: 392 / 366,
  18170. bottom: 0.01
  18171. }
  18172. },
  18173. hand: {
  18174. height: math.unit(1.08, "feet"),
  18175. name: "Hand",
  18176. image: {
  18177. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18178. }
  18179. },
  18180. foot: {
  18181. height: math.unit(1.32, "feet"),
  18182. name: "Foot",
  18183. image: {
  18184. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18185. }
  18186. },
  18187. were: {
  18188. height: math.unit(20, "feet"),
  18189. weight: math.unit(7800, "lb"),
  18190. name: "Were",
  18191. image: {
  18192. source: "./media/characters/leonardo-lycheborne/were.svg",
  18193. extra: 308 / 294,
  18194. bottom: 0.048
  18195. }
  18196. },
  18197. feral: {
  18198. height: math.unit(7.5, "feet"),
  18199. weight: math.unit(600, "lb"),
  18200. name: "Feral",
  18201. image: {
  18202. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18203. extra: 210 / 186,
  18204. bottom: 0.108
  18205. }
  18206. },
  18207. taur: {
  18208. height: math.unit(11, "feet"),
  18209. weight: math.unit(3300, "lb"),
  18210. name: "Taur",
  18211. image: {
  18212. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18213. extra: 320 / 303,
  18214. bottom: 0.025
  18215. }
  18216. },
  18217. barghest: {
  18218. height: math.unit(11, "feet"),
  18219. weight: math.unit(1300, "lb"),
  18220. name: "Barghest",
  18221. image: {
  18222. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18223. extra: 323 / 302,
  18224. bottom: 0.027
  18225. }
  18226. },
  18227. dick: {
  18228. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18229. name: "Dick",
  18230. image: {
  18231. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18232. }
  18233. },
  18234. dickWere: {
  18235. height: math.unit((20) / 3.8, "feet"),
  18236. name: "Dick (Were)",
  18237. image: {
  18238. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(6 + 1 / 12, "feet"),
  18246. default: true
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(10, "feet"),
  18255. weight: math.unit(350, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/jet/front.svg",
  18259. extra: 2050 / 1980,
  18260. bottom: 0.013
  18261. }
  18262. },
  18263. back: {
  18264. height: math.unit(10, "feet"),
  18265. weight: math.unit(350, "lb"),
  18266. name: "Back",
  18267. image: {
  18268. source: "./media/characters/jet/back.svg",
  18269. extra: 2050 / 1980,
  18270. bottom: 0.013
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Micro",
  18277. height: math.unit(6, "inches")
  18278. },
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(10, "feet"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Macro",
  18286. height: math.unit(100, "feet")
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(15, "feet"),
  18295. weight: math.unit(2800, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/tanarath/front.svg",
  18299. extra: 2392 / 2220,
  18300. bottom: 0.03
  18301. }
  18302. },
  18303. back: {
  18304. height: math.unit(15, "feet"),
  18305. weight: math.unit(2800, "lb"),
  18306. name: "Back",
  18307. image: {
  18308. source: "./media/characters/tanarath/back.svg",
  18309. extra: 2392 / 2220,
  18310. bottom: 0.03
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(15, "feet"),
  18318. default: true
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(7 + 1 / 12, "feet"),
  18327. weight: math.unit(175, "lb"),
  18328. name: "Front",
  18329. image: {
  18330. source: "./media/characters/patty-cattybatty/front.svg",
  18331. extra: 908 / 874,
  18332. bottom: 0.025
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Micro",
  18339. height: math.unit(1, "inch")
  18340. },
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(7 + 1 / 12, "feet")
  18344. },
  18345. {
  18346. name: "Mini Macro",
  18347. height: math.unit(155, "feet")
  18348. },
  18349. {
  18350. name: "Macro",
  18351. height: math.unit(1077, "feet")
  18352. },
  18353. {
  18354. name: "Mega Macro",
  18355. height: math.unit(47650, "feet"),
  18356. default: true
  18357. },
  18358. {
  18359. name: "Giga Macro",
  18360. height: math.unit(440, "miles")
  18361. },
  18362. {
  18363. name: "Tera Macro",
  18364. height: math.unit(8700, "miles")
  18365. },
  18366. {
  18367. name: "Planetary Macro",
  18368. height: math.unit(32700, "miles")
  18369. },
  18370. {
  18371. name: "Solar Macro",
  18372. height: math.unit(550000, "miles")
  18373. },
  18374. {
  18375. name: "Celestial Macro",
  18376. height: math.unit(2.5, "AU")
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18382. {
  18383. front: {
  18384. height: math.unit(4 + 5 / 12, "feet"),
  18385. weight: math.unit(90, "lb"),
  18386. name: "Front",
  18387. image: {
  18388. source: "./media/characters/cappu/front.svg",
  18389. extra: 1247 / 1152,
  18390. bottom: 0.012
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(4 + 5 / 12, "feet"),
  18398. default: true
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18404. {
  18405. frontDressed: {
  18406. height: math.unit(70, "cm"),
  18407. weight: math.unit(6, "kg"),
  18408. name: "Front (Dressed)",
  18409. image: {
  18410. source: "./media/characters/sebi/front-dressed.svg",
  18411. extra: 713.5 / 686.5,
  18412. bottom: 0.003
  18413. }
  18414. },
  18415. front: {
  18416. height: math.unit(70, "cm"),
  18417. weight: math.unit(5, "kg"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/sebi/front.svg",
  18421. extra: 713.5 / 686.5,
  18422. bottom: 0.003
  18423. }
  18424. }
  18425. },
  18426. [
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(70, "cm"),
  18430. default: true
  18431. },
  18432. {
  18433. name: "Macro",
  18434. height: math.unit(8, "meters")
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18440. {
  18441. front: {
  18442. height: math.unit(6, "feet"),
  18443. weight: math.unit(150, "lb"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/typhek/front.svg",
  18447. extra: 1948 / 1929,
  18448. bottom: 0.025
  18449. }
  18450. },
  18451. side: {
  18452. height: math.unit(6, "feet"),
  18453. weight: math.unit(150, "lb"),
  18454. name: "Side",
  18455. image: {
  18456. source: "./media/characters/typhek/side.svg",
  18457. extra: 2034 / 2010,
  18458. bottom: 0.003
  18459. }
  18460. },
  18461. back: {
  18462. height: math.unit(6, "feet"),
  18463. weight: math.unit(150, "lb"),
  18464. name: "Back",
  18465. image: {
  18466. source: "./media/characters/typhek/back.svg",
  18467. extra: 2005 / 1978,
  18468. bottom: 0.004
  18469. }
  18470. },
  18471. palm: {
  18472. height: math.unit(1.2, "feet"),
  18473. name: "Palm",
  18474. image: {
  18475. source: "./media/characters/typhek/palm.svg"
  18476. }
  18477. },
  18478. fist: {
  18479. height: math.unit(1.1, "feet"),
  18480. name: "Fist",
  18481. image: {
  18482. source: "./media/characters/typhek/fist.svg"
  18483. }
  18484. },
  18485. foot: {
  18486. height: math.unit(1.57, "feet"),
  18487. name: "Foot",
  18488. image: {
  18489. source: "./media/characters/typhek/foot.svg"
  18490. }
  18491. },
  18492. sole: {
  18493. height: math.unit(2.05, "feet"),
  18494. name: "Sole",
  18495. image: {
  18496. source: "./media/characters/typhek/sole.svg"
  18497. }
  18498. },
  18499. },
  18500. [
  18501. {
  18502. name: "Macro",
  18503. height: math.unit(40, "stories"),
  18504. default: true
  18505. },
  18506. {
  18507. name: "Megamacro",
  18508. height: math.unit(1, "mile")
  18509. },
  18510. {
  18511. name: "Gigamacro",
  18512. height: math.unit(4000, "solarradii")
  18513. },
  18514. {
  18515. name: "Universal",
  18516. height: math.unit(1.1, "universes")
  18517. }
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18522. {
  18523. side: {
  18524. height: math.unit(5 + 7 / 12, "feet"),
  18525. weight: math.unit(150, "lb"),
  18526. name: "Side",
  18527. image: {
  18528. source: "./media/characters/kassy/side.svg",
  18529. extra: 1280 / 1225,
  18530. bottom: 0.002
  18531. }
  18532. },
  18533. front: {
  18534. height: math.unit(5 + 7 / 12, "feet"),
  18535. weight: math.unit(150, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/kassy/front.svg",
  18539. extra: 1280 / 1225,
  18540. bottom: 0.025
  18541. }
  18542. },
  18543. back: {
  18544. height: math.unit(5 + 7 / 12, "feet"),
  18545. weight: math.unit(150, "lb"),
  18546. name: "Back",
  18547. image: {
  18548. source: "./media/characters/kassy/back.svg",
  18549. extra: 1280 / 1225,
  18550. bottom: 0.002
  18551. }
  18552. },
  18553. foot: {
  18554. height: math.unit(1.266, "feet"),
  18555. name: "Foot",
  18556. image: {
  18557. source: "./media/characters/kassy/foot.svg"
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(5 + 7 / 12, "feet")
  18565. },
  18566. {
  18567. name: "Macro",
  18568. height: math.unit(137, "feet"),
  18569. default: true
  18570. },
  18571. {
  18572. name: "Megamacro",
  18573. height: math.unit(1, "mile")
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18579. {
  18580. front: {
  18581. height: math.unit(6 + 1 / 12, "feet"),
  18582. weight: math.unit(200, "lb"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/neil/front.svg",
  18586. extra: 1326 / 1250,
  18587. bottom: 0.023
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Normal",
  18594. height: math.unit(6 + 1 / 12, "feet"),
  18595. default: true
  18596. },
  18597. {
  18598. name: "Macro",
  18599. height: math.unit(200, "feet")
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(5 + 9 / 12, "feet"),
  18608. weight: math.unit(190, "lb"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/atticus/front.svg",
  18612. extra: 2934 / 2785,
  18613. bottom: 0.025
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(5 + 9 / 12, "feet"),
  18621. default: true
  18622. },
  18623. {
  18624. name: "Macro",
  18625. height: math.unit(180, "feet")
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18631. {
  18632. side: {
  18633. height: math.unit(9, "feet"),
  18634. weight: math.unit(650, "lb"),
  18635. name: "Side",
  18636. image: {
  18637. source: "./media/characters/milo/side.svg",
  18638. extra: 2644 / 2310,
  18639. bottom: 0.032
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(9, "feet"),
  18647. default: true
  18648. },
  18649. {
  18650. name: "Macro",
  18651. height: math.unit(300, "feet")
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18657. {
  18658. side: {
  18659. height: math.unit(8, "meters"),
  18660. weight: math.unit(90000, "kg"),
  18661. name: "Side",
  18662. image: {
  18663. source: "./media/characters/ijzer/side.svg",
  18664. extra: 2756 / 1600,
  18665. bottom: 0.01
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Small",
  18672. height: math.unit(3, "meters")
  18673. },
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(8, "meters"),
  18677. default: true
  18678. },
  18679. {
  18680. name: "Normal+",
  18681. height: math.unit(10, "meters")
  18682. },
  18683. {
  18684. name: "Bigger",
  18685. height: math.unit(24, "meters")
  18686. },
  18687. {
  18688. name: "Huge",
  18689. height: math.unit(80, "meters")
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(6 + 2 / 12, "feet"),
  18698. weight: math.unit(153, "lb"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/luca-cervicum/front.svg",
  18702. extra: 370 / 327,
  18703. bottom: 0.015
  18704. }
  18705. },
  18706. back: {
  18707. height: math.unit(6 + 2 / 12, "feet"),
  18708. weight: math.unit(153, "lb"),
  18709. name: "Back",
  18710. image: {
  18711. source: "./media/characters/luca-cervicum/back.svg",
  18712. extra: 367 / 333,
  18713. bottom: 0.005
  18714. }
  18715. },
  18716. frontGear: {
  18717. height: math.unit(6 + 2 / 12, "feet"),
  18718. weight: math.unit(173, "lb"),
  18719. name: "Front (Gear)",
  18720. image: {
  18721. source: "./media/characters/luca-cervicum/front-gear.svg",
  18722. extra: 377 / 333,
  18723. bottom: 0.006
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(6 + 2 / 12, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18737. {
  18738. front: {
  18739. height: math.unit(6 + 1 / 12, "feet"),
  18740. weight: math.unit(304, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/oliver/front.svg",
  18744. extra: 157 / 143,
  18745. bottom: 0.08
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(6 + 1 / 12, "feet"),
  18753. default: true
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18759. {
  18760. front: {
  18761. height: math.unit(5 + 7 / 12, "feet"),
  18762. weight: math.unit(140, "lb"),
  18763. name: "Front",
  18764. image: {
  18765. source: "./media/characters/shane/front.svg",
  18766. extra: 304 / 289,
  18767. bottom: 0.005
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(5 + 7 / 12, "feet"),
  18775. default: true
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(5 + 9 / 12, "feet"),
  18784. weight: math.unit(178, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/shin/front.svg",
  18788. extra: 159 / 151,
  18789. bottom: 0.015
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(5 + 9 / 12, "feet"),
  18797. default: true
  18798. },
  18799. ]
  18800. ))
  18801. characterMakers.push(() => makeCharacter(
  18802. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18803. {
  18804. front: {
  18805. height: math.unit(5 + 10 / 12, "feet"),
  18806. weight: math.unit(168, "lb"),
  18807. name: "Front",
  18808. image: {
  18809. source: "./media/characters/xerxes/front.svg",
  18810. extra: 282 / 260,
  18811. bottom: 0.045
  18812. }
  18813. },
  18814. },
  18815. [
  18816. {
  18817. name: "Normal",
  18818. height: math.unit(5 + 10 / 12, "feet"),
  18819. default: true
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(6 + 7 / 12, "feet"),
  18828. weight: math.unit(208, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/chaska/front.svg",
  18832. extra: 332 / 319,
  18833. bottom: 0.015
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(6 + 7 / 12, "feet"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18847. {
  18848. front: {
  18849. height: math.unit(5 + 8 / 12, "feet"),
  18850. weight: math.unit(208, "lb"),
  18851. name: "Front",
  18852. image: {
  18853. source: "./media/characters/enuk/front.svg",
  18854. extra: 437 / 406,
  18855. bottom: 0.02
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(5 + 8 / 12, "feet"),
  18863. default: true
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18869. {
  18870. front: {
  18871. height: math.unit(5 + 10 / 12, "feet"),
  18872. weight: math.unit(252, "lb"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/bruun/front.svg",
  18876. extra: 197 / 187,
  18877. bottom: 0.012
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(5 + 10 / 12, "feet"),
  18885. default: true
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18891. {
  18892. front: {
  18893. height: math.unit(6 + 10 / 12, "feet"),
  18894. weight: math.unit(255, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/alexeev/front.svg",
  18898. extra: 213 / 200,
  18899. bottom: 0.05
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Normal",
  18906. height: math.unit(6 + 10 / 12, "feet"),
  18907. default: true
  18908. },
  18909. ]
  18910. ))
  18911. characterMakers.push(() => makeCharacter(
  18912. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18913. {
  18914. front: {
  18915. height: math.unit(2 + 8 / 12, "feet"),
  18916. weight: math.unit(22, "lb"),
  18917. name: "Front",
  18918. image: {
  18919. source: "./media/characters/evelyn/front.svg",
  18920. extra: 208 / 180
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(2 + 8 / 12, "feet"),
  18928. default: true
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(5 + 9 / 12, "feet"),
  18937. weight: math.unit(139, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/inca/front.svg",
  18941. extra: 294 / 291,
  18942. bottom: 0.03
  18943. }
  18944. },
  18945. },
  18946. [
  18947. {
  18948. name: "Normal",
  18949. height: math.unit(5 + 9 / 12, "feet"),
  18950. default: true
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18956. {
  18957. front: {
  18958. height: math.unit(5 + 1 / 12, "feet"),
  18959. weight: math.unit(84, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/magdalene/front.svg",
  18963. extra: 293 / 273
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(5 + 1 / 12, "feet"),
  18971. default: true
  18972. },
  18973. ]
  18974. ))
  18975. characterMakers.push(() => makeCharacter(
  18976. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18977. {
  18978. front: {
  18979. height: math.unit(6 + 3 / 12, "feet"),
  18980. weight: math.unit(185, "lb"),
  18981. name: "Front",
  18982. image: {
  18983. source: "./media/characters/mera/front.svg",
  18984. extra: 291 / 277,
  18985. bottom: 0.03
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(6 + 3 / 12, "feet"),
  18993. default: true
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18999. {
  19000. front: {
  19001. height: math.unit(6 + 7 / 12, "feet"),
  19002. weight: math.unit(160, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/ceres/front.svg",
  19006. extra: 1023 / 950,
  19007. bottom: 0.027
  19008. }
  19009. },
  19010. back: {
  19011. height: math.unit(6 + 7 / 12, "feet"),
  19012. weight: math.unit(160, "lb"),
  19013. name: "Back",
  19014. image: {
  19015. source: "./media/characters/ceres/back.svg",
  19016. extra: 1023 / 950
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(6 + 7 / 12, "feet"),
  19024. default: true
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(5 + 10 / 12, "feet"),
  19033. weight: math.unit(150, "lb"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/kris/front.svg",
  19037. extra: 885 / 803,
  19038. bottom: 0.03
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(5 + 10 / 12, "feet"),
  19046. default: true
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(7, "feet"),
  19055. weight: math.unit(120, "kg"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/taluthus/front.svg",
  19059. extra: 903 / 833,
  19060. bottom: 0.015
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(7, "feet"),
  19068. default: true
  19069. },
  19070. {
  19071. name: "Macro",
  19072. height: math.unit(300, "feet")
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19078. {
  19079. front: {
  19080. height: math.unit(5 + 9 / 12, "feet"),
  19081. weight: math.unit(145, "lb"),
  19082. name: "Front",
  19083. image: {
  19084. source: "./media/characters/dawn/front.svg",
  19085. extra: 2094 / 2016,
  19086. bottom: 0.025
  19087. }
  19088. },
  19089. back: {
  19090. height: math.unit(5 + 9 / 12, "feet"),
  19091. weight: math.unit(160, "lb"),
  19092. name: "Back",
  19093. image: {
  19094. source: "./media/characters/dawn/back.svg",
  19095. extra: 2112 / 2080,
  19096. bottom: 0.005
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(6 + 7 / 12, "feet"),
  19104. default: true
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19110. {
  19111. anthro: {
  19112. height: math.unit(8 + 3 / 12, "feet"),
  19113. weight: math.unit(450, "lb"),
  19114. name: "Anthro",
  19115. image: {
  19116. source: "./media/characters/arador/anthro.svg",
  19117. extra: 1835 / 1718,
  19118. bottom: 0.025
  19119. }
  19120. },
  19121. feral: {
  19122. height: math.unit(4, "feet"),
  19123. weight: math.unit(200, "lb"),
  19124. name: "Feral",
  19125. image: {
  19126. source: "./media/characters/arador/feral.svg",
  19127. extra: 1683 / 1514,
  19128. bottom: 0.07
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(8 + 3 / 12, "feet")
  19136. },
  19137. {
  19138. name: "Macro",
  19139. height: math.unit(82.5, "feet"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(5 + 10 / 12, "feet"),
  19149. weight: math.unit(125, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/dharsi/front.svg",
  19153. extra: 716 / 630,
  19154. bottom: 0.035
  19155. }
  19156. },
  19157. },
  19158. [
  19159. {
  19160. name: "Nano",
  19161. height: math.unit(100, "nm")
  19162. },
  19163. {
  19164. name: "Micro",
  19165. height: math.unit(2, "inches")
  19166. },
  19167. {
  19168. name: "Normal",
  19169. height: math.unit(5 + 10 / 12, "feet"),
  19170. default: true
  19171. },
  19172. {
  19173. name: "Macro",
  19174. height: math.unit(1000, "feet")
  19175. },
  19176. {
  19177. name: "Megamacro",
  19178. height: math.unit(10, "miles")
  19179. },
  19180. {
  19181. name: "Gigamacro",
  19182. height: math.unit(3000, "miles")
  19183. },
  19184. {
  19185. name: "Teramacro",
  19186. height: math.unit(500000, "miles")
  19187. },
  19188. {
  19189. name: "Teramacro+",
  19190. height: math.unit(30, "galaxies")
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19196. {
  19197. front: {
  19198. height: math.unit(6, "feet"),
  19199. weight: math.unit(150, "lb"),
  19200. name: "Front",
  19201. image: {
  19202. source: "./media/characters/deathy/front.svg",
  19203. extra: 1552 / 1463,
  19204. bottom: 0.025
  19205. }
  19206. },
  19207. side: {
  19208. height: math.unit(6, "feet"),
  19209. weight: math.unit(150, "lb"),
  19210. name: "Side",
  19211. image: {
  19212. source: "./media/characters/deathy/side.svg",
  19213. extra: 1604 / 1455,
  19214. bottom: 0.025
  19215. }
  19216. },
  19217. back: {
  19218. height: math.unit(6, "feet"),
  19219. weight: math.unit(150, "lb"),
  19220. name: "Back",
  19221. image: {
  19222. source: "./media/characters/deathy/back.svg",
  19223. extra: 1580 / 1463,
  19224. bottom: 0.005
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Micro",
  19231. height: math.unit(5, "millimeters")
  19232. },
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(6 + 5 / 12, "feet"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19242. {
  19243. front: {
  19244. height: math.unit(16, "feet"),
  19245. weight: math.unit(4000, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/juniper/front.svg",
  19249. bottom: 0.04
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(16, "feet"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(6, "feet"),
  19266. weight: math.unit(150, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/hipster/front.svg",
  19270. extra: 1312 / 1209,
  19271. bottom: 0.025
  19272. }
  19273. },
  19274. back: {
  19275. height: math.unit(6, "feet"),
  19276. weight: math.unit(150, "lb"),
  19277. name: "Back",
  19278. image: {
  19279. source: "./media/characters/hipster/back.svg",
  19280. extra: 1281 / 1196,
  19281. bottom: 0.01
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Micro",
  19288. height: math.unit(1, "mm")
  19289. },
  19290. {
  19291. name: "Normal",
  19292. height: math.unit(4, "inches"),
  19293. default: true
  19294. },
  19295. {
  19296. name: "Macro",
  19297. height: math.unit(500, "feet")
  19298. },
  19299. {
  19300. name: "Megamacro",
  19301. height: math.unit(1000, "miles")
  19302. },
  19303. ]
  19304. ))
  19305. characterMakers.push(() => makeCharacter(
  19306. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19307. {
  19308. front: {
  19309. height: math.unit(6, "feet"),
  19310. weight: math.unit(150, "lb"),
  19311. name: "Front",
  19312. image: {
  19313. source: "./media/characters/tendirmuldr/front.svg",
  19314. extra: 1878 / 1772,
  19315. bottom: 0.015
  19316. }
  19317. },
  19318. },
  19319. [
  19320. {
  19321. name: "Megamacro",
  19322. height: math.unit(1500, "miles"),
  19323. default: true
  19324. },
  19325. ]
  19326. ))
  19327. characterMakers.push(() => makeCharacter(
  19328. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19329. {
  19330. front: {
  19331. height: math.unit(14, "feet"),
  19332. weight: math.unit(12000, "lb"),
  19333. name: "Front",
  19334. image: {
  19335. source: "./media/characters/mort/front.svg",
  19336. extra: 365 / 318,
  19337. bottom: 0.01
  19338. }
  19339. },
  19340. side: {
  19341. height: math.unit(14, "feet"),
  19342. weight: math.unit(12000, "lb"),
  19343. name: "Side",
  19344. image: {
  19345. source: "./media/characters/mort/side.svg",
  19346. extra: 365 / 318,
  19347. bottom: 0.052
  19348. },
  19349. default: true
  19350. },
  19351. back: {
  19352. height: math.unit(14, "feet"),
  19353. weight: math.unit(12000, "lb"),
  19354. name: "Back",
  19355. image: {
  19356. source: "./media/characters/mort/back.svg",
  19357. extra: 371 / 332,
  19358. bottom: 0.18
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(14, "feet"),
  19366. default: true
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19372. {
  19373. front: {
  19374. height: math.unit(8, "feet"),
  19375. weight: math.unit(1, "ton"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/lycoa/front.svg",
  19379. extra: 1875 / 1789,
  19380. bottom: 0.022
  19381. }
  19382. },
  19383. back: {
  19384. height: math.unit(8, "feet"),
  19385. weight: math.unit(1, "ton"),
  19386. name: "Back",
  19387. image: {
  19388. source: "./media/characters/lycoa/back.svg",
  19389. extra: 1835 / 1781,
  19390. bottom: 0.03
  19391. }
  19392. },
  19393. head: {
  19394. height: math.unit(2.1, "feet"),
  19395. name: "Head",
  19396. image: {
  19397. source: "./media/characters/lycoa/head.svg"
  19398. }
  19399. },
  19400. tailmaw: {
  19401. height: math.unit(1.9, "feet"),
  19402. name: "Tailmaw",
  19403. image: {
  19404. source: "./media/characters/lycoa/tailmaw.svg"
  19405. }
  19406. },
  19407. tentacles: {
  19408. height: math.unit(2.1, "feet"),
  19409. name: "Tentacles",
  19410. image: {
  19411. source: "./media/characters/lycoa/tentacles.svg"
  19412. }
  19413. },
  19414. dick: {
  19415. height: math.unit(1.73, "feet"),
  19416. name: "Dick",
  19417. image: {
  19418. source: "./media/characters/lycoa/dick.svg"
  19419. }
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Normal",
  19425. height: math.unit(8, "feet"),
  19426. default: true
  19427. },
  19428. {
  19429. name: "Macro",
  19430. height: math.unit(30, "feet")
  19431. },
  19432. ]
  19433. ))
  19434. characterMakers.push(() => makeCharacter(
  19435. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19436. {
  19437. front: {
  19438. height: math.unit(4 + 2 / 12, "feet"),
  19439. weight: math.unit(70, "lb"),
  19440. name: "Front",
  19441. image: {
  19442. source: "./media/characters/naldara/front.svg",
  19443. extra: 841 / 720,
  19444. bottom: 0.04
  19445. }
  19446. },
  19447. naga: {
  19448. height: math.unit(23, "feet"),
  19449. weight: math.unit(15000, "kg"),
  19450. name: "Naga",
  19451. image: {
  19452. source: "./media/characters/naldara/naga.svg",
  19453. extra: 3290/2959,
  19454. bottom: 124/3432
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(4 + 2 / 12, "feet"),
  19462. default: true
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19468. {
  19469. front: {
  19470. height: math.unit(13 + 7 / 12, "feet"),
  19471. weight: math.unit(1500, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/briar/front.svg",
  19475. extra: 626 / 596,
  19476. bottom: 0.08
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(13 + 7 / 12, "feet"),
  19484. default: true
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19490. {
  19491. side: {
  19492. height: math.unit(10, "feet"),
  19493. weight: math.unit(500, "lb"),
  19494. name: "Side",
  19495. image: {
  19496. source: "./media/characters/vanguard/side.svg",
  19497. extra: 502 / 425,
  19498. bottom: 0.087
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(10, "feet"),
  19506. default: true
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19512. {
  19513. front: {
  19514. height: math.unit(7.5, "feet"),
  19515. weight: math.unit(2, "lb"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/artemis/front.svg",
  19519. extra: 1192 / 1075,
  19520. bottom: 0.07
  19521. }
  19522. },
  19523. frontNsfw: {
  19524. height: math.unit(7.5, "feet"),
  19525. weight: math.unit(2, "lb"),
  19526. name: "Front (NSFW)",
  19527. image: {
  19528. source: "./media/characters/artemis/front-nsfw.svg",
  19529. extra: 1192 / 1075,
  19530. bottom: 0.07
  19531. }
  19532. },
  19533. frontNsfwer: {
  19534. height: math.unit(7.5, "feet"),
  19535. weight: math.unit(2, "lb"),
  19536. name: "Front (NSFW-er)",
  19537. image: {
  19538. source: "./media/characters/artemis/front-nsfwer.svg",
  19539. extra: 1192 / 1075,
  19540. bottom: 0.07
  19541. }
  19542. },
  19543. side: {
  19544. height: math.unit(7.5, "feet"),
  19545. weight: math.unit(2, "lb"),
  19546. name: "Side",
  19547. image: {
  19548. source: "./media/characters/artemis/side.svg",
  19549. extra: 1192 / 1075,
  19550. bottom: 0.07
  19551. }
  19552. },
  19553. sideNsfw: {
  19554. height: math.unit(7.5, "feet"),
  19555. weight: math.unit(2, "lb"),
  19556. name: "Side (NSFW)",
  19557. image: {
  19558. source: "./media/characters/artemis/side-nsfw.svg",
  19559. extra: 1192 / 1075,
  19560. bottom: 0.07
  19561. }
  19562. },
  19563. sideNsfwer: {
  19564. height: math.unit(7.5, "feet"),
  19565. weight: math.unit(2, "lb"),
  19566. name: "Side (NSFW-er)",
  19567. image: {
  19568. source: "./media/characters/artemis/side-nsfwer.svg",
  19569. extra: 1192 / 1075,
  19570. bottom: 0.07
  19571. }
  19572. },
  19573. maw: {
  19574. height: math.unit(1.1, "feet"),
  19575. name: "Maw",
  19576. image: {
  19577. source: "./media/characters/artemis/maw.svg"
  19578. }
  19579. },
  19580. stomach: {
  19581. height: math.unit(0.95, "feet"),
  19582. name: "Stomach",
  19583. image: {
  19584. source: "./media/characters/artemis/stomach.svg"
  19585. }
  19586. },
  19587. dickCanine: {
  19588. height: math.unit(1, "feet"),
  19589. name: "Dick (Canine)",
  19590. image: {
  19591. source: "./media/characters/artemis/dick-canine.svg"
  19592. }
  19593. },
  19594. dickEquine: {
  19595. height: math.unit(0.85, "feet"),
  19596. name: "Dick (Equine)",
  19597. image: {
  19598. source: "./media/characters/artemis/dick-equine.svg"
  19599. }
  19600. },
  19601. dickExotic: {
  19602. height: math.unit(0.85, "feet"),
  19603. name: "Dick (Exotic)",
  19604. image: {
  19605. source: "./media/characters/artemis/dick-exotic.svg"
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(7.5, "feet"),
  19613. default: true
  19614. },
  19615. {
  19616. name: "Enlarged",
  19617. height: math.unit(12, "feet")
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19623. {
  19624. front: {
  19625. height: math.unit(5 + 3 / 12, "feet"),
  19626. weight: math.unit(160, "lb"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/kira/front.svg",
  19630. extra: 906 / 786,
  19631. bottom: 0.01
  19632. }
  19633. },
  19634. back: {
  19635. height: math.unit(5 + 3 / 12, "feet"),
  19636. weight: math.unit(160, "lb"),
  19637. name: "Back",
  19638. image: {
  19639. source: "./media/characters/kira/back.svg",
  19640. extra: 882 / 757,
  19641. bottom: 0.005
  19642. }
  19643. },
  19644. frontDressed: {
  19645. height: math.unit(5 + 3 / 12, "feet"),
  19646. weight: math.unit(160, "lb"),
  19647. name: "Front (Dressed)",
  19648. image: {
  19649. source: "./media/characters/kira/front-dressed.svg",
  19650. extra: 906 / 786,
  19651. bottom: 0.01
  19652. }
  19653. },
  19654. beans: {
  19655. height: math.unit(0.92, "feet"),
  19656. name: "Beans",
  19657. image: {
  19658. source: "./media/characters/kira/beans.svg"
  19659. }
  19660. },
  19661. },
  19662. [
  19663. {
  19664. name: "Normal",
  19665. height: math.unit(5 + 3 / 12, "feet"),
  19666. default: true
  19667. },
  19668. ]
  19669. ))
  19670. characterMakers.push(() => makeCharacter(
  19671. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19672. {
  19673. front: {
  19674. height: math.unit(5 + 4 / 12, "feet"),
  19675. weight: math.unit(145, "lb"),
  19676. name: "Front",
  19677. image: {
  19678. source: "./media/characters/scramble/front.svg",
  19679. extra: 763 / 727,
  19680. bottom: 0.05
  19681. }
  19682. },
  19683. back: {
  19684. height: math.unit(5 + 4 / 12, "feet"),
  19685. weight: math.unit(145, "lb"),
  19686. name: "Back",
  19687. image: {
  19688. source: "./media/characters/scramble/back.svg",
  19689. extra: 826 / 737,
  19690. bottom: 0.002
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(5 + 4 / 12, "feet"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19704. {
  19705. side: {
  19706. height: math.unit(6 + 2 / 12, "feet"),
  19707. weight: math.unit(190, "lb"),
  19708. name: "Side",
  19709. image: {
  19710. source: "./media/characters/biscuit/side.svg",
  19711. extra: 858 / 791,
  19712. bottom: 0.044
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(6 + 2 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(5 + 2 / 12, "feet"),
  19729. weight: math.unit(120, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/poffin/front.svg",
  19733. extra: 786 / 680,
  19734. bottom: 0.005
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Normal",
  19741. height: math.unit(5 + 2 / 12, "feet"),
  19742. default: true
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(6 + 3 / 12, "feet"),
  19751. weight: math.unit(519, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/dhari/front.svg",
  19755. extra: 1048 / 946,
  19756. bottom: 0.015
  19757. }
  19758. },
  19759. back: {
  19760. height: math.unit(6 + 3 / 12, "feet"),
  19761. weight: math.unit(519, "lb"),
  19762. name: "Back",
  19763. image: {
  19764. source: "./media/characters/dhari/back.svg",
  19765. extra: 1048 / 931,
  19766. bottom: 0.005
  19767. }
  19768. },
  19769. frontDressed: {
  19770. height: math.unit(6 + 3 / 12, "feet"),
  19771. weight: math.unit(519, "lb"),
  19772. name: "Front (Dressed)",
  19773. image: {
  19774. source: "./media/characters/dhari/front-dressed.svg",
  19775. extra: 1713 / 1546,
  19776. bottom: 0.02
  19777. }
  19778. },
  19779. backDressed: {
  19780. height: math.unit(6 + 3 / 12, "feet"),
  19781. weight: math.unit(519, "lb"),
  19782. name: "Back (Dressed)",
  19783. image: {
  19784. source: "./media/characters/dhari/back-dressed.svg",
  19785. extra: 1699 / 1537,
  19786. bottom: 0.01
  19787. }
  19788. },
  19789. maw: {
  19790. height: math.unit(0.95, "feet"),
  19791. name: "Maw",
  19792. image: {
  19793. source: "./media/characters/dhari/maw.svg"
  19794. }
  19795. },
  19796. wereFront: {
  19797. height: math.unit(12 + 8 / 12, "feet"),
  19798. weight: math.unit(4000, "lb"),
  19799. name: "Front (Were)",
  19800. image: {
  19801. source: "./media/characters/dhari/were-front.svg",
  19802. extra: 1065 / 969,
  19803. bottom: 0.015
  19804. }
  19805. },
  19806. wereBack: {
  19807. height: math.unit(12 + 8 / 12, "feet"),
  19808. weight: math.unit(4000, "lb"),
  19809. name: "Back (Were)",
  19810. image: {
  19811. source: "./media/characters/dhari/were-back.svg",
  19812. extra: 1065 / 969,
  19813. bottom: 0.012
  19814. }
  19815. },
  19816. wereMaw: {
  19817. height: math.unit(0.625, "meters"),
  19818. name: "Maw (Were)",
  19819. image: {
  19820. source: "./media/characters/dhari/were-maw.svg"
  19821. }
  19822. },
  19823. },
  19824. [
  19825. {
  19826. name: "Normal",
  19827. height: math.unit(6 + 3 / 12, "feet"),
  19828. default: true
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19834. {
  19835. anthro: {
  19836. height: math.unit(5 + 7 / 12, "feet"),
  19837. weight: math.unit(175, "lb"),
  19838. name: "Anthro",
  19839. image: {
  19840. source: "./media/characters/rena-dyne/anthro.svg",
  19841. extra: 1849 / 1785,
  19842. bottom: 0.005
  19843. }
  19844. },
  19845. taur: {
  19846. height: math.unit(15 + 6 / 12, "feet"),
  19847. weight: math.unit(8000, "lb"),
  19848. name: "Taur",
  19849. image: {
  19850. source: "./media/characters/rena-dyne/taur.svg",
  19851. extra: 2315 / 2234,
  19852. bottom: 0.033
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(5 + 7 / 12, "feet"),
  19860. default: true
  19861. },
  19862. ]
  19863. ))
  19864. characterMakers.push(() => makeCharacter(
  19865. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19866. {
  19867. front: {
  19868. height: math.unit(8, "feet"),
  19869. weight: math.unit(600, "lb"),
  19870. name: "Front",
  19871. image: {
  19872. source: "./media/characters/weremeep/front.svg",
  19873. extra: 967 / 862,
  19874. bottom: 0.01
  19875. }
  19876. },
  19877. },
  19878. [
  19879. {
  19880. name: "Normal",
  19881. height: math.unit(8, "feet"),
  19882. default: true
  19883. },
  19884. {
  19885. name: "Lorg",
  19886. height: math.unit(12, "feet")
  19887. },
  19888. {
  19889. name: "Oh Lawd She Comin'",
  19890. height: math.unit(20, "feet")
  19891. },
  19892. ]
  19893. ))
  19894. characterMakers.push(() => makeCharacter(
  19895. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19896. {
  19897. front: {
  19898. height: math.unit(4, "feet"),
  19899. weight: math.unit(90, "lb"),
  19900. name: "Front",
  19901. image: {
  19902. source: "./media/characters/reza/front.svg",
  19903. extra: 1183 / 1111,
  19904. bottom: 0.017
  19905. }
  19906. },
  19907. back: {
  19908. height: math.unit(4, "feet"),
  19909. weight: math.unit(90, "lb"),
  19910. name: "Back",
  19911. image: {
  19912. source: "./media/characters/reza/back.svg",
  19913. extra: 1183 / 1111,
  19914. bottom: 0.01
  19915. }
  19916. },
  19917. drake: {
  19918. height: math.unit(30, "feet"),
  19919. weight: math.unit(246960, "lb"),
  19920. name: "Drake",
  19921. image: {
  19922. source: "./media/characters/reza/drake.svg",
  19923. extra: 2350 / 2024,
  19924. bottom: 60.7 / 2403
  19925. }
  19926. },
  19927. },
  19928. [
  19929. {
  19930. name: "Normal",
  19931. height: math.unit(4, "feet"),
  19932. default: true
  19933. },
  19934. ]
  19935. ))
  19936. characterMakers.push(() => makeCharacter(
  19937. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19938. {
  19939. side: {
  19940. height: math.unit(15, "feet"),
  19941. weight: math.unit(14, "tons"),
  19942. name: "Side",
  19943. image: {
  19944. source: "./media/characters/athea/side.svg",
  19945. extra: 960 / 540,
  19946. bottom: 0.003
  19947. }
  19948. },
  19949. sitting: {
  19950. height: math.unit(6 * 2.85, "feet"),
  19951. weight: math.unit(14, "tons"),
  19952. name: "Sitting",
  19953. image: {
  19954. source: "./media/characters/athea/sitting.svg",
  19955. extra: 621 / 581,
  19956. bottom: 0.075
  19957. }
  19958. },
  19959. maw: {
  19960. height: math.unit(7.59498031496063, "feet"),
  19961. name: "Maw",
  19962. image: {
  19963. source: "./media/characters/athea/maw.svg"
  19964. }
  19965. },
  19966. },
  19967. [
  19968. {
  19969. name: "Lap Cat",
  19970. height: math.unit(2.5, "feet")
  19971. },
  19972. {
  19973. name: "Minimacro",
  19974. height: math.unit(15, "feet"),
  19975. default: true
  19976. },
  19977. {
  19978. name: "Macro",
  19979. height: math.unit(120, "feet")
  19980. },
  19981. {
  19982. name: "Macro+",
  19983. height: math.unit(640, "feet")
  19984. },
  19985. {
  19986. name: "Colossus",
  19987. height: math.unit(2.2, "miles")
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(8 + 8 / 12, "feet"),
  19996. weight: math.unit(130, "kg"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/seroko/front.svg",
  20000. extra: 1385 / 1280,
  20001. bottom: 0.025
  20002. }
  20003. },
  20004. back: {
  20005. height: math.unit(8 + 8 / 12, "feet"),
  20006. weight: math.unit(130, "kg"),
  20007. name: "Back",
  20008. image: {
  20009. source: "./media/characters/seroko/back.svg",
  20010. extra: 1369 / 1238,
  20011. bottom: 0.018
  20012. }
  20013. },
  20014. frontDressed: {
  20015. height: math.unit(8 + 8 / 12, "feet"),
  20016. weight: math.unit(130, "kg"),
  20017. name: "Front (Dressed)",
  20018. image: {
  20019. source: "./media/characters/seroko/front-dressed.svg",
  20020. extra: 1366 / 1275,
  20021. bottom: 0.03
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(8 + 8 / 12, "feet"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(5.5, "feet"),
  20038. weight: math.unit(160, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/quatzi/front.svg",
  20042. extra: 2346 / 2242,
  20043. bottom: 0.015
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(5.5, "feet"),
  20051. default: true
  20052. },
  20053. {
  20054. name: "Big",
  20055. height: math.unit(7.7, "feet")
  20056. },
  20057. ]
  20058. ))
  20059. characterMakers.push(() => makeCharacter(
  20060. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20061. {
  20062. front: {
  20063. height: math.unit(5 + 11 / 12, "feet"),
  20064. weight: math.unit(180, "lb"),
  20065. name: "Front",
  20066. image: {
  20067. source: "./media/characters/sen/front.svg",
  20068. extra: 1321 / 1254,
  20069. bottom: 0.015
  20070. }
  20071. },
  20072. side: {
  20073. height: math.unit(5 + 11 / 12, "feet"),
  20074. weight: math.unit(180, "lb"),
  20075. name: "Side",
  20076. image: {
  20077. source: "./media/characters/sen/side.svg",
  20078. extra: 1321 / 1254,
  20079. bottom: 0.007
  20080. }
  20081. },
  20082. back: {
  20083. height: math.unit(5 + 11 / 12, "feet"),
  20084. weight: math.unit(180, "lb"),
  20085. name: "Back",
  20086. image: {
  20087. source: "./media/characters/sen/back.svg",
  20088. extra: 1321 / 1254
  20089. }
  20090. },
  20091. },
  20092. [
  20093. {
  20094. name: "Normal",
  20095. height: math.unit(5 + 11 / 12, "feet"),
  20096. default: true
  20097. },
  20098. ]
  20099. ))
  20100. characterMakers.push(() => makeCharacter(
  20101. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20102. {
  20103. front: {
  20104. height: math.unit(166.6, "cm"),
  20105. weight: math.unit(66.6, "kg"),
  20106. name: "Front",
  20107. image: {
  20108. source: "./media/characters/fruity/front.svg",
  20109. extra: 1510 / 1386,
  20110. bottom: 0.04
  20111. }
  20112. },
  20113. back: {
  20114. height: math.unit(166.6, "cm"),
  20115. weight: math.unit(66.6, "lb"),
  20116. name: "Back",
  20117. image: {
  20118. source: "./media/characters/fruity/back.svg",
  20119. extra: 1563 / 1435,
  20120. bottom: 0.005
  20121. }
  20122. },
  20123. },
  20124. [
  20125. {
  20126. name: "Normal",
  20127. height: math.unit(166.6, "cm"),
  20128. default: true
  20129. },
  20130. {
  20131. name: "Demonic",
  20132. height: math.unit(166.6, "feet")
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20138. {
  20139. side: {
  20140. height: math.unit(10, "feet"),
  20141. weight: math.unit(500, "lb"),
  20142. name: "Side",
  20143. image: {
  20144. source: "./media/characters/zost/side.svg",
  20145. extra: 966 / 880,
  20146. bottom: 0.075
  20147. }
  20148. },
  20149. mawFront: {
  20150. height: math.unit(1.08, "meters"),
  20151. name: "Maw (Front)",
  20152. image: {
  20153. source: "./media/characters/zost/maw-front.svg"
  20154. }
  20155. },
  20156. mawSide: {
  20157. height: math.unit(2.66, "feet"),
  20158. name: "Maw (Side)",
  20159. image: {
  20160. source: "./media/characters/zost/maw-side.svg"
  20161. }
  20162. },
  20163. },
  20164. [
  20165. {
  20166. name: "Normal",
  20167. height: math.unit(10, "feet"),
  20168. default: true
  20169. },
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20174. {
  20175. front: {
  20176. height: math.unit(5 + 4 / 12, "feet"),
  20177. weight: math.unit(120, "lb"),
  20178. name: "Front",
  20179. image: {
  20180. source: "./media/characters/luci/front.svg",
  20181. extra: 1985 / 1884,
  20182. bottom: 0.04
  20183. }
  20184. },
  20185. back: {
  20186. height: math.unit(5 + 4 / 12, "feet"),
  20187. weight: math.unit(120, "lb"),
  20188. name: "Back",
  20189. image: {
  20190. source: "./media/characters/luci/back.svg",
  20191. extra: 1892 / 1791,
  20192. bottom: 0.002
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(5 + 4 / 12, "feet"),
  20200. default: true
  20201. },
  20202. ]
  20203. ))
  20204. characterMakers.push(() => makeCharacter(
  20205. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20206. {
  20207. front: {
  20208. height: math.unit(1500, "feet"),
  20209. weight: math.unit(3.8e6, "tons"),
  20210. name: "Front",
  20211. image: {
  20212. source: "./media/characters/2th/front.svg",
  20213. extra: 3489 / 3350,
  20214. bottom: 0.1
  20215. }
  20216. },
  20217. foot: {
  20218. height: math.unit(461, "feet"),
  20219. name: "Foot",
  20220. image: {
  20221. source: "./media/characters/2th/foot.svg"
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "\"Micro\"",
  20228. height: math.unit(15 + 7 / 12, "feet")
  20229. },
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(1500, "feet"),
  20233. default: true
  20234. },
  20235. {
  20236. name: "Macro",
  20237. height: math.unit(5000, "feet")
  20238. },
  20239. {
  20240. name: "Megamacro",
  20241. height: math.unit(15, "miles")
  20242. },
  20243. {
  20244. name: "Gigamacro",
  20245. height: math.unit(4000, "miles")
  20246. },
  20247. {
  20248. name: "Galactic",
  20249. height: math.unit(50, "AU")
  20250. },
  20251. ]
  20252. ))
  20253. characterMakers.push(() => makeCharacter(
  20254. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20255. {
  20256. front: {
  20257. height: math.unit(5 + 6 / 12, "feet"),
  20258. weight: math.unit(220, "lb"),
  20259. name: "Front",
  20260. image: {
  20261. source: "./media/characters/amethyst/front.svg",
  20262. extra: 2078 / 2040,
  20263. bottom: 0.045
  20264. }
  20265. },
  20266. back: {
  20267. height: math.unit(5 + 6 / 12, "feet"),
  20268. weight: math.unit(220, "lb"),
  20269. name: "Back",
  20270. image: {
  20271. source: "./media/characters/amethyst/back.svg",
  20272. extra: 2021 / 1989,
  20273. bottom: 0.02
  20274. }
  20275. },
  20276. },
  20277. [
  20278. {
  20279. name: "Normal",
  20280. height: math.unit(5 + 6 / 12, "feet"),
  20281. default: true
  20282. },
  20283. ]
  20284. ))
  20285. characterMakers.push(() => makeCharacter(
  20286. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20287. {
  20288. front: {
  20289. height: math.unit(4 + 11 / 12, "feet"),
  20290. weight: math.unit(120, "lb"),
  20291. name: "Front",
  20292. image: {
  20293. source: "./media/characters/yumi-akiyama/front.svg",
  20294. extra: 1327 / 1235,
  20295. bottom: 0.02
  20296. }
  20297. },
  20298. back: {
  20299. height: math.unit(4 + 11 / 12, "feet"),
  20300. weight: math.unit(120, "lb"),
  20301. name: "Back",
  20302. image: {
  20303. source: "./media/characters/yumi-akiyama/back.svg",
  20304. extra: 1287 / 1245,
  20305. bottom: 0.002
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Galactic",
  20312. height: math.unit(50, "galaxies"),
  20313. default: true
  20314. },
  20315. {
  20316. name: "Universal",
  20317. height: math.unit(100, "universes")
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(8, "feet"),
  20326. weight: math.unit(500, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/rifter-yrmori/front.svg",
  20330. extra: 1180 / 1125,
  20331. bottom: 0.02
  20332. }
  20333. },
  20334. back: {
  20335. height: math.unit(8, "feet"),
  20336. weight: math.unit(500, "lb"),
  20337. name: "Back",
  20338. image: {
  20339. source: "./media/characters/rifter-yrmori/back.svg",
  20340. extra: 1190 / 1145,
  20341. bottom: 0.001
  20342. }
  20343. },
  20344. wings: {
  20345. height: math.unit(7.75, "feet"),
  20346. weight: math.unit(500, "lb"),
  20347. name: "Wings",
  20348. image: {
  20349. source: "./media/characters/rifter-yrmori/wings.svg",
  20350. extra: 1357 / 1285
  20351. }
  20352. },
  20353. maw: {
  20354. height: math.unit(0.8, "feet"),
  20355. name: "Maw",
  20356. image: {
  20357. source: "./media/characters/rifter-yrmori/maw.svg"
  20358. }
  20359. },
  20360. mawfront: {
  20361. height: math.unit(1.45, "feet"),
  20362. name: "Maw (Front)",
  20363. image: {
  20364. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(8, "feet"),
  20372. default: true
  20373. },
  20374. {
  20375. name: "Macro",
  20376. height: math.unit(42, "meters")
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20382. {
  20383. were: {
  20384. height: math.unit(25 + 6 / 12, "feet"),
  20385. weight: math.unit(10000, "lb"),
  20386. name: "Were",
  20387. image: {
  20388. source: "./media/characters/tahajin/were.svg",
  20389. extra: 801 / 770,
  20390. bottom: 0.042
  20391. }
  20392. },
  20393. aquatic: {
  20394. height: math.unit(6 + 4 / 12, "feet"),
  20395. weight: math.unit(160, "lb"),
  20396. name: "Aquatic",
  20397. image: {
  20398. source: "./media/characters/tahajin/aquatic.svg",
  20399. extra: 572 / 542,
  20400. bottom: 0.04
  20401. }
  20402. },
  20403. chow: {
  20404. height: math.unit(8 + 11 / 12, "feet"),
  20405. weight: math.unit(450, "lb"),
  20406. name: "Chow",
  20407. image: {
  20408. source: "./media/characters/tahajin/chow.svg",
  20409. extra: 660 / 640,
  20410. bottom: 0.015
  20411. }
  20412. },
  20413. demiNaga: {
  20414. height: math.unit(6 + 8 / 12, "feet"),
  20415. weight: math.unit(300, "lb"),
  20416. name: "Demi Naga",
  20417. image: {
  20418. source: "./media/characters/tahajin/demi-naga.svg",
  20419. extra: 643 / 615,
  20420. bottom: 0.1
  20421. }
  20422. },
  20423. data: {
  20424. height: math.unit(5, "inches"),
  20425. weight: math.unit(0.1, "lb"),
  20426. name: "Data",
  20427. image: {
  20428. source: "./media/characters/tahajin/data.svg"
  20429. }
  20430. },
  20431. fluu: {
  20432. height: math.unit(5 + 7 / 12, "feet"),
  20433. weight: math.unit(140, "lb"),
  20434. name: "Fluu",
  20435. image: {
  20436. source: "./media/characters/tahajin/fluu.svg",
  20437. extra: 628 / 592,
  20438. bottom: 0.02
  20439. }
  20440. },
  20441. starWarrior: {
  20442. height: math.unit(4 + 5 / 12, "feet"),
  20443. weight: math.unit(50, "lb"),
  20444. name: "Star Warrior",
  20445. image: {
  20446. source: "./media/characters/tahajin/star-warrior.svg"
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(25 + 6 / 12, "feet"),
  20454. default: true
  20455. },
  20456. ]
  20457. ))
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(8, "feet"),
  20463. weight: math.unit(350, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/gabira/front.svg",
  20467. extra: 608 / 580,
  20468. bottom: 0.03
  20469. }
  20470. },
  20471. back: {
  20472. height: math.unit(8, "feet"),
  20473. weight: math.unit(350, "lb"),
  20474. name: "Back",
  20475. image: {
  20476. source: "./media/characters/gabira/back.svg",
  20477. extra: 608 / 580,
  20478. bottom: 0.03
  20479. }
  20480. },
  20481. },
  20482. [
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(8, "feet"),
  20486. default: true
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20492. {
  20493. front: {
  20494. height: math.unit(5 + 3 / 12, "feet"),
  20495. weight: math.unit(137, "lb"),
  20496. name: "Front",
  20497. image: {
  20498. source: "./media/characters/sasha-katraine/front.svg",
  20499. bottom: 0.045
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Micro",
  20506. height: math.unit(5, "inches")
  20507. },
  20508. {
  20509. name: "Normal",
  20510. height: math.unit(5 + 3 / 12, "feet"),
  20511. default: true
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20517. {
  20518. side: {
  20519. height: math.unit(4, "inches"),
  20520. weight: math.unit(200, "grams"),
  20521. name: "Side",
  20522. image: {
  20523. source: "./media/characters/der/side.svg",
  20524. extra: 719 / 400,
  20525. bottom: 30.6 / 749.9187
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Micro",
  20532. height: math.unit(4, "inches"),
  20533. default: true
  20534. },
  20535. ]
  20536. ))
  20537. characterMakers.push(() => makeCharacter(
  20538. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20539. {
  20540. side: {
  20541. height: math.unit(30, "meters"),
  20542. weight: math.unit(700, "tonnes"),
  20543. name: "Side",
  20544. image: {
  20545. source: "./media/characters/fixerdragon/side.svg",
  20546. extra: (1293.0514 - 116.03) / 1106.86,
  20547. bottom: 116.03 / 1293.0514
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Planck",
  20554. height: math.unit(1.6e-35, "meters")
  20555. },
  20556. {
  20557. name: "Micro",
  20558. height: math.unit(0.4, "meters")
  20559. },
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(30, "meters"),
  20563. default: true
  20564. },
  20565. {
  20566. name: "Megamacro",
  20567. height: math.unit(1.2, "megameters")
  20568. },
  20569. {
  20570. name: "Teramacro",
  20571. height: math.unit(130, "terameters")
  20572. },
  20573. {
  20574. name: "Yottamacro",
  20575. height: math.unit(6200, "yottameters")
  20576. },
  20577. ]
  20578. ));
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20581. {
  20582. front: {
  20583. height: math.unit(8, "feet"),
  20584. weight: math.unit(250, "lb"),
  20585. name: "Front",
  20586. image: {
  20587. source: "./media/characters/kite/front.svg",
  20588. extra: 2796 / 2659,
  20589. bottom: 0.002
  20590. }
  20591. },
  20592. },
  20593. [
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(8, "feet"),
  20597. default: true
  20598. },
  20599. {
  20600. name: "Macro",
  20601. height: math.unit(360, "feet")
  20602. },
  20603. {
  20604. name: "Megamacro",
  20605. height: math.unit(1500, "feet")
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20611. {
  20612. front: {
  20613. height: math.unit(5 + 10 / 12, "feet"),
  20614. weight: math.unit(150, "lb"),
  20615. name: "Front",
  20616. image: {
  20617. source: "./media/characters/poojawa-vynar/front.svg",
  20618. extra: (1506.1547 - 55) / 1356.6,
  20619. bottom: 55 / 1506.1547
  20620. }
  20621. },
  20622. frontTailless: {
  20623. height: math.unit(5 + 10 / 12, "feet"),
  20624. weight: math.unit(150, "lb"),
  20625. name: "Front (Tailless)",
  20626. image: {
  20627. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20628. extra: (1506.1547 - 55) / 1356.6,
  20629. bottom: 55 / 1506.1547
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(5 + 10 / 12, "feet"),
  20637. default: true
  20638. },
  20639. ]
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20643. {
  20644. front: {
  20645. height: math.unit(293, "meters"),
  20646. weight: math.unit(70400, "tons"),
  20647. name: "Front",
  20648. image: {
  20649. source: "./media/characters/violette/front.svg",
  20650. extra: 1227 / 1180,
  20651. bottom: 0.005
  20652. }
  20653. },
  20654. back: {
  20655. height: math.unit(293, "meters"),
  20656. weight: math.unit(70400, "tons"),
  20657. name: "Back",
  20658. image: {
  20659. source: "./media/characters/violette/back.svg",
  20660. extra: 1227 / 1180,
  20661. bottom: 0.005
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Macro",
  20668. height: math.unit(293, "meters"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20675. {
  20676. front: {
  20677. height: math.unit(1050, "feet"),
  20678. weight: math.unit(200000, "tons"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/alessandra/front.svg",
  20682. extra: 960 / 912,
  20683. bottom: 0.06
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Macro",
  20690. height: math.unit(1050, "feet")
  20691. },
  20692. {
  20693. name: "Macro+",
  20694. height: math.unit(900, "meters"),
  20695. default: true
  20696. },
  20697. ]
  20698. ))
  20699. characterMakers.push(() => makeCharacter(
  20700. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20701. {
  20702. front: {
  20703. height: math.unit(5, "feet"),
  20704. weight: math.unit(187, "lb"),
  20705. name: "Front",
  20706. image: {
  20707. source: "./media/characters/person/front.svg",
  20708. extra: 3087 / 2945,
  20709. bottom: 91 / 3181
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Micro",
  20716. height: math.unit(3, "inches")
  20717. },
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(5, "feet"),
  20721. default: true
  20722. },
  20723. {
  20724. name: "Macro",
  20725. height: math.unit(90, "feet")
  20726. },
  20727. {
  20728. name: "Max Size",
  20729. height: math.unit(280, "feet")
  20730. },
  20731. ]
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20735. {
  20736. front: {
  20737. height: math.unit(4.5, "meters"),
  20738. weight: math.unit(3200, "lb"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/ty/front.svg",
  20742. extra: 1038 / 960,
  20743. bottom: 31.156 / 1068
  20744. }
  20745. },
  20746. back: {
  20747. height: math.unit(4.5, "meters"),
  20748. weight: math.unit(3200, "lb"),
  20749. name: "Back",
  20750. image: {
  20751. source: "./media/characters/ty/back.svg",
  20752. extra: 1044 / 966,
  20753. bottom: 7.48 / 1049
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(4.5, "meters"),
  20761. default: true
  20762. },
  20763. ]
  20764. ))
  20765. characterMakers.push(() => makeCharacter(
  20766. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20767. {
  20768. front: {
  20769. height: math.unit(5 + 4 / 12, "feet"),
  20770. weight: math.unit(115, "lb"),
  20771. name: "Front",
  20772. image: {
  20773. source: "./media/characters/rocky/front.svg",
  20774. extra: 1012 / 975,
  20775. bottom: 54 / 1066
  20776. }
  20777. },
  20778. },
  20779. [
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(5 + 4 / 12, "feet"),
  20783. default: true
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20789. {
  20790. upright: {
  20791. height: math.unit(6, "meters"),
  20792. weight: math.unit(4000, "kg"),
  20793. name: "Upright",
  20794. image: {
  20795. source: "./media/characters/ruin/upright.svg",
  20796. extra: 668 / 661,
  20797. bottom: 42 / 799.8396
  20798. }
  20799. },
  20800. },
  20801. [
  20802. {
  20803. name: "Normal",
  20804. height: math.unit(6, "meters"),
  20805. default: true
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20811. {
  20812. front: {
  20813. height: math.unit(5, "feet"),
  20814. weight: math.unit(106, "lb"),
  20815. name: "Front",
  20816. image: {
  20817. source: "./media/characters/robin/front.svg",
  20818. extra: 862 / 799,
  20819. bottom: 42.4 / 914.8856
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(5, "feet"),
  20827. default: true
  20828. },
  20829. ]
  20830. ))
  20831. characterMakers.push(() => makeCharacter(
  20832. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20833. {
  20834. side: {
  20835. height: math.unit(3, "feet"),
  20836. weight: math.unit(225, "lb"),
  20837. name: "Side",
  20838. image: {
  20839. source: "./media/characters/saian/side.svg",
  20840. extra: 566 / 356,
  20841. bottom: 79.7 / 643
  20842. }
  20843. },
  20844. maw: {
  20845. height: math.unit(2.85, "feet"),
  20846. name: "Maw",
  20847. image: {
  20848. source: "./media/characters/saian/maw.svg"
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(3, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20862. {
  20863. side: {
  20864. height: math.unit(8, "feet"),
  20865. weight: math.unit(300, "lb"),
  20866. name: "Side",
  20867. image: {
  20868. source: "./media/characters/equus-silvermane/side.svg",
  20869. extra: 2176 / 2050,
  20870. bottom: 65.7 / 2245
  20871. }
  20872. },
  20873. front: {
  20874. height: math.unit(8, "feet"),
  20875. weight: math.unit(300, "lb"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/equus-silvermane/front.svg",
  20879. extra: 4633 / 4400,
  20880. bottom: 71.3 / 4706.915
  20881. }
  20882. },
  20883. sideStepping: {
  20884. height: math.unit(8, "feet"),
  20885. weight: math.unit(300, "lb"),
  20886. name: "Side (Stepping)",
  20887. image: {
  20888. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20889. extra: 1968 / 1860,
  20890. bottom: 16.4 / 1989
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(8, "feet")
  20898. },
  20899. {
  20900. name: "Minimacro",
  20901. height: math.unit(75, "feet"),
  20902. default: true
  20903. },
  20904. {
  20905. name: "Macro",
  20906. height: math.unit(150, "feet")
  20907. },
  20908. {
  20909. name: "Macro+",
  20910. height: math.unit(1000, "feet")
  20911. },
  20912. {
  20913. name: "Megamacro",
  20914. height: math.unit(1, "mile")
  20915. },
  20916. ]
  20917. ))
  20918. characterMakers.push(() => makeCharacter(
  20919. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20920. {
  20921. side: {
  20922. height: math.unit(20, "feet"),
  20923. weight: math.unit(30000, "kg"),
  20924. name: "Side",
  20925. image: {
  20926. source: "./media/characters/windar/side.svg",
  20927. extra: 1491 / 1248,
  20928. bottom: 82.56 / 1568
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Normal",
  20935. height: math.unit(20, "feet"),
  20936. default: true
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20942. {
  20943. side: {
  20944. height: math.unit(15.66, "feet"),
  20945. weight: math.unit(150, "lb"),
  20946. name: "Side",
  20947. image: {
  20948. source: "./media/characters/melody/side.svg",
  20949. extra: 1097 / 944,
  20950. bottom: 11.8 / 1109
  20951. }
  20952. },
  20953. sideOutfit: {
  20954. height: math.unit(15.66, "feet"),
  20955. weight: math.unit(150, "lb"),
  20956. name: "Side (Outfit)",
  20957. image: {
  20958. source: "./media/characters/melody/side-outfit.svg",
  20959. extra: 1097 / 944,
  20960. bottom: 11.8 / 1109
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(15.66, "feet"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20974. {
  20975. front: {
  20976. height: math.unit(8, "feet"),
  20977. weight: math.unit(325, "lb"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/windera/front.svg",
  20981. extra: 3180 / 2845,
  20982. bottom: 178 / 3365
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(8, "feet"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20996. {
  20997. front: {
  20998. height: math.unit(28.75, "feet"),
  20999. weight: math.unit(2000, "kg"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/sonear/front.svg",
  21003. extra: 1041.1 / 964.9,
  21004. bottom: 53.7 / 1096.6
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(28.75, "feet"),
  21012. default: true
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21018. {
  21019. side: {
  21020. height: math.unit(25.5, "feet"),
  21021. weight: math.unit(23000, "kg"),
  21022. name: "Side",
  21023. image: {
  21024. source: "./media/characters/kanara/side.svg"
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(25.5, "feet"),
  21032. default: true
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21038. {
  21039. side: {
  21040. height: math.unit(10, "feet"),
  21041. weight: math.unit(1000, "kg"),
  21042. name: "Side",
  21043. image: {
  21044. source: "./media/characters/ereus/side.svg",
  21045. extra: 1157 / 959,
  21046. bottom: 153 / 1312.5
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(10, "feet"),
  21054. default: true
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21060. {
  21061. side: {
  21062. height: math.unit(4.5, "feet"),
  21063. weight: math.unit(500, "lb"),
  21064. name: "Side",
  21065. image: {
  21066. source: "./media/characters/e-ter/side.svg",
  21067. extra: 1550 / 1248,
  21068. bottom: 146 / 1694
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(4.5, "feet"),
  21076. default: true
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21082. {
  21083. side: {
  21084. height: math.unit(9.7, "feet"),
  21085. weight: math.unit(4000, "kg"),
  21086. name: "Side",
  21087. image: {
  21088. source: "./media/characters/yamie/side.svg"
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(9.7, "feet"),
  21096. default: true
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21102. {
  21103. front: {
  21104. height: math.unit(50, "feet"),
  21105. weight: math.unit(50000, "kg"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/anders/front.svg",
  21109. extra: 570 / 539,
  21110. bottom: 14.7 / 586.7
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Large",
  21117. height: math.unit(50, "feet")
  21118. },
  21119. {
  21120. name: "Macro",
  21121. height: math.unit(2000, "feet"),
  21122. default: true
  21123. },
  21124. {
  21125. name: "Megamacro",
  21126. height: math.unit(12, "miles")
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21132. {
  21133. front: {
  21134. height: math.unit(7 + 2 / 12, "feet"),
  21135. weight: math.unit(300, "lb"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/reban/front.svg",
  21139. extra: 516 / 487,
  21140. bottom: 42.82 / 558.356
  21141. }
  21142. },
  21143. dick: {
  21144. height: math.unit(7 / 5, "feet"),
  21145. name: "Dick",
  21146. image: {
  21147. source: "./media/characters/reban/dick.svg"
  21148. }
  21149. },
  21150. },
  21151. [
  21152. {
  21153. name: "Natural Height",
  21154. height: math.unit(7 + 2 / 12, "feet")
  21155. },
  21156. {
  21157. name: "Macro",
  21158. height: math.unit(500, "feet"),
  21159. default: true
  21160. },
  21161. {
  21162. name: "Canon Height",
  21163. height: math.unit(50, "AU")
  21164. },
  21165. ]
  21166. ))
  21167. characterMakers.push(() => makeCharacter(
  21168. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21169. {
  21170. front: {
  21171. height: math.unit(6, "feet"),
  21172. weight: math.unit(150, "lb"),
  21173. name: "Front",
  21174. image: {
  21175. source: "./media/characters/terrance-keayes/front.svg",
  21176. extra: 1.005,
  21177. bottom: 151 / 1615
  21178. }
  21179. },
  21180. side: {
  21181. height: math.unit(6, "feet"),
  21182. weight: math.unit(150, "lb"),
  21183. name: "Side",
  21184. image: {
  21185. source: "./media/characters/terrance-keayes/side.svg",
  21186. extra: 1.005,
  21187. bottom: 129.4 / 1544
  21188. }
  21189. },
  21190. back: {
  21191. height: math.unit(6, "feet"),
  21192. weight: math.unit(150, "lb"),
  21193. name: "Back",
  21194. image: {
  21195. source: "./media/characters/terrance-keayes/back.svg",
  21196. extra: 1.005,
  21197. bottom: 58.4 / 1557.3
  21198. }
  21199. },
  21200. dick: {
  21201. height: math.unit(6 * 0.208, "feet"),
  21202. name: "Dick",
  21203. image: {
  21204. source: "./media/characters/terrance-keayes/dick.svg"
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Canon Height",
  21211. height: math.unit(35, "miles"),
  21212. default: true
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21218. {
  21219. front: {
  21220. height: math.unit(6, "feet"),
  21221. weight: math.unit(150, "lb"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/ofelia/front.svg",
  21225. extra: 546 / 541,
  21226. bottom: 39 / 583
  21227. }
  21228. },
  21229. back: {
  21230. height: math.unit(6, "feet"),
  21231. weight: math.unit(150, "lb"),
  21232. name: "Back",
  21233. image: {
  21234. source: "./media/characters/ofelia/back.svg",
  21235. extra: 564 / 559.5,
  21236. bottom: 8.69 / 573.02
  21237. }
  21238. },
  21239. maw: {
  21240. height: math.unit(1, "feet"),
  21241. name: "Maw",
  21242. image: {
  21243. source: "./media/characters/ofelia/maw.svg"
  21244. }
  21245. },
  21246. foot: {
  21247. height: math.unit(1.949, "feet"),
  21248. name: "Foot",
  21249. image: {
  21250. source: "./media/characters/ofelia/foot.svg"
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Canon Height",
  21257. height: math.unit(2000, "miles"),
  21258. default: true
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21264. {
  21265. front: {
  21266. height: math.unit(6, "feet"),
  21267. weight: math.unit(150, "lb"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/samuel/front.svg",
  21271. extra: 265 / 258,
  21272. bottom: 2 / 266.1566
  21273. }
  21274. },
  21275. },
  21276. [
  21277. {
  21278. name: "Macro",
  21279. height: math.unit(100, "feet"),
  21280. default: true
  21281. },
  21282. {
  21283. name: "Full Size",
  21284. height: math.unit(1000, "miles")
  21285. },
  21286. ]
  21287. ))
  21288. characterMakers.push(() => makeCharacter(
  21289. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21290. {
  21291. front: {
  21292. height: math.unit(6, "feet"),
  21293. weight: math.unit(300, "lb"),
  21294. name: "Front",
  21295. image: {
  21296. source: "./media/characters/beishir-kiel/front.svg",
  21297. extra: 569 / 547,
  21298. bottom: 41.9 / 609
  21299. }
  21300. },
  21301. maw: {
  21302. height: math.unit(6 * 0.202, "feet"),
  21303. name: "Maw",
  21304. image: {
  21305. source: "./media/characters/beishir-kiel/maw.svg"
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Macro",
  21312. height: math.unit(300, "feet"),
  21313. default: true
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21319. {
  21320. front: {
  21321. height: math.unit(5 + 8 / 12, "feet"),
  21322. weight: math.unit(120, "lb"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/logan-grey/front.svg",
  21326. extra: 2539 / 2393,
  21327. bottom: 97.6 / 2636.37
  21328. }
  21329. },
  21330. frontAlt: {
  21331. height: math.unit(5 + 8 / 12, "feet"),
  21332. weight: math.unit(120, "lb"),
  21333. name: "Front (Alt)",
  21334. image: {
  21335. source: "./media/characters/logan-grey/front-alt.svg",
  21336. extra: 958 / 893,
  21337. bottom: 15 / 970.768
  21338. }
  21339. },
  21340. back: {
  21341. height: math.unit(5 + 8 / 12, "feet"),
  21342. weight: math.unit(120, "lb"),
  21343. name: "Back",
  21344. image: {
  21345. source: "./media/characters/logan-grey/back.svg",
  21346. extra: 958 / 893,
  21347. bottom: 2.1881 / 970.9788
  21348. }
  21349. },
  21350. dick: {
  21351. height: math.unit(1.437, "feet"),
  21352. name: "Dick",
  21353. image: {
  21354. source: "./media/characters/logan-grey/dick.svg"
  21355. }
  21356. },
  21357. },
  21358. [
  21359. {
  21360. name: "Normal",
  21361. height: math.unit(5 + 8 / 12, "feet")
  21362. },
  21363. {
  21364. name: "The 500 Foot Femboy",
  21365. height: math.unit(500, "feet"),
  21366. default: true
  21367. },
  21368. {
  21369. name: "Megmacro",
  21370. height: math.unit(20, "miles")
  21371. },
  21372. ]
  21373. ))
  21374. characterMakers.push(() => makeCharacter(
  21375. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21376. {
  21377. front: {
  21378. height: math.unit(8 + 2 / 12, "feet"),
  21379. weight: math.unit(275, "lb"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/draganta/front.svg",
  21383. extra: 1177 / 1135,
  21384. bottom: 33.46 / 1212.1
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Normal",
  21391. height: math.unit(8 + 6 / 12, "feet"),
  21392. default: true
  21393. },
  21394. {
  21395. name: "Macro",
  21396. height: math.unit(150, "feet")
  21397. },
  21398. {
  21399. name: "Megamacro",
  21400. height: math.unit(1000, "miles")
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21406. {
  21407. front: {
  21408. height: math.unit(1.72, "m"),
  21409. weight: math.unit(80, "lb"),
  21410. name: "Front",
  21411. image: {
  21412. source: "./media/characters/voski/front.svg",
  21413. extra: 2076.22 / 2022.4,
  21414. bottom: 102.7 / 2177.3866
  21415. }
  21416. },
  21417. frontNsfw: {
  21418. height: math.unit(1.72, "m"),
  21419. weight: math.unit(80, "lb"),
  21420. name: "Front (NSFW)",
  21421. image: {
  21422. source: "./media/characters/voski/front-nsfw.svg",
  21423. extra: 2076.22 / 2022.4,
  21424. bottom: 102.7 / 2177.3866
  21425. }
  21426. },
  21427. back: {
  21428. height: math.unit(1.72, "m"),
  21429. weight: math.unit(80, "lb"),
  21430. name: "Back",
  21431. image: {
  21432. source: "./media/characters/voski/back.svg",
  21433. extra: 2104 / 2051,
  21434. bottom: 10.45 / 2113.63
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Normal",
  21441. height: math.unit(1.72, "m")
  21442. },
  21443. {
  21444. name: "Macro",
  21445. height: math.unit(55, "m"),
  21446. default: true
  21447. },
  21448. {
  21449. name: "Macro+",
  21450. height: math.unit(300, "m")
  21451. },
  21452. {
  21453. name: "Macro++",
  21454. height: math.unit(700, "m")
  21455. },
  21456. {
  21457. name: "Macro+++",
  21458. height: math.unit(4500, "m")
  21459. },
  21460. {
  21461. name: "Macro++++",
  21462. height: math.unit(45, "km")
  21463. },
  21464. {
  21465. name: "Macro+++++",
  21466. height: math.unit(1220, "km")
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21472. {
  21473. front: {
  21474. height: math.unit(2.3, "m"),
  21475. weight: math.unit(304, "kg"),
  21476. name: "Front",
  21477. image: {
  21478. source: "./media/characters/icowom-lee/front.svg",
  21479. extra: 985 / 955,
  21480. bottom: 25.4 / 1012
  21481. }
  21482. },
  21483. fronttentacles: {
  21484. height: math.unit(2.3, "m"),
  21485. weight: math.unit(304, "kg"),
  21486. name: "Front-tentacles",
  21487. image: {
  21488. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21489. extra: 985 / 955,
  21490. bottom: 25.4 / 1012
  21491. }
  21492. },
  21493. back: {
  21494. height: math.unit(2.3, "m"),
  21495. weight: math.unit(304, "kg"),
  21496. name: "Back",
  21497. image: {
  21498. source: "./media/characters/icowom-lee/back.svg",
  21499. extra: 975 / 954,
  21500. bottom: 9.5 / 985
  21501. }
  21502. },
  21503. backtentacles: {
  21504. height: math.unit(2.3, "m"),
  21505. weight: math.unit(304, "kg"),
  21506. name: "Back-tentacles",
  21507. image: {
  21508. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21509. extra: 975 / 954,
  21510. bottom: 9.5 / 985
  21511. }
  21512. },
  21513. frontDressed: {
  21514. height: math.unit(2.3, "m"),
  21515. weight: math.unit(304, "kg"),
  21516. name: "Front (Dressed)",
  21517. image: {
  21518. source: "./media/characters/icowom-lee/front-dressed.svg",
  21519. extra: 3076 / 2933,
  21520. bottom: 51.4 / 3125.1889
  21521. }
  21522. },
  21523. rump: {
  21524. height: math.unit(0.776, "meters"),
  21525. name: "Rump",
  21526. image: {
  21527. source: "./media/characters/icowom-lee/rump.svg"
  21528. }
  21529. },
  21530. genitals: {
  21531. height: math.unit(0.78, "meters"),
  21532. name: "Genitals",
  21533. image: {
  21534. source: "./media/characters/icowom-lee/genitals.svg"
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(2.3, "meters"),
  21542. default: true
  21543. },
  21544. {
  21545. name: "Macro",
  21546. height: math.unit(94, "meters"),
  21547. default: true
  21548. },
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21553. {
  21554. front: {
  21555. height: math.unit(22, "meters"),
  21556. weight: math.unit(21000, "kg"),
  21557. name: "Front",
  21558. image: {
  21559. source: "./media/characters/shock-diamond/front.svg",
  21560. extra: 2204 / 2053,
  21561. bottom: 65 / 2239.47
  21562. }
  21563. },
  21564. frontNude: {
  21565. height: math.unit(22, "meters"),
  21566. weight: math.unit(21000, "kg"),
  21567. name: "Front (Nude)",
  21568. image: {
  21569. source: "./media/characters/shock-diamond/front-nude.svg",
  21570. extra: 2514 / 2285,
  21571. bottom: 13 / 2527.56
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(3, "meters")
  21579. },
  21580. {
  21581. name: "Macro",
  21582. height: math.unit(22, "meters"),
  21583. default: true
  21584. },
  21585. ]
  21586. ))
  21587. characterMakers.push(() => makeCharacter(
  21588. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21589. {
  21590. front: {
  21591. height: math.unit(5 + 4 / 12, "feet"),
  21592. weight: math.unit(120, "lb"),
  21593. name: "Front",
  21594. image: {
  21595. source: "./media/characters/rory/front.svg",
  21596. extra: 589 / 556,
  21597. bottom: 45.7 / 635.76
  21598. }
  21599. },
  21600. frontNude: {
  21601. height: math.unit(5 + 4 / 12, "feet"),
  21602. weight: math.unit(120, "lb"),
  21603. name: "Front (Nude)",
  21604. image: {
  21605. source: "./media/characters/rory/front-nude.svg",
  21606. extra: 589 / 556,
  21607. bottom: 45.7 / 635.76
  21608. }
  21609. },
  21610. side: {
  21611. height: math.unit(5 + 4 / 12, "feet"),
  21612. weight: math.unit(120, "lb"),
  21613. name: "Side",
  21614. image: {
  21615. source: "./media/characters/rory/side.svg",
  21616. extra: 597 / 564,
  21617. bottom: 55 / 653
  21618. }
  21619. },
  21620. back: {
  21621. height: math.unit(5 + 4 / 12, "feet"),
  21622. weight: math.unit(120, "lb"),
  21623. name: "Back",
  21624. image: {
  21625. source: "./media/characters/rory/back.svg",
  21626. extra: 620 / 585,
  21627. bottom: 8.86 / 630.43
  21628. }
  21629. },
  21630. dick: {
  21631. height: math.unit(0.86, "feet"),
  21632. name: "Dick",
  21633. image: {
  21634. source: "./media/characters/rory/dick.svg"
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Normal",
  21641. height: math.unit(5 + 4 / 12, "feet"),
  21642. default: true
  21643. },
  21644. {
  21645. name: "Macro",
  21646. height: math.unit(100, "feet")
  21647. },
  21648. {
  21649. name: "Macro+",
  21650. height: math.unit(140, "feet")
  21651. },
  21652. {
  21653. name: "Macro++",
  21654. height: math.unit(300, "feet")
  21655. },
  21656. ]
  21657. ))
  21658. characterMakers.push(() => makeCharacter(
  21659. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21660. {
  21661. front: {
  21662. height: math.unit(5 + 9 / 12, "feet"),
  21663. weight: math.unit(190, "lb"),
  21664. name: "Front",
  21665. image: {
  21666. source: "./media/characters/sprisk/front.svg",
  21667. extra: 1225 / 1180,
  21668. bottom: 42.7 / 1266.4
  21669. }
  21670. },
  21671. frontNsfw: {
  21672. height: math.unit(5 + 9 / 12, "feet"),
  21673. weight: math.unit(190, "lb"),
  21674. name: "Front (NSFW)",
  21675. image: {
  21676. source: "./media/characters/sprisk/front-nsfw.svg",
  21677. extra: 1225 / 1180,
  21678. bottom: 42.7 / 1266.4
  21679. }
  21680. },
  21681. back: {
  21682. height: math.unit(5 + 9 / 12, "feet"),
  21683. weight: math.unit(190, "lb"),
  21684. name: "Back",
  21685. image: {
  21686. source: "./media/characters/sprisk/back.svg",
  21687. extra: 1247 / 1200,
  21688. bottom: 5.6 / 1253.04
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Tiny",
  21695. height: math.unit(2, "inches")
  21696. },
  21697. {
  21698. name: "Normal",
  21699. height: math.unit(5 + 9 / 12, "feet"),
  21700. default: true
  21701. },
  21702. {
  21703. name: "Mini Macro",
  21704. height: math.unit(18, "feet")
  21705. },
  21706. {
  21707. name: "Macro",
  21708. height: math.unit(100, "feet")
  21709. },
  21710. {
  21711. name: "MACRO",
  21712. height: math.unit(50, "miles")
  21713. },
  21714. {
  21715. name: "M A C R O",
  21716. height: math.unit(300, "miles")
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21722. {
  21723. side: {
  21724. height: math.unit(15.6, "meters"),
  21725. weight: math.unit(700000, "kg"),
  21726. name: "Side",
  21727. image: {
  21728. source: "./media/characters/bunsen/side.svg",
  21729. extra: 1644 / 358
  21730. }
  21731. },
  21732. foot: {
  21733. height: math.unit(1.611 * 1644 / 358, "meter"),
  21734. name: "Foot",
  21735. image: {
  21736. source: "./media/characters/bunsen/foot.svg"
  21737. }
  21738. },
  21739. },
  21740. [
  21741. {
  21742. name: "Small",
  21743. height: math.unit(10, "feet")
  21744. },
  21745. {
  21746. name: "Normal",
  21747. height: math.unit(15.6, "meters"),
  21748. default: true
  21749. },
  21750. ]
  21751. ))
  21752. characterMakers.push(() => makeCharacter(
  21753. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21754. {
  21755. front: {
  21756. height: math.unit(4 + 11 / 12, "feet"),
  21757. weight: math.unit(140, "lb"),
  21758. name: "Front",
  21759. image: {
  21760. source: "./media/characters/sesh/front.svg",
  21761. extra: 3420 / 3231,
  21762. bottom: 72 / 3949.5
  21763. }
  21764. },
  21765. },
  21766. [
  21767. {
  21768. name: "Normal",
  21769. height: math.unit(4 + 11 / 12, "feet")
  21770. },
  21771. {
  21772. name: "Grown",
  21773. height: math.unit(15, "feet"),
  21774. default: true
  21775. },
  21776. {
  21777. name: "Macro",
  21778. height: math.unit(1500, "feet")
  21779. },
  21780. {
  21781. name: "Megamacro",
  21782. height: math.unit(30, "miles")
  21783. },
  21784. {
  21785. name: "Continental",
  21786. height: math.unit(3000, "miles")
  21787. },
  21788. {
  21789. name: "Gravity Mass",
  21790. height: math.unit(300000, "miles")
  21791. },
  21792. {
  21793. name: "Planet Buster",
  21794. height: math.unit(30000000, "miles")
  21795. },
  21796. {
  21797. name: "Big",
  21798. height: math.unit(3000000000, "miles")
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(9, "feet"),
  21807. weight: math.unit(350, "lb"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/pepper/front.svg",
  21811. extra: 1448 / 1312,
  21812. bottom: 9.4 / 1457.88
  21813. }
  21814. },
  21815. back: {
  21816. height: math.unit(9, "feet"),
  21817. weight: math.unit(350, "lb"),
  21818. name: "Back",
  21819. image: {
  21820. source: "./media/characters/pepper/back.svg",
  21821. extra: 1423 / 1300,
  21822. bottom: 4.6 / 1429
  21823. }
  21824. },
  21825. maw: {
  21826. height: math.unit(0.932, "feet"),
  21827. name: "Maw",
  21828. image: {
  21829. source: "./media/characters/pepper/maw.svg"
  21830. }
  21831. },
  21832. },
  21833. [
  21834. {
  21835. name: "Normal",
  21836. height: math.unit(9, "feet"),
  21837. default: true
  21838. },
  21839. ]
  21840. ))
  21841. characterMakers.push(() => makeCharacter(
  21842. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21843. {
  21844. front: {
  21845. height: math.unit(6, "feet"),
  21846. weight: math.unit(150, "lb"),
  21847. name: "Front",
  21848. image: {
  21849. source: "./media/characters/maelstrom/front.svg",
  21850. extra: 2100 / 1883,
  21851. bottom: 94 / 2196.7
  21852. }
  21853. },
  21854. },
  21855. [
  21856. {
  21857. name: "Less Kaiju",
  21858. height: math.unit(200, "feet")
  21859. },
  21860. {
  21861. name: "Kaiju",
  21862. height: math.unit(400, "feet"),
  21863. default: true
  21864. },
  21865. {
  21866. name: "Kaiju-er",
  21867. height: math.unit(600, "feet")
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21873. {
  21874. front: {
  21875. height: math.unit(6 + 5 / 12, "feet"),
  21876. weight: math.unit(180, "lb"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/lexir/front.svg",
  21880. extra: 180 / 172,
  21881. bottom: 12 / 192
  21882. }
  21883. },
  21884. back: {
  21885. height: math.unit(6 + 5 / 12, "feet"),
  21886. weight: math.unit(180, "lb"),
  21887. name: "Back",
  21888. image: {
  21889. source: "./media/characters/lexir/back.svg",
  21890. extra: 183.84 / 175.5,
  21891. bottom: 3.1 / 187
  21892. }
  21893. },
  21894. },
  21895. [
  21896. {
  21897. name: "Very Smal",
  21898. height: math.unit(1, "nm")
  21899. },
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(6 + 5 / 12, "feet"),
  21903. default: true
  21904. },
  21905. {
  21906. name: "Macro",
  21907. height: math.unit(1, "mile")
  21908. },
  21909. {
  21910. name: "Megamacro",
  21911. height: math.unit(50, "miles")
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21917. {
  21918. front: {
  21919. height: math.unit(1.5, "meters"),
  21920. weight: math.unit(100, "lb"),
  21921. name: "Front",
  21922. image: {
  21923. source: "./media/characters/maksio/front.svg",
  21924. extra: 1549 / 1531,
  21925. bottom: 123.7 / 1674.5429
  21926. }
  21927. },
  21928. back: {
  21929. height: math.unit(1.5, "meters"),
  21930. weight: math.unit(100, "lb"),
  21931. name: "Back",
  21932. image: {
  21933. source: "./media/characters/maksio/back.svg",
  21934. extra: 1541 / 1509,
  21935. bottom: 97 / 1639
  21936. }
  21937. },
  21938. hand: {
  21939. height: math.unit(0.621, "feet"),
  21940. name: "Hand",
  21941. image: {
  21942. source: "./media/characters/maksio/hand.svg"
  21943. }
  21944. },
  21945. foot: {
  21946. height: math.unit(1.611, "feet"),
  21947. name: "Foot",
  21948. image: {
  21949. source: "./media/characters/maksio/foot.svg"
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Shrunken",
  21956. height: math.unit(10, "cm")
  21957. },
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(150, "cm"),
  21961. default: true
  21962. },
  21963. ]
  21964. ))
  21965. characterMakers.push(() => makeCharacter(
  21966. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21967. {
  21968. front: {
  21969. height: math.unit(100, "feet"),
  21970. name: "Front",
  21971. image: {
  21972. source: "./media/characters/erza-bear/front.svg",
  21973. extra: 2449 / 2390,
  21974. bottom: 46 / 2494
  21975. }
  21976. },
  21977. back: {
  21978. height: math.unit(100, "feet"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/erza-bear/back.svg",
  21982. extra: 2489 / 2430,
  21983. bottom: 85.4 / 2480
  21984. }
  21985. },
  21986. tail: {
  21987. height: math.unit(42, "feet"),
  21988. name: "Tail",
  21989. image: {
  21990. source: "./media/characters/erza-bear/tail.svg"
  21991. }
  21992. },
  21993. tongue: {
  21994. height: math.unit(8, "feet"),
  21995. name: "Tongue",
  21996. image: {
  21997. source: "./media/characters/erza-bear/tongue.svg"
  21998. }
  21999. },
  22000. dick: {
  22001. height: math.unit(10.5, "feet"),
  22002. name: "Dick",
  22003. image: {
  22004. source: "./media/characters/erza-bear/dick.svg"
  22005. }
  22006. },
  22007. dickVertical: {
  22008. height: math.unit(16.9, "feet"),
  22009. name: "Dick (Vertical)",
  22010. image: {
  22011. source: "./media/characters/erza-bear/dick-vertical.svg"
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Macro",
  22018. height: math.unit(100, "feet"),
  22019. default: true
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22025. {
  22026. front: {
  22027. height: math.unit(172, "cm"),
  22028. weight: math.unit(73, "kg"),
  22029. name: "Front",
  22030. image: {
  22031. source: "./media/characters/violet-flor/front.svg",
  22032. extra: 1530 / 1442,
  22033. bottom: 61.9 / 1588.8
  22034. }
  22035. },
  22036. back: {
  22037. height: math.unit(180, "cm"),
  22038. weight: math.unit(73, "kg"),
  22039. name: "Back",
  22040. image: {
  22041. source: "./media/characters/violet-flor/back.svg",
  22042. extra: 1692 / 1630,
  22043. bottom: 20 / 1712
  22044. }
  22045. },
  22046. },
  22047. [
  22048. {
  22049. name: "Normal",
  22050. height: math.unit(172, "cm"),
  22051. default: true
  22052. },
  22053. ]
  22054. ))
  22055. characterMakers.push(() => makeCharacter(
  22056. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22057. {
  22058. front: {
  22059. height: math.unit(6, "feet"),
  22060. weight: math.unit(220, "lb"),
  22061. name: "Front",
  22062. image: {
  22063. source: "./media/characters/lynn-rhea/front.svg",
  22064. extra: 310 / 273
  22065. }
  22066. },
  22067. back: {
  22068. height: math.unit(6, "feet"),
  22069. weight: math.unit(220, "lb"),
  22070. name: "Back",
  22071. image: {
  22072. source: "./media/characters/lynn-rhea/back.svg",
  22073. extra: 310 / 273
  22074. }
  22075. },
  22076. dicks: {
  22077. height: math.unit(0.9, "feet"),
  22078. name: "Dicks",
  22079. image: {
  22080. source: "./media/characters/lynn-rhea/dicks.svg"
  22081. }
  22082. },
  22083. slit: {
  22084. height: math.unit(0.4, "feet"),
  22085. name: "Slit",
  22086. image: {
  22087. source: "./media/characters/lynn-rhea/slit.svg"
  22088. }
  22089. },
  22090. },
  22091. [
  22092. {
  22093. name: "Micro",
  22094. height: math.unit(1, "inch")
  22095. },
  22096. {
  22097. name: "Macro",
  22098. height: math.unit(60, "feet"),
  22099. default: true
  22100. },
  22101. {
  22102. name: "Megamacro",
  22103. height: math.unit(2, "miles")
  22104. },
  22105. {
  22106. name: "Gigamacro",
  22107. height: math.unit(3, "earths")
  22108. },
  22109. {
  22110. name: "Galactic",
  22111. height: math.unit(0.8, "galaxies")
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22117. {
  22118. front: {
  22119. height: math.unit(1600, "feet"),
  22120. weight: math.unit(85758785169, "kg"),
  22121. name: "Front",
  22122. image: {
  22123. source: "./media/characters/valathos/front.svg",
  22124. extra: 1451 / 1339
  22125. }
  22126. },
  22127. },
  22128. [
  22129. {
  22130. name: "Macro",
  22131. height: math.unit(1600, "feet"),
  22132. default: true
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22138. {
  22139. front: {
  22140. height: math.unit(7 + 5 / 12, "feet"),
  22141. weight: math.unit(300, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/azula/front.svg",
  22145. extra: 3208 / 2880,
  22146. bottom: 80.2 / 3277
  22147. }
  22148. },
  22149. back: {
  22150. height: math.unit(7 + 5 / 12, "feet"),
  22151. weight: math.unit(300, "lb"),
  22152. name: "Back",
  22153. image: {
  22154. source: "./media/characters/azula/back.svg",
  22155. extra: 3169 / 2822,
  22156. bottom: 150.6 / 3321
  22157. }
  22158. },
  22159. },
  22160. [
  22161. {
  22162. name: "Normal",
  22163. height: math.unit(7 + 5 / 12, "feet"),
  22164. default: true
  22165. },
  22166. {
  22167. name: "Big",
  22168. height: math.unit(20, "feet")
  22169. },
  22170. ]
  22171. ))
  22172. characterMakers.push(() => makeCharacter(
  22173. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22174. {
  22175. front: {
  22176. height: math.unit(5 + 1 / 12, "feet"),
  22177. weight: math.unit(110, "lb"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/rupert/front.svg",
  22181. extra: 1549 / 1495,
  22182. bottom: 54.2 / 1604.4
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Normal",
  22189. height: math.unit(5 + 1 / 12, "feet"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(8 + 4 / 12, "feet"),
  22199. weight: math.unit(350, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/sheera-castellar/front.svg",
  22203. extra: 1957 / 1894,
  22204. bottom: 26.97 / 1975.017
  22205. }
  22206. },
  22207. side: {
  22208. height: math.unit(8 + 4 / 12, "feet"),
  22209. weight: math.unit(350, "lb"),
  22210. name: "Side",
  22211. image: {
  22212. source: "./media/characters/sheera-castellar/side.svg",
  22213. extra: 1957 / 1894
  22214. }
  22215. },
  22216. back: {
  22217. height: math.unit(8 + 4 / 12, "feet"),
  22218. weight: math.unit(350, "lb"),
  22219. name: "Back",
  22220. image: {
  22221. source: "./media/characters/sheera-castellar/back.svg",
  22222. extra: 1957 / 1894
  22223. }
  22224. },
  22225. angled: {
  22226. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22227. weight: math.unit(350, "lb"),
  22228. name: "Angled",
  22229. image: {
  22230. source: "./media/characters/sheera-castellar/angled.svg",
  22231. extra: 1807 / 1707,
  22232. bottom: 68 / 1875
  22233. }
  22234. },
  22235. genitals: {
  22236. height: math.unit(2.2, "feet"),
  22237. name: "Genitals",
  22238. image: {
  22239. source: "./media/characters/sheera-castellar/genitals.svg"
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Normal",
  22246. height: math.unit(8 + 4 / 12, "feet")
  22247. },
  22248. {
  22249. name: "Macro",
  22250. height: math.unit(150, "feet"),
  22251. default: true
  22252. },
  22253. {
  22254. name: "Macro+",
  22255. height: math.unit(800, "feet")
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22261. {
  22262. front: {
  22263. height: math.unit(6, "feet"),
  22264. weight: math.unit(150, "lb"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/jaipur/front.svg",
  22268. extra: 3860 / 3731,
  22269. bottom: 287 / 4140
  22270. }
  22271. },
  22272. back: {
  22273. height: math.unit(6, "feet"),
  22274. weight: math.unit(150, "lb"),
  22275. name: "Back",
  22276. image: {
  22277. source: "./media/characters/jaipur/back.svg",
  22278. extra: 4060 / 3930,
  22279. bottom: 151 / 4200
  22280. }
  22281. },
  22282. },
  22283. [
  22284. {
  22285. name: "Normal",
  22286. height: math.unit(1.85, "meters"),
  22287. default: true
  22288. },
  22289. {
  22290. name: "Macro",
  22291. height: math.unit(150, "meters")
  22292. },
  22293. {
  22294. name: "Macro+",
  22295. height: math.unit(0.5, "miles")
  22296. },
  22297. {
  22298. name: "Macro++",
  22299. height: math.unit(2.5, "miles")
  22300. },
  22301. {
  22302. name: "Macro+++",
  22303. height: math.unit(12, "miles")
  22304. },
  22305. {
  22306. name: "Macro++++",
  22307. height: math.unit(120, "miles")
  22308. },
  22309. {
  22310. name: "Macro+++++",
  22311. height: math.unit(1200, "miles")
  22312. },
  22313. ]
  22314. ))
  22315. characterMakers.push(() => makeCharacter(
  22316. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22317. {
  22318. front: {
  22319. height: math.unit(6, "feet"),
  22320. weight: math.unit(150, "lb"),
  22321. name: "Front",
  22322. image: {
  22323. source: "./media/characters/sheila-wolf/front.svg",
  22324. extra: 1931 / 1808,
  22325. bottom: 29.5 / 1960
  22326. }
  22327. },
  22328. dick: {
  22329. height: math.unit(1.464, "feet"),
  22330. name: "Dick",
  22331. image: {
  22332. source: "./media/characters/sheila-wolf/dick.svg"
  22333. }
  22334. },
  22335. muzzle: {
  22336. height: math.unit(0.513, "feet"),
  22337. name: "Muzzle",
  22338. image: {
  22339. source: "./media/characters/sheila-wolf/muzzle.svg"
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Macro",
  22346. height: math.unit(70, "feet"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(32, "meters"),
  22356. weight: math.unit(300000, "kg"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/almor/front.svg",
  22360. extra: 1408 / 1322,
  22361. bottom: 94.6 / 1506.5
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Macro",
  22368. height: math.unit(32, "meters"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(7, "feet"),
  22378. weight: math.unit(200, "lb"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/silver/front.svg",
  22382. extra: 472.1 / 450.5,
  22383. bottom: 26.5 / 499.424
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(7, "feet"),
  22391. default: true
  22392. },
  22393. {
  22394. name: "Macro",
  22395. height: math.unit(800, "feet")
  22396. },
  22397. {
  22398. name: "Megamacro",
  22399. height: math.unit(250, "miles")
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(6, "feet"),
  22408. weight: math.unit(150, "lb"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/pliskin/front.svg",
  22412. extra: 1469 / 1359,
  22413. bottom: 70 / 1540
  22414. }
  22415. },
  22416. },
  22417. [
  22418. {
  22419. name: "Micro",
  22420. height: math.unit(3, "inches")
  22421. },
  22422. {
  22423. name: "Normal",
  22424. height: math.unit(5 + 11 / 12, "feet"),
  22425. default: true
  22426. },
  22427. {
  22428. name: "Macro",
  22429. height: math.unit(120, "feet")
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22435. {
  22436. front: {
  22437. height: math.unit(6, "feet"),
  22438. weight: math.unit(150, "lb"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/sammy/front.svg",
  22442. extra: 1193 / 1089,
  22443. bottom: 30.5 / 1226
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Macro",
  22450. height: math.unit(1700, "feet"),
  22451. default: true
  22452. },
  22453. {
  22454. name: "Examacro",
  22455. height: math.unit(2.5e9, "lightyears")
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(21, "meters"),
  22464. weight: math.unit(12, "tonnes"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/kuru/front.svg",
  22468. extra: 4301 / 3785,
  22469. bottom: 371.3 / 4691
  22470. }
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Macro",
  22476. height: math.unit(21, "meters"),
  22477. default: true
  22478. },
  22479. ]
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22483. {
  22484. front: {
  22485. height: math.unit(23, "meters"),
  22486. weight: math.unit(12.2, "tonnes"),
  22487. name: "Front",
  22488. image: {
  22489. source: "./media/characters/rakka/front.svg",
  22490. extra: 4670 / 4169,
  22491. bottom: 301 / 4968.7
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Macro",
  22498. height: math.unit(23, "meters"),
  22499. default: true
  22500. },
  22501. ]
  22502. ))
  22503. characterMakers.push(() => makeCharacter(
  22504. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22505. {
  22506. front: {
  22507. height: math.unit(6, "feet"),
  22508. weight: math.unit(150, "lb"),
  22509. name: "Front",
  22510. image: {
  22511. source: "./media/characters/rhys-feline/front.svg",
  22512. extra: 2488 / 2308,
  22513. bottom: 35.67 / 2519.19
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Really Small",
  22520. height: math.unit(1, "nm")
  22521. },
  22522. {
  22523. name: "Micro",
  22524. height: math.unit(4, "inches")
  22525. },
  22526. {
  22527. name: "Normal",
  22528. height: math.unit(4 + 10 / 12, "feet"),
  22529. default: true
  22530. },
  22531. {
  22532. name: "Macro",
  22533. height: math.unit(100, "feet")
  22534. },
  22535. {
  22536. name: "Megamacto",
  22537. height: math.unit(50, "miles")
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22543. {
  22544. side: {
  22545. height: math.unit(30, "feet"),
  22546. weight: math.unit(35000, "kg"),
  22547. name: "Side",
  22548. image: {
  22549. source: "./media/characters/alydar/side.svg",
  22550. extra: 234 / 222,
  22551. bottom: 6.5 / 241
  22552. }
  22553. },
  22554. front: {
  22555. height: math.unit(30, "feet"),
  22556. weight: math.unit(35000, "kg"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/alydar/front.svg",
  22560. extra: 223.37 / 210.2,
  22561. bottom: 22.3 / 246.76
  22562. }
  22563. },
  22564. top: {
  22565. height: math.unit(64.54, "feet"),
  22566. weight: math.unit(35000, "kg"),
  22567. name: "Top",
  22568. image: {
  22569. source: "./media/characters/alydar/top.svg"
  22570. }
  22571. },
  22572. anthro: {
  22573. height: math.unit(30, "feet"),
  22574. weight: math.unit(9000, "kg"),
  22575. name: "Anthro",
  22576. image: {
  22577. source: "./media/characters/alydar/anthro.svg",
  22578. extra: 432 / 421,
  22579. bottom: 7.18 / 440
  22580. }
  22581. },
  22582. maw: {
  22583. height: math.unit(11.693, "feet"),
  22584. name: "Maw",
  22585. image: {
  22586. source: "./media/characters/alydar/maw.svg"
  22587. }
  22588. },
  22589. head: {
  22590. height: math.unit(11.693, "feet"),
  22591. name: "Head",
  22592. image: {
  22593. source: "./media/characters/alydar/head.svg"
  22594. }
  22595. },
  22596. headAlt: {
  22597. height: math.unit(12.861, "feet"),
  22598. name: "Head (Alt)",
  22599. image: {
  22600. source: "./media/characters/alydar/head-alt.svg"
  22601. }
  22602. },
  22603. wing: {
  22604. height: math.unit(20.712, "feet"),
  22605. name: "Wing",
  22606. image: {
  22607. source: "./media/characters/alydar/wing.svg"
  22608. }
  22609. },
  22610. wingFeather: {
  22611. height: math.unit(9.662, "feet"),
  22612. name: "Wing Feather",
  22613. image: {
  22614. source: "./media/characters/alydar/wing-feather.svg"
  22615. }
  22616. },
  22617. countourFeather: {
  22618. height: math.unit(4.154, "feet"),
  22619. name: "Contour Feather",
  22620. image: {
  22621. source: "./media/characters/alydar/contour-feather.svg"
  22622. }
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Diplomatic",
  22628. height: math.unit(13, "feet"),
  22629. default: true
  22630. },
  22631. {
  22632. name: "Small",
  22633. height: math.unit(30, "feet")
  22634. },
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(95, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Large",
  22642. height: math.unit(285, "feet")
  22643. },
  22644. {
  22645. name: "Incomprehensible",
  22646. height: math.unit(450, "megameters")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22652. {
  22653. side: {
  22654. height: math.unit(11, "feet"),
  22655. weight: math.unit(1750, "kg"),
  22656. name: "Side",
  22657. image: {
  22658. source: "./media/characters/selicia/side.svg",
  22659. extra: 440 / 396,
  22660. bottom: 24.8 / 465.979
  22661. }
  22662. },
  22663. maw: {
  22664. height: math.unit(4.665, "feet"),
  22665. name: "Maw",
  22666. image: {
  22667. source: "./media/characters/selicia/maw.svg"
  22668. }
  22669. },
  22670. },
  22671. [
  22672. {
  22673. name: "Normal",
  22674. height: math.unit(11, "feet"),
  22675. default: true
  22676. },
  22677. ]
  22678. ))
  22679. characterMakers.push(() => makeCharacter(
  22680. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22681. {
  22682. side: {
  22683. height: math.unit(2 + 6 / 12, "feet"),
  22684. weight: math.unit(30, "lb"),
  22685. name: "Side",
  22686. image: {
  22687. source: "./media/characters/layla/side.svg",
  22688. extra: 244 / 188,
  22689. bottom: 18.2 / 262.1
  22690. }
  22691. },
  22692. back: {
  22693. height: math.unit(2 + 6 / 12, "feet"),
  22694. weight: math.unit(30, "lb"),
  22695. name: "Back",
  22696. image: {
  22697. source: "./media/characters/layla/back.svg",
  22698. extra: 308 / 241.5,
  22699. bottom: 8.9 / 316.8
  22700. }
  22701. },
  22702. cumming: {
  22703. height: math.unit(2 + 6 / 12, "feet"),
  22704. weight: math.unit(30, "lb"),
  22705. name: "Cumming",
  22706. image: {
  22707. source: "./media/characters/layla/cumming.svg",
  22708. extra: 342 / 279,
  22709. bottom: 595 / 938
  22710. }
  22711. },
  22712. dickFlaccid: {
  22713. height: math.unit(2.595, "feet"),
  22714. name: "Flaccid Genitals",
  22715. image: {
  22716. source: "./media/characters/layla/dick-flaccid.svg"
  22717. }
  22718. },
  22719. dickErect: {
  22720. height: math.unit(2.359, "feet"),
  22721. name: "Erect Genitals",
  22722. image: {
  22723. source: "./media/characters/layla/dick-erect.svg"
  22724. }
  22725. },
  22726. },
  22727. [
  22728. {
  22729. name: "Micro",
  22730. height: math.unit(1, "inch")
  22731. },
  22732. {
  22733. name: "Small",
  22734. height: math.unit(1, "foot")
  22735. },
  22736. {
  22737. name: "Normal",
  22738. height: math.unit(2 + 6 / 12, "feet"),
  22739. default: true
  22740. },
  22741. {
  22742. name: "Macro",
  22743. height: math.unit(200, "feet")
  22744. },
  22745. {
  22746. name: "Megamacro",
  22747. height: math.unit(1000, "miles")
  22748. },
  22749. {
  22750. name: "Planetary",
  22751. height: math.unit(8000, "miles")
  22752. },
  22753. {
  22754. name: "True Layla",
  22755. height: math.unit(200000 * 7, "multiverses")
  22756. },
  22757. ]
  22758. ))
  22759. characterMakers.push(() => makeCharacter(
  22760. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22761. {
  22762. back: {
  22763. height: math.unit(10.5, "feet"),
  22764. weight: math.unit(800, "lb"),
  22765. name: "Back",
  22766. image: {
  22767. source: "./media/characters/knox/back.svg",
  22768. extra: 1486 / 1089,
  22769. bottom: 107 / 1601.4
  22770. }
  22771. },
  22772. side: {
  22773. height: math.unit(10.5, "feet"),
  22774. weight: math.unit(800, "lb"),
  22775. name: "Side",
  22776. image: {
  22777. source: "./media/characters/knox/side.svg",
  22778. extra: 244 / 218,
  22779. bottom: 14 / 260
  22780. }
  22781. },
  22782. },
  22783. [
  22784. {
  22785. name: "Compact",
  22786. height: math.unit(10.5, "feet"),
  22787. default: true
  22788. },
  22789. {
  22790. name: "Dynamax",
  22791. height: math.unit(210, "feet")
  22792. },
  22793. {
  22794. name: "Full Macro",
  22795. height: math.unit(850, "feet")
  22796. },
  22797. ]
  22798. ))
  22799. characterMakers.push(() => makeCharacter(
  22800. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22801. {
  22802. front: {
  22803. height: math.unit(6, "feet"),
  22804. weight: math.unit(152, "lb"),
  22805. name: "Front",
  22806. image: {
  22807. source: "./media/characters/shin-pikachu/front.svg",
  22808. extra: 1574 / 1480,
  22809. bottom: 53.3 / 1626
  22810. }
  22811. },
  22812. hand: {
  22813. height: math.unit(1.055, "feet"),
  22814. name: "Hand",
  22815. image: {
  22816. source: "./media/characters/shin-pikachu/hand.svg"
  22817. }
  22818. },
  22819. foot: {
  22820. height: math.unit(1.1, "feet"),
  22821. name: "Foot",
  22822. image: {
  22823. source: "./media/characters/shin-pikachu/foot.svg"
  22824. }
  22825. },
  22826. collar: {
  22827. height: math.unit(0.386, "feet"),
  22828. name: "Collar",
  22829. image: {
  22830. source: "./media/characters/shin-pikachu/collar.svg"
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Smallest",
  22837. height: math.unit(0.5, "inches")
  22838. },
  22839. {
  22840. name: "Micro",
  22841. height: math.unit(6, "inches")
  22842. },
  22843. {
  22844. name: "Normal",
  22845. height: math.unit(6, "feet"),
  22846. default: true
  22847. },
  22848. {
  22849. name: "Macro",
  22850. height: math.unit(150, "feet")
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(28, "feet"),
  22859. weight: math.unit(10500, "lb"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/kayda/front.svg",
  22863. extra: 1536 / 1428,
  22864. bottom: 68.7 / 1603
  22865. }
  22866. },
  22867. back: {
  22868. height: math.unit(28, "feet"),
  22869. weight: math.unit(10500, "lb"),
  22870. name: "Back",
  22871. image: {
  22872. source: "./media/characters/kayda/back.svg",
  22873. extra: 1557 / 1464,
  22874. bottom: 39.5 / 1597.49
  22875. }
  22876. },
  22877. dick: {
  22878. height: math.unit(3.858, "feet"),
  22879. name: "Dick",
  22880. image: {
  22881. source: "./media/characters/kayda/dick.svg"
  22882. }
  22883. },
  22884. },
  22885. [
  22886. {
  22887. name: "Macro",
  22888. height: math.unit(28, "feet"),
  22889. default: true
  22890. },
  22891. ]
  22892. ))
  22893. characterMakers.push(() => makeCharacter(
  22894. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22895. {
  22896. front: {
  22897. height: math.unit(10 + 11 / 12, "feet"),
  22898. weight: math.unit(1400, "lb"),
  22899. name: "Front",
  22900. image: {
  22901. source: "./media/characters/brian/front.svg",
  22902. extra: 737 / 692,
  22903. bottom: 55.4 / 785
  22904. }
  22905. },
  22906. },
  22907. [
  22908. {
  22909. name: "Normal",
  22910. height: math.unit(10 + 11 / 12, "feet"),
  22911. default: true
  22912. },
  22913. ]
  22914. ))
  22915. characterMakers.push(() => makeCharacter(
  22916. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22917. {
  22918. front: {
  22919. height: math.unit(5 + 8 / 12, "feet"),
  22920. weight: math.unit(140, "lb"),
  22921. name: "Front",
  22922. image: {
  22923. source: "./media/characters/khemri/front.svg",
  22924. extra: 4780 / 4059,
  22925. bottom: 80.1 / 4859.25
  22926. }
  22927. },
  22928. },
  22929. [
  22930. {
  22931. name: "Micro",
  22932. height: math.unit(6, "inches")
  22933. },
  22934. {
  22935. name: "Normal",
  22936. height: math.unit(5 + 8 / 12, "feet"),
  22937. default: true
  22938. },
  22939. ]
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22943. {
  22944. front: {
  22945. height: math.unit(13, "feet"),
  22946. weight: math.unit(1700, "lb"),
  22947. name: "Front",
  22948. image: {
  22949. source: "./media/characters/felix-braveheart/front.svg",
  22950. extra: 1222 / 1157,
  22951. bottom: 53.2 / 1280
  22952. }
  22953. },
  22954. back: {
  22955. height: math.unit(13, "feet"),
  22956. weight: math.unit(1700, "lb"),
  22957. name: "Back",
  22958. image: {
  22959. source: "./media/characters/felix-braveheart/back.svg",
  22960. extra: 1277 / 1203,
  22961. bottom: 50.2 / 1327
  22962. }
  22963. },
  22964. feral: {
  22965. height: math.unit(6, "feet"),
  22966. weight: math.unit(400, "lb"),
  22967. name: "Feral",
  22968. image: {
  22969. source: "./media/characters/felix-braveheart/feral.svg",
  22970. extra: 682 / 625,
  22971. bottom: 6.9 / 688
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "Normal",
  22978. height: math.unit(13, "feet"),
  22979. default: true
  22980. },
  22981. ]
  22982. ))
  22983. characterMakers.push(() => makeCharacter(
  22984. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22985. {
  22986. side: {
  22987. height: math.unit(5 + 11 / 12, "feet"),
  22988. weight: math.unit(1400, "lb"),
  22989. name: "Side",
  22990. image: {
  22991. source: "./media/characters/shadow-blade/side.svg",
  22992. extra: 1726 / 1267,
  22993. bottom: 58.4 / 1785
  22994. }
  22995. },
  22996. },
  22997. [
  22998. {
  22999. name: "Normal",
  23000. height: math.unit(5 + 11 / 12, "feet"),
  23001. default: true
  23002. },
  23003. ]
  23004. ))
  23005. characterMakers.push(() => makeCharacter(
  23006. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23007. {
  23008. front: {
  23009. height: math.unit(1 + 6 / 12, "feet"),
  23010. weight: math.unit(25, "lb"),
  23011. name: "Front",
  23012. image: {
  23013. source: "./media/characters/karla-halldor/front.svg",
  23014. extra: 1459 / 1383,
  23015. bottom: 12 / 1472
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Normal",
  23022. height: math.unit(1 + 6 / 12, "feet"),
  23023. default: true
  23024. },
  23025. ]
  23026. ))
  23027. characterMakers.push(() => makeCharacter(
  23028. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23029. {
  23030. front: {
  23031. height: math.unit(6 + 2 / 12, "feet"),
  23032. weight: math.unit(160, "lb"),
  23033. name: "Front",
  23034. image: {
  23035. source: "./media/characters/ariam/front.svg",
  23036. extra: 714 / 617,
  23037. bottom: 23.4 / 737,
  23038. }
  23039. },
  23040. squatting: {
  23041. height: math.unit(4.1, "feet"),
  23042. weight: math.unit(160, "lb"),
  23043. name: "Squatting",
  23044. image: {
  23045. source: "./media/characters/ariam/squatting.svg",
  23046. extra: 2617 / 2112,
  23047. bottom: 61.2 / 2681,
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(6 + 2 / 12, "feet"),
  23055. default: true
  23056. },
  23057. {
  23058. name: "Normal+",
  23059. height: math.unit(4, "meters")
  23060. },
  23061. {
  23062. name: "Macro",
  23063. height: math.unit(50, "meters")
  23064. },
  23065. {
  23066. name: "Macro+",
  23067. height: math.unit(100, "meters")
  23068. },
  23069. {
  23070. name: "Megamacro",
  23071. height: math.unit(20, "km")
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23077. {
  23078. front: {
  23079. height: math.unit(1.67, "meters"),
  23080. weight: math.unit(140, "lb"),
  23081. name: "Front",
  23082. image: {
  23083. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23084. extra: 438 / 410,
  23085. bottom: 0.75 / 439
  23086. }
  23087. },
  23088. },
  23089. [
  23090. {
  23091. name: "Shrunken",
  23092. height: math.unit(7.6, "cm")
  23093. },
  23094. {
  23095. name: "Human Scale",
  23096. height: math.unit(1.67, "meters")
  23097. },
  23098. {
  23099. name: "Wolxi Scale",
  23100. height: math.unit(36.7, "meters"),
  23101. default: true
  23102. },
  23103. ]
  23104. ))
  23105. characterMakers.push(() => makeCharacter(
  23106. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23107. {
  23108. front: {
  23109. height: math.unit(1.73, "meters"),
  23110. weight: math.unit(240, "lb"),
  23111. name: "Front",
  23112. image: {
  23113. source: "./media/characters/izue-two-mothers/front.svg",
  23114. extra: 469 / 437,
  23115. bottom: 1.24 / 470.6
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Shrunken",
  23122. height: math.unit(7.86, "cm")
  23123. },
  23124. {
  23125. name: "Human Scale",
  23126. height: math.unit(1.73, "meters")
  23127. },
  23128. {
  23129. name: "Wolxi Scale",
  23130. height: math.unit(38, "meters"),
  23131. default: true
  23132. },
  23133. ]
  23134. ))
  23135. characterMakers.push(() => makeCharacter(
  23136. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23137. {
  23138. front: {
  23139. height: math.unit(1.55, "meters"),
  23140. weight: math.unit(120, "lb"),
  23141. name: "Front",
  23142. image: {
  23143. source: "./media/characters/teeku-love-shack/front.svg",
  23144. extra: 387 / 362,
  23145. bottom: 1.51 / 388
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "Shrunken",
  23152. height: math.unit(7, "cm")
  23153. },
  23154. {
  23155. name: "Human Scale",
  23156. height: math.unit(1.55, "meters")
  23157. },
  23158. {
  23159. name: "Wolxi Scale",
  23160. height: math.unit(34.1, "meters"),
  23161. default: true
  23162. },
  23163. ]
  23164. ))
  23165. characterMakers.push(() => makeCharacter(
  23166. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23167. {
  23168. front: {
  23169. height: math.unit(1.83, "meters"),
  23170. weight: math.unit(135, "lb"),
  23171. name: "Front",
  23172. image: {
  23173. source: "./media/characters/dejma-the-red/front.svg",
  23174. extra: 480 / 458,
  23175. bottom: 1.8 / 482
  23176. }
  23177. },
  23178. },
  23179. [
  23180. {
  23181. name: "Shrunken",
  23182. height: math.unit(8.3, "cm")
  23183. },
  23184. {
  23185. name: "Human Scale",
  23186. height: math.unit(1.83, "meters")
  23187. },
  23188. {
  23189. name: "Wolxi Scale",
  23190. height: math.unit(40, "meters"),
  23191. default: true
  23192. },
  23193. ]
  23194. ))
  23195. characterMakers.push(() => makeCharacter(
  23196. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23197. {
  23198. front: {
  23199. height: math.unit(1.78, "meters"),
  23200. weight: math.unit(65, "kg"),
  23201. name: "Front",
  23202. image: {
  23203. source: "./media/characters/aki/front.svg",
  23204. extra: 452 / 415
  23205. }
  23206. },
  23207. frontNsfw: {
  23208. height: math.unit(1.78, "meters"),
  23209. weight: math.unit(65, "kg"),
  23210. name: "Front (NSFW)",
  23211. image: {
  23212. source: "./media/characters/aki/front-nsfw.svg",
  23213. extra: 452 / 415
  23214. }
  23215. },
  23216. back: {
  23217. height: math.unit(1.78, "meters"),
  23218. weight: math.unit(65, "kg"),
  23219. name: "Back",
  23220. image: {
  23221. source: "./media/characters/aki/back.svg",
  23222. extra: 452 / 415
  23223. }
  23224. },
  23225. rump: {
  23226. height: math.unit(2.05, "feet"),
  23227. name: "Rump",
  23228. image: {
  23229. source: "./media/characters/aki/rump.svg"
  23230. }
  23231. },
  23232. dick: {
  23233. height: math.unit(0.95, "feet"),
  23234. name: "Dick",
  23235. image: {
  23236. source: "./media/characters/aki/dick.svg"
  23237. }
  23238. },
  23239. },
  23240. [
  23241. {
  23242. name: "Micro",
  23243. height: math.unit(15, "cm")
  23244. },
  23245. {
  23246. name: "Normal",
  23247. height: math.unit(178, "cm"),
  23248. default: true
  23249. },
  23250. {
  23251. name: "Macro",
  23252. height: math.unit(214, "m")
  23253. },
  23254. {
  23255. name: "Macro+",
  23256. height: math.unit(534, "m")
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23262. {
  23263. front: {
  23264. height: math.unit(5 + 5 / 12, "feet"),
  23265. weight: math.unit(120, "lb"),
  23266. name: "Front",
  23267. image: {
  23268. source: "./media/characters/ari/front.svg",
  23269. extra: 714.5 / 682,
  23270. bottom: 8 / 722.5
  23271. }
  23272. },
  23273. },
  23274. [
  23275. {
  23276. name: "Normal",
  23277. height: math.unit(5 + 5 / 12, "feet")
  23278. },
  23279. {
  23280. name: "Macro",
  23281. height: math.unit(100, "feet"),
  23282. default: true
  23283. },
  23284. {
  23285. name: "Megamacro",
  23286. height: math.unit(100, "miles")
  23287. },
  23288. {
  23289. name: "Gigamacro",
  23290. height: math.unit(80000, "miles")
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23296. {
  23297. side: {
  23298. height: math.unit(9, "feet"),
  23299. weight: math.unit(400, "kg"),
  23300. name: "Side",
  23301. image: {
  23302. source: "./media/characters/bolt/side.svg",
  23303. extra: 1126 / 896,
  23304. bottom: 60 / 1187.3,
  23305. }
  23306. },
  23307. },
  23308. [
  23309. {
  23310. name: "Micro",
  23311. height: math.unit(5, "inches")
  23312. },
  23313. {
  23314. name: "Normal",
  23315. height: math.unit(9, "feet"),
  23316. default: true
  23317. },
  23318. {
  23319. name: "Macro",
  23320. height: math.unit(700, "feet")
  23321. },
  23322. {
  23323. name: "Max Size",
  23324. height: math.unit(1.52e22, "yottameters")
  23325. },
  23326. ]
  23327. ))
  23328. characterMakers.push(() => makeCharacter(
  23329. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23330. {
  23331. front: {
  23332. height: math.unit(4.53, "meters"),
  23333. weight: math.unit(3, "tons"),
  23334. name: "Front",
  23335. image: {
  23336. source: "./media/characters/draekon-sylviar/front.svg",
  23337. extra: 1228 / 1068,
  23338. bottom: 41 / 1270
  23339. }
  23340. },
  23341. tail: {
  23342. height: math.unit(1.772, "meter"),
  23343. name: "Tail",
  23344. image: {
  23345. source: "./media/characters/draekon-sylviar/tail.svg"
  23346. }
  23347. },
  23348. head: {
  23349. height: math.unit(1.331, "meter"),
  23350. name: "Head",
  23351. image: {
  23352. source: "./media/characters/draekon-sylviar/head.svg"
  23353. }
  23354. },
  23355. hand: {
  23356. height: math.unit(0.564, "meter"),
  23357. name: "Hand",
  23358. image: {
  23359. source: "./media/characters/draekon-sylviar/hand.svg"
  23360. }
  23361. },
  23362. foot: {
  23363. height: math.unit(0.621, "meter"),
  23364. name: "Foot",
  23365. image: {
  23366. source: "./media/characters/draekon-sylviar/foot.svg",
  23367. bottom: 32 / 324
  23368. }
  23369. },
  23370. dick: {
  23371. height: math.unit(61, "cm"),
  23372. name: "Dick",
  23373. image: {
  23374. source: "./media/characters/draekon-sylviar/dick.svg"
  23375. }
  23376. },
  23377. dickseparated: {
  23378. height: math.unit(61, "cm"),
  23379. name: "Dick-separated",
  23380. image: {
  23381. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "Small",
  23388. height: math.unit(4.53 / 2, "meters"),
  23389. default: true
  23390. },
  23391. {
  23392. name: "Normal",
  23393. height: math.unit(4.53, "meters"),
  23394. default: true
  23395. },
  23396. {
  23397. name: "Large",
  23398. height: math.unit(4.53 * 2, "meters"),
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23404. {
  23405. front: {
  23406. height: math.unit(6 + 2 / 12, "feet"),
  23407. weight: math.unit(180, "lb"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/brawler/front.svg",
  23411. extra: 3301 / 3027,
  23412. bottom: 138 / 3439
  23413. }
  23414. },
  23415. },
  23416. [
  23417. {
  23418. name: "Normal",
  23419. height: math.unit(6 + 2 / 12, "feet"),
  23420. default: true
  23421. },
  23422. ]
  23423. ))
  23424. characterMakers.push(() => makeCharacter(
  23425. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23426. {
  23427. front: {
  23428. height: math.unit(11, "feet"),
  23429. weight: math.unit(1000, "lb"),
  23430. name: "Front",
  23431. image: {
  23432. source: "./media/characters/alex/front.svg",
  23433. bottom: 44.5 / 620
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Micro",
  23440. height: math.unit(5, "inches")
  23441. },
  23442. {
  23443. name: "Normal",
  23444. height: math.unit(11, "feet"),
  23445. default: true
  23446. },
  23447. {
  23448. name: "Macro",
  23449. height: math.unit(9.5e9, "feet")
  23450. },
  23451. {
  23452. name: "Max Size",
  23453. height: math.unit(1.4e283, "yottameters")
  23454. },
  23455. ]
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23459. {
  23460. female: {
  23461. height: math.unit(29.9, "m"),
  23462. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23463. name: "Female",
  23464. image: {
  23465. source: "./media/characters/zenari/female.svg",
  23466. extra: 3281.6 / 3217,
  23467. bottom: 72.2 / 3353
  23468. }
  23469. },
  23470. male: {
  23471. height: math.unit(27.7, "m"),
  23472. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23473. name: "Male",
  23474. image: {
  23475. source: "./media/characters/zenari/male.svg",
  23476. extra: 3008 / 2991,
  23477. bottom: 54.6 / 3069
  23478. }
  23479. },
  23480. },
  23481. [
  23482. {
  23483. name: "Macro",
  23484. height: math.unit(29.7, "meters"),
  23485. default: true
  23486. },
  23487. ]
  23488. ))
  23489. characterMakers.push(() => makeCharacter(
  23490. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23491. {
  23492. female: {
  23493. height: math.unit(23.8, "m"),
  23494. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23495. name: "Female",
  23496. image: {
  23497. source: "./media/characters/mactarian/female.svg",
  23498. extra: 2662 / 2569,
  23499. bottom: 73 / 2736
  23500. }
  23501. },
  23502. male: {
  23503. height: math.unit(23.8, "m"),
  23504. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23505. name: "Male",
  23506. image: {
  23507. source: "./media/characters/mactarian/male.svg",
  23508. extra: 2673 / 2600,
  23509. bottom: 76 / 2750
  23510. }
  23511. },
  23512. },
  23513. [
  23514. {
  23515. name: "Macro",
  23516. height: math.unit(23.8, "meters"),
  23517. default: true
  23518. },
  23519. ]
  23520. ))
  23521. characterMakers.push(() => makeCharacter(
  23522. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23523. {
  23524. female: {
  23525. height: math.unit(19.3, "m"),
  23526. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23527. name: "Female",
  23528. image: {
  23529. source: "./media/characters/umok/female.svg",
  23530. extra: 2186 / 2078,
  23531. bottom: 87 / 2277
  23532. }
  23533. },
  23534. male: {
  23535. height: math.unit(19.5, "m"),
  23536. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23537. name: "Male",
  23538. image: {
  23539. source: "./media/characters/umok/male.svg",
  23540. extra: 2233 / 2140,
  23541. bottom: 24.4 / 2258
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Macro",
  23548. height: math.unit(19.3, "meters"),
  23549. default: true
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23555. {
  23556. female: {
  23557. height: math.unit(26.15, "m"),
  23558. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23559. name: "Female",
  23560. image: {
  23561. source: "./media/characters/joraxian/female.svg",
  23562. extra: 2912 / 2824,
  23563. bottom: 36 / 2956
  23564. }
  23565. },
  23566. male: {
  23567. height: math.unit(25.4, "m"),
  23568. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23569. name: "Male",
  23570. image: {
  23571. source: "./media/characters/joraxian/male.svg",
  23572. extra: 2877 / 2721,
  23573. bottom: 82 / 2967
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Macro",
  23580. height: math.unit(26.15, "meters"),
  23581. default: true
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23587. {
  23588. female: {
  23589. height: math.unit(21.6, "m"),
  23590. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23591. name: "Female",
  23592. image: {
  23593. source: "./media/characters/sthara/female.svg",
  23594. extra: 2516 / 2347,
  23595. bottom: 21.5 / 2537
  23596. }
  23597. },
  23598. male: {
  23599. height: math.unit(24, "m"),
  23600. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23601. name: "Male",
  23602. image: {
  23603. source: "./media/characters/sthara/male.svg",
  23604. extra: 2732 / 2607,
  23605. bottom: 23 / 2732
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "Macro",
  23612. height: math.unit(21.6, "meters"),
  23613. default: true
  23614. },
  23615. ]
  23616. ))
  23617. characterMakers.push(() => makeCharacter(
  23618. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23619. {
  23620. front: {
  23621. height: math.unit(6 + 4 / 12, "feet"),
  23622. weight: math.unit(175, "lb"),
  23623. name: "Front",
  23624. image: {
  23625. source: "./media/characters/luka-bryzant/front.svg",
  23626. extra: 311 / 289,
  23627. bottom: 4 / 315
  23628. }
  23629. },
  23630. back: {
  23631. height: math.unit(6 + 4 / 12, "feet"),
  23632. weight: math.unit(175, "lb"),
  23633. name: "Back",
  23634. image: {
  23635. source: "./media/characters/luka-bryzant/back.svg",
  23636. extra: 311 / 289,
  23637. bottom: 3.8 / 313.7
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Micro",
  23644. height: math.unit(10, "inches")
  23645. },
  23646. {
  23647. name: "Normal",
  23648. height: math.unit(6 + 4 / 12, "feet"),
  23649. default: true
  23650. },
  23651. {
  23652. name: "Large",
  23653. height: math.unit(12, "feet")
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23659. {
  23660. front: {
  23661. height: math.unit(5 + 7 / 12, "feet"),
  23662. weight: math.unit(185, "lb"),
  23663. name: "Front",
  23664. image: {
  23665. source: "./media/characters/aman-aquila/front.svg",
  23666. extra: 1013 / 976,
  23667. bottom: 45.6 / 1057
  23668. }
  23669. },
  23670. side: {
  23671. height: math.unit(5 + 7 / 12, "feet"),
  23672. weight: math.unit(185, "lb"),
  23673. name: "Side",
  23674. image: {
  23675. source: "./media/characters/aman-aquila/side.svg",
  23676. extra: 1054 / 1011,
  23677. bottom: 15 / 1070
  23678. }
  23679. },
  23680. back: {
  23681. height: math.unit(5 + 7 / 12, "feet"),
  23682. weight: math.unit(185, "lb"),
  23683. name: "Back",
  23684. image: {
  23685. source: "./media/characters/aman-aquila/back.svg",
  23686. extra: 1026 / 970,
  23687. bottom: 12 / 1039
  23688. }
  23689. },
  23690. head: {
  23691. height: math.unit(1.211, "feet"),
  23692. name: "Head",
  23693. image: {
  23694. source: "./media/characters/aman-aquila/head.svg",
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Minimicro",
  23701. height: math.unit(0.057, "inches")
  23702. },
  23703. {
  23704. name: "Micro",
  23705. height: math.unit(7, "inches")
  23706. },
  23707. {
  23708. name: "Mini",
  23709. height: math.unit(3 + 7 / 12, "feet")
  23710. },
  23711. {
  23712. name: "Normal",
  23713. height: math.unit(5 + 7 / 12, "feet"),
  23714. default: true
  23715. },
  23716. {
  23717. name: "Macro",
  23718. height: math.unit(157 + 7 / 12, "feet")
  23719. },
  23720. {
  23721. name: "Megamacro",
  23722. height: math.unit(1557 + 7 / 12, "feet")
  23723. },
  23724. {
  23725. name: "Gigamacro",
  23726. height: math.unit(15557 + 7 / 12, "feet")
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23732. {
  23733. front: {
  23734. height: math.unit(3 + 2 / 12, "inches"),
  23735. weight: math.unit(0.3, "ounces"),
  23736. name: "Front",
  23737. image: {
  23738. source: "./media/characters/hiphae/front.svg",
  23739. extra: 1931 / 1683,
  23740. bottom: 24 / 1955
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Normal",
  23747. height: math.unit(3 + 1 / 2, "inches"),
  23748. default: true
  23749. },
  23750. ]
  23751. ))
  23752. characterMakers.push(() => makeCharacter(
  23753. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23754. {
  23755. front: {
  23756. height: math.unit(5 + 10 / 12, "feet"),
  23757. weight: math.unit(165, "lb"),
  23758. name: "Front",
  23759. image: {
  23760. source: "./media/characters/nicky/front.svg",
  23761. extra: 3144 / 2886,
  23762. bottom: 45.6 / 3192
  23763. }
  23764. },
  23765. back: {
  23766. height: math.unit(5 + 10 / 12, "feet"),
  23767. weight: math.unit(165, "lb"),
  23768. name: "Back",
  23769. image: {
  23770. source: "./media/characters/nicky/back.svg",
  23771. extra: 3055 / 2804,
  23772. bottom: 28.4 / 3087
  23773. }
  23774. },
  23775. frontclothed: {
  23776. height: math.unit(5 + 10 / 12, "feet"),
  23777. weight: math.unit(165, "lb"),
  23778. name: "Front-clothed",
  23779. image: {
  23780. source: "./media/characters/nicky/front-clothed.svg",
  23781. extra: 3184.9 / 2926.9,
  23782. bottom: 86.5 / 3239.9
  23783. }
  23784. },
  23785. foot: {
  23786. height: math.unit(1.16, "feet"),
  23787. name: "Foot",
  23788. image: {
  23789. source: "./media/characters/nicky/foot.svg"
  23790. }
  23791. },
  23792. feet: {
  23793. height: math.unit(1.34, "feet"),
  23794. name: "Feet",
  23795. image: {
  23796. source: "./media/characters/nicky/feet.svg"
  23797. }
  23798. },
  23799. maw: {
  23800. height: math.unit(0.9, "feet"),
  23801. name: "Maw",
  23802. image: {
  23803. source: "./media/characters/nicky/maw.svg"
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Normal",
  23810. height: math.unit(5 + 10 / 12, "feet"),
  23811. default: true
  23812. },
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(60, "feet")
  23816. },
  23817. {
  23818. name: "Megamacro",
  23819. height: math.unit(1, "mile")
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23825. {
  23826. side: {
  23827. height: math.unit(10, "feet"),
  23828. weight: math.unit(600, "lb"),
  23829. name: "Side",
  23830. image: {
  23831. source: "./media/characters/blair/side.svg",
  23832. bottom: 16.6 / 475,
  23833. extra: 458 / 431
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Micro",
  23840. height: math.unit(8, "inches")
  23841. },
  23842. {
  23843. name: "Normal",
  23844. height: math.unit(10, "feet"),
  23845. default: true
  23846. },
  23847. {
  23848. name: "Macro",
  23849. height: math.unit(180, "feet")
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23855. {
  23856. front: {
  23857. height: math.unit(5 + 4 / 12, "feet"),
  23858. weight: math.unit(125, "lb"),
  23859. name: "Front",
  23860. image: {
  23861. source: "./media/characters/fisher/front.svg",
  23862. extra: 444 / 390,
  23863. bottom: 2 / 444.8
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Micro",
  23870. height: math.unit(4, "inches")
  23871. },
  23872. {
  23873. name: "Normal",
  23874. height: math.unit(5 + 4 / 12, "feet"),
  23875. default: true
  23876. },
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(100, "feet")
  23880. },
  23881. ]
  23882. ))
  23883. characterMakers.push(() => makeCharacter(
  23884. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23885. {
  23886. front: {
  23887. height: math.unit(6.71, "feet"),
  23888. weight: math.unit(200, "lb"),
  23889. capacity: math.unit(1000000, "people"),
  23890. name: "Front",
  23891. image: {
  23892. source: "./media/characters/gliss/front.svg",
  23893. extra: 2347 / 2231,
  23894. bottom: 113 / 2462
  23895. }
  23896. },
  23897. hammerspaceSize: {
  23898. height: math.unit(6.71 * 717, "feet"),
  23899. weight: math.unit(200, "lb"),
  23900. capacity: math.unit(1000000, "people"),
  23901. name: "Hammerspace Size",
  23902. image: {
  23903. source: "./media/characters/gliss/front.svg",
  23904. extra: 2347 / 2231,
  23905. bottom: 113 / 2462
  23906. }
  23907. },
  23908. },
  23909. [
  23910. {
  23911. name: "Normal",
  23912. height: math.unit(6.71, "feet"),
  23913. default: true
  23914. },
  23915. ]
  23916. ))
  23917. characterMakers.push(() => makeCharacter(
  23918. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23919. {
  23920. side: {
  23921. height: math.unit(1.44, "m"),
  23922. weight: math.unit(80, "kg"),
  23923. name: "Side",
  23924. image: {
  23925. source: "./media/characters/dune-anderson/side.svg",
  23926. bottom: 49 / 1426
  23927. }
  23928. },
  23929. },
  23930. [
  23931. {
  23932. name: "Wolf-sized",
  23933. height: math.unit(1.44, "meters")
  23934. },
  23935. {
  23936. name: "Normal",
  23937. height: math.unit(5.05, "meters"),
  23938. default: true
  23939. },
  23940. {
  23941. name: "Big",
  23942. height: math.unit(14.4, "meters")
  23943. },
  23944. {
  23945. name: "Huge",
  23946. height: math.unit(144, "meters")
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23952. {
  23953. front: {
  23954. height: math.unit(7, "feet"),
  23955. weight: math.unit(425, "lb"),
  23956. name: "Front",
  23957. image: {
  23958. source: "./media/characters/hind/front.svg",
  23959. extra: 2091 / 1860,
  23960. bottom: 129 / 2220
  23961. }
  23962. },
  23963. back: {
  23964. height: math.unit(7, "feet"),
  23965. weight: math.unit(425, "lb"),
  23966. name: "Back",
  23967. image: {
  23968. source: "./media/characters/hind/back.svg",
  23969. extra: 2091 / 1860,
  23970. bottom: 24.6 / 2309
  23971. }
  23972. },
  23973. tail: {
  23974. height: math.unit(2.8, "feet"),
  23975. name: "Tail",
  23976. image: {
  23977. source: "./media/characters/hind/tail.svg"
  23978. }
  23979. },
  23980. head: {
  23981. height: math.unit(2.55, "feet"),
  23982. name: "Head",
  23983. image: {
  23984. source: "./media/characters/hind/head.svg"
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "XS",
  23991. height: math.unit(0.7, "feet")
  23992. },
  23993. {
  23994. name: "Normal",
  23995. height: math.unit(7, "feet"),
  23996. default: true
  23997. },
  23998. {
  23999. name: "XL",
  24000. height: math.unit(70, "feet")
  24001. },
  24002. ]
  24003. ))
  24004. characterMakers.push(() => makeCharacter(
  24005. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24006. {
  24007. front: {
  24008. height: math.unit(6, "feet"),
  24009. weight: math.unit(150, "lb"),
  24010. name: "Front",
  24011. image: {
  24012. source: "./media/characters/dylan-skaven/front.svg",
  24013. extra: 2318 / 2063,
  24014. bottom: 93.4 / 2410
  24015. }
  24016. },
  24017. },
  24018. [
  24019. {
  24020. name: "Nano",
  24021. height: math.unit(1, "mm")
  24022. },
  24023. {
  24024. name: "Micro",
  24025. height: math.unit(1, "cm")
  24026. },
  24027. {
  24028. name: "Normal",
  24029. height: math.unit(2.1, "meters"),
  24030. default: true
  24031. },
  24032. ]
  24033. ))
  24034. characterMakers.push(() => makeCharacter(
  24035. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24036. {
  24037. front: {
  24038. height: math.unit(7 + 5 / 12, "feet"),
  24039. weight: math.unit(357, "lb"),
  24040. name: "Front",
  24041. image: {
  24042. source: "./media/characters/solex-draconov/front.svg",
  24043. extra: 1993 / 1865,
  24044. bottom: 117 / 2111
  24045. }
  24046. },
  24047. },
  24048. [
  24049. {
  24050. name: "Natural Height",
  24051. height: math.unit(7 + 5 / 12, "feet"),
  24052. default: true
  24053. },
  24054. {
  24055. name: "Macro",
  24056. height: math.unit(350, "feet")
  24057. },
  24058. {
  24059. name: "Macro+",
  24060. height: math.unit(1000, "feet")
  24061. },
  24062. {
  24063. name: "Megamacro",
  24064. height: math.unit(20, "km")
  24065. },
  24066. {
  24067. name: "Megamacro+",
  24068. height: math.unit(1000, "km")
  24069. },
  24070. {
  24071. name: "Gigamacro",
  24072. height: math.unit(2.5, "Gm")
  24073. },
  24074. {
  24075. name: "Teramacro",
  24076. height: math.unit(15, "Tm")
  24077. },
  24078. {
  24079. name: "Galactic",
  24080. height: math.unit(30, "Zm")
  24081. },
  24082. {
  24083. name: "Universal",
  24084. height: math.unit(21000, "Ym")
  24085. },
  24086. {
  24087. name: "Omniversal",
  24088. height: math.unit(9.861e50, "Ym")
  24089. },
  24090. {
  24091. name: "Existential",
  24092. height: math.unit(1e300, "meters")
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24098. {
  24099. side: {
  24100. height: math.unit(25, "feet"),
  24101. weight: math.unit(90000, "lb"),
  24102. name: "Side",
  24103. image: {
  24104. source: "./media/characters/mandarax/side.svg",
  24105. extra: 614 / 332,
  24106. bottom: 55 / 630
  24107. }
  24108. },
  24109. head: {
  24110. height: math.unit(11.4, "feet"),
  24111. name: "Head",
  24112. image: {
  24113. source: "./media/characters/mandarax/head.svg"
  24114. }
  24115. },
  24116. belly: {
  24117. height: math.unit(33, "feet"),
  24118. name: "Belly",
  24119. capacity: math.unit(500, "people"),
  24120. image: {
  24121. source: "./media/characters/mandarax/belly.svg"
  24122. }
  24123. },
  24124. dick: {
  24125. height: math.unit(8.46, "feet"),
  24126. name: "Dick",
  24127. image: {
  24128. source: "./media/characters/mandarax/dick.svg"
  24129. }
  24130. },
  24131. top: {
  24132. height: math.unit(28, "meters"),
  24133. name: "Top",
  24134. image: {
  24135. source: "./media/characters/mandarax/top.svg"
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Normal",
  24142. height: math.unit(25, "feet"),
  24143. default: true
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24149. {
  24150. front: {
  24151. height: math.unit(5, "feet"),
  24152. weight: math.unit(90, "lb"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/pixil/front.svg",
  24156. extra: 2000 / 1618,
  24157. bottom: 12.3 / 2011
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(5, "feet"),
  24165. default: true
  24166. },
  24167. {
  24168. name: "Megamacro",
  24169. height: math.unit(10, "miles"),
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24175. {
  24176. front: {
  24177. height: math.unit(7 + 2 / 12, "feet"),
  24178. weight: math.unit(200, "lb"),
  24179. name: "Front",
  24180. image: {
  24181. source: "./media/characters/angel/front.svg",
  24182. extra: 1830 / 1737,
  24183. bottom: 22.6 / 1854,
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Normal",
  24190. height: math.unit(7 + 2 / 12, "feet"),
  24191. default: true
  24192. },
  24193. {
  24194. name: "Macro",
  24195. height: math.unit(1000, "feet")
  24196. },
  24197. {
  24198. name: "Megamacro",
  24199. height: math.unit(2, "miles")
  24200. },
  24201. {
  24202. name: "Gigamacro",
  24203. height: math.unit(20, "earths")
  24204. },
  24205. ]
  24206. ))
  24207. characterMakers.push(() => makeCharacter(
  24208. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24209. {
  24210. front: {
  24211. height: math.unit(5, "feet"),
  24212. weight: math.unit(180, "lb"),
  24213. name: "Front",
  24214. image: {
  24215. source: "./media/characters/mekana/front.svg",
  24216. extra: 1671 / 1605,
  24217. bottom: 3.5 / 1691
  24218. }
  24219. },
  24220. side: {
  24221. height: math.unit(5, "feet"),
  24222. weight: math.unit(180, "lb"),
  24223. name: "Side",
  24224. image: {
  24225. source: "./media/characters/mekana/side.svg",
  24226. extra: 1671 / 1605,
  24227. bottom: 3.5 / 1691
  24228. }
  24229. },
  24230. back: {
  24231. height: math.unit(5, "feet"),
  24232. weight: math.unit(180, "lb"),
  24233. name: "Back",
  24234. image: {
  24235. source: "./media/characters/mekana/back.svg",
  24236. extra: 1671 / 1605,
  24237. bottom: 3.5 / 1691
  24238. }
  24239. },
  24240. },
  24241. [
  24242. {
  24243. name: "Normal",
  24244. height: math.unit(5, "feet"),
  24245. default: true
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24251. {
  24252. front: {
  24253. height: math.unit(4 + 6 / 12, "feet"),
  24254. weight: math.unit(80, "lb"),
  24255. name: "Front",
  24256. image: {
  24257. source: "./media/characters/pixie/front.svg",
  24258. extra: 1924 / 1825,
  24259. bottom: 22.4 / 1946
  24260. }
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "Normal",
  24266. height: math.unit(4 + 6 / 12, "feet"),
  24267. default: true
  24268. },
  24269. {
  24270. name: "Macro",
  24271. height: math.unit(40, "feet")
  24272. },
  24273. ]
  24274. ))
  24275. characterMakers.push(() => makeCharacter(
  24276. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24277. {
  24278. front: {
  24279. height: math.unit(2.1, "meters"),
  24280. weight: math.unit(200, "lb"),
  24281. name: "Front",
  24282. image: {
  24283. source: "./media/characters/the-lascivious/front.svg",
  24284. extra: 1 / 0.893,
  24285. bottom: 3.5 / 573.7
  24286. }
  24287. },
  24288. },
  24289. [
  24290. {
  24291. name: "Human Scale",
  24292. height: math.unit(2.1, "meters")
  24293. },
  24294. {
  24295. name: "Wolxi Scale",
  24296. height: math.unit(46.2, "m"),
  24297. default: true
  24298. },
  24299. {
  24300. name: "Boinker of Buildings",
  24301. height: math.unit(10, "km")
  24302. },
  24303. {
  24304. name: "Shagger of Skyscrapers",
  24305. height: math.unit(40, "km")
  24306. },
  24307. {
  24308. name: "Banger of Boroughs",
  24309. height: math.unit(4000, "km")
  24310. },
  24311. {
  24312. name: "Screwer of States",
  24313. height: math.unit(100000, "km")
  24314. },
  24315. {
  24316. name: "Pounder of Planets",
  24317. height: math.unit(2000000, "km")
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24323. {
  24324. front: {
  24325. height: math.unit(6, "feet"),
  24326. weight: math.unit(150, "lb"),
  24327. name: "Front",
  24328. image: {
  24329. source: "./media/characters/aj/front.svg",
  24330. extra: 2039 / 1562,
  24331. bottom: 40 / 2079
  24332. }
  24333. },
  24334. },
  24335. [
  24336. {
  24337. name: "Normal",
  24338. height: math.unit(11 + 6 / 12, "feet"),
  24339. default: true
  24340. },
  24341. {
  24342. name: "Megamacro",
  24343. height: math.unit(60, "megameters")
  24344. },
  24345. ]
  24346. ))
  24347. characterMakers.push(() => makeCharacter(
  24348. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24349. {
  24350. side: {
  24351. height: math.unit(31 + 8/12, "feet"),
  24352. weight: math.unit(75000, "kg"),
  24353. name: "Side",
  24354. image: {
  24355. source: "./media/characters/koros/side.svg",
  24356. extra: 1442/1297,
  24357. bottom: 122.7/1562
  24358. }
  24359. },
  24360. dicksKingsCrown: {
  24361. height: math.unit(6, "feet"),
  24362. name: "Dicks (King's Crown)",
  24363. image: {
  24364. source: "./media/characters/koros/dicks-kings-crown.svg"
  24365. }
  24366. },
  24367. dicksTailSet: {
  24368. height: math.unit(3, "feet"),
  24369. name: "Dicks (Tail Set)",
  24370. image: {
  24371. source: "./media/characters/koros/dicks-tail-set.svg"
  24372. }
  24373. },
  24374. dickCumming: {
  24375. height: math.unit(7.98, "feet"),
  24376. name: "Dick (Cumming)",
  24377. image: {
  24378. source: "./media/characters/koros/dick-cumming.svg"
  24379. }
  24380. },
  24381. dicksBack: {
  24382. height: math.unit(5.9, "feet"),
  24383. name: "Dicks (Back)",
  24384. image: {
  24385. source: "./media/characters/koros/dicks-back.svg"
  24386. }
  24387. },
  24388. dicksFront: {
  24389. height: math.unit(3.72, "feet"),
  24390. name: "Dicks (Front)",
  24391. image: {
  24392. source: "./media/characters/koros/dicks-front.svg"
  24393. }
  24394. },
  24395. dicksPeeking: {
  24396. height: math.unit(3.0, "feet"),
  24397. name: "Dicks (Peeking)",
  24398. image: {
  24399. source: "./media/characters/koros/dicks-peeking.svg"
  24400. }
  24401. },
  24402. eye: {
  24403. height: math.unit(1.7, "feet"),
  24404. name: "Eye",
  24405. image: {
  24406. source: "./media/characters/koros/eye.svg"
  24407. }
  24408. },
  24409. headFront: {
  24410. height: math.unit(11.69, "feet"),
  24411. name: "Head (Front)",
  24412. image: {
  24413. source: "./media/characters/koros/head-front.svg"
  24414. }
  24415. },
  24416. headSide: {
  24417. height: math.unit(14, "feet"),
  24418. name: "Head (Side)",
  24419. image: {
  24420. source: "./media/characters/koros/head-side.svg"
  24421. }
  24422. },
  24423. leg: {
  24424. height: math.unit(17, "feet"),
  24425. name: "Leg",
  24426. image: {
  24427. source: "./media/characters/koros/leg.svg"
  24428. }
  24429. },
  24430. mawSide: {
  24431. height: math.unit(12.8, "feet"),
  24432. name: "Maw (Side)",
  24433. image: {
  24434. source: "./media/characters/koros/maw-side.svg"
  24435. }
  24436. },
  24437. mawSpitting: {
  24438. height: math.unit(17, "feet"),
  24439. name: "Maw (Spitting)",
  24440. image: {
  24441. source: "./media/characters/koros/maw-spitting.svg"
  24442. }
  24443. },
  24444. slit: {
  24445. height: math.unit(2.8, "feet"),
  24446. name: "Slit",
  24447. image: {
  24448. source: "./media/characters/koros/slit.svg"
  24449. }
  24450. },
  24451. stomach: {
  24452. height: math.unit(6.8, "feet"),
  24453. capacity: math.unit(20, "people"),
  24454. name: "Stomach",
  24455. image: {
  24456. source: "./media/characters/koros/stomach.svg"
  24457. }
  24458. },
  24459. wingspanBottom: {
  24460. height: math.unit(114, "feet"),
  24461. name: "Wingspan (Bottom)",
  24462. image: {
  24463. source: "./media/characters/koros/wingspan-bottom.svg"
  24464. }
  24465. },
  24466. wingspanTop: {
  24467. height: math.unit(104, "feet"),
  24468. name: "Wingspan (Top)",
  24469. image: {
  24470. source: "./media/characters/koros/wingspan-top.svg"
  24471. }
  24472. },
  24473. },
  24474. [
  24475. {
  24476. name: "Normal",
  24477. height: math.unit(31 + 8/12, "feet"),
  24478. default: true
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(18 + 5/12, "feet"),
  24487. weight: math.unit(3750, "kg"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/vexx/front.svg",
  24491. extra: 426/396,
  24492. bottom: 31.5/458
  24493. }
  24494. },
  24495. maw: {
  24496. height: math.unit(6, "feet"),
  24497. name: "Maw",
  24498. image: {
  24499. source: "./media/characters/vexx/maw.svg"
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(18 + 5/12, "feet"),
  24507. default: true
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24513. {
  24514. front: {
  24515. height: math.unit(17 + 6/12, "feet"),
  24516. weight: math.unit(150, "lb"),
  24517. name: "Front",
  24518. image: {
  24519. source: "./media/characters/baadra/front.svg",
  24520. extra: 3137/2890,
  24521. bottom: 168.4/3305
  24522. }
  24523. },
  24524. back: {
  24525. height: math.unit(17 + 6/12, "feet"),
  24526. weight: math.unit(150, "lb"),
  24527. name: "Back",
  24528. image: {
  24529. source: "./media/characters/baadra/back.svg",
  24530. extra: 3142/2890,
  24531. bottom: 220/3371
  24532. }
  24533. },
  24534. head: {
  24535. height: math.unit(5.45, "feet"),
  24536. name: "Head",
  24537. image: {
  24538. source: "./media/characters/baadra/head.svg"
  24539. }
  24540. },
  24541. headAngry: {
  24542. height: math.unit(4.95, "feet"),
  24543. name: "Head (Angry)",
  24544. image: {
  24545. source: "./media/characters/baadra/head-angry.svg"
  24546. }
  24547. },
  24548. headOpen: {
  24549. height: math.unit(6, "feet"),
  24550. name: "Head (Open)",
  24551. image: {
  24552. source: "./media/characters/baadra/head-open.svg"
  24553. }
  24554. },
  24555. },
  24556. [
  24557. {
  24558. name: "Normal",
  24559. height: math.unit(17 + 6/12, "feet"),
  24560. default: true
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24566. {
  24567. front: {
  24568. height: math.unit(7 + 3/12, "feet"),
  24569. weight: math.unit(180, "lb"),
  24570. name: "Front",
  24571. image: {
  24572. source: "./media/characters/juri/front.svg",
  24573. extra: 1401/1237,
  24574. bottom: 18.5/1418
  24575. }
  24576. },
  24577. side: {
  24578. height: math.unit(7 + 3/12, "feet"),
  24579. weight: math.unit(180, "lb"),
  24580. name: "Side",
  24581. image: {
  24582. source: "./media/characters/juri/side.svg",
  24583. extra: 1424/1242,
  24584. bottom: 18.5/1447
  24585. }
  24586. },
  24587. sitting: {
  24588. height: math.unit(6, "feet"),
  24589. weight: math.unit(180, "lb"),
  24590. name: "Sitting",
  24591. image: {
  24592. source: "./media/characters/juri/sitting.svg",
  24593. extra: 1270/1143,
  24594. bottom: 100/1343
  24595. }
  24596. },
  24597. back: {
  24598. height: math.unit(7 + 3/12, "feet"),
  24599. weight: math.unit(180, "lb"),
  24600. name: "Back",
  24601. image: {
  24602. source: "./media/characters/juri/back.svg",
  24603. extra: 1377/1240,
  24604. bottom: 23.7/1405
  24605. }
  24606. },
  24607. maw: {
  24608. height: math.unit(2.8, "feet"),
  24609. name: "Maw",
  24610. image: {
  24611. source: "./media/characters/juri/maw.svg"
  24612. }
  24613. },
  24614. stomach: {
  24615. height: math.unit(0.89, "feet"),
  24616. capacity: math.unit(4, "liters"),
  24617. name: "Stomach",
  24618. image: {
  24619. source: "./media/characters/juri/stomach.svg"
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(7 + 3/12, "feet"),
  24627. default: true
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24633. {
  24634. fox: {
  24635. height: math.unit(5 + 6/12, "feet"),
  24636. weight: math.unit(140, "lb"),
  24637. name: "Fox",
  24638. image: {
  24639. source: "./media/characters/maxene-sita/fox.svg",
  24640. extra: 146/138,
  24641. bottom: 2.1/148.19
  24642. }
  24643. },
  24644. kitsune: {
  24645. height: math.unit(10, "feet"),
  24646. weight: math.unit(800, "lb"),
  24647. name: "Kitsune",
  24648. image: {
  24649. source: "./media/characters/maxene-sita/kitsune.svg",
  24650. extra: 185/176,
  24651. bottom: 4.7/189.9
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Normal",
  24658. height: math.unit(5 + 6/12, "feet"),
  24659. default: true
  24660. },
  24661. ]
  24662. ))
  24663. characterMakers.push(() => makeCharacter(
  24664. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24665. {
  24666. front: {
  24667. height: math.unit(3 + 4/12, "feet"),
  24668. weight: math.unit(70, "lb"),
  24669. name: "Front",
  24670. image: {
  24671. source: "./media/characters/maia/front.svg",
  24672. extra: 227/219.5,
  24673. bottom: 40 / 267
  24674. }
  24675. },
  24676. back: {
  24677. height: math.unit(3 + 4/12, "feet"),
  24678. weight: math.unit(70, "lb"),
  24679. name: "Back",
  24680. image: {
  24681. source: "./media/characters/maia/back.svg",
  24682. extra: 237/225
  24683. }
  24684. },
  24685. },
  24686. [
  24687. {
  24688. name: "Normal",
  24689. height: math.unit(3 + 4/12, "feet"),
  24690. default: true
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24696. {
  24697. front: {
  24698. height: math.unit(5 + 10/12, "feet"),
  24699. weight: math.unit(197, "lb"),
  24700. name: "Front",
  24701. image: {
  24702. source: "./media/characters/jabaro/front.svg",
  24703. extra: 225/216,
  24704. bottom: 5.06/230
  24705. }
  24706. },
  24707. back: {
  24708. height: math.unit(5 + 10/12, "feet"),
  24709. weight: math.unit(197, "lb"),
  24710. name: "Back",
  24711. image: {
  24712. source: "./media/characters/jabaro/back.svg",
  24713. extra: 225/219,
  24714. bottom: 1.9/227
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Normal",
  24721. height: math.unit(5 + 10/12, "feet"),
  24722. default: true
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(5 + 8/12, "feet"),
  24731. weight: math.unit(139, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/risa/front.svg",
  24735. extra: 270/260,
  24736. bottom: 11.2/282
  24737. }
  24738. },
  24739. back: {
  24740. height: math.unit(5 + 8/12, "feet"),
  24741. weight: math.unit(139, "lb"),
  24742. name: "Back",
  24743. image: {
  24744. source: "./media/characters/risa/back.svg",
  24745. extra: 264/255,
  24746. bottom: 4/268
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(5 + 8/12, "feet"),
  24754. default: true
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24760. {
  24761. front: {
  24762. height: math.unit(2 + 11/12, "feet"),
  24763. weight: math.unit(30, "lb"),
  24764. name: "Front",
  24765. image: {
  24766. source: "./media/characters/weatley/front.svg",
  24767. bottom: 10.7/414,
  24768. extra: 403.5/362
  24769. }
  24770. },
  24771. back: {
  24772. height: math.unit(2 + 11/12, "feet"),
  24773. weight: math.unit(30, "lb"),
  24774. name: "Back",
  24775. image: {
  24776. source: "./media/characters/weatley/back.svg",
  24777. bottom: 10.7/414,
  24778. extra: 403.5/362
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(2 + 11/12, "feet"),
  24786. default: true
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(5 + 2/12, "feet"),
  24795. weight: math.unit(50, "kg"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/mercury-crescent/front.svg",
  24799. extra: 1088/1033,
  24800. bottom: 18.9/1109
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Normal",
  24807. height: math.unit(5 + 2/12, "feet"),
  24808. default: true
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(2, "feet"),
  24817. weight: math.unit(15, "kg"),
  24818. name: "Front",
  24819. image: {
  24820. source: "./media/characters/diamond-jones/front.svg",
  24821. bottom: 16/568
  24822. }
  24823. },
  24824. },
  24825. [
  24826. {
  24827. name: "Normal",
  24828. height: math.unit(2, "feet"),
  24829. default: true
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(3, "feet"),
  24838. weight: math.unit(30, "kg"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/sweet-bit/front.svg",
  24842. extra: 675/567,
  24843. bottom: 27.7/703
  24844. }
  24845. },
  24846. },
  24847. [
  24848. {
  24849. name: "Normal",
  24850. height: math.unit(3, "feet"),
  24851. default: true
  24852. },
  24853. ]
  24854. ))
  24855. characterMakers.push(() => makeCharacter(
  24856. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24857. {
  24858. side: {
  24859. height: math.unit(9.178, "feet"),
  24860. weight: math.unit(500, "lb"),
  24861. name: "Side",
  24862. image: {
  24863. source: "./media/characters/umbrazen/side.svg",
  24864. extra: 1730/1473,
  24865. bottom: 34.6/1765
  24866. }
  24867. },
  24868. },
  24869. [
  24870. {
  24871. name: "Normal",
  24872. height: math.unit(9.178, "feet"),
  24873. default: true
  24874. },
  24875. ]
  24876. ))
  24877. characterMakers.push(() => makeCharacter(
  24878. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24879. {
  24880. front: {
  24881. height: math.unit(10, "feet"),
  24882. weight: math.unit(750, "lb"),
  24883. name: "Front",
  24884. image: {
  24885. source: "./media/characters/arlist/front.svg",
  24886. extra: 961/778,
  24887. bottom: 6.2/986
  24888. }
  24889. },
  24890. },
  24891. [
  24892. {
  24893. name: "Normal",
  24894. height: math.unit(10, "feet"),
  24895. default: true
  24896. },
  24897. ]
  24898. ))
  24899. characterMakers.push(() => makeCharacter(
  24900. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24901. {
  24902. front: {
  24903. height: math.unit(5 + 1/12, "feet"),
  24904. weight: math.unit(110, "lb"),
  24905. name: "Front",
  24906. image: {
  24907. source: "./media/characters/aradel/front.svg",
  24908. extra: 324/303,
  24909. bottom: 3.6/329.4
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Normal",
  24916. height: math.unit(5 + 1/12, "feet"),
  24917. default: true
  24918. },
  24919. ]
  24920. ))
  24921. characterMakers.push(() => makeCharacter(
  24922. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24923. {
  24924. front: {
  24925. height: math.unit(3 + 8/12, "feet"),
  24926. weight: math.unit(50, "lb"),
  24927. name: "Front",
  24928. image: {
  24929. source: "./media/characters/serryn/front.svg",
  24930. extra: 1792/1656,
  24931. bottom: 43.5/1840
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(3 + 8/12, "feet"),
  24939. default: true
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Xavier Thyme" },
  24945. {
  24946. front: {
  24947. height: math.unit(7 + 10/12, "feet"),
  24948. weight: math.unit(255, "lb"),
  24949. name: "Front",
  24950. image: {
  24951. source: "./media/characters/xavier-thyme/front.svg",
  24952. extra: 3733/3642,
  24953. bottom: 131/3869
  24954. }
  24955. },
  24956. frontRaven: {
  24957. height: math.unit(7 + 10/12, "feet"),
  24958. weight: math.unit(255, "lb"),
  24959. name: "Front (Raven)",
  24960. image: {
  24961. source: "./media/characters/xavier-thyme/front-raven.svg",
  24962. extra: 4385/3642,
  24963. bottom: 131/4517
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Normal",
  24970. height: math.unit(7 + 10/12, "feet"),
  24971. default: true
  24972. },
  24973. ]
  24974. ))
  24975. characterMakers.push(() => makeCharacter(
  24976. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24977. {
  24978. front: {
  24979. height: math.unit(1.6, "m"),
  24980. weight: math.unit(50, "kg"),
  24981. name: "Front",
  24982. image: {
  24983. source: "./media/characters/kiki/front.svg",
  24984. extra: 4682/3610,
  24985. bottom: 115/4777
  24986. }
  24987. },
  24988. },
  24989. [
  24990. {
  24991. name: "Normal",
  24992. height: math.unit(1.6, "meters"),
  24993. default: true
  24994. },
  24995. ]
  24996. ))
  24997. characterMakers.push(() => makeCharacter(
  24998. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24999. {
  25000. front: {
  25001. height: math.unit(50, "m"),
  25002. weight: math.unit(500, "tonnes"),
  25003. name: "Front",
  25004. image: {
  25005. source: "./media/characters/ryoko/front.svg",
  25006. extra: 4632/3926,
  25007. bottom: 193/4823
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Normal",
  25014. height: math.unit(50, "meters"),
  25015. default: true
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25021. {
  25022. front: {
  25023. height: math.unit(30, "m"),
  25024. weight: math.unit(22, "tonnes"),
  25025. name: "Front",
  25026. image: {
  25027. source: "./media/characters/elio/front.svg",
  25028. extra: 4582/3720,
  25029. bottom: 236/4828
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Normal",
  25036. height: math.unit(30, "meters"),
  25037. default: true
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(6 + 3/12, "feet"),
  25046. weight: math.unit(120, "lb"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/azura/front.svg",
  25050. extra: 1149/1135,
  25051. bottom: 45/1194
  25052. }
  25053. },
  25054. frontClothed: {
  25055. height: math.unit(6 + 3/12, "feet"),
  25056. weight: math.unit(120, "lb"),
  25057. name: "Front (Clothed)",
  25058. image: {
  25059. source: "./media/characters/azura/front-clothed.svg",
  25060. extra: 1149/1135,
  25061. bottom: 45/1194
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Normal",
  25068. height: math.unit(6 + 3/12, "feet"),
  25069. default: true
  25070. },
  25071. {
  25072. name: "Macro",
  25073. height: math.unit(20 + 6/12, "feet")
  25074. },
  25075. {
  25076. name: "Megamacro",
  25077. height: math.unit(12, "miles")
  25078. },
  25079. {
  25080. name: "Gigamacro",
  25081. height: math.unit(10000, "miles")
  25082. },
  25083. {
  25084. name: "Teramacro",
  25085. height: math.unit(900000, "miles")
  25086. },
  25087. ]
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25091. {
  25092. front: {
  25093. height: math.unit(12, "feet"),
  25094. weight: math.unit(1, "ton"),
  25095. capacity: math.unit(660000, "gallons"),
  25096. name: "Front",
  25097. image: {
  25098. source: "./media/characters/zeus/front.svg",
  25099. extra: 5005/4717,
  25100. bottom: 363/5388
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Normal",
  25107. height: math.unit(12, "feet")
  25108. },
  25109. {
  25110. name: "Preferred Size",
  25111. height: math.unit(0.5, "miles"),
  25112. default: true
  25113. },
  25114. {
  25115. name: "Giga Horse",
  25116. height: math.unit(300, "miles")
  25117. },
  25118. {
  25119. name: "Riding Planets",
  25120. height: math.unit(30, "megameters")
  25121. },
  25122. {
  25123. name: "Cosmic Giant",
  25124. height: math.unit(3, "zettameters")
  25125. },
  25126. {
  25127. name: "Breeding God",
  25128. height: math.unit(9.92e22, "yottameters")
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25134. {
  25135. side: {
  25136. height: math.unit(9, "feet"),
  25137. weight: math.unit(1500, "kg"),
  25138. name: "Side",
  25139. image: {
  25140. source: "./media/characters/fang/side.svg",
  25141. extra: 924/866,
  25142. bottom: 47.5/972.3
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Normal",
  25149. height: math.unit(9, "feet"),
  25150. default: true
  25151. },
  25152. {
  25153. name: "Macro",
  25154. height: math.unit(75 + 6/12, "feet")
  25155. },
  25156. {
  25157. name: "Teramacro",
  25158. height: math.unit(50000, "miles")
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(10, "feet"),
  25167. weight: math.unit(2, "tons"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/rekhit/front.svg",
  25171. extra: 2796/2590,
  25172. bottom: 225/3022
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Normal",
  25179. height: math.unit(10, "feet"),
  25180. default: true
  25181. },
  25182. {
  25183. name: "Macro",
  25184. height: math.unit(500, "feet")
  25185. },
  25186. ]
  25187. ))
  25188. characterMakers.push(() => makeCharacter(
  25189. { name: "Dahlia Verrick" },
  25190. {
  25191. front: {
  25192. height: math.unit(7 + 6.451/12, "feet"),
  25193. weight: math.unit(310, "lb"),
  25194. name: "Front",
  25195. image: {
  25196. source: "./media/characters/dahlia-verrick/front.svg",
  25197. extra: 1488/1365,
  25198. bottom: 6.2/1495
  25199. }
  25200. },
  25201. back: {
  25202. height: math.unit(7 + 6.451/12, "feet"),
  25203. weight: math.unit(310, "lb"),
  25204. name: "Back",
  25205. image: {
  25206. source: "./media/characters/dahlia-verrick/back.svg",
  25207. extra: 1472/1351,
  25208. bottom: 5.28/1477
  25209. }
  25210. },
  25211. frontBusiness: {
  25212. height: math.unit(7 + 6.451/12, "feet"),
  25213. weight: math.unit(200, "lb"),
  25214. name: "Front (Business)",
  25215. image: {
  25216. source: "./media/characters/dahlia-verrick/front-business.svg",
  25217. extra: 1478/1381,
  25218. bottom: 5.5/1484
  25219. }
  25220. },
  25221. frontCasual: {
  25222. height: math.unit(7 + 6.451/12, "feet"),
  25223. weight: math.unit(200, "lb"),
  25224. name: "Front (Casual)",
  25225. image: {
  25226. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25227. extra: 1478/1381,
  25228. bottom: 5.5/1484
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Travel-Sized",
  25235. height: math.unit(7.45, "inches")
  25236. },
  25237. {
  25238. name: "Normal",
  25239. height: math.unit(7 + 6.451/12, "feet"),
  25240. default: true
  25241. },
  25242. {
  25243. name: "Hitting the Town",
  25244. height: math.unit(37 + 8/12, "feet")
  25245. },
  25246. {
  25247. name: "Stomp in the Suburbs",
  25248. height: math.unit(964 + 9.728/12, "feet")
  25249. },
  25250. {
  25251. name: "Sit on the City",
  25252. height: math.unit(61747 + 10.592/12, "feet")
  25253. },
  25254. {
  25255. name: "Glomp the Globe",
  25256. height: math.unit(252919327 + 4.832/12, "feet")
  25257. },
  25258. ]
  25259. ))
  25260. characterMakers.push(() => makeCharacter(
  25261. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25262. {
  25263. front: {
  25264. height: math.unit(6 + 4/12, "feet"),
  25265. weight: math.unit(320, "lb"),
  25266. name: "Front",
  25267. image: {
  25268. source: "./media/characters/balina-mahigan/front.svg",
  25269. extra: 447/428,
  25270. bottom: 18/466
  25271. }
  25272. },
  25273. back: {
  25274. height: math.unit(6 + 4/12, "feet"),
  25275. weight: math.unit(320, "lb"),
  25276. name: "Back",
  25277. image: {
  25278. source: "./media/characters/balina-mahigan/back.svg",
  25279. extra: 445/428,
  25280. bottom: 4.07/448
  25281. }
  25282. },
  25283. arm: {
  25284. height: math.unit(1.88, "feet"),
  25285. name: "Arm",
  25286. image: {
  25287. source: "./media/characters/balina-mahigan/arm.svg"
  25288. }
  25289. },
  25290. backPort: {
  25291. height: math.unit(0.685, "feet"),
  25292. name: "Back Port",
  25293. image: {
  25294. source: "./media/characters/balina-mahigan/back-port.svg"
  25295. }
  25296. },
  25297. hoofpaw: {
  25298. height: math.unit(1.41, "feet"),
  25299. name: "Hoofpaw",
  25300. image: {
  25301. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25302. }
  25303. },
  25304. leftHandBack: {
  25305. height: math.unit(0.938, "feet"),
  25306. name: "Left Hand (Back)",
  25307. image: {
  25308. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25309. }
  25310. },
  25311. leftHandFront: {
  25312. height: math.unit(0.938, "feet"),
  25313. name: "Left Hand (Front)",
  25314. image: {
  25315. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25316. }
  25317. },
  25318. rightHandBack: {
  25319. height: math.unit(0.95, "feet"),
  25320. name: "Right Hand (Back)",
  25321. image: {
  25322. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25323. }
  25324. },
  25325. rightHandFront: {
  25326. height: math.unit(0.95, "feet"),
  25327. name: "Right Hand (Front)",
  25328. image: {
  25329. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25330. }
  25331. },
  25332. },
  25333. [
  25334. {
  25335. name: "Normal",
  25336. height: math.unit(6 + 4/12, "feet"),
  25337. default: true
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25343. {
  25344. front: {
  25345. height: math.unit(6, "feet"),
  25346. weight: math.unit(320, "lb"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/balina-mejeri/front.svg",
  25350. extra: 517/488,
  25351. bottom: 44.2/561
  25352. }
  25353. },
  25354. },
  25355. [
  25356. {
  25357. name: "Normal",
  25358. height: math.unit(6 + 4/12, "feet")
  25359. },
  25360. {
  25361. name: "Business",
  25362. height: math.unit(155, "feet"),
  25363. default: true
  25364. },
  25365. ]
  25366. ))
  25367. characterMakers.push(() => makeCharacter(
  25368. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25369. {
  25370. kneeling: {
  25371. height: math.unit(6 + 4/12, "feet"),
  25372. weight: math.unit(300*20, "lb"),
  25373. name: "Kneeling",
  25374. image: {
  25375. source: "./media/characters/balbarian/kneeling.svg",
  25376. extra: 922/862,
  25377. bottom: 42.4/965
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Normal",
  25384. height: math.unit(6 + 4/12, "feet")
  25385. },
  25386. {
  25387. name: "Treasured",
  25388. height: math.unit(18 + 9/12, "feet"),
  25389. default: true
  25390. },
  25391. {
  25392. name: "Macro",
  25393. height: math.unit(900, "feet")
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25399. {
  25400. front: {
  25401. height: math.unit(6 + 4/12, "feet"),
  25402. weight: math.unit(325, "lb"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/balina-amarini/front.svg",
  25406. extra: 415/403,
  25407. bottom: 19/433.4
  25408. }
  25409. },
  25410. back: {
  25411. height: math.unit(6 + 4/12, "feet"),
  25412. weight: math.unit(325, "lb"),
  25413. name: "Back",
  25414. image: {
  25415. source: "./media/characters/balina-amarini/back.svg",
  25416. extra: 415/403,
  25417. bottom: 13.5/432
  25418. }
  25419. },
  25420. overdrive: {
  25421. height: math.unit(6 + 4/12, "feet"),
  25422. weight: math.unit(400, "lb"),
  25423. name: "Overdrive",
  25424. image: {
  25425. source: "./media/characters/balina-amarini/overdrive.svg",
  25426. extra: 269/259,
  25427. bottom: 12/282
  25428. }
  25429. },
  25430. },
  25431. [
  25432. {
  25433. name: "Boom",
  25434. height: math.unit(9 + 10/12, "feet"),
  25435. default: true
  25436. },
  25437. {
  25438. name: "Macro",
  25439. height: math.unit(280, "feet")
  25440. },
  25441. ]
  25442. ))
  25443. characterMakers.push(() => makeCharacter(
  25444. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25445. {
  25446. goddess: {
  25447. height: math.unit(600, "feet"),
  25448. weight: math.unit(2000000, "tons"),
  25449. name: "Goddess",
  25450. image: {
  25451. source: "./media/characters/lady-kubwa/goddess.svg",
  25452. extra: 1240.5/1223,
  25453. bottom: 22/1263
  25454. }
  25455. },
  25456. goddesser: {
  25457. height: math.unit(900, "feet"),
  25458. weight: math.unit(20000000, "lb"),
  25459. name: "Goddess-er",
  25460. image: {
  25461. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25462. extra: 899/888,
  25463. bottom: 12.6/912
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Macro",
  25470. height: math.unit(600, "feet"),
  25471. default: true
  25472. },
  25473. {
  25474. name: "Megamacro",
  25475. height: math.unit(250, "miles")
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(7 + 7/12, "feet"),
  25484. weight: math.unit(250, "lb"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/tala-grovehorn/front.svg",
  25488. extra: 2636/2525,
  25489. bottom: 147/2781
  25490. }
  25491. },
  25492. back: {
  25493. height: math.unit(7 + 7/12, "feet"),
  25494. weight: math.unit(250, "lb"),
  25495. name: "Back",
  25496. image: {
  25497. source: "./media/characters/tala-grovehorn/back.svg",
  25498. extra: 2635/2539,
  25499. bottom: 100/2732.8
  25500. }
  25501. },
  25502. mouth: {
  25503. height: math.unit(1.15, "feet"),
  25504. name: "Mouth",
  25505. image: {
  25506. source: "./media/characters/tala-grovehorn/mouth.svg"
  25507. }
  25508. },
  25509. dick: {
  25510. height: math.unit(2.36, "feet"),
  25511. name: "Dick",
  25512. image: {
  25513. source: "./media/characters/tala-grovehorn/dick.svg"
  25514. }
  25515. },
  25516. slit: {
  25517. height: math.unit(0.61, "feet"),
  25518. name: "Slit",
  25519. image: {
  25520. source: "./media/characters/tala-grovehorn/slit.svg"
  25521. }
  25522. },
  25523. },
  25524. [
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(7 + 7/12, "feet"),
  25532. weight: math.unit(225, "lb"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/epona/front.svg",
  25536. extra: 2445/2290,
  25537. bottom: 251/2696
  25538. }
  25539. },
  25540. back: {
  25541. height: math.unit(7 + 7/12, "feet"),
  25542. weight: math.unit(225, "lb"),
  25543. name: "Back",
  25544. image: {
  25545. source: "./media/characters/epona/back.svg",
  25546. extra: 2546/2408,
  25547. bottom: 44/2589
  25548. }
  25549. },
  25550. genitals: {
  25551. height: math.unit(1.5, "feet"),
  25552. name: "Genitals",
  25553. image: {
  25554. source: "./media/characters/epona/genitals.svg"
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Normal",
  25561. height: math.unit(7 + 7/12, "feet")
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(7, "feet"),
  25570. weight: math.unit(518, "lb"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/avia-bloodbourn/front.svg",
  25574. extra: 1466/1350,
  25575. bottom: 65/1527
  25576. }
  25577. },
  25578. },
  25579. [
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25584. {
  25585. front: {
  25586. height: math.unit(9.35, "feet"),
  25587. weight: math.unit(600, "lb"),
  25588. name: "Front",
  25589. image: {
  25590. source: "./media/characters/amera/front.svg",
  25591. extra: 891/818,
  25592. bottom: 30/922.7
  25593. }
  25594. },
  25595. back: {
  25596. height: math.unit(9.35, "feet"),
  25597. weight: math.unit(600, "lb"),
  25598. name: "Back",
  25599. image: {
  25600. source: "./media/characters/amera/back.svg",
  25601. extra: 876/824,
  25602. bottom: 6.8/884
  25603. }
  25604. },
  25605. dick: {
  25606. height: math.unit(2.14, "feet"),
  25607. name: "Dick",
  25608. image: {
  25609. source: "./media/characters/amera/dick.svg"
  25610. }
  25611. },
  25612. },
  25613. [
  25614. {
  25615. name: "Normal",
  25616. height: math.unit(9.35, "feet"),
  25617. default: true
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25623. {
  25624. kneeling: {
  25625. height: math.unit(3 + 4/12, "feet"),
  25626. weight: math.unit(90, "lb"),
  25627. name: "Kneeling",
  25628. image: {
  25629. source: "./media/characters/rosewen/kneeling.svg",
  25630. extra: 1835/1571,
  25631. bottom: 27.7/1862
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(3 + 4/12, "feet"),
  25639. default: true
  25640. },
  25641. ]
  25642. ))
  25643. characterMakers.push(() => makeCharacter(
  25644. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25645. {
  25646. front: {
  25647. height: math.unit(5 + 10/12, "feet"),
  25648. weight: math.unit(200, "lb"),
  25649. name: "Front",
  25650. image: {
  25651. source: "./media/characters/sabah/front.svg",
  25652. extra: 849/763,
  25653. bottom: 33.9/881
  25654. }
  25655. },
  25656. },
  25657. [
  25658. {
  25659. name: "Normal",
  25660. height: math.unit(5 + 10/12, "feet"),
  25661. default: true
  25662. },
  25663. ]
  25664. ))
  25665. characterMakers.push(() => makeCharacter(
  25666. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25667. {
  25668. front: {
  25669. height: math.unit(3 + 5/12, "feet"),
  25670. weight: math.unit(40, "kg"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/purple-flame/front.svg",
  25674. extra: 1577/1412,
  25675. bottom: 97/1694
  25676. }
  25677. },
  25678. frontDressed: {
  25679. height: math.unit(3 + 5/12, "feet"),
  25680. weight: math.unit(40, "kg"),
  25681. name: "Front (Dressed)",
  25682. image: {
  25683. source: "./media/characters/purple-flame/front-dressed.svg",
  25684. extra: 1577/1412,
  25685. bottom: 97/1694
  25686. }
  25687. },
  25688. headphones: {
  25689. height: math.unit(0.85, "feet"),
  25690. name: "Headphones",
  25691. image: {
  25692. source: "./media/characters/purple-flame/headphones.svg"
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Really Small",
  25699. height: math.unit(5, "cm")
  25700. },
  25701. {
  25702. name: "Micro",
  25703. height: math.unit(1 + 5/12, "feet")
  25704. },
  25705. {
  25706. name: "Normal",
  25707. height: math.unit(3 + 5/12, "feet"),
  25708. default: true
  25709. },
  25710. {
  25711. name: "Minimacro",
  25712. height: math.unit(125, "feet")
  25713. },
  25714. {
  25715. name: "Macro",
  25716. height: math.unit(0.5, "miles")
  25717. },
  25718. {
  25719. name: "Megamacro",
  25720. height: math.unit(50, "miles")
  25721. },
  25722. {
  25723. name: "Gigantic",
  25724. height: math.unit(750, "miles")
  25725. },
  25726. {
  25727. name: "Planetary",
  25728. height: math.unit(15000, "miles")
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25734. {
  25735. front: {
  25736. height: math.unit(14, "feet"),
  25737. weight: math.unit(959, "lb"),
  25738. name: "Front",
  25739. image: {
  25740. source: "./media/characters/arsenal/front.svg",
  25741. extra: 2357/2157,
  25742. bottom: 93/2458
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Normal",
  25749. height: math.unit(14, "feet"),
  25750. default: true
  25751. },
  25752. ]
  25753. ))
  25754. characterMakers.push(() => makeCharacter(
  25755. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25756. {
  25757. front: {
  25758. height: math.unit(6, "feet"),
  25759. weight: math.unit(150, "lb"),
  25760. name: "Front",
  25761. image: {
  25762. source: "./media/characters/adira/front.svg",
  25763. extra: 1078/1029,
  25764. bottom: 87/1166
  25765. }
  25766. },
  25767. },
  25768. [
  25769. {
  25770. name: "Micro",
  25771. height: math.unit(4, "inches"),
  25772. default: true
  25773. },
  25774. {
  25775. name: "Macro",
  25776. height: math.unit(50, "feet")
  25777. },
  25778. ]
  25779. ))
  25780. characterMakers.push(() => makeCharacter(
  25781. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25782. {
  25783. front: {
  25784. height: math.unit(16, "feet"),
  25785. weight: math.unit(1000, "lb"),
  25786. name: "Front",
  25787. image: {
  25788. source: "./media/characters/grim/front.svg",
  25789. extra: 622/614,
  25790. bottom: 18.1/642
  25791. }
  25792. },
  25793. back: {
  25794. height: math.unit(16, "feet"),
  25795. weight: math.unit(1000, "lb"),
  25796. name: "Back",
  25797. image: {
  25798. source: "./media/characters/grim/back.svg",
  25799. extra: 610.6/602,
  25800. bottom: 40.8/652
  25801. }
  25802. },
  25803. hunched: {
  25804. height: math.unit(9.75, "feet"),
  25805. weight: math.unit(1000, "lb"),
  25806. name: "Hunched",
  25807. image: {
  25808. source: "./media/characters/grim/hunched.svg",
  25809. extra: 304/297,
  25810. bottom: 35.4/394
  25811. }
  25812. },
  25813. },
  25814. [
  25815. {
  25816. name: "Normal",
  25817. height: math.unit(16, "feet"),
  25818. default: true
  25819. },
  25820. ]
  25821. ))
  25822. characterMakers.push(() => makeCharacter(
  25823. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25824. {
  25825. front: {
  25826. height: math.unit(2.3, "meters"),
  25827. weight: math.unit(300, "lb"),
  25828. name: "Front",
  25829. image: {
  25830. source: "./media/characters/sinja/front-sfw.svg",
  25831. extra: 1393/1294,
  25832. bottom: 70/1463
  25833. }
  25834. },
  25835. frontNsfw: {
  25836. height: math.unit(2.3, "meters"),
  25837. weight: math.unit(300, "lb"),
  25838. name: "Front (NSFW)",
  25839. image: {
  25840. source: "./media/characters/sinja/front-nsfw.svg",
  25841. extra: 1393/1294,
  25842. bottom: 70/1463
  25843. }
  25844. },
  25845. back: {
  25846. height: math.unit(2.3, "meters"),
  25847. weight: math.unit(300, "lb"),
  25848. name: "Back",
  25849. image: {
  25850. source: "./media/characters/sinja/back.svg",
  25851. extra: 1393/1294,
  25852. bottom: 70/1463
  25853. }
  25854. },
  25855. head: {
  25856. height: math.unit(1.771, "feet"),
  25857. name: "Head",
  25858. image: {
  25859. source: "./media/characters/sinja/head.svg"
  25860. }
  25861. },
  25862. slit: {
  25863. height: math.unit(0.8, "feet"),
  25864. name: "Slit",
  25865. image: {
  25866. source: "./media/characters/sinja/slit.svg"
  25867. }
  25868. },
  25869. },
  25870. [
  25871. {
  25872. name: "Normal",
  25873. height: math.unit(2.3, "meters")
  25874. },
  25875. {
  25876. name: "Macro",
  25877. height: math.unit(91, "meters"),
  25878. default: true
  25879. },
  25880. {
  25881. name: "Megamacro",
  25882. height: math.unit(91440, "meters")
  25883. },
  25884. {
  25885. name: "Gigamacro",
  25886. height: math.unit(60960000, "meters")
  25887. },
  25888. {
  25889. name: "Teramacro",
  25890. height: math.unit(9144000000, "meters")
  25891. },
  25892. ]
  25893. ))
  25894. characterMakers.push(() => makeCharacter(
  25895. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25896. {
  25897. front: {
  25898. height: math.unit(1.7, "meters"),
  25899. weight: math.unit(130, "lb"),
  25900. name: "Front",
  25901. image: {
  25902. source: "./media/characters/kyu/front.svg",
  25903. extra: 415/395,
  25904. bottom: 5/420
  25905. }
  25906. },
  25907. head: {
  25908. height: math.unit(1.75, "feet"),
  25909. name: "Head",
  25910. image: {
  25911. source: "./media/characters/kyu/head.svg"
  25912. }
  25913. },
  25914. foot: {
  25915. height: math.unit(0.81, "feet"),
  25916. name: "Foot",
  25917. image: {
  25918. source: "./media/characters/kyu/foot.svg"
  25919. }
  25920. },
  25921. },
  25922. [
  25923. {
  25924. name: "Normal",
  25925. height: math.unit(1.7, "meters")
  25926. },
  25927. {
  25928. name: "Macro",
  25929. height: math.unit(131, "feet"),
  25930. default: true
  25931. },
  25932. {
  25933. name: "Megamacro",
  25934. height: math.unit(91440, "meters")
  25935. },
  25936. {
  25937. name: "Gigamacro",
  25938. height: math.unit(60960000, "meters")
  25939. },
  25940. {
  25941. name: "Teramacro",
  25942. height: math.unit(9144000000, "meters")
  25943. },
  25944. ]
  25945. ))
  25946. characterMakers.push(() => makeCharacter(
  25947. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25948. {
  25949. front: {
  25950. height: math.unit(7 + 1/12, "feet"),
  25951. weight: math.unit(250, "lb"),
  25952. name: "Front",
  25953. image: {
  25954. source: "./media/characters/joey/front.svg",
  25955. extra: 1791/1537,
  25956. bottom: 28/1816
  25957. }
  25958. },
  25959. },
  25960. [
  25961. {
  25962. name: "Micro",
  25963. height: math.unit(3, "inches")
  25964. },
  25965. {
  25966. name: "Normal",
  25967. height: math.unit(7 + 1/12, "feet"),
  25968. default: true
  25969. },
  25970. ]
  25971. ))
  25972. characterMakers.push(() => makeCharacter(
  25973. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25974. {
  25975. front: {
  25976. height: math.unit(165, "cm"),
  25977. weight: math.unit(140, "lb"),
  25978. name: "Front",
  25979. image: {
  25980. source: "./media/characters/sam-evans/front.svg",
  25981. extra: 3417/3230,
  25982. bottom: 41.3/3417
  25983. }
  25984. },
  25985. frontSixTails: {
  25986. height: math.unit(165, "cm"),
  25987. weight: math.unit(140, "lb"),
  25988. name: "Front-six-tails",
  25989. image: {
  25990. source: "./media/characters/sam-evans/front-six-tails.svg",
  25991. extra: 3417/3230,
  25992. bottom: 41.3/3417
  25993. }
  25994. },
  25995. back: {
  25996. height: math.unit(165, "cm"),
  25997. weight: math.unit(140, "lb"),
  25998. name: "Back",
  25999. image: {
  26000. source: "./media/characters/sam-evans/back.svg",
  26001. extra: 3227/3032,
  26002. bottom: 6.8/3234
  26003. }
  26004. },
  26005. face: {
  26006. height: math.unit(0.68, "feet"),
  26007. name: "Face",
  26008. image: {
  26009. source: "./media/characters/sam-evans/face.svg"
  26010. }
  26011. },
  26012. },
  26013. [
  26014. {
  26015. name: "Normal",
  26016. height: math.unit(165, "cm"),
  26017. default: true
  26018. },
  26019. {
  26020. name: "Macro",
  26021. height: math.unit(100, "meters")
  26022. },
  26023. {
  26024. name: "Macro+",
  26025. height: math.unit(800, "meters")
  26026. },
  26027. {
  26028. name: "Macro++",
  26029. height: math.unit(3, "km")
  26030. },
  26031. {
  26032. name: "Macro+++",
  26033. height: math.unit(30, "km")
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26039. {
  26040. front: {
  26041. height: math.unit(10, "feet"),
  26042. weight: math.unit(750, "lb"),
  26043. name: "Front",
  26044. image: {
  26045. source: "./media/characters/juliet-a/front.svg",
  26046. extra: 1766/1720,
  26047. bottom: 43/1809
  26048. }
  26049. },
  26050. back: {
  26051. height: math.unit(10, "feet"),
  26052. weight: math.unit(750, "lb"),
  26053. name: "Back",
  26054. image: {
  26055. source: "./media/characters/juliet-a/back.svg",
  26056. extra: 1781/1734,
  26057. bottom: 35/1810,
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Normal",
  26064. height: math.unit(10, "feet"),
  26065. default: true
  26066. },
  26067. {
  26068. name: "Dragon Form",
  26069. height: math.unit(250, "feet")
  26070. },
  26071. {
  26072. name: "Macro",
  26073. height: math.unit(1000, "feet")
  26074. },
  26075. {
  26076. name: "Megamacro",
  26077. height: math.unit(10000, "feet")
  26078. }
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26083. {
  26084. regular: {
  26085. height: math.unit(7 + 3/12, "feet"),
  26086. weight: math.unit(260, "lb"),
  26087. name: "Regular",
  26088. image: {
  26089. source: "./media/characters/wild/regular.svg",
  26090. extra: 97.45/92,
  26091. bottom: 6.8/104.3
  26092. }
  26093. },
  26094. biggums: {
  26095. height: math.unit(8 + 6 /12, "feet"),
  26096. weight: math.unit(425, "lb"),
  26097. name: "Biggums",
  26098. image: {
  26099. source: "./media/characters/wild/biggums.svg",
  26100. extra: 97.45/92,
  26101. bottom: 7.5/132.34
  26102. }
  26103. },
  26104. mawRegular: {
  26105. height: math.unit(1.24, "feet"),
  26106. name: "Maw (Regular)",
  26107. image: {
  26108. source: "./media/characters/wild/maw.svg"
  26109. }
  26110. },
  26111. mawBiggums: {
  26112. height: math.unit(1.47, "feet"),
  26113. name: "Maw (Biggums)",
  26114. image: {
  26115. source: "./media/characters/wild/maw.svg"
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(7 + 3/12, "feet"),
  26123. default: true
  26124. },
  26125. ]
  26126. ))
  26127. characterMakers.push(() => makeCharacter(
  26128. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26129. {
  26130. front: {
  26131. height: math.unit(2.5, "meters"),
  26132. weight: math.unit(200, "kg"),
  26133. name: "Front",
  26134. image: {
  26135. source: "./media/characters/vidar/front.svg",
  26136. extra: 2994/2795,
  26137. bottom: 56/3061
  26138. }
  26139. },
  26140. back: {
  26141. height: math.unit(2.5, "meters"),
  26142. weight: math.unit(200, "kg"),
  26143. name: "Back",
  26144. image: {
  26145. source: "./media/characters/vidar/back.svg",
  26146. extra: 3131/2928,
  26147. bottom: 13.5/3141.5
  26148. }
  26149. },
  26150. feral: {
  26151. height: math.unit(2.5, "meters"),
  26152. weight: math.unit(2000, "kg"),
  26153. name: "Feral",
  26154. image: {
  26155. source: "./media/characters/vidar/feral.svg",
  26156. extra: 2790/1765,
  26157. bottom: 6/2796
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(2.5, "meters"),
  26165. default: true
  26166. },
  26167. {
  26168. name: "Macro",
  26169. height: math.unit(100, "meters")
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(5 + 9/12, "feet"),
  26178. weight: math.unit(120, "lb"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/ash/front.svg",
  26182. extra: 2189/1961,
  26183. bottom: 5.2/2194
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Normal",
  26190. height: math.unit(5 + 9/12, "feet"),
  26191. default: true
  26192. },
  26193. ]
  26194. ))
  26195. characterMakers.push(() => makeCharacter(
  26196. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26197. {
  26198. front: {
  26199. height: math.unit(9, "feet"),
  26200. weight: math.unit(10000, "lb"),
  26201. name: "Front",
  26202. image: {
  26203. source: "./media/characters/gygabite/front.svg",
  26204. bottom: 31.7/537.8,
  26205. extra: 505/370
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Normal",
  26212. height: math.unit(9, "feet"),
  26213. default: true
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(12, "feet"),
  26222. weight: math.unit(35000, "lb"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/p0tat0/front.svg",
  26226. extra: 1065/921,
  26227. bottom: 55.7/1121.25
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(12, "feet"),
  26235. default: true
  26236. },
  26237. ]
  26238. ))
  26239. characterMakers.push(() => makeCharacter(
  26240. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26241. {
  26242. side: {
  26243. height: math.unit(6.5, "feet"),
  26244. weight: math.unit(800, "lb"),
  26245. name: "Side",
  26246. image: {
  26247. source: "./media/characters/dusk/side.svg",
  26248. extra: 615/373,
  26249. bottom: 53/664
  26250. }
  26251. },
  26252. sitting: {
  26253. height: math.unit(7, "feet"),
  26254. weight: math.unit(800, "lb"),
  26255. name: "Sitting",
  26256. image: {
  26257. source: "./media/characters/dusk/sitting.svg",
  26258. extra: 753/425,
  26259. bottom: 33/774
  26260. }
  26261. },
  26262. head: {
  26263. height: math.unit(6.1, "feet"),
  26264. name: "Head",
  26265. image: {
  26266. source: "./media/characters/dusk/head.svg"
  26267. }
  26268. },
  26269. },
  26270. [
  26271. {
  26272. name: "Normal",
  26273. height: math.unit(7, "feet"),
  26274. default: true
  26275. },
  26276. ]
  26277. ))
  26278. characterMakers.push(() => makeCharacter(
  26279. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26280. {
  26281. front: {
  26282. height: math.unit(15, "feet"),
  26283. weight: math.unit(7000, "lb"),
  26284. name: "Front",
  26285. image: {
  26286. source: "./media/characters/jay-direwolf/front.svg",
  26287. extra: 1810/1732,
  26288. bottom: 66/1892
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Normal",
  26295. height: math.unit(15, "feet"),
  26296. default: true
  26297. },
  26298. ]
  26299. ))
  26300. characterMakers.push(() => makeCharacter(
  26301. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26302. {
  26303. front: {
  26304. height: math.unit(4 + 9/12, "feet"),
  26305. weight: math.unit(130, "lb"),
  26306. name: "Front",
  26307. image: {
  26308. source: "./media/characters/anchovie/front.svg",
  26309. extra: 382/350,
  26310. bottom: 25/409
  26311. }
  26312. },
  26313. back: {
  26314. height: math.unit(4 + 9/12, "feet"),
  26315. weight: math.unit(130, "lb"),
  26316. name: "Back",
  26317. image: {
  26318. source: "./media/characters/anchovie/back.svg",
  26319. extra: 385/352,
  26320. bottom: 16.6/402
  26321. }
  26322. },
  26323. frontDressed: {
  26324. height: math.unit(4 + 9/12, "feet"),
  26325. weight: math.unit(130, "lb"),
  26326. name: "Front (Dressed)",
  26327. image: {
  26328. source: "./media/characters/anchovie/front-dressed.svg",
  26329. extra: 382/350,
  26330. bottom: 25/409
  26331. }
  26332. },
  26333. backDressed: {
  26334. height: math.unit(4 + 9/12, "feet"),
  26335. weight: math.unit(130, "lb"),
  26336. name: "Back (Dressed)",
  26337. image: {
  26338. source: "./media/characters/anchovie/back-dressed.svg",
  26339. extra: 385/352,
  26340. bottom: 16.6/402
  26341. }
  26342. },
  26343. },
  26344. [
  26345. {
  26346. name: "Micro",
  26347. height: math.unit(6.4, "inches")
  26348. },
  26349. {
  26350. name: "Normal",
  26351. height: math.unit(4 + 9/12, "feet"),
  26352. default: true
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(2, "meters"),
  26361. weight: math.unit(180, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/acidrenamon/front.svg",
  26365. extra: 987/890,
  26366. bottom: 22.8/1009
  26367. }
  26368. },
  26369. back: {
  26370. height: math.unit(2, "meters"),
  26371. weight: math.unit(180, "lb"),
  26372. name: "Back",
  26373. image: {
  26374. source: "./media/characters/acidrenamon/back.svg",
  26375. extra: 983/891,
  26376. bottom: 8.4/992
  26377. }
  26378. },
  26379. head: {
  26380. height: math.unit(1.92, "feet"),
  26381. name: "Head",
  26382. image: {
  26383. source: "./media/characters/acidrenamon/head.svg"
  26384. }
  26385. },
  26386. rump: {
  26387. height: math.unit(1.72, "feet"),
  26388. name: "Rump",
  26389. image: {
  26390. source: "./media/characters/acidrenamon/rump.svg"
  26391. }
  26392. },
  26393. tail: {
  26394. height: math.unit(4.2, "feet"),
  26395. name: "Tail",
  26396. image: {
  26397. source: "./media/characters/acidrenamon/tail.svg"
  26398. }
  26399. },
  26400. },
  26401. [
  26402. {
  26403. name: "Normal",
  26404. height: math.unit(2, "meters"),
  26405. default: true
  26406. },
  26407. {
  26408. name: "Minimacro",
  26409. height: math.unit(7, "meters")
  26410. },
  26411. {
  26412. name: "Macro",
  26413. height: math.unit(200, "meters")
  26414. },
  26415. {
  26416. name: "Gigamacro",
  26417. height: math.unit(0.2, "earths")
  26418. },
  26419. ]
  26420. ))
  26421. characterMakers.push(() => makeCharacter(
  26422. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26423. {
  26424. front: {
  26425. height: math.unit(6, "feet"),
  26426. weight: math.unit(150, "lb"),
  26427. name: "Front",
  26428. image: {
  26429. source: "./media/characters/kenzie-lee/front.svg",
  26430. extra: 1525/1465,
  26431. bottom: 45/1570
  26432. }
  26433. },
  26434. side: {
  26435. height: math.unit(6, "feet"),
  26436. weight: math.unit(150, "lb"),
  26437. name: "Side",
  26438. image: {
  26439. source: "./media/characters/kenzie-lee/side.svg",
  26440. extra: 5505/5383,
  26441. bottom: 60/5573
  26442. }
  26443. },
  26444. },
  26445. [
  26446. {
  26447. name: "Normal",
  26448. height: math.unit(152, "feet"),
  26449. default: true
  26450. },
  26451. {
  26452. name: "Megamacro",
  26453. height: math.unit(7, "miles")
  26454. },
  26455. {
  26456. name: "Gigamacro",
  26457. height: math.unit(8000, "miles")
  26458. },
  26459. ]
  26460. ))
  26461. characterMakers.push(() => makeCharacter(
  26462. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26463. {
  26464. side: {
  26465. height: math.unit(6, "feet"),
  26466. weight: math.unit(150, "lb"),
  26467. name: "Side",
  26468. image: {
  26469. source: "./media/characters/withers/side.svg",
  26470. extra: 1830/1728,
  26471. bottom: 96/1927
  26472. }
  26473. },
  26474. front: {
  26475. height: math.unit(6, "feet"),
  26476. weight: math.unit(150, "lb"),
  26477. name: "Front",
  26478. image: {
  26479. source: "./media/characters/withers/front.svg",
  26480. extra: 1514/1438,
  26481. bottom: 118/1632
  26482. }
  26483. },
  26484. },
  26485. [
  26486. {
  26487. name: "Normal",
  26488. height: math.unit(6, "feet")
  26489. },
  26490. {
  26491. name: "Macro",
  26492. height: math.unit(50, "feet")
  26493. },
  26494. {
  26495. name: "Megamacro",
  26496. height: math.unit(15, "miles"),
  26497. default: true
  26498. },
  26499. {
  26500. name: "Megamacro+",
  26501. height: math.unit(100, "km")
  26502. },
  26503. {
  26504. name: "Gigamacro",
  26505. height: math.unit(4750, "miles")
  26506. },
  26507. {
  26508. name: "Gigamacro+",
  26509. height: math.unit(32000, "miles")
  26510. },
  26511. ]
  26512. ))
  26513. characterMakers.push(() => makeCharacter(
  26514. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26515. {
  26516. front: {
  26517. height: math.unit(6 + 7/12, "feet"),
  26518. weight: math.unit(250, "lb"),
  26519. name: "Front",
  26520. image: {
  26521. source: "./media/characters/nemoskii/front.svg",
  26522. extra: 2270/1734,
  26523. bottom: 86/2354
  26524. }
  26525. },
  26526. back: {
  26527. height: math.unit(6 + 7/12, "feet"),
  26528. weight: math.unit(250, "lb"),
  26529. name: "Back",
  26530. image: {
  26531. source: "./media/characters/nemoskii/back.svg",
  26532. extra: 1845/1788,
  26533. bottom: 10.5/1852
  26534. }
  26535. },
  26536. head: {
  26537. height: math.unit(1.31, "feet"),
  26538. name: "Head",
  26539. image: {
  26540. source: "./media/characters/nemoskii/head.svg"
  26541. }
  26542. },
  26543. },
  26544. [
  26545. {
  26546. name: "Normal",
  26547. height: math.unit(6 + 7/12, "feet"),
  26548. default: true
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26554. {
  26555. front: {
  26556. height: math.unit(1, "mile"),
  26557. weight: math.unit(265261.9, "lb"),
  26558. name: "Front",
  26559. image: {
  26560. source: "./media/characters/shui/front.svg",
  26561. extra: 1633/1564,
  26562. bottom: 91.5/1726
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Macro",
  26569. height: math.unit(1, "mile"),
  26570. default: true
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26576. {
  26577. front: {
  26578. height: math.unit(12 + 6/12, "feet"),
  26579. weight: math.unit(1342, "lb"),
  26580. name: "Front",
  26581. image: {
  26582. source: "./media/characters/arokh-takakura/front.svg",
  26583. extra: 1089/1043,
  26584. bottom: 77.4/1176.7
  26585. }
  26586. },
  26587. back: {
  26588. height: math.unit(12 + 6/12, "feet"),
  26589. weight: math.unit(1342, "lb"),
  26590. name: "Back",
  26591. image: {
  26592. source: "./media/characters/arokh-takakura/back.svg",
  26593. extra: 1046/1019,
  26594. bottom: 102/1150
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Big",
  26601. height: math.unit(12 + 6/12, "feet"),
  26602. default: true
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26608. {
  26609. front: {
  26610. height: math.unit(5 + 6/12, "feet"),
  26611. weight: math.unit(150, "lb"),
  26612. name: "Front",
  26613. image: {
  26614. source: "./media/characters/theo/front.svg",
  26615. extra: 1184/1131,
  26616. bottom: 7.4/1191
  26617. }
  26618. },
  26619. },
  26620. [
  26621. {
  26622. name: "Micro",
  26623. height: math.unit(5, "inches")
  26624. },
  26625. {
  26626. name: "Normal",
  26627. height: math.unit(5 + 6/12, "feet"),
  26628. default: true
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26634. {
  26635. front: {
  26636. height: math.unit(5 + 9/12, "feet"),
  26637. weight: math.unit(130, "lb"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/cecelia-swift/front.svg",
  26641. extra: 502/484,
  26642. bottom: 23/523
  26643. }
  26644. },
  26645. back: {
  26646. height: math.unit(5 + 9/12, "feet"),
  26647. weight: math.unit(130, "lb"),
  26648. name: "Back",
  26649. image: {
  26650. source: "./media/characters/cecelia-swift/back.svg",
  26651. extra: 499/485,
  26652. bottom: 12/511
  26653. }
  26654. },
  26655. head: {
  26656. height: math.unit(0.90, "feet"),
  26657. name: "Head",
  26658. image: {
  26659. source: "./media/characters/cecelia-swift/head.svg"
  26660. }
  26661. },
  26662. rump: {
  26663. height: math.unit(1.75, "feet"),
  26664. name: "Rump",
  26665. image: {
  26666. source: "./media/characters/cecelia-swift/rump.svg"
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Normal",
  26673. height: math.unit(5 + 9/12, "feet"),
  26674. default: true
  26675. },
  26676. {
  26677. name: "Big",
  26678. height: math.unit(50, "feet")
  26679. },
  26680. {
  26681. name: "Macro",
  26682. height: math.unit(100, "feet")
  26683. },
  26684. {
  26685. name: "Macro+",
  26686. height: math.unit(500, "feet")
  26687. },
  26688. {
  26689. name: "Macro++",
  26690. height: math.unit(1000, "feet")
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26696. {
  26697. front: {
  26698. height: math.unit(6, "feet"),
  26699. weight: math.unit(150, "lb"),
  26700. name: "Front",
  26701. image: {
  26702. source: "./media/characters/kaunan/front.svg",
  26703. extra: 2890/2523,
  26704. bottom: 49/2939
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Macro",
  26711. height: math.unit(150, "feet"),
  26712. default: true
  26713. },
  26714. ]
  26715. ))
  26716. characterMakers.push(() => makeCharacter(
  26717. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26718. {
  26719. front: {
  26720. height: math.unit(175, "cm"),
  26721. weight: math.unit(60, "kg"),
  26722. name: "Front",
  26723. image: {
  26724. source: "./media/characters/fei/front.svg",
  26725. extra: 2581/2400,
  26726. bottom: 82.2/2663
  26727. }
  26728. },
  26729. },
  26730. [
  26731. {
  26732. name: "Mortal",
  26733. height: math.unit(175, "cm")
  26734. },
  26735. {
  26736. name: "Normal",
  26737. height: math.unit(3500, "m"),
  26738. default: true
  26739. },
  26740. {
  26741. name: "Stroll",
  26742. height: math.unit(17.5, "km")
  26743. },
  26744. {
  26745. name: "Showoff",
  26746. height: math.unit(175, "km")
  26747. },
  26748. ]
  26749. ))
  26750. characterMakers.push(() => makeCharacter(
  26751. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26752. {
  26753. front: {
  26754. height: math.unit(7, "feet"),
  26755. weight: math.unit(1000, "kg"),
  26756. name: "Front",
  26757. image: {
  26758. source: "./media/characters/edrax/front.svg",
  26759. extra: 2838/2550,
  26760. bottom: 130/2968
  26761. }
  26762. },
  26763. },
  26764. [
  26765. {
  26766. name: "Small",
  26767. height: math.unit(7, "feet")
  26768. },
  26769. {
  26770. name: "Normal",
  26771. height: math.unit(1500, "meters")
  26772. },
  26773. {
  26774. name: "Mega",
  26775. height: math.unit(12000000, "km"),
  26776. default: true
  26777. },
  26778. {
  26779. name: "Megamacro",
  26780. height: math.unit(10600000, "lightyears")
  26781. },
  26782. {
  26783. name: "Hypermacro",
  26784. height: math.unit(256, "yottameters")
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(10, "feet"),
  26793. weight: math.unit(750, "lb"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/clove/front.svg",
  26797. extra: 2031/1860,
  26798. bottom: 47.8/2080
  26799. }
  26800. },
  26801. back: {
  26802. height: math.unit(10, "feet"),
  26803. weight: math.unit(750, "lb"),
  26804. name: "Back",
  26805. image: {
  26806. source: "./media/characters/clove/back.svg",
  26807. extra: 2025/1859,
  26808. bottom: 46/2071
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(10, "feet")
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(4, "feet"),
  26824. weight: math.unit(50, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/alex-rabbit/front.svg",
  26828. extra: 507/458,
  26829. bottom: 18.5/527
  26830. }
  26831. },
  26832. back: {
  26833. height: math.unit(4, "feet"),
  26834. weight: math.unit(50, "lb"),
  26835. name: "Back",
  26836. image: {
  26837. source: "./media/characters/alex-rabbit/back.svg",
  26838. extra: 502/460,
  26839. bottom: 18.9/521
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(4, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(1 + 3 / 12, "feet"),
  26856. weight: math.unit(80, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/zander-rose/front.svg",
  26860. extra: 916 / 797,
  26861. bottom: 17 / 933
  26862. }
  26863. },
  26864. back: {
  26865. height: math.unit(1 + 3 / 12, "feet"),
  26866. weight: math.unit(80, "lb"),
  26867. name: "Back",
  26868. image: {
  26869. source: "./media/characters/zander-rose/back.svg",
  26870. extra: 903/779,
  26871. bottom: 31/934
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(1 + 3 / 12, "feet"),
  26879. default: true
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26885. {
  26886. anthro: {
  26887. height: math.unit(6, "feet"),
  26888. weight: math.unit(150, "lb"),
  26889. name: "Anthro",
  26890. image: {
  26891. source: "./media/characters/razz/anthro.svg",
  26892. extra: 1437/1343,
  26893. bottom: 48/1485
  26894. }
  26895. },
  26896. feral: {
  26897. height: math.unit(6, "feet"),
  26898. weight: math.unit(150, "lb"),
  26899. name: "Feral",
  26900. image: {
  26901. source: "./media/characters/razz/feral.svg",
  26902. extra: 2569/1385,
  26903. bottom: 95/2664
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(6, "feet"),
  26911. default: true
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26917. {
  26918. front: {
  26919. height: math.unit(9 + 4/12, "feet"),
  26920. weight: math.unit(500, "lb"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/morrigan/front.svg",
  26924. extra: 2707/2579,
  26925. bottom: 156/2863
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(9 + 4/12, "feet"),
  26933. default: true
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(5, "stories"),
  26942. weight: math.unit(4000, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/jenene/front.svg",
  26946. extra: 1780/1710,
  26947. bottom: 57/1837
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Normal",
  26954. height: math.unit(5, "stories"),
  26955. default: true
  26956. },
  26957. ]
  26958. ))
  26959. characterMakers.push(() => makeCharacter(
  26960. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26961. {
  26962. front: {
  26963. height: math.unit(6, "feet"),
  26964. weight: math.unit(150, "lb"),
  26965. name: "Front",
  26966. image: {
  26967. source: "./media/characters/vix-archaser/front.svg",
  26968. extra: 2767/2562,
  26969. bottom: 36/2803
  26970. }
  26971. },
  26972. },
  26973. [
  26974. {
  26975. name: "Micro",
  26976. height: math.unit(1, "foot")
  26977. },
  26978. {
  26979. name: "Normal",
  26980. height: math.unit(6 + 5/12, "feet")
  26981. },
  26982. {
  26983. name: "Minimacro",
  26984. height: math.unit(500, "feet")
  26985. },
  26986. {
  26987. name: "Macro",
  26988. height: math.unit(4, "miles")
  26989. },
  26990. {
  26991. name: "Megamacro",
  26992. height: math.unit(250, "miles"),
  26993. default: true
  26994. },
  26995. {
  26996. name: "Gigamacro",
  26997. height: math.unit(1, "universe")
  26998. },
  26999. ]
  27000. ))
  27001. characterMakers.push(() => makeCharacter(
  27002. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27003. {
  27004. taurSfw: {
  27005. height: math.unit(10, "meters"),
  27006. weight: math.unit(17500, "kg"),
  27007. name: "Taur",
  27008. image: {
  27009. source: "./media/characters/faey/taur-sfw.svg",
  27010. extra: 1200/968,
  27011. bottom: 41/1241
  27012. }
  27013. },
  27014. chestmaw: {
  27015. height: math.unit(2.01, "meters"),
  27016. name: "Chestmaw",
  27017. image: {
  27018. source: "./media/characters/faey/chestmaw.svg"
  27019. }
  27020. },
  27021. foot: {
  27022. height: math.unit(2.43, "meters"),
  27023. name: "Foot",
  27024. image: {
  27025. source: "./media/characters/faey/foot.svg"
  27026. }
  27027. },
  27028. jaws: {
  27029. height: math.unit(1.66, "meters"),
  27030. name: "Jaws",
  27031. image: {
  27032. source: "./media/characters/faey/jaws.svg"
  27033. }
  27034. },
  27035. tongues: {
  27036. height: math.unit(2.01, "meters"),
  27037. name: "Tongues",
  27038. image: {
  27039. source: "./media/characters/faey/tongues.svg"
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Small",
  27046. height: math.unit(10, "meters"),
  27047. default: true
  27048. },
  27049. {
  27050. name: "Big",
  27051. height: math.unit(500000, "km")
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27057. {
  27058. front: {
  27059. height: math.unit(7, "feet"),
  27060. weight: math.unit(275, "lb"),
  27061. name: "Front",
  27062. image: {
  27063. source: "./media/characters/roku/front.svg",
  27064. extra: 903/878,
  27065. bottom: 37/940
  27066. }
  27067. },
  27068. },
  27069. [
  27070. {
  27071. name: "Normal",
  27072. height: math.unit(7, "feet"),
  27073. default: true
  27074. },
  27075. {
  27076. name: "Macro",
  27077. height: math.unit(500, "feet")
  27078. },
  27079. {
  27080. name: "Megamacro",
  27081. height: math.unit(200, "miles")
  27082. },
  27083. ]
  27084. ))
  27085. characterMakers.push(() => makeCharacter(
  27086. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27087. {
  27088. front: {
  27089. height: math.unit(6 + 2/12, "feet"),
  27090. weight: math.unit(150, "lb"),
  27091. name: "Front",
  27092. image: {
  27093. source: "./media/characters/lira/front.svg",
  27094. extra: 1727/1605,
  27095. bottom: 26/1753
  27096. }
  27097. },
  27098. back: {
  27099. height: math.unit(6 + 2/12, "feet"),
  27100. weight: math.unit(150, "lb"),
  27101. name: "Back",
  27102. image: {
  27103. source: "./media/characters/lira/back.svg",
  27104. extra: 1713/159,
  27105. bottom: 20/1733
  27106. }
  27107. },
  27108. hand: {
  27109. height: math.unit(0.75, "feet"),
  27110. name: "Hand",
  27111. image: {
  27112. source: "./media/characters/lira/hand.svg"
  27113. }
  27114. },
  27115. maw: {
  27116. height: math.unit(0.65, "feet"),
  27117. name: "Maw",
  27118. image: {
  27119. source: "./media/characters/lira/maw.svg"
  27120. }
  27121. },
  27122. pawDigi: {
  27123. height: math.unit(1.6, "feet"),
  27124. name: "Paw Digi",
  27125. image: {
  27126. source: "./media/characters/lira/paw-digi.svg"
  27127. }
  27128. },
  27129. pawPlanti: {
  27130. height: math.unit(1.4, "feet"),
  27131. name: "Paw Planti",
  27132. image: {
  27133. source: "./media/characters/lira/paw-planti.svg"
  27134. }
  27135. },
  27136. },
  27137. [
  27138. {
  27139. name: "Normal",
  27140. height: math.unit(6 + 2/12, "feet"),
  27141. default: true
  27142. },
  27143. {
  27144. name: "Macro",
  27145. height: math.unit(100, "feet")
  27146. },
  27147. {
  27148. name: "Macro²",
  27149. height: math.unit(1600, "feet")
  27150. },
  27151. {
  27152. name: "Planetary",
  27153. height: math.unit(20, "earths")
  27154. },
  27155. ]
  27156. ))
  27157. characterMakers.push(() => makeCharacter(
  27158. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27159. {
  27160. front: {
  27161. height: math.unit(6, "feet"),
  27162. weight: math.unit(150, "lb"),
  27163. name: "Front",
  27164. image: {
  27165. source: "./media/characters/hadjet/front.svg",
  27166. extra: 1480/1346,
  27167. bottom: 26/1506
  27168. }
  27169. },
  27170. frontNsfw: {
  27171. height: math.unit(6, "feet"),
  27172. weight: math.unit(150, "lb"),
  27173. name: "Front (NSFW)",
  27174. image: {
  27175. source: "./media/characters/hadjet/front-nsfw.svg",
  27176. extra: 1440/1358,
  27177. bottom: 52/1492
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Macro",
  27184. height: math.unit(10, "stories"),
  27185. default: true
  27186. },
  27187. {
  27188. name: "Megamacro",
  27189. height: math.unit(1.5, "miles")
  27190. },
  27191. {
  27192. name: "Megamacro+",
  27193. height: math.unit(5, "miles")
  27194. },
  27195. ]
  27196. ))
  27197. characterMakers.push(() => makeCharacter(
  27198. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27199. {
  27200. side: {
  27201. height: math.unit(106, "feet"),
  27202. weight: math.unit(500, "tonnes"),
  27203. name: "Side",
  27204. image: {
  27205. source: "./media/characters/kodran/side.svg",
  27206. extra: 553/480,
  27207. bottom: 33/586
  27208. }
  27209. },
  27210. front: {
  27211. height: math.unit(132, "feet"),
  27212. weight: math.unit(500, "tonnes"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/kodran/front.svg",
  27216. extra: 667/643,
  27217. bottom: 42/709
  27218. }
  27219. },
  27220. flying: {
  27221. height: math.unit(350, "feet"),
  27222. weight: math.unit(500, "tonnes"),
  27223. name: "Flying",
  27224. image: {
  27225. source: "./media/characters/kodran/flying.svg"
  27226. }
  27227. },
  27228. foot: {
  27229. height: math.unit(33, "feet"),
  27230. name: "Foot",
  27231. image: {
  27232. source: "./media/characters/kodran/foot.svg"
  27233. }
  27234. },
  27235. footFront: {
  27236. height: math.unit(19, "feet"),
  27237. name: "Foot (Front)",
  27238. image: {
  27239. source: "./media/characters/kodran/foot-front.svg",
  27240. extra: 261/261,
  27241. bottom: 91/352
  27242. }
  27243. },
  27244. headFront: {
  27245. height: math.unit(53, "feet"),
  27246. name: "Head (Front)",
  27247. image: {
  27248. source: "./media/characters/kodran/head-front.svg"
  27249. }
  27250. },
  27251. headSide: {
  27252. height: math.unit(65, "feet"),
  27253. name: "Head (Side)",
  27254. image: {
  27255. source: "./media/characters/kodran/head-side.svg"
  27256. }
  27257. },
  27258. throat: {
  27259. height: math.unit(79, "feet"),
  27260. name: "Throat",
  27261. image: {
  27262. source: "./media/characters/kodran/throat.svg"
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Large",
  27269. height: math.unit(106, "feet"),
  27270. default: true
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27276. {
  27277. side: {
  27278. height: math.unit(11, "feet"),
  27279. weight: math.unit(150, "lb"),
  27280. name: "Side",
  27281. image: {
  27282. source: "./media/characters/pyxaron/side.svg",
  27283. extra: 305/195,
  27284. bottom: 17/322
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Normal",
  27291. height: math.unit(11, "feet")
  27292. },
  27293. ]
  27294. ))
  27295. characterMakers.push(() => makeCharacter(
  27296. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27297. {
  27298. front: {
  27299. height: math.unit(6, "feet"),
  27300. weight: math.unit(150, "lb"),
  27301. name: "Front",
  27302. image: {
  27303. source: "./media/characters/meep/front.svg",
  27304. extra: 88/80,
  27305. bottom: 6/94
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Fun Sized",
  27312. height: math.unit(2, "inches"),
  27313. default: true
  27314. },
  27315. {
  27316. name: "Friend Sized",
  27317. height: math.unit(8, "inches")
  27318. },
  27319. ]
  27320. ))
  27321. characterMakers.push(() => makeCharacter(
  27322. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27323. {
  27324. front: {
  27325. height: math.unit(15, "feet"),
  27326. weight: math.unit(2500, "lb"),
  27327. name: "Front",
  27328. image: {
  27329. source: "./media/characters/holly-rabbit/front.svg",
  27330. extra: 1433/1233,
  27331. bottom: 125/1558
  27332. }
  27333. },
  27334. dick: {
  27335. height: math.unit(4.6, "feet"),
  27336. name: "Dick",
  27337. image: {
  27338. source: "./media/characters/holly-rabbit/dick.svg"
  27339. }
  27340. },
  27341. },
  27342. [
  27343. {
  27344. name: "Normal",
  27345. height: math.unit(15, "feet"),
  27346. default: true
  27347. },
  27348. {
  27349. name: "Macro",
  27350. height: math.unit(250, "feet")
  27351. },
  27352. {
  27353. name: "Macro+",
  27354. height: math.unit(2500, "feet")
  27355. },
  27356. ]
  27357. ))
  27358. //characters
  27359. function makeCharacters() {
  27360. const results = [];
  27361. characterMakers.forEach(character => {
  27362. results.push(character());
  27363. });
  27364. return results;
  27365. }