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.
 
 
 

30511 lines
764 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. }
  1396. //species
  1397. function getSpeciesInfo(speciesList) {
  1398. let result = new Set();
  1399. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1400. result.add(entry)
  1401. });
  1402. return Array.from(result);
  1403. };
  1404. function getSpeciesInfoHelper(species) {
  1405. if (!speciesData[species]) {
  1406. console.warn(species + " doesn't exist");
  1407. return [];
  1408. }
  1409. if (speciesData[species].parents) {
  1410. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1411. } else {
  1412. return [species];
  1413. }
  1414. }
  1415. characterMakers.push(() => makeCharacter(
  1416. {
  1417. name: "Fen",
  1418. species: ["crux"],
  1419. description: {
  1420. title: "Bio",
  1421. text: "Very furry. Sheds on everything."
  1422. },
  1423. tags: [
  1424. "anthro",
  1425. "goo"
  1426. ]
  1427. },
  1428. {
  1429. back: {
  1430. height: math.unit(2.2428, "meter"),
  1431. weight: math.unit(124.738, "kg"),
  1432. name: "Back",
  1433. image: {
  1434. source: "./media/characters/fen/back.svg",
  1435. extra: 2024 / 1867,
  1436. bottom: 13 / 2037
  1437. },
  1438. info: {
  1439. description: {
  1440. mode: "append",
  1441. text: "\n\nHe is not currently looking at you."
  1442. }
  1443. }
  1444. },
  1445. full: {
  1446. height: math.unit(1.34, "meter"),
  1447. weight: math.unit(225, "kg"),
  1448. name: "Full",
  1449. image: {
  1450. source: "./media/characters/fen/full.svg"
  1451. },
  1452. info: {
  1453. description: {
  1454. mode: "append",
  1455. text: "\n\nMunch."
  1456. }
  1457. }
  1458. },
  1459. kneeling: {
  1460. height: math.unit(5.4, "feet"),
  1461. weight: math.unit(124.738, "kg"),
  1462. name: "Kneeling",
  1463. image: {
  1464. source: "./media/characters/fen/kneeling.svg",
  1465. extra: 563 / 507
  1466. }
  1467. },
  1468. goo: {
  1469. height: math.unit(2.8, "feet"),
  1470. weight: math.unit(125, "kg"),
  1471. capacity: math.unit(1, "people"),
  1472. name: "Goo",
  1473. image: {
  1474. source: "./media/characters/fen/goo.svg",
  1475. bottom: 116 / 613
  1476. }
  1477. },
  1478. lounging: {
  1479. height: math.unit(6.5, "feet"),
  1480. weight: math.unit(125, "kg"),
  1481. name: "Lounging",
  1482. image: {
  1483. source: "./media/characters/fen/lounging.svg"
  1484. }
  1485. },
  1486. },
  1487. [
  1488. {
  1489. name: "Normal",
  1490. height: math.unit(2.2428, "meter")
  1491. },
  1492. {
  1493. name: "Big",
  1494. height: math.unit(12, "feet")
  1495. },
  1496. {
  1497. name: "Minimacro",
  1498. height: math.unit(40, "feet"),
  1499. default: true,
  1500. info: {
  1501. description: {
  1502. mode: "append",
  1503. text: "\n\nTOO DAMN BIG"
  1504. }
  1505. }
  1506. },
  1507. {
  1508. name: "Macro",
  1509. height: math.unit(100, "feet"),
  1510. info: {
  1511. description: {
  1512. mode: "append",
  1513. text: "\n\nTOO DAMN BIG"
  1514. }
  1515. }
  1516. },
  1517. {
  1518. name: "Macro+",
  1519. height: math.unit(300, "feet")
  1520. },
  1521. {
  1522. name: "Megamacro",
  1523. height: math.unit(2, "miles")
  1524. }
  1525. ]
  1526. ))
  1527. characterMakers.push(() => makeCharacter(
  1528. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1529. {
  1530. front: {
  1531. height: math.unit(183, "cm"),
  1532. weight: math.unit(80, "kg"),
  1533. name: "Front",
  1534. image: {
  1535. source: "./media/characters/sofia-fluttertail/front.svg",
  1536. bottom: 0.01,
  1537. extra: 2154 / 2081
  1538. }
  1539. },
  1540. frontAlt: {
  1541. height: math.unit(183, "cm"),
  1542. weight: math.unit(80, "kg"),
  1543. name: "Front (alt)",
  1544. image: {
  1545. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1546. }
  1547. },
  1548. back: {
  1549. height: math.unit(183, "cm"),
  1550. weight: math.unit(80, "kg"),
  1551. name: "Back",
  1552. image: {
  1553. source: "./media/characters/sofia-fluttertail/back.svg"
  1554. }
  1555. },
  1556. kneeling: {
  1557. height: math.unit(125, "cm"),
  1558. weight: math.unit(80, "kg"),
  1559. name: "Kneeling",
  1560. image: {
  1561. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1562. extra: 1033 / 977,
  1563. bottom: 23.7 / 1057
  1564. }
  1565. },
  1566. maw: {
  1567. height: math.unit(183 / 5, "cm"),
  1568. name: "Maw",
  1569. image: {
  1570. source: "./media/characters/sofia-fluttertail/maw.svg"
  1571. }
  1572. },
  1573. mawcloseup: {
  1574. height: math.unit(183 / 5 * 0.41, "cm"),
  1575. name: "Maw (Closeup)",
  1576. image: {
  1577. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1578. }
  1579. },
  1580. paws: {
  1581. height: math.unit(1.17, "feet"),
  1582. name: "Paws",
  1583. image: {
  1584. source: "./media/characters/sofia-fluttertail/paws.svg",
  1585. extra: 851/851,
  1586. bottom: 17/868
  1587. }
  1588. },
  1589. },
  1590. [
  1591. {
  1592. name: "Normal",
  1593. height: math.unit(1.83, "meter")
  1594. },
  1595. {
  1596. name: "Size Thief",
  1597. height: math.unit(18, "feet")
  1598. },
  1599. {
  1600. name: "50 Foot Collie",
  1601. height: math.unit(50, "feet")
  1602. },
  1603. {
  1604. name: "Macro",
  1605. height: math.unit(96, "feet"),
  1606. default: true
  1607. },
  1608. {
  1609. name: "Megamerger",
  1610. height: math.unit(650, "feet")
  1611. },
  1612. ]
  1613. ))
  1614. characterMakers.push(() => makeCharacter(
  1615. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1616. {
  1617. front: {
  1618. height: math.unit(7, "feet"),
  1619. weight: math.unit(100, "kg"),
  1620. name: "Front",
  1621. image: {
  1622. source: "./media/characters/march/front.svg",
  1623. extra: 1,
  1624. bottom: 0.015
  1625. }
  1626. },
  1627. foot: {
  1628. height: math.unit(0.9, "feet"),
  1629. name: "Foot",
  1630. image: {
  1631. source: "./media/characters/march/foot.svg"
  1632. }
  1633. },
  1634. },
  1635. [
  1636. {
  1637. name: "Normal",
  1638. height: math.unit(7.9, "feet")
  1639. },
  1640. {
  1641. name: "Macro",
  1642. height: math.unit(220, "meters")
  1643. },
  1644. {
  1645. name: "Megamacro",
  1646. height: math.unit(2.98, "km"),
  1647. default: true
  1648. },
  1649. {
  1650. name: "Gigamacro",
  1651. height: math.unit(15963, "km")
  1652. },
  1653. {
  1654. name: "Teramacro",
  1655. height: math.unit(2980000000, "km")
  1656. },
  1657. {
  1658. name: "Examacro",
  1659. height: math.unit(250, "parsecs")
  1660. },
  1661. ]
  1662. ))
  1663. characterMakers.push(() => makeCharacter(
  1664. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1665. {
  1666. front: {
  1667. height: math.unit(6, "feet"),
  1668. weight: math.unit(60, "kg"),
  1669. name: "Front",
  1670. image: {
  1671. source: "./media/characters/noir/front.svg",
  1672. extra: 1,
  1673. bottom: 0.032
  1674. }
  1675. },
  1676. },
  1677. [
  1678. {
  1679. name: "Normal",
  1680. height: math.unit(6.6, "feet")
  1681. },
  1682. {
  1683. name: "Macro",
  1684. height: math.unit(500, "feet")
  1685. },
  1686. {
  1687. name: "Megamacro",
  1688. height: math.unit(2.5, "km"),
  1689. default: true
  1690. },
  1691. {
  1692. name: "Gigamacro",
  1693. height: math.unit(22500, "km")
  1694. },
  1695. {
  1696. name: "Teramacro",
  1697. height: math.unit(2500000000, "km")
  1698. },
  1699. {
  1700. name: "Examacro",
  1701. height: math.unit(200, "parsecs")
  1702. },
  1703. ]
  1704. ))
  1705. characterMakers.push(() => makeCharacter(
  1706. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1707. {
  1708. front: {
  1709. height: math.unit(7, "feet"),
  1710. weight: math.unit(100, "kg"),
  1711. name: "Front",
  1712. image: {
  1713. source: "./media/characters/okuri/front.svg",
  1714. extra: 1,
  1715. bottom: 0.037
  1716. }
  1717. },
  1718. back: {
  1719. height: math.unit(7, "feet"),
  1720. weight: math.unit(100, "kg"),
  1721. name: "Back",
  1722. image: {
  1723. source: "./media/characters/okuri/back.svg",
  1724. extra: 1,
  1725. bottom: 0.007
  1726. }
  1727. },
  1728. },
  1729. [
  1730. {
  1731. name: "Megamacro",
  1732. height: math.unit(100, "miles"),
  1733. default: true
  1734. },
  1735. ]
  1736. ))
  1737. characterMakers.push(() => makeCharacter(
  1738. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1739. {
  1740. front: {
  1741. height: math.unit(7, "feet"),
  1742. weight: math.unit(100, "kg"),
  1743. name: "Front",
  1744. image: {
  1745. source: "./media/characters/manny/front.svg",
  1746. extra: 1,
  1747. bottom: 0.06
  1748. }
  1749. },
  1750. back: {
  1751. height: math.unit(7, "feet"),
  1752. weight: math.unit(100, "kg"),
  1753. name: "Back",
  1754. image: {
  1755. source: "./media/characters/manny/back.svg",
  1756. extra: 1,
  1757. bottom: 0.014
  1758. }
  1759. },
  1760. },
  1761. [
  1762. {
  1763. name: "Normal",
  1764. height: math.unit(7, "feet"),
  1765. },
  1766. {
  1767. name: "Macro",
  1768. height: math.unit(78, "feet"),
  1769. default: true
  1770. },
  1771. {
  1772. name: "Macro+",
  1773. height: math.unit(300, "meters")
  1774. },
  1775. {
  1776. name: "Macro++",
  1777. height: math.unit(2400, "meters")
  1778. },
  1779. {
  1780. name: "Megamacro",
  1781. height: math.unit(5167, "meters")
  1782. },
  1783. {
  1784. name: "Gigamacro",
  1785. height: math.unit(41769, "miles")
  1786. },
  1787. ]
  1788. ))
  1789. characterMakers.push(() => makeCharacter(
  1790. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1791. {
  1792. front: {
  1793. height: math.unit(7, "feet"),
  1794. weight: math.unit(100, "kg"),
  1795. name: "Front",
  1796. image: {
  1797. source: "./media/characters/adake/front-1.svg"
  1798. }
  1799. },
  1800. frontAlt: {
  1801. height: math.unit(7, "feet"),
  1802. weight: math.unit(100, "kg"),
  1803. name: "Front (Alt)",
  1804. image: {
  1805. source: "./media/characters/adake/front-2.svg",
  1806. extra: 1,
  1807. bottom: 0.01
  1808. }
  1809. },
  1810. back: {
  1811. height: math.unit(7, "feet"),
  1812. weight: math.unit(100, "kg"),
  1813. name: "Back",
  1814. image: {
  1815. source: "./media/characters/adake/back.svg",
  1816. }
  1817. },
  1818. kneel: {
  1819. height: math.unit(5.385, "feet"),
  1820. weight: math.unit(100, "kg"),
  1821. name: "Kneeling",
  1822. image: {
  1823. source: "./media/characters/adake/kneel.svg",
  1824. bottom: 0.052
  1825. }
  1826. },
  1827. },
  1828. [
  1829. {
  1830. name: "Normal",
  1831. height: math.unit(7, "feet"),
  1832. },
  1833. {
  1834. name: "Macro",
  1835. height: math.unit(78, "feet"),
  1836. default: true
  1837. },
  1838. {
  1839. name: "Macro+",
  1840. height: math.unit(300, "meters")
  1841. },
  1842. {
  1843. name: "Macro++",
  1844. height: math.unit(2400, "meters")
  1845. },
  1846. {
  1847. name: "Megamacro",
  1848. height: math.unit(5167, "meters")
  1849. },
  1850. {
  1851. name: "Gigamacro",
  1852. height: math.unit(41769, "miles")
  1853. },
  1854. ]
  1855. ))
  1856. characterMakers.push(() => makeCharacter(
  1857. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1858. {
  1859. front: {
  1860. height: math.unit(1.65, "meters"),
  1861. weight: math.unit(50, "kg"),
  1862. name: "Front",
  1863. image: {
  1864. source: "./media/characters/elijah/front.svg",
  1865. extra: 858 / 830,
  1866. bottom: 95.5 / 953.8559
  1867. }
  1868. },
  1869. back: {
  1870. height: math.unit(1.65, "meters"),
  1871. weight: math.unit(50, "kg"),
  1872. name: "Back",
  1873. image: {
  1874. source: "./media/characters/elijah/back.svg",
  1875. extra: 895 / 850,
  1876. bottom: 5.3 / 897.956
  1877. }
  1878. },
  1879. frontNsfw: {
  1880. height: math.unit(1.65, "meters"),
  1881. weight: math.unit(50, "kg"),
  1882. name: "Front (NSFW)",
  1883. image: {
  1884. source: "./media/characters/elijah/front-nsfw.svg",
  1885. extra: 858 / 830,
  1886. bottom: 95.5 / 953.8559
  1887. }
  1888. },
  1889. backNsfw: {
  1890. height: math.unit(1.65, "meters"),
  1891. weight: math.unit(50, "kg"),
  1892. name: "Back (NSFW)",
  1893. image: {
  1894. source: "./media/characters/elijah/back-nsfw.svg",
  1895. extra: 895 / 850,
  1896. bottom: 5.3 / 897.956
  1897. }
  1898. },
  1899. dick: {
  1900. height: math.unit(1, "feet"),
  1901. name: "Dick",
  1902. image: {
  1903. source: "./media/characters/elijah/dick.svg"
  1904. }
  1905. },
  1906. beakOpen: {
  1907. height: math.unit(1.25, "feet"),
  1908. name: "Beak (Open)",
  1909. image: {
  1910. source: "./media/characters/elijah/beak-open.svg"
  1911. }
  1912. },
  1913. beakShut: {
  1914. height: math.unit(1.25, "feet"),
  1915. name: "Beak (Shut)",
  1916. image: {
  1917. source: "./media/characters/elijah/beak-shut.svg"
  1918. }
  1919. },
  1920. footFlexing: {
  1921. height: math.unit(1.61, "feet"),
  1922. name: "Foot (Flexing)",
  1923. image: {
  1924. source: "./media/characters/elijah/foot-flexing.svg"
  1925. }
  1926. },
  1927. footStepping: {
  1928. height: math.unit(1.44, "feet"),
  1929. name: "Foot (Stepping)",
  1930. image: {
  1931. source: "./media/characters/elijah/foot-stepping.svg"
  1932. }
  1933. },
  1934. plantigradeLeg: {
  1935. height: math.unit(2.34, "feet"),
  1936. name: "Plantigrade Leg",
  1937. image: {
  1938. source: "./media/characters/elijah/plantigrade-leg.svg"
  1939. }
  1940. },
  1941. plantigradeFootLeft: {
  1942. height: math.unit(0.9, "feet"),
  1943. name: "Plantigrade Foot (Left)",
  1944. image: {
  1945. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1946. }
  1947. },
  1948. plantigradeFootRight: {
  1949. height: math.unit(0.9, "feet"),
  1950. name: "Plantigrade Foot (Right)",
  1951. image: {
  1952. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1953. }
  1954. },
  1955. },
  1956. [
  1957. {
  1958. name: "Normal",
  1959. height: math.unit(1.65, "meters")
  1960. },
  1961. {
  1962. name: "Macro",
  1963. height: math.unit(55, "meters"),
  1964. default: true
  1965. },
  1966. {
  1967. name: "Macro+",
  1968. height: math.unit(105, "meters")
  1969. },
  1970. ]
  1971. ))
  1972. characterMakers.push(() => makeCharacter(
  1973. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1974. {
  1975. front: {
  1976. height: math.unit(11, "feet"),
  1977. weight: math.unit(80, "kg"),
  1978. name: "Front",
  1979. image: {
  1980. source: "./media/characters/rai/front.svg",
  1981. extra: 1,
  1982. bottom: 0.03
  1983. }
  1984. },
  1985. side: {
  1986. height: math.unit(11, "feet"),
  1987. weight: math.unit(80, "kg"),
  1988. name: "Side",
  1989. image: {
  1990. source: "./media/characters/rai/side.svg"
  1991. }
  1992. },
  1993. back: {
  1994. height: math.unit(11, "feet"),
  1995. weight: math.unit(80, "lb"),
  1996. name: "Back",
  1997. image: {
  1998. source: "./media/characters/rai/back.svg",
  1999. extra: 1,
  2000. bottom: 0.01
  2001. }
  2002. },
  2003. feral: {
  2004. height: math.unit(11, "feet"),
  2005. weight: math.unit(800, "lb"),
  2006. name: "Feral",
  2007. image: {
  2008. source: "./media/characters/rai/feral.svg",
  2009. extra: 1050 / 659,
  2010. bottom: 0.07
  2011. }
  2012. },
  2013. dragon: {
  2014. height: math.unit(23, "feet"),
  2015. weight: math.unit(50000, "lb"),
  2016. name: "Dragon",
  2017. image: {
  2018. source: "./media/characters/rai/dragon.svg",
  2019. extra: 2498 / 2030,
  2020. bottom: 85.2 / 2584
  2021. }
  2022. },
  2023. maw: {
  2024. height: math.unit(6 / 3.81416, "feet"),
  2025. name: "Maw",
  2026. image: {
  2027. source: "./media/characters/rai/maw.svg"
  2028. }
  2029. },
  2030. },
  2031. [
  2032. {
  2033. name: "Normal",
  2034. height: math.unit(11, "feet")
  2035. },
  2036. {
  2037. name: "Macro",
  2038. height: math.unit(302, "feet"),
  2039. default: true
  2040. },
  2041. ]
  2042. ))
  2043. characterMakers.push(() => makeCharacter(
  2044. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2045. {
  2046. frontDressed: {
  2047. height: math.unit(216, "feet"),
  2048. weight: math.unit(7000000, "lb"),
  2049. name: "Front (Dressed)",
  2050. image: {
  2051. source: "./media/characters/jazzy/front-dressed.svg",
  2052. extra: 2738 / 2651,
  2053. bottom: 41.8 / 2786
  2054. }
  2055. },
  2056. backDressed: {
  2057. height: math.unit(216, "feet"),
  2058. weight: math.unit(7000000, "lb"),
  2059. name: "Back (Dressed)",
  2060. image: {
  2061. source: "./media/characters/jazzy/back-dressed.svg",
  2062. extra: 2775 / 2673,
  2063. bottom: 36.8 / 2817
  2064. }
  2065. },
  2066. front: {
  2067. height: math.unit(216, "feet"),
  2068. weight: math.unit(7000000, "lb"),
  2069. name: "Front",
  2070. image: {
  2071. source: "./media/characters/jazzy/front.svg",
  2072. extra: 2738 / 2651,
  2073. bottom: 41.8 / 2786
  2074. }
  2075. },
  2076. back: {
  2077. height: math.unit(216, "feet"),
  2078. weight: math.unit(7000000, "lb"),
  2079. name: "Back",
  2080. image: {
  2081. source: "./media/characters/jazzy/back.svg",
  2082. extra: 2775 / 2673,
  2083. bottom: 36.8 / 2817
  2084. }
  2085. },
  2086. maw: {
  2087. height: math.unit(20, "feet"),
  2088. name: "Maw",
  2089. image: {
  2090. source: "./media/characters/jazzy/maw.svg"
  2091. }
  2092. },
  2093. paws: {
  2094. height: math.unit(27.5, "feet"),
  2095. name: "Paws",
  2096. image: {
  2097. source: "./media/characters/jazzy/paws.svg"
  2098. }
  2099. },
  2100. eye: {
  2101. height: math.unit(4.4, "feet"),
  2102. name: "Eye",
  2103. image: {
  2104. source: "./media/characters/jazzy/eye.svg"
  2105. }
  2106. },
  2107. droneOffense: {
  2108. height: math.unit(9.5, "inches"),
  2109. name: "Drone (Offense)",
  2110. image: {
  2111. source: "./media/characters/jazzy/drone-offense.svg"
  2112. }
  2113. },
  2114. droneRecon: {
  2115. height: math.unit(9.5, "inches"),
  2116. name: "Drone (Recon)",
  2117. image: {
  2118. source: "./media/characters/jazzy/drone-recon.svg"
  2119. }
  2120. },
  2121. droneDefense: {
  2122. height: math.unit(9.5, "inches"),
  2123. name: "Drone (Defense)",
  2124. image: {
  2125. source: "./media/characters/jazzy/drone-defense.svg"
  2126. }
  2127. },
  2128. },
  2129. [
  2130. {
  2131. name: "Macro",
  2132. height: math.unit(216, "feet"),
  2133. default: true
  2134. },
  2135. ]
  2136. ))
  2137. characterMakers.push(() => makeCharacter(
  2138. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2139. {
  2140. front: {
  2141. height: math.unit(7, "feet"),
  2142. weight: math.unit(80, "kg"),
  2143. name: "Front",
  2144. image: {
  2145. source: "./media/characters/flamm/front.svg",
  2146. extra: 1794 / 1677,
  2147. bottom: 31.7 / 1828.5
  2148. }
  2149. },
  2150. },
  2151. [
  2152. {
  2153. name: "Normal",
  2154. height: math.unit(9.5, "feet")
  2155. },
  2156. {
  2157. name: "Macro",
  2158. height: math.unit(200, "feet"),
  2159. default: true
  2160. },
  2161. ]
  2162. ))
  2163. characterMakers.push(() => makeCharacter(
  2164. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2165. {
  2166. front: {
  2167. height: math.unit(7, "feet"),
  2168. weight: math.unit(80, "kg"),
  2169. name: "Front",
  2170. image: {
  2171. source: "./media/characters/zephiro/front.svg",
  2172. extra: 2309 / 2162,
  2173. bottom: 0.069
  2174. }
  2175. },
  2176. side: {
  2177. height: math.unit(7, "feet"),
  2178. weight: math.unit(80, "kg"),
  2179. name: "Side",
  2180. image: {
  2181. source: "./media/characters/zephiro/side.svg",
  2182. extra: 2403 / 2279,
  2183. bottom: 0.015
  2184. }
  2185. },
  2186. back: {
  2187. height: math.unit(7, "feet"),
  2188. weight: math.unit(80, "kg"),
  2189. name: "Back",
  2190. image: {
  2191. source: "./media/characters/zephiro/back.svg",
  2192. extra: 2373 / 2244,
  2193. bottom: 0.013
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Micro",
  2200. height: math.unit(3, "inches")
  2201. },
  2202. {
  2203. name: "Normal",
  2204. height: math.unit(5 + 3 / 12, "feet"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Macro",
  2209. height: math.unit(118, "feet")
  2210. },
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2215. {
  2216. front: {
  2217. height: math.unit(5, "feet"),
  2218. weight: math.unit(90, "kg"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/fory/front.svg",
  2222. extra: 2862 / 2674,
  2223. bottom: 180 / 3043.8
  2224. }
  2225. },
  2226. back: {
  2227. height: math.unit(5, "feet"),
  2228. weight: math.unit(90, "kg"),
  2229. name: "Back",
  2230. image: {
  2231. source: "./media/characters/fory/back.svg",
  2232. extra: 2962 / 2791,
  2233. bottom: 106 / 3071.8
  2234. }
  2235. },
  2236. foot: {
  2237. height: math.unit(2.14, "feet"),
  2238. name: "Foot",
  2239. image: {
  2240. source: "./media/characters/fory/foot.svg"
  2241. }
  2242. },
  2243. },
  2244. [
  2245. {
  2246. name: "Normal",
  2247. height: math.unit(5, "feet")
  2248. },
  2249. {
  2250. name: "Macro",
  2251. height: math.unit(50, "feet"),
  2252. default: true
  2253. },
  2254. {
  2255. name: "Megamacro",
  2256. height: math.unit(10, "miles")
  2257. },
  2258. {
  2259. name: "Gigamacro",
  2260. height: math.unit(5, "earths")
  2261. },
  2262. ]
  2263. ))
  2264. characterMakers.push(() => makeCharacter(
  2265. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2266. {
  2267. front: {
  2268. height: math.unit(7, "feet"),
  2269. weight: math.unit(90, "kg"),
  2270. name: "Front",
  2271. image: {
  2272. source: "./media/characters/kurrikage/front.svg",
  2273. extra: 1,
  2274. bottom: 0.035
  2275. }
  2276. },
  2277. back: {
  2278. height: math.unit(7, "feet"),
  2279. weight: math.unit(90, "lb"),
  2280. name: "Back",
  2281. image: {
  2282. source: "./media/characters/kurrikage/back.svg"
  2283. }
  2284. },
  2285. paw: {
  2286. height: math.unit(1.5, "feet"),
  2287. name: "Paw",
  2288. image: {
  2289. source: "./media/characters/kurrikage/paw.svg"
  2290. }
  2291. },
  2292. staff: {
  2293. height: math.unit(6.7, "feet"),
  2294. name: "Staff",
  2295. image: {
  2296. source: "./media/characters/kurrikage/staff.svg"
  2297. }
  2298. },
  2299. peek: {
  2300. height: math.unit(1.05, "feet"),
  2301. name: "Peeking",
  2302. image: {
  2303. source: "./media/characters/kurrikage/peek.svg",
  2304. bottom: 0.08
  2305. }
  2306. },
  2307. },
  2308. [
  2309. {
  2310. name: "Normal",
  2311. height: math.unit(12, "feet"),
  2312. default: true
  2313. },
  2314. {
  2315. name: "Big",
  2316. height: math.unit(20, "feet")
  2317. },
  2318. {
  2319. name: "Macro",
  2320. height: math.unit(500, "feet")
  2321. },
  2322. {
  2323. name: "Megamacro",
  2324. height: math.unit(20, "miles")
  2325. },
  2326. ]
  2327. ))
  2328. characterMakers.push(() => makeCharacter(
  2329. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2330. {
  2331. front: {
  2332. height: math.unit(6, "feet"),
  2333. weight: math.unit(75, "kg"),
  2334. name: "Front",
  2335. image: {
  2336. source: "./media/characters/shingo/front.svg",
  2337. extra: 3511 / 3338,
  2338. bottom: 0.005
  2339. }
  2340. },
  2341. paw: {
  2342. height: math.unit(1, "feet"),
  2343. name: "Paw",
  2344. image: {
  2345. source: "./media/characters/shingo/paw.svg"
  2346. }
  2347. },
  2348. },
  2349. [
  2350. {
  2351. name: "Micro",
  2352. height: math.unit(4, "inches")
  2353. },
  2354. {
  2355. name: "Normal",
  2356. height: math.unit(6, "feet"),
  2357. default: true
  2358. },
  2359. {
  2360. name: "Macro",
  2361. height: math.unit(108, "feet")
  2362. }
  2363. ]
  2364. ))
  2365. characterMakers.push(() => makeCharacter(
  2366. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2367. {
  2368. side: {
  2369. height: math.unit(6, "feet"),
  2370. weight: math.unit(75, "kg"),
  2371. name: "Side",
  2372. image: {
  2373. source: "./media/characters/aigey/side.svg"
  2374. }
  2375. },
  2376. },
  2377. [
  2378. {
  2379. name: "Macro",
  2380. height: math.unit(200, "feet"),
  2381. default: true
  2382. },
  2383. {
  2384. name: "Megamacro",
  2385. height: math.unit(100, "miles")
  2386. },
  2387. ]
  2388. )
  2389. )
  2390. characterMakers.push(() => makeCharacter(
  2391. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2392. {
  2393. front: {
  2394. height: math.unit(5 + 5 / 12, "feet"),
  2395. weight: math.unit(75, "kg"),
  2396. name: "Front",
  2397. image: {
  2398. source: "./media/characters/natasha/front.svg",
  2399. extra: 859 / 824,
  2400. bottom: 23 / 879.6
  2401. }
  2402. },
  2403. frontNsfw: {
  2404. height: math.unit(5 + 5 / 12, "feet"),
  2405. weight: math.unit(75, "kg"),
  2406. name: "Front (NSFW)",
  2407. image: {
  2408. source: "./media/characters/natasha/front-nsfw.svg",
  2409. extra: 859 / 824,
  2410. bottom: 23 / 879.6
  2411. }
  2412. },
  2413. frontErect: {
  2414. height: math.unit(5 + 5 / 12, "feet"),
  2415. weight: math.unit(75, "kg"),
  2416. name: "Front (Erect)",
  2417. image: {
  2418. source: "./media/characters/natasha/front-erect.svg",
  2419. extra: 859 / 824,
  2420. bottom: 23 / 879.6
  2421. }
  2422. },
  2423. back: {
  2424. height: math.unit(5 + 5 / 12, "feet"),
  2425. weight: math.unit(75, "kg"),
  2426. name: "Back",
  2427. image: {
  2428. source: "./media/characters/natasha/back.svg",
  2429. extra: 887.9 / 852.6,
  2430. bottom: 9.7 / 896.4
  2431. }
  2432. },
  2433. backAlt: {
  2434. height: math.unit(5 + 5 / 12, "feet"),
  2435. weight: math.unit(75, "kg"),
  2436. name: "Back (Alt)",
  2437. image: {
  2438. source: "./media/characters/natasha/back-alt.svg",
  2439. extra: 1236.7 / 1192,
  2440. bottom: 22.3 / 1258.2
  2441. }
  2442. },
  2443. dick: {
  2444. height: math.unit(1.772, "feet"),
  2445. name: "Dick",
  2446. image: {
  2447. source: "./media/characters/natasha/dick.svg"
  2448. }
  2449. },
  2450. paw: {
  2451. height: math.unit(0.250, "meters"),
  2452. name: "Paw",
  2453. image: {
  2454. source: "./media/characters/natasha/paw.svg"
  2455. }
  2456. },
  2457. },
  2458. [
  2459. {
  2460. name: "Normal",
  2461. height: math.unit(5 + 5 / 12, "feet")
  2462. },
  2463. {
  2464. name: "Large",
  2465. height: math.unit(12, "feet")
  2466. },
  2467. {
  2468. name: "Macro",
  2469. height: math.unit(100, "feet"),
  2470. default: true
  2471. },
  2472. {
  2473. name: "Macro+",
  2474. height: math.unit(260, "feet")
  2475. },
  2476. {
  2477. name: "Macro++",
  2478. height: math.unit(1, "mile")
  2479. },
  2480. ]
  2481. ))
  2482. characterMakers.push(() => makeCharacter(
  2483. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2484. {
  2485. front: {
  2486. height: math.unit(6, "feet"),
  2487. weight: math.unit(75, "kg"),
  2488. name: "Front",
  2489. image: {
  2490. source: "./media/characters/malik/front.svg"
  2491. }
  2492. },
  2493. side: {
  2494. height: math.unit(6, "feet"),
  2495. weight: math.unit(75, "kg"),
  2496. name: "Side",
  2497. image: {
  2498. source: "./media/characters/malik/side.svg",
  2499. extra: 1.1539
  2500. }
  2501. },
  2502. back: {
  2503. height: math.unit(6, "feet"),
  2504. weight: math.unit(75, "kg"),
  2505. name: "Back",
  2506. image: {
  2507. source: "./media/characters/malik/back.svg"
  2508. }
  2509. },
  2510. },
  2511. [
  2512. {
  2513. name: "Macro",
  2514. height: math.unit(156, "feet"),
  2515. default: true
  2516. },
  2517. {
  2518. name: "Macro+",
  2519. height: math.unit(1188, "feet")
  2520. },
  2521. ]
  2522. ))
  2523. characterMakers.push(() => makeCharacter(
  2524. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2525. {
  2526. front: {
  2527. height: math.unit(6, "feet"),
  2528. weight: math.unit(75, "kg"),
  2529. name: "Front",
  2530. image: {
  2531. source: "./media/characters/sefer/front.svg",
  2532. extra: 848 / 659,
  2533. bottom: 28.3 / 876.442
  2534. }
  2535. },
  2536. back: {
  2537. height: math.unit(6, "feet"),
  2538. weight: math.unit(75, "kg"),
  2539. name: "Back",
  2540. image: {
  2541. source: "./media/characters/sefer/back.svg",
  2542. extra: 864 / 695,
  2543. bottom: 10 / 871
  2544. }
  2545. },
  2546. frontDressed: {
  2547. height: math.unit(6, "feet"),
  2548. weight: math.unit(75, "kg"),
  2549. name: "Front (Dressed)",
  2550. image: {
  2551. source: "./media/characters/sefer/front-dressed.svg",
  2552. extra: 839 / 653,
  2553. bottom: 37.6 / 878
  2554. }
  2555. },
  2556. },
  2557. [
  2558. {
  2559. name: "Normal",
  2560. height: math.unit(6, "feet"),
  2561. default: true
  2562. },
  2563. ]
  2564. ))
  2565. characterMakers.push(() => makeCharacter(
  2566. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2567. {
  2568. body: {
  2569. height: math.unit(2.2428, "meter"),
  2570. weight: math.unit(124.738, "kg"),
  2571. name: "Body",
  2572. image: {
  2573. extra: 1225 / 1050,
  2574. source: "./media/characters/north/front.svg"
  2575. }
  2576. }
  2577. },
  2578. [
  2579. {
  2580. name: "Micro",
  2581. height: math.unit(4, "inches")
  2582. },
  2583. {
  2584. name: "Macro",
  2585. height: math.unit(63, "meters")
  2586. },
  2587. {
  2588. name: "Megamacro",
  2589. height: math.unit(101, "miles"),
  2590. default: true
  2591. }
  2592. ]
  2593. ))
  2594. characterMakers.push(() => makeCharacter(
  2595. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2596. {
  2597. angled: {
  2598. height: math.unit(4, "meter"),
  2599. weight: math.unit(150, "kg"),
  2600. name: "Angled",
  2601. image: {
  2602. source: "./media/characters/talan/angled-sfw.svg",
  2603. bottom: 29 / 3734
  2604. }
  2605. },
  2606. angledNsfw: {
  2607. height: math.unit(4, "meter"),
  2608. weight: math.unit(150, "kg"),
  2609. name: "Angled (NSFW)",
  2610. image: {
  2611. source: "./media/characters/talan/angled-nsfw.svg",
  2612. bottom: 29 / 3734
  2613. }
  2614. },
  2615. frontNsfw: {
  2616. height: math.unit(4, "meter"),
  2617. weight: math.unit(150, "kg"),
  2618. name: "Front (NSFW)",
  2619. image: {
  2620. source: "./media/characters/talan/front-nsfw.svg",
  2621. bottom: 29 / 3734
  2622. }
  2623. },
  2624. sideNsfw: {
  2625. height: math.unit(4, "meter"),
  2626. weight: math.unit(150, "kg"),
  2627. name: "Side (NSFW)",
  2628. image: {
  2629. source: "./media/characters/talan/side-nsfw.svg",
  2630. bottom: 29 / 3734
  2631. }
  2632. },
  2633. back: {
  2634. height: math.unit(4, "meter"),
  2635. weight: math.unit(150, "kg"),
  2636. name: "Back",
  2637. image: {
  2638. source: "./media/characters/talan/back.svg"
  2639. }
  2640. },
  2641. dickBottom: {
  2642. height: math.unit(0.621, "meter"),
  2643. name: "Dick (Bottom)",
  2644. image: {
  2645. source: "./media/characters/talan/dick-bottom.svg"
  2646. }
  2647. },
  2648. dickTop: {
  2649. height: math.unit(0.621, "meter"),
  2650. name: "Dick (Top)",
  2651. image: {
  2652. source: "./media/characters/talan/dick-top.svg"
  2653. }
  2654. },
  2655. dickSide: {
  2656. height: math.unit(0.305, "meter"),
  2657. name: "Dick (Side)",
  2658. image: {
  2659. source: "./media/characters/talan/dick-side.svg"
  2660. }
  2661. },
  2662. dickFront: {
  2663. height: math.unit(0.305, "meter"),
  2664. name: "Dick (Front)",
  2665. image: {
  2666. source: "./media/characters/talan/dick-front.svg"
  2667. }
  2668. },
  2669. },
  2670. [
  2671. {
  2672. name: "Normal",
  2673. height: math.unit(4, "meters")
  2674. },
  2675. {
  2676. name: "Macro",
  2677. height: math.unit(100, "meters")
  2678. },
  2679. {
  2680. name: "Megamacro",
  2681. height: math.unit(2, "miles"),
  2682. default: true
  2683. },
  2684. {
  2685. name: "Gigamacro",
  2686. height: math.unit(5000, "miles")
  2687. },
  2688. {
  2689. name: "Teramacro",
  2690. height: math.unit(100, "parsecs")
  2691. }
  2692. ]
  2693. ))
  2694. characterMakers.push(() => makeCharacter(
  2695. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2696. {
  2697. front: {
  2698. height: math.unit(2, "meter"),
  2699. weight: math.unit(90, "kg"),
  2700. name: "Front",
  2701. image: {
  2702. source: "./media/characters/gael'rathus/front.svg"
  2703. }
  2704. },
  2705. frontAlt: {
  2706. height: math.unit(2, "meter"),
  2707. weight: math.unit(90, "kg"),
  2708. name: "Front (alt)",
  2709. image: {
  2710. source: "./media/characters/gael'rathus/front-alt.svg"
  2711. }
  2712. },
  2713. frontAlt2: {
  2714. height: math.unit(2, "meter"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Front (alt 2)",
  2717. image: {
  2718. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2719. }
  2720. }
  2721. },
  2722. [
  2723. {
  2724. name: "Normal",
  2725. height: math.unit(9, "feet"),
  2726. default: true
  2727. },
  2728. {
  2729. name: "Large",
  2730. height: math.unit(25, "feet")
  2731. },
  2732. {
  2733. name: "Macro",
  2734. height: math.unit(0.25, "miles")
  2735. },
  2736. {
  2737. name: "Megamacro",
  2738. height: math.unit(10, "miles")
  2739. }
  2740. ]
  2741. ))
  2742. characterMakers.push(() => makeCharacter(
  2743. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2744. {
  2745. side: {
  2746. height: math.unit(2, "meter"),
  2747. weight: math.unit(140, "kg"),
  2748. name: "Side",
  2749. image: {
  2750. source: "./media/characters/sosha/side.svg",
  2751. bottom: 0.042
  2752. }
  2753. },
  2754. },
  2755. [
  2756. {
  2757. name: "Normal",
  2758. height: math.unit(12, "feet"),
  2759. default: true
  2760. }
  2761. ]
  2762. ))
  2763. characterMakers.push(() => makeCharacter(
  2764. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2765. {
  2766. side: {
  2767. height: math.unit(5 + 5 / 12, "feet"),
  2768. weight: math.unit(170, "kg"),
  2769. name: "Side",
  2770. image: {
  2771. source: "./media/characters/runnola/side.svg",
  2772. extra: 741 / 448,
  2773. bottom: 0.05
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Small",
  2780. height: math.unit(3, "feet")
  2781. },
  2782. {
  2783. name: "Normal",
  2784. height: math.unit(5 + 5 / 12, "feet"),
  2785. default: true
  2786. },
  2787. {
  2788. name: "Big",
  2789. height: math.unit(10, "feet")
  2790. },
  2791. ]
  2792. ))
  2793. characterMakers.push(() => makeCharacter(
  2794. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2795. {
  2796. front: {
  2797. height: math.unit(2, "meter"),
  2798. weight: math.unit(50, "kg"),
  2799. name: "Front",
  2800. image: {
  2801. source: "./media/characters/kurribird/front.svg",
  2802. bottom: 0.015
  2803. }
  2804. },
  2805. frontAlt: {
  2806. height: math.unit(1.5, "meter"),
  2807. weight: math.unit(50, "kg"),
  2808. name: "Front (Alt)",
  2809. image: {
  2810. source: "./media/characters/kurribird/front-alt.svg",
  2811. extra: 1.45
  2812. }
  2813. },
  2814. },
  2815. [
  2816. {
  2817. name: "Normal",
  2818. height: math.unit(7, "feet")
  2819. },
  2820. {
  2821. name: "Big",
  2822. height: math.unit(12, "feet"),
  2823. default: true
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(1500, "feet")
  2828. },
  2829. {
  2830. name: "Megamacro",
  2831. height: math.unit(2, "miles")
  2832. }
  2833. ]
  2834. ))
  2835. characterMakers.push(() => makeCharacter(
  2836. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2837. {
  2838. front: {
  2839. height: math.unit(2, "meter"),
  2840. weight: math.unit(80, "kg"),
  2841. name: "Front",
  2842. image: {
  2843. source: "./media/characters/elbial/front.svg",
  2844. extra: 1643 / 1556,
  2845. bottom: 60.2 / 1696
  2846. }
  2847. },
  2848. side: {
  2849. height: math.unit(2, "meter"),
  2850. weight: math.unit(80, "kg"),
  2851. name: "Side",
  2852. image: {
  2853. source: "./media/characters/elbial/side.svg",
  2854. extra: 1630 / 1565,
  2855. bottom: 71.5 / 1697
  2856. }
  2857. },
  2858. back: {
  2859. height: math.unit(2, "meter"),
  2860. weight: math.unit(80, "kg"),
  2861. name: "Back",
  2862. image: {
  2863. source: "./media/characters/elbial/back.svg",
  2864. extra: 1668 / 1595,
  2865. bottom: 5.6 / 1672
  2866. }
  2867. },
  2868. frontDressed: {
  2869. height: math.unit(2, "meter"),
  2870. weight: math.unit(80, "kg"),
  2871. name: "Front (Dressed)",
  2872. image: {
  2873. source: "./media/characters/elbial/front-dressed.svg",
  2874. extra: 1653 / 1584,
  2875. bottom: 57 / 1708
  2876. }
  2877. },
  2878. genitals: {
  2879. height: math.unit(2 / 3.367, "meter"),
  2880. name: "Genitals",
  2881. image: {
  2882. source: "./media/characters/elbial/genitals.svg"
  2883. }
  2884. },
  2885. },
  2886. [
  2887. {
  2888. name: "Large",
  2889. height: math.unit(100, "feet")
  2890. },
  2891. {
  2892. name: "Macro",
  2893. height: math.unit(500, "feet"),
  2894. default: true
  2895. },
  2896. {
  2897. name: "Megamacro",
  2898. height: math.unit(10, "miles")
  2899. },
  2900. {
  2901. name: "Gigamacro",
  2902. height: math.unit(25000, "miles")
  2903. },
  2904. {
  2905. name: "Full-Size",
  2906. height: math.unit(8000000, "gigaparsecs")
  2907. }
  2908. ]
  2909. ))
  2910. characterMakers.push(() => makeCharacter(
  2911. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2912. {
  2913. front: {
  2914. height: math.unit(2, "meter"),
  2915. weight: math.unit(60, "kg"),
  2916. name: "Front",
  2917. image: {
  2918. source: "./media/characters/noah/front.svg"
  2919. }
  2920. },
  2921. talons: {
  2922. height: math.unit(0.315, "meter"),
  2923. name: "Talons",
  2924. image: {
  2925. source: "./media/characters/noah/talons.svg"
  2926. }
  2927. }
  2928. },
  2929. [
  2930. {
  2931. name: "Large",
  2932. height: math.unit(50, "feet")
  2933. },
  2934. {
  2935. name: "Macro",
  2936. height: math.unit(750, "feet"),
  2937. default: true
  2938. },
  2939. {
  2940. name: "Megamacro",
  2941. height: math.unit(50, "miles")
  2942. },
  2943. {
  2944. name: "Gigamacro",
  2945. height: math.unit(100000, "miles")
  2946. },
  2947. {
  2948. name: "Full-Size",
  2949. height: math.unit(3000000000, "miles")
  2950. }
  2951. ]
  2952. ))
  2953. characterMakers.push(() => makeCharacter(
  2954. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2955. {
  2956. front: {
  2957. height: math.unit(2, "meter"),
  2958. weight: math.unit(80, "kg"),
  2959. name: "Front",
  2960. image: {
  2961. source: "./media/characters/natalya/front.svg"
  2962. }
  2963. },
  2964. back: {
  2965. height: math.unit(2, "meter"),
  2966. weight: math.unit(80, "kg"),
  2967. name: "Back",
  2968. image: {
  2969. source: "./media/characters/natalya/back.svg"
  2970. }
  2971. }
  2972. },
  2973. [
  2974. {
  2975. name: "Normal",
  2976. height: math.unit(150, "feet"),
  2977. default: true
  2978. },
  2979. {
  2980. name: "Megamacro",
  2981. height: math.unit(5, "miles")
  2982. },
  2983. {
  2984. name: "Full-Size",
  2985. height: math.unit(600, "kiloparsecs")
  2986. }
  2987. ]
  2988. ))
  2989. characterMakers.push(() => makeCharacter(
  2990. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2991. {
  2992. front: {
  2993. height: math.unit(2, "meter"),
  2994. weight: math.unit(50, "kg"),
  2995. name: "Front",
  2996. image: {
  2997. source: "./media/characters/erestrebah/front.svg",
  2998. extra: 208 / 193,
  2999. bottom: 0.055
  3000. }
  3001. },
  3002. back: {
  3003. height: math.unit(2, "meter"),
  3004. weight: math.unit(50, "kg"),
  3005. name: "Back",
  3006. image: {
  3007. source: "./media/characters/erestrebah/back.svg",
  3008. extra: 1.3
  3009. }
  3010. }
  3011. },
  3012. [
  3013. {
  3014. name: "Normal",
  3015. height: math.unit(10, "feet")
  3016. },
  3017. {
  3018. name: "Large",
  3019. height: math.unit(50, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Macro",
  3024. height: math.unit(300, "feet")
  3025. },
  3026. {
  3027. name: "Macro+",
  3028. height: math.unit(750, "feet")
  3029. },
  3030. {
  3031. name: "Megamacro",
  3032. height: math.unit(3, "miles")
  3033. }
  3034. ]
  3035. ))
  3036. characterMakers.push(() => makeCharacter(
  3037. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3038. {
  3039. front: {
  3040. height: math.unit(2, "meter"),
  3041. weight: math.unit(80, "kg"),
  3042. name: "Front",
  3043. image: {
  3044. source: "./media/characters/jennifer/front.svg",
  3045. bottom: 0.11,
  3046. extra: 1.16
  3047. }
  3048. },
  3049. frontAlt: {
  3050. height: math.unit(2, "meter"),
  3051. weight: math.unit(80, "kg"),
  3052. name: "Front (Alt)",
  3053. image: {
  3054. source: "./media/characters/jennifer/front-alt.svg"
  3055. }
  3056. }
  3057. },
  3058. [
  3059. {
  3060. name: "Canon Height",
  3061. height: math.unit(120, "feet"),
  3062. default: true
  3063. },
  3064. {
  3065. name: "Macro+",
  3066. height: math.unit(300, "feet")
  3067. },
  3068. {
  3069. name: "Megamacro",
  3070. height: math.unit(20000, "feet")
  3071. }
  3072. ]
  3073. ))
  3074. characterMakers.push(() => makeCharacter(
  3075. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3076. {
  3077. front: {
  3078. height: math.unit(2, "meter"),
  3079. weight: math.unit(50, "kg"),
  3080. name: "Front",
  3081. image: {
  3082. source: "./media/characters/kalista/front.svg",
  3083. extra: 1947 / 1700,
  3084. bottom: 76.6 / 1412.98
  3085. }
  3086. },
  3087. back: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(50, "kg"),
  3090. name: "Back",
  3091. image: {
  3092. source: "./media/characters/kalista/back.svg",
  3093. extra: 1366 / 1156,
  3094. bottom: 33.9 / 1362.78
  3095. }
  3096. }
  3097. },
  3098. [
  3099. {
  3100. name: "Uncomfortably Small",
  3101. height: math.unit(10, "feet")
  3102. },
  3103. {
  3104. name: "Small",
  3105. height: math.unit(30, "feet")
  3106. },
  3107. {
  3108. name: "Macro",
  3109. height: math.unit(100, "feet"),
  3110. default: true
  3111. },
  3112. {
  3113. name: "Macro+",
  3114. height: math.unit(2000, "feet")
  3115. },
  3116. {
  3117. name: "True Form",
  3118. height: math.unit(8924, "miles")
  3119. }
  3120. ]
  3121. ))
  3122. characterMakers.push(() => makeCharacter(
  3123. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3124. {
  3125. front: {
  3126. height: math.unit(2, "meter"),
  3127. weight: math.unit(120, "kg"),
  3128. name: "Front",
  3129. image: {
  3130. source: "./media/characters/ggv/front.svg"
  3131. }
  3132. },
  3133. side: {
  3134. height: math.unit(2, "meter"),
  3135. weight: math.unit(120, "kg"),
  3136. name: "Side",
  3137. image: {
  3138. source: "./media/characters/ggv/side.svg"
  3139. }
  3140. }
  3141. },
  3142. [
  3143. {
  3144. name: "Extremely Puny",
  3145. height: math.unit(9 + 5 / 12, "feet")
  3146. },
  3147. {
  3148. name: "Horribly Small",
  3149. height: math.unit(47.7, "miles"),
  3150. default: true
  3151. },
  3152. {
  3153. name: "Reasonably Sized",
  3154. height: math.unit(25000, "parsecs")
  3155. },
  3156. {
  3157. name: "Slightly Uncompressed",
  3158. height: math.unit(7.77e31, "parsecs")
  3159. },
  3160. {
  3161. name: "Omniversal",
  3162. height: math.unit(1e300, "meters")
  3163. },
  3164. ]
  3165. ))
  3166. characterMakers.push(() => makeCharacter(
  3167. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3168. {
  3169. front: {
  3170. height: math.unit(2, "meter"),
  3171. weight: math.unit(75, "lb"),
  3172. name: "Front",
  3173. image: {
  3174. source: "./media/characters/napalm/front.svg"
  3175. }
  3176. },
  3177. back: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(75, "lb"),
  3180. name: "Back",
  3181. image: {
  3182. source: "./media/characters/napalm/back.svg"
  3183. }
  3184. }
  3185. },
  3186. [
  3187. {
  3188. name: "Standard",
  3189. height: math.unit(55, "feet"),
  3190. default: true
  3191. }
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3196. {
  3197. front: {
  3198. height: math.unit(7 + 5 / 6, "feet"),
  3199. weight: math.unit(325, "lb"),
  3200. name: "Front",
  3201. image: {
  3202. source: "./media/characters/asana/front.svg",
  3203. extra: 1133 / 1060,
  3204. bottom: 15.2 / 1148.6
  3205. }
  3206. },
  3207. back: {
  3208. height: math.unit(7 + 5 / 6, "feet"),
  3209. weight: math.unit(325, "lb"),
  3210. name: "Back",
  3211. image: {
  3212. source: "./media/characters/asana/back.svg",
  3213. extra: 1114 / 1043,
  3214. bottom: 5 / 1120
  3215. }
  3216. },
  3217. dressedDark: {
  3218. height: math.unit(7 + 5 / 6, "feet"),
  3219. weight: math.unit(325, "lb"),
  3220. name: "Dressed (Dark)",
  3221. image: {
  3222. source: "./media/characters/asana/dressed-dark.svg",
  3223. extra: 1133 / 1060,
  3224. bottom: 15.2 / 1148.6
  3225. }
  3226. },
  3227. dressedLight: {
  3228. height: math.unit(7 + 5 / 6, "feet"),
  3229. weight: math.unit(325, "lb"),
  3230. name: "Dressed (Light)",
  3231. image: {
  3232. source: "./media/characters/asana/dressed-light.svg",
  3233. extra: 1133 / 1060,
  3234. bottom: 15.2 / 1148.6
  3235. }
  3236. },
  3237. },
  3238. [
  3239. {
  3240. name: "Standard",
  3241. height: math.unit(7 + 5 / 6, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Large",
  3246. height: math.unit(10, "meters")
  3247. },
  3248. {
  3249. name: "Macro",
  3250. height: math.unit(2500, "meters")
  3251. },
  3252. {
  3253. name: "Megamacro",
  3254. height: math.unit(5e6, "meters")
  3255. },
  3256. {
  3257. name: "Examacro",
  3258. height: math.unit(5e12, "lightyears")
  3259. },
  3260. {
  3261. name: "Max Size",
  3262. height: math.unit(1e31, "lightyears")
  3263. }
  3264. ]
  3265. ))
  3266. characterMakers.push(() => makeCharacter(
  3267. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3268. {
  3269. front: {
  3270. height: math.unit(2, "meter"),
  3271. weight: math.unit(60, "kg"),
  3272. name: "Front",
  3273. image: {
  3274. source: "./media/characters/ebony/front.svg",
  3275. bottom: 0.03,
  3276. extra: 1045 / 810 + 0.03
  3277. }
  3278. },
  3279. side: {
  3280. height: math.unit(2, "meter"),
  3281. weight: math.unit(60, "kg"),
  3282. name: "Side",
  3283. image: {
  3284. source: "./media/characters/ebony/side.svg",
  3285. bottom: 0.03,
  3286. extra: 1045 / 810 + 0.03
  3287. }
  3288. },
  3289. back: {
  3290. height: math.unit(2, "meter"),
  3291. weight: math.unit(60, "kg"),
  3292. name: "Back",
  3293. image: {
  3294. source: "./media/characters/ebony/back.svg",
  3295. bottom: 0.01,
  3296. extra: 1045 / 810 + 0.01
  3297. }
  3298. },
  3299. },
  3300. [
  3301. // TODO check why I did this lol
  3302. {
  3303. name: "Standard",
  3304. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3305. default: true
  3306. },
  3307. {
  3308. name: "Macro",
  3309. height: math.unit(200, "feet")
  3310. },
  3311. {
  3312. name: "Gigamacro",
  3313. height: math.unit(13000, "km")
  3314. }
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3319. {
  3320. front: {
  3321. height: math.unit(6, "feet"),
  3322. weight: math.unit(175, "lb"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/mountain/front.svg",
  3326. extra: 972 / 955,
  3327. bottom: 64 / 1036.6
  3328. }
  3329. },
  3330. back: {
  3331. height: math.unit(6, "feet"),
  3332. weight: math.unit(175, "lb"),
  3333. name: "Back",
  3334. image: {
  3335. source: "./media/characters/mountain/back.svg",
  3336. extra: 970 / 950,
  3337. bottom: 28.25 / 999
  3338. }
  3339. },
  3340. },
  3341. [
  3342. {
  3343. name: "Large",
  3344. height: math.unit(20, "meters")
  3345. },
  3346. {
  3347. name: "Macro",
  3348. height: math.unit(300, "meters")
  3349. },
  3350. {
  3351. name: "Gigamacro",
  3352. height: math.unit(10000, "km"),
  3353. default: true
  3354. },
  3355. {
  3356. name: "Examacro",
  3357. height: math.unit(10e9, "lightyears")
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3363. {
  3364. front: {
  3365. height: math.unit(8, "feet"),
  3366. weight: math.unit(500, "lb"),
  3367. name: "Front",
  3368. image: {
  3369. source: "./media/characters/rick/front.svg"
  3370. }
  3371. }
  3372. },
  3373. [
  3374. {
  3375. name: "Normal",
  3376. height: math.unit(8, "feet"),
  3377. default: true
  3378. },
  3379. {
  3380. name: "Macro",
  3381. height: math.unit(5, "km")
  3382. }
  3383. ]
  3384. ))
  3385. characterMakers.push(() => makeCharacter(
  3386. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3387. {
  3388. front: {
  3389. height: math.unit(8, "feet"),
  3390. weight: math.unit(120, "lb"),
  3391. name: "Front",
  3392. image: {
  3393. source: "./media/characters/ona/front.svg"
  3394. }
  3395. },
  3396. frontAlt: {
  3397. height: math.unit(8, "feet"),
  3398. weight: math.unit(120, "lb"),
  3399. name: "Front (Alt)",
  3400. image: {
  3401. source: "./media/characters/ona/front-alt.svg"
  3402. }
  3403. },
  3404. back: {
  3405. height: math.unit(8, "feet"),
  3406. weight: math.unit(120, "lb"),
  3407. name: "Back",
  3408. image: {
  3409. source: "./media/characters/ona/back.svg"
  3410. }
  3411. },
  3412. foot: {
  3413. height: math.unit(1.1, "feet"),
  3414. name: "Foot",
  3415. image: {
  3416. source: "./media/characters/ona/foot.svg"
  3417. }
  3418. }
  3419. },
  3420. [
  3421. {
  3422. name: "Megamacro",
  3423. height: math.unit(70, "km"),
  3424. default: true
  3425. },
  3426. {
  3427. name: "Gigamacro",
  3428. height: math.unit(681818, "miles")
  3429. },
  3430. {
  3431. name: "Examacro",
  3432. height: math.unit(3800000, "lightyears")
  3433. },
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(12, "feet"),
  3441. weight: math.unit(3000, "lb"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/mech/front.svg",
  3445. extra: 2900 / 2770,
  3446. bottom: 110 / 3010
  3447. }
  3448. },
  3449. back: {
  3450. height: math.unit(12, "feet"),
  3451. weight: math.unit(3000, "lb"),
  3452. name: "Back",
  3453. image: {
  3454. source: "./media/characters/mech/back.svg",
  3455. extra: 3011 / 2890,
  3456. bottom: 94 / 3105
  3457. }
  3458. },
  3459. maw: {
  3460. height: math.unit(3.07, "feet"),
  3461. name: "Maw",
  3462. image: {
  3463. source: "./media/characters/mech/maw.svg"
  3464. }
  3465. },
  3466. head: {
  3467. height: math.unit(2.82, "feet"),
  3468. name: "Head",
  3469. image: {
  3470. source: "./media/characters/mech/head.svg"
  3471. }
  3472. },
  3473. dick: {
  3474. height: math.unit(1.43, "feet"),
  3475. name: "Dick",
  3476. image: {
  3477. source: "./media/characters/mech/dick.svg"
  3478. }
  3479. },
  3480. },
  3481. [
  3482. {
  3483. name: "Normal",
  3484. height: math.unit(12, "feet")
  3485. },
  3486. {
  3487. name: "Macro",
  3488. height: math.unit(300, "feet"),
  3489. default: true
  3490. },
  3491. {
  3492. name: "Macro+",
  3493. height: math.unit(1500, "feet")
  3494. },
  3495. ]
  3496. ))
  3497. characterMakers.push(() => makeCharacter(
  3498. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3499. {
  3500. front: {
  3501. height: math.unit(1.3, "meter"),
  3502. weight: math.unit(30, "kg"),
  3503. name: "Front",
  3504. image: {
  3505. source: "./media/characters/gregory/front.svg",
  3506. }
  3507. }
  3508. },
  3509. [
  3510. {
  3511. name: "Normal",
  3512. height: math.unit(1.3, "meter"),
  3513. default: true
  3514. },
  3515. {
  3516. name: "Macro",
  3517. height: math.unit(20, "meter")
  3518. }
  3519. ]
  3520. ))
  3521. characterMakers.push(() => makeCharacter(
  3522. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3523. {
  3524. front: {
  3525. height: math.unit(2.8, "meter"),
  3526. weight: math.unit(200, "kg"),
  3527. name: "Front",
  3528. image: {
  3529. source: "./media/characters/elory/front.svg",
  3530. }
  3531. }
  3532. },
  3533. [
  3534. {
  3535. name: "Normal",
  3536. height: math.unit(2.8, "meter"),
  3537. default: true
  3538. },
  3539. {
  3540. name: "Macro",
  3541. height: math.unit(38, "meter")
  3542. }
  3543. ]
  3544. ))
  3545. characterMakers.push(() => makeCharacter(
  3546. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3547. {
  3548. front: {
  3549. height: math.unit(470, "feet"),
  3550. weight: math.unit(924, "tons"),
  3551. name: "Front",
  3552. image: {
  3553. source: "./media/characters/angelpatamon/front.svg",
  3554. }
  3555. }
  3556. },
  3557. [
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(470, "feet"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Deity Size I",
  3565. height: math.unit(28651.2, "km")
  3566. },
  3567. {
  3568. name: "Deity Size II",
  3569. height: math.unit(171907.2, "km")
  3570. }
  3571. ]
  3572. ))
  3573. characterMakers.push(() => makeCharacter(
  3574. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3575. {
  3576. side: {
  3577. height: math.unit(7.2, "meter"),
  3578. weight: math.unit(8.2, "tons"),
  3579. name: "Side",
  3580. image: {
  3581. source: "./media/characters/cryae/side.svg",
  3582. extra: 3500 / 1500
  3583. }
  3584. }
  3585. },
  3586. [
  3587. {
  3588. name: "Normal",
  3589. height: math.unit(7.2, "meter"),
  3590. default: true
  3591. }
  3592. ]
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3596. {
  3597. front: {
  3598. height: math.unit(6, "feet"),
  3599. weight: math.unit(175, "lb"),
  3600. name: "Front",
  3601. image: {
  3602. source: "./media/characters/xera/front.svg",
  3603. extra: 2377 / 1972,
  3604. bottom: 75.5 / 2452
  3605. }
  3606. },
  3607. side: {
  3608. height: math.unit(6, "feet"),
  3609. weight: math.unit(175, "lb"),
  3610. name: "Side",
  3611. image: {
  3612. source: "./media/characters/xera/side.svg",
  3613. extra: 2345 / 2019,
  3614. bottom: 39.7 / 2384
  3615. }
  3616. },
  3617. back: {
  3618. height: math.unit(6, "feet"),
  3619. weight: math.unit(175, "lb"),
  3620. name: "Back",
  3621. image: {
  3622. source: "./media/characters/xera/back.svg",
  3623. extra: 2095 / 1984,
  3624. bottom: 67 / 2166
  3625. }
  3626. },
  3627. },
  3628. [
  3629. {
  3630. name: "Small",
  3631. height: math.unit(10, "feet")
  3632. },
  3633. {
  3634. name: "Macro",
  3635. height: math.unit(500, "meters"),
  3636. default: true
  3637. },
  3638. {
  3639. name: "Macro+",
  3640. height: math.unit(10, "km")
  3641. },
  3642. {
  3643. name: "Gigamacro",
  3644. height: math.unit(25000, "km")
  3645. },
  3646. {
  3647. name: "Teramacro",
  3648. height: math.unit(3e6, "km")
  3649. }
  3650. ]
  3651. ))
  3652. characterMakers.push(() => makeCharacter(
  3653. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3654. {
  3655. front: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(175, "lb"),
  3658. name: "Front",
  3659. image: {
  3660. source: "./media/characters/nebula/front.svg",
  3661. extra: 2566 / 2362,
  3662. bottom: 81 / 2644
  3663. }
  3664. }
  3665. },
  3666. [
  3667. {
  3668. name: "Small",
  3669. height: math.unit(4.5, "meters")
  3670. },
  3671. {
  3672. name: "Macro",
  3673. height: math.unit(1500, "meters"),
  3674. default: true
  3675. },
  3676. {
  3677. name: "Megamacro",
  3678. height: math.unit(150, "km")
  3679. },
  3680. {
  3681. name: "Gigamacro",
  3682. height: math.unit(27000, "km")
  3683. }
  3684. ]
  3685. ))
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3688. {
  3689. front: {
  3690. height: math.unit(6, "feet"),
  3691. weight: math.unit(225, "lb"),
  3692. name: "Front",
  3693. image: {
  3694. source: "./media/characters/abysgar/front.svg"
  3695. }
  3696. }
  3697. },
  3698. [
  3699. {
  3700. name: "Small",
  3701. height: math.unit(4.5, "meters")
  3702. },
  3703. {
  3704. name: "Macro",
  3705. height: math.unit(1250, "meters"),
  3706. default: true
  3707. },
  3708. {
  3709. name: "Megamacro",
  3710. height: math.unit(125, "km")
  3711. },
  3712. {
  3713. name: "Gigamacro",
  3714. height: math.unit(26000, "km")
  3715. }
  3716. ]
  3717. ))
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(6, "feet"),
  3723. weight: math.unit(180, "lb"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/yakuz/front.svg"
  3727. }
  3728. }
  3729. },
  3730. [
  3731. {
  3732. name: "Small",
  3733. height: math.unit(5, "meters")
  3734. },
  3735. {
  3736. name: "Macro",
  3737. height: math.unit(1500, "meters"),
  3738. default: true
  3739. },
  3740. {
  3741. name: "Megamacro",
  3742. height: math.unit(200, "km")
  3743. },
  3744. {
  3745. name: "Gigamacro",
  3746. height: math.unit(100000, "km")
  3747. }
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(6, "feet"),
  3755. weight: math.unit(175, "lb"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/mirova/front.svg",
  3759. extra: 3334 / 3071,
  3760. bottom: 42 / 3375.6
  3761. }
  3762. }
  3763. },
  3764. [
  3765. {
  3766. name: "Small",
  3767. height: math.unit(5, "meters")
  3768. },
  3769. {
  3770. name: "Macro",
  3771. height: math.unit(900, "meters"),
  3772. default: true
  3773. },
  3774. {
  3775. name: "Megamacro",
  3776. height: math.unit(135, "km")
  3777. },
  3778. {
  3779. name: "Gigamacro",
  3780. height: math.unit(20000, "km")
  3781. }
  3782. ]
  3783. ))
  3784. characterMakers.push(() => makeCharacter(
  3785. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3786. {
  3787. side: {
  3788. height: math.unit(28.35, "feet"),
  3789. weight: math.unit(99.75, "tons"),
  3790. name: "Side",
  3791. image: {
  3792. source: "./media/characters/asana-mech/side.svg",
  3793. extra: 923 / 699,
  3794. bottom: 50 / 975
  3795. }
  3796. },
  3797. chaingun: {
  3798. height: math.unit(7, "feet"),
  3799. weight: math.unit(2400, "lb"),
  3800. name: "Chaingun",
  3801. image: {
  3802. source: "./media/characters/asana-mech/chaingun.svg"
  3803. }
  3804. },
  3805. laser: {
  3806. height: math.unit(7.12, "feet"),
  3807. weight: math.unit(2000, "lb"),
  3808. name: "Laser",
  3809. image: {
  3810. source: "./media/characters/asana-mech/laser.svg"
  3811. }
  3812. },
  3813. },
  3814. [
  3815. {
  3816. name: "Normal",
  3817. height: math.unit(28.35, "feet"),
  3818. default: true
  3819. },
  3820. {
  3821. name: "Macro",
  3822. height: math.unit(2500, "feet")
  3823. },
  3824. {
  3825. name: "Megamacro",
  3826. height: math.unit(25, "miles")
  3827. },
  3828. {
  3829. name: "Examacro",
  3830. height: math.unit(6e8, "lightyears")
  3831. },
  3832. ]
  3833. ))
  3834. characterMakers.push(() => makeCharacter(
  3835. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3836. {
  3837. front: {
  3838. height: math.unit(5, "meters"),
  3839. weight: math.unit(1000, "kg"),
  3840. name: "Front",
  3841. image: {
  3842. source: "./media/characters/asche/front.svg",
  3843. extra: 1258 / 1190,
  3844. bottom: 47 / 1305
  3845. }
  3846. },
  3847. frontUnderwear: {
  3848. height: math.unit(5, "meters"),
  3849. weight: math.unit(1000, "kg"),
  3850. name: "Front (Underwear)",
  3851. image: {
  3852. source: "./media/characters/asche/front-underwear.svg",
  3853. extra: 1258 / 1190,
  3854. bottom: 47 / 1305
  3855. }
  3856. },
  3857. frontDressed: {
  3858. height: math.unit(5, "meters"),
  3859. weight: math.unit(1000, "kg"),
  3860. name: "Front (Dressed)",
  3861. image: {
  3862. source: "./media/characters/asche/front-dressed.svg",
  3863. extra: 1258 / 1190,
  3864. bottom: 47 / 1305
  3865. }
  3866. },
  3867. frontArmor: {
  3868. height: math.unit(5, "meters"),
  3869. weight: math.unit(1000, "kg"),
  3870. name: "Front (Armored)",
  3871. image: {
  3872. source: "./media/characters/asche/front-armored.svg",
  3873. extra: 1374 / 1308,
  3874. bottom: 23 / 1397
  3875. }
  3876. },
  3877. mp724: {
  3878. height: math.unit(0.96, "meters"),
  3879. weight: math.unit(38, "kg"),
  3880. name: "H&K MP724",
  3881. image: {
  3882. source: "./media/characters/asche/h&k-mp724.svg"
  3883. }
  3884. },
  3885. side: {
  3886. height: math.unit(5, "meters"),
  3887. weight: math.unit(1000, "kg"),
  3888. name: "Side",
  3889. image: {
  3890. source: "./media/characters/asche/side.svg",
  3891. extra: 1717 / 1609,
  3892. bottom: 0.005
  3893. }
  3894. },
  3895. back: {
  3896. height: math.unit(5, "meters"),
  3897. weight: math.unit(1000, "kg"),
  3898. name: "Back",
  3899. image: {
  3900. source: "./media/characters/asche/back.svg",
  3901. extra: 1570 / 1501
  3902. }
  3903. },
  3904. },
  3905. [
  3906. {
  3907. name: "DEFCON 5",
  3908. height: math.unit(5, "meters")
  3909. },
  3910. {
  3911. name: "DEFCON 4",
  3912. height: math.unit(500, "meters"),
  3913. default: true
  3914. },
  3915. {
  3916. name: "DEFCON 3",
  3917. height: math.unit(5, "km")
  3918. },
  3919. {
  3920. name: "DEFCON 2",
  3921. height: math.unit(500, "km")
  3922. },
  3923. {
  3924. name: "DEFCON 1",
  3925. height: math.unit(500000, "km")
  3926. },
  3927. {
  3928. name: "DEFCON 0",
  3929. height: math.unit(3, "gigaparsecs")
  3930. },
  3931. ]
  3932. ))
  3933. characterMakers.push(() => makeCharacter(
  3934. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3935. {
  3936. front: {
  3937. height: math.unit(2, "meters"),
  3938. weight: math.unit(76, "kg"),
  3939. name: "Front",
  3940. image: {
  3941. source: "./media/characters/gale/front.svg"
  3942. }
  3943. },
  3944. frontAlt1: {
  3945. height: math.unit(2, "meters"),
  3946. weight: math.unit(76, "kg"),
  3947. name: "Front (Alt 1)",
  3948. image: {
  3949. source: "./media/characters/gale/front-alt-1.svg"
  3950. }
  3951. },
  3952. frontAlt2: {
  3953. height: math.unit(2, "meters"),
  3954. weight: math.unit(76, "kg"),
  3955. name: "Front (Alt 2)",
  3956. image: {
  3957. source: "./media/characters/gale/front-alt-2.svg"
  3958. }
  3959. },
  3960. },
  3961. [
  3962. {
  3963. name: "Normal",
  3964. height: math.unit(7, "feet")
  3965. },
  3966. {
  3967. name: "Macro",
  3968. height: math.unit(150, "feet"),
  3969. default: true
  3970. },
  3971. {
  3972. name: "Macro+",
  3973. height: math.unit(300, "feet")
  3974. },
  3975. ]
  3976. ))
  3977. characterMakers.push(() => makeCharacter(
  3978. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3979. {
  3980. front: {
  3981. height: math.unit(2, "meters"),
  3982. weight: math.unit(76, "kg"),
  3983. name: "Front",
  3984. image: {
  3985. source: "./media/characters/draylen/front.svg"
  3986. }
  3987. }
  3988. },
  3989. [
  3990. {
  3991. name: "Macro",
  3992. height: math.unit(150, "feet"),
  3993. default: true
  3994. }
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3999. {
  4000. front: {
  4001. height: math.unit(7 + 9 / 12, "feet"),
  4002. weight: math.unit(379, "lbs"),
  4003. name: "Front",
  4004. image: {
  4005. source: "./media/characters/chez/front.svg"
  4006. }
  4007. },
  4008. side: {
  4009. height: math.unit(7 + 9 / 12, "feet"),
  4010. weight: math.unit(379, "lbs"),
  4011. name: "Side",
  4012. image: {
  4013. source: "./media/characters/chez/side.svg"
  4014. }
  4015. }
  4016. },
  4017. [
  4018. {
  4019. name: "Normal",
  4020. height: math.unit(7 + 9 / 12, "feet"),
  4021. default: true
  4022. },
  4023. {
  4024. name: "God King",
  4025. height: math.unit(9750000, "meters")
  4026. }
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4031. {
  4032. front: {
  4033. height: math.unit(6, "feet"),
  4034. weight: math.unit(275, "lbs"),
  4035. name: "Front",
  4036. image: {
  4037. source: "./media/characters/kaylum/front.svg",
  4038. bottom: 0.01,
  4039. extra: 1166 / 1031
  4040. }
  4041. },
  4042. frontWingless: {
  4043. height: math.unit(6, "feet"),
  4044. weight: math.unit(275, "lbs"),
  4045. name: "Front (Wingless)",
  4046. image: {
  4047. source: "./media/characters/kaylum/front-wingless.svg",
  4048. bottom: 0.01,
  4049. extra: 1117 / 1031
  4050. }
  4051. }
  4052. },
  4053. [
  4054. {
  4055. name: "Normal",
  4056. height: math.unit(3.05, "meters")
  4057. },
  4058. {
  4059. name: "Master",
  4060. height: math.unit(5.5, "meters")
  4061. },
  4062. {
  4063. name: "Rampage",
  4064. height: math.unit(19, "meters")
  4065. },
  4066. {
  4067. name: "Macro Lite",
  4068. height: math.unit(37, "meters")
  4069. },
  4070. {
  4071. name: "Hyper Predator",
  4072. height: math.unit(61, "meters")
  4073. },
  4074. {
  4075. name: "Macro",
  4076. height: math.unit(138, "meters"),
  4077. default: true
  4078. }
  4079. ]
  4080. ))
  4081. characterMakers.push(() => makeCharacter(
  4082. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4083. {
  4084. front: {
  4085. height: math.unit(6, "feet"),
  4086. weight: math.unit(150, "lbs"),
  4087. name: "Front",
  4088. image: {
  4089. source: "./media/characters/geta/front.svg"
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Micro",
  4096. height: math.unit(3, "inches"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Normal",
  4101. height: math.unit(5 + 5 / 12, "feet")
  4102. }
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4107. {
  4108. front: {
  4109. height: math.unit(6, "feet"),
  4110. weight: math.unit(300, "lbs"),
  4111. name: "Front",
  4112. image: {
  4113. source: "./media/characters/tyrnn/front.svg"
  4114. }
  4115. }
  4116. },
  4117. [
  4118. {
  4119. name: "Main Height",
  4120. height: math.unit(355, "feet"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Fave. Height",
  4125. height: math.unit(2400, "feet")
  4126. }
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4131. {
  4132. front: {
  4133. height: math.unit(6, "feet"),
  4134. weight: math.unit(300, "lbs"),
  4135. name: "Front",
  4136. image: {
  4137. source: "./media/characters/appledectomy/front.svg"
  4138. }
  4139. }
  4140. },
  4141. [
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(2500, "feet")
  4145. },
  4146. {
  4147. name: "Megamacro",
  4148. height: math.unit(50, "miles"),
  4149. default: true
  4150. },
  4151. {
  4152. name: "Gigamacro",
  4153. height: math.unit(5000, "miles")
  4154. },
  4155. {
  4156. name: "Teramacro",
  4157. height: math.unit(250000, "miles")
  4158. },
  4159. ]
  4160. ))
  4161. characterMakers.push(() => makeCharacter(
  4162. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4163. {
  4164. front: {
  4165. height: math.unit(6, "feet"),
  4166. weight: math.unit(200, "lbs"),
  4167. name: "Front",
  4168. image: {
  4169. source: "./media/characters/vulpes/front.svg",
  4170. extra: 573 / 543,
  4171. bottom: 0.033
  4172. }
  4173. },
  4174. side: {
  4175. height: math.unit(6, "feet"),
  4176. weight: math.unit(200, "lbs"),
  4177. name: "Side",
  4178. image: {
  4179. source: "./media/characters/vulpes/side.svg",
  4180. extra: 577 / 549,
  4181. bottom: 11 / 588
  4182. }
  4183. },
  4184. back: {
  4185. height: math.unit(6, "feet"),
  4186. weight: math.unit(200, "lbs"),
  4187. name: "Back",
  4188. image: {
  4189. source: "./media/characters/vulpes/back.svg",
  4190. extra: 573 / 549,
  4191. bottom: 20 / 593
  4192. }
  4193. },
  4194. feet: {
  4195. height: math.unit(1.276, "feet"),
  4196. name: "Feet",
  4197. image: {
  4198. source: "./media/characters/vulpes/feet.svg"
  4199. }
  4200. },
  4201. maw: {
  4202. height: math.unit(1.18, "feet"),
  4203. name: "Maw",
  4204. image: {
  4205. source: "./media/characters/vulpes/maw.svg"
  4206. }
  4207. },
  4208. },
  4209. [
  4210. {
  4211. name: "Micro",
  4212. height: math.unit(2, "inches")
  4213. },
  4214. {
  4215. name: "Normal",
  4216. height: math.unit(6.3, "feet")
  4217. },
  4218. {
  4219. name: "Macro",
  4220. height: math.unit(850, "feet")
  4221. },
  4222. {
  4223. name: "Megamacro",
  4224. height: math.unit(7500, "feet"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Gigamacro",
  4229. height: math.unit(570000, "miles")
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4235. {
  4236. front: {
  4237. height: math.unit(6, "feet"),
  4238. weight: math.unit(210, "lbs"),
  4239. name: "Front",
  4240. image: {
  4241. source: "./media/characters/rain-fallen/front.svg"
  4242. }
  4243. },
  4244. side: {
  4245. height: math.unit(6, "feet"),
  4246. weight: math.unit(210, "lbs"),
  4247. name: "Side",
  4248. image: {
  4249. source: "./media/characters/rain-fallen/side.svg"
  4250. }
  4251. },
  4252. back: {
  4253. height: math.unit(6, "feet"),
  4254. weight: math.unit(210, "lbs"),
  4255. name: "Back",
  4256. image: {
  4257. source: "./media/characters/rain-fallen/back.svg"
  4258. }
  4259. },
  4260. feral: {
  4261. height: math.unit(9, "feet"),
  4262. weight: math.unit(700, "lbs"),
  4263. name: "Feral",
  4264. image: {
  4265. source: "./media/characters/rain-fallen/feral.svg"
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(5, "meter")
  4273. },
  4274. {
  4275. name: "Macro",
  4276. height: math.unit(150, "meter"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Megamacro",
  4281. height: math.unit(278e6, "meter")
  4282. },
  4283. {
  4284. name: "Gigamacro",
  4285. height: math.unit(2e9, "meter")
  4286. },
  4287. {
  4288. name: "Teramacro",
  4289. height: math.unit(8e12, "meter")
  4290. },
  4291. {
  4292. name: "Devourer",
  4293. height: math.unit(14, "zettameters")
  4294. },
  4295. {
  4296. name: "Scarlet King",
  4297. height: math.unit(18, "yottameters")
  4298. },
  4299. {
  4300. name: "Void",
  4301. height: math.unit(6.66e66, "yottameters")
  4302. }
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4307. {
  4308. standing: {
  4309. height: math.unit(6, "feet"),
  4310. weight: math.unit(180, "lbs"),
  4311. name: "Standing",
  4312. image: {
  4313. source: "./media/characters/zaakira/standing.svg"
  4314. }
  4315. },
  4316. laying: {
  4317. height: math.unit(3, "feet"),
  4318. weight: math.unit(180, "lbs"),
  4319. name: "Laying",
  4320. image: {
  4321. source: "./media/characters/zaakira/laying.svg"
  4322. }
  4323. },
  4324. },
  4325. [
  4326. {
  4327. name: "Normal",
  4328. height: math.unit(12, "feet")
  4329. },
  4330. {
  4331. name: "Macro",
  4332. height: math.unit(279, "feet"),
  4333. default: true
  4334. }
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4339. {
  4340. femSfw: {
  4341. height: math.unit(8, "feet"),
  4342. weight: math.unit(350, "lb"),
  4343. name: "Fem",
  4344. image: {
  4345. source: "./media/characters/sigvald/fem-sfw.svg",
  4346. extra: 182 / 164,
  4347. bottom: 8.7 / 190.5
  4348. }
  4349. },
  4350. femNsfw: {
  4351. height: math.unit(8, "feet"),
  4352. weight: math.unit(350, "lb"),
  4353. name: "Fem (NSFW)",
  4354. image: {
  4355. source: "./media/characters/sigvald/fem-nsfw.svg",
  4356. extra: 182 / 164,
  4357. bottom: 8.7 / 190.5
  4358. }
  4359. },
  4360. maleNsfw: {
  4361. height: math.unit(8, "feet"),
  4362. weight: math.unit(350, "lb"),
  4363. name: "Male (NSFW)",
  4364. image: {
  4365. source: "./media/characters/sigvald/male-nsfw.svg",
  4366. extra: 182 / 164,
  4367. bottom: 8.7 / 190.5
  4368. }
  4369. },
  4370. hermNsfw: {
  4371. height: math.unit(8, "feet"),
  4372. weight: math.unit(350, "lb"),
  4373. name: "Herm (NSFW)",
  4374. image: {
  4375. source: "./media/characters/sigvald/herm-nsfw.svg",
  4376. extra: 182 / 164,
  4377. bottom: 8.7 / 190.5
  4378. }
  4379. },
  4380. dick: {
  4381. height: math.unit(2.36, "feet"),
  4382. name: "Dick",
  4383. image: {
  4384. source: "./media/characters/sigvald/dick.svg"
  4385. }
  4386. },
  4387. eye: {
  4388. height: math.unit(0.31, "feet"),
  4389. name: "Eye",
  4390. image: {
  4391. source: "./media/characters/sigvald/eye.svg"
  4392. }
  4393. },
  4394. mouth: {
  4395. height: math.unit(0.92, "feet"),
  4396. name: "Mouth",
  4397. image: {
  4398. source: "./media/characters/sigvald/mouth.svg"
  4399. }
  4400. },
  4401. paws: {
  4402. height: math.unit(2.2, "feet"),
  4403. name: "Paws",
  4404. image: {
  4405. source: "./media/characters/sigvald/paws.svg"
  4406. }
  4407. }
  4408. },
  4409. [
  4410. {
  4411. name: "Normal",
  4412. height: math.unit(8, "feet")
  4413. },
  4414. {
  4415. name: "Large",
  4416. height: math.unit(12, "feet")
  4417. },
  4418. {
  4419. name: "Larger",
  4420. height: math.unit(20, "feet")
  4421. },
  4422. {
  4423. name: "Macro",
  4424. height: math.unit(150, "feet")
  4425. },
  4426. {
  4427. name: "Macro+",
  4428. height: math.unit(200, "feet"),
  4429. default: true
  4430. },
  4431. ]
  4432. ))
  4433. characterMakers.push(() => makeCharacter(
  4434. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4435. {
  4436. side: {
  4437. height: math.unit(12, "feet"),
  4438. weight: math.unit(2000, "kg"),
  4439. name: "Side",
  4440. image: {
  4441. source: "./media/characters/scott/side.svg",
  4442. extra: 754 / 724,
  4443. bottom: 0.069
  4444. }
  4445. },
  4446. upright: {
  4447. height: math.unit(12, "feet"),
  4448. weight: math.unit(2000, "kg"),
  4449. name: "Upright",
  4450. image: {
  4451. source: "./media/characters/scott/upright.svg",
  4452. extra: 3881 / 3722,
  4453. bottom: 0.05
  4454. }
  4455. },
  4456. },
  4457. [
  4458. {
  4459. name: "Normal",
  4460. height: math.unit(12, "feet"),
  4461. default: true
  4462. },
  4463. ]
  4464. ))
  4465. characterMakers.push(() => makeCharacter(
  4466. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4467. {
  4468. side: {
  4469. height: math.unit(8, "meters"),
  4470. weight: math.unit(84755, "lbs"),
  4471. name: "Side",
  4472. image: {
  4473. source: "./media/characters/tobias/side.svg",
  4474. extra: 1474 / 1096,
  4475. bottom: 38.9 / 1513.1235
  4476. }
  4477. },
  4478. },
  4479. [
  4480. {
  4481. name: "Normal",
  4482. height: math.unit(8, "meters"),
  4483. default: true
  4484. },
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4489. {
  4490. front: {
  4491. height: math.unit(5.5, "feet"),
  4492. weight: math.unit(400, "lbs"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/kieran/front.svg",
  4496. extra: 2694 / 2364,
  4497. bottom: 217 / 2908
  4498. }
  4499. },
  4500. side: {
  4501. height: math.unit(5.5, "feet"),
  4502. weight: math.unit(400, "lbs"),
  4503. name: "Side",
  4504. image: {
  4505. source: "./media/characters/kieran/side.svg",
  4506. extra: 875 / 777,
  4507. bottom: 84.6 / 959
  4508. }
  4509. },
  4510. },
  4511. [
  4512. {
  4513. name: "Normal",
  4514. height: math.unit(5.5, "feet"),
  4515. default: true
  4516. },
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4521. {
  4522. side: {
  4523. height: math.unit(2, "meters"),
  4524. weight: math.unit(70, "kg"),
  4525. name: "Side",
  4526. image: {
  4527. source: "./media/characters/sanya/side.svg",
  4528. bottom: 0.02,
  4529. extra: 1.02
  4530. }
  4531. },
  4532. },
  4533. [
  4534. {
  4535. name: "Small",
  4536. height: math.unit(2, "meters")
  4537. },
  4538. {
  4539. name: "Normal",
  4540. height: math.unit(3, "meters")
  4541. },
  4542. {
  4543. name: "Macro",
  4544. height: math.unit(16, "meters"),
  4545. default: true
  4546. },
  4547. ]
  4548. ))
  4549. characterMakers.push(() => makeCharacter(
  4550. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4551. {
  4552. front: {
  4553. height: math.unit(2, "meters"),
  4554. weight: math.unit(120, "kg"),
  4555. name: "Front",
  4556. image: {
  4557. source: "./media/characters/miranda/front.svg",
  4558. extra: 195 / 185,
  4559. bottom: 10.9 / 206.5
  4560. }
  4561. },
  4562. back: {
  4563. height: math.unit(2, "meters"),
  4564. weight: math.unit(120, "kg"),
  4565. name: "Back",
  4566. image: {
  4567. source: "./media/characters/miranda/back.svg",
  4568. extra: 201 / 193,
  4569. bottom: 2.3 / 203.7
  4570. }
  4571. },
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(10, "feet"),
  4577. default: true
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "James", species: ["deer"], tags: ["anthro"] },
  4583. {
  4584. side: {
  4585. height: math.unit(2, "meters"),
  4586. weight: math.unit(100, "kg"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/james/front.svg",
  4590. extra: 10 / 8.5
  4591. }
  4592. },
  4593. },
  4594. [
  4595. {
  4596. name: "Normal",
  4597. height: math.unit(8.5, "feet"),
  4598. default: true
  4599. }
  4600. ]
  4601. ))
  4602. characterMakers.push(() => makeCharacter(
  4603. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4604. {
  4605. side: {
  4606. height: math.unit(9.5, "feet"),
  4607. weight: math.unit(2500, "lbs"),
  4608. name: "Side",
  4609. image: {
  4610. source: "./media/characters/heather/side.svg"
  4611. }
  4612. },
  4613. },
  4614. [
  4615. {
  4616. name: "Normal",
  4617. height: math.unit(9.5, "feet"),
  4618. default: true
  4619. }
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4624. {
  4625. side: {
  4626. height: math.unit(6.5, "feet"),
  4627. weight: math.unit(400, "lbs"),
  4628. name: "Side",
  4629. image: {
  4630. source: "./media/characters/lukas/side.svg",
  4631. extra: 7.25 / 6.5
  4632. }
  4633. },
  4634. },
  4635. [
  4636. {
  4637. name: "Normal",
  4638. height: math.unit(6.5, "feet"),
  4639. default: true
  4640. }
  4641. ]
  4642. ))
  4643. characterMakers.push(() => makeCharacter(
  4644. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4645. {
  4646. side: {
  4647. height: math.unit(5, "feet"),
  4648. weight: math.unit(3000, "lbs"),
  4649. name: "Side",
  4650. image: {
  4651. source: "./media/characters/louise/side.svg"
  4652. }
  4653. },
  4654. },
  4655. [
  4656. {
  4657. name: "Normal",
  4658. height: math.unit(5, "feet"),
  4659. default: true
  4660. }
  4661. ]
  4662. ))
  4663. characterMakers.push(() => makeCharacter(
  4664. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4665. {
  4666. side: {
  4667. height: math.unit(6, "feet"),
  4668. weight: math.unit(150, "lbs"),
  4669. name: "Side",
  4670. image: {
  4671. source: "./media/characters/ramona/side.svg"
  4672. }
  4673. },
  4674. },
  4675. [
  4676. {
  4677. name: "Normal",
  4678. height: math.unit(5.3, "meters"),
  4679. default: true
  4680. },
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(20, "stories")
  4684. },
  4685. {
  4686. name: "Macro+",
  4687. height: math.unit(50, "stories")
  4688. },
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4693. {
  4694. standing: {
  4695. height: math.unit(5.75, "feet"),
  4696. weight: math.unit(160, "lbs"),
  4697. name: "Standing",
  4698. image: {
  4699. source: "./media/characters/deerpuff/standing.svg",
  4700. extra: 682 / 624
  4701. }
  4702. },
  4703. sitting: {
  4704. height: math.unit(5.75 / 1.79, "feet"),
  4705. weight: math.unit(160, "lbs"),
  4706. name: "Sitting",
  4707. image: {
  4708. source: "./media/characters/deerpuff/sitting.svg",
  4709. bottom: 44 / 400,
  4710. extra: 1
  4711. }
  4712. },
  4713. taurLaying: {
  4714. height: math.unit(6, "feet"),
  4715. weight: math.unit(400, "lbs"),
  4716. name: "Taur (Laying)",
  4717. image: {
  4718. source: "./media/characters/deerpuff/taur-laying.svg"
  4719. }
  4720. },
  4721. },
  4722. [
  4723. {
  4724. name: "Puffball",
  4725. height: math.unit(6, "inches")
  4726. },
  4727. {
  4728. name: "Normalpuff",
  4729. height: math.unit(5.75, "feet")
  4730. },
  4731. {
  4732. name: "Macropuff",
  4733. height: math.unit(1500, "feet"),
  4734. default: true
  4735. },
  4736. {
  4737. name: "Megapuff",
  4738. height: math.unit(500, "miles")
  4739. },
  4740. {
  4741. name: "Gigapuff",
  4742. height: math.unit(250000, "miles")
  4743. },
  4744. {
  4745. name: "Omegapuff",
  4746. height: math.unit(1000, "lightyears")
  4747. },
  4748. ]
  4749. ))
  4750. characterMakers.push(() => makeCharacter(
  4751. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4752. {
  4753. stomping: {
  4754. height: math.unit(6, "feet"),
  4755. weight: math.unit(170, "lbs"),
  4756. name: "Stomping",
  4757. image: {
  4758. source: "./media/characters/vivian/stomping.svg"
  4759. }
  4760. },
  4761. sitting: {
  4762. height: math.unit(6 / 1.75, "feet"),
  4763. weight: math.unit(170, "lbs"),
  4764. name: "Sitting",
  4765. image: {
  4766. source: "./media/characters/vivian/sitting.svg",
  4767. bottom: 1 / 6.4,
  4768. extra: 1,
  4769. }
  4770. },
  4771. },
  4772. [
  4773. {
  4774. name: "Normal",
  4775. height: math.unit(7, "feet"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Macro",
  4780. height: math.unit(10, "stories")
  4781. },
  4782. {
  4783. name: "Macro+",
  4784. height: math.unit(30, "stories")
  4785. },
  4786. {
  4787. name: "Megamacro",
  4788. height: math.unit(10, "miles")
  4789. },
  4790. {
  4791. name: "Megamacro+",
  4792. height: math.unit(2750000, "meters")
  4793. },
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(6, "feet"),
  4801. weight: math.unit(160, "lbs"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/prince/front.svg",
  4805. extra: 3400 / 3000
  4806. }
  4807. },
  4808. jumping: {
  4809. height: math.unit(6, "feet"),
  4810. weight: math.unit(160, "lbs"),
  4811. name: "Jumping",
  4812. image: {
  4813. source: "./media/characters/prince/jump.svg",
  4814. extra: 2555 / 2134
  4815. }
  4816. },
  4817. },
  4818. [
  4819. {
  4820. name: "Normal",
  4821. height: math.unit(7.75, "feet"),
  4822. default: true
  4823. },
  4824. {
  4825. name: "Not cute",
  4826. height: math.unit(17, "feet")
  4827. },
  4828. {
  4829. name: "I said NOT",
  4830. height: math.unit(91, "feet")
  4831. },
  4832. {
  4833. name: "Please stop",
  4834. height: math.unit(560, "feet")
  4835. },
  4836. {
  4837. name: "What have you done",
  4838. height: math.unit(2200, "feet")
  4839. },
  4840. {
  4841. name: "Deer God",
  4842. height: math.unit(3.6, "miles")
  4843. },
  4844. ]
  4845. ))
  4846. characterMakers.push(() => makeCharacter(
  4847. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4848. {
  4849. standing: {
  4850. height: math.unit(6, "feet"),
  4851. weight: math.unit(300, "lbs"),
  4852. name: "Standing",
  4853. image: {
  4854. source: "./media/characters/psymon/standing.svg",
  4855. extra: 1888 / 1810,
  4856. bottom: 0.05
  4857. }
  4858. },
  4859. slithering: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(300, "lbs"),
  4862. name: "Slithering",
  4863. image: {
  4864. source: "./media/characters/psymon/slithering.svg",
  4865. extra: 1330 / 1224
  4866. }
  4867. },
  4868. slitheringAlt: {
  4869. height: math.unit(6, "feet"),
  4870. weight: math.unit(300, "lbs"),
  4871. name: "Slithering (Alt)",
  4872. image: {
  4873. source: "./media/characters/psymon/slithering-alt.svg",
  4874. extra: 1330 / 1224
  4875. }
  4876. },
  4877. },
  4878. [
  4879. {
  4880. name: "Normal",
  4881. height: math.unit(11.25, "feet"),
  4882. default: true
  4883. },
  4884. {
  4885. name: "Large",
  4886. height: math.unit(27, "feet")
  4887. },
  4888. {
  4889. name: "Giant",
  4890. height: math.unit(87, "feet")
  4891. },
  4892. {
  4893. name: "Macro",
  4894. height: math.unit(365, "feet")
  4895. },
  4896. {
  4897. name: "Megamacro",
  4898. height: math.unit(3, "miles")
  4899. },
  4900. {
  4901. name: "World Serpent",
  4902. height: math.unit(8000, "miles")
  4903. },
  4904. ]
  4905. ))
  4906. characterMakers.push(() => makeCharacter(
  4907. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4908. {
  4909. front: {
  4910. height: math.unit(6, "feet"),
  4911. weight: math.unit(180, "lbs"),
  4912. name: "Front",
  4913. image: {
  4914. source: "./media/characters/daimos/front.svg",
  4915. extra: 4160 / 3897,
  4916. bottom: 0.021
  4917. }
  4918. }
  4919. },
  4920. [
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(8, "feet"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Big Dog",
  4928. height: math.unit(22, "feet")
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(127, "feet")
  4933. },
  4934. {
  4935. name: "Megamacro",
  4936. height: math.unit(3600, "feet")
  4937. },
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4942. {
  4943. side: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(180, "lbs"),
  4946. name: "Side",
  4947. image: {
  4948. source: "./media/characters/blake/side.svg",
  4949. extra: 1212 / 1120,
  4950. bottom: 0.05
  4951. }
  4952. },
  4953. crouched: {
  4954. height: math.unit(6 * 0.57, "feet"),
  4955. weight: math.unit(180, "lbs"),
  4956. name: "Crouched",
  4957. image: {
  4958. source: "./media/characters/blake/crouched.svg",
  4959. extra: 840 / 587,
  4960. bottom: 0.04
  4961. }
  4962. },
  4963. bent: {
  4964. height: math.unit(6 * 0.75, "feet"),
  4965. weight: math.unit(180, "lbs"),
  4966. name: "Bent",
  4967. image: {
  4968. source: "./media/characters/blake/bent.svg",
  4969. extra: 592 / 544,
  4970. bottom: 0.035
  4971. }
  4972. },
  4973. },
  4974. [
  4975. {
  4976. name: "Normal",
  4977. height: math.unit(8 + 1 / 6, "feet"),
  4978. default: true
  4979. },
  4980. {
  4981. name: "Big Backside",
  4982. height: math.unit(37, "feet")
  4983. },
  4984. {
  4985. name: "Subway Shredder",
  4986. height: math.unit(72, "feet")
  4987. },
  4988. {
  4989. name: "City Carver",
  4990. height: math.unit(1675, "feet")
  4991. },
  4992. {
  4993. name: "Tectonic Tweaker",
  4994. height: math.unit(2300, "miles")
  4995. },
  4996. ]
  4997. ))
  4998. characterMakers.push(() => makeCharacter(
  4999. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5000. {
  5001. front: {
  5002. height: math.unit(6, "feet"),
  5003. weight: math.unit(180, "lbs"),
  5004. name: "Front",
  5005. image: {
  5006. source: "./media/characters/guisetto/front.svg",
  5007. extra: 856 / 817,
  5008. bottom: 0.06
  5009. }
  5010. },
  5011. airborne: {
  5012. height: math.unit(6, "feet"),
  5013. weight: math.unit(180, "lbs"),
  5014. name: "Airborne",
  5015. image: {
  5016. source: "./media/characters/guisetto/airborne.svg",
  5017. extra: 584 / 525
  5018. }
  5019. },
  5020. },
  5021. [
  5022. {
  5023. name: "Normal",
  5024. height: math.unit(10 + 11 / 12, "feet"),
  5025. default: true
  5026. },
  5027. {
  5028. name: "Large",
  5029. height: math.unit(35, "feet")
  5030. },
  5031. {
  5032. name: "Macro",
  5033. height: math.unit(475, "feet")
  5034. },
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5039. {
  5040. front: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(180, "lbs"),
  5043. name: "Front",
  5044. image: {
  5045. source: "./media/characters/luxor/front.svg",
  5046. extra: 2940 / 2152
  5047. }
  5048. },
  5049. back: {
  5050. height: math.unit(6, "feet"),
  5051. weight: math.unit(180, "lbs"),
  5052. name: "Back",
  5053. image: {
  5054. source: "./media/characters/luxor/back.svg",
  5055. extra: 1083 / 960
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Normal",
  5062. height: math.unit(5 + 5 / 6, "feet"),
  5063. default: true
  5064. },
  5065. {
  5066. name: "Lamp",
  5067. height: math.unit(50, "feet")
  5068. },
  5069. {
  5070. name: "Lämp",
  5071. height: math.unit(300, "feet")
  5072. },
  5073. {
  5074. name: "The sun is a lamp",
  5075. height: math.unit(250000, "miles")
  5076. },
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5081. {
  5082. front: {
  5083. height: math.unit(6, "feet"),
  5084. weight: math.unit(50, "lbs"),
  5085. name: "Front",
  5086. image: {
  5087. source: "./media/characters/huoyan/front.svg"
  5088. }
  5089. },
  5090. side: {
  5091. height: math.unit(6, "feet"),
  5092. weight: math.unit(180, "lbs"),
  5093. name: "Side",
  5094. image: {
  5095. source: "./media/characters/huoyan/side.svg"
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Chef",
  5102. height: math.unit(9, "feet")
  5103. },
  5104. {
  5105. name: "Normal",
  5106. height: math.unit(65, "feet"),
  5107. default: true
  5108. },
  5109. {
  5110. name: "Macro",
  5111. height: math.unit(780, "feet")
  5112. },
  5113. {
  5114. name: "Flaming Mountain",
  5115. height: math.unit(4.8, "miles")
  5116. },
  5117. {
  5118. name: "Celestial",
  5119. height: math.unit(765000, "miles")
  5120. },
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5125. {
  5126. front: {
  5127. height: math.unit(5 + 3 / 4, "feet"),
  5128. weight: math.unit(120, "lbs"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/tails/front.svg"
  5132. }
  5133. }
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(5 + 3 / 4, "feet"),
  5139. default: true
  5140. }
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5145. {
  5146. front: {
  5147. height: math.unit(4, "feet"),
  5148. weight: math.unit(50, "lbs"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/rainy/front.svg"
  5152. }
  5153. }
  5154. },
  5155. [
  5156. {
  5157. name: "Macro",
  5158. height: math.unit(800, "feet"),
  5159. default: true
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(6, "feet"),
  5168. weight: math.unit(150, "lbs"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/rainier/front.svg"
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Micro",
  5178. height: math.unit(2, "mm"),
  5179. default: true
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5185. {
  5186. front: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(180, "lbs"),
  5189. name: "Front",
  5190. image: {
  5191. source: "./media/characters/andy/front.svg"
  5192. }
  5193. }
  5194. },
  5195. [
  5196. {
  5197. name: "Normal",
  5198. height: math.unit(8, "feet"),
  5199. default: true
  5200. },
  5201. {
  5202. name: "Macro",
  5203. height: math.unit(1000, "feet")
  5204. },
  5205. {
  5206. name: "Megamacro",
  5207. height: math.unit(5, "miles")
  5208. },
  5209. {
  5210. name: "Gigamacro",
  5211. height: math.unit(5000, "miles")
  5212. },
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5217. {
  5218. front: {
  5219. height: math.unit(6, "feet"),
  5220. weight: math.unit(210, "lbs"),
  5221. name: "Front",
  5222. image: {
  5223. source: "./media/characters/cimmaron/front-sfw.svg",
  5224. extra: 701 / 676,
  5225. bottom: 0.046
  5226. }
  5227. },
  5228. back: {
  5229. height: math.unit(6, "feet"),
  5230. weight: math.unit(210, "lbs"),
  5231. name: "Back",
  5232. image: {
  5233. source: "./media/characters/cimmaron/back-sfw.svg",
  5234. extra: 701 / 676,
  5235. bottom: 0.046
  5236. }
  5237. },
  5238. frontNsfw: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(210, "lbs"),
  5241. name: "Front (NSFW)",
  5242. image: {
  5243. source: "./media/characters/cimmaron/front-nsfw.svg",
  5244. extra: 701 / 676,
  5245. bottom: 0.046
  5246. }
  5247. },
  5248. backNsfw: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(210, "lbs"),
  5251. name: "Back (NSFW)",
  5252. image: {
  5253. source: "./media/characters/cimmaron/back-nsfw.svg",
  5254. extra: 701 / 676,
  5255. bottom: 0.046
  5256. }
  5257. },
  5258. dick: {
  5259. height: math.unit(1.714, "feet"),
  5260. name: "Dick",
  5261. image: {
  5262. source: "./media/characters/cimmaron/dick.svg"
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(6, "feet"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Macro Mayor",
  5274. height: math.unit(350, "meters")
  5275. },
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5280. {
  5281. front: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(200, "lbs"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/akari/front.svg",
  5287. extra: 962 / 901,
  5288. bottom: 0.04
  5289. }
  5290. }
  5291. },
  5292. [
  5293. {
  5294. name: "Micro",
  5295. height: math.unit(5, "inches"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Normal",
  5300. height: math.unit(7, "feet")
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5306. {
  5307. front: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(140, "lbs"),
  5310. name: "Front",
  5311. image: {
  5312. source: "./media/characters/cynosura/front.svg",
  5313. extra: 896 / 847
  5314. }
  5315. },
  5316. back: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(140, "lbs"),
  5319. name: "Back",
  5320. image: {
  5321. source: "./media/characters/cynosura/back.svg",
  5322. extra: 1365 / 1250
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Micro",
  5329. height: math.unit(4, "inches")
  5330. },
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(5.75, "feet"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "Tall",
  5338. height: math.unit(10, "feet")
  5339. },
  5340. {
  5341. name: "Big",
  5342. height: math.unit(20, "feet")
  5343. },
  5344. {
  5345. name: "Macro",
  5346. height: math.unit(50, "feet")
  5347. },
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5352. {
  5353. front: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(170, "lbs"),
  5356. name: "Front",
  5357. image: {
  5358. source: "./media/characters/gin/front.svg",
  5359. extra: 1.053,
  5360. bottom: 0.025
  5361. }
  5362. },
  5363. foot: {
  5364. height: math.unit(6 / 4.25, "feet"),
  5365. name: "Foot",
  5366. image: {
  5367. source: "./media/characters/gin/foot.svg"
  5368. }
  5369. },
  5370. sole: {
  5371. height: math.unit(6 / 4.40, "feet"),
  5372. name: "Sole",
  5373. image: {
  5374. source: "./media/characters/gin/sole.svg"
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(13 + 2 / 12, "feet")
  5382. },
  5383. {
  5384. name: "Macro",
  5385. height: math.unit(1500, "feet")
  5386. },
  5387. {
  5388. name: "Megamacro",
  5389. height: math.unit(200, "miles"),
  5390. default: true
  5391. },
  5392. {
  5393. name: "Gigamacro",
  5394. height: math.unit(500, "megameters")
  5395. },
  5396. {
  5397. name: "Teramacro",
  5398. height: math.unit(15, "lightyears")
  5399. }
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(6 + 1 / 6, "feet"),
  5407. weight: math.unit(178, "lbs"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/guy/front.svg"
  5411. }
  5412. }
  5413. },
  5414. [
  5415. {
  5416. name: "Normal",
  5417. height: math.unit(6 + 1 / 6, "feet"),
  5418. default: true
  5419. },
  5420. {
  5421. name: "Large",
  5422. height: math.unit(25 + 7 / 12, "feet")
  5423. },
  5424. {
  5425. name: "Macro",
  5426. height: math.unit(60 + 9 / 12, "feet")
  5427. },
  5428. {
  5429. name: "Macro+",
  5430. height: math.unit(246, "feet")
  5431. },
  5432. {
  5433. name: "Macro++",
  5434. height: math.unit(878, "feet")
  5435. }
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5440. {
  5441. front: {
  5442. height: math.unit(9, "feet"),
  5443. weight: math.unit(800, "lbs"),
  5444. name: "Front",
  5445. image: {
  5446. source: "./media/characters/tiberius/front.svg",
  5447. extra: 2295 / 2071
  5448. }
  5449. },
  5450. back: {
  5451. height: math.unit(9, "feet"),
  5452. weight: math.unit(800, "lbs"),
  5453. name: "Back",
  5454. image: {
  5455. source: "./media/characters/tiberius/back.svg",
  5456. extra: 2373 / 2160
  5457. }
  5458. },
  5459. },
  5460. [
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(9, "feet"),
  5464. default: true
  5465. }
  5466. ]
  5467. ))
  5468. characterMakers.push(() => makeCharacter(
  5469. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5470. {
  5471. front: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(600, "lbs"),
  5474. name: "Front",
  5475. image: {
  5476. source: "./media/characters/surgo/front.svg",
  5477. extra: 3591 / 2227
  5478. }
  5479. },
  5480. back: {
  5481. height: math.unit(6, "feet"),
  5482. weight: math.unit(600, "lbs"),
  5483. name: "Back",
  5484. image: {
  5485. source: "./media/characters/surgo/back.svg",
  5486. extra: 3557 / 2228
  5487. }
  5488. },
  5489. laying: {
  5490. height: math.unit(6 * 0.85, "feet"),
  5491. weight: math.unit(600, "lbs"),
  5492. name: "Laying",
  5493. image: {
  5494. source: "./media/characters/surgo/laying.svg"
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Normal",
  5501. height: math.unit(6, "feet"),
  5502. default: true
  5503. }
  5504. ]
  5505. ))
  5506. characterMakers.push(() => makeCharacter(
  5507. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5508. {
  5509. side: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(150, "lbs"),
  5512. name: "Side",
  5513. image: {
  5514. source: "./media/characters/cibus/side.svg",
  5515. extra: 800 / 400
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(6, "feet"),
  5523. default: true
  5524. }
  5525. ]
  5526. ))
  5527. characterMakers.push(() => makeCharacter(
  5528. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5529. {
  5530. front: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(240, "lbs"),
  5533. name: "Front",
  5534. image: {
  5535. source: "./media/characters/nibbles/front.svg"
  5536. }
  5537. },
  5538. side: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(240, "lbs"),
  5541. name: "Side",
  5542. image: {
  5543. source: "./media/characters/nibbles/side.svg"
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(9, "feet"),
  5551. default: true
  5552. }
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5557. {
  5558. side: {
  5559. height: math.unit(5 + 1 / 6, "feet"),
  5560. weight: math.unit(130, "lbs"),
  5561. name: "Side",
  5562. image: {
  5563. source: "./media/characters/rikky/side.svg",
  5564. extra: 851 / 801
  5565. }
  5566. },
  5567. },
  5568. [
  5569. {
  5570. name: "Normal",
  5571. height: math.unit(5 + 1 / 6, "feet")
  5572. },
  5573. {
  5574. name: "Macro",
  5575. height: math.unit(152, "feet"),
  5576. default: true
  5577. },
  5578. {
  5579. name: "Megamacro",
  5580. height: math.unit(7, "miles")
  5581. }
  5582. ]
  5583. ))
  5584. characterMakers.push(() => makeCharacter(
  5585. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5586. {
  5587. side: {
  5588. height: math.unit(370, "cm"),
  5589. weight: math.unit(350, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/malfressa/side.svg"
  5593. }
  5594. },
  5595. walking: {
  5596. height: math.unit(370, "cm"),
  5597. weight: math.unit(350, "lbs"),
  5598. name: "Walking",
  5599. image: {
  5600. source: "./media/characters/malfressa/walking.svg"
  5601. }
  5602. },
  5603. feral: {
  5604. height: math.unit(2500, "cm"),
  5605. weight: math.unit(100000, "lbs"),
  5606. name: "Feral",
  5607. image: {
  5608. source: "./media/characters/malfressa/feral.svg",
  5609. extra: 2108 / 837,
  5610. bottom: 0.02
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Normal",
  5617. height: math.unit(370, "cm")
  5618. },
  5619. {
  5620. name: "Macro",
  5621. height: math.unit(300, "meters"),
  5622. default: true
  5623. }
  5624. ]
  5625. ))
  5626. characterMakers.push(() => makeCharacter(
  5627. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5628. {
  5629. front: {
  5630. height: math.unit(6, "feet"),
  5631. weight: math.unit(60, "kg"),
  5632. name: "Front",
  5633. image: {
  5634. source: "./media/characters/jaro/front.svg"
  5635. }
  5636. },
  5637. back: {
  5638. height: math.unit(6, "feet"),
  5639. weight: math.unit(60, "kg"),
  5640. name: "Back",
  5641. image: {
  5642. source: "./media/characters/jaro/back.svg"
  5643. }
  5644. },
  5645. },
  5646. [
  5647. {
  5648. name: "Micro",
  5649. height: math.unit(7, "inches")
  5650. },
  5651. {
  5652. name: "Normal",
  5653. height: math.unit(5.5, "feet"),
  5654. default: true
  5655. },
  5656. {
  5657. name: "Minimacro",
  5658. height: math.unit(20, "feet")
  5659. },
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(200, "meters")
  5663. }
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5668. {
  5669. front: {
  5670. height: math.unit(6, "feet"),
  5671. weight: math.unit(195, "lb"),
  5672. name: "Front",
  5673. image: {
  5674. source: "./media/characters/rogue/front.svg"
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Macro",
  5681. height: math.unit(90, "feet"),
  5682. default: true
  5683. },
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5688. {
  5689. front: {
  5690. height: math.unit(5 + 8 / 12, "feet"),
  5691. weight: math.unit(140, "lb"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/piper/front.svg",
  5695. extra: 3928 / 3681
  5696. }
  5697. },
  5698. },
  5699. [
  5700. {
  5701. name: "Micro",
  5702. height: math.unit(2, "inches")
  5703. },
  5704. {
  5705. name: "Normal",
  5706. height: math.unit(5 + 8 / 12, "feet")
  5707. },
  5708. {
  5709. name: "Macro",
  5710. height: math.unit(250, "feet"),
  5711. default: true
  5712. },
  5713. {
  5714. name: "Megamacro",
  5715. height: math.unit(7, "miles")
  5716. },
  5717. ]
  5718. ))
  5719. characterMakers.push(() => makeCharacter(
  5720. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5721. {
  5722. front: {
  5723. height: math.unit(6, "feet"),
  5724. weight: math.unit(220, "lb"),
  5725. name: "Front",
  5726. image: {
  5727. source: "./media/characters/gemini/front.svg"
  5728. }
  5729. },
  5730. back: {
  5731. height: math.unit(6, "feet"),
  5732. weight: math.unit(220, "lb"),
  5733. name: "Back",
  5734. image: {
  5735. source: "./media/characters/gemini/back.svg"
  5736. }
  5737. },
  5738. kneeling: {
  5739. height: math.unit(6 / 1.5, "feet"),
  5740. weight: math.unit(220, "lb"),
  5741. name: "Kneeling",
  5742. image: {
  5743. source: "./media/characters/gemini/kneeling.svg",
  5744. bottom: 0.02
  5745. }
  5746. },
  5747. },
  5748. [
  5749. {
  5750. name: "Macro",
  5751. height: math.unit(300, "meters"),
  5752. default: true
  5753. },
  5754. {
  5755. name: "Megamacro",
  5756. height: math.unit(6900, "meters")
  5757. },
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5762. {
  5763. anthro: {
  5764. height: math.unit(2.35, "meters"),
  5765. weight: math.unit(73, "kg"),
  5766. name: "Anthro",
  5767. image: {
  5768. source: "./media/characters/alicia/anthro.svg",
  5769. extra: 2571 / 2385,
  5770. bottom: 75 / 2648
  5771. }
  5772. },
  5773. paw: {
  5774. height: math.unit(1.32, "feet"),
  5775. name: "Paw",
  5776. image: {
  5777. source: "./media/characters/alicia/paw.svg"
  5778. }
  5779. },
  5780. feral: {
  5781. height: math.unit(1.69, "meters"),
  5782. weight: math.unit(73, "kg"),
  5783. name: "Feral",
  5784. image: {
  5785. source: "./media/characters/alicia/feral.svg",
  5786. extra: 2123 / 1715,
  5787. bottom: 222 / 2349
  5788. }
  5789. },
  5790. },
  5791. [
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(2.35, "meters")
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(60, "meters"),
  5799. default: true
  5800. },
  5801. {
  5802. name: "Megamacro",
  5803. height: math.unit(10000, "kilometers")
  5804. },
  5805. ]
  5806. ))
  5807. characterMakers.push(() => makeCharacter(
  5808. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5809. {
  5810. front: {
  5811. height: math.unit(7, "feet"),
  5812. weight: math.unit(250, "lbs"),
  5813. name: "Front",
  5814. image: {
  5815. source: "./media/characters/archy/front.svg"
  5816. }
  5817. }
  5818. },
  5819. [
  5820. {
  5821. name: "Micro",
  5822. height: math.unit(1, "inch")
  5823. },
  5824. {
  5825. name: "Shorty",
  5826. height: math.unit(5, "feet")
  5827. },
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(7, "feet")
  5831. },
  5832. {
  5833. name: "Macro",
  5834. height: math.unit(600, "meters"),
  5835. default: true
  5836. },
  5837. {
  5838. name: "Megamacro",
  5839. height: math.unit(1, "mile")
  5840. },
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5845. {
  5846. front: {
  5847. height: math.unit(1.65, "meters"),
  5848. weight: math.unit(74, "kg"),
  5849. name: "Front",
  5850. image: {
  5851. source: "./media/characters/berri/front.svg",
  5852. extra: 857 / 837,
  5853. bottom: 18 / 877
  5854. }
  5855. },
  5856. bum: {
  5857. height: math.unit(1.46, "feet"),
  5858. name: "Bum",
  5859. image: {
  5860. source: "./media/characters/berri/bum.svg"
  5861. }
  5862. },
  5863. mouth: {
  5864. height: math.unit(0.44, "feet"),
  5865. name: "Mouth",
  5866. image: {
  5867. source: "./media/characters/berri/mouth.svg"
  5868. }
  5869. },
  5870. paw: {
  5871. height: math.unit(0.826, "feet"),
  5872. name: "Paw",
  5873. image: {
  5874. source: "./media/characters/berri/paw.svg"
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(1.65, "meters")
  5882. },
  5883. {
  5884. name: "Macro",
  5885. height: math.unit(60, "m"),
  5886. default: true
  5887. },
  5888. {
  5889. name: "Megamacro",
  5890. height: math.unit(9.213, "km")
  5891. },
  5892. {
  5893. name: "Planet Eater",
  5894. height: math.unit(489, "megameters")
  5895. },
  5896. {
  5897. name: "Teramacro",
  5898. height: math.unit(2471635000000, "meters")
  5899. },
  5900. {
  5901. name: "Examacro",
  5902. height: math.unit(8.0624e+26, "meters")
  5903. }
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5908. {
  5909. front: {
  5910. height: math.unit(1.72, "meters"),
  5911. weight: math.unit(68, "kg"),
  5912. name: "Front",
  5913. image: {
  5914. source: "./media/characters/lexi/front.svg"
  5915. }
  5916. }
  5917. },
  5918. [
  5919. {
  5920. name: "Very Smol",
  5921. height: math.unit(10, "mm")
  5922. },
  5923. {
  5924. name: "Micro",
  5925. height: math.unit(6.8, "cm"),
  5926. default: true
  5927. },
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(1.72, "m")
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5936. {
  5937. front: {
  5938. height: math.unit(1.69, "meters"),
  5939. weight: math.unit(68, "kg"),
  5940. name: "Front",
  5941. image: {
  5942. source: "./media/characters/martin/front.svg",
  5943. extra: 596 / 581
  5944. }
  5945. }
  5946. },
  5947. [
  5948. {
  5949. name: "Micro",
  5950. height: math.unit(6.85, "cm"),
  5951. default: true
  5952. },
  5953. {
  5954. name: "Normal",
  5955. height: math.unit(1.69, "m")
  5956. }
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5961. {
  5962. front: {
  5963. height: math.unit(1.69, "meters"),
  5964. weight: math.unit(68, "kg"),
  5965. name: "Front",
  5966. image: {
  5967. source: "./media/characters/juno/front.svg"
  5968. }
  5969. }
  5970. },
  5971. [
  5972. {
  5973. name: "Micro",
  5974. height: math.unit(7, "cm")
  5975. },
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(1.89, "m")
  5979. },
  5980. {
  5981. name: "Macro",
  5982. height: math.unit(353, "meters"),
  5983. default: true
  5984. }
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5989. {
  5990. front: {
  5991. height: math.unit(1.93, "meters"),
  5992. weight: math.unit(83, "kg"),
  5993. name: "Front",
  5994. image: {
  5995. source: "./media/characters/samantha/front.svg"
  5996. }
  5997. },
  5998. frontClothed: {
  5999. height: math.unit(1.93, "meters"),
  6000. weight: math.unit(83, "kg"),
  6001. name: "Front (Clothed)",
  6002. image: {
  6003. source: "./media/characters/samantha/front-clothed.svg"
  6004. }
  6005. },
  6006. back: {
  6007. height: math.unit(1.93, "meters"),
  6008. weight: math.unit(83, "kg"),
  6009. name: "Back",
  6010. image: {
  6011. source: "./media/characters/samantha/back.svg"
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(1.93, "m")
  6019. },
  6020. {
  6021. name: "Macro",
  6022. height: math.unit(74, "meters"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Macro+",
  6027. height: math.unit(223, "meters"),
  6028. },
  6029. {
  6030. name: "Megamacro",
  6031. height: math.unit(8381, "meters"),
  6032. },
  6033. {
  6034. name: "Megamacro+",
  6035. height: math.unit(12000, "kilometers")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(1.92, "meters"),
  6044. weight: math.unit(80, "kg"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/dr-clay/front.svg"
  6048. }
  6049. },
  6050. frontClothed: {
  6051. height: math.unit(1.92, "meters"),
  6052. weight: math.unit(80, "kg"),
  6053. name: "Front (Clothed)",
  6054. image: {
  6055. source: "./media/characters/dr-clay/front-clothed.svg"
  6056. }
  6057. }
  6058. },
  6059. [
  6060. {
  6061. name: "Normal",
  6062. height: math.unit(1.92, "m")
  6063. },
  6064. {
  6065. name: "Macro",
  6066. height: math.unit(214, "meters"),
  6067. default: true
  6068. },
  6069. {
  6070. name: "Macro+",
  6071. height: math.unit(12.237, "meters"),
  6072. },
  6073. {
  6074. name: "Megamacro",
  6075. height: math.unit(557, "megameters"),
  6076. },
  6077. {
  6078. name: "Unimaginable",
  6079. height: math.unit(120e9, "lightyears")
  6080. },
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6085. {
  6086. front: {
  6087. height: math.unit(2, "meters"),
  6088. weight: math.unit(80, "kg"),
  6089. name: "Front",
  6090. image: {
  6091. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6092. }
  6093. }
  6094. },
  6095. [
  6096. {
  6097. name: "Teramacro",
  6098. height: math.unit(500000, "lightyears"),
  6099. default: true
  6100. },
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6105. {
  6106. front: {
  6107. height: math.unit(2, "meters"),
  6108. weight: math.unit(150, "kg"),
  6109. name: "Front",
  6110. image: {
  6111. source: "./media/characters/vemus/front.svg",
  6112. extra: 2384 / 2084,
  6113. bottom: 0.0123
  6114. }
  6115. }
  6116. },
  6117. [
  6118. {
  6119. name: "Normal",
  6120. height: math.unit(3.75, "meters"),
  6121. default: true
  6122. },
  6123. {
  6124. name: "Big",
  6125. height: math.unit(8, "meters")
  6126. },
  6127. {
  6128. name: "Macro",
  6129. height: math.unit(100, "meters")
  6130. },
  6131. {
  6132. name: "Macro+",
  6133. height: math.unit(1500, "meters")
  6134. },
  6135. {
  6136. name: "Stellar",
  6137. height: math.unit(14e8, "meters")
  6138. },
  6139. ]
  6140. ))
  6141. characterMakers.push(() => makeCharacter(
  6142. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6143. {
  6144. front: {
  6145. height: math.unit(2, "meters"),
  6146. weight: math.unit(70, "kg"),
  6147. name: "Front",
  6148. image: {
  6149. source: "./media/characters/beherit/front.svg",
  6150. extra: 1408 / 1242
  6151. }
  6152. }
  6153. },
  6154. [
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(6, "feet")
  6158. },
  6159. {
  6160. name: "Lorg",
  6161. height: math.unit(25, "feet"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Lorger",
  6166. height: math.unit(75, "feet")
  6167. },
  6168. {
  6169. name: "Macro",
  6170. height: math.unit(200, "meters")
  6171. },
  6172. ]
  6173. ))
  6174. characterMakers.push(() => makeCharacter(
  6175. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6176. {
  6177. front: {
  6178. height: math.unit(2, "meters"),
  6179. weight: math.unit(150, "kg"),
  6180. name: "Front",
  6181. image: {
  6182. source: "./media/characters/everett/front.svg",
  6183. extra: 2038 / 1737,
  6184. bottom: 0.03
  6185. }
  6186. },
  6187. paw: {
  6188. height: math.unit(2 / 3.6, "meters"),
  6189. name: "Paw",
  6190. image: {
  6191. source: "./media/characters/everett/paw.svg"
  6192. }
  6193. },
  6194. },
  6195. [
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(15, "feet"),
  6199. default: true
  6200. },
  6201. {
  6202. name: "Lorg",
  6203. height: math.unit(70, "feet"),
  6204. default: true
  6205. },
  6206. {
  6207. name: "Lorger",
  6208. height: math.unit(250, "feet")
  6209. },
  6210. {
  6211. name: "Macro",
  6212. height: math.unit(500, "meters")
  6213. },
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6218. {
  6219. front: {
  6220. height: math.unit(2, "meters"),
  6221. weight: math.unit(86, "kg"),
  6222. name: "Front",
  6223. image: {
  6224. source: "./media/characters/rose-lion/front.svg"
  6225. }
  6226. },
  6227. bent: {
  6228. height: math.unit(2 / 1.4288, "meters"),
  6229. weight: math.unit(86, "kg"),
  6230. name: "Bent",
  6231. image: {
  6232. source: "./media/characters/rose-lion/bent.svg"
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Mini-Micro",
  6239. height: math.unit(1, "cm")
  6240. },
  6241. {
  6242. name: "Micro",
  6243. height: math.unit(3.5, "inches"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Normal",
  6248. height: math.unit(6 + 1 / 6, "feet")
  6249. },
  6250. {
  6251. name: "Mini-Macro",
  6252. height: math.unit(9 + 10 / 12, "feet")
  6253. },
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(2, "meters"),
  6261. weight: math.unit(350, "lbs"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/regal/front.svg"
  6265. }
  6266. },
  6267. back: {
  6268. height: math.unit(2, "meters"),
  6269. weight: math.unit(350, "lbs"),
  6270. name: "Back",
  6271. image: {
  6272. source: "./media/characters/regal/back.svg"
  6273. }
  6274. },
  6275. },
  6276. [
  6277. {
  6278. name: "Macro",
  6279. height: math.unit(350, "feet"),
  6280. default: true
  6281. }
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6286. {
  6287. front: {
  6288. height: math.unit(4 + 11 / 12, "feet"),
  6289. weight: math.unit(100, "lbs"),
  6290. name: "Front",
  6291. image: {
  6292. source: "./media/characters/opal/front.svg"
  6293. }
  6294. },
  6295. frontAlt: {
  6296. height: math.unit(4 + 11 / 12, "feet"),
  6297. weight: math.unit(100, "lbs"),
  6298. name: "Front (Alt)",
  6299. image: {
  6300. source: "./media/characters/opal/front-alt.svg"
  6301. }
  6302. },
  6303. },
  6304. [
  6305. {
  6306. name: "Small",
  6307. height: math.unit(4 + 11 / 12, "feet")
  6308. },
  6309. {
  6310. name: "Normal",
  6311. height: math.unit(20, "feet"),
  6312. default: true
  6313. },
  6314. {
  6315. name: "Macro",
  6316. height: math.unit(120, "feet")
  6317. },
  6318. {
  6319. name: "Megamacro",
  6320. height: math.unit(80, "miles")
  6321. },
  6322. {
  6323. name: "True Size",
  6324. height: math.unit(100000, "lightyears")
  6325. },
  6326. ]
  6327. ))
  6328. characterMakers.push(() => makeCharacter(
  6329. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6330. {
  6331. front: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(200, "lbs"),
  6334. name: "Front",
  6335. image: {
  6336. source: "./media/characters/vector-wuff/front.svg"
  6337. }
  6338. }
  6339. },
  6340. [
  6341. {
  6342. name: "Normal",
  6343. height: math.unit(2.8, "meters")
  6344. },
  6345. {
  6346. name: "Macro",
  6347. height: math.unit(450, "meters"),
  6348. default: true
  6349. },
  6350. {
  6351. name: "Megamacro",
  6352. height: math.unit(15, "kilometers")
  6353. }
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6358. {
  6359. front: {
  6360. height: math.unit(6, "feet"),
  6361. weight: math.unit(256, "lbs"),
  6362. name: "Front",
  6363. image: {
  6364. source: "./media/characters/dannik/front.svg"
  6365. }
  6366. }
  6367. },
  6368. [
  6369. {
  6370. name: "Macro",
  6371. height: math.unit(69.57, "meters"),
  6372. default: true
  6373. },
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(6, "feet"),
  6381. weight: math.unit(120, "lbs"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/azura-saharah/front.svg"
  6385. }
  6386. },
  6387. back: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(120, "lbs"),
  6390. name: "Back",
  6391. image: {
  6392. source: "./media/characters/azura-saharah/back.svg"
  6393. }
  6394. },
  6395. },
  6396. [
  6397. {
  6398. name: "Macro",
  6399. height: math.unit(100, "feet"),
  6400. default: true
  6401. },
  6402. ]
  6403. ))
  6404. characterMakers.push(() => makeCharacter(
  6405. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6406. {
  6407. side: {
  6408. height: math.unit(5 + 4 / 12, "feet"),
  6409. weight: math.unit(163, "lbs"),
  6410. name: "Side",
  6411. image: {
  6412. source: "./media/characters/kennedy/side.svg"
  6413. }
  6414. }
  6415. },
  6416. [
  6417. {
  6418. name: "Standard Doggo",
  6419. height: math.unit(5 + 4 / 12, "feet")
  6420. },
  6421. {
  6422. name: "Big Doggo",
  6423. height: math.unit(25 + 3 / 12, "feet"),
  6424. default: true
  6425. },
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6430. {
  6431. front: {
  6432. height: math.unit(6, "feet"),
  6433. weight: math.unit(90, "lbs"),
  6434. name: "Front",
  6435. image: {
  6436. source: "./media/characters/odi-lunar/front.svg"
  6437. }
  6438. }
  6439. },
  6440. [
  6441. {
  6442. name: "Micro",
  6443. height: math.unit(3, "inches"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(5.5, "feet")
  6449. }
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6454. {
  6455. back: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(220, "lbs"),
  6458. name: "Back",
  6459. image: {
  6460. source: "./media/characters/mandake/back.svg"
  6461. }
  6462. }
  6463. },
  6464. [
  6465. {
  6466. name: "Normal",
  6467. height: math.unit(7, "feet"),
  6468. default: true
  6469. },
  6470. {
  6471. name: "Macro",
  6472. height: math.unit(78, "feet")
  6473. },
  6474. {
  6475. name: "Macro+",
  6476. height: math.unit(300, "meters")
  6477. },
  6478. {
  6479. name: "Macro++",
  6480. height: math.unit(2400, "feet")
  6481. },
  6482. {
  6483. name: "Megamacro",
  6484. height: math.unit(5167, "meters")
  6485. },
  6486. {
  6487. name: "Gigamacro",
  6488. height: math.unit(41769, "miles")
  6489. },
  6490. ]
  6491. ))
  6492. characterMakers.push(() => makeCharacter(
  6493. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6494. {
  6495. front: {
  6496. height: math.unit(6, "feet"),
  6497. weight: math.unit(120, "lbs"),
  6498. name: "Front",
  6499. image: {
  6500. source: "./media/characters/yozey/front.svg"
  6501. }
  6502. },
  6503. frontAlt: {
  6504. height: math.unit(6, "feet"),
  6505. weight: math.unit(120, "lbs"),
  6506. name: "Front (Alt)",
  6507. image: {
  6508. source: "./media/characters/yozey/front-alt.svg"
  6509. }
  6510. },
  6511. side: {
  6512. height: math.unit(6, "feet"),
  6513. weight: math.unit(120, "lbs"),
  6514. name: "Side",
  6515. image: {
  6516. source: "./media/characters/yozey/side.svg"
  6517. }
  6518. },
  6519. },
  6520. [
  6521. {
  6522. name: "Micro",
  6523. height: math.unit(3, "inches"),
  6524. default: true
  6525. },
  6526. {
  6527. name: "Normal",
  6528. height: math.unit(6, "feet")
  6529. }
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6534. {
  6535. front: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(103, "lbs"),
  6538. name: "Front",
  6539. image: {
  6540. source: "./media/characters/valeska-voss/front.svg"
  6541. }
  6542. }
  6543. },
  6544. [
  6545. {
  6546. name: "Mini-Sized Sub",
  6547. height: math.unit(3.1, "inches")
  6548. },
  6549. {
  6550. name: "Mid-Sized Sub",
  6551. height: math.unit(6.2, "inches")
  6552. },
  6553. {
  6554. name: "Full-Sized Sub",
  6555. height: math.unit(9.3, "inches")
  6556. },
  6557. {
  6558. name: "Normal",
  6559. height: math.unit(5 + 2 / 12, "foot"),
  6560. default: true
  6561. },
  6562. ]
  6563. ))
  6564. characterMakers.push(() => makeCharacter(
  6565. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6566. {
  6567. front: {
  6568. height: math.unit(6, "feet"),
  6569. weight: math.unit(160, "lbs"),
  6570. name: "Front",
  6571. image: {
  6572. source: "./media/characters/gene-zeta/front.svg",
  6573. extra: 3006 / 2826,
  6574. bottom: 182 / 3188
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Micro",
  6581. height: math.unit(6, "inches")
  6582. },
  6583. {
  6584. name: "Normal",
  6585. height: math.unit(5 + 11 / 12, "foot"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Macro",
  6590. height: math.unit(140, "feet")
  6591. },
  6592. {
  6593. name: "Supercharged",
  6594. height: math.unit(2500, "feet")
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(350, "lbs"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/razinox/front.svg",
  6607. extra: 1686 / 1548,
  6608. bottom: 28.2 / 1868
  6609. }
  6610. },
  6611. back: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(350, "lbs"),
  6614. name: "Back",
  6615. image: {
  6616. source: "./media/characters/razinox/back.svg",
  6617. extra: 1660 / 1590,
  6618. bottom: 15 / 1665
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(10 + 8 / 12, "foot")
  6626. },
  6627. {
  6628. name: "Minimacro",
  6629. height: math.unit(15, "foot")
  6630. },
  6631. {
  6632. name: "Macro",
  6633. height: math.unit(60, "foot"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Megamacro",
  6638. height: math.unit(5, "miles")
  6639. },
  6640. {
  6641. name: "Gigamacro",
  6642. height: math.unit(6000, "miles")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(150, "lbs"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/cobalt/front.svg"
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Normal",
  6661. height: math.unit(8 + 1 / 12, "foot")
  6662. },
  6663. {
  6664. name: "Macro",
  6665. height: math.unit(111, "foot"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Supracosmic",
  6670. height: math.unit(1e42, "feet")
  6671. },
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(140, "lbs"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/amanda/front.svg"
  6683. }
  6684. }
  6685. },
  6686. [
  6687. {
  6688. name: "Micro",
  6689. height: math.unit(5, "inches"),
  6690. default: true
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(2.75, "meters"),
  6699. weight: math.unit(1200, "lb"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/teal/front.svg",
  6703. extra: 2463 / 2320,
  6704. bottom: 166 / 2629
  6705. }
  6706. },
  6707. back: {
  6708. height: math.unit(2.75, "meters"),
  6709. weight: math.unit(1200, "lb"),
  6710. name: "Back",
  6711. image: {
  6712. source: "./media/characters/teal/back.svg",
  6713. extra: 2580 / 2489,
  6714. bottom: 151 / 2731
  6715. }
  6716. },
  6717. sitting: {
  6718. height: math.unit(1.9, "meters"),
  6719. weight: math.unit(1200, "lb"),
  6720. name: "Sitting",
  6721. image: {
  6722. source: "./media/characters/teal/sitting.svg",
  6723. extra: 623 / 590,
  6724. bottom: 121 / 744
  6725. }
  6726. },
  6727. standing: {
  6728. height: math.unit(2.75, "meters"),
  6729. weight: math.unit(1200, "lb"),
  6730. name: "Standing",
  6731. image: {
  6732. source: "./media/characters/teal/standing.svg",
  6733. extra: 923 / 893,
  6734. bottom: 60 / 983
  6735. }
  6736. },
  6737. stretching: {
  6738. height: math.unit(3.65, "meters"),
  6739. weight: math.unit(1200, "lb"),
  6740. name: "Stretching",
  6741. image: {
  6742. source: "./media/characters/teal/stretching.svg",
  6743. extra: 1276 / 1244,
  6744. bottom: 0 / 1276
  6745. }
  6746. },
  6747. legged: {
  6748. height: math.unit(1.3, "meters"),
  6749. weight: math.unit(100, "lb"),
  6750. name: "Legged",
  6751. image: {
  6752. source: "./media/characters/teal/legged.svg",
  6753. extra: 462 / 437,
  6754. bottom: 24 / 486
  6755. }
  6756. },
  6757. naga: {
  6758. height: math.unit(5.4, "meters"),
  6759. weight: math.unit(4000, "lb"),
  6760. name: "Naga",
  6761. image: {
  6762. source: "./media/characters/teal/naga.svg",
  6763. extra: 1902 / 1858,
  6764. bottom: 0 / 1902
  6765. }
  6766. },
  6767. hand: {
  6768. height: math.unit(0.52, "meters"),
  6769. name: "Hand",
  6770. image: {
  6771. source: "./media/characters/teal/hand.svg"
  6772. }
  6773. },
  6774. maw: {
  6775. height: math.unit(0.43, "meters"),
  6776. name: "Maw",
  6777. image: {
  6778. source: "./media/characters/teal/maw.svg"
  6779. }
  6780. },
  6781. slit: {
  6782. height: math.unit(0.25, "meters"),
  6783. name: "Slit",
  6784. image: {
  6785. source: "./media/characters/teal/slit.svg"
  6786. }
  6787. },
  6788. },
  6789. [
  6790. {
  6791. name: "Normal",
  6792. height: math.unit(2.75, "meters"),
  6793. default: true
  6794. },
  6795. {
  6796. name: "Macro",
  6797. height: math.unit(300, "feet")
  6798. },
  6799. {
  6800. name: "Macro+",
  6801. height: math.unit(2000, "feet")
  6802. },
  6803. ]
  6804. ))
  6805. characterMakers.push(() => makeCharacter(
  6806. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6807. {
  6808. frontCat: {
  6809. height: math.unit(6, "feet"),
  6810. weight: math.unit(180, "lbs"),
  6811. name: "Front (Cat)",
  6812. image: {
  6813. source: "./media/characters/ravin-amulet/front-cat.svg"
  6814. }
  6815. },
  6816. frontCatAlt: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(180, "lbs"),
  6819. name: "Front (Alt, Cat)",
  6820. image: {
  6821. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6822. }
  6823. },
  6824. frontWerewolf: {
  6825. height: math.unit(6 * 1.2, "feet"),
  6826. weight: math.unit(225, "lbs"),
  6827. name: "Front (Werewolf)",
  6828. image: {
  6829. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6830. }
  6831. },
  6832. backWerewolf: {
  6833. height: math.unit(6 * 1.2, "feet"),
  6834. weight: math.unit(225, "lbs"),
  6835. name: "Back (Werewolf)",
  6836. image: {
  6837. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6838. }
  6839. },
  6840. },
  6841. [
  6842. {
  6843. name: "Nano",
  6844. height: math.unit(1, "micrometer")
  6845. },
  6846. {
  6847. name: "Micro",
  6848. height: math.unit(1, "inch")
  6849. },
  6850. {
  6851. name: "Normal",
  6852. height: math.unit(6, "feet"),
  6853. default: true
  6854. },
  6855. {
  6856. name: "Macro",
  6857. height: math.unit(60, "feet")
  6858. }
  6859. ]
  6860. ))
  6861. characterMakers.push(() => makeCharacter(
  6862. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6863. {
  6864. front: {
  6865. height: math.unit(6, "feet"),
  6866. weight: math.unit(165, "lbs"),
  6867. name: "Front",
  6868. image: {
  6869. source: "./media/characters/fluoresce/front.svg"
  6870. }
  6871. }
  6872. },
  6873. [
  6874. {
  6875. name: "Micro",
  6876. height: math.unit(6, "cm")
  6877. },
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(5 + 7 / 12, "feet"),
  6881. default: true
  6882. },
  6883. {
  6884. name: "Macro",
  6885. height: math.unit(56, "feet")
  6886. },
  6887. {
  6888. name: "Megamacro",
  6889. height: math.unit(1.9, "miles")
  6890. },
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(9 + 6 / 12, "feet"),
  6898. weight: math.unit(523, "lbs"),
  6899. name: "Side",
  6900. image: {
  6901. source: "./media/characters/aurora/side.svg"
  6902. }
  6903. }
  6904. },
  6905. [
  6906. {
  6907. name: "Normal",
  6908. height: math.unit(9 + 6 / 12, "feet")
  6909. },
  6910. {
  6911. name: "Macro",
  6912. height: math.unit(96, "feet"),
  6913. default: true
  6914. },
  6915. {
  6916. name: "Macro+",
  6917. height: math.unit(243, "feet")
  6918. },
  6919. ]
  6920. ))
  6921. characterMakers.push(() => makeCharacter(
  6922. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6923. {
  6924. front: {
  6925. height: math.unit(194, "cm"),
  6926. weight: math.unit(90, "kg"),
  6927. name: "Front",
  6928. image: {
  6929. source: "./media/characters/ranek/front.svg"
  6930. }
  6931. },
  6932. side: {
  6933. height: math.unit(194, "cm"),
  6934. weight: math.unit(90, "kg"),
  6935. name: "Side",
  6936. image: {
  6937. source: "./media/characters/ranek/side.svg"
  6938. }
  6939. },
  6940. back: {
  6941. height: math.unit(194, "cm"),
  6942. weight: math.unit(90, "kg"),
  6943. name: "Back",
  6944. image: {
  6945. source: "./media/characters/ranek/back.svg"
  6946. }
  6947. },
  6948. feral: {
  6949. height: math.unit(30, "cm"),
  6950. weight: math.unit(1.6, "lbs"),
  6951. name: "Feral",
  6952. image: {
  6953. source: "./media/characters/ranek/feral.svg"
  6954. }
  6955. },
  6956. },
  6957. [
  6958. {
  6959. name: "Normal",
  6960. height: math.unit(194, "cm"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(100, "meters")
  6966. },
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6971. {
  6972. front: {
  6973. height: math.unit(5 + 6 / 12, "feet"),
  6974. weight: math.unit(153, "lbs"),
  6975. name: "Front",
  6976. image: {
  6977. source: "./media/characters/andrew-cooper/front.svg"
  6978. }
  6979. },
  6980. },
  6981. [
  6982. {
  6983. name: "Nano",
  6984. height: math.unit(1, "mm")
  6985. },
  6986. {
  6987. name: "Micro",
  6988. height: math.unit(2, "inches")
  6989. },
  6990. {
  6991. name: "Normal",
  6992. height: math.unit(5 + 6 / 12, "feet"),
  6993. default: true
  6994. }
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6999. {
  7000. front: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(180, "lbs"),
  7003. name: "Front",
  7004. image: {
  7005. source: "./media/characters/akane-sato/front.svg",
  7006. extra: 1219 / 1140
  7007. }
  7008. },
  7009. back: {
  7010. height: math.unit(6, "feet"),
  7011. weight: math.unit(180, "lbs"),
  7012. name: "Back",
  7013. image: {
  7014. source: "./media/characters/akane-sato/back.svg",
  7015. extra: 1219 / 1170
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(2.5, "meters")
  7023. },
  7024. {
  7025. name: "Macro",
  7026. height: math.unit(250, "meters"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Megamacro",
  7031. height: math.unit(25, "km")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(65, "kg"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/rook/front.svg",
  7044. extra: 960 / 950
  7045. }
  7046. }
  7047. },
  7048. [
  7049. {
  7050. name: "Normal",
  7051. height: math.unit(8.8, "feet")
  7052. },
  7053. {
  7054. name: "Macro",
  7055. height: math.unit(88, "feet"),
  7056. default: true
  7057. },
  7058. {
  7059. name: "Megamacro",
  7060. height: math.unit(8, "miles")
  7061. },
  7062. ]
  7063. ))
  7064. characterMakers.push(() => makeCharacter(
  7065. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7066. {
  7067. front: {
  7068. height: math.unit(12 + 2 / 12, "feet"),
  7069. weight: math.unit(808, "lbs"),
  7070. name: "Front",
  7071. image: {
  7072. source: "./media/characters/prodigy/front.svg"
  7073. }
  7074. }
  7075. },
  7076. [
  7077. {
  7078. name: "Normal",
  7079. height: math.unit(12 + 2 / 12, "feet"),
  7080. default: true
  7081. },
  7082. {
  7083. name: "Macro",
  7084. height: math.unit(143, "feet")
  7085. },
  7086. {
  7087. name: "Macro+",
  7088. height: math.unit(400, "feet")
  7089. },
  7090. ]
  7091. ))
  7092. characterMakers.push(() => makeCharacter(
  7093. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7094. {
  7095. front: {
  7096. height: math.unit(6, "feet"),
  7097. weight: math.unit(225, "lbs"),
  7098. name: "Front",
  7099. image: {
  7100. source: "./media/characters/daniel/front.svg"
  7101. }
  7102. },
  7103. leaning: {
  7104. height: math.unit(6, "feet"),
  7105. weight: math.unit(225, "lbs"),
  7106. name: "Leaning",
  7107. image: {
  7108. source: "./media/characters/daniel/leaning.svg"
  7109. }
  7110. },
  7111. },
  7112. [
  7113. {
  7114. name: "Macro",
  7115. height: math.unit(1000, "feet"),
  7116. default: true
  7117. },
  7118. ]
  7119. ))
  7120. characterMakers.push(() => makeCharacter(
  7121. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7122. {
  7123. front: {
  7124. height: math.unit(6, "feet"),
  7125. weight: math.unit(88, "lbs"),
  7126. name: "Front",
  7127. image: {
  7128. source: "./media/characters/chiros/front.svg",
  7129. extra: 306 / 226
  7130. }
  7131. },
  7132. side: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(88, "lbs"),
  7135. name: "Side",
  7136. image: {
  7137. source: "./media/characters/chiros/side.svg",
  7138. extra: 306 / 226
  7139. }
  7140. },
  7141. },
  7142. [
  7143. {
  7144. name: "Normal",
  7145. height: math.unit(6, "cm"),
  7146. default: true
  7147. },
  7148. ]
  7149. ))
  7150. characterMakers.push(() => makeCharacter(
  7151. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7152. {
  7153. front: {
  7154. height: math.unit(6, "feet"),
  7155. weight: math.unit(100, "lbs"),
  7156. name: "Front",
  7157. image: {
  7158. source: "./media/characters/selka/front.svg",
  7159. extra: 947 / 887
  7160. }
  7161. }
  7162. },
  7163. [
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(5, "cm"),
  7167. default: true
  7168. },
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7173. {
  7174. front: {
  7175. height: math.unit(8 + 3 / 12, "feet"),
  7176. weight: math.unit(424, "lbs"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/verin/front.svg",
  7180. extra: 1845 / 1550
  7181. }
  7182. },
  7183. frontArmored: {
  7184. height: math.unit(8 + 3 / 12, "feet"),
  7185. weight: math.unit(424, "lbs"),
  7186. name: "Front (Armored)",
  7187. image: {
  7188. source: "./media/characters/verin/front-armor.svg",
  7189. extra: 1845 / 1550,
  7190. bottom: 0.01
  7191. }
  7192. },
  7193. back: {
  7194. height: math.unit(8 + 3 / 12, "feet"),
  7195. weight: math.unit(424, "lbs"),
  7196. name: "Back",
  7197. image: {
  7198. source: "./media/characters/verin/back.svg",
  7199. bottom: 0.1,
  7200. extra: 1
  7201. }
  7202. },
  7203. foot: {
  7204. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7205. name: "Foot",
  7206. image: {
  7207. source: "./media/characters/verin/foot.svg"
  7208. }
  7209. },
  7210. },
  7211. [
  7212. {
  7213. name: "Normal",
  7214. height: math.unit(8 + 3 / 12, "feet")
  7215. },
  7216. {
  7217. name: "Minimacro",
  7218. height: math.unit(21, "feet"),
  7219. default: true
  7220. },
  7221. {
  7222. name: "Macro",
  7223. height: math.unit(626, "feet")
  7224. },
  7225. ]
  7226. ))
  7227. characterMakers.push(() => makeCharacter(
  7228. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7229. {
  7230. front: {
  7231. height: math.unit(2.718, "meters"),
  7232. weight: math.unit(150, "lbs"),
  7233. name: "Front",
  7234. image: {
  7235. source: "./media/characters/sovrim-terraquian/front.svg"
  7236. }
  7237. },
  7238. back: {
  7239. height: math.unit(2.718, "meters"),
  7240. weight: math.unit(150, "lbs"),
  7241. name: "Back",
  7242. image: {
  7243. source: "./media/characters/sovrim-terraquian/back.svg"
  7244. }
  7245. }
  7246. },
  7247. [
  7248. {
  7249. name: "Micro",
  7250. height: math.unit(2, "inches")
  7251. },
  7252. {
  7253. name: "Small",
  7254. height: math.unit(1, "meter")
  7255. },
  7256. {
  7257. name: "Normal",
  7258. height: math.unit(Math.E, "meters"),
  7259. default: true
  7260. },
  7261. {
  7262. name: "Macro",
  7263. height: math.unit(20, "meters")
  7264. },
  7265. {
  7266. name: "Macro+",
  7267. height: math.unit(400, "meters")
  7268. },
  7269. ]
  7270. ))
  7271. characterMakers.push(() => makeCharacter(
  7272. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7273. {
  7274. front: {
  7275. height: math.unit(7, "feet"),
  7276. weight: math.unit(489, "lbs"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/reece-silvermane/front.svg",
  7280. bottom: 0.02,
  7281. extra: 1
  7282. }
  7283. },
  7284. },
  7285. [
  7286. {
  7287. name: "Macro",
  7288. height: math.unit(1.5, "miles"),
  7289. default: true
  7290. },
  7291. ]
  7292. ))
  7293. characterMakers.push(() => makeCharacter(
  7294. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7295. {
  7296. front: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(78, "kg"),
  7299. name: "Front",
  7300. image: {
  7301. source: "./media/characters/kane/front.svg",
  7302. extra: 978 / 899
  7303. }
  7304. },
  7305. },
  7306. [
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(2.1, "m"),
  7310. },
  7311. {
  7312. name: "Macro",
  7313. height: math.unit(1, "km"),
  7314. default: true
  7315. },
  7316. ]
  7317. ))
  7318. characterMakers.push(() => makeCharacter(
  7319. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7320. {
  7321. front: {
  7322. height: math.unit(6, "feet"),
  7323. weight: math.unit(200, "kg"),
  7324. name: "Front",
  7325. image: {
  7326. source: "./media/characters/tegon/front.svg",
  7327. bottom: 0.01,
  7328. extra: 1
  7329. }
  7330. },
  7331. },
  7332. [
  7333. {
  7334. name: "Micro",
  7335. height: math.unit(1, "inch")
  7336. },
  7337. {
  7338. name: "Normal",
  7339. height: math.unit(6 + 3 / 12, "feet"),
  7340. default: true
  7341. },
  7342. {
  7343. name: "Macro",
  7344. height: math.unit(300, "feet")
  7345. },
  7346. {
  7347. name: "Megamacro",
  7348. height: math.unit(69, "miles")
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7354. {
  7355. side: {
  7356. height: math.unit(6, "feet"),
  7357. weight: math.unit(2304, "lbs"),
  7358. name: "Side",
  7359. image: {
  7360. source: "./media/characters/arcturax/side.svg",
  7361. extra: 790 / 376,
  7362. bottom: 0.01
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Micro",
  7369. height: math.unit(2, "inch")
  7370. },
  7371. {
  7372. name: "Normal",
  7373. height: math.unit(6, "feet")
  7374. },
  7375. {
  7376. name: "Macro",
  7377. height: math.unit(39, "feet"),
  7378. default: true
  7379. },
  7380. {
  7381. name: "Megamacro",
  7382. height: math.unit(7, "miles")
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7388. {
  7389. front: {
  7390. height: math.unit(6, "feet"),
  7391. weight: math.unit(50, "lbs"),
  7392. name: "Front",
  7393. image: {
  7394. source: "./media/characters/sentri/front.svg",
  7395. extra: 1750 / 1570,
  7396. bottom: 0.025
  7397. }
  7398. },
  7399. frontAlt: {
  7400. height: math.unit(6, "feet"),
  7401. weight: math.unit(50, "lbs"),
  7402. name: "Front (Alt)",
  7403. image: {
  7404. source: "./media/characters/sentri/front-alt.svg",
  7405. extra: 1750 / 1570,
  7406. bottom: 0.025
  7407. }
  7408. },
  7409. },
  7410. [
  7411. {
  7412. name: "Normal",
  7413. height: math.unit(15, "feet"),
  7414. default: true
  7415. },
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(2500, "feet")
  7419. }
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(5 + 8 / 12, "feet"),
  7427. weight: math.unit(130, "lbs"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/corvin/front.svg",
  7431. extra: 1803 / 1629
  7432. }
  7433. },
  7434. frontShirt: {
  7435. height: math.unit(5 + 8 / 12, "feet"),
  7436. weight: math.unit(130, "lbs"),
  7437. name: "Front (Shirt)",
  7438. image: {
  7439. source: "./media/characters/corvin/front-shirt.svg",
  7440. extra: 1803 / 1629
  7441. }
  7442. },
  7443. frontPoncho: {
  7444. height: math.unit(5 + 8 / 12, "feet"),
  7445. weight: math.unit(130, "lbs"),
  7446. name: "Front (Poncho)",
  7447. image: {
  7448. source: "./media/characters/corvin/front-poncho.svg",
  7449. extra: 1803 / 1629
  7450. }
  7451. },
  7452. side: {
  7453. height: math.unit(5 + 8 / 12, "feet"),
  7454. weight: math.unit(130, "lbs"),
  7455. name: "Side",
  7456. image: {
  7457. source: "./media/characters/corvin/side.svg",
  7458. extra: 1012 / 945
  7459. }
  7460. },
  7461. back: {
  7462. height: math.unit(5 + 8 / 12, "feet"),
  7463. weight: math.unit(130, "lbs"),
  7464. name: "Back",
  7465. image: {
  7466. source: "./media/characters/corvin/back.svg",
  7467. extra: 1803 / 1629
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Micro",
  7474. height: math.unit(3, "inches")
  7475. },
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(5 + 8 / 12, "feet")
  7479. },
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(300, "feet"),
  7483. default: true
  7484. },
  7485. {
  7486. name: "Megamacro",
  7487. height: math.unit(500, "miles")
  7488. }
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(135, "lbs"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/q/front.svg",
  7500. extra: 854 / 752,
  7501. bottom: 0.005
  7502. }
  7503. },
  7504. back: {
  7505. height: math.unit(6, "feet"),
  7506. weight: math.unit(130, "lbs"),
  7507. name: "Back",
  7508. image: {
  7509. source: "./media/characters/q/back.svg",
  7510. extra: 854 / 752
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Macro",
  7517. height: math.unit(90, "feet"),
  7518. default: true
  7519. },
  7520. {
  7521. name: "Extra Macro",
  7522. height: math.unit(300, "feet"),
  7523. },
  7524. {
  7525. name: "BIG WALF",
  7526. height: math.unit(750, "feet"),
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(6, "feet"),
  7535. weight: math.unit(150, "lbs"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/carley/front.svg",
  7539. extra: 3927 / 3540,
  7540. bottom: 29.2 / 735
  7541. }
  7542. }
  7543. },
  7544. [
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(6 + 3 / 12, "feet")
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(185, "feet"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "Megamacro",
  7556. height: math.unit(8, "miles"),
  7557. },
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(3, "feet"),
  7565. weight: math.unit(28, "lbs"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/citrine/front.svg"
  7569. }
  7570. }
  7571. },
  7572. [
  7573. {
  7574. name: "Normal",
  7575. height: math.unit(3, "feet"),
  7576. default: true
  7577. }
  7578. ]
  7579. ))
  7580. characterMakers.push(() => makeCharacter(
  7581. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7582. {
  7583. front: {
  7584. height: math.unit(14, "feet"),
  7585. weight: math.unit(1450, "kg"),
  7586. capacity: math.unit(15, "people"),
  7587. name: "Front",
  7588. image: {
  7589. source: "./media/characters/aura-starwind/front.svg",
  7590. extra: 1455 / 1335
  7591. }
  7592. },
  7593. side: {
  7594. height: math.unit(14, "feet"),
  7595. weight: math.unit(1450, "kg"),
  7596. capacity: math.unit(15, "people"),
  7597. name: "Side",
  7598. image: {
  7599. source: "./media/characters/aura-starwind/side.svg",
  7600. extra: 1654 / 1497
  7601. }
  7602. },
  7603. taur: {
  7604. height: math.unit(18, "feet"),
  7605. weight: math.unit(5500, "kg"),
  7606. capacity: math.unit(50, "people"),
  7607. name: "Taur",
  7608. image: {
  7609. source: "./media/characters/aura-starwind/taur.svg",
  7610. extra: 1760 / 1650
  7611. }
  7612. },
  7613. feral: {
  7614. height: math.unit(46, "feet"),
  7615. weight: math.unit(25000, "kg"),
  7616. capacity: math.unit(120, "people"),
  7617. name: "Feral",
  7618. image: {
  7619. source: "./media/characters/aura-starwind/feral.svg"
  7620. }
  7621. },
  7622. },
  7623. [
  7624. {
  7625. name: "Normal",
  7626. height: math.unit(14, "feet"),
  7627. default: true
  7628. },
  7629. {
  7630. name: "Macro",
  7631. height: math.unit(50, "meters")
  7632. },
  7633. {
  7634. name: "Megamacro",
  7635. height: math.unit(5000, "meters")
  7636. },
  7637. {
  7638. name: "Gigamacro",
  7639. height: math.unit(100000, "kilometers")
  7640. },
  7641. ]
  7642. ))
  7643. characterMakers.push(() => makeCharacter(
  7644. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7645. {
  7646. front: {
  7647. height: math.unit(2 + 7 / 12, "feet"),
  7648. weight: math.unit(32, "lbs"),
  7649. name: "Front",
  7650. image: {
  7651. source: "./media/characters/rivet/front.svg",
  7652. extra: 1716 / 1658,
  7653. bottom: 0.03
  7654. }
  7655. },
  7656. foot: {
  7657. height: math.unit(0.551, "feet"),
  7658. name: "Rivet's Foot",
  7659. image: {
  7660. source: "./media/characters/rivet/foot.svg"
  7661. },
  7662. rename: true
  7663. }
  7664. },
  7665. [
  7666. {
  7667. name: "Micro",
  7668. height: math.unit(1.5, "inches"),
  7669. },
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(2 + 7 / 12, "feet"),
  7673. default: true
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(85, "feet")
  7678. },
  7679. {
  7680. name: "Megamacro",
  7681. height: math.unit(2.2, "km")
  7682. }
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(5 + 9 / 12, "feet"),
  7690. weight: math.unit(150, "lbs"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/coffee/front.svg",
  7694. extra: 3666 / 3032,
  7695. bottom: 0.04
  7696. }
  7697. },
  7698. foot: {
  7699. height: math.unit(1.29, "feet"),
  7700. name: "Foot",
  7701. image: {
  7702. source: "./media/characters/coffee/foot.svg"
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Micro",
  7709. height: math.unit(2, "inches"),
  7710. },
  7711. {
  7712. name: "Normal",
  7713. height: math.unit(5 + 9 / 12, "feet"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Macro",
  7718. height: math.unit(800, "feet")
  7719. },
  7720. {
  7721. name: "Megamacro",
  7722. height: math.unit(25, "miles")
  7723. }
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7728. {
  7729. front: {
  7730. height: math.unit(6, "feet"),
  7731. weight: math.unit(200, "lbs"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/chari-gal/front.svg",
  7735. extra: 1568 / 1385,
  7736. bottom: 0.047
  7737. }
  7738. },
  7739. gigantamax: {
  7740. height: math.unit(6 * 16, "feet"),
  7741. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7742. name: "Gigantamax",
  7743. image: {
  7744. source: "./media/characters/chari-gal/gigantamax.svg",
  7745. extra: 1124 / 888,
  7746. bottom: 0.03
  7747. }
  7748. },
  7749. },
  7750. [
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(5 + 7 / 12, "feet")
  7754. },
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(200, "feet"),
  7758. default: true
  7759. }
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7764. {
  7765. front: {
  7766. height: math.unit(6, "feet"),
  7767. weight: math.unit(150, "lbs"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/nova/front.svg",
  7771. extra: 5000 / 4722,
  7772. bottom: 0.02
  7773. }
  7774. }
  7775. },
  7776. [
  7777. {
  7778. name: "Micro-",
  7779. height: math.unit(0.8, "inches")
  7780. },
  7781. {
  7782. name: "Micro",
  7783. height: math.unit(2, "inches"),
  7784. default: true
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(3 + 1 / 12, "feet"),
  7793. weight: math.unit(21.7, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/argent/front.svg",
  7797. extra: 1471 / 1331,
  7798. bottom: 100.8 / 1575.5
  7799. }
  7800. }
  7801. },
  7802. [
  7803. {
  7804. name: "Micro",
  7805. height: math.unit(2, "inches")
  7806. },
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(3 + 1 / 12, "feet"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(120, "feet")
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7820. {
  7821. lamp: {
  7822. height: math.unit(7 * 1559 / 989, "feet"),
  7823. name: "Magic Lamp",
  7824. image: {
  7825. source: "./media/characters/mira-al-cul/lamp.svg",
  7826. extra: 1617 / 1559
  7827. }
  7828. },
  7829. front: {
  7830. height: math.unit(7, "feet"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/mira-al-cul/front.svg",
  7834. extra: 1044 / 990
  7835. }
  7836. },
  7837. },
  7838. [
  7839. {
  7840. name: "Heavily Restricted",
  7841. height: math.unit(7 * 1559 / 989, "feet")
  7842. },
  7843. {
  7844. name: "Freshly Freed",
  7845. height: math.unit(50 * 1559 / 989, "feet")
  7846. },
  7847. {
  7848. name: "World Encompassing",
  7849. height: math.unit(10000 * 1559 / 989, "miles")
  7850. },
  7851. {
  7852. name: "Galactic",
  7853. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7854. },
  7855. {
  7856. name: "Palmed Universe",
  7857. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Multiversal Matriarch",
  7862. height: math.unit(8.87e10, "yottameters")
  7863. },
  7864. {
  7865. name: "Void Mother",
  7866. height: math.unit(3.14e110, "yottaparsecs")
  7867. },
  7868. {
  7869. name: "Toying with Transcendence",
  7870. height: math.unit(1e307, "meters")
  7871. },
  7872. ]
  7873. ))
  7874. characterMakers.push(() => makeCharacter(
  7875. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7876. {
  7877. front: {
  7878. height: math.unit(17 + 1 / 12, "feet"),
  7879. weight: math.unit(476.2 * 5, "lbs"),
  7880. name: "Front",
  7881. image: {
  7882. source: "./media/characters/kuro-shi-uchū/front.svg",
  7883. extra: 2329 / 1835,
  7884. bottom: 0.02
  7885. }
  7886. },
  7887. },
  7888. [
  7889. {
  7890. name: "Micro",
  7891. height: math.unit(2, "inches")
  7892. },
  7893. {
  7894. name: "Normal",
  7895. height: math.unit(12, "meters")
  7896. },
  7897. {
  7898. name: "Planetary",
  7899. height: math.unit(0.00929, "AU"),
  7900. default: true
  7901. },
  7902. {
  7903. name: "Universal",
  7904. height: math.unit(20, "gigaparsecs")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(5 + 2 / 12, "feet"),
  7913. weight: math.unit(120, "lbs"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/katherine/front.svg",
  7917. extra: 2075 / 1969
  7918. }
  7919. },
  7920. dress: {
  7921. height: math.unit(5 + 2 / 12, "feet"),
  7922. weight: math.unit(120, "lbs"),
  7923. name: "Dress",
  7924. image: {
  7925. source: "./media/characters/katherine/dress.svg",
  7926. extra: 2258 / 2064
  7927. }
  7928. },
  7929. },
  7930. [
  7931. {
  7932. name: "Micro",
  7933. height: math.unit(1, "inches"),
  7934. default: true
  7935. },
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(5 + 2 / 12, "feet")
  7939. },
  7940. {
  7941. name: "Macro",
  7942. height: math.unit(100, "meters")
  7943. },
  7944. {
  7945. name: "Megamacro",
  7946. height: math.unit(80, "miles")
  7947. },
  7948. ]
  7949. ))
  7950. characterMakers.push(() => makeCharacter(
  7951. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7952. {
  7953. front: {
  7954. height: math.unit(7 + 8 / 12, "feet"),
  7955. weight: math.unit(250, "lbs"),
  7956. name: "Front",
  7957. image: {
  7958. source: "./media/characters/yevis/front.svg",
  7959. extra: 1938 / 1755
  7960. }
  7961. }
  7962. },
  7963. [
  7964. {
  7965. name: "Mortal",
  7966. height: math.unit(7 + 8 / 12, "feet")
  7967. },
  7968. {
  7969. name: "Battle",
  7970. height: math.unit(25 + 11 / 12, "feet")
  7971. },
  7972. {
  7973. name: "Wrath",
  7974. height: math.unit(1654 + 11 / 12, "feet")
  7975. },
  7976. {
  7977. name: "Planet Destroyer",
  7978. height: math.unit(12000, "miles")
  7979. },
  7980. {
  7981. name: "Galaxy Conqueror",
  7982. height: math.unit(1.45, "zettameters"),
  7983. default: true
  7984. },
  7985. {
  7986. name: "Universal War",
  7987. height: math.unit(184, "gigaparsecs")
  7988. },
  7989. {
  7990. name: "Eternity War",
  7991. height: math.unit(1.98e55, "yottaparsecs")
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(5 + 8 / 12, "feet"),
  8000. weight: math.unit(63, "kg"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/xavier/front.svg",
  8004. extra: 944 / 883
  8005. }
  8006. },
  8007. frontStretch: {
  8008. height: math.unit(5 + 8 / 12, "feet"),
  8009. weight: math.unit(63, "kg"),
  8010. name: "Stretching",
  8011. image: {
  8012. source: "./media/characters/xavier/front-stretch.svg",
  8013. extra: 962 / 820
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(5 + 8 / 12, "feet")
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(100, "meters"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "McLargeHuge",
  8029. height: math.unit(10, "miles")
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(5 + 5 / 12, "feet"),
  8038. weight: math.unit(150, "lb"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/joshii/front.svg",
  8042. extra: 765 / 653,
  8043. bottom: 51 / 816
  8044. }
  8045. },
  8046. foot: {
  8047. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8048. name: "Foot",
  8049. image: {
  8050. source: "./media/characters/joshii/foot.svg"
  8051. }
  8052. },
  8053. },
  8054. [
  8055. {
  8056. name: "Micro",
  8057. height: math.unit(2, "inches"),
  8058. default: true
  8059. },
  8060. {
  8061. name: "Normal",
  8062. height: math.unit(5 + 5 / 12, "feet")
  8063. },
  8064. {
  8065. name: "Macro",
  8066. height: math.unit(785, "feet")
  8067. },
  8068. {
  8069. name: "Megamacro",
  8070. height: math.unit(24.5, "miles")
  8071. },
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(6, "feet"),
  8079. weight: math.unit(150, "lb"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/goddess-elizabeth/front.svg",
  8083. extra: 1800 / 1525,
  8084. bottom: 0.005
  8085. }
  8086. },
  8087. foot: {
  8088. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8089. name: "Foot",
  8090. image: {
  8091. source: "./media/characters/goddess-elizabeth/foot.svg"
  8092. }
  8093. },
  8094. mouth: {
  8095. height: math.unit(6, "feet"),
  8096. name: "Mouth",
  8097. image: {
  8098. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Micro",
  8105. height: math.unit(12, "feet")
  8106. },
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(80, "miles"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Macro",
  8114. height: math.unit(15000, "parsecs")
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(5 + 9 / 12, "feet"),
  8123. weight: math.unit(144, "lb"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/kara/front.svg"
  8127. }
  8128. },
  8129. feet: {
  8130. height: math.unit(6 / 6.765, "feet"),
  8131. name: "Kara's Feet",
  8132. rename: true,
  8133. image: {
  8134. source: "./media/characters/kara/feet.svg"
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(5 + 9 / 12, "feet")
  8142. },
  8143. {
  8144. name: "Macro",
  8145. height: math.unit(174, "feet"),
  8146. default: true
  8147. },
  8148. ]
  8149. ))
  8150. characterMakers.push(() => makeCharacter(
  8151. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8152. {
  8153. front: {
  8154. height: math.unit(18, "feet"),
  8155. weight: math.unit(4050, "lb"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/tyrone/front.svg",
  8159. extra: 2405 / 2270,
  8160. bottom: 182 / 2587
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Normal",
  8167. height: math.unit(18, "feet"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Macro",
  8172. height: math.unit(300, "feet")
  8173. },
  8174. {
  8175. name: "Megamacro",
  8176. height: math.unit(15, "km")
  8177. },
  8178. {
  8179. name: "Gigamacro",
  8180. height: math.unit(500, "km")
  8181. },
  8182. {
  8183. name: "Teramacro",
  8184. height: math.unit(0.5, "gigameters")
  8185. },
  8186. {
  8187. name: "Omnimacro",
  8188. height: math.unit(1e252, "yottauniverse")
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(7 + 8 / 12, "feet"),
  8197. weight: math.unit(120, "lb"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/danny/front.svg",
  8201. extra: 1490 / 1350
  8202. }
  8203. },
  8204. back: {
  8205. height: math.unit(7 + 8 / 12, "feet"),
  8206. weight: math.unit(120, "lb"),
  8207. name: "Back",
  8208. image: {
  8209. source: "./media/characters/danny/back.svg",
  8210. extra: 1490 / 1350
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Normal",
  8217. height: math.unit(7 + 8 / 12, "feet"),
  8218. default: true
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(3.5, "inches"),
  8227. weight: math.unit(19, "grams"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/mallow/front.svg",
  8231. extra: 471 / 431
  8232. }
  8233. },
  8234. back: {
  8235. height: math.unit(3.5, "inches"),
  8236. weight: math.unit(19, "grams"),
  8237. name: "Back",
  8238. image: {
  8239. source: "./media/characters/mallow/back.svg",
  8240. extra: 471 / 431
  8241. }
  8242. },
  8243. },
  8244. [
  8245. {
  8246. name: "Normal",
  8247. height: math.unit(3.5, "inches"),
  8248. default: true
  8249. },
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(9, "feet"),
  8257. weight: math.unit(230, "kg"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/starry-aqua/front.svg"
  8261. }
  8262. },
  8263. back: {
  8264. height: math.unit(9, "feet"),
  8265. weight: math.unit(230, "kg"),
  8266. name: "Back",
  8267. image: {
  8268. source: "./media/characters/starry-aqua/back.svg"
  8269. }
  8270. },
  8271. hand: {
  8272. height: math.unit(9 * 0.1168, "feet"),
  8273. name: "Hand",
  8274. image: {
  8275. source: "./media/characters/starry-aqua/hand.svg"
  8276. }
  8277. },
  8278. foot: {
  8279. height: math.unit(9 * 0.18, "feet"),
  8280. name: "Foot",
  8281. image: {
  8282. source: "./media/characters/starry-aqua/foot.svg"
  8283. }
  8284. }
  8285. },
  8286. [
  8287. {
  8288. name: "Micro",
  8289. height: math.unit(3, "inches")
  8290. },
  8291. {
  8292. name: "Normal",
  8293. height: math.unit(9, "feet")
  8294. },
  8295. {
  8296. name: "Macro",
  8297. height: math.unit(300, "feet"),
  8298. default: true
  8299. },
  8300. {
  8301. name: "Megamacro",
  8302. height: math.unit(3200, "feet")
  8303. }
  8304. ]
  8305. ))
  8306. characterMakers.push(() => makeCharacter(
  8307. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8308. {
  8309. front: {
  8310. height: math.unit(6, "feet"),
  8311. weight: math.unit(230, "lb"),
  8312. name: "Front",
  8313. image: {
  8314. source: "./media/characters/luka/front.svg",
  8315. extra: 1,
  8316. bottom: 0.025
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(12 + 8 / 12, "feet"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Minimacro",
  8328. height: math.unit(20, "feet")
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(250, "feet")
  8333. },
  8334. {
  8335. name: "Megamacro",
  8336. height: math.unit(5, "miles")
  8337. },
  8338. {
  8339. name: "Gigamacro",
  8340. height: math.unit(8000, "miles")
  8341. },
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(150, "lb"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/natalie-nightring/front.svg",
  8353. extra: 1,
  8354. bottom: 0.06
  8355. }
  8356. },
  8357. },
  8358. [
  8359. {
  8360. name: "Uh Oh",
  8361. height: math.unit(0.1, "mm")
  8362. },
  8363. {
  8364. name: "Small",
  8365. height: math.unit(3, "inches")
  8366. },
  8367. {
  8368. name: "Human Scale",
  8369. height: math.unit(6, "feet")
  8370. },
  8371. {
  8372. name: "Librarian",
  8373. height: math.unit(50, "feet"),
  8374. default: true
  8375. },
  8376. {
  8377. name: "Immense",
  8378. height: math.unit(200, "miles")
  8379. },
  8380. ]
  8381. ))
  8382. characterMakers.push(() => makeCharacter(
  8383. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8384. {
  8385. front: {
  8386. height: math.unit(6, "feet"),
  8387. weight: math.unit(180, "lbs"),
  8388. name: "Front",
  8389. image: {
  8390. source: "./media/characters/danni-rosie/front.svg",
  8391. extra: 1260 / 1128,
  8392. bottom: 0.022
  8393. }
  8394. },
  8395. },
  8396. [
  8397. {
  8398. name: "Micro",
  8399. height: math.unit(2, "inches"),
  8400. default: true
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(5 + 9 / 12, "feet"),
  8409. weight: math.unit(220, "lb"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/samantha-kruse/front.svg",
  8413. extra: (985 / 935),
  8414. bottom: 0.03
  8415. }
  8416. },
  8417. frontUndressed: {
  8418. height: math.unit(5 + 9 / 12, "feet"),
  8419. weight: math.unit(220, "lb"),
  8420. name: "Front (Undressed)",
  8421. image: {
  8422. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8423. extra: (973 / 923),
  8424. bottom: 0.025
  8425. }
  8426. },
  8427. fat: {
  8428. height: math.unit(5 + 9 / 12, "feet"),
  8429. weight: math.unit(900, "lb"),
  8430. name: "Front (Fat)",
  8431. image: {
  8432. source: "./media/characters/samantha-kruse/fat.svg",
  8433. extra: 2688 / 2561
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(5 + 9 / 12, "feet"),
  8441. default: true
  8442. }
  8443. ]
  8444. ))
  8445. characterMakers.push(() => makeCharacter(
  8446. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8447. {
  8448. back: {
  8449. height: math.unit(5 + 4 / 12, "feet"),
  8450. weight: math.unit(4963, "lb"),
  8451. name: "Back",
  8452. image: {
  8453. source: "./media/characters/amelia-rosie/back.svg",
  8454. extra: 1113 / 963,
  8455. bottom: 0.01
  8456. }
  8457. },
  8458. },
  8459. [
  8460. {
  8461. name: "Level 0",
  8462. height: math.unit(5 + 4 / 12, "feet")
  8463. },
  8464. {
  8465. name: "Level 1",
  8466. height: math.unit(164597, "feet"),
  8467. default: true
  8468. },
  8469. {
  8470. name: "Level 2",
  8471. height: math.unit(956243, "miles")
  8472. },
  8473. {
  8474. name: "Level 3",
  8475. height: math.unit(29421709423, "miles")
  8476. },
  8477. {
  8478. name: "Level 4",
  8479. height: math.unit(154, "lightyears")
  8480. },
  8481. {
  8482. name: "Level 5",
  8483. height: math.unit(4738272, "lightyears")
  8484. },
  8485. {
  8486. name: "Level 6",
  8487. height: math.unit(145787152896, "lightyears")
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(5 + 11 / 12, "feet"),
  8496. weight: math.unit(65, "kg"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/rook-kitara/front.svg",
  8500. extra: 1347 / 1274,
  8501. bottom: 0.005
  8502. }
  8503. },
  8504. },
  8505. [
  8506. {
  8507. name: "Totally Unfair",
  8508. height: math.unit(1.8, "mm")
  8509. },
  8510. {
  8511. name: "Lap Rookie",
  8512. height: math.unit(1.4, "feet")
  8513. },
  8514. {
  8515. name: "Normal",
  8516. height: math.unit(5 + 11 / 12, "feet"),
  8517. default: true
  8518. },
  8519. {
  8520. name: "How Did This Happen",
  8521. height: math.unit(80, "miles")
  8522. }
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(7, "feet"),
  8530. weight: math.unit(300, "lb"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/pisces/front.svg",
  8534. extra: 2255 / 2115,
  8535. bottom: 0.03
  8536. }
  8537. },
  8538. back: {
  8539. height: math.unit(7, "feet"),
  8540. weight: math.unit(300, "lb"),
  8541. name: "Back",
  8542. image: {
  8543. source: "./media/characters/pisces/back.svg",
  8544. extra: 2146 / 2055,
  8545. bottom: 0.04
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(7, "feet"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Swimming Pool",
  8557. height: math.unit(12.2, "meters")
  8558. },
  8559. {
  8560. name: "Olympic Swimming Pool",
  8561. height: math.unit(56.3, "meters")
  8562. },
  8563. {
  8564. name: "Lake Superior",
  8565. height: math.unit(93900, "meters")
  8566. },
  8567. {
  8568. name: "Mediterranean Sea",
  8569. height: math.unit(644457, "meters")
  8570. },
  8571. {
  8572. name: "World's Oceans",
  8573. height: math.unit(4567491, "meters")
  8574. },
  8575. ]
  8576. ))
  8577. characterMakers.push(() => makeCharacter(
  8578. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8579. {
  8580. front: {
  8581. height: math.unit(2.3, "meters"),
  8582. weight: math.unit(120, "kg"),
  8583. name: "Front",
  8584. image: {
  8585. source: "./media/characters/zelas/front.svg"
  8586. }
  8587. },
  8588. side: {
  8589. height: math.unit(2.3, "meters"),
  8590. weight: math.unit(120, "kg"),
  8591. name: "Side",
  8592. image: {
  8593. source: "./media/characters/zelas/side.svg"
  8594. }
  8595. },
  8596. back: {
  8597. height: math.unit(2.3, "meters"),
  8598. weight: math.unit(120, "kg"),
  8599. name: "Back",
  8600. image: {
  8601. source: "./media/characters/zelas/back.svg"
  8602. }
  8603. },
  8604. foot: {
  8605. height: math.unit(1.116, "feet"),
  8606. name: "Foot",
  8607. image: {
  8608. source: "./media/characters/zelas/foot.svg"
  8609. }
  8610. },
  8611. },
  8612. [
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(2.3, "meters")
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(30, "meters"),
  8620. default: true
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8626. {
  8627. front: {
  8628. height: math.unit(1, "inch"),
  8629. weight: math.unit(0.21, "grams"),
  8630. name: "Front",
  8631. image: {
  8632. source: "./media/characters/talbot/front.svg",
  8633. extra: 594 / 544
  8634. }
  8635. },
  8636. },
  8637. [
  8638. {
  8639. name: "Micro",
  8640. height: math.unit(1, "inch"),
  8641. default: true
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8647. {
  8648. front: {
  8649. height: math.unit(3 + 3 / 12, "feet"),
  8650. weight: math.unit(51.8, "lb"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/fliss/front.svg",
  8654. extra: 840 / 640
  8655. }
  8656. },
  8657. },
  8658. [
  8659. {
  8660. name: "Teeny Tiny",
  8661. height: math.unit(1, "mm")
  8662. },
  8663. {
  8664. name: "Small",
  8665. height: math.unit(1, "inch"),
  8666. default: true
  8667. },
  8668. {
  8669. name: "Standard Sylveon",
  8670. height: math.unit(3 + 3 / 12, "feet")
  8671. },
  8672. {
  8673. name: "Large Nuisance",
  8674. height: math.unit(33, "feet")
  8675. },
  8676. {
  8677. name: "City Filler",
  8678. height: math.unit(3000, "feet")
  8679. },
  8680. {
  8681. name: "New Horizon",
  8682. height: math.unit(6000, "miles")
  8683. },
  8684. ]
  8685. ))
  8686. characterMakers.push(() => makeCharacter(
  8687. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8688. {
  8689. front: {
  8690. height: math.unit(5, "cm"),
  8691. weight: math.unit(1.94, "g"),
  8692. name: "Front",
  8693. image: {
  8694. source: "./media/characters/fleta/front.svg",
  8695. extra: 835 / 803
  8696. }
  8697. },
  8698. back: {
  8699. height: math.unit(5, "cm"),
  8700. weight: math.unit(1.94, "g"),
  8701. name: "Back",
  8702. image: {
  8703. source: "./media/characters/fleta/back.svg",
  8704. extra: 835 / 803
  8705. }
  8706. },
  8707. },
  8708. [
  8709. {
  8710. name: "Micro",
  8711. height: math.unit(5, "cm"),
  8712. default: true
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8718. {
  8719. front: {
  8720. height: math.unit(6, "feet"),
  8721. weight: math.unit(225, "lb"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/dominic/front.svg",
  8725. extra: 1770 / 1620,
  8726. bottom: 0.025
  8727. }
  8728. },
  8729. back: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(225, "lb"),
  8732. name: "Back",
  8733. image: {
  8734. source: "./media/characters/dominic/back.svg",
  8735. extra: 1745 / 1620,
  8736. bottom: 0.065
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Nano",
  8743. height: math.unit(0.1, "mm")
  8744. },
  8745. {
  8746. name: "Micro-",
  8747. height: math.unit(1, "mm")
  8748. },
  8749. {
  8750. name: "Micro",
  8751. height: math.unit(4, "inches")
  8752. },
  8753. {
  8754. name: "Normal",
  8755. height: math.unit(6 + 4 / 12, "feet"),
  8756. default: true
  8757. },
  8758. {
  8759. name: "Macro",
  8760. height: math.unit(115, "feet")
  8761. },
  8762. {
  8763. name: "Macro+",
  8764. height: math.unit(955, "feet")
  8765. },
  8766. {
  8767. name: "Megamacro",
  8768. height: math.unit(8990, "feet")
  8769. },
  8770. {
  8771. name: "Gigmacro",
  8772. height: math.unit(9310, "miles")
  8773. },
  8774. {
  8775. name: "Teramacro",
  8776. height: math.unit(1567005010, "miles")
  8777. },
  8778. {
  8779. name: "Examacro",
  8780. height: math.unit(1425, "parsecs")
  8781. },
  8782. ]
  8783. ))
  8784. characterMakers.push(() => makeCharacter(
  8785. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8786. {
  8787. front: {
  8788. height: math.unit(400, "feet"),
  8789. weight: math.unit(44444444, "lb"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/major-colonel/front.svg"
  8793. }
  8794. },
  8795. back: {
  8796. height: math.unit(400, "feet"),
  8797. weight: math.unit(44444444, "lb"),
  8798. name: "Back",
  8799. image: {
  8800. source: "./media/characters/major-colonel/back.svg"
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Macro",
  8807. height: math.unit(400, "feet"),
  8808. default: true
  8809. },
  8810. ]
  8811. ))
  8812. characterMakers.push(() => makeCharacter(
  8813. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8814. {
  8815. catFront: {
  8816. height: math.unit(6, "feet"),
  8817. weight: math.unit(120, "lb"),
  8818. name: "Front (Cat Side)",
  8819. image: {
  8820. source: "./media/characters/axel-lycan/cat-front.svg",
  8821. extra: 430 / 402,
  8822. bottom: 43 / 472.35
  8823. }
  8824. },
  8825. catBack: {
  8826. height: math.unit(6, "feet"),
  8827. weight: math.unit(120, "lb"),
  8828. name: "Back (Cat Side)",
  8829. image: {
  8830. source: "./media/characters/axel-lycan/cat-back.svg",
  8831. extra: 447 / 419,
  8832. bottom: 23.3 / 469
  8833. }
  8834. },
  8835. wolfFront: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(120, "lb"),
  8838. name: "Front (Wolf Side)",
  8839. image: {
  8840. source: "./media/characters/axel-lycan/wolf-front.svg",
  8841. extra: 485 / 456,
  8842. bottom: 19 / 504
  8843. }
  8844. },
  8845. wolfBack: {
  8846. height: math.unit(6, "feet"),
  8847. weight: math.unit(120, "lb"),
  8848. name: "Back (Wolf Side)",
  8849. image: {
  8850. source: "./media/characters/axel-lycan/wolf-back.svg",
  8851. extra: 475 / 438,
  8852. bottom: 39.2 / 514
  8853. }
  8854. },
  8855. },
  8856. [
  8857. {
  8858. name: "Macro",
  8859. height: math.unit(1, "km"),
  8860. default: true
  8861. },
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8866. {
  8867. front: {
  8868. height: math.unit(5 + 9 / 12, "feet"),
  8869. weight: math.unit(175, "lb"),
  8870. name: "Front",
  8871. image: {
  8872. source: "./media/characters/vanrel-hyena/front.svg",
  8873. extra: 1086 / 1010,
  8874. bottom: 0.04
  8875. }
  8876. },
  8877. },
  8878. [
  8879. {
  8880. name: "Normal",
  8881. height: math.unit(5 + 9 / 12, "feet"),
  8882. default: true
  8883. },
  8884. ]
  8885. ))
  8886. characterMakers.push(() => makeCharacter(
  8887. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8888. {
  8889. front: {
  8890. height: math.unit(6, "feet"),
  8891. weight: math.unit(103, "lb"),
  8892. name: "Front",
  8893. image: {
  8894. source: "./media/characters/abbott-absol/front.svg",
  8895. extra: 2010 / 1842
  8896. }
  8897. },
  8898. },
  8899. [
  8900. {
  8901. name: "Megamicro",
  8902. height: math.unit(0.1, "mm")
  8903. },
  8904. {
  8905. name: "Micro",
  8906. height: math.unit(1, "inch")
  8907. },
  8908. {
  8909. name: "Normal",
  8910. height: math.unit(6, "feet"),
  8911. default: true
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8917. {
  8918. front: {
  8919. height: math.unit(6, "feet"),
  8920. weight: math.unit(264, "lb"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/hector/front.svg",
  8924. extra: 2280 / 2130,
  8925. bottom: 0.07
  8926. }
  8927. },
  8928. },
  8929. [
  8930. {
  8931. name: "Normal",
  8932. height: math.unit(12.25, "foot"),
  8933. default: true
  8934. },
  8935. {
  8936. name: "Macro",
  8937. height: math.unit(160, "feet")
  8938. },
  8939. ]
  8940. ))
  8941. characterMakers.push(() => makeCharacter(
  8942. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8943. {
  8944. front: {
  8945. height: math.unit(6, "feet"),
  8946. weight: math.unit(150, "lb"),
  8947. name: "Front",
  8948. image: {
  8949. source: "./media/characters/sal/front.svg",
  8950. extra: 1846 / 1699,
  8951. bottom: 0.04
  8952. }
  8953. },
  8954. },
  8955. [
  8956. {
  8957. name: "Megamacro",
  8958. height: math.unit(10, "miles"),
  8959. default: true
  8960. },
  8961. ]
  8962. ))
  8963. characterMakers.push(() => makeCharacter(
  8964. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8965. {
  8966. front: {
  8967. height: math.unit(3, "meters"),
  8968. weight: math.unit(450, "kg"),
  8969. name: "front",
  8970. image: {
  8971. source: "./media/characters/ranger/front.svg",
  8972. extra: 2401 / 2243,
  8973. bottom: 0.05
  8974. }
  8975. },
  8976. },
  8977. [
  8978. {
  8979. name: "Normal",
  8980. height: math.unit(3, "meters"),
  8981. default: true
  8982. },
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(14, "feet"),
  8990. weight: math.unit(800, "kg"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/theresa/front.svg",
  8994. extra: 3575 / 3346,
  8995. bottom: 0.03
  8996. }
  8997. },
  8998. },
  8999. [
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(14, "feet"),
  9003. default: true
  9004. },
  9005. ]
  9006. ))
  9007. characterMakers.push(() => makeCharacter(
  9008. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9009. {
  9010. front: {
  9011. height: math.unit(6, "feet"),
  9012. weight: math.unit(3, "kg"),
  9013. name: "Front",
  9014. image: {
  9015. source: "./media/characters/ine/front.svg",
  9016. extra: 678 / 539,
  9017. bottom: 0.023
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Normal",
  9024. height: math.unit(2.265, "feet"),
  9025. default: true
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(5, "feet"),
  9034. weight: math.unit(30, "kg"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/vial/front.svg",
  9038. extra: 1365 / 1277,
  9039. bottom: 0.04
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Normal",
  9046. height: math.unit(5, "feet"),
  9047. default: true
  9048. },
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9053. {
  9054. side: {
  9055. height: math.unit(3.4, "meters"),
  9056. weight: math.unit(1000, "lb"),
  9057. name: "Side",
  9058. image: {
  9059. source: "./media/characters/rovoska/side.svg",
  9060. extra: 4403 / 1515
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Normal",
  9067. height: math.unit(3.4, "meters"),
  9068. default: true
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(8, "feet"),
  9077. weight: math.unit(315, "lb"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/gunner-rotthbauer/front.svg"
  9081. }
  9082. },
  9083. back: {
  9084. height: math.unit(8, "feet"),
  9085. weight: math.unit(315, "lb"),
  9086. name: "Back",
  9087. image: {
  9088. source: "./media/characters/gunner-rotthbauer/back.svg"
  9089. }
  9090. },
  9091. },
  9092. [
  9093. {
  9094. name: "Micro",
  9095. height: math.unit(3.5, "inches")
  9096. },
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(8, "feet"),
  9100. default: true
  9101. },
  9102. {
  9103. name: "Macro",
  9104. height: math.unit(250, "feet")
  9105. },
  9106. {
  9107. name: "Megamacro",
  9108. height: math.unit(1, "AU")
  9109. },
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9114. {
  9115. front: {
  9116. height: math.unit(5 + 5 / 12, "feet"),
  9117. weight: math.unit(140, "lb"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/allatia/front.svg",
  9121. extra: 1227 / 1180,
  9122. bottom: 0.027
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(5 + 5 / 12, "feet")
  9130. },
  9131. {
  9132. name: "Macro",
  9133. height: math.unit(250, "feet"),
  9134. default: true
  9135. },
  9136. {
  9137. name: "Megamacro",
  9138. height: math.unit(8, "miles")
  9139. }
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9144. {
  9145. front: {
  9146. height: math.unit(6, "feet"),
  9147. weight: math.unit(120, "lb"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/tene/front.svg",
  9151. extra: 1728 / 1578,
  9152. bottom: 0.022
  9153. }
  9154. },
  9155. stomping: {
  9156. height: math.unit(2.025, "meters"),
  9157. weight: math.unit(120, "lb"),
  9158. name: "Stomping",
  9159. image: {
  9160. source: "./media/characters/tene/stomping.svg",
  9161. extra: 938 / 873,
  9162. bottom: 0.01
  9163. }
  9164. },
  9165. sitting: {
  9166. height: math.unit(1, "meter"),
  9167. weight: math.unit(120, "lb"),
  9168. name: "Sitting",
  9169. image: {
  9170. source: "./media/characters/tene/sitting.svg",
  9171. extra: 437 / 415,
  9172. bottom: 0.1
  9173. }
  9174. },
  9175. feral: {
  9176. height: math.unit(3.9, "feet"),
  9177. weight: math.unit(250, "lb"),
  9178. name: "Feral",
  9179. image: {
  9180. source: "./media/characters/tene/feral.svg",
  9181. extra: 717 / 458,
  9182. bottom: 0.179
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Normal",
  9189. height: math.unit(6, "feet")
  9190. },
  9191. {
  9192. name: "Macro",
  9193. height: math.unit(300, "feet"),
  9194. default: true
  9195. },
  9196. {
  9197. name: "Megamacro",
  9198. height: math.unit(5, "miles")
  9199. },
  9200. ]
  9201. ))
  9202. characterMakers.push(() => makeCharacter(
  9203. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9204. {
  9205. side: {
  9206. height: math.unit(6, "feet"),
  9207. name: "Side",
  9208. image: {
  9209. source: "./media/characters/evander/side.svg",
  9210. extra: 877 / 477
  9211. }
  9212. },
  9213. },
  9214. [
  9215. {
  9216. name: "Normal",
  9217. height: math.unit(0.83, "meters"),
  9218. default: true
  9219. },
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9224. {
  9225. front: {
  9226. height: math.unit(12, "feet"),
  9227. weight: math.unit(1000, "lb"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9231. extra: 1762 / 1611
  9232. }
  9233. },
  9234. back: {
  9235. height: math.unit(12, "feet"),
  9236. weight: math.unit(1000, "lb"),
  9237. name: "Back",
  9238. image: {
  9239. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9240. extra: 1762 / 1611
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(12, "feet"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Kaiju",
  9252. height: math.unit(150, "feet")
  9253. },
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9258. {
  9259. front: {
  9260. height: math.unit(6, "feet"),
  9261. weight: math.unit(150, "lb"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/zero-alurus/front.svg"
  9265. }
  9266. },
  9267. back: {
  9268. height: math.unit(6, "feet"),
  9269. weight: math.unit(150, "lb"),
  9270. name: "Back",
  9271. image: {
  9272. source: "./media/characters/zero-alurus/back.svg"
  9273. }
  9274. },
  9275. },
  9276. [
  9277. {
  9278. name: "Normal",
  9279. height: math.unit(5 + 10 / 12, "feet")
  9280. },
  9281. {
  9282. name: "Macro",
  9283. height: math.unit(60, "feet"),
  9284. default: true
  9285. },
  9286. {
  9287. name: "Macro+",
  9288. height: math.unit(450, "feet")
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9294. {
  9295. front: {
  9296. height: math.unit(6, "feet"),
  9297. weight: math.unit(200, "lb"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/mega-shi/front.svg",
  9301. extra: 1279 / 1250,
  9302. bottom: 0.02
  9303. }
  9304. },
  9305. back: {
  9306. height: math.unit(6, "feet"),
  9307. weight: math.unit(200, "lb"),
  9308. name: "Back",
  9309. image: {
  9310. source: "./media/characters/mega-shi/back.svg",
  9311. extra: 1279 / 1250,
  9312. bottom: 0.02
  9313. }
  9314. },
  9315. },
  9316. [
  9317. {
  9318. name: "Micro",
  9319. height: math.unit(16 + 6 / 12, "feet")
  9320. },
  9321. {
  9322. name: "Third Dimension",
  9323. height: math.unit(40, "meters")
  9324. },
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(660, "feet"),
  9328. default: true
  9329. },
  9330. {
  9331. name: "Megamacro",
  9332. height: math.unit(10, "miles")
  9333. },
  9334. {
  9335. name: "Planetary Launch",
  9336. height: math.unit(500, "miles")
  9337. },
  9338. {
  9339. name: "Interstellar",
  9340. height: math.unit(1e9, "miles")
  9341. },
  9342. {
  9343. name: "Leaving the Universe",
  9344. height: math.unit(1, "gigaparsec")
  9345. },
  9346. {
  9347. name: "Travelling Universes",
  9348. height: math.unit(30e15, "parsecs")
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(150, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/odyssey/front.svg",
  9361. extra: 1782 / 1582,
  9362. bottom: 0.01
  9363. }
  9364. },
  9365. side: {
  9366. height: math.unit(5.7, "feet"),
  9367. weight: math.unit(140, "lb"),
  9368. name: "Side",
  9369. image: {
  9370. source: "./media/characters/odyssey/side.svg",
  9371. extra: 6462 / 5700
  9372. }
  9373. },
  9374. },
  9375. [
  9376. {
  9377. name: "Normal",
  9378. height: math.unit(5 + 4 / 12, "feet")
  9379. },
  9380. {
  9381. name: "Macro",
  9382. height: math.unit(1, "km")
  9383. },
  9384. {
  9385. name: "Megamacro",
  9386. height: math.unit(3000, "km")
  9387. },
  9388. {
  9389. name: "Gigamacro",
  9390. height: math.unit(1, "AU"),
  9391. default: true
  9392. },
  9393. {
  9394. name: "Omniversal",
  9395. height: math.unit(100e14, "lightyears")
  9396. },
  9397. ]
  9398. ))
  9399. characterMakers.push(() => makeCharacter(
  9400. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9401. {
  9402. front: {
  9403. height: math.unit(6, "feet"),
  9404. weight: math.unit(300, "lb"),
  9405. name: "Front",
  9406. image: {
  9407. source: "./media/characters/mekuto/front.svg",
  9408. extra: 921 / 832,
  9409. bottom: 0.03
  9410. }
  9411. },
  9412. hand: {
  9413. height: math.unit(6 / 10.24, "feet"),
  9414. name: "Hand",
  9415. image: {
  9416. source: "./media/characters/mekuto/hand.svg"
  9417. }
  9418. },
  9419. foot: {
  9420. height: math.unit(6 / 5.05, "feet"),
  9421. name: "Foot",
  9422. image: {
  9423. source: "./media/characters/mekuto/foot.svg"
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Minimicro",
  9430. height: math.unit(0.2, "inches")
  9431. },
  9432. {
  9433. name: "Micro",
  9434. height: math.unit(1.5, "inches")
  9435. },
  9436. {
  9437. name: "Normal",
  9438. height: math.unit(5 + 11 / 12, "feet"),
  9439. default: true
  9440. },
  9441. {
  9442. name: "Minimacro",
  9443. height: math.unit(17 + 9 / 12, "feet")
  9444. },
  9445. {
  9446. name: "Macro",
  9447. height: math.unit(177.5, "feet")
  9448. },
  9449. {
  9450. name: "Megamacro",
  9451. height: math.unit(152, "miles")
  9452. },
  9453. ]
  9454. ))
  9455. characterMakers.push(() => makeCharacter(
  9456. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9457. {
  9458. front: {
  9459. height: math.unit(6.5, "inches"),
  9460. weight: math.unit(13, "oz"),
  9461. name: "Front",
  9462. image: {
  9463. source: "./media/characters/dafydd-tomos/front.svg",
  9464. extra: 2990 / 2603,
  9465. bottom: 0.03
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Micro",
  9472. height: math.unit(6.5, "inches"),
  9473. default: true
  9474. },
  9475. ]
  9476. ))
  9477. characterMakers.push(() => makeCharacter(
  9478. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9479. {
  9480. front: {
  9481. height: math.unit(6, "feet"),
  9482. weight: math.unit(150, "lb"),
  9483. name: "Front",
  9484. image: {
  9485. source: "./media/characters/splinter/front.svg",
  9486. extra: 2990 / 2882,
  9487. bottom: 0.04
  9488. }
  9489. },
  9490. back: {
  9491. height: math.unit(6, "feet"),
  9492. weight: math.unit(150, "lb"),
  9493. name: "Back",
  9494. image: {
  9495. source: "./media/characters/splinter/back.svg",
  9496. extra: 2990 / 2882,
  9497. bottom: 0.04
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(6, "feet")
  9505. },
  9506. {
  9507. name: "Macro",
  9508. height: math.unit(230, "meters"),
  9509. default: true
  9510. },
  9511. ]
  9512. ))
  9513. characterMakers.push(() => makeCharacter(
  9514. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9515. {
  9516. front: {
  9517. height: math.unit(4 + 10 / 12, "feet"),
  9518. weight: math.unit(480, "lb"),
  9519. name: "Front",
  9520. image: {
  9521. source: "./media/characters/snow-gabumon/front.svg",
  9522. extra: 1140 / 963,
  9523. bottom: 0.058
  9524. }
  9525. },
  9526. back: {
  9527. height: math.unit(4 + 10 / 12, "feet"),
  9528. weight: math.unit(480, "lb"),
  9529. name: "Back",
  9530. image: {
  9531. source: "./media/characters/snow-gabumon/back.svg",
  9532. extra: 1115 / 962,
  9533. bottom: 0.041
  9534. }
  9535. },
  9536. frontUndresed: {
  9537. height: math.unit(4 + 10 / 12, "feet"),
  9538. weight: math.unit(480, "lb"),
  9539. name: "Front (Undressed)",
  9540. image: {
  9541. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9542. extra: 1061 / 960,
  9543. bottom: 0.045
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Micro",
  9550. height: math.unit(1, "inch")
  9551. },
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(4 + 10 / 12, "feet"),
  9555. default: true
  9556. },
  9557. {
  9558. name: "Macro",
  9559. height: math.unit(200, "feet")
  9560. },
  9561. {
  9562. name: "Megamacro",
  9563. height: math.unit(120, "miles")
  9564. },
  9565. {
  9566. name: "Gigamacro",
  9567. height: math.unit(9800, "miles")
  9568. },
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9573. {
  9574. front: {
  9575. height: math.unit(1.7, "meters"),
  9576. weight: math.unit(140, "lb"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/moody/front.svg",
  9580. extra: 3226 / 3007,
  9581. bottom: 0.087
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Micro",
  9588. height: math.unit(1, "mm")
  9589. },
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(1.7, "meters"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Macro",
  9597. height: math.unit(80, "meters")
  9598. },
  9599. {
  9600. name: "Macro+",
  9601. height: math.unit(500, "meters")
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(6, "feet"),
  9610. weight: math.unit(150, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/zyas/front.svg",
  9614. extra: 1180 / 1120,
  9615. bottom: 0.045
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(10, "feet"),
  9623. default: true
  9624. },
  9625. {
  9626. name: "Macro",
  9627. height: math.unit(500, "feet")
  9628. },
  9629. {
  9630. name: "Megamacro",
  9631. height: math.unit(5, "miles")
  9632. },
  9633. {
  9634. name: "Teramacro",
  9635. height: math.unit(150000, "miles")
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(6, "feet"),
  9644. weight: math.unit(150, "lb"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/cuon/front.svg",
  9648. extra: 1390 / 1320,
  9649. bottom: 0.008
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Micro",
  9656. height: math.unit(3, "inches")
  9657. },
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(18 + 9 / 12, "feet"),
  9661. default: true
  9662. },
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(360, "feet")
  9666. },
  9667. {
  9668. name: "Megamacro",
  9669. height: math.unit(360, "miles")
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(2.4, "meters"),
  9678. weight: math.unit(70, "kg"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/nyanuxk/front.svg",
  9682. extra: 1172 / 1084,
  9683. bottom: 0.065
  9684. }
  9685. },
  9686. side: {
  9687. height: math.unit(2.4, "meters"),
  9688. weight: math.unit(70, "kg"),
  9689. name: "Side",
  9690. image: {
  9691. source: "./media/characters/nyanuxk/side.svg",
  9692. extra: 1190 / 1132,
  9693. bottom: 0.007
  9694. }
  9695. },
  9696. back: {
  9697. height: math.unit(2.4, "meters"),
  9698. weight: math.unit(70, "kg"),
  9699. name: "Back",
  9700. image: {
  9701. source: "./media/characters/nyanuxk/back.svg",
  9702. extra: 1200 / 1141,
  9703. bottom: 0.015
  9704. }
  9705. },
  9706. foot: {
  9707. height: math.unit(0.52, "meters"),
  9708. name: "Foot",
  9709. image: {
  9710. source: "./media/characters/nyanuxk/foot.svg"
  9711. }
  9712. },
  9713. },
  9714. [
  9715. {
  9716. name: "Micro",
  9717. height: math.unit(2, "cm")
  9718. },
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(2.4, "meters"),
  9722. default: true
  9723. },
  9724. {
  9725. name: "Smaller Macro",
  9726. height: math.unit(120, "meters")
  9727. },
  9728. {
  9729. name: "Bigger Macro",
  9730. height: math.unit(1.2, "km")
  9731. },
  9732. {
  9733. name: "Megamacro",
  9734. height: math.unit(15, "kilometers")
  9735. },
  9736. {
  9737. name: "Gigamacro",
  9738. height: math.unit(2000, "km")
  9739. },
  9740. {
  9741. name: "Teramacro",
  9742. height: math.unit(500000, "km")
  9743. },
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9748. {
  9749. side: {
  9750. height: math.unit(6, "feet"),
  9751. name: "Side",
  9752. image: {
  9753. source: "./media/characters/ailbhe/side.svg",
  9754. extra: 757 / 464,
  9755. bottom: 0.041
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Normal",
  9762. height: math.unit(1.07, "meters"),
  9763. default: true
  9764. },
  9765. ]
  9766. ))
  9767. characterMakers.push(() => makeCharacter(
  9768. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9769. {
  9770. front: {
  9771. height: math.unit(6, "feet"),
  9772. weight: math.unit(120, "kg"),
  9773. name: "Front",
  9774. image: {
  9775. source: "./media/characters/zevulfius/front.svg",
  9776. extra: 965 / 903
  9777. }
  9778. },
  9779. side: {
  9780. height: math.unit(6, "feet"),
  9781. weight: math.unit(120, "kg"),
  9782. name: "Side",
  9783. image: {
  9784. source: "./media/characters/zevulfius/side.svg",
  9785. extra: 939 / 900
  9786. }
  9787. },
  9788. back: {
  9789. height: math.unit(6, "feet"),
  9790. weight: math.unit(120, "kg"),
  9791. name: "Back",
  9792. image: {
  9793. source: "./media/characters/zevulfius/back.svg",
  9794. extra: 918 / 854,
  9795. bottom: 0.005
  9796. }
  9797. },
  9798. foot: {
  9799. height: math.unit(6 / 3.72, "feet"),
  9800. name: "Foot",
  9801. image: {
  9802. source: "./media/characters/zevulfius/foot.svg"
  9803. }
  9804. },
  9805. },
  9806. [
  9807. {
  9808. name: "Macro",
  9809. height: math.unit(750, "meters")
  9810. },
  9811. {
  9812. name: "Megamacro",
  9813. height: math.unit(20, "km"),
  9814. default: true
  9815. },
  9816. {
  9817. name: "Gigamacro",
  9818. height: math.unit(2000, "km")
  9819. },
  9820. {
  9821. name: "Teramacro",
  9822. height: math.unit(250000, "km")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9828. {
  9829. front: {
  9830. height: math.unit(100, "feet"),
  9831. weight: math.unit(350, "kg"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/rikes/front.svg",
  9835. extra: 1565 / 1483,
  9836. bottom: 0.017
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Macro",
  9843. height: math.unit(100, "feet"),
  9844. default: true
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9850. {
  9851. anthro: {
  9852. height: math.unit(8, "feet"),
  9853. weight: math.unit(120, "kg"),
  9854. name: "Anthro",
  9855. image: {
  9856. source: "./media/characters/adam-silver-mane/anthro.svg",
  9857. extra: 5743 / 5339,
  9858. bottom: 0.07
  9859. }
  9860. },
  9861. taur: {
  9862. height: math.unit(16, "feet"),
  9863. weight: math.unit(1500, "kg"),
  9864. name: "Taur",
  9865. image: {
  9866. source: "./media/characters/adam-silver-mane/taur.svg",
  9867. extra: 1713 / 1571,
  9868. bottom: 0.01
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(8, "feet")
  9876. },
  9877. {
  9878. name: "Minimacro",
  9879. height: math.unit(80, "feet")
  9880. },
  9881. {
  9882. name: "Macro",
  9883. height: math.unit(800, "feet"),
  9884. default: true
  9885. },
  9886. {
  9887. name: "Megamacro",
  9888. height: math.unit(8000, "feet")
  9889. },
  9890. {
  9891. name: "Gigamacro",
  9892. height: math.unit(800, "miles")
  9893. },
  9894. {
  9895. name: "Teramacro",
  9896. height: math.unit(80000, "miles")
  9897. },
  9898. {
  9899. name: "Celestial",
  9900. height: math.unit(8e6, "miles")
  9901. },
  9902. {
  9903. name: "Star Dragon",
  9904. height: math.unit(800000, "parsecs")
  9905. },
  9906. {
  9907. name: "Godly",
  9908. height: math.unit(800, "teraparsecs")
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(150, "lb"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/ky'owin/front.svg",
  9921. extra: 3888 / 3068,
  9922. bottom: 0.015
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Normal",
  9929. height: math.unit(6 + 8 / 12, "feet")
  9930. },
  9931. {
  9932. name: "Large",
  9933. height: math.unit(68, "feet")
  9934. },
  9935. {
  9936. name: "Macro",
  9937. height: math.unit(132, "feet")
  9938. },
  9939. {
  9940. name: "Macro+",
  9941. height: math.unit(340, "feet")
  9942. },
  9943. {
  9944. name: "Macro++",
  9945. height: math.unit(680, "feet"),
  9946. default: true
  9947. },
  9948. {
  9949. name: "Megamacro",
  9950. height: math.unit(1, "mile")
  9951. },
  9952. {
  9953. name: "Megamacro+",
  9954. height: math.unit(10, "miles")
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9960. {
  9961. front: {
  9962. height: math.unit(4, "feet"),
  9963. weight: math.unit(50, "lb"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/mal/front.svg",
  9967. extra: 785 / 724,
  9968. bottom: 0.07
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Micro",
  9975. height: math.unit(4, "inches")
  9976. },
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(4, "feet"),
  9980. default: true
  9981. },
  9982. {
  9983. name: "Macro",
  9984. height: math.unit(200, "feet")
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(6, "feet"),
  9993. weight: math.unit(150, "lb"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/jordan-deware/front.svg",
  9997. extra: 1191 / 1012
  9998. }
  9999. },
  10000. },
  10001. [
  10002. {
  10003. name: "Nano",
  10004. height: math.unit(0.01, "mm")
  10005. },
  10006. {
  10007. name: "Minimicro",
  10008. height: math.unit(1, "mm")
  10009. },
  10010. {
  10011. name: "Micro",
  10012. height: math.unit(0.5, "inches")
  10013. },
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(4, "feet"),
  10017. default: true
  10018. },
  10019. {
  10020. name: "Minimacro",
  10021. height: math.unit(40, "meters")
  10022. },
  10023. {
  10024. name: "Small Macro",
  10025. height: math.unit(400, "meters")
  10026. },
  10027. {
  10028. name: "Macro",
  10029. height: math.unit(4, "miles")
  10030. },
  10031. {
  10032. name: "Megamacro",
  10033. height: math.unit(40, "miles")
  10034. },
  10035. {
  10036. name: "Megamacro+",
  10037. height: math.unit(400, "miles")
  10038. },
  10039. {
  10040. name: "Gigamacro",
  10041. height: math.unit(400000, "miles")
  10042. },
  10043. ]
  10044. ))
  10045. characterMakers.push(() => makeCharacter(
  10046. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10047. {
  10048. side: {
  10049. height: math.unit(6, "feet"),
  10050. weight: math.unit(150, "lb"),
  10051. name: "Side",
  10052. image: {
  10053. source: "./media/characters/kimiko/side.svg",
  10054. extra: 600 / 358
  10055. }
  10056. },
  10057. },
  10058. [
  10059. {
  10060. name: "Normal",
  10061. height: math.unit(15, "feet"),
  10062. default: true
  10063. },
  10064. {
  10065. name: "Macro",
  10066. height: math.unit(220, "feet")
  10067. },
  10068. {
  10069. name: "Macro+",
  10070. height: math.unit(1450, "feet")
  10071. },
  10072. {
  10073. name: "Megamacro",
  10074. height: math.unit(11500, "feet")
  10075. },
  10076. {
  10077. name: "Gigamacro",
  10078. height: math.unit(9500, "miles")
  10079. },
  10080. {
  10081. name: "Teramacro",
  10082. height: math.unit(2208005005, "miles")
  10083. },
  10084. {
  10085. name: "Examacro",
  10086. height: math.unit(2750, "parsecs")
  10087. },
  10088. {
  10089. name: "Zettamacro",
  10090. height: math.unit(101500, "parsecs")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(6, "feet"),
  10099. weight: math.unit(70, "kg"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/andrew-sleepy/front.svg"
  10103. }
  10104. },
  10105. side: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(70, "kg"),
  10108. name: "Side",
  10109. image: {
  10110. source: "./media/characters/andrew-sleepy/side.svg"
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Micro",
  10117. height: math.unit(1, "mm"),
  10118. default: true
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(6, "feet"),
  10127. weight: math.unit(150, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/judio/front.svg",
  10131. extra: 1258 / 1110
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Normal",
  10138. height: math.unit(5 + 6 / 12, "feet")
  10139. },
  10140. {
  10141. name: "Macro",
  10142. height: math.unit(1000, "feet"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Megamacro",
  10147. height: math.unit(10, "miles")
  10148. },
  10149. ]
  10150. ))
  10151. characterMakers.push(() => makeCharacter(
  10152. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10153. {
  10154. front: {
  10155. height: math.unit(6, "feet"),
  10156. weight: math.unit(68, "kg"),
  10157. name: "Front",
  10158. image: {
  10159. source: "./media/characters/nomaxice/front.svg",
  10160. extra: 1498 / 1073,
  10161. bottom: 0.075
  10162. }
  10163. },
  10164. foot: {
  10165. height: math.unit(1.1, "feet"),
  10166. name: "Foot",
  10167. image: {
  10168. source: "./media/characters/nomaxice/foot.svg"
  10169. }
  10170. },
  10171. },
  10172. [
  10173. {
  10174. name: "Micro",
  10175. height: math.unit(8, "cm")
  10176. },
  10177. {
  10178. name: "Norm",
  10179. height: math.unit(1.82, "m")
  10180. },
  10181. {
  10182. name: "Norm+",
  10183. height: math.unit(8.8, "feet")
  10184. },
  10185. {
  10186. name: "Big",
  10187. height: math.unit(8, "meters"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "Macro",
  10192. height: math.unit(18, "meters")
  10193. },
  10194. {
  10195. name: "Macro+",
  10196. height: math.unit(88, "meters")
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(12, "feet"),
  10205. weight: math.unit(1.5, "tons"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/dydros/front.svg",
  10209. extra: 863 / 800,
  10210. bottom: 0.015
  10211. }
  10212. },
  10213. back: {
  10214. height: math.unit(12, "feet"),
  10215. weight: math.unit(1.5, "tons"),
  10216. name: "Back",
  10217. image: {
  10218. source: "./media/characters/dydros/back.svg",
  10219. extra: 900 / 843,
  10220. bottom: 0.005
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(12, "feet"),
  10228. default: true
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(100, "kg"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/riggi/front.svg",
  10241. extra: 5787 / 5303
  10242. }
  10243. },
  10244. hyper: {
  10245. height: math.unit(6 * 5 / 3, "feet"),
  10246. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10247. name: "Hyper",
  10248. image: {
  10249. source: "./media/characters/riggi/hyper.svg",
  10250. extra: 3595 / 3485
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Small Macro",
  10257. height: math.unit(50, "feet")
  10258. },
  10259. {
  10260. name: "Default",
  10261. height: math.unit(200, "feet"),
  10262. default: true
  10263. },
  10264. {
  10265. name: "Loom",
  10266. height: math.unit(10000, "feet")
  10267. },
  10268. {
  10269. name: "Cruising Altitude",
  10270. height: math.unit(30000, "feet")
  10271. },
  10272. {
  10273. name: "Megamacro",
  10274. height: math.unit(100, "miles")
  10275. },
  10276. {
  10277. name: "Continent Sized",
  10278. height: math.unit(2800, "miles")
  10279. },
  10280. {
  10281. name: "Earth Sized",
  10282. height: math.unit(8000, "miles")
  10283. },
  10284. ]
  10285. ))
  10286. characterMakers.push(() => makeCharacter(
  10287. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10288. {
  10289. front: {
  10290. height: math.unit(6, "feet"),
  10291. weight: math.unit(250, "lb"),
  10292. name: "Front",
  10293. image: {
  10294. source: "./media/characters/alexi/front.svg",
  10295. extra: 3483 / 3291,
  10296. bottom: 0.04
  10297. }
  10298. },
  10299. back: {
  10300. height: math.unit(6, "feet"),
  10301. weight: math.unit(250, "lb"),
  10302. name: "Back",
  10303. image: {
  10304. source: "./media/characters/alexi/back.svg",
  10305. extra: 3533 / 3356,
  10306. bottom: 0.021
  10307. }
  10308. },
  10309. frontTransforming: {
  10310. height: math.unit(8.58, "feet"),
  10311. weight: math.unit(1300, "lb"),
  10312. name: "Transforming",
  10313. image: {
  10314. source: "./media/characters/alexi/front-transforming.svg",
  10315. extra: 437 / 409,
  10316. bottom: 19 / 458.66
  10317. }
  10318. },
  10319. frontTransformed: {
  10320. height: math.unit(12.5, "feet"),
  10321. weight: math.unit(4000, "lb"),
  10322. name: "Transformed",
  10323. image: {
  10324. source: "./media/characters/alexi/front-transformed.svg",
  10325. extra: 639 / 614,
  10326. bottom: 30.55 / 671
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(14, "feet"),
  10334. default: true
  10335. },
  10336. {
  10337. name: "Minimacro",
  10338. height: math.unit(30, "meters")
  10339. },
  10340. {
  10341. name: "Macro",
  10342. height: math.unit(500, "meters")
  10343. },
  10344. {
  10345. name: "Megamacro",
  10346. height: math.unit(9000, "km")
  10347. },
  10348. {
  10349. name: "Teramacro",
  10350. height: math.unit(384000, "km")
  10351. },
  10352. ]
  10353. ))
  10354. characterMakers.push(() => makeCharacter(
  10355. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10356. {
  10357. front: {
  10358. height: math.unit(6, "feet"),
  10359. weight: math.unit(150, "lb"),
  10360. name: "Front",
  10361. image: {
  10362. source: "./media/characters/kayroo/front.svg",
  10363. extra: 1153 / 1038,
  10364. bottom: 0.06
  10365. }
  10366. },
  10367. foot: {
  10368. height: math.unit(6, "feet"),
  10369. weight: math.unit(150, "lb"),
  10370. name: "Foot",
  10371. image: {
  10372. source: "./media/characters/kayroo/foot.svg"
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Normal",
  10379. height: math.unit(8, "feet"),
  10380. default: true
  10381. },
  10382. {
  10383. name: "Minimacro",
  10384. height: math.unit(250, "feet")
  10385. },
  10386. {
  10387. name: "Macro",
  10388. height: math.unit(2800, "feet")
  10389. },
  10390. {
  10391. name: "Megamacro",
  10392. height: math.unit(5200, "feet")
  10393. },
  10394. {
  10395. name: "Gigamacro",
  10396. height: math.unit(27000, "feet")
  10397. },
  10398. {
  10399. name: "Omega",
  10400. height: math.unit(45000, "feet")
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(18, "feet"),
  10409. weight: math.unit(5800, "lb"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/rhys/front.svg",
  10413. extra: 3386 / 3090,
  10414. bottom: 0.07
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(18, "feet"),
  10422. default: true
  10423. },
  10424. {
  10425. name: "Working Size",
  10426. height: math.unit(200, "feet")
  10427. },
  10428. {
  10429. name: "Demolition Size",
  10430. height: math.unit(2000, "feet")
  10431. },
  10432. {
  10433. name: "Maximum Licensed Size",
  10434. height: math.unit(5, "miles")
  10435. },
  10436. {
  10437. name: "Maximum Observed Size",
  10438. height: math.unit(10, "yottameters")
  10439. },
  10440. ]
  10441. ))
  10442. characterMakers.push(() => makeCharacter(
  10443. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10444. {
  10445. front: {
  10446. height: math.unit(6, "feet"),
  10447. weight: math.unit(250, "lb"),
  10448. name: "Front",
  10449. image: {
  10450. source: "./media/characters/toto/front.svg",
  10451. extra: 527 / 479,
  10452. bottom: 0.05
  10453. }
  10454. },
  10455. },
  10456. [
  10457. {
  10458. name: "Micro",
  10459. height: math.unit(3, "feet")
  10460. },
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(10, "feet")
  10464. },
  10465. {
  10466. name: "Macro",
  10467. height: math.unit(150, "feet"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Megamacro",
  10472. height: math.unit(1200, "feet")
  10473. },
  10474. ]
  10475. ))
  10476. characterMakers.push(() => makeCharacter(
  10477. { name: "King", species: ["lion"], tags: ["anthro"] },
  10478. {
  10479. back: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(150, "lb"),
  10482. name: "Back",
  10483. image: {
  10484. source: "./media/characters/king/back.svg"
  10485. }
  10486. },
  10487. },
  10488. [
  10489. {
  10490. name: "Micro",
  10491. height: math.unit(2, "inches")
  10492. },
  10493. {
  10494. name: "Normal",
  10495. height: math.unit(8, "feet")
  10496. },
  10497. {
  10498. name: "Macro",
  10499. height: math.unit(200, "feet"),
  10500. default: true
  10501. },
  10502. {
  10503. name: "Megamacro",
  10504. height: math.unit(50, "miles")
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10510. {
  10511. anthro: {
  10512. height: math.unit(6 + 5 / 12, "feet"),
  10513. weight: math.unit(280, "lb"),
  10514. name: "Anthro",
  10515. image: {
  10516. source: "./media/characters/cordite/anthro.svg",
  10517. extra: 1986 / 1905,
  10518. bottom: 0.025
  10519. }
  10520. },
  10521. feral: {
  10522. height: math.unit(2, "feet"),
  10523. weight: math.unit(90, "lb"),
  10524. name: "Feral",
  10525. image: {
  10526. source: "./media/characters/cordite/feral.svg",
  10527. extra: 1260 / 755,
  10528. bottom: 0.05
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Normal",
  10535. height: math.unit(6 + 5 / 12, "feet"),
  10536. default: true
  10537. },
  10538. ]
  10539. ))
  10540. characterMakers.push(() => makeCharacter(
  10541. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10542. {
  10543. front: {
  10544. height: math.unit(6, "feet"),
  10545. weight: math.unit(150, "lb"),
  10546. name: "Front",
  10547. image: {
  10548. source: "./media/characters/pianostrong/front.svg",
  10549. extra: 6577 / 6254,
  10550. bottom: 0.02
  10551. }
  10552. },
  10553. side: {
  10554. height: math.unit(6, "feet"),
  10555. weight: math.unit(150, "lb"),
  10556. name: "Side",
  10557. image: {
  10558. source: "./media/characters/pianostrong/side.svg",
  10559. extra: 6106 / 5730
  10560. }
  10561. },
  10562. back: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Back",
  10566. image: {
  10567. source: "./media/characters/pianostrong/back.svg",
  10568. extra: 6085 / 5733,
  10569. bottom: 0.01
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Macro",
  10576. height: math.unit(100, "feet")
  10577. },
  10578. {
  10579. name: "Macro+",
  10580. height: math.unit(300, "feet"),
  10581. default: true
  10582. },
  10583. {
  10584. name: "Macro++",
  10585. height: math.unit(1000, "feet")
  10586. },
  10587. ]
  10588. ))
  10589. characterMakers.push(() => makeCharacter(
  10590. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10591. {
  10592. front: {
  10593. height: math.unit(6, "feet"),
  10594. weight: math.unit(150, "lb"),
  10595. name: "Front",
  10596. image: {
  10597. source: "./media/characters/kona/front.svg",
  10598. extra: 2960 / 2629,
  10599. bottom: 0.005
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Normal",
  10606. height: math.unit(11 + 8 / 12, "feet")
  10607. },
  10608. {
  10609. name: "Macro",
  10610. height: math.unit(850, "feet"),
  10611. default: true
  10612. },
  10613. {
  10614. name: "Macro+",
  10615. height: math.unit(1.5, "km"),
  10616. default: true
  10617. },
  10618. {
  10619. name: "Megamacro",
  10620. height: math.unit(80, "miles")
  10621. },
  10622. {
  10623. name: "Gigamacro",
  10624. height: math.unit(3500, "miles")
  10625. },
  10626. ]
  10627. ))
  10628. characterMakers.push(() => makeCharacter(
  10629. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10630. {
  10631. side: {
  10632. height: math.unit(1.9, "meters"),
  10633. weight: math.unit(326, "kg"),
  10634. name: "Side",
  10635. image: {
  10636. source: "./media/characters/levi/side.svg",
  10637. extra: 1704 / 1334,
  10638. bottom: 0.02
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(1.9, "meters"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Macro",
  10650. height: math.unit(20, "meters")
  10651. },
  10652. {
  10653. name: "Macro+",
  10654. height: math.unit(200, "meters")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(2, "km")
  10659. },
  10660. {
  10661. name: "Megamacro+",
  10662. height: math.unit(20, "km")
  10663. },
  10664. {
  10665. name: "Gigamacro",
  10666. height: math.unit(2500, "km")
  10667. },
  10668. {
  10669. name: "Gigamacro+",
  10670. height: math.unit(120000, "km")
  10671. },
  10672. {
  10673. name: "Teramacro",
  10674. height: math.unit(7.77e6, "km")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(6 + 4 / 12, "feet"),
  10683. weight: math.unit(188, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/bmc/front.svg",
  10687. extra: 1067 / 1022,
  10688. bottom: 0.047
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Human-sized",
  10695. height: math.unit(6 + 4 / 12, "feet")
  10696. },
  10697. {
  10698. name: "Small",
  10699. height: math.unit(250, "feet")
  10700. },
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(1250, "feet"),
  10704. default: true
  10705. },
  10706. {
  10707. name: "Good Day",
  10708. height: math.unit(88, "miles")
  10709. },
  10710. {
  10711. name: "Largest Measured Size",
  10712. height: math.unit(11.2e6, "lightyears")
  10713. },
  10714. ]
  10715. ))
  10716. characterMakers.push(() => makeCharacter(
  10717. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10718. {
  10719. front: {
  10720. height: math.unit(20, "feet"),
  10721. weight: math.unit(2016, "kg"),
  10722. name: "Front",
  10723. image: {
  10724. source: "./media/characters/sven-the-kaiju/front.svg",
  10725. extra: 1479 / 1449,
  10726. bottom: 0.05
  10727. }
  10728. },
  10729. },
  10730. [
  10731. {
  10732. name: "Fairy",
  10733. height: math.unit(6, "inches")
  10734. },
  10735. {
  10736. name: "Normal",
  10737. height: math.unit(20, "feet"),
  10738. default: true
  10739. },
  10740. {
  10741. name: "Rampage",
  10742. height: math.unit(200, "feet")
  10743. },
  10744. {
  10745. name: "Archfey Forest Guardian",
  10746. height: math.unit(1, "mile")
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(4, "meters"),
  10755. weight: math.unit(2, "tons"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/marik/front.svg",
  10759. extra: 1057 / 1003,
  10760. bottom: 0.08
  10761. }
  10762. },
  10763. },
  10764. [
  10765. {
  10766. name: "Normal",
  10767. height: math.unit(4, "meters"),
  10768. default: true
  10769. },
  10770. {
  10771. name: "Macro",
  10772. height: math.unit(20, "meters")
  10773. },
  10774. {
  10775. name: "Megamacro",
  10776. height: math.unit(50, "km")
  10777. },
  10778. {
  10779. name: "Gigamacro",
  10780. height: math.unit(100, "km")
  10781. },
  10782. {
  10783. name: "Alpha Macro",
  10784. height: math.unit(7.88e7, "yottameters")
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10790. {
  10791. front: {
  10792. height: math.unit(6, "feet"),
  10793. weight: math.unit(110, "lb"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/mel/front.svg",
  10797. extra: 736 / 617,
  10798. bottom: 0.017
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Pico",
  10805. height: math.unit(3, "pm")
  10806. },
  10807. {
  10808. name: "Nano",
  10809. height: math.unit(3, "nm")
  10810. },
  10811. {
  10812. name: "Micro",
  10813. height: math.unit(0.3, "mm"),
  10814. default: true
  10815. },
  10816. {
  10817. name: "Micro+",
  10818. height: math.unit(3, "mm")
  10819. },
  10820. {
  10821. name: "Normal",
  10822. height: math.unit(5 + 10.5 / 12, "feet")
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10828. {
  10829. kaiju: {
  10830. height: math.unit(1.75, "meters"),
  10831. weight: math.unit(55, "kg"),
  10832. name: "Kaiju",
  10833. image: {
  10834. source: "./media/characters/lykonous/kaiju.svg",
  10835. extra: 1055 / 946,
  10836. bottom: 0.135
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Normal",
  10843. height: math.unit(2.5, "meters"),
  10844. default: true
  10845. },
  10846. {
  10847. name: "Kaiju Dragon",
  10848. height: math.unit(60, "meters")
  10849. },
  10850. {
  10851. name: "Mega Kaiju",
  10852. height: math.unit(120, "km")
  10853. },
  10854. {
  10855. name: "Giga Kaiju",
  10856. height: math.unit(200, "megameters")
  10857. },
  10858. {
  10859. name: "Terra Kaiju",
  10860. height: math.unit(400, "gigameters")
  10861. },
  10862. {
  10863. name: "Kaiju Dragon God",
  10864. height: math.unit(13000, "exaparsecs")
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10870. {
  10871. front: {
  10872. height: math.unit(6, "feet"),
  10873. weight: math.unit(150, "lb"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/blü/front.svg",
  10877. extra: 1883 / 1564,
  10878. bottom: 0.031
  10879. }
  10880. },
  10881. },
  10882. [
  10883. {
  10884. name: "Normal",
  10885. height: math.unit(13, "feet"),
  10886. default: true
  10887. },
  10888. {
  10889. name: "Big Boi",
  10890. height: math.unit(150, "meters")
  10891. },
  10892. {
  10893. name: "Mini Stomper",
  10894. height: math.unit(300, "meters")
  10895. },
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(1000, "meters")
  10899. },
  10900. {
  10901. name: "Megamacro",
  10902. height: math.unit(11000, "meters")
  10903. },
  10904. {
  10905. name: "Gigamacro",
  10906. height: math.unit(11000, "km")
  10907. },
  10908. {
  10909. name: "Teramacro",
  10910. height: math.unit(420000, "km")
  10911. },
  10912. {
  10913. name: "Examacro",
  10914. height: math.unit(120, "parsecs")
  10915. },
  10916. {
  10917. name: "God Tho",
  10918. height: math.unit(98000000000, "parsecs")
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10924. {
  10925. taurFront: {
  10926. height: math.unit(6, "feet"),
  10927. weight: math.unit(200, "lb"),
  10928. name: "Taur (Front)",
  10929. image: {
  10930. source: "./media/characters/scales/taur-front.svg",
  10931. extra: 1,
  10932. bottom: 0.05
  10933. }
  10934. },
  10935. taurBack: {
  10936. height: math.unit(6, "feet"),
  10937. weight: math.unit(200, "lb"),
  10938. name: "Taur (Back)",
  10939. image: {
  10940. source: "./media/characters/scales/taur-back.svg",
  10941. extra: 1,
  10942. bottom: 0.08
  10943. }
  10944. },
  10945. anthro: {
  10946. height: math.unit(6 * 7 / 12, "feet"),
  10947. weight: math.unit(100, "lb"),
  10948. name: "Anthro",
  10949. image: {
  10950. source: "./media/characters/scales/anthro.svg",
  10951. extra: 1,
  10952. bottom: 0.06
  10953. }
  10954. },
  10955. },
  10956. [
  10957. {
  10958. name: "Normal",
  10959. height: math.unit(12, "feet"),
  10960. default: true
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10966. {
  10967. front: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(150, "lb"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/koragos/front.svg",
  10973. extra: 841 / 794,
  10974. bottom: 0.035
  10975. }
  10976. },
  10977. back: {
  10978. height: math.unit(6, "feet"),
  10979. weight: math.unit(150, "lb"),
  10980. name: "Back",
  10981. image: {
  10982. source: "./media/characters/koragos/back.svg",
  10983. extra: 841 / 810,
  10984. bottom: 0.022
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Normal",
  10991. height: math.unit(6 + 11 / 12, "feet"),
  10992. default: true
  10993. },
  10994. {
  10995. name: "Macro",
  10996. height: math.unit(490, "feet")
  10997. },
  10998. {
  10999. name: "Megamacro",
  11000. height: math.unit(10, "miles")
  11001. },
  11002. {
  11003. name: "Gigamacro",
  11004. height: math.unit(50, "miles")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(250, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/xylrem/front.svg",
  11017. extra: 3323 / 3050,
  11018. bottom: 0.065
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Micro",
  11025. height: math.unit(4, "feet")
  11026. },
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(16, "feet"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Macro",
  11034. height: math.unit(2720, "feet")
  11035. },
  11036. {
  11037. name: "Megamacro",
  11038. height: math.unit(25000, "miles")
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(8, "feet"),
  11047. weight: math.unit(250, "kg"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/ikideru/front.svg",
  11051. extra: 930 / 870,
  11052. bottom: 0.087
  11053. }
  11054. },
  11055. back: {
  11056. height: math.unit(8, "feet"),
  11057. weight: math.unit(250, "kg"),
  11058. name: "Back",
  11059. image: {
  11060. source: "./media/characters/ikideru/back.svg",
  11061. extra: 919 / 852,
  11062. bottom: 0.055
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Rare",
  11069. height: math.unit(8, "feet"),
  11070. default: true
  11071. },
  11072. {
  11073. name: "Playful Loom",
  11074. height: math.unit(80, "feet")
  11075. },
  11076. {
  11077. name: "City Leaner",
  11078. height: math.unit(230, "feet")
  11079. },
  11080. {
  11081. name: "Megamacro",
  11082. height: math.unit(2500, "feet")
  11083. },
  11084. {
  11085. name: "Gigamacro",
  11086. height: math.unit(26400, "feet")
  11087. },
  11088. {
  11089. name: "Tectonic Shifter",
  11090. height: math.unit(1.7, "megameters")
  11091. },
  11092. {
  11093. name: "Planet Carer",
  11094. height: math.unit(21, "megameters")
  11095. },
  11096. {
  11097. name: "God",
  11098. height: math.unit(11157.22, "parsecs")
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(120, "lb"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/neo/front.svg"
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Micro",
  11117. height: math.unit(2, "inches"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Human Size",
  11122. height: math.unit(5 + 8 / 12, "feet")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(13 + 10 / 12, "feet"),
  11131. weight: math.unit(5320, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/chauncey-chantz/front.svg",
  11135. extra: 1587 / 1435,
  11136. bottom: 0.02
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(13 + 10 / 12, "feet"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Macro",
  11148. height: math.unit(45, "feet")
  11149. },
  11150. {
  11151. name: "Megamacro",
  11152. height: math.unit(250, "miles")
  11153. },
  11154. {
  11155. name: "Planetary",
  11156. height: math.unit(10000, "miles")
  11157. },
  11158. {
  11159. name: "Galactic",
  11160. height: math.unit(40000, "parsecs")
  11161. },
  11162. {
  11163. name: "Universal",
  11164. height: math.unit(1, "yottameter")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(150, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/epifox/front.svg",
  11177. extra: 1,
  11178. bottom: 0.075
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Micro",
  11185. height: math.unit(6, "inches")
  11186. },
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(12, "feet"),
  11190. default: true
  11191. },
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(3810, "feet")
  11195. },
  11196. {
  11197. name: "Megamacro",
  11198. height: math.unit(500, "miles")
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11204. {
  11205. front: {
  11206. height: math.unit(1.8796, "m"),
  11207. weight: math.unit(230, "lb"),
  11208. name: "Front",
  11209. image: {
  11210. source: "./media/characters/colin-t/front.svg",
  11211. extra: 1272 / 1193,
  11212. bottom: 0.07
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Micro",
  11219. height: math.unit(0.571, "meters")
  11220. },
  11221. {
  11222. name: "Normal",
  11223. height: math.unit(1.8796, "meters"),
  11224. default: true
  11225. },
  11226. {
  11227. name: "Tall",
  11228. height: math.unit(4, "meters")
  11229. },
  11230. {
  11231. name: "Macro",
  11232. height: math.unit(67.241, "meters")
  11233. },
  11234. {
  11235. name: "Megamacro",
  11236. height: math.unit(371.856, "meters")
  11237. },
  11238. {
  11239. name: "Planetary",
  11240. height: math.unit(12631.5689, "km")
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(1.85, "meters"),
  11249. weight: math.unit(80, "kg"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/matvei/front.svg",
  11253. extra: 614 / 594,
  11254. bottom: 0.01
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(1.85, "meters"),
  11262. default: true
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11268. {
  11269. front: {
  11270. height: math.unit(5 + 9 / 12, "feet"),
  11271. weight: math.unit(70, "lb"),
  11272. name: "Front",
  11273. image: {
  11274. source: "./media/characters/quincy/front.svg",
  11275. extra: 3041 / 2751
  11276. }
  11277. },
  11278. back: {
  11279. height: math.unit(5 + 9 / 12, "feet"),
  11280. weight: math.unit(70, "lb"),
  11281. name: "Back",
  11282. image: {
  11283. source: "./media/characters/quincy/back.svg",
  11284. extra: 3041 / 2751
  11285. }
  11286. },
  11287. flying: {
  11288. height: math.unit(5 + 4 / 12, "feet"),
  11289. weight: math.unit(70, "lb"),
  11290. name: "Flying",
  11291. image: {
  11292. source: "./media/characters/quincy/flying.svg",
  11293. extra: 1044 / 930
  11294. }
  11295. },
  11296. },
  11297. [
  11298. {
  11299. name: "Micro",
  11300. height: math.unit(3, "cm")
  11301. },
  11302. {
  11303. name: "Normal",
  11304. height: math.unit(5 + 9 / 12, "feet")
  11305. },
  11306. {
  11307. name: "Macro",
  11308. height: math.unit(200, "meters"),
  11309. default: true
  11310. },
  11311. {
  11312. name: "Megamacro",
  11313. height: math.unit(1000, "meters")
  11314. },
  11315. ]
  11316. ))
  11317. characterMakers.push(() => makeCharacter(
  11318. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11319. {
  11320. front: {
  11321. height: math.unit(4 + 7 / 12, "feet"),
  11322. weight: math.unit(50, "lb"),
  11323. name: "Front",
  11324. image: {
  11325. source: "./media/characters/vanrel/front.svg",
  11326. extra: 1,
  11327. bottom: 0.02
  11328. }
  11329. },
  11330. frontAlt: {
  11331. height: math.unit(4 + 7 / 12, "feet"),
  11332. weight: math.unit(50, "lb"),
  11333. name: "Front-alt",
  11334. image: {
  11335. source: "./media/characters/vanrel/front-alt.svg",
  11336. extra: 1,
  11337. bottom: 15 / 1511
  11338. }
  11339. },
  11340. elemental: {
  11341. height: math.unit(3, "feet"),
  11342. weight: math.unit(50, "lb"),
  11343. name: "Elemental",
  11344. image: {
  11345. source: "./media/characters/vanrel/elemental.svg",
  11346. extra: 192.3 / 162.8,
  11347. bottom: 1.79 / 194.17
  11348. }
  11349. },
  11350. side: {
  11351. height: math.unit(4 + 7 / 12, "feet"),
  11352. weight: math.unit(50, "lb"),
  11353. name: "Side",
  11354. image: {
  11355. source: "./media/characters/vanrel/side.svg",
  11356. extra: 1,
  11357. bottom: 0.025
  11358. }
  11359. },
  11360. tome: {
  11361. height: math.unit(1.35, "feet"),
  11362. weight: math.unit(10, "lb"),
  11363. name: "Vanrel's Tome",
  11364. rename: true,
  11365. image: {
  11366. source: "./media/characters/vanrel/tome.svg"
  11367. }
  11368. },
  11369. beans: {
  11370. height: math.unit(0.89, "feet"),
  11371. name: "Beans",
  11372. image: {
  11373. source: "./media/characters/vanrel/beans.svg"
  11374. }
  11375. },
  11376. },
  11377. [
  11378. {
  11379. name: "Normal",
  11380. height: math.unit(4 + 7 / 12, "feet"),
  11381. default: true
  11382. },
  11383. ]
  11384. ))
  11385. characterMakers.push(() => makeCharacter(
  11386. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11387. {
  11388. front: {
  11389. height: math.unit(7 + 5 / 12, "feet"),
  11390. weight: math.unit(150, "lb"),
  11391. name: "Front",
  11392. image: {
  11393. source: "./media/characters/kuiper-vanrel/front.svg",
  11394. extra: 1118 / 1068,
  11395. bottom: 0.09
  11396. }
  11397. },
  11398. foot: {
  11399. height: math.unit(0.55, "meters"),
  11400. name: "Foot",
  11401. image: {
  11402. source: "./media/characters/kuiper-vanrel/foot.svg",
  11403. }
  11404. },
  11405. battle: {
  11406. height: math.unit(6.824, "feet"),
  11407. weight: math.unit(150, "lb"),
  11408. name: "Battle",
  11409. image: {
  11410. source: "./media/characters/kuiper-vanrel/battle.svg",
  11411. extra: 1466 / 1327,
  11412. bottom: 29 / 1492.5
  11413. }
  11414. },
  11415. battleAlt: {
  11416. height: math.unit(6.824, "feet"),
  11417. weight: math.unit(150, "lb"),
  11418. name: "Battle (Alt)",
  11419. image: {
  11420. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11421. extra: 2081 / 1965,
  11422. bottom: 40 / 2121
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(7 + 5 / 12, "feet"),
  11430. default: true
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(8 + 5 / 12, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/keset-vanrel/front.svg",
  11443. extra: 1150 / 1084,
  11444. bottom: 0.05
  11445. }
  11446. },
  11447. hand: {
  11448. height: math.unit(0.6, "meters"),
  11449. name: "Hand",
  11450. image: {
  11451. source: "./media/characters/keset-vanrel/hand.svg"
  11452. }
  11453. },
  11454. foot: {
  11455. height: math.unit(0.94978, "meters"),
  11456. name: "Foot",
  11457. image: {
  11458. source: "./media/characters/keset-vanrel/foot.svg"
  11459. }
  11460. },
  11461. battle: {
  11462. height: math.unit(7.408, "feet"),
  11463. weight: math.unit(150, "lb"),
  11464. name: "Battle",
  11465. image: {
  11466. source: "./media/characters/keset-vanrel/battle.svg",
  11467. extra: 1890 / 1386,
  11468. bottom: 73.28 / 1970
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Normal",
  11475. height: math.unit(8 + 5 / 12, "feet"),
  11476. default: true
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(6, "feet"),
  11485. weight: math.unit(150, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/neos/front.svg",
  11489. extra: 1696 / 992,
  11490. bottom: 0.14
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Normal",
  11497. height: math.unit(54, "cm"),
  11498. default: true
  11499. },
  11500. {
  11501. name: "Macro",
  11502. height: math.unit(100, "m")
  11503. },
  11504. {
  11505. name: "Megamacro",
  11506. height: math.unit(10, "km")
  11507. },
  11508. {
  11509. name: "Megamacro+",
  11510. height: math.unit(100, "km")
  11511. },
  11512. {
  11513. name: "Gigamacro",
  11514. height: math.unit(100, "Mm")
  11515. },
  11516. {
  11517. name: "Teramacro",
  11518. height: math.unit(100, "Gm")
  11519. },
  11520. {
  11521. name: "Examacro",
  11522. height: math.unit(100, "Em")
  11523. },
  11524. {
  11525. name: "Godly",
  11526. height: math.unit(10000, "Ym")
  11527. },
  11528. {
  11529. name: "Beyond Godly",
  11530. height: math.unit(25, "multiverses")
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11536. {
  11537. feminine: {
  11538. height: math.unit(5, "feet"),
  11539. weight: math.unit(100, "lb"),
  11540. name: "Feminine",
  11541. image: {
  11542. source: "./media/characters/sammy-mouse/feminine.svg",
  11543. extra: 2526 / 2425,
  11544. bottom: 0.123
  11545. }
  11546. },
  11547. masculine: {
  11548. height: math.unit(5, "feet"),
  11549. weight: math.unit(100, "lb"),
  11550. name: "Masculine",
  11551. image: {
  11552. source: "./media/characters/sammy-mouse/masculine.svg",
  11553. extra: 2526 / 2425,
  11554. bottom: 0.123
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Micro",
  11561. height: math.unit(5, "inches")
  11562. },
  11563. {
  11564. name: "Normal",
  11565. height: math.unit(5, "feet"),
  11566. default: true
  11567. },
  11568. {
  11569. name: "Macro",
  11570. height: math.unit(60, "feet")
  11571. },
  11572. ]
  11573. ))
  11574. characterMakers.push(() => makeCharacter(
  11575. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11576. {
  11577. front: {
  11578. height: math.unit(4, "feet"),
  11579. weight: math.unit(50, "lb"),
  11580. name: "Front",
  11581. image: {
  11582. source: "./media/characters/kole/front.svg",
  11583. extra: 1423 / 1303,
  11584. bottom: 0.025
  11585. }
  11586. },
  11587. back: {
  11588. height: math.unit(4, "feet"),
  11589. weight: math.unit(50, "lb"),
  11590. name: "Back",
  11591. image: {
  11592. source: "./media/characters/kole/back.svg",
  11593. extra: 1426 / 1280,
  11594. bottom: 0.02
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(4, "feet"),
  11602. default: true
  11603. },
  11604. ]
  11605. ))
  11606. characterMakers.push(() => makeCharacter(
  11607. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11608. {
  11609. front: {
  11610. height: math.unit(2 + 6 / 12, "feet"),
  11611. weight: math.unit(20, "lb"),
  11612. name: "Front",
  11613. image: {
  11614. source: "./media/characters/rufran/front.svg",
  11615. extra: 2041 / 1839,
  11616. bottom: 0.055
  11617. }
  11618. },
  11619. back: {
  11620. height: math.unit(2 + 6 / 12, "feet"),
  11621. weight: math.unit(20, "lb"),
  11622. name: "Back",
  11623. image: {
  11624. source: "./media/characters/rufran/back.svg",
  11625. extra: 2054 / 1839,
  11626. bottom: 0.01
  11627. }
  11628. },
  11629. hand: {
  11630. height: math.unit(0.2166, "meters"),
  11631. name: "Hand",
  11632. image: {
  11633. source: "./media/characters/rufran/hand.svg"
  11634. }
  11635. },
  11636. foot: {
  11637. height: math.unit(0.185, "meters"),
  11638. name: "Foot",
  11639. image: {
  11640. source: "./media/characters/rufran/foot.svg"
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Micro",
  11647. height: math.unit(1, "inch")
  11648. },
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(2 + 6 / 12, "feet"),
  11652. default: true
  11653. },
  11654. {
  11655. name: "Big",
  11656. height: math.unit(60, "feet")
  11657. },
  11658. {
  11659. name: "Macro",
  11660. height: math.unit(325, "feet")
  11661. },
  11662. ]
  11663. ))
  11664. characterMakers.push(() => makeCharacter(
  11665. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11666. {
  11667. front: {
  11668. height: math.unit(0.3, "meters"),
  11669. weight: math.unit(3.5, "kg"),
  11670. name: "Front",
  11671. image: {
  11672. source: "./media/characters/chip/front.svg",
  11673. extra: 748 / 674
  11674. }
  11675. },
  11676. },
  11677. [
  11678. {
  11679. name: "Micro",
  11680. height: math.unit(1, "inch"),
  11681. default: true
  11682. },
  11683. ]
  11684. ))
  11685. characterMakers.push(() => makeCharacter(
  11686. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11687. {
  11688. side: {
  11689. height: math.unit(2.3, "meters"),
  11690. weight: math.unit(3500, "lb"),
  11691. name: "Side",
  11692. image: {
  11693. source: "./media/characters/torvid/side.svg",
  11694. extra: 1972 / 722,
  11695. bottom: 0.035
  11696. }
  11697. },
  11698. },
  11699. [
  11700. {
  11701. name: "Normal",
  11702. height: math.unit(2.3, "meters"),
  11703. default: true
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11709. {
  11710. front: {
  11711. height: math.unit(2, "meters"),
  11712. weight: math.unit(150.5, "kg"),
  11713. name: "Front",
  11714. image: {
  11715. source: "./media/characters/susan/front.svg",
  11716. extra: 693 / 635,
  11717. bottom: 0.05
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Megamacro",
  11724. height: math.unit(505, "miles"),
  11725. default: true
  11726. },
  11727. ]
  11728. ))
  11729. characterMakers.push(() => makeCharacter(
  11730. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11731. {
  11732. front: {
  11733. height: math.unit(6, "feet"),
  11734. weight: math.unit(150, "lb"),
  11735. name: "Front",
  11736. image: {
  11737. source: "./media/characters/raindrops/front.svg",
  11738. extra: 2655 / 2461,
  11739. bottom: 49 / 2705
  11740. }
  11741. },
  11742. back: {
  11743. height: math.unit(6, "feet"),
  11744. weight: math.unit(150, "lb"),
  11745. name: "Back",
  11746. image: {
  11747. source: "./media/characters/raindrops/back.svg",
  11748. extra: 2574 / 2400,
  11749. bottom: 65 / 2634
  11750. }
  11751. },
  11752. },
  11753. [
  11754. {
  11755. name: "Micro",
  11756. height: math.unit(6, "inches")
  11757. },
  11758. {
  11759. name: "Normal",
  11760. height: math.unit(6 + 2 / 12, "feet")
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(131, "feet"),
  11765. default: true
  11766. },
  11767. {
  11768. name: "Megamacro",
  11769. height: math.unit(15, "miles")
  11770. },
  11771. {
  11772. name: "Gigamacro",
  11773. height: math.unit(4000, "miles")
  11774. },
  11775. {
  11776. name: "Teramacro",
  11777. height: math.unit(315000, "miles")
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11783. {
  11784. front: {
  11785. height: math.unit(2.794, "meters"),
  11786. weight: math.unit(325, "kg"),
  11787. name: "Front",
  11788. image: {
  11789. source: "./media/characters/tezwa/front.svg",
  11790. extra: 2083 / 1906,
  11791. bottom: 0.031
  11792. }
  11793. },
  11794. foot: {
  11795. height: math.unit(0.687, "meters"),
  11796. name: "Foot",
  11797. image: {
  11798. source: "./media/characters/tezwa/foot.svg"
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Normal",
  11805. height: math.unit(9 + 2 / 12, "feet"),
  11806. default: true
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11812. {
  11813. front: {
  11814. height: math.unit(58, "feet"),
  11815. weight: math.unit(89000, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/typhus/front.svg",
  11819. extra: 816 / 800,
  11820. bottom: 0.065
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Macro",
  11827. height: math.unit(58, "feet"),
  11828. default: true
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(12, "feet"),
  11837. weight: math.unit(6, "tonnes"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/lyra-von-wulf/front.svg",
  11841. extra: 1,
  11842. bottom: 0.10
  11843. }
  11844. },
  11845. frontMecha: {
  11846. height: math.unit(12, "feet"),
  11847. weight: math.unit(12, "tonnes"),
  11848. name: "Front (Mecha)",
  11849. image: {
  11850. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11851. extra: 1,
  11852. bottom: 0.042
  11853. }
  11854. },
  11855. maw: {
  11856. height: math.unit(2.2, "feet"),
  11857. name: "Maw",
  11858. image: {
  11859. source: "./media/characters/lyra-von-wulf/maw.svg"
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Normal",
  11866. height: math.unit(12, "feet"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Classic",
  11871. height: math.unit(50, "feet")
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(500, "feet")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(1, "mile")
  11880. },
  11881. {
  11882. name: "Gigamacro",
  11883. height: math.unit(400, "miles")
  11884. },
  11885. {
  11886. name: "Teramacro",
  11887. height: math.unit(22000, "miles")
  11888. },
  11889. {
  11890. name: "Solarmacro",
  11891. height: math.unit(8600000, "miles")
  11892. },
  11893. {
  11894. name: "Galactic",
  11895. height: math.unit(1057000, "lightyears")
  11896. },
  11897. ]
  11898. ))
  11899. characterMakers.push(() => makeCharacter(
  11900. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11901. {
  11902. front: {
  11903. height: math.unit(6 + 10 / 12, "feet"),
  11904. weight: math.unit(150, "lb"),
  11905. name: "Front",
  11906. image: {
  11907. source: "./media/characters/dixon/front.svg",
  11908. extra: 3361 / 3209,
  11909. bottom: 0.01
  11910. }
  11911. },
  11912. },
  11913. [
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(6 + 10 / 12, "feet"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Big",
  11921. height: math.unit(12, "meters")
  11922. },
  11923. {
  11924. name: "Macro",
  11925. height: math.unit(500, "meters")
  11926. },
  11927. {
  11928. name: "Megamacro",
  11929. height: math.unit(2, "km")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(185, "cm"),
  11938. weight: math.unit(68, "kg"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/kauko/front.svg",
  11942. extra: 1455 / 1421,
  11943. bottom: 0.03
  11944. }
  11945. },
  11946. back: {
  11947. height: math.unit(185, "cm"),
  11948. weight: math.unit(68, "kg"),
  11949. name: "Back",
  11950. image: {
  11951. source: "./media/characters/kauko/back.svg",
  11952. extra: 1455 / 1421,
  11953. bottom: 0.004
  11954. }
  11955. },
  11956. },
  11957. [
  11958. {
  11959. name: "Normal",
  11960. height: math.unit(185, "cm"),
  11961. default: true
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11967. {
  11968. front: {
  11969. height: math.unit(6, "feet"),
  11970. weight: math.unit(150, "kg"),
  11971. name: "Front",
  11972. image: {
  11973. source: "./media/characters/varg/front.svg",
  11974. extra: 1108 / 1018,
  11975. bottom: 0.0375
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(5, "meters")
  11983. },
  11984. {
  11985. name: "Macro",
  11986. height: math.unit(200, "meters")
  11987. },
  11988. {
  11989. name: "Megamacro",
  11990. height: math.unit(20, "kilometers")
  11991. },
  11992. {
  11993. name: "True Size",
  11994. height: math.unit(211, "km"),
  11995. default: true
  11996. },
  11997. {
  11998. name: "Gigamacro",
  11999. height: math.unit(1000, "km")
  12000. },
  12001. {
  12002. name: "Gigamacro+",
  12003. height: math.unit(8000, "km")
  12004. },
  12005. {
  12006. name: "Teramacro",
  12007. height: math.unit(1000000, "km")
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12013. {
  12014. front: {
  12015. height: math.unit(7 + 7 / 12, "feet"),
  12016. weight: math.unit(267, "lb"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/dayza/front.svg",
  12020. extra: 1262 / 1200,
  12021. bottom: 0.035
  12022. }
  12023. },
  12024. side: {
  12025. height: math.unit(7 + 7 / 12, "feet"),
  12026. weight: math.unit(267, "lb"),
  12027. name: "Side",
  12028. image: {
  12029. source: "./media/characters/dayza/side.svg",
  12030. extra: 1295 / 1245,
  12031. bottom: 0.05
  12032. }
  12033. },
  12034. back: {
  12035. height: math.unit(7 + 7 / 12, "feet"),
  12036. weight: math.unit(267, "lb"),
  12037. name: "Back",
  12038. image: {
  12039. source: "./media/characters/dayza/back.svg",
  12040. extra: 1241 / 1170
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Normal",
  12047. height: math.unit(7 + 7 / 12, "feet"),
  12048. default: true
  12049. },
  12050. {
  12051. name: "Macro",
  12052. height: math.unit(155, "feet")
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12058. {
  12059. front: {
  12060. height: math.unit(6 + 5 / 12, "feet"),
  12061. weight: math.unit(160, "lb"),
  12062. name: "Front",
  12063. image: {
  12064. source: "./media/characters/xanthos/front.svg",
  12065. extra: 1,
  12066. bottom: 0.04
  12067. }
  12068. },
  12069. back: {
  12070. height: math.unit(6 + 5 / 12, "feet"),
  12071. weight: math.unit(160, "lb"),
  12072. name: "Back",
  12073. image: {
  12074. source: "./media/characters/xanthos/back.svg",
  12075. extra: 1,
  12076. bottom: 0.03
  12077. }
  12078. },
  12079. hand: {
  12080. height: math.unit(0.928, "feet"),
  12081. name: "Hand",
  12082. image: {
  12083. source: "./media/characters/xanthos/hand.svg"
  12084. }
  12085. },
  12086. foot: {
  12087. height: math.unit(1.286, "feet"),
  12088. name: "Foot",
  12089. image: {
  12090. source: "./media/characters/xanthos/foot.svg"
  12091. }
  12092. },
  12093. },
  12094. [
  12095. {
  12096. name: "Normal",
  12097. height: math.unit(6 + 5 / 12, "feet"),
  12098. default: true
  12099. },
  12100. {
  12101. name: "Normal+",
  12102. height: math.unit(6, "meters")
  12103. },
  12104. {
  12105. name: "Macro",
  12106. height: math.unit(40, "feet")
  12107. },
  12108. {
  12109. name: "Macro+",
  12110. height: math.unit(200, "meters")
  12111. },
  12112. {
  12113. name: "Megamacro",
  12114. height: math.unit(20, "km")
  12115. },
  12116. {
  12117. name: "Megamacro+",
  12118. height: math.unit(100, "km")
  12119. },
  12120. ]
  12121. ))
  12122. characterMakers.push(() => makeCharacter(
  12123. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12124. {
  12125. front: {
  12126. height: math.unit(6 + 3 / 12, "feet"),
  12127. weight: math.unit(215, "lb"),
  12128. name: "Front",
  12129. image: {
  12130. source: "./media/characters/grynn/front.svg",
  12131. extra: 4627 / 4209,
  12132. bottom: 0.047
  12133. }
  12134. },
  12135. },
  12136. [
  12137. {
  12138. name: "Micro",
  12139. height: math.unit(6, "inches")
  12140. },
  12141. {
  12142. name: "Normal",
  12143. height: math.unit(6 + 3 / 12, "feet"),
  12144. default: true
  12145. },
  12146. {
  12147. name: "Big",
  12148. height: math.unit(104, "feet")
  12149. },
  12150. {
  12151. name: "Macro",
  12152. height: math.unit(944, "feet")
  12153. },
  12154. {
  12155. name: "Macro+",
  12156. height: math.unit(9480, "feet")
  12157. },
  12158. {
  12159. name: "Megamacro",
  12160. height: math.unit(78752, "feet")
  12161. },
  12162. {
  12163. name: "Megamacro+",
  12164. height: math.unit(630128, "feet")
  12165. },
  12166. {
  12167. name: "Megamacro++",
  12168. height: math.unit(3150695, "feet")
  12169. },
  12170. ]
  12171. ))
  12172. characterMakers.push(() => makeCharacter(
  12173. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12174. {
  12175. front: {
  12176. height: math.unit(7 + 5 / 12, "feet"),
  12177. weight: math.unit(450, "lb"),
  12178. name: "Front",
  12179. image: {
  12180. source: "./media/characters/mocha-aura/front.svg",
  12181. extra: 1907 / 1817,
  12182. bottom: 0.04
  12183. }
  12184. },
  12185. back: {
  12186. height: math.unit(7 + 5 / 12, "feet"),
  12187. weight: math.unit(450, "lb"),
  12188. name: "Back",
  12189. image: {
  12190. source: "./media/characters/mocha-aura/back.svg",
  12191. extra: 1900 / 1825,
  12192. bottom: 0.045
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Nano",
  12199. height: math.unit(1, "nm")
  12200. },
  12201. {
  12202. name: "Megamicro",
  12203. height: math.unit(1, "mm")
  12204. },
  12205. {
  12206. name: "Micro",
  12207. height: math.unit(3, "inches")
  12208. },
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(7 + 5 / 12, "feet"),
  12212. default: true
  12213. },
  12214. {
  12215. name: "Macro",
  12216. height: math.unit(30, "feet")
  12217. },
  12218. {
  12219. name: "Megamacro",
  12220. height: math.unit(3500, "feet")
  12221. },
  12222. {
  12223. name: "Teramacro",
  12224. height: math.unit(500000, "miles")
  12225. },
  12226. {
  12227. name: "Petamacro",
  12228. height: math.unit(50000000000000000, "parsecs")
  12229. },
  12230. ]
  12231. ))
  12232. characterMakers.push(() => makeCharacter(
  12233. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12234. {
  12235. front: {
  12236. height: math.unit(6, "feet"),
  12237. weight: math.unit(150, "lb"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/ilisha-devya/front.svg",
  12241. extra: 1,
  12242. bottom: 0.175
  12243. }
  12244. },
  12245. back: {
  12246. height: math.unit(6, "feet"),
  12247. weight: math.unit(150, "lb"),
  12248. name: "Back",
  12249. image: {
  12250. source: "./media/characters/ilisha-devya/back.svg",
  12251. extra: 1,
  12252. bottom: 0.015
  12253. }
  12254. },
  12255. },
  12256. [
  12257. {
  12258. name: "Macro",
  12259. height: math.unit(500, "feet"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Megamacro",
  12264. height: math.unit(10, "miles")
  12265. },
  12266. {
  12267. name: "Gigamacro",
  12268. height: math.unit(100000, "miles")
  12269. },
  12270. {
  12271. name: "Examacro",
  12272. height: math.unit(1e9, "lightyears")
  12273. },
  12274. {
  12275. name: "Omniversal",
  12276. height: math.unit(1e33, "lightyears")
  12277. },
  12278. {
  12279. name: "Beyond Infinite",
  12280. height: math.unit(1e100, "lightyears")
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12286. {
  12287. Side: {
  12288. height: math.unit(6, "feet"),
  12289. weight: math.unit(150, "lb"),
  12290. name: "Side",
  12291. image: {
  12292. source: "./media/characters/mira/side.svg",
  12293. extra: 900 / 799,
  12294. bottom: 0.02
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Human Size",
  12301. height: math.unit(6, "feet")
  12302. },
  12303. {
  12304. name: "Macro",
  12305. height: math.unit(100, "feet"),
  12306. default: true
  12307. },
  12308. {
  12309. name: "Megamacro",
  12310. height: math.unit(10, "miles")
  12311. },
  12312. {
  12313. name: "Gigamacro",
  12314. height: math.unit(25000, "miles")
  12315. },
  12316. {
  12317. name: "Teramacro",
  12318. height: math.unit(300, "AU")
  12319. },
  12320. {
  12321. name: "Full Size",
  12322. height: math.unit(4.5e10, "lightyears")
  12323. },
  12324. ]
  12325. ))
  12326. characterMakers.push(() => makeCharacter(
  12327. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12328. {
  12329. front: {
  12330. height: math.unit(6, "feet"),
  12331. weight: math.unit(150, "lb"),
  12332. name: "Front",
  12333. image: {
  12334. source: "./media/characters/holly/front.svg",
  12335. extra: 639 / 606
  12336. }
  12337. },
  12338. back: {
  12339. height: math.unit(6, "feet"),
  12340. weight: math.unit(150, "lb"),
  12341. name: "Back",
  12342. image: {
  12343. source: "./media/characters/holly/back.svg",
  12344. extra: 623 / 598
  12345. }
  12346. },
  12347. frontWorking: {
  12348. height: math.unit(6, "feet"),
  12349. weight: math.unit(150, "lb"),
  12350. name: "Front (Working)",
  12351. image: {
  12352. source: "./media/characters/holly/front-working.svg",
  12353. extra: 607 / 577,
  12354. bottom: 0.048
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Normal",
  12361. height: math.unit(12 + 3 / 12, "feet"),
  12362. default: true
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(6, "feet"),
  12371. weight: math.unit(150, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/porter/front.svg",
  12375. extra: 1,
  12376. bottom: 0.01
  12377. }
  12378. },
  12379. frontRobes: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(150, "lb"),
  12382. name: "Front (Robes)",
  12383. image: {
  12384. source: "./media/characters/porter/front-robes.svg",
  12385. extra: 1.01,
  12386. bottom: 0.01
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Normal",
  12393. height: math.unit(11 + 9 / 12, "feet"),
  12394. default: true
  12395. },
  12396. ]
  12397. ))
  12398. characterMakers.push(() => makeCharacter(
  12399. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12400. {
  12401. legendary: {
  12402. height: math.unit(6, "feet"),
  12403. weight: math.unit(150, "lb"),
  12404. name: "Legendary",
  12405. image: {
  12406. source: "./media/characters/lucy/legendary.svg",
  12407. extra: 1355 / 1100,
  12408. bottom: 0.045
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Legendary",
  12415. height: math.unit(86882 * 2, "miles"),
  12416. default: true
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(6, "feet"),
  12425. weight: math.unit(150, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/drusilla/front.svg",
  12429. extra: 678 / 635,
  12430. bottom: 0.03
  12431. }
  12432. },
  12433. back: {
  12434. height: math.unit(6, "feet"),
  12435. weight: math.unit(150, "lb"),
  12436. name: "Back",
  12437. image: {
  12438. source: "./media/characters/drusilla/back.svg",
  12439. extra: 678 / 635,
  12440. bottom: 0.005
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(100, "feet")
  12448. },
  12449. {
  12450. name: "Canon Height",
  12451. height: math.unit(2000, "feet"),
  12452. default: true
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(6, "feet"),
  12461. weight: math.unit(180, "lb"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/renard-thatch/front.svg",
  12465. extra: 2411 / 2275,
  12466. bottom: 0.01
  12467. }
  12468. },
  12469. frontPosing: {
  12470. height: math.unit(6, "feet"),
  12471. weight: math.unit(180, "lb"),
  12472. name: "Front (Posing)",
  12473. image: {
  12474. source: "./media/characters/renard-thatch/front-posing.svg",
  12475. extra: 2381 / 2261,
  12476. bottom: 0.01
  12477. }
  12478. },
  12479. back: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(180, "lb"),
  12482. name: "Back",
  12483. image: {
  12484. source: "./media/characters/renard-thatch/back.svg",
  12485. extra: 2428 / 2288
  12486. }
  12487. },
  12488. },
  12489. [
  12490. {
  12491. name: "Micro",
  12492. height: math.unit(3, "inches")
  12493. },
  12494. {
  12495. name: "Default",
  12496. height: math.unit(6, "feet"),
  12497. default: true
  12498. },
  12499. {
  12500. name: "Macro",
  12501. height: math.unit(75, "feet")
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(1450, "feet"),
  12510. weight: math.unit(1.21e6, "tons"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/sekvra/front.svg",
  12514. extra: 1,
  12515. bottom: 0.03
  12516. }
  12517. },
  12518. frontClothed: {
  12519. height: math.unit(1450, "feet"),
  12520. weight: math.unit(1.21e6, "tons"),
  12521. name: "Front (Clothed)",
  12522. image: {
  12523. source: "./media/characters/sekvra/front-clothed.svg",
  12524. extra: 1,
  12525. bottom: 0.03
  12526. }
  12527. },
  12528. side: {
  12529. height: math.unit(1450, "feet"),
  12530. weight: math.unit(1.21e6, "tons"),
  12531. name: "Side",
  12532. image: {
  12533. source: "./media/characters/sekvra/side.svg",
  12534. extra: 1,
  12535. bottom: 0.025
  12536. }
  12537. },
  12538. back: {
  12539. height: math.unit(1450, "feet"),
  12540. weight: math.unit(1.21e6, "tons"),
  12541. name: "Back",
  12542. image: {
  12543. source: "./media/characters/sekvra/back.svg",
  12544. extra: 1,
  12545. bottom: 0.005
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Macro",
  12552. height: math.unit(1450, "feet"),
  12553. default: true
  12554. },
  12555. {
  12556. name: "Megamacro",
  12557. height: math.unit(15000, "feet")
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12563. {
  12564. front: {
  12565. height: math.unit(6, "feet"),
  12566. weight: math.unit(150, "lb"),
  12567. name: "Front",
  12568. image: {
  12569. source: "./media/characters/carmine/front.svg",
  12570. extra: 1,
  12571. bottom: 0.035
  12572. }
  12573. },
  12574. frontArmor: {
  12575. height: math.unit(6, "feet"),
  12576. weight: math.unit(150, "lb"),
  12577. name: "Front (Armor)",
  12578. image: {
  12579. source: "./media/characters/carmine/front-armor.svg",
  12580. extra: 1,
  12581. bottom: 0.035
  12582. }
  12583. },
  12584. },
  12585. [
  12586. {
  12587. name: "Large",
  12588. height: math.unit(1, "mile")
  12589. },
  12590. {
  12591. name: "Huge",
  12592. height: math.unit(40, "miles"),
  12593. default: true
  12594. },
  12595. {
  12596. name: "Colossal",
  12597. height: math.unit(2500, "miles")
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12603. {
  12604. front: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(150, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/elyssia/front.svg",
  12610. extra: 2201 / 2035,
  12611. bottom: 0.05
  12612. }
  12613. },
  12614. frontClothed: {
  12615. height: math.unit(6, "feet"),
  12616. weight: math.unit(150, "lb"),
  12617. name: "Front (Clothed)",
  12618. image: {
  12619. source: "./media/characters/elyssia/front-clothed.svg",
  12620. extra: 2201 / 2035,
  12621. bottom: 0.05
  12622. }
  12623. },
  12624. back: {
  12625. height: math.unit(6, "feet"),
  12626. weight: math.unit(150, "lb"),
  12627. name: "Back",
  12628. image: {
  12629. source: "./media/characters/elyssia/back.svg",
  12630. extra: 2201 / 2035,
  12631. bottom: 0.013
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Smaller",
  12638. height: math.unit(150, "feet")
  12639. },
  12640. {
  12641. name: "Standard",
  12642. height: math.unit(1400, "feet"),
  12643. default: true
  12644. },
  12645. {
  12646. name: "Distracted",
  12647. height: math.unit(15000, "feet")
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(7 + 4 / 12, "feet"),
  12656. weight: math.unit(500, "lb"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/geno-maxwell/front.svg",
  12660. extra: 2207 / 2040,
  12661. bottom: 0.015
  12662. }
  12663. },
  12664. },
  12665. [
  12666. {
  12667. name: "Micro",
  12668. height: math.unit(3, "inches")
  12669. },
  12670. {
  12671. name: "Normal",
  12672. height: math.unit(7 + 4 / 12, "feet"),
  12673. default: true
  12674. },
  12675. {
  12676. name: "Macro",
  12677. height: math.unit(220, "feet")
  12678. },
  12679. {
  12680. name: "Megamacro",
  12681. height: math.unit(11, "miles")
  12682. },
  12683. ]
  12684. ))
  12685. characterMakers.push(() => makeCharacter(
  12686. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12687. {
  12688. front: {
  12689. height: math.unit(7 + 4 / 12, "feet"),
  12690. weight: math.unit(500, "lb"),
  12691. name: "Front",
  12692. image: {
  12693. source: "./media/characters/regena-maxwell/front.svg",
  12694. extra: 3115 / 2770,
  12695. bottom: 0.02
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Normal",
  12702. height: math.unit(7 + 4 / 12, "feet"),
  12703. default: true
  12704. },
  12705. {
  12706. name: "Macro",
  12707. height: math.unit(220, "feet")
  12708. },
  12709. {
  12710. name: "Megamacro",
  12711. height: math.unit(11, "miles")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(150, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12724. extra: 860 / 690,
  12725. bottom: 0.03
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Normal",
  12732. height: math.unit(1.7, "meters"),
  12733. default: true
  12734. },
  12735. ]
  12736. ))
  12737. characterMakers.push(() => makeCharacter(
  12738. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12739. {
  12740. front: {
  12741. height: math.unit(6, "feet"),
  12742. weight: math.unit(150, "lb"),
  12743. name: "Front",
  12744. image: {
  12745. source: "./media/characters/quilly/front.svg",
  12746. extra: 890 / 776
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Gigamacro",
  12753. height: math.unit(404090, "miles"),
  12754. default: true
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12760. {
  12761. front: {
  12762. height: math.unit(7 + 8 / 12, "feet"),
  12763. weight: math.unit(350, "lb"),
  12764. name: "Front",
  12765. image: {
  12766. source: "./media/characters/tempest/front.svg",
  12767. extra: 1175 / 1086,
  12768. bottom: 0.02
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Normal",
  12775. height: math.unit(7 + 8 / 12, "feet"),
  12776. default: true
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12782. {
  12783. side: {
  12784. height: math.unit(4 + 5 / 12, "feet"),
  12785. weight: math.unit(80, "lb"),
  12786. name: "Side",
  12787. image: {
  12788. source: "./media/characters/rodger/side.svg",
  12789. extra: 1235 / 1118
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Micro",
  12796. height: math.unit(1, "inch")
  12797. },
  12798. {
  12799. name: "Normal",
  12800. height: math.unit(4 + 5 / 12, "feet"),
  12801. default: true
  12802. },
  12803. {
  12804. name: "Macro",
  12805. height: math.unit(120, "feet")
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12811. {
  12812. front: {
  12813. height: math.unit(6, "feet"),
  12814. weight: math.unit(150, "lb"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/danyel/front.svg",
  12818. extra: 1185 / 1123,
  12819. bottom: 0.05
  12820. }
  12821. },
  12822. },
  12823. [
  12824. {
  12825. name: "Shrunken",
  12826. height: math.unit(0.5, "mm")
  12827. },
  12828. {
  12829. name: "Micro",
  12830. height: math.unit(1, "mm"),
  12831. default: true
  12832. },
  12833. {
  12834. name: "Upsized",
  12835. height: math.unit(5 + 5 / 12, "feet")
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(5 + 6 / 12, "feet"),
  12844. weight: math.unit(200, "lb"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/vivian-bijoux/front.svg",
  12848. extra: 1,
  12849. bottom: 0.072
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(5 + 6 / 12, "feet"),
  12857. default: true
  12858. },
  12859. {
  12860. name: "Bad Dream",
  12861. height: math.unit(500, "feet")
  12862. },
  12863. {
  12864. name: "Nightmare",
  12865. height: math.unit(500, "miles")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6 + 1 / 12, "feet"),
  12874. weight: math.unit(260, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/zeta/front.svg",
  12878. extra: 1968 / 1889,
  12879. bottom: 0.06
  12880. }
  12881. },
  12882. back: {
  12883. height: math.unit(6 + 1 / 12, "feet"),
  12884. weight: math.unit(260, "lb"),
  12885. name: "Back",
  12886. image: {
  12887. source: "./media/characters/zeta/back.svg",
  12888. extra: 1944 / 1858,
  12889. bottom: 0.03
  12890. }
  12891. },
  12892. hand: {
  12893. height: math.unit(1.112, "feet"),
  12894. name: "Hand",
  12895. image: {
  12896. source: "./media/characters/zeta/hand.svg"
  12897. }
  12898. },
  12899. foot: {
  12900. height: math.unit(1.48, "feet"),
  12901. name: "Foot",
  12902. image: {
  12903. source: "./media/characters/zeta/foot.svg"
  12904. }
  12905. },
  12906. },
  12907. [
  12908. {
  12909. name: "Micro",
  12910. height: math.unit(6, "inches")
  12911. },
  12912. {
  12913. name: "Normal",
  12914. height: math.unit(6 + 1 / 12, "feet"),
  12915. default: true
  12916. },
  12917. {
  12918. name: "Macro",
  12919. height: math.unit(20, "feet")
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(6, "feet"),
  12928. weight: math.unit(150, "lb"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/jamie-larsen/front.svg",
  12932. extra: 962 / 933,
  12933. bottom: 0.02
  12934. }
  12935. },
  12936. back: {
  12937. height: math.unit(6, "feet"),
  12938. weight: math.unit(150, "lb"),
  12939. name: "Back",
  12940. image: {
  12941. source: "./media/characters/jamie-larsen/back.svg",
  12942. extra: 997 / 946
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Macro",
  12949. height: math.unit(28 + 7 / 12, "feet"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Macro+",
  12954. height: math.unit(180, "feet")
  12955. },
  12956. {
  12957. name: "Megamacro",
  12958. height: math.unit(10, "miles")
  12959. },
  12960. {
  12961. name: "Gigamacro",
  12962. height: math.unit(200000, "miles")
  12963. },
  12964. ]
  12965. ))
  12966. characterMakers.push(() => makeCharacter(
  12967. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12968. {
  12969. front: {
  12970. height: math.unit(6, "feet"),
  12971. weight: math.unit(120, "lb"),
  12972. name: "Front",
  12973. image: {
  12974. source: "./media/characters/vance/front.svg",
  12975. extra: 1980 / 1890,
  12976. bottom: 0.09
  12977. }
  12978. },
  12979. back: {
  12980. height: math.unit(6, "feet"),
  12981. weight: math.unit(120, "lb"),
  12982. name: "Back",
  12983. image: {
  12984. source: "./media/characters/vance/back.svg",
  12985. extra: 2081 / 1994,
  12986. bottom: 0.014
  12987. }
  12988. },
  12989. hand: {
  12990. height: math.unit(0.88, "feet"),
  12991. name: "Hand",
  12992. image: {
  12993. source: "./media/characters/vance/hand.svg"
  12994. }
  12995. },
  12996. foot: {
  12997. height: math.unit(0.64, "feet"),
  12998. name: "Foot",
  12999. image: {
  13000. source: "./media/characters/vance/foot.svg"
  13001. }
  13002. },
  13003. },
  13004. [
  13005. {
  13006. name: "Small",
  13007. height: math.unit(90, "feet"),
  13008. default: true
  13009. },
  13010. {
  13011. name: "Macro",
  13012. height: math.unit(100, "meters")
  13013. },
  13014. {
  13015. name: "Megamacro",
  13016. height: math.unit(15, "miles")
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13022. {
  13023. front: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(180, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/xochitl/front.svg",
  13029. extra: 2297 / 2261,
  13030. bottom: 0.065
  13031. }
  13032. },
  13033. back: {
  13034. height: math.unit(6, "feet"),
  13035. weight: math.unit(180, "lb"),
  13036. name: "Back",
  13037. image: {
  13038. source: "./media/characters/xochitl/back.svg",
  13039. extra: 2386 / 2354,
  13040. bottom: 0.01
  13041. }
  13042. },
  13043. foot: {
  13044. height: math.unit(6 / 5 * 1.15, "feet"),
  13045. weight: math.unit(150, "lb"),
  13046. name: "Foot",
  13047. image: {
  13048. source: "./media/characters/xochitl/foot.svg"
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Macro",
  13055. height: math.unit(80, "feet")
  13056. },
  13057. {
  13058. name: "Macro+",
  13059. height: math.unit(400, "feet"),
  13060. default: true
  13061. },
  13062. {
  13063. name: "Gigamacro",
  13064. height: math.unit(80000, "miles")
  13065. },
  13066. {
  13067. name: "Gigamacro+",
  13068. height: math.unit(400000, "miles")
  13069. },
  13070. {
  13071. name: "Teramacro",
  13072. height: math.unit(300, "AU")
  13073. },
  13074. ]
  13075. ))
  13076. characterMakers.push(() => makeCharacter(
  13077. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13078. {
  13079. front: {
  13080. height: math.unit(6, "feet"),
  13081. weight: math.unit(150, "lb"),
  13082. name: "Front",
  13083. image: {
  13084. source: "./media/characters/vincent/front.svg",
  13085. extra: 1130 / 1080,
  13086. bottom: 0.055
  13087. }
  13088. },
  13089. beak: {
  13090. height: math.unit(6 * 0.1, "feet"),
  13091. name: "Beak",
  13092. image: {
  13093. source: "./media/characters/vincent/beak.svg"
  13094. }
  13095. },
  13096. hand: {
  13097. height: math.unit(6 * 0.85, "feet"),
  13098. weight: math.unit(150, "lb"),
  13099. name: "Hand",
  13100. image: {
  13101. source: "./media/characters/vincent/hand.svg"
  13102. }
  13103. },
  13104. foot: {
  13105. height: math.unit(6 * 0.19, "feet"),
  13106. weight: math.unit(150, "lb"),
  13107. name: "Foot",
  13108. image: {
  13109. source: "./media/characters/vincent/foot.svg"
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Base",
  13116. height: math.unit(6 + 5 / 12, "feet"),
  13117. default: true
  13118. },
  13119. {
  13120. name: "Macro",
  13121. height: math.unit(300, "feet")
  13122. },
  13123. {
  13124. name: "Megamacro",
  13125. height: math.unit(2, "miles")
  13126. },
  13127. {
  13128. name: "Gigamacro",
  13129. height: math.unit(1000, "miles")
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13135. {
  13136. front: {
  13137. height: math.unit(6 + 2 / 12, "feet"),
  13138. weight: math.unit(265, "lb"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/jay/front.svg",
  13142. extra: 1510 / 1430,
  13143. bottom: 0.042
  13144. }
  13145. },
  13146. back: {
  13147. height: math.unit(6 + 2 / 12, "feet"),
  13148. weight: math.unit(265, "lb"),
  13149. name: "Back",
  13150. image: {
  13151. source: "./media/characters/jay/back.svg",
  13152. extra: 1510 / 1430,
  13153. bottom: 0.025
  13154. }
  13155. },
  13156. clothed: {
  13157. height: math.unit(6 + 2 / 12, "feet"),
  13158. weight: math.unit(265, "lb"),
  13159. name: "Front (Clothed)",
  13160. image: {
  13161. source: "./media/characters/jay/clothed.svg",
  13162. extra: 744 / 699,
  13163. bottom: 0.043
  13164. }
  13165. },
  13166. head: {
  13167. height: math.unit(1.772, "feet"),
  13168. name: "Head",
  13169. image: {
  13170. source: "./media/characters/jay/head.svg"
  13171. }
  13172. },
  13173. sizeRay: {
  13174. height: math.unit(1.331, "feet"),
  13175. name: "Size Ray",
  13176. image: {
  13177. source: "./media/characters/jay/size-ray.svg"
  13178. }
  13179. },
  13180. },
  13181. [
  13182. {
  13183. name: "Micro",
  13184. height: math.unit(1, "inch")
  13185. },
  13186. {
  13187. name: "Normal",
  13188. height: math.unit(6 + 2 / 12, "feet"),
  13189. default: true
  13190. },
  13191. {
  13192. name: "Macro",
  13193. height: math.unit(1, "mile")
  13194. },
  13195. {
  13196. name: "Megamacro",
  13197. height: math.unit(100, "miles")
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(2, "meters"),
  13206. weight: math.unit(500, "kg"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/coatl/front.svg",
  13210. extra: 3948 / 3500,
  13211. bottom: 0.082
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Normal",
  13218. height: math.unit(4, "meters")
  13219. },
  13220. {
  13221. name: "Macro",
  13222. height: math.unit(100, "meters"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Macro+",
  13227. height: math.unit(300, "meters")
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(3, "gigameters")
  13232. },
  13233. {
  13234. name: "Megamacro+",
  13235. height: math.unit(300, "terameters")
  13236. },
  13237. {
  13238. name: "Megamacro++",
  13239. height: math.unit(3, "lightyears")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(6, "feet"),
  13248. weight: math.unit(50, "kg"),
  13249. name: "front",
  13250. image: {
  13251. source: "./media/characters/shiroryu/front.svg",
  13252. extra: 1990 / 1935
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Mortal Mingling",
  13259. height: math.unit(3, "meters")
  13260. },
  13261. {
  13262. name: "Kaiju-ish",
  13263. height: math.unit(250, "meters")
  13264. },
  13265. {
  13266. name: "Somewhat Godly",
  13267. height: math.unit(400, "km"),
  13268. default: true
  13269. },
  13270. {
  13271. name: "Planetary",
  13272. height: math.unit(300, "megameters")
  13273. },
  13274. {
  13275. name: "Galaxy-dwarfing",
  13276. height: math.unit(450, "kiloparsecs")
  13277. },
  13278. {
  13279. name: "Universe Eater",
  13280. height: math.unit(150, "gigaparsecs")
  13281. },
  13282. {
  13283. name: "Almost Immeasurable",
  13284. height: math.unit(1.3e266, "yottaparsecs")
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(150, "lb"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/umeko/front.svg",
  13297. extra: 1,
  13298. bottom: 0.019
  13299. }
  13300. },
  13301. frontArmored: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(150, "lb"),
  13304. name: "Front (Armored)",
  13305. image: {
  13306. source: "./media/characters/umeko/front-armored.svg",
  13307. extra: 1,
  13308. bottom: 0.021
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Macro",
  13315. height: math.unit(220, "feet"),
  13316. default: true
  13317. },
  13318. {
  13319. name: "Guardian Dragon",
  13320. height: math.unit(50, "miles")
  13321. },
  13322. {
  13323. name: "Cosmic",
  13324. height: math.unit(800000, "miles")
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(6, "feet"),
  13333. weight: math.unit(150, "lb"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/cassidy/front.svg",
  13337. extra: 1,
  13338. bottom: 0.043
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Canon Height",
  13345. height: math.unit(120, "feet"),
  13346. default: true
  13347. },
  13348. {
  13349. name: "Macro+",
  13350. height: math.unit(400, "feet")
  13351. },
  13352. {
  13353. name: "Macro++",
  13354. height: math.unit(4000, "feet")
  13355. },
  13356. {
  13357. name: "Megamacro",
  13358. height: math.unit(3, "miles")
  13359. },
  13360. ]
  13361. ))
  13362. characterMakers.push(() => makeCharacter(
  13363. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13364. {
  13365. front: {
  13366. height: math.unit(6, "feet"),
  13367. weight: math.unit(150, "lb"),
  13368. name: "Front",
  13369. image: {
  13370. source: "./media/characters/isaac/front.svg",
  13371. extra: 896 / 815,
  13372. bottom: 0.11
  13373. }
  13374. },
  13375. },
  13376. [
  13377. {
  13378. name: "Human Size",
  13379. height: math.unit(8, "feet"),
  13380. default: true
  13381. },
  13382. {
  13383. name: "Macro",
  13384. height: math.unit(400, "feet")
  13385. },
  13386. {
  13387. name: "Megamacro",
  13388. height: math.unit(50, "miles")
  13389. },
  13390. {
  13391. name: "Canon Height",
  13392. height: math.unit(200, "AU")
  13393. },
  13394. ]
  13395. ))
  13396. characterMakers.push(() => makeCharacter(
  13397. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13398. {
  13399. front: {
  13400. height: math.unit(6, "feet"),
  13401. weight: math.unit(72, "kg"),
  13402. name: "Front",
  13403. image: {
  13404. source: "./media/characters/sleekit/front.svg",
  13405. extra: 4693 / 4487,
  13406. bottom: 0.012
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Minimum Height",
  13413. height: math.unit(10, "meters")
  13414. },
  13415. {
  13416. name: "Smaller",
  13417. height: math.unit(25, "meters")
  13418. },
  13419. {
  13420. name: "Larger",
  13421. height: math.unit(38, "meters"),
  13422. default: true
  13423. },
  13424. {
  13425. name: "Maximum height",
  13426. height: math.unit(100, "meters")
  13427. },
  13428. ]
  13429. ))
  13430. characterMakers.push(() => makeCharacter(
  13431. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13432. {
  13433. front: {
  13434. height: math.unit(6, "feet"),
  13435. weight: math.unit(150, "lb"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/nillia/front.svg",
  13439. extra: 2195 / 2037,
  13440. bottom: 0.005
  13441. }
  13442. },
  13443. back: {
  13444. height: math.unit(6, "feet"),
  13445. weight: math.unit(150, "lb"),
  13446. name: "Back",
  13447. image: {
  13448. source: "./media/characters/nillia/back.svg",
  13449. extra: 2195 / 2037,
  13450. bottom: 0.005
  13451. }
  13452. },
  13453. },
  13454. [
  13455. {
  13456. name: "Canon Height",
  13457. height: math.unit(489, "feet"),
  13458. default: true
  13459. }
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13464. {
  13465. front: {
  13466. height: math.unit(6, "feet"),
  13467. weight: math.unit(150, "lb"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/mesmyriza/front.svg",
  13471. extra: 2067 / 1784,
  13472. bottom: 0.035
  13473. }
  13474. },
  13475. foot: {
  13476. height: math.unit(6 / (250 / 35), "feet"),
  13477. name: "Foot",
  13478. image: {
  13479. source: "./media/characters/mesmyriza/foot.svg"
  13480. }
  13481. },
  13482. },
  13483. [
  13484. {
  13485. name: "Macro",
  13486. height: math.unit(457, "meters"),
  13487. default: true
  13488. },
  13489. {
  13490. name: "Megamacro",
  13491. height: math.unit(8, "megameters")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13497. {
  13498. front: {
  13499. height: math.unit(6, "feet"),
  13500. weight: math.unit(250, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/saudade/front.svg",
  13504. extra: 1172 / 1139,
  13505. bottom: 0.035
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Micro",
  13512. height: math.unit(3, "inches")
  13513. },
  13514. {
  13515. name: "Normal",
  13516. height: math.unit(6, "feet"),
  13517. default: true
  13518. },
  13519. {
  13520. name: "Macro",
  13521. height: math.unit(50, "feet")
  13522. },
  13523. {
  13524. name: "Megamacro",
  13525. height: math.unit(2800, "feet")
  13526. },
  13527. ]
  13528. ))
  13529. characterMakers.push(() => makeCharacter(
  13530. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13531. {
  13532. front: {
  13533. height: math.unit(5 + 4 / 12, "feet"),
  13534. weight: math.unit(100, "lb"),
  13535. name: "Front",
  13536. image: {
  13537. source: "./media/characters/keireer/front.svg",
  13538. extra: 716 / 666,
  13539. bottom: 0.05
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Normal",
  13546. height: math.unit(5 + 4 / 12, "feet"),
  13547. default: true
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13553. {
  13554. front: {
  13555. height: math.unit(6, "feet"),
  13556. weight: math.unit(90, "kg"),
  13557. name: "Front",
  13558. image: {
  13559. source: "./media/characters/mirja/front.svg",
  13560. extra: 1789 / 1683,
  13561. bottom: 0.05
  13562. }
  13563. },
  13564. frontDressed: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(90, "lb"),
  13567. name: "Front (Dressed)",
  13568. image: {
  13569. source: "./media/characters/mirja/front-dressed.svg",
  13570. extra: 1789 / 1683,
  13571. bottom: 0.05
  13572. }
  13573. },
  13574. back: {
  13575. height: math.unit(6, "feet"),
  13576. weight: math.unit(90, "lb"),
  13577. name: "Back",
  13578. image: {
  13579. source: "./media/characters/mirja/back.svg",
  13580. extra: 953 / 917,
  13581. bottom: 0.017
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "\"Incognito\"",
  13588. height: math.unit(3, "meters")
  13589. },
  13590. {
  13591. name: "Strolling Size",
  13592. height: math.unit(15, "km")
  13593. },
  13594. {
  13595. name: "Larger Strolling Size",
  13596. height: math.unit(400, "km")
  13597. },
  13598. {
  13599. name: "Preferred Size",
  13600. height: math.unit(5000, "km")
  13601. },
  13602. {
  13603. name: "True Size",
  13604. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13605. default: true
  13606. },
  13607. ]
  13608. ))
  13609. characterMakers.push(() => makeCharacter(
  13610. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13611. {
  13612. front: {
  13613. height: math.unit(15, "feet"),
  13614. weight: math.unit(880, "kg"),
  13615. name: "Front",
  13616. image: {
  13617. source: "./media/characters/nightraver/front.svg",
  13618. extra: 2444 / 2160,
  13619. bottom: 0.027
  13620. }
  13621. },
  13622. back: {
  13623. height: math.unit(15, "feet"),
  13624. weight: math.unit(880, "kg"),
  13625. name: "Back",
  13626. image: {
  13627. source: "./media/characters/nightraver/back.svg",
  13628. extra: 2309 / 2180,
  13629. bottom: 0.005
  13630. }
  13631. },
  13632. sole: {
  13633. height: math.unit(2.878, "feet"),
  13634. name: "Sole",
  13635. image: {
  13636. source: "./media/characters/nightraver/sole.svg"
  13637. }
  13638. },
  13639. foot: {
  13640. height: math.unit(2.285, "feet"),
  13641. name: "Foot",
  13642. image: {
  13643. source: "./media/characters/nightraver/foot.svg"
  13644. }
  13645. },
  13646. maw: {
  13647. height: math.unit(2.67, "feet"),
  13648. name: "Maw",
  13649. image: {
  13650. source: "./media/characters/nightraver/maw.svg"
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Micro",
  13657. height: math.unit(1, "cm")
  13658. },
  13659. {
  13660. name: "Normal",
  13661. height: math.unit(15, "feet"),
  13662. default: true
  13663. },
  13664. {
  13665. name: "Macro",
  13666. height: math.unit(300, "feet")
  13667. },
  13668. {
  13669. name: "Megamacro",
  13670. height: math.unit(300, "miles")
  13671. },
  13672. {
  13673. name: "Gigamacro",
  13674. height: math.unit(10000, "miles")
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13680. {
  13681. side: {
  13682. height: math.unit(2, "inches"),
  13683. weight: math.unit(5, "grams"),
  13684. name: "Side",
  13685. image: {
  13686. source: "./media/characters/arc/side.svg"
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Micro",
  13693. height: math.unit(2, "inches"),
  13694. default: true
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13700. {
  13701. front: {
  13702. height: math.unit(1.1938, "meters"),
  13703. weight: math.unit(54, "kg"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/nebula-shahar/front.svg",
  13707. extra: 1642 / 1436,
  13708. bottom: 0.06
  13709. }
  13710. },
  13711. },
  13712. [
  13713. {
  13714. name: "Megamicro",
  13715. height: math.unit(0.3, "mm")
  13716. },
  13717. {
  13718. name: "Micro",
  13719. height: math.unit(3, "cm")
  13720. },
  13721. {
  13722. name: "Normal",
  13723. height: math.unit(138, "cm"),
  13724. default: true
  13725. },
  13726. {
  13727. name: "Macro",
  13728. height: math.unit(30, "m")
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(5.24, "feet"),
  13737. weight: math.unit(150, "lb"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/shayla/front.svg",
  13741. extra: 1512 / 1414,
  13742. bottom: 0.01
  13743. }
  13744. },
  13745. back: {
  13746. height: math.unit(5.24, "feet"),
  13747. weight: math.unit(150, "lb"),
  13748. name: "Back",
  13749. image: {
  13750. source: "./media/characters/shayla/back.svg",
  13751. extra: 1512 / 1414
  13752. }
  13753. },
  13754. hand: {
  13755. height: math.unit(0.7781496062992126, "feet"),
  13756. name: "Hand",
  13757. image: {
  13758. source: "./media/characters/shayla/hand.svg"
  13759. }
  13760. },
  13761. foot: {
  13762. height: math.unit(1.4206036745406823, "feet"),
  13763. name: "Foot",
  13764. image: {
  13765. source: "./media/characters/shayla/foot.svg"
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Micro",
  13772. height: math.unit(0.32, "feet")
  13773. },
  13774. {
  13775. name: "Normal",
  13776. height: math.unit(5.24, "feet"),
  13777. default: true
  13778. },
  13779. {
  13780. name: "Macro",
  13781. height: math.unit(492.12, "feet")
  13782. },
  13783. {
  13784. name: "Megamacro",
  13785. height: math.unit(186.41, "miles")
  13786. },
  13787. ]
  13788. ))
  13789. characterMakers.push(() => makeCharacter(
  13790. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13791. {
  13792. front: {
  13793. height: math.unit(2.2, "m"),
  13794. weight: math.unit(120, "kg"),
  13795. name: "Front",
  13796. image: {
  13797. source: "./media/characters/pia-jr/front.svg",
  13798. extra: 1000 / 970,
  13799. bottom: 0.035
  13800. }
  13801. },
  13802. hand: {
  13803. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13804. name: "Hand",
  13805. image: {
  13806. source: "./media/characters/pia-jr/hand.svg"
  13807. }
  13808. },
  13809. paw: {
  13810. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13811. name: "Paw",
  13812. image: {
  13813. source: "./media/characters/pia-jr/paw.svg"
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "Micro",
  13820. height: math.unit(1.2, "cm")
  13821. },
  13822. {
  13823. name: "Normal",
  13824. height: math.unit(2.2, "m"),
  13825. default: true
  13826. },
  13827. {
  13828. name: "Macro",
  13829. height: math.unit(180, "m")
  13830. },
  13831. {
  13832. name: "Megamacro",
  13833. height: math.unit(420, "km")
  13834. },
  13835. ]
  13836. ))
  13837. characterMakers.push(() => makeCharacter(
  13838. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13839. {
  13840. front: {
  13841. height: math.unit(2, "m"),
  13842. weight: math.unit(115, "kg"),
  13843. name: "Front",
  13844. image: {
  13845. source: "./media/characters/pia-sr/front.svg",
  13846. extra: 760 / 730,
  13847. bottom: 0.015
  13848. }
  13849. },
  13850. back: {
  13851. height: math.unit(2, "m"),
  13852. weight: math.unit(115, "kg"),
  13853. name: "Back",
  13854. image: {
  13855. source: "./media/characters/pia-sr/back.svg",
  13856. extra: 760 / 730,
  13857. bottom: 0.01
  13858. }
  13859. },
  13860. hand: {
  13861. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13862. name: "Hand",
  13863. image: {
  13864. source: "./media/characters/pia-sr/hand.svg"
  13865. }
  13866. },
  13867. foot: {
  13868. height: math.unit(1.83, "feet"),
  13869. name: "Foot",
  13870. image: {
  13871. source: "./media/characters/pia-sr/foot.svg"
  13872. }
  13873. },
  13874. },
  13875. [
  13876. {
  13877. name: "Micro",
  13878. height: math.unit(88, "mm")
  13879. },
  13880. {
  13881. name: "Normal",
  13882. height: math.unit(2, "m"),
  13883. default: true
  13884. },
  13885. {
  13886. name: "Macro",
  13887. height: math.unit(200, "m")
  13888. },
  13889. {
  13890. name: "Megamacro",
  13891. height: math.unit(420, "km")
  13892. },
  13893. ]
  13894. ))
  13895. characterMakers.push(() => makeCharacter(
  13896. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13897. {
  13898. front: {
  13899. height: math.unit(8 + 2 / 12, "feet"),
  13900. weight: math.unit(300, "lb"),
  13901. name: "Front",
  13902. image: {
  13903. source: "./media/characters/kibibyte/front.svg",
  13904. extra: 2221 / 2098,
  13905. bottom: 0.04
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Normal",
  13912. height: math.unit(8 + 2 / 12, "feet"),
  13913. default: true
  13914. },
  13915. {
  13916. name: "Socialable Macro",
  13917. height: math.unit(50, "feet")
  13918. },
  13919. {
  13920. name: "Macro",
  13921. height: math.unit(300, "feet")
  13922. },
  13923. {
  13924. name: "Megamacro",
  13925. height: math.unit(500, "miles")
  13926. },
  13927. ]
  13928. ))
  13929. characterMakers.push(() => makeCharacter(
  13930. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13931. {
  13932. front: {
  13933. height: math.unit(6, "feet"),
  13934. weight: math.unit(150, "lb"),
  13935. name: "Front",
  13936. image: {
  13937. source: "./media/characters/felix/front.svg",
  13938. extra: 762 / 722,
  13939. bottom: 0.02
  13940. }
  13941. },
  13942. frontClothed: {
  13943. height: math.unit(6, "feet"),
  13944. weight: math.unit(150, "lb"),
  13945. name: "Front (Clothed)",
  13946. image: {
  13947. source: "./media/characters/felix/front-clothed.svg",
  13948. extra: 762 / 722,
  13949. bottom: 0.02
  13950. }
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "Normal",
  13956. height: math.unit(6 + 8 / 12, "feet"),
  13957. default: true
  13958. },
  13959. {
  13960. name: "Macro",
  13961. height: math.unit(2600, "feet")
  13962. },
  13963. {
  13964. name: "Megamacro",
  13965. height: math.unit(450, "miles")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(6 + 1 / 12, "feet"),
  13974. weight: math.unit(250, "lb"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/tobo/front.svg",
  13978. extra: 608 / 586,
  13979. bottom: 0.023
  13980. }
  13981. },
  13982. back: {
  13983. height: math.unit(6 + 1 / 12, "feet"),
  13984. weight: math.unit(250, "lb"),
  13985. name: "Back",
  13986. image: {
  13987. source: "./media/characters/tobo/back.svg",
  13988. extra: 608 / 586
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Nano",
  13995. height: math.unit(2, "nm")
  13996. },
  13997. {
  13998. name: "Megamicro",
  13999. height: math.unit(0.1, "mm")
  14000. },
  14001. {
  14002. name: "Micro",
  14003. height: math.unit(1, "inch"),
  14004. default: true
  14005. },
  14006. {
  14007. name: "Human-sized",
  14008. height: math.unit(6 + 1 / 12, "feet")
  14009. },
  14010. {
  14011. name: "Macro",
  14012. height: math.unit(250, "feet")
  14013. },
  14014. {
  14015. name: "Megamacro",
  14016. height: math.unit(75, "miles")
  14017. },
  14018. {
  14019. name: "Texas-sized",
  14020. height: math.unit(750, "miles")
  14021. },
  14022. {
  14023. name: "Teramacro",
  14024. height: math.unit(50000, "miles")
  14025. },
  14026. ]
  14027. ))
  14028. characterMakers.push(() => makeCharacter(
  14029. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14030. {
  14031. front: {
  14032. height: math.unit(6, "feet"),
  14033. weight: math.unit(269, "lb"),
  14034. name: "Front",
  14035. image: {
  14036. source: "./media/characters/danny-kapowsky/front.svg",
  14037. extra: 766 / 736,
  14038. bottom: 0.044
  14039. }
  14040. },
  14041. back: {
  14042. height: math.unit(6, "feet"),
  14043. weight: math.unit(269, "lb"),
  14044. name: "Back",
  14045. image: {
  14046. source: "./media/characters/danny-kapowsky/back.svg",
  14047. extra: 797 / 760,
  14048. bottom: 0.025
  14049. }
  14050. },
  14051. },
  14052. [
  14053. {
  14054. name: "Macro",
  14055. height: math.unit(150, "feet"),
  14056. default: true
  14057. },
  14058. {
  14059. name: "Macro+",
  14060. height: math.unit(200, "feet")
  14061. },
  14062. {
  14063. name: "Macro++",
  14064. height: math.unit(300, "feet")
  14065. },
  14066. {
  14067. name: "Macro+++",
  14068. height: math.unit(400, "feet")
  14069. },
  14070. ]
  14071. ))
  14072. characterMakers.push(() => makeCharacter(
  14073. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14074. {
  14075. side: {
  14076. height: math.unit(6, "feet"),
  14077. weight: math.unit(170, "lb"),
  14078. name: "Side",
  14079. image: {
  14080. source: "./media/characters/finn/side.svg",
  14081. extra: 1953 / 1807,
  14082. bottom: 0.057
  14083. }
  14084. },
  14085. },
  14086. [
  14087. {
  14088. name: "Megamacro",
  14089. height: math.unit(14445, "feet"),
  14090. default: true
  14091. },
  14092. ]
  14093. ))
  14094. characterMakers.push(() => makeCharacter(
  14095. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14096. {
  14097. front: {
  14098. height: math.unit(5 + 6 / 12, "feet"),
  14099. weight: math.unit(125, "lb"),
  14100. name: "Front",
  14101. image: {
  14102. source: "./media/characters/roy/front.svg",
  14103. extra: 1,
  14104. bottom: 0.11
  14105. }
  14106. },
  14107. },
  14108. [
  14109. {
  14110. name: "Micro",
  14111. height: math.unit(3, "inches"),
  14112. default: true
  14113. },
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(5 + 6 / 12, "feet")
  14117. },
  14118. {
  14119. name: "Lesser Macro",
  14120. height: math.unit(60, "feet")
  14121. },
  14122. {
  14123. name: "Greater Macro",
  14124. height: math.unit(120, "feet")
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(6, "feet"),
  14133. weight: math.unit(100, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/aevsivs/front.svg",
  14137. extra: 1,
  14138. bottom: 0.03
  14139. }
  14140. },
  14141. back: {
  14142. height: math.unit(6, "feet"),
  14143. weight: math.unit(100, "lb"),
  14144. name: "Back",
  14145. image: {
  14146. source: "./media/characters/aevsivs/back.svg"
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Micro",
  14153. height: math.unit(2, "inches"),
  14154. default: true
  14155. },
  14156. {
  14157. name: "Normal",
  14158. height: math.unit(5, "feet")
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14164. {
  14165. front: {
  14166. height: math.unit(5 + 7 / 12, "feet"),
  14167. weight: math.unit(159, "lb"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/hildegard/front.svg",
  14171. extra: 289 / 269,
  14172. bottom: 7.63 / 297.8
  14173. }
  14174. },
  14175. back: {
  14176. height: math.unit(5 + 7 / 12, "feet"),
  14177. weight: math.unit(159, "lb"),
  14178. name: "Back",
  14179. image: {
  14180. source: "./media/characters/hildegard/back.svg",
  14181. extra: 280 / 260,
  14182. bottom: 2.3 / 282
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Normal",
  14189. height: math.unit(5 + 7 / 12, "feet"),
  14190. default: true
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14196. {
  14197. bernard: {
  14198. height: math.unit(2 + 7 / 12, "feet"),
  14199. weight: math.unit(66, "lb"),
  14200. name: "Bernard",
  14201. rename: true,
  14202. image: {
  14203. source: "./media/characters/bernard-wilder/bernard.svg",
  14204. extra: 192 / 128,
  14205. bottom: 0.05
  14206. }
  14207. },
  14208. wilder: {
  14209. height: math.unit(5 + 8 / 12, "feet"),
  14210. weight: math.unit(143, "lb"),
  14211. name: "Wilder",
  14212. rename: true,
  14213. image: {
  14214. source: "./media/characters/bernard-wilder/wilder.svg",
  14215. extra: 361 / 312,
  14216. bottom: 0.02
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Normal",
  14223. height: math.unit(2 + 7 / 12, "feet"),
  14224. default: true
  14225. },
  14226. ]
  14227. ))
  14228. characterMakers.push(() => makeCharacter(
  14229. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14230. {
  14231. anthro: {
  14232. height: math.unit(6 + 1 / 12, "feet"),
  14233. weight: math.unit(155, "lb"),
  14234. name: "Anthro",
  14235. image: {
  14236. source: "./media/characters/hearth/anthro.svg",
  14237. extra: 260 / 250,
  14238. bottom: 0.02
  14239. }
  14240. },
  14241. feral: {
  14242. height: math.unit(3.78, "feet"),
  14243. weight: math.unit(35, "kg"),
  14244. name: "Feral",
  14245. image: {
  14246. source: "./media/characters/hearth/feral.svg",
  14247. extra: 153 / 135,
  14248. bottom: 0.03
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(6 + 1 / 12, "feet"),
  14256. default: true
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(6, "feet"),
  14265. weight: math.unit(182, "lb"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/ingrid/front.svg",
  14269. extra: 294 / 268,
  14270. bottom: 0.027
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Normal",
  14277. height: math.unit(6, "feet"),
  14278. default: true
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14284. {
  14285. eevee: {
  14286. height: math.unit(2 + 10 / 12, "feet"),
  14287. weight: math.unit(86, "lb"),
  14288. name: "Malgam",
  14289. image: {
  14290. source: "./media/characters/malgam/eevee.svg",
  14291. extra: 218 / 180,
  14292. bottom: 0.2
  14293. }
  14294. },
  14295. sylveon: {
  14296. height: math.unit(4, "feet"),
  14297. weight: math.unit(101, "lb"),
  14298. name: "Future Malgam",
  14299. rename: true,
  14300. image: {
  14301. source: "./media/characters/malgam/sylveon.svg",
  14302. extra: 371 / 325,
  14303. bottom: 0.015
  14304. }
  14305. },
  14306. gigantamax: {
  14307. height: math.unit(50, "feet"),
  14308. name: "Gigantamax Malgam",
  14309. rename: true,
  14310. image: {
  14311. source: "./media/characters/malgam/gigantamax.svg"
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Normal",
  14318. height: math.unit(2 + 10 / 12, "feet"),
  14319. default: true
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(5 + 11 / 12, "feet"),
  14328. weight: math.unit(188, "lb"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/fleur/front.svg",
  14332. extra: 309 / 283,
  14333. bottom: 0.007
  14334. }
  14335. },
  14336. },
  14337. [
  14338. {
  14339. name: "Normal",
  14340. height: math.unit(5 + 11 / 12, "feet"),
  14341. default: true
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(5 + 4 / 12, "feet"),
  14350. weight: math.unit(122, "lb"),
  14351. name: "Front",
  14352. image: {
  14353. source: "./media/characters/jude/front.svg",
  14354. extra: 288 / 273,
  14355. bottom: 0.03
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(5 + 4 / 12, "feet"),
  14363. default: true
  14364. },
  14365. ]
  14366. ))
  14367. characterMakers.push(() => makeCharacter(
  14368. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14369. {
  14370. front: {
  14371. height: math.unit(5 + 11 / 12, "feet"),
  14372. weight: math.unit(190, "lb"),
  14373. name: "Front",
  14374. image: {
  14375. source: "./media/characters/seara/front.svg",
  14376. extra: 1,
  14377. bottom: 0.05
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(5 + 11 / 12, "feet"),
  14385. default: true
  14386. },
  14387. ]
  14388. ))
  14389. characterMakers.push(() => makeCharacter(
  14390. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14391. {
  14392. front: {
  14393. height: math.unit(16 + 5 / 12, "feet"),
  14394. weight: math.unit(524, "lb"),
  14395. name: "Front",
  14396. image: {
  14397. source: "./media/characters/caspian/front.svg",
  14398. extra: 1,
  14399. bottom: 0.04
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(16 + 5 / 12, "feet"),
  14407. default: true
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(5 + 7 / 12, "feet"),
  14416. weight: math.unit(170, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/mika/front.svg",
  14420. extra: 1,
  14421. bottom: 0.016
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(5 + 7 / 12, "feet"),
  14429. default: true
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(6 + 2 / 12, "feet"),
  14438. weight: math.unit(268, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/sol/front.svg",
  14442. extra: 247 / 231,
  14443. bottom: 0.05
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Normal",
  14450. height: math.unit(6 + 2 / 12, "feet"),
  14451. default: true
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14457. {
  14458. buizel: {
  14459. height: math.unit(2 + 5 / 12, "feet"),
  14460. weight: math.unit(87, "lb"),
  14461. name: "Buizel",
  14462. image: {
  14463. source: "./media/characters/umiko/buizel.svg",
  14464. extra: 172 / 157,
  14465. bottom: 0.01
  14466. }
  14467. },
  14468. floatzel: {
  14469. height: math.unit(5 + 9 / 12, "feet"),
  14470. weight: math.unit(250, "lb"),
  14471. name: "Floatzel",
  14472. image: {
  14473. source: "./media/characters/umiko/floatzel.svg",
  14474. extra: 262 / 248
  14475. }
  14476. },
  14477. },
  14478. [
  14479. {
  14480. name: "Normal",
  14481. height: math.unit(2 + 5 / 12, "feet"),
  14482. default: true
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(6 + 2 / 12, "feet"),
  14491. weight: math.unit(146, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/iliac/front.svg",
  14495. extra: 389 / 365,
  14496. bottom: 0.035
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(6 + 2 / 12, "feet"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14510. {
  14511. front: {
  14512. height: math.unit(6, "feet"),
  14513. weight: math.unit(170, "lb"),
  14514. name: "Front",
  14515. image: {
  14516. source: "./media/characters/topaz/front.svg",
  14517. extra: 317 / 303,
  14518. bottom: 0.055
  14519. }
  14520. },
  14521. },
  14522. [
  14523. {
  14524. name: "Normal",
  14525. height: math.unit(6, "feet"),
  14526. default: true
  14527. },
  14528. ]
  14529. ))
  14530. characterMakers.push(() => makeCharacter(
  14531. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14532. {
  14533. front: {
  14534. height: math.unit(5 + 11 / 12, "feet"),
  14535. weight: math.unit(144, "lb"),
  14536. name: "Front",
  14537. image: {
  14538. source: "./media/characters/gabriel/front.svg",
  14539. extra: 285 / 262,
  14540. bottom: 0.004
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Normal",
  14547. height: math.unit(5 + 11 / 12, "feet"),
  14548. default: true
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14554. {
  14555. side: {
  14556. height: math.unit(6 + 5 / 12, "feet"),
  14557. weight: math.unit(300, "lb"),
  14558. name: "Side",
  14559. image: {
  14560. source: "./media/characters/tempest-suicune/side.svg",
  14561. extra: 195 / 154,
  14562. bottom: 0.04
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(6 + 5 / 12, "feet"),
  14570. default: true
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(7 + 2 / 12, "feet"),
  14579. weight: math.unit(322, "lb"),
  14580. name: "Front",
  14581. image: {
  14582. source: "./media/characters/vulcan/front.svg",
  14583. extra: 154 / 147,
  14584. bottom: 0.04
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Normal",
  14591. height: math.unit(7 + 2 / 12, "feet"),
  14592. default: true
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14598. {
  14599. front: {
  14600. height: math.unit(5 + 10 / 12, "feet"),
  14601. weight: math.unit(264, "lb"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/gault/front.svg",
  14605. extra: 161 / 140,
  14606. bottom: 0.028
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(5 + 10 / 12, "feet"),
  14614. default: true
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(6, "feet"),
  14623. weight: math.unit(150, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/shard/front.svg",
  14627. extra: 273 / 238,
  14628. bottom: 0.02
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(3 + 6 / 12, "feet"),
  14636. default: true
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(5 + 11 / 12, "feet"),
  14645. weight: math.unit(146, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/ashe/front.svg",
  14649. extra: 400 / 373,
  14650. bottom: 0.01
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(5 + 11 / 12, "feet"),
  14658. default: true
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14664. {
  14665. front: {
  14666. height: math.unit(5 + 5 / 12, "feet"),
  14667. weight: math.unit(135, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/beatrix/front.svg",
  14671. extra: 392 / 379,
  14672. bottom: 0.01
  14673. }
  14674. },
  14675. },
  14676. [
  14677. {
  14678. name: "Normal",
  14679. height: math.unit(6, "feet"),
  14680. default: true
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14686. {
  14687. front: {
  14688. height: math.unit(6, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/ignatius/front.svg",
  14693. extra: 245 / 222,
  14694. bottom: 0.01
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(5 + 5 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(6 + 2 / 12, "feet"),
  14711. weight: math.unit(138, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/mei-li/front.svg",
  14715. extra: 237 / 229,
  14716. bottom: 0.03
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(6 + 2 / 12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(2 + 4 / 12, "feet"),
  14733. weight: math.unit(62, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/puru/front.svg",
  14737. extra: 206 / 149,
  14738. bottom: 0.06
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(2 + 4 / 12, "feet"),
  14746. default: true
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14752. {
  14753. taur: {
  14754. height: math.unit(11, "feet"),
  14755. weight: math.unit(500, "lb"),
  14756. name: "Taur",
  14757. image: {
  14758. source: "./media/characters/kee/taur.svg",
  14759. extra: 1,
  14760. bottom: 0.04
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(11, "feet"),
  14768. default: true
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14774. {
  14775. anthro: {
  14776. height: math.unit(7, "feet"),
  14777. weight: math.unit(190, "lb"),
  14778. name: "Anthro",
  14779. image: {
  14780. source: "./media/characters/cobalt-dracha/anthro.svg",
  14781. extra: 231 / 225,
  14782. bottom: 0.04
  14783. }
  14784. },
  14785. feral: {
  14786. height: math.unit(9 + 7 / 12, "feet"),
  14787. weight: math.unit(294, "lb"),
  14788. name: "Feral",
  14789. image: {
  14790. source: "./media/characters/cobalt-dracha/feral.svg",
  14791. extra: 692 / 633,
  14792. bottom: 0.05
  14793. }
  14794. },
  14795. },
  14796. [
  14797. {
  14798. name: "Normal",
  14799. height: math.unit(7, "feet"),
  14800. default: true
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14806. {
  14807. fallen: {
  14808. height: math.unit(11 + 8 / 12, "feet"),
  14809. weight: math.unit(485, "lb"),
  14810. name: "Java (Fallen)",
  14811. rename: true,
  14812. image: {
  14813. source: "./media/characters/java/fallen.svg",
  14814. extra: 226 / 208,
  14815. bottom: 0.005
  14816. }
  14817. },
  14818. godkin: {
  14819. height: math.unit(10 + 6 / 12, "feet"),
  14820. weight: math.unit(328, "lb"),
  14821. name: "Java (Godkin)",
  14822. rename: true,
  14823. image: {
  14824. source: "./media/characters/java/godkin.svg",
  14825. extra: 270 / 262,
  14826. bottom: 0.02
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(11 + 8 / 12, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14840. {
  14841. front: {
  14842. height: math.unit(7 + 8 / 12, "feet"),
  14843. weight: math.unit(320, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/skoll/front.svg",
  14847. extra: 232 / 220,
  14848. bottom: 0.02
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Normal",
  14855. height: math.unit(7 + 8 / 12, "feet"),
  14856. default: true
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(5 + 9 / 12, "feet"),
  14865. weight: math.unit(170, "lb"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/purna/front.svg",
  14869. extra: 239 / 229,
  14870. bottom: 0.01
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(5 + 9 / 12, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(5 + 9 / 12, "feet"),
  14887. weight: math.unit(142, "lb"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/kuva/front.svg",
  14891. extra: 281 / 271,
  14892. bottom: 0.006
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Normal",
  14899. height: math.unit(5 + 9 / 12, "feet"),
  14900. default: true
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14906. {
  14907. anthro: {
  14908. height: math.unit(9 + 2 / 12, "feet"),
  14909. weight: math.unit(270, "lb"),
  14910. name: "Anthro",
  14911. image: {
  14912. source: "./media/characters/embra/anthro.svg",
  14913. extra: 200 / 187,
  14914. bottom: 0.02
  14915. }
  14916. },
  14917. feral: {
  14918. height: math.unit(18 + 8 / 12, "feet"),
  14919. weight: math.unit(576, "lb"),
  14920. name: "Feral",
  14921. image: {
  14922. source: "./media/characters/embra/feral.svg",
  14923. extra: 152 / 137,
  14924. bottom: 0.037
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Normal",
  14931. height: math.unit(9 + 2 / 12, "feet"),
  14932. default: true
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14938. {
  14939. anthro: {
  14940. height: math.unit(10 + 9 / 12, "feet"),
  14941. weight: math.unit(224, "lb"),
  14942. name: "Anthro",
  14943. image: {
  14944. source: "./media/characters/grottos/anthro.svg",
  14945. extra: 350 / 332,
  14946. bottom: 0.045
  14947. }
  14948. },
  14949. feral: {
  14950. height: math.unit(20 + 7 / 12, "feet"),
  14951. weight: math.unit(629, "lb"),
  14952. name: "Feral",
  14953. image: {
  14954. source: "./media/characters/grottos/feral.svg",
  14955. extra: 207 / 190,
  14956. bottom: 0.05
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Normal",
  14963. height: math.unit(10 + 9 / 12, "feet"),
  14964. default: true
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14970. {
  14971. anthro: {
  14972. height: math.unit(9 + 6 / 12, "feet"),
  14973. weight: math.unit(298, "lb"),
  14974. name: "Anthro",
  14975. image: {
  14976. source: "./media/characters/frifna/anthro.svg",
  14977. extra: 282 / 269,
  14978. bottom: 0.015
  14979. }
  14980. },
  14981. feral: {
  14982. height: math.unit(16 + 2 / 12, "feet"),
  14983. weight: math.unit(624, "lb"),
  14984. name: "Feral",
  14985. image: {
  14986. source: "./media/characters/frifna/feral.svg"
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(9 + 6 / 12, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(6 + 2 / 12, "feet"),
  15003. weight: math.unit(168, "lb"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/elise/front.svg",
  15007. extra: 276 / 271
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(6 + 2 / 12, "feet"),
  15015. default: true
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(5 + 10 / 12, "feet"),
  15024. weight: math.unit(210, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/glade/front.svg",
  15028. extra: 258 / 247,
  15029. bottom: 0.008
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Normal",
  15036. height: math.unit(5 + 10 / 12, "feet"),
  15037. default: true
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15043. {
  15044. front: {
  15045. height: math.unit(5 + 10 / 12, "feet"),
  15046. weight: math.unit(129, "lb"),
  15047. name: "Front",
  15048. image: {
  15049. source: "./media/characters/rina/front.svg",
  15050. extra: 266 / 255,
  15051. bottom: 0.005
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Normal",
  15058. height: math.unit(5 + 10 / 12, "feet"),
  15059. default: true
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15065. {
  15066. front: {
  15067. height: math.unit(6 + 1 / 12, "feet"),
  15068. weight: math.unit(192, "lb"),
  15069. name: "Front",
  15070. image: {
  15071. source: "./media/characters/veronica/front.svg",
  15072. extra: 319 / 309,
  15073. bottom: 0.005
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Normal",
  15080. height: math.unit(6 + 1 / 12, "feet"),
  15081. default: true
  15082. },
  15083. ]
  15084. ))
  15085. characterMakers.push(() => makeCharacter(
  15086. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15087. {
  15088. front: {
  15089. height: math.unit(9 + 3 / 12, "feet"),
  15090. weight: math.unit(1100, "lb"),
  15091. name: "Front",
  15092. image: {
  15093. source: "./media/characters/braxton/front.svg",
  15094. extra: 1057 / 984,
  15095. bottom: 0.05
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Normal",
  15102. height: math.unit(9 + 3 / 12, "feet")
  15103. },
  15104. {
  15105. name: "Giant",
  15106. height: math.unit(300, "feet"),
  15107. default: true
  15108. },
  15109. {
  15110. name: "Macro",
  15111. height: math.unit(700, "feet")
  15112. },
  15113. {
  15114. name: "Megamacro",
  15115. height: math.unit(6000, "feet")
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(6 + 7 / 12, "feet"),
  15124. weight: math.unit(150, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/blue-feyonics/front.svg",
  15128. extra: 1403 / 1306,
  15129. bottom: 0.047
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(6 + 7 / 12, "feet"),
  15137. default: true
  15138. },
  15139. ]
  15140. ))
  15141. characterMakers.push(() => makeCharacter(
  15142. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15143. {
  15144. front: {
  15145. height: math.unit(1.8, "meters"),
  15146. weight: math.unit(60, "kg"),
  15147. name: "Front",
  15148. image: {
  15149. source: "./media/characters/maxwell/front.svg",
  15150. extra: 2060 / 1873
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Micro",
  15157. height: math.unit(1, "mm")
  15158. },
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(1.8, "meter"),
  15162. default: true
  15163. },
  15164. {
  15165. name: "Macro",
  15166. height: math.unit(30, "meters")
  15167. },
  15168. {
  15169. name: "Megamacro",
  15170. height: math.unit(10, "km")
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15176. {
  15177. front: {
  15178. height: math.unit(6, "feet"),
  15179. weight: math.unit(150, "lb"),
  15180. name: "Front",
  15181. image: {
  15182. source: "./media/characters/jack/front.svg",
  15183. extra: 1754 / 1640,
  15184. bottom: 0.01
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(80000, "feet"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Max size",
  15196. height: math.unit(10, "lightyears")
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15202. {
  15203. upright: {
  15204. height: math.unit(7, "feet"),
  15205. weight: math.unit(170, "lb"),
  15206. name: "Upright",
  15207. image: {
  15208. source: "./media/characters/cafat/upright.svg",
  15209. bottom: 0.01
  15210. }
  15211. },
  15212. uprightFull: {
  15213. height: math.unit(7, "feet"),
  15214. weight: math.unit(170, "lb"),
  15215. name: "Upright (Full)",
  15216. image: {
  15217. source: "./media/characters/cafat/upright-full.svg",
  15218. bottom: 0.01
  15219. }
  15220. },
  15221. side: {
  15222. height: math.unit(5, "feet"),
  15223. weight: math.unit(150, "lb"),
  15224. name: "Side",
  15225. image: {
  15226. source: "./media/characters/cafat/side.svg"
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Small",
  15233. height: math.unit(7, "feet"),
  15234. default: true
  15235. },
  15236. {
  15237. name: "Large",
  15238. height: math.unit(15.5, "feet")
  15239. },
  15240. ]
  15241. ))
  15242. characterMakers.push(() => makeCharacter(
  15243. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15244. {
  15245. front: {
  15246. height: math.unit(6, "feet"),
  15247. weight: math.unit(150, "lb"),
  15248. name: "Front",
  15249. image: {
  15250. source: "./media/characters/verin-raharra/front.svg",
  15251. extra: 5019 / 4835,
  15252. bottom: 0.023
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Normal",
  15259. height: math.unit(7 + 5 / 12, "feet"),
  15260. default: true
  15261. },
  15262. {
  15263. name: "Upsized",
  15264. height: math.unit(20, "feet")
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15270. {
  15271. front: {
  15272. height: math.unit(7, "feet"),
  15273. weight: math.unit(230, "lb"),
  15274. name: "Front",
  15275. image: {
  15276. source: "./media/characters/nakata/front.svg",
  15277. extra: 1.005,
  15278. bottom: 0.01
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Normal",
  15285. height: math.unit(7, "feet"),
  15286. default: true
  15287. },
  15288. {
  15289. name: "Big",
  15290. height: math.unit(14, "feet")
  15291. },
  15292. {
  15293. name: "Macro",
  15294. height: math.unit(400, "feet")
  15295. },
  15296. ]
  15297. ))
  15298. characterMakers.push(() => makeCharacter(
  15299. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15300. {
  15301. front: {
  15302. height: math.unit(4.91, "feet"),
  15303. weight: math.unit(100, "lb"),
  15304. name: "Front",
  15305. image: {
  15306. source: "./media/characters/lily/front.svg",
  15307. extra: 1585 / 1415,
  15308. bottom: 0.02
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Normal",
  15315. height: math.unit(4.91, "feet"),
  15316. default: true
  15317. },
  15318. ]
  15319. ))
  15320. characterMakers.push(() => makeCharacter(
  15321. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15322. {
  15323. laying: {
  15324. height: math.unit(4 + 4 / 12, "feet"),
  15325. weight: math.unit(600, "lb"),
  15326. name: "Laying",
  15327. image: {
  15328. source: "./media/characters/sheila/laying.svg",
  15329. extra: 1333 / 1265,
  15330. bottom: 0.16
  15331. }
  15332. },
  15333. },
  15334. [
  15335. {
  15336. name: "Normal",
  15337. height: math.unit(4 + 4 / 12, "feet"),
  15338. default: true
  15339. },
  15340. ]
  15341. ))
  15342. characterMakers.push(() => makeCharacter(
  15343. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15344. {
  15345. front: {
  15346. height: math.unit(6, "feet"),
  15347. weight: math.unit(190, "lb"),
  15348. name: "Front",
  15349. image: {
  15350. source: "./media/characters/sax/front.svg",
  15351. extra: 1187 / 973,
  15352. bottom: 0.042
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Micro",
  15359. height: math.unit(4, "inches"),
  15360. default: true
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(6, "feet"),
  15369. weight: math.unit(150, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/pandora/front.svg",
  15373. extra: 2720 / 2556,
  15374. bottom: 0.015
  15375. }
  15376. },
  15377. back: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(150, "lb"),
  15380. name: "Back",
  15381. image: {
  15382. source: "./media/characters/pandora/back.svg",
  15383. extra: 2720 / 2556,
  15384. bottom: 0.01
  15385. }
  15386. },
  15387. beans: {
  15388. height: math.unit(6 / 8, "feet"),
  15389. name: "Beans",
  15390. image: {
  15391. source: "./media/characters/pandora/beans.svg"
  15392. }
  15393. },
  15394. skirt: {
  15395. height: math.unit(6, "feet"),
  15396. weight: math.unit(150, "lb"),
  15397. name: "Skirt",
  15398. image: {
  15399. source: "./media/characters/pandora/skirt.svg",
  15400. extra: 1622 / 1525,
  15401. bottom: 0.015
  15402. }
  15403. },
  15404. hoodie: {
  15405. height: math.unit(6, "feet"),
  15406. weight: math.unit(150, "lb"),
  15407. name: "Hoodie",
  15408. image: {
  15409. source: "./media/characters/pandora/hoodie.svg",
  15410. extra: 1622 / 1525,
  15411. bottom: 0.015
  15412. }
  15413. },
  15414. casual: {
  15415. height: math.unit(6, "feet"),
  15416. weight: math.unit(150, "lb"),
  15417. name: "Casual",
  15418. image: {
  15419. source: "./media/characters/pandora/casual.svg",
  15420. extra: 1622 / 1525,
  15421. bottom: 0.015
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(6, "feet")
  15429. },
  15430. {
  15431. name: "Big Steppy",
  15432. height: math.unit(1, "km"),
  15433. default: true
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15439. {
  15440. side: {
  15441. height: math.unit(10, "feet"),
  15442. weight: math.unit(800, "kg"),
  15443. name: "Side",
  15444. image: {
  15445. source: "./media/characters/venio-darcony/side.svg",
  15446. extra: 1373 / 1003,
  15447. bottom: 0.037
  15448. }
  15449. },
  15450. front: {
  15451. height: math.unit(19, "feet"),
  15452. weight: math.unit(800, "kg"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/venio-darcony/front.svg"
  15456. }
  15457. },
  15458. back: {
  15459. height: math.unit(19, "feet"),
  15460. weight: math.unit(800, "kg"),
  15461. name: "Back",
  15462. image: {
  15463. source: "./media/characters/venio-darcony/back.svg"
  15464. }
  15465. },
  15466. sideNsfw: {
  15467. height: math.unit(10, "feet"),
  15468. weight: math.unit(800, "kg"),
  15469. name: "Side (NSFW)",
  15470. image: {
  15471. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15472. extra: 1373 / 1003,
  15473. bottom: 0.037
  15474. }
  15475. },
  15476. frontNsfw: {
  15477. height: math.unit(19, "feet"),
  15478. weight: math.unit(800, "kg"),
  15479. name: "Front (NSFW)",
  15480. image: {
  15481. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15482. }
  15483. },
  15484. backNsfw: {
  15485. height: math.unit(19, "feet"),
  15486. weight: math.unit(800, "kg"),
  15487. name: "Back (NSFW)",
  15488. image: {
  15489. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15490. }
  15491. },
  15492. sideArmored: {
  15493. height: math.unit(10, "feet"),
  15494. weight: math.unit(800, "kg"),
  15495. name: "Side (Armored)",
  15496. image: {
  15497. source: "./media/characters/venio-darcony/side-armored.svg",
  15498. extra: 1373 / 1003,
  15499. bottom: 0.037
  15500. }
  15501. },
  15502. frontArmored: {
  15503. height: math.unit(19, "feet"),
  15504. weight: math.unit(900, "kg"),
  15505. name: "Front (Armored)",
  15506. image: {
  15507. source: "./media/characters/venio-darcony/front-armored.svg"
  15508. }
  15509. },
  15510. backArmored: {
  15511. height: math.unit(19, "feet"),
  15512. weight: math.unit(900, "kg"),
  15513. name: "Back (Armored)",
  15514. image: {
  15515. source: "./media/characters/venio-darcony/back-armored.svg"
  15516. }
  15517. },
  15518. sword: {
  15519. height: math.unit(10, "feet"),
  15520. weight: math.unit(50, "lb"),
  15521. name: "Sword",
  15522. image: {
  15523. source: "./media/characters/venio-darcony/sword.svg"
  15524. }
  15525. },
  15526. },
  15527. [
  15528. {
  15529. name: "Normal",
  15530. height: math.unit(10, "feet")
  15531. },
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(130, "feet"),
  15535. default: true
  15536. },
  15537. {
  15538. name: "Macro+",
  15539. height: math.unit(240, "feet")
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(6, "feet"),
  15548. weight: math.unit(150, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/veski/front.svg",
  15552. extra: 1299 / 1225,
  15553. bottom: 0.04
  15554. }
  15555. },
  15556. back: {
  15557. height: math.unit(6, "feet"),
  15558. weight: math.unit(150, "lb"),
  15559. name: "Back",
  15560. image: {
  15561. source: "./media/characters/veski/back.svg",
  15562. extra: 1299 / 1225,
  15563. bottom: 0.008
  15564. }
  15565. },
  15566. maw: {
  15567. height: math.unit(1.5 * 1.21, "feet"),
  15568. name: "Maw",
  15569. image: {
  15570. source: "./media/characters/veski/maw.svg"
  15571. }
  15572. },
  15573. },
  15574. [
  15575. {
  15576. name: "Macro",
  15577. height: math.unit(2, "km"),
  15578. default: true
  15579. },
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(5 + 7 / 12, "feet"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/isabelle/front.svg",
  15590. extra: 2130 / 1976,
  15591. bottom: 0.05
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Supermicro",
  15598. height: math.unit(10, "micrometers")
  15599. },
  15600. {
  15601. name: "Micro",
  15602. height: math.unit(1, "inch")
  15603. },
  15604. {
  15605. name: "Tiny",
  15606. height: math.unit(5, "inches")
  15607. },
  15608. {
  15609. name: "Standard",
  15610. height: math.unit(5 + 7 / 12, "inches")
  15611. },
  15612. {
  15613. name: "Macro",
  15614. height: math.unit(80, "meters"),
  15615. default: true
  15616. },
  15617. {
  15618. name: "Megamacro",
  15619. height: math.unit(250, "meters")
  15620. },
  15621. {
  15622. name: "Gigamacro",
  15623. height: math.unit(5, "km")
  15624. },
  15625. {
  15626. name: "Cosmic",
  15627. height: math.unit(2.5e6, "miles")
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(150, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/hanzo/front.svg",
  15640. extra: 374 / 344,
  15641. bottom: 0.02
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(8, "feet"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(7, "feet"),
  15658. weight: math.unit(130, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/anna/front.svg",
  15662. extra: 169 / 145,
  15663. bottom: 0.06
  15664. }
  15665. },
  15666. full: {
  15667. height: math.unit(4.96, "feet"),
  15668. weight: math.unit(220, "lb"),
  15669. name: "Full",
  15670. image: {
  15671. source: "./media/characters/anna/full.svg",
  15672. extra: 138 / 114,
  15673. bottom: 0.15
  15674. }
  15675. },
  15676. tongue: {
  15677. height: math.unit(2.53, "feet"),
  15678. name: "Tongue",
  15679. image: {
  15680. source: "./media/characters/anna/tongue.svg"
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Normal",
  15687. height: math.unit(7, "feet"),
  15688. default: true
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(7, "feet"),
  15697. weight: math.unit(150, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/ian-corvid/front.svg",
  15701. extra: 150 / 142,
  15702. bottom: 0.02
  15703. }
  15704. },
  15705. back: {
  15706. height: math.unit(7, "feet"),
  15707. weight: math.unit(150, "lb"),
  15708. name: "Back",
  15709. image: {
  15710. source: "./media/characters/ian-corvid/back.svg",
  15711. extra: 150 / 143,
  15712. bottom: 0.01
  15713. }
  15714. },
  15715. stomping: {
  15716. height: math.unit(7, "feet"),
  15717. weight: math.unit(150, "lb"),
  15718. name: "Stomping",
  15719. image: {
  15720. source: "./media/characters/ian-corvid/stomping.svg",
  15721. extra: 76 / 72
  15722. }
  15723. },
  15724. sitting: {
  15725. height: math.unit(7 / 1.8, "feet"),
  15726. weight: math.unit(150, "lb"),
  15727. name: "Sitting",
  15728. image: {
  15729. source: "./media/characters/ian-corvid/sitting.svg",
  15730. extra: 1400 / 1269,
  15731. bottom: 0.15
  15732. }
  15733. },
  15734. },
  15735. [
  15736. {
  15737. name: "Tiny Microw",
  15738. height: math.unit(1, "inch")
  15739. },
  15740. {
  15741. name: "Microw",
  15742. height: math.unit(6, "inches")
  15743. },
  15744. {
  15745. name: "Crow",
  15746. height: math.unit(7 + 1 / 12, "feet"),
  15747. default: true
  15748. },
  15749. {
  15750. name: "Macrow",
  15751. height: math.unit(176, "feet")
  15752. },
  15753. ]
  15754. ))
  15755. characterMakers.push(() => makeCharacter(
  15756. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15757. {
  15758. front: {
  15759. height: math.unit(5 + 7 / 12, "feet"),
  15760. weight: math.unit(147, "lb"),
  15761. name: "Front",
  15762. image: {
  15763. source: "./media/characters/natalie-kellon/front.svg",
  15764. extra: 1214 / 1141,
  15765. bottom: 0.02
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Micro",
  15772. height: math.unit(1 / 16, "inch")
  15773. },
  15774. {
  15775. name: "Tiny",
  15776. height: math.unit(4, "inches")
  15777. },
  15778. {
  15779. name: "Normal",
  15780. height: math.unit(5 + 7 / 12, "feet"),
  15781. default: true
  15782. },
  15783. {
  15784. name: "Amazon",
  15785. height: math.unit(12, "feet")
  15786. },
  15787. {
  15788. name: "Giantess",
  15789. height: math.unit(160, "meters")
  15790. },
  15791. {
  15792. name: "Titaness",
  15793. height: math.unit(800, "meters")
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(6, "feet"),
  15802. weight: math.unit(150, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/alluria/front.svg",
  15806. extra: 806 / 738,
  15807. bottom: 0.01
  15808. }
  15809. },
  15810. side: {
  15811. height: math.unit(6, "feet"),
  15812. weight: math.unit(150, "lb"),
  15813. name: "Side",
  15814. image: {
  15815. source: "./media/characters/alluria/side.svg",
  15816. extra: 800 / 750,
  15817. }
  15818. },
  15819. back: {
  15820. height: math.unit(6, "feet"),
  15821. weight: math.unit(150, "lb"),
  15822. name: "Back",
  15823. image: {
  15824. source: "./media/characters/alluria/back.svg",
  15825. extra: 806 / 738,
  15826. }
  15827. },
  15828. frontMaid: {
  15829. height: math.unit(6, "feet"),
  15830. weight: math.unit(150, "lb"),
  15831. name: "Front (Maid)",
  15832. image: {
  15833. source: "./media/characters/alluria/front-maid.svg",
  15834. extra: 806 / 738,
  15835. bottom: 0.01
  15836. }
  15837. },
  15838. sideMaid: {
  15839. height: math.unit(6, "feet"),
  15840. weight: math.unit(150, "lb"),
  15841. name: "Side (Maid)",
  15842. image: {
  15843. source: "./media/characters/alluria/side-maid.svg",
  15844. extra: 800 / 750,
  15845. bottom: 0.005
  15846. }
  15847. },
  15848. backMaid: {
  15849. height: math.unit(6, "feet"),
  15850. weight: math.unit(150, "lb"),
  15851. name: "Back (Maid)",
  15852. image: {
  15853. source: "./media/characters/alluria/back-maid.svg",
  15854. extra: 806 / 738,
  15855. }
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Micro",
  15861. height: math.unit(6, "inches"),
  15862. default: true
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(6, "feet"),
  15871. weight: math.unit(150, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/kyle/front.svg",
  15875. extra: 1069 / 962,
  15876. bottom: 77.228 / 1727.45
  15877. }
  15878. },
  15879. },
  15880. [
  15881. {
  15882. name: "Macro",
  15883. height: math.unit(150, "feet"),
  15884. default: true
  15885. },
  15886. ]
  15887. ))
  15888. characterMakers.push(() => makeCharacter(
  15889. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15890. {
  15891. front: {
  15892. height: math.unit(6, "feet"),
  15893. weight: math.unit(300, "lb"),
  15894. name: "Front",
  15895. image: {
  15896. source: "./media/characters/duncan/front.svg",
  15897. extra: 1650 / 1482,
  15898. bottom: 0.05
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Macro",
  15905. height: math.unit(100, "feet"),
  15906. default: true
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15912. {
  15913. front: {
  15914. height: math.unit(5 + 4 / 12, "feet"),
  15915. weight: math.unit(220, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/memory/front.svg",
  15919. extra: 3641 / 3545,
  15920. bottom: 0.03
  15921. }
  15922. },
  15923. back: {
  15924. height: math.unit(5 + 4 / 12, "feet"),
  15925. weight: math.unit(220, "lb"),
  15926. name: "Back",
  15927. image: {
  15928. source: "./media/characters/memory/back.svg",
  15929. extra: 3641 / 3545,
  15930. bottom: 0.025
  15931. }
  15932. },
  15933. frontSkirt: {
  15934. height: math.unit(5 + 4 / 12, "feet"),
  15935. weight: math.unit(220, "lb"),
  15936. name: "Front (Skirt)",
  15937. image: {
  15938. source: "./media/characters/memory/front-skirt.svg",
  15939. extra: 3641 / 3545,
  15940. bottom: 0.03
  15941. }
  15942. },
  15943. frontDress: {
  15944. height: math.unit(5 + 4 / 12, "feet"),
  15945. weight: math.unit(220, "lb"),
  15946. name: "Front (Dress)",
  15947. image: {
  15948. source: "./media/characters/memory/front-dress.svg",
  15949. extra: 3641 / 3545,
  15950. bottom: 0.03
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Micro",
  15957. height: math.unit(6, "inches"),
  15958. default: true
  15959. },
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(5 + 4 / 12, "feet")
  15963. },
  15964. ]
  15965. ))
  15966. characterMakers.push(() => makeCharacter(
  15967. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15968. {
  15969. front: {
  15970. height: math.unit(4 + 11 / 12, "feet"),
  15971. weight: math.unit(100, "lb"),
  15972. name: "Front",
  15973. image: {
  15974. source: "./media/characters/luno/front.svg",
  15975. extra: 1535 / 1487,
  15976. bottom: 0.03
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Micro",
  15983. height: math.unit(3, "inches")
  15984. },
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(4 + 11 / 12, "feet"),
  15988. default: true
  15989. },
  15990. {
  15991. name: "Macro",
  15992. height: math.unit(300, "feet")
  15993. },
  15994. {
  15995. name: "Megamacro",
  15996. height: math.unit(700, "miles")
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16002. {
  16003. front: {
  16004. height: math.unit(6 + 2 / 12, "feet"),
  16005. weight: math.unit(170, "lb"),
  16006. name: "Front",
  16007. image: {
  16008. source: "./media/characters/jamesy/front.svg",
  16009. extra: 440 / 382,
  16010. bottom: 0.005
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Micro",
  16017. height: math.unit(3, "inches")
  16018. },
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(6 + 2 / 12, "feet"),
  16022. default: true
  16023. },
  16024. {
  16025. name: "Macro",
  16026. height: math.unit(300, "feet")
  16027. },
  16028. {
  16029. name: "Megamacro",
  16030. height: math.unit(700, "miles")
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(6, "feet"),
  16039. weight: math.unit(160, "lb"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/mark/front.svg",
  16043. extra: 3300 / 3100,
  16044. bottom: 136.42 / 3440.47
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Macro",
  16051. height: math.unit(120, "meters")
  16052. },
  16053. {
  16054. name: "Bigger Macro",
  16055. height: math.unit(350, "meters")
  16056. },
  16057. {
  16058. name: "Megamacro",
  16059. height: math.unit(8, "km"),
  16060. default: true
  16061. },
  16062. {
  16063. name: "Continental",
  16064. height: math.unit(4550, "km")
  16065. },
  16066. {
  16067. name: "Planetary",
  16068. height: math.unit(65000, "km")
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(6, "feet"),
  16077. weight: math.unit(400, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/mac/front.svg",
  16081. extra: 1048 / 987.7,
  16082. bottom: 60 / 1107.6,
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Macro",
  16089. height: math.unit(500, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(5 + 2 / 12, "feet"),
  16099. weight: math.unit(190, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/bari/front.svg",
  16103. extra: 3156 / 2880,
  16104. bottom: 0.03
  16105. }
  16106. },
  16107. back: {
  16108. height: math.unit(5 + 2 / 12, "feet"),
  16109. weight: math.unit(190, "lb"),
  16110. name: "Back",
  16111. image: {
  16112. source: "./media/characters/bari/back.svg",
  16113. extra: 3260 / 2834,
  16114. bottom: 0.025
  16115. }
  16116. },
  16117. frontPlush: {
  16118. height: math.unit(5 + 2 / 12, "feet"),
  16119. weight: math.unit(190, "lb"),
  16120. name: "Front (Plush)",
  16121. image: {
  16122. source: "./media/characters/bari/front-plush.svg",
  16123. extra: 1112 / 1061,
  16124. bottom: 0.002
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Micro",
  16131. height: math.unit(3, "inches")
  16132. },
  16133. {
  16134. name: "Normal",
  16135. height: math.unit(5 + 2 / 12, "feet"),
  16136. default: true
  16137. },
  16138. {
  16139. name: "Macro",
  16140. height: math.unit(20, "feet")
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(6 + 1 / 12, "feet"),
  16149. weight: math.unit(275, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/hunter-misha-raven/front.svg"
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Mortal",
  16159. height: math.unit(6 + 1 / 12, "feet")
  16160. },
  16161. {
  16162. name: "Divine",
  16163. height: math.unit(1.12134e34, "parsecs"),
  16164. default: true
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(6 + 3 / 12, "feet"),
  16173. weight: math.unit(220, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/max-calore/front.svg",
  16177. extra: 1700 / 1648,
  16178. bottom: 0.01
  16179. }
  16180. },
  16181. back: {
  16182. height: math.unit(6 + 3 / 12, "feet"),
  16183. weight: math.unit(220, "lb"),
  16184. name: "Back",
  16185. image: {
  16186. source: "./media/characters/max-calore/back.svg",
  16187. extra: 1700 / 1648,
  16188. bottom: 0.01
  16189. }
  16190. },
  16191. },
  16192. [
  16193. {
  16194. name: "Normal",
  16195. height: math.unit(6 + 3 / 12, "feet"),
  16196. default: true
  16197. },
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16202. {
  16203. side: {
  16204. height: math.unit(2 + 8 / 12, "feet"),
  16205. weight: math.unit(99, "lb"),
  16206. name: "Side",
  16207. image: {
  16208. source: "./media/characters/aspen/side.svg",
  16209. extra: 152 / 138,
  16210. bottom: 0.032
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Normal",
  16217. height: math.unit(2 + 8 / 12, "feet"),
  16218. default: true
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16224. {
  16225. side: {
  16226. height: math.unit(3 + 2 / 12, "feet"),
  16227. weight: math.unit(224, "lb"),
  16228. name: "Side",
  16229. image: {
  16230. source: "./media/characters/sheila-feral-wolf/side.svg",
  16231. extra: 179 / 166,
  16232. bottom: 0.03
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(3 + 2 / 12, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16246. {
  16247. side: {
  16248. height: math.unit(1 + 9 / 12, "feet"),
  16249. weight: math.unit(38, "lb"),
  16250. name: "Side",
  16251. image: {
  16252. source: "./media/characters/michelle/side.svg",
  16253. extra: 147 / 136.7,
  16254. bottom: 0.03
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(1 + 9 / 12, "feet"),
  16262. default: true
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(1 + 1 / 12, "feet"),
  16271. weight: math.unit(18, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/nino/front.svg"
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(1 + 1 / 12, "feet"),
  16282. default: true
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16288. {
  16289. front: {
  16290. height: math.unit(1, "feet"),
  16291. weight: math.unit(16, "lb"),
  16292. name: "Front",
  16293. image: {
  16294. source: "./media/characters/viola/front.svg"
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Normal",
  16301. height: math.unit(1, "feet"),
  16302. default: true
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16308. {
  16309. front: {
  16310. height: math.unit(6 + 5 / 12, "feet"),
  16311. weight: math.unit(580, "lb"),
  16312. name: "Front",
  16313. image: {
  16314. source: "./media/characters/atlas/front.svg",
  16315. extra: 298.5 / 290,
  16316. bottom: 0.015
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(6 + 5 / 12, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16330. {
  16331. side: {
  16332. height: math.unit(1 + 10 / 12, "feet"),
  16333. weight: math.unit(25, "lb"),
  16334. name: "Side",
  16335. image: {
  16336. source: "./media/characters/davy/side.svg",
  16337. extra: 200 / 170,
  16338. bottom: 0.01
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(1 + 10 / 12, "feet"),
  16346. default: true
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16352. {
  16353. side: {
  16354. height: math.unit(4 + 8 / 12, "feet"),
  16355. weight: math.unit(166, "lb"),
  16356. name: "Side",
  16357. image: {
  16358. source: "./media/characters/fiona/side.svg",
  16359. extra: 232 / 220,
  16360. bottom: 0.03
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(4 + 8 / 12, "feet"),
  16368. default: true
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16374. {
  16375. front: {
  16376. height: math.unit(2, "feet"),
  16377. weight: math.unit(62, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/lyla/front.svg",
  16381. bottom: 0.1
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Normal",
  16388. height: math.unit(2, "feet"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16395. {
  16396. side: {
  16397. height: math.unit(1.8, "feet"),
  16398. weight: math.unit(44, "lb"),
  16399. name: "Side",
  16400. image: {
  16401. source: "./media/characters/perseus/side.svg",
  16402. bottom: 0.21
  16403. }
  16404. },
  16405. },
  16406. [
  16407. {
  16408. name: "Normal",
  16409. height: math.unit(1.8, "feet"),
  16410. default: true
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16416. {
  16417. side: {
  16418. height: math.unit(4 + 2 / 12, "feet"),
  16419. weight: math.unit(20, "lb"),
  16420. name: "Side",
  16421. image: {
  16422. source: "./media/characters/remus/side.svg"
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(4 + 2 / 12, "feet"),
  16430. default: true
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16436. {
  16437. front: {
  16438. height: math.unit(4 + 11 / 12, "feet"),
  16439. weight: math.unit(114, "lb"),
  16440. name: "Front",
  16441. image: {
  16442. source: "./media/characters/raf/front.svg",
  16443. bottom: 20.5 / 1863
  16444. }
  16445. },
  16446. side: {
  16447. height: math.unit(4 + 11 / 12, "feet"),
  16448. weight: math.unit(114, "lb"),
  16449. name: "Side",
  16450. image: {
  16451. source: "./media/characters/raf/side.svg",
  16452. bottom: 22 / 1822
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Micro",
  16459. height: math.unit(2, "inches")
  16460. },
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(4 + 11 / 12, "feet"),
  16464. default: true
  16465. },
  16466. {
  16467. name: "Macro",
  16468. height: math.unit(70, "feet")
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16474. {
  16475. front: {
  16476. height: math.unit(1.5, "meters"),
  16477. weight: math.unit(68, "kg"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/liam-einarr/front.svg",
  16481. extra: 2822 / 2666
  16482. }
  16483. },
  16484. back: {
  16485. height: math.unit(1.5, "meters"),
  16486. weight: math.unit(68, "kg"),
  16487. name: "Back",
  16488. image: {
  16489. source: "./media/characters/liam-einarr/back.svg",
  16490. extra: 2822 / 2666,
  16491. bottom: 0.015
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(1.5, "meters"),
  16499. default: true
  16500. },
  16501. {
  16502. name: "Macro",
  16503. height: math.unit(150, "meters")
  16504. },
  16505. {
  16506. name: "Megamacro",
  16507. height: math.unit(35, "km")
  16508. },
  16509. ]
  16510. ))
  16511. characterMakers.push(() => makeCharacter(
  16512. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16513. {
  16514. front: {
  16515. height: math.unit(6, "feet"),
  16516. weight: math.unit(75, "kg"),
  16517. name: "Front",
  16518. image: {
  16519. source: "./media/characters/linda/front.svg",
  16520. extra: 930 / 874,
  16521. bottom: 0.004
  16522. }
  16523. },
  16524. },
  16525. [
  16526. {
  16527. name: "Normal",
  16528. height: math.unit(6, "feet"),
  16529. default: true
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16535. {
  16536. front: {
  16537. height: math.unit(6 + 8 / 12, "feet"),
  16538. weight: math.unit(220, "lb"),
  16539. name: "Front",
  16540. image: {
  16541. source: "./media/characters/caylex/front.svg",
  16542. extra: 821 / 772,
  16543. bottom: 0.07
  16544. }
  16545. },
  16546. back: {
  16547. height: math.unit(6 + 8 / 12, "feet"),
  16548. weight: math.unit(220, "lb"),
  16549. name: "Back",
  16550. image: {
  16551. source: "./media/characters/caylex/back.svg",
  16552. extra: 821 / 772,
  16553. bottom: 0.022
  16554. }
  16555. },
  16556. hand: {
  16557. height: math.unit(1.25, "feet"),
  16558. name: "Hand",
  16559. image: {
  16560. source: "./media/characters/caylex/hand.svg"
  16561. }
  16562. },
  16563. foot: {
  16564. height: math.unit(1.6, "feet"),
  16565. name: "Foot",
  16566. image: {
  16567. source: "./media/characters/caylex/foot.svg"
  16568. }
  16569. },
  16570. armored: {
  16571. height: math.unit(6 + 8 / 12, "feet"),
  16572. weight: math.unit(250, "lb"),
  16573. name: "Armored",
  16574. image: {
  16575. source: "./media/characters/caylex/armored.svg",
  16576. extra: 1420 / 1310,
  16577. bottom: 0.045
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Normal",
  16584. height: math.unit(6 + 8 / 12, "feet"),
  16585. default: true
  16586. },
  16587. {
  16588. name: "Normal+",
  16589. height: math.unit(12, "feet")
  16590. },
  16591. ]
  16592. ))
  16593. characterMakers.push(() => makeCharacter(
  16594. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16595. {
  16596. front: {
  16597. height: math.unit(7 + 6 / 12, "feet"),
  16598. weight: math.unit(288, "lb"),
  16599. name: "Front",
  16600. image: {
  16601. source: "./media/characters/alana/front.svg",
  16602. extra: 679 / 653,
  16603. bottom: 22.5 / 701
  16604. }
  16605. },
  16606. },
  16607. [
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(7 + 6 / 12, "feet")
  16611. },
  16612. {
  16613. name: "Large",
  16614. height: math.unit(50, "feet")
  16615. },
  16616. {
  16617. name: "Macro",
  16618. height: math.unit(100, "feet"),
  16619. default: true
  16620. },
  16621. {
  16622. name: "Macro+",
  16623. height: math.unit(200, "feet")
  16624. },
  16625. ]
  16626. ))
  16627. characterMakers.push(() => makeCharacter(
  16628. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16629. {
  16630. front: {
  16631. height: math.unit(6 + 1 / 12, "feet"),
  16632. weight: math.unit(210, "lb"),
  16633. name: "Front",
  16634. image: {
  16635. source: "./media/characters/hasani/front.svg",
  16636. extra: 244 / 232,
  16637. bottom: 0.01
  16638. }
  16639. },
  16640. back: {
  16641. height: math.unit(6 + 1 / 12, "feet"),
  16642. weight: math.unit(210, "lb"),
  16643. name: "Back",
  16644. image: {
  16645. source: "./media/characters/hasani/back.svg",
  16646. extra: 244 / 232,
  16647. bottom: 0.01
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(6 + 1 / 12, "feet")
  16655. },
  16656. {
  16657. name: "Macro",
  16658. height: math.unit(175, "feet"),
  16659. default: true
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(1.82, "meters"),
  16668. weight: math.unit(140, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/nita/front.svg",
  16672. extra: 2473 / 2363,
  16673. bottom: 0.01
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(1.82, "m")
  16681. },
  16682. {
  16683. name: "Macro",
  16684. height: math.unit(300, "m")
  16685. },
  16686. {
  16687. name: "Mistake Canon",
  16688. height: math.unit(0.5, "miles"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Big Mistake",
  16693. height: math.unit(13, "miles")
  16694. },
  16695. {
  16696. name: "Playing God",
  16697. height: math.unit(2450, "miles")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(4, "feet"),
  16706. weight: math.unit(120, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/shiriko/front.svg",
  16710. extra: 195 / 188
  16711. }
  16712. },
  16713. },
  16714. [
  16715. {
  16716. name: "Normal",
  16717. height: math.unit(4, "feet"),
  16718. default: true
  16719. },
  16720. ]
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16724. {
  16725. front: {
  16726. height: math.unit(6, "feet"),
  16727. name: "front",
  16728. image: {
  16729. source: "./media/characters/deja/front.svg",
  16730. extra: 926 / 840,
  16731. bottom: 0.07
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Planck Length",
  16738. height: math.unit(1.6e-35, "meters")
  16739. },
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(30.48, "meters"),
  16743. default: true
  16744. },
  16745. {
  16746. name: "Universal",
  16747. height: math.unit(8.8e26, "meters")
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16753. {
  16754. side: {
  16755. height: math.unit(8, "feet"),
  16756. weight: math.unit(6300, "lb"),
  16757. name: "Side",
  16758. image: {
  16759. source: "./media/characters/anima/side.svg",
  16760. bottom: 0.035
  16761. }
  16762. },
  16763. },
  16764. [
  16765. {
  16766. name: "Normal",
  16767. height: math.unit(8, "feet"),
  16768. default: true
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(8, "feet"),
  16777. weight: math.unit(350, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/bianca/front.svg",
  16781. extra: 234 / 225,
  16782. bottom: 0.03
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Normal",
  16789. height: math.unit(8, "feet"),
  16790. default: true
  16791. },
  16792. ]
  16793. ))
  16794. characterMakers.push(() => makeCharacter(
  16795. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16796. {
  16797. front: {
  16798. height: math.unit(6, "feet"),
  16799. weight: math.unit(150, "lb"),
  16800. name: "Front",
  16801. image: {
  16802. source: "./media/characters/adinia/front.svg",
  16803. extra: 1845 / 1672,
  16804. bottom: 0.02
  16805. }
  16806. },
  16807. back: {
  16808. height: math.unit(6, "feet"),
  16809. weight: math.unit(150, "lb"),
  16810. name: "Back",
  16811. image: {
  16812. source: "./media/characters/adinia/back.svg",
  16813. extra: 1845 / 1672,
  16814. bottom: 0.002
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Normal",
  16821. height: math.unit(11 + 5 / 12, "feet"),
  16822. default: true
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16828. {
  16829. front: {
  16830. height: math.unit(3, "meters"),
  16831. weight: math.unit(200, "kg"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/lykasa/front.svg",
  16835. extra: 1076 / 976,
  16836. bottom: 0.06
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(3, "meters")
  16844. },
  16845. {
  16846. name: "Kaiju",
  16847. height: math.unit(120, "meters"),
  16848. default: true
  16849. },
  16850. {
  16851. name: "Mega Kaiju",
  16852. height: math.unit(240, "km")
  16853. },
  16854. {
  16855. name: "Giga Kaiju",
  16856. height: math.unit(400, "megameters")
  16857. },
  16858. {
  16859. name: "Tera Kaiju",
  16860. height: math.unit(800, "gigameters")
  16861. },
  16862. {
  16863. name: "Kaiju Dragon Goddess",
  16864. height: math.unit(26, "zettaparsecs")
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16870. {
  16871. side: {
  16872. height: math.unit(283 / 124 * 6, "feet"),
  16873. weight: math.unit(35000, "lb"),
  16874. name: "Side",
  16875. image: {
  16876. source: "./media/characters/malfaren/side.svg",
  16877. extra: 2500 / 1010,
  16878. bottom: 0.01
  16879. }
  16880. },
  16881. front: {
  16882. height: math.unit(22.36, "feet"),
  16883. weight: math.unit(35000, "lb"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/malfaren/front.svg",
  16887. extra: 1631 / 1476,
  16888. bottom: 0.01
  16889. }
  16890. },
  16891. maw: {
  16892. height: math.unit(6.9, "feet"),
  16893. name: "Maw",
  16894. image: {
  16895. source: "./media/characters/malfaren/maw.svg"
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Big",
  16902. height: math.unit(283 / 162 * 6, "feet"),
  16903. },
  16904. {
  16905. name: "Bigger",
  16906. height: math.unit(283 / 124 * 6, "feet")
  16907. },
  16908. {
  16909. name: "Massive",
  16910. height: math.unit(283 / 92 * 6, "feet"),
  16911. default: true
  16912. },
  16913. {
  16914. name: "👀💦",
  16915. height: math.unit(283 / 73 * 6, "feet"),
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16921. {
  16922. front: {
  16923. height: math.unit(1.7, "m"),
  16924. weight: math.unit(70, "kg"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/kernel/front.svg",
  16928. extra: 222 / 210,
  16929. bottom: 0.007
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Nano",
  16936. height: math.unit(17, "micrometers")
  16937. },
  16938. {
  16939. name: "Micro",
  16940. height: math.unit(1.7, "mm")
  16941. },
  16942. {
  16943. name: "Small",
  16944. height: math.unit(1.7, "cm")
  16945. },
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(1.7, "m"),
  16949. default: true
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(1.75, "meters"),
  16958. weight: math.unit(65, "kg"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/jayne-folest/front.svg",
  16962. extra: 2115 / 2007,
  16963. bottom: 0.02
  16964. }
  16965. },
  16966. back: {
  16967. height: math.unit(1.75, "meters"),
  16968. weight: math.unit(65, "kg"),
  16969. name: "Back",
  16970. image: {
  16971. source: "./media/characters/jayne-folest/back.svg",
  16972. extra: 2115 / 2007,
  16973. bottom: 0.005
  16974. }
  16975. },
  16976. frontClothed: {
  16977. height: math.unit(1.75, "meters"),
  16978. weight: math.unit(65, "kg"),
  16979. name: "Front (Clothed)",
  16980. image: {
  16981. source: "./media/characters/jayne-folest/front-clothed.svg",
  16982. extra: 2115 / 2007,
  16983. bottom: 0.035
  16984. }
  16985. },
  16986. hand: {
  16987. height: math.unit(1 / 1.260, "feet"),
  16988. name: "Hand",
  16989. image: {
  16990. source: "./media/characters/jayne-folest/hand.svg"
  16991. }
  16992. },
  16993. foot: {
  16994. height: math.unit(1 / 0.918, "feet"),
  16995. name: "Foot",
  16996. image: {
  16997. source: "./media/characters/jayne-folest/foot.svg"
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Micro",
  17004. height: math.unit(4, "cm")
  17005. },
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(1.75, "meters")
  17009. },
  17010. {
  17011. name: "Macro",
  17012. height: math.unit(47.5, "meters"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(180, "cm"),
  17022. weight: math.unit(70, "kg"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/algier/front.svg",
  17026. extra: 596 / 572,
  17027. bottom: 0.04
  17028. }
  17029. },
  17030. back: {
  17031. height: math.unit(180, "cm"),
  17032. weight: math.unit(70, "kg"),
  17033. name: "Back",
  17034. image: {
  17035. source: "./media/characters/algier/back.svg",
  17036. extra: 596 / 572,
  17037. bottom: 0.025
  17038. }
  17039. },
  17040. frontdressed: {
  17041. height: math.unit(180, "cm"),
  17042. weight: math.unit(150, "kg"),
  17043. name: "Front-dressed",
  17044. image: {
  17045. source: "./media/characters/algier/front-dressed.svg",
  17046. extra: 596 / 572,
  17047. bottom: 0.038
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Micro",
  17054. height: math.unit(5, "cm")
  17055. },
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(180, "cm"),
  17059. default: true
  17060. },
  17061. {
  17062. name: "Macro",
  17063. height: math.unit(64, "m")
  17064. },
  17065. ]
  17066. ))
  17067. characterMakers.push(() => makeCharacter(
  17068. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17069. {
  17070. upright: {
  17071. height: math.unit(7, "feet"),
  17072. weight: math.unit(300, "lb"),
  17073. name: "Upright",
  17074. image: {
  17075. source: "./media/characters/pretzel/upright.svg",
  17076. extra: 534 / 522,
  17077. bottom: 0.065
  17078. }
  17079. },
  17080. sprawling: {
  17081. height: math.unit(3.75, "feet"),
  17082. weight: math.unit(300, "lb"),
  17083. name: "Sprawling",
  17084. image: {
  17085. source: "./media/characters/pretzel/sprawling.svg",
  17086. extra: 314 / 281,
  17087. bottom: 0.1
  17088. }
  17089. },
  17090. tongue: {
  17091. height: math.unit(2, "feet"),
  17092. name: "Tongue",
  17093. image: {
  17094. source: "./media/characters/pretzel/tongue.svg"
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Normal",
  17101. height: math.unit(7, "feet"),
  17102. default: true
  17103. },
  17104. {
  17105. name: "Oversized",
  17106. height: math.unit(15, "feet")
  17107. },
  17108. {
  17109. name: "Huge",
  17110. height: math.unit(30, "feet")
  17111. },
  17112. {
  17113. name: "Macro",
  17114. height: math.unit(250, "feet")
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17120. {
  17121. sideFront: {
  17122. height: math.unit(5 + 2 / 12, "feet"),
  17123. weight: math.unit(120, "lb"),
  17124. name: "Front Side",
  17125. image: {
  17126. source: "./media/characters/roxi/side-front.svg",
  17127. extra: 2924 / 2717,
  17128. bottom: 0.08
  17129. }
  17130. },
  17131. sideBack: {
  17132. height: math.unit(5 + 2 / 12, "feet"),
  17133. weight: math.unit(120, "lb"),
  17134. name: "Back Side",
  17135. image: {
  17136. source: "./media/characters/roxi/side-back.svg",
  17137. extra: 2904 / 2693,
  17138. bottom: 0.06
  17139. }
  17140. },
  17141. front: {
  17142. height: math.unit(5 + 2 / 12, "feet"),
  17143. weight: math.unit(120, "lb"),
  17144. name: "Front",
  17145. image: {
  17146. source: "./media/characters/roxi/front.svg",
  17147. extra: 2028 / 1907,
  17148. bottom: 0.01
  17149. }
  17150. },
  17151. frontAlt: {
  17152. height: math.unit(5 + 2 / 12, "feet"),
  17153. weight: math.unit(120, "lb"),
  17154. name: "Front (Alt)",
  17155. image: {
  17156. source: "./media/characters/roxi/front-alt.svg",
  17157. extra: 1828 / 1798,
  17158. bottom: 0.01
  17159. }
  17160. },
  17161. sitting: {
  17162. height: math.unit(2.8, "feet"),
  17163. weight: math.unit(120, "lb"),
  17164. name: "Sitting",
  17165. image: {
  17166. source: "./media/characters/roxi/sitting.svg",
  17167. extra: 2660 / 2462,
  17168. bottom: 0.1
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(5 + 2 / 12, "feet"),
  17176. default: true
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17182. {
  17183. side: {
  17184. height: math.unit(55, "feet"),
  17185. weight: math.unit(153, "tons"),
  17186. name: "Side",
  17187. image: {
  17188. source: "./media/characters/shadow/side.svg",
  17189. extra: 701 / 628,
  17190. bottom: 0.02
  17191. }
  17192. },
  17193. flying: {
  17194. height: math.unit(145, "feet"),
  17195. weight: math.unit(153, "tons"),
  17196. name: "Flying",
  17197. image: {
  17198. source: "./media/characters/shadow/flying.svg"
  17199. }
  17200. },
  17201. },
  17202. [
  17203. {
  17204. name: "Normal",
  17205. height: math.unit(55, "feet"),
  17206. default: true
  17207. },
  17208. ]
  17209. ))
  17210. characterMakers.push(() => makeCharacter(
  17211. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17212. {
  17213. front: {
  17214. height: math.unit(6, "feet"),
  17215. weight: math.unit(200, "lb"),
  17216. name: "Front",
  17217. image: {
  17218. source: "./media/characters/marcie/front.svg",
  17219. extra: 960 / 876,
  17220. bottom: 58 / 1017.87
  17221. }
  17222. },
  17223. },
  17224. [
  17225. {
  17226. name: "Macro",
  17227. height: math.unit(1, "mile"),
  17228. default: true
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17234. {
  17235. front: {
  17236. height: math.unit(7, "feet"),
  17237. weight: math.unit(200, "lb"),
  17238. name: "Front",
  17239. image: {
  17240. source: "./media/characters/kachina/front.svg",
  17241. extra: 1290.68 / 1119,
  17242. bottom: 36.5 / 1327.18
  17243. }
  17244. },
  17245. },
  17246. [
  17247. {
  17248. name: "Normal",
  17249. height: math.unit(7, "feet"),
  17250. default: true
  17251. },
  17252. ]
  17253. ))
  17254. characterMakers.push(() => makeCharacter(
  17255. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17256. {
  17257. looking: {
  17258. height: math.unit(2, "meters"),
  17259. weight: math.unit(300, "kg"),
  17260. name: "Looking",
  17261. image: {
  17262. source: "./media/characters/kash/looking.svg",
  17263. extra: 474 / 344,
  17264. bottom: 0.03
  17265. }
  17266. },
  17267. side: {
  17268. height: math.unit(2, "meters"),
  17269. weight: math.unit(300, "kg"),
  17270. name: "Side",
  17271. image: {
  17272. source: "./media/characters/kash/side.svg",
  17273. extra: 302 / 251,
  17274. bottom: 0.03
  17275. }
  17276. },
  17277. front: {
  17278. height: math.unit(2, "meters"),
  17279. weight: math.unit(300, "kg"),
  17280. name: "Front",
  17281. image: {
  17282. source: "./media/characters/kash/front.svg",
  17283. extra: 495 / 360,
  17284. bottom: 0.015
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(2, "meters"),
  17292. default: true
  17293. },
  17294. {
  17295. name: "Big",
  17296. height: math.unit(3, "meters")
  17297. },
  17298. {
  17299. name: "Large",
  17300. height: math.unit(5, "meters")
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17306. {
  17307. feeding: {
  17308. height: math.unit(6.7, "feet"),
  17309. weight: math.unit(350, "lb"),
  17310. name: "Feeding",
  17311. image: {
  17312. source: "./media/characters/lalim/feeding.svg",
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(6.7, "feet"),
  17320. default: true
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17326. {
  17327. front: {
  17328. height: math.unit(9.5, "feet"),
  17329. weight: math.unit(600, "lb"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/de'vout/front.svg",
  17333. extra: 1443 / 1328,
  17334. bottom: 0.025
  17335. }
  17336. },
  17337. back: {
  17338. height: math.unit(9.5, "feet"),
  17339. weight: math.unit(600, "lb"),
  17340. name: "Back",
  17341. image: {
  17342. source: "./media/characters/de'vout/back.svg",
  17343. extra: 1443 / 1328
  17344. }
  17345. },
  17346. frontDressed: {
  17347. height: math.unit(9.5, "feet"),
  17348. weight: math.unit(600, "lb"),
  17349. name: "Front (Dressed",
  17350. image: {
  17351. source: "./media/characters/de'vout/front-dressed.svg",
  17352. extra: 1443 / 1328,
  17353. bottom: 0.025
  17354. }
  17355. },
  17356. backDressed: {
  17357. height: math.unit(9.5, "feet"),
  17358. weight: math.unit(600, "lb"),
  17359. name: "Back (Dressed",
  17360. image: {
  17361. source: "./media/characters/de'vout/back-dressed.svg",
  17362. extra: 1443 / 1328
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(9.5, "feet"),
  17370. default: true
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17376. {
  17377. front: {
  17378. height: math.unit(8, "feet"),
  17379. weight: math.unit(225, "lb"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/talana/front.svg",
  17383. extra: 1410 / 1300,
  17384. bottom: 0.015
  17385. }
  17386. },
  17387. frontDressed: {
  17388. height: math.unit(8, "feet"),
  17389. weight: math.unit(225, "lb"),
  17390. name: "Front (Dressed",
  17391. image: {
  17392. source: "./media/characters/talana/front-dressed.svg",
  17393. extra: 1410 / 1300,
  17394. bottom: 0.015
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(8, "feet"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17408. {
  17409. side: {
  17410. height: math.unit(7.2, "feet"),
  17411. weight: math.unit(150, "lb"),
  17412. name: "Side",
  17413. image: {
  17414. source: "./media/characters/xeauvok/side.svg",
  17415. extra: 1975 / 1523,
  17416. bottom: 0.07
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(7.2, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17430. {
  17431. side: {
  17432. height: math.unit(10, "feet"),
  17433. weight: math.unit(900, "kg"),
  17434. name: "Side",
  17435. image: {
  17436. source: "./media/characters/zara/side.svg",
  17437. extra: 504 / 498
  17438. }
  17439. },
  17440. },
  17441. [
  17442. {
  17443. name: "Normal",
  17444. height: math.unit(10, "feet"),
  17445. default: true
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17451. {
  17452. side: {
  17453. height: math.unit(6, "feet"),
  17454. weight: math.unit(150, "lb"),
  17455. name: "Side",
  17456. image: {
  17457. source: "./media/characters/richard-dragon/side.svg",
  17458. extra: 845 / 340,
  17459. bottom: 0.017
  17460. }
  17461. },
  17462. maw: {
  17463. height: math.unit(2.97, "feet"),
  17464. name: "Maw",
  17465. image: {
  17466. source: "./media/characters/richard-dragon/maw.svg"
  17467. }
  17468. },
  17469. },
  17470. [
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17475. {
  17476. front: {
  17477. height: math.unit(4, "feet"),
  17478. weight: math.unit(100, "lb"),
  17479. name: "Front",
  17480. image: {
  17481. source: "./media/characters/richard-smeargle/front.svg",
  17482. extra: 2952 / 2820,
  17483. bottom: 0.028
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(4, "feet"),
  17491. default: true
  17492. },
  17493. {
  17494. name: "Dynamax",
  17495. height: math.unit(20, "meters")
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(6, "feet"),
  17504. weight: math.unit(110, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/klay/front.svg",
  17508. extra: 962 / 883,
  17509. bottom: 0.04
  17510. }
  17511. },
  17512. back: {
  17513. height: math.unit(6, "feet"),
  17514. weight: math.unit(110, "lb"),
  17515. name: "Back",
  17516. image: {
  17517. source: "./media/characters/klay/back.svg",
  17518. extra: 962 / 883
  17519. }
  17520. },
  17521. beans: {
  17522. height: math.unit(1.15, "feet"),
  17523. name: "Beans",
  17524. image: {
  17525. source: "./media/characters/klay/beans.svg"
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Micro",
  17532. height: math.unit(6, "inches")
  17533. },
  17534. {
  17535. name: "Mini",
  17536. height: math.unit(3, "feet")
  17537. },
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(6, "feet"),
  17541. default: true
  17542. },
  17543. {
  17544. name: "Big",
  17545. height: math.unit(25, "feet")
  17546. },
  17547. {
  17548. name: "Macro",
  17549. height: math.unit(100, "feet")
  17550. },
  17551. {
  17552. name: "Megamacro",
  17553. height: math.unit(400, "feet")
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17559. {
  17560. front: {
  17561. height: math.unit(6, "feet"),
  17562. weight: math.unit(160, "lb"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/marcus/front.svg",
  17566. extra: 734 / 676,
  17567. bottom: 0.03
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Little",
  17574. height: math.unit(6, "feet")
  17575. },
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(110, "feet"),
  17579. default: true
  17580. },
  17581. {
  17582. name: "Macro",
  17583. height: math.unit(250, "feet")
  17584. },
  17585. {
  17586. name: "Megamacro",
  17587. height: math.unit(1000, "feet")
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(7, "feet"),
  17596. weight: math.unit(275, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/claude-delroute/front.svg",
  17600. extra: 230 / 214,
  17601. bottom: 0.007
  17602. }
  17603. },
  17604. side: {
  17605. height: math.unit(7, "feet"),
  17606. weight: math.unit(275, "lb"),
  17607. name: "Side",
  17608. image: {
  17609. source: "./media/characters/claude-delroute/side.svg",
  17610. extra: 222 / 214,
  17611. bottom: 0.01
  17612. }
  17613. },
  17614. back: {
  17615. height: math.unit(7, "feet"),
  17616. weight: math.unit(275, "lb"),
  17617. name: "Back",
  17618. image: {
  17619. source: "./media/characters/claude-delroute/back.svg",
  17620. extra: 230 / 214,
  17621. bottom: 0.015
  17622. }
  17623. },
  17624. maw: {
  17625. height: math.unit(0.6407, "meters"),
  17626. name: "Maw",
  17627. image: {
  17628. source: "./media/characters/claude-delroute/maw.svg"
  17629. }
  17630. },
  17631. },
  17632. [
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(7, "feet"),
  17636. default: true
  17637. },
  17638. {
  17639. name: "Lorge",
  17640. height: math.unit(20, "feet")
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(8 + 4 / 12, "feet"),
  17649. weight: math.unit(600, "lb"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/dragonien/front.svg",
  17653. extra: 100 / 94,
  17654. bottom: 3.3 / 103.3445
  17655. }
  17656. },
  17657. back: {
  17658. height: math.unit(8 + 4 / 12, "feet"),
  17659. weight: math.unit(600, "lb"),
  17660. name: "Back",
  17661. image: {
  17662. source: "./media/characters/dragonien/back.svg",
  17663. extra: 776 / 746,
  17664. bottom: 6.4 / 782.0616
  17665. }
  17666. },
  17667. foot: {
  17668. height: math.unit(1.54, "feet"),
  17669. name: "Foot",
  17670. image: {
  17671. source: "./media/characters/dragonien/foot.svg",
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(8 + 4 / 12, "feet"),
  17679. default: true
  17680. },
  17681. {
  17682. name: "Macro",
  17683. height: math.unit(200, "feet")
  17684. },
  17685. {
  17686. name: "Megamacro",
  17687. height: math.unit(1, "mile")
  17688. },
  17689. {
  17690. name: "Gigamacro",
  17691. height: math.unit(1000, "miles")
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(5 + 2 / 12, "feet"),
  17700. weight: math.unit(110, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/desta/front.svg",
  17704. extra: 767 / 726,
  17705. bottom: 11.7 / 779
  17706. }
  17707. },
  17708. back: {
  17709. height: math.unit(5 + 2 / 12, "feet"),
  17710. weight: math.unit(110, "lb"),
  17711. name: "Back",
  17712. image: {
  17713. source: "./media/characters/desta/back.svg",
  17714. extra: 777 / 728,
  17715. bottom: 6 / 784
  17716. }
  17717. },
  17718. frontAlt: {
  17719. height: math.unit(5 + 2 / 12, "feet"),
  17720. weight: math.unit(110, "lb"),
  17721. name: "Front",
  17722. image: {
  17723. source: "./media/characters/desta/front-alt.svg",
  17724. extra: 1482 / 1417
  17725. }
  17726. },
  17727. side: {
  17728. height: math.unit(5 + 2 / 12, "feet"),
  17729. weight: math.unit(110, "lb"),
  17730. name: "Side",
  17731. image: {
  17732. source: "./media/characters/desta/side.svg",
  17733. extra: 2579 / 2491,
  17734. bottom: 0.053
  17735. }
  17736. },
  17737. },
  17738. [
  17739. {
  17740. name: "Micro",
  17741. height: math.unit(6, "inches")
  17742. },
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(5 + 2 / 12, "feet"),
  17746. default: true
  17747. },
  17748. {
  17749. name: "Macro",
  17750. height: math.unit(62, "feet")
  17751. },
  17752. {
  17753. name: "Megamacro",
  17754. height: math.unit(1800, "feet")
  17755. },
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17760. {
  17761. front: {
  17762. height: math.unit(10, "feet"),
  17763. weight: math.unit(700, "lb"),
  17764. name: "Front",
  17765. image: {
  17766. source: "./media/characters/storm-alystar/front.svg",
  17767. extra: 2112 / 1898,
  17768. bottom: 0.034
  17769. }
  17770. },
  17771. },
  17772. [
  17773. {
  17774. name: "Micro",
  17775. height: math.unit(3.5, "inches")
  17776. },
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(10, "feet"),
  17780. default: true
  17781. },
  17782. {
  17783. name: "Macro",
  17784. height: math.unit(400, "feet")
  17785. },
  17786. {
  17787. name: "Deific",
  17788. height: math.unit(60, "miles")
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(2.35, "meters"),
  17797. weight: math.unit(119, "kg"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/ilia/front.svg",
  17801. extra: 1285 / 1255,
  17802. bottom: 0.06
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(2.35, "meters")
  17810. },
  17811. {
  17812. name: "Macro",
  17813. height: math.unit(140, "meters"),
  17814. default: true
  17815. },
  17816. {
  17817. name: "Megamacro",
  17818. height: math.unit(100, "miles")
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17824. {
  17825. front: {
  17826. height: math.unit(6 + 5 / 12, "feet"),
  17827. weight: math.unit(190, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/kingdead/front.svg",
  17831. extra: 1228 / 1177
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Micro",
  17838. height: math.unit(7, "inches")
  17839. },
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(6 + 5 / 12, "feet")
  17843. },
  17844. {
  17845. name: "Macro",
  17846. height: math.unit(150, "feet"),
  17847. default: true
  17848. },
  17849. {
  17850. name: "Megamacro",
  17851. height: math.unit(200, "miles")
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(8, "feet"),
  17860. weight: math.unit(600, "lb"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/kyrehx/front.svg",
  17864. extra: 1195 / 1095,
  17865. bottom: 0.034
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Micro",
  17872. height: math.unit(2, "inches")
  17873. },
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(8, "feet"),
  17877. default: true
  17878. },
  17879. {
  17880. name: "Macro",
  17881. height: math.unit(255, "feet")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17890. weight: math.unit(184, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/xang/front.svg",
  17894. extra: 845 / 755
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17902. default: true
  17903. },
  17904. {
  17905. name: "Macro",
  17906. height: math.unit(0.935 * 146, "feet")
  17907. },
  17908. {
  17909. name: "Megamacro",
  17910. height: math.unit(0.935 * 3, "miles")
  17911. },
  17912. ]
  17913. ))
  17914. characterMakers.push(() => makeCharacter(
  17915. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17916. {
  17917. frontDressed: {
  17918. height: math.unit(5 + 7 / 12, "feet"),
  17919. weight: math.unit(140, "lb"),
  17920. name: "Front (Dressed)",
  17921. image: {
  17922. source: "./media/characters/doc-weardno/front-dressed.svg",
  17923. extra: 263 / 234
  17924. }
  17925. },
  17926. backDressed: {
  17927. height: math.unit(5 + 7 / 12, "feet"),
  17928. weight: math.unit(140, "lb"),
  17929. name: "Back (Dressed)",
  17930. image: {
  17931. source: "./media/characters/doc-weardno/back-dressed.svg",
  17932. extra: 266 / 238
  17933. }
  17934. },
  17935. front: {
  17936. height: math.unit(5 + 7 / 12, "feet"),
  17937. weight: math.unit(140, "lb"),
  17938. name: "Front",
  17939. image: {
  17940. source: "./media/characters/doc-weardno/front.svg",
  17941. extra: 254 / 233
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Micro",
  17948. height: math.unit(3, "inches")
  17949. },
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(5 + 7 / 12, "feet"),
  17953. default: true
  17954. },
  17955. {
  17956. name: "Macro",
  17957. height: math.unit(25, "feet")
  17958. },
  17959. {
  17960. name: "Megamacro",
  17961. height: math.unit(2, "miles")
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17967. {
  17968. front: {
  17969. height: math.unit(6 + 2 / 12, "feet"),
  17970. weight: math.unit(153, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/seth-whilst/front.svg",
  17974. bottom: 0.07
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Micro",
  17981. height: math.unit(5, "inches")
  17982. },
  17983. {
  17984. name: "Normal",
  17985. height: math.unit(6 + 2 / 12, "feet"),
  17986. default: true
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17992. {
  17993. front: {
  17994. height: math.unit(3, "inches"),
  17995. weight: math.unit(8, "grams"),
  17996. name: "Front",
  17997. image: {
  17998. source: "./media/characters/pocket-jabari/front.svg",
  17999. extra: 1024 / 974,
  18000. bottom: 0.039
  18001. }
  18002. },
  18003. },
  18004. [
  18005. {
  18006. name: "Minimicro",
  18007. height: math.unit(8, "mm")
  18008. },
  18009. {
  18010. name: "Micro",
  18011. height: math.unit(3, "inches"),
  18012. default: true
  18013. },
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(3, "feet")
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18022. {
  18023. front: {
  18024. height: math.unit(15, "feet"),
  18025. weight: math.unit(3280, "lb"),
  18026. name: "Front",
  18027. image: {
  18028. source: "./media/characters/sapphy/front.svg",
  18029. extra: 671 / 577,
  18030. bottom: 0.085
  18031. }
  18032. },
  18033. back: {
  18034. height: math.unit(15, "feet"),
  18035. weight: math.unit(3280, "lb"),
  18036. name: "Back",
  18037. image: {
  18038. source: "./media/characters/sapphy/back.svg",
  18039. extra: 631 / 607,
  18040. bottom: 0.045
  18041. }
  18042. },
  18043. },
  18044. [
  18045. {
  18046. name: "Normal",
  18047. height: math.unit(15, "feet")
  18048. },
  18049. {
  18050. name: "Casual Macro",
  18051. height: math.unit(120, "feet")
  18052. },
  18053. {
  18054. name: "Macro",
  18055. height: math.unit(2150, "feet"),
  18056. default: true
  18057. },
  18058. {
  18059. name: "Megamacro",
  18060. height: math.unit(8, "miles")
  18061. },
  18062. {
  18063. name: "Galaxy Mom",
  18064. height: math.unit(6, "megalightyears")
  18065. },
  18066. ]
  18067. ))
  18068. characterMakers.push(() => makeCharacter(
  18069. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18070. {
  18071. front: {
  18072. height: math.unit(6, "feet"),
  18073. weight: math.unit(170, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/kiro/front.svg",
  18077. extra: 1064 / 1012,
  18078. bottom: 0.052
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Micro",
  18085. height: math.unit(6, "inches")
  18086. },
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(6, "feet"),
  18090. default: true
  18091. },
  18092. {
  18093. name: "Macro",
  18094. height: math.unit(72, "feet")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(5 + 9 / 12, "feet"),
  18103. weight: math.unit(175, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/irishfox/front.svg",
  18107. extra: 1912 / 1680,
  18108. bottom: 0.02
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Nano",
  18115. height: math.unit(1, "mm")
  18116. },
  18117. {
  18118. name: "Micro",
  18119. height: math.unit(2, "inches")
  18120. },
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(5 + 9 / 12, "feet"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(45, "feet")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(6 + 1 / 12, "feet"),
  18137. weight: math.unit(150, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/aronai-sieyes/front.svg",
  18141. extra: 1556 / 1480,
  18142. bottom: 0.015
  18143. }
  18144. },
  18145. side: {
  18146. height: math.unit(6 + 1 / 12, "feet"),
  18147. weight: math.unit(150, "lb"),
  18148. name: "Side",
  18149. image: {
  18150. source: "./media/characters/aronai-sieyes/side.svg",
  18151. extra: 1433 / 1390,
  18152. bottom: 0.0393
  18153. }
  18154. },
  18155. back: {
  18156. height: math.unit(6 + 1 / 12, "feet"),
  18157. weight: math.unit(150, "lb"),
  18158. name: "Back",
  18159. image: {
  18160. source: "./media/characters/aronai-sieyes/back.svg",
  18161. extra: 1544 / 1494,
  18162. bottom: 0.02
  18163. }
  18164. },
  18165. frontClothed: {
  18166. height: math.unit(6 + 1 / 12, "feet"),
  18167. weight: math.unit(150, "lb"),
  18168. name: "Front (Clothed)",
  18169. image: {
  18170. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18171. extra: 1582 / 1527
  18172. }
  18173. },
  18174. feral: {
  18175. height: math.unit(18, "feet"),
  18176. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18177. name: "Feral",
  18178. image: {
  18179. source: "./media/characters/aronai-sieyes/feral.svg",
  18180. extra: 1530 / 1240,
  18181. bottom: 0.035
  18182. }
  18183. },
  18184. },
  18185. [
  18186. {
  18187. name: "Micro",
  18188. height: math.unit(2, "inches")
  18189. },
  18190. {
  18191. name: "Normal",
  18192. height: math.unit(6 + 1 / 12, "feet"),
  18193. default: true
  18194. }
  18195. ]
  18196. ))
  18197. characterMakers.push(() => makeCharacter(
  18198. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18199. {
  18200. front: {
  18201. height: math.unit(12, "feet"),
  18202. weight: math.unit(410, "kg"),
  18203. name: "Front",
  18204. image: {
  18205. source: "./media/characters/xuna/front.svg",
  18206. extra: 2184 / 1980
  18207. }
  18208. },
  18209. side: {
  18210. height: math.unit(12, "feet"),
  18211. weight: math.unit(410, "kg"),
  18212. name: "Side",
  18213. image: {
  18214. source: "./media/characters/xuna/side.svg",
  18215. extra: 2184 / 1980
  18216. }
  18217. },
  18218. back: {
  18219. height: math.unit(12, "feet"),
  18220. weight: math.unit(410, "kg"),
  18221. name: "Back",
  18222. image: {
  18223. source: "./media/characters/xuna/back.svg",
  18224. extra: 2184 / 1980
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Nano glow",
  18231. height: math.unit(10, "nm")
  18232. },
  18233. {
  18234. name: "Micro floof",
  18235. height: math.unit(0.3, "m")
  18236. },
  18237. {
  18238. name: "Huggable softy boi",
  18239. height: math.unit(3.6576, "m"),
  18240. default: true
  18241. },
  18242. {
  18243. name: "Admirable floof",
  18244. height: math.unit(80, "meters")
  18245. },
  18246. {
  18247. name: "Gentle macro",
  18248. height: math.unit(300, "meters")
  18249. },
  18250. {
  18251. name: "Very careful floof",
  18252. height: math.unit(3200, "meters")
  18253. },
  18254. {
  18255. name: "The mega floof",
  18256. height: math.unit(36000, "meters")
  18257. },
  18258. {
  18259. name: "Giga-fur-Wicker",
  18260. height: math.unit(4800000, "meters")
  18261. },
  18262. {
  18263. name: "Licky world",
  18264. height: math.unit(20000000, "meters")
  18265. },
  18266. {
  18267. name: "Floofy cyan sun",
  18268. height: math.unit(1500000000, "meters")
  18269. },
  18270. {
  18271. name: "Milky Wicker",
  18272. height: math.unit(1000000000000000000000, "meters")
  18273. },
  18274. {
  18275. name: "The observing Wicker",
  18276. height: math.unit(999999999999999999999999999, "meters")
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18282. {
  18283. front: {
  18284. height: math.unit(5 + 9 / 12, "feet"),
  18285. weight: math.unit(150, "lb"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/arokha-sieyes/front.svg",
  18289. extra: 1425 / 1284,
  18290. bottom: 0.05
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(5 + 9 / 12, "feet")
  18298. },
  18299. {
  18300. name: "Macro",
  18301. height: math.unit(30, "meters"),
  18302. default: true
  18303. },
  18304. ]
  18305. ))
  18306. characterMakers.push(() => makeCharacter(
  18307. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18308. {
  18309. front: {
  18310. height: math.unit(6, "feet"),
  18311. weight: math.unit(180, "lb"),
  18312. name: "Front",
  18313. image: {
  18314. source: "./media/characters/arokh-sieyes/front.svg",
  18315. extra: 1830 / 1769,
  18316. bottom: 0.01
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(6, "feet")
  18324. },
  18325. {
  18326. name: "Macro",
  18327. height: math.unit(30, "meters"),
  18328. default: true
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18334. {
  18335. side: {
  18336. height: math.unit(13 + 1 / 12, "feet"),
  18337. weight: math.unit(8.5, "tonnes"),
  18338. name: "Side",
  18339. image: {
  18340. source: "./media/characters/goldeneye/side.svg",
  18341. extra: 1182 / 778,
  18342. bottom: 0.067
  18343. }
  18344. },
  18345. paw: {
  18346. height: math.unit(3.4, "feet"),
  18347. name: "Paw",
  18348. image: {
  18349. source: "./media/characters/goldeneye/paw.svg"
  18350. }
  18351. },
  18352. },
  18353. [
  18354. {
  18355. name: "Normal",
  18356. height: math.unit(13 + 1 / 12, "feet"),
  18357. default: true
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18363. {
  18364. front: {
  18365. height: math.unit(6 + 1 / 12, "feet"),
  18366. weight: math.unit(210, "lb"),
  18367. name: "Front",
  18368. image: {
  18369. source: "./media/characters/leonardo-lycheborne/front.svg",
  18370. extra: 390 / 365,
  18371. bottom: 0.032
  18372. }
  18373. },
  18374. side: {
  18375. height: math.unit(6 + 1 / 12, "feet"),
  18376. weight: math.unit(210, "lb"),
  18377. name: "Side",
  18378. image: {
  18379. source: "./media/characters/leonardo-lycheborne/side.svg",
  18380. extra: 390 / 365,
  18381. bottom: 0.005
  18382. }
  18383. },
  18384. back: {
  18385. height: math.unit(6 + 1 / 12, "feet"),
  18386. weight: math.unit(210, "lb"),
  18387. name: "Back",
  18388. image: {
  18389. source: "./media/characters/leonardo-lycheborne/back.svg",
  18390. extra: 392 / 366,
  18391. bottom: 0.01
  18392. }
  18393. },
  18394. hand: {
  18395. height: math.unit(1.08, "feet"),
  18396. name: "Hand",
  18397. image: {
  18398. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18399. }
  18400. },
  18401. foot: {
  18402. height: math.unit(1.32, "feet"),
  18403. name: "Foot",
  18404. image: {
  18405. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18406. }
  18407. },
  18408. were: {
  18409. height: math.unit(20, "feet"),
  18410. weight: math.unit(7800, "lb"),
  18411. name: "Were",
  18412. image: {
  18413. source: "./media/characters/leonardo-lycheborne/were.svg",
  18414. extra: 308 / 294,
  18415. bottom: 0.048
  18416. }
  18417. },
  18418. feral: {
  18419. height: math.unit(7.5, "feet"),
  18420. weight: math.unit(600, "lb"),
  18421. name: "Feral",
  18422. image: {
  18423. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18424. extra: 210 / 186,
  18425. bottom: 0.108
  18426. }
  18427. },
  18428. taur: {
  18429. height: math.unit(11, "feet"),
  18430. weight: math.unit(3300, "lb"),
  18431. name: "Taur",
  18432. image: {
  18433. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18434. extra: 320 / 303,
  18435. bottom: 0.025
  18436. }
  18437. },
  18438. barghest: {
  18439. height: math.unit(11, "feet"),
  18440. weight: math.unit(1300, "lb"),
  18441. name: "Barghest",
  18442. image: {
  18443. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18444. extra: 323 / 302,
  18445. bottom: 0.027
  18446. }
  18447. },
  18448. dick: {
  18449. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18450. name: "Dick",
  18451. image: {
  18452. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18453. }
  18454. },
  18455. dickWere: {
  18456. height: math.unit((20) / 3.8, "feet"),
  18457. name: "Dick (Were)",
  18458. image: {
  18459. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(6 + 1 / 12, "feet"),
  18467. default: true
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18473. {
  18474. front: {
  18475. height: math.unit(10, "feet"),
  18476. weight: math.unit(350, "lb"),
  18477. name: "Front",
  18478. image: {
  18479. source: "./media/characters/jet/front.svg",
  18480. extra: 2050 / 1980,
  18481. bottom: 0.013
  18482. }
  18483. },
  18484. back: {
  18485. height: math.unit(10, "feet"),
  18486. weight: math.unit(350, "lb"),
  18487. name: "Back",
  18488. image: {
  18489. source: "./media/characters/jet/back.svg",
  18490. extra: 2050 / 1980,
  18491. bottom: 0.013
  18492. }
  18493. },
  18494. },
  18495. [
  18496. {
  18497. name: "Micro",
  18498. height: math.unit(6, "inches")
  18499. },
  18500. {
  18501. name: "Normal",
  18502. height: math.unit(10, "feet"),
  18503. default: true
  18504. },
  18505. {
  18506. name: "Macro",
  18507. height: math.unit(100, "feet")
  18508. },
  18509. ]
  18510. ))
  18511. characterMakers.push(() => makeCharacter(
  18512. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18513. {
  18514. front: {
  18515. height: math.unit(15, "feet"),
  18516. weight: math.unit(2800, "lb"),
  18517. name: "Front",
  18518. image: {
  18519. source: "./media/characters/tanarath/front.svg",
  18520. extra: 2392 / 2220,
  18521. bottom: 0.03
  18522. }
  18523. },
  18524. back: {
  18525. height: math.unit(15, "feet"),
  18526. weight: math.unit(2800, "lb"),
  18527. name: "Back",
  18528. image: {
  18529. source: "./media/characters/tanarath/back.svg",
  18530. extra: 2392 / 2220,
  18531. bottom: 0.03
  18532. }
  18533. },
  18534. },
  18535. [
  18536. {
  18537. name: "Normal",
  18538. height: math.unit(15, "feet"),
  18539. default: true
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(7 + 1 / 12, "feet"),
  18548. weight: math.unit(175, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/patty-cattybatty/front.svg",
  18552. extra: 908 / 874,
  18553. bottom: 0.025
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Micro",
  18560. height: math.unit(1, "inch")
  18561. },
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(7 + 1 / 12, "feet")
  18565. },
  18566. {
  18567. name: "Mini Macro",
  18568. height: math.unit(155, "feet")
  18569. },
  18570. {
  18571. name: "Macro",
  18572. height: math.unit(1077, "feet")
  18573. },
  18574. {
  18575. name: "Mega Macro",
  18576. height: math.unit(47650, "feet"),
  18577. default: true
  18578. },
  18579. {
  18580. name: "Giga Macro",
  18581. height: math.unit(440, "miles")
  18582. },
  18583. {
  18584. name: "Tera Macro",
  18585. height: math.unit(8700, "miles")
  18586. },
  18587. {
  18588. name: "Planetary Macro",
  18589. height: math.unit(32700, "miles")
  18590. },
  18591. {
  18592. name: "Solar Macro",
  18593. height: math.unit(550000, "miles")
  18594. },
  18595. {
  18596. name: "Celestial Macro",
  18597. height: math.unit(2.5, "AU")
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18603. {
  18604. front: {
  18605. height: math.unit(4 + 5 / 12, "feet"),
  18606. weight: math.unit(90, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/cappu/front.svg",
  18610. extra: 1247 / 1152,
  18611. bottom: 0.012
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(4 + 5 / 12, "feet"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18625. {
  18626. frontDressed: {
  18627. height: math.unit(70, "cm"),
  18628. weight: math.unit(6, "kg"),
  18629. name: "Front (Dressed)",
  18630. image: {
  18631. source: "./media/characters/sebi/front-dressed.svg",
  18632. extra: 713.5 / 686.5,
  18633. bottom: 0.003
  18634. }
  18635. },
  18636. front: {
  18637. height: math.unit(70, "cm"),
  18638. weight: math.unit(5, "kg"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/sebi/front.svg",
  18642. extra: 713.5 / 686.5,
  18643. bottom: 0.003
  18644. }
  18645. }
  18646. },
  18647. [
  18648. {
  18649. name: "Normal",
  18650. height: math.unit(70, "cm"),
  18651. default: true
  18652. },
  18653. {
  18654. name: "Macro",
  18655. height: math.unit(8, "meters")
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18661. {
  18662. front: {
  18663. height: math.unit(6, "feet"),
  18664. weight: math.unit(150, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/typhek/front.svg",
  18668. extra: 1948 / 1929,
  18669. bottom: 0.025
  18670. }
  18671. },
  18672. side: {
  18673. height: math.unit(6, "feet"),
  18674. weight: math.unit(150, "lb"),
  18675. name: "Side",
  18676. image: {
  18677. source: "./media/characters/typhek/side.svg",
  18678. extra: 2034 / 2010,
  18679. bottom: 0.003
  18680. }
  18681. },
  18682. back: {
  18683. height: math.unit(6, "feet"),
  18684. weight: math.unit(150, "lb"),
  18685. name: "Back",
  18686. image: {
  18687. source: "./media/characters/typhek/back.svg",
  18688. extra: 2005 / 1978,
  18689. bottom: 0.004
  18690. }
  18691. },
  18692. palm: {
  18693. height: math.unit(1.2, "feet"),
  18694. name: "Palm",
  18695. image: {
  18696. source: "./media/characters/typhek/palm.svg"
  18697. }
  18698. },
  18699. fist: {
  18700. height: math.unit(1.1, "feet"),
  18701. name: "Fist",
  18702. image: {
  18703. source: "./media/characters/typhek/fist.svg"
  18704. }
  18705. },
  18706. foot: {
  18707. height: math.unit(1.57, "feet"),
  18708. name: "Foot",
  18709. image: {
  18710. source: "./media/characters/typhek/foot.svg"
  18711. }
  18712. },
  18713. sole: {
  18714. height: math.unit(2.05, "feet"),
  18715. name: "Sole",
  18716. image: {
  18717. source: "./media/characters/typhek/sole.svg"
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Macro",
  18724. height: math.unit(40, "stories"),
  18725. default: true
  18726. },
  18727. {
  18728. name: "Megamacro",
  18729. height: math.unit(1, "mile")
  18730. },
  18731. {
  18732. name: "Gigamacro",
  18733. height: math.unit(4000, "solarradii")
  18734. },
  18735. {
  18736. name: "Universal",
  18737. height: math.unit(1.1, "universes")
  18738. }
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18743. {
  18744. side: {
  18745. height: math.unit(5 + 7 / 12, "feet"),
  18746. weight: math.unit(150, "lb"),
  18747. name: "Side",
  18748. image: {
  18749. source: "./media/characters/kassy/side.svg",
  18750. extra: 1280 / 1225,
  18751. bottom: 0.002
  18752. }
  18753. },
  18754. front: {
  18755. height: math.unit(5 + 7 / 12, "feet"),
  18756. weight: math.unit(150, "lb"),
  18757. name: "Front",
  18758. image: {
  18759. source: "./media/characters/kassy/front.svg",
  18760. extra: 1280 / 1225,
  18761. bottom: 0.025
  18762. }
  18763. },
  18764. back: {
  18765. height: math.unit(5 + 7 / 12, "feet"),
  18766. weight: math.unit(150, "lb"),
  18767. name: "Back",
  18768. image: {
  18769. source: "./media/characters/kassy/back.svg",
  18770. extra: 1280 / 1225,
  18771. bottom: 0.002
  18772. }
  18773. },
  18774. foot: {
  18775. height: math.unit(1.266, "feet"),
  18776. name: "Foot",
  18777. image: {
  18778. source: "./media/characters/kassy/foot.svg"
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Normal",
  18785. height: math.unit(5 + 7 / 12, "feet")
  18786. },
  18787. {
  18788. name: "Macro",
  18789. height: math.unit(137, "feet"),
  18790. default: true
  18791. },
  18792. {
  18793. name: "Megamacro",
  18794. height: math.unit(1, "mile")
  18795. },
  18796. ]
  18797. ))
  18798. characterMakers.push(() => makeCharacter(
  18799. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18800. {
  18801. front: {
  18802. height: math.unit(6 + 1 / 12, "feet"),
  18803. weight: math.unit(200, "lb"),
  18804. name: "Front",
  18805. image: {
  18806. source: "./media/characters/neil/front.svg",
  18807. extra: 1326 / 1250,
  18808. bottom: 0.023
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(6 + 1 / 12, "feet"),
  18816. default: true
  18817. },
  18818. {
  18819. name: "Macro",
  18820. height: math.unit(200, "feet")
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(5 + 9 / 12, "feet"),
  18829. weight: math.unit(190, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/atticus/front.svg",
  18833. extra: 2934 / 2785,
  18834. bottom: 0.025
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(5 + 9 / 12, "feet"),
  18842. default: true
  18843. },
  18844. {
  18845. name: "Macro",
  18846. height: math.unit(180, "feet")
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18852. {
  18853. side: {
  18854. height: math.unit(9, "feet"),
  18855. weight: math.unit(650, "lb"),
  18856. name: "Side",
  18857. image: {
  18858. source: "./media/characters/milo/side.svg",
  18859. extra: 2644 / 2310,
  18860. bottom: 0.032
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(9, "feet"),
  18868. default: true
  18869. },
  18870. {
  18871. name: "Macro",
  18872. height: math.unit(300, "feet")
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18878. {
  18879. side: {
  18880. height: math.unit(8, "meters"),
  18881. weight: math.unit(90000, "kg"),
  18882. name: "Side",
  18883. image: {
  18884. source: "./media/characters/ijzer/side.svg",
  18885. extra: 2756 / 1600,
  18886. bottom: 0.01
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Small",
  18893. height: math.unit(3, "meters")
  18894. },
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(8, "meters"),
  18898. default: true
  18899. },
  18900. {
  18901. name: "Normal+",
  18902. height: math.unit(10, "meters")
  18903. },
  18904. {
  18905. name: "Bigger",
  18906. height: math.unit(24, "meters")
  18907. },
  18908. {
  18909. name: "Huge",
  18910. height: math.unit(80, "meters")
  18911. },
  18912. ]
  18913. ))
  18914. characterMakers.push(() => makeCharacter(
  18915. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18916. {
  18917. front: {
  18918. height: math.unit(6 + 2 / 12, "feet"),
  18919. weight: math.unit(153, "lb"),
  18920. name: "Front",
  18921. image: {
  18922. source: "./media/characters/luca-cervicum/front.svg",
  18923. extra: 370 / 327,
  18924. bottom: 0.015
  18925. }
  18926. },
  18927. back: {
  18928. height: math.unit(6 + 2 / 12, "feet"),
  18929. weight: math.unit(153, "lb"),
  18930. name: "Back",
  18931. image: {
  18932. source: "./media/characters/luca-cervicum/back.svg",
  18933. extra: 367 / 333,
  18934. bottom: 0.005
  18935. }
  18936. },
  18937. frontGear: {
  18938. height: math.unit(6 + 2 / 12, "feet"),
  18939. weight: math.unit(173, "lb"),
  18940. name: "Front (Gear)",
  18941. image: {
  18942. source: "./media/characters/luca-cervicum/front-gear.svg",
  18943. extra: 377 / 333,
  18944. bottom: 0.006
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(6 + 2 / 12, "feet"),
  18952. default: true
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(6 + 1 / 12, "feet"),
  18961. weight: math.unit(304, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/oliver/front.svg",
  18965. extra: 157 / 143,
  18966. bottom: 0.08
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Normal",
  18973. height: math.unit(6 + 1 / 12, "feet"),
  18974. default: true
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18980. {
  18981. front: {
  18982. height: math.unit(5 + 7 / 12, "feet"),
  18983. weight: math.unit(140, "lb"),
  18984. name: "Front",
  18985. image: {
  18986. source: "./media/characters/shane/front.svg",
  18987. extra: 304 / 289,
  18988. bottom: 0.005
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Normal",
  18995. height: math.unit(5 + 7 / 12, "feet"),
  18996. default: true
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19002. {
  19003. front: {
  19004. height: math.unit(5 + 9 / 12, "feet"),
  19005. weight: math.unit(178, "lb"),
  19006. name: "Front",
  19007. image: {
  19008. source: "./media/characters/shin/front.svg",
  19009. extra: 159 / 151,
  19010. bottom: 0.015
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(5 + 9 / 12, "feet"),
  19018. default: true
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19024. {
  19025. front: {
  19026. height: math.unit(5 + 10 / 12, "feet"),
  19027. weight: math.unit(168, "lb"),
  19028. name: "Front",
  19029. image: {
  19030. source: "./media/characters/xerxes/front.svg",
  19031. extra: 282 / 260,
  19032. bottom: 0.045
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(5 + 10 / 12, "feet"),
  19040. default: true
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19046. {
  19047. front: {
  19048. height: math.unit(6 + 7 / 12, "feet"),
  19049. weight: math.unit(208, "lb"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/chaska/front.svg",
  19053. extra: 332 / 319,
  19054. bottom: 0.015
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(6 + 7 / 12, "feet"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(5 + 8 / 12, "feet"),
  19071. weight: math.unit(208, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/enuk/front.svg",
  19075. extra: 437 / 406,
  19076. bottom: 0.02
  19077. }
  19078. },
  19079. },
  19080. [
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(5 + 8 / 12, "feet"),
  19084. default: true
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(5 + 10 / 12, "feet"),
  19093. weight: math.unit(252, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/bruun/front.svg",
  19097. extra: 197 / 187,
  19098. bottom: 0.012
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(5 + 10 / 12, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(6 + 10 / 12, "feet"),
  19115. weight: math.unit(255, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/alexeev/front.svg",
  19119. extra: 213 / 200,
  19120. bottom: 0.05
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(6 + 10 / 12, "feet"),
  19128. default: true
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19134. {
  19135. front: {
  19136. height: math.unit(2 + 8 / 12, "feet"),
  19137. weight: math.unit(22, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/evelyn/front.svg",
  19141. extra: 208 / 180
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Normal",
  19148. height: math.unit(2 + 8 / 12, "feet"),
  19149. default: true
  19150. },
  19151. ]
  19152. ))
  19153. characterMakers.push(() => makeCharacter(
  19154. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19155. {
  19156. front: {
  19157. height: math.unit(5 + 9 / 12, "feet"),
  19158. weight: math.unit(139, "lb"),
  19159. name: "Front",
  19160. image: {
  19161. source: "./media/characters/inca/front.svg",
  19162. extra: 294 / 291,
  19163. bottom: 0.03
  19164. }
  19165. },
  19166. },
  19167. [
  19168. {
  19169. name: "Normal",
  19170. height: math.unit(5 + 9 / 12, "feet"),
  19171. default: true
  19172. },
  19173. ]
  19174. ))
  19175. characterMakers.push(() => makeCharacter(
  19176. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19177. {
  19178. front: {
  19179. height: math.unit(5 + 1 / 12, "feet"),
  19180. weight: math.unit(84, "lb"),
  19181. name: "Front",
  19182. image: {
  19183. source: "./media/characters/magdalene/front.svg",
  19184. extra: 293 / 273
  19185. }
  19186. },
  19187. },
  19188. [
  19189. {
  19190. name: "Normal",
  19191. height: math.unit(5 + 1 / 12, "feet"),
  19192. default: true
  19193. },
  19194. ]
  19195. ))
  19196. characterMakers.push(() => makeCharacter(
  19197. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19198. {
  19199. front: {
  19200. height: math.unit(6 + 3 / 12, "feet"),
  19201. weight: math.unit(185, "lb"),
  19202. name: "Front",
  19203. image: {
  19204. source: "./media/characters/mera/front.svg",
  19205. extra: 291 / 277,
  19206. bottom: 0.03
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(6 + 3 / 12, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(6 + 7 / 12, "feet"),
  19223. weight: math.unit(160, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/ceres/front.svg",
  19227. extra: 1023 / 950,
  19228. bottom: 0.027
  19229. }
  19230. },
  19231. back: {
  19232. height: math.unit(6 + 7 / 12, "feet"),
  19233. weight: math.unit(160, "lb"),
  19234. name: "Back",
  19235. image: {
  19236. source: "./media/characters/ceres/back.svg",
  19237. extra: 1023 / 950
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Normal",
  19244. height: math.unit(6 + 7 / 12, "feet"),
  19245. default: true
  19246. },
  19247. ]
  19248. ))
  19249. characterMakers.push(() => makeCharacter(
  19250. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19251. {
  19252. front: {
  19253. height: math.unit(5 + 10 / 12, "feet"),
  19254. weight: math.unit(150, "lb"),
  19255. name: "Front",
  19256. image: {
  19257. source: "./media/characters/kris/front.svg",
  19258. extra: 885 / 803,
  19259. bottom: 0.03
  19260. }
  19261. },
  19262. },
  19263. [
  19264. {
  19265. name: "Normal",
  19266. height: math.unit(5 + 10 / 12, "feet"),
  19267. default: true
  19268. },
  19269. ]
  19270. ))
  19271. characterMakers.push(() => makeCharacter(
  19272. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19273. {
  19274. front: {
  19275. height: math.unit(7, "feet"),
  19276. weight: math.unit(120, "kg"),
  19277. name: "Front",
  19278. image: {
  19279. source: "./media/characters/taluthus/front.svg",
  19280. extra: 903 / 833,
  19281. bottom: 0.015
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Normal",
  19288. height: math.unit(7, "feet"),
  19289. default: true
  19290. },
  19291. {
  19292. name: "Macro",
  19293. height: math.unit(300, "feet")
  19294. },
  19295. ]
  19296. ))
  19297. characterMakers.push(() => makeCharacter(
  19298. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19299. {
  19300. front: {
  19301. height: math.unit(5 + 9 / 12, "feet"),
  19302. weight: math.unit(145, "lb"),
  19303. name: "Front",
  19304. image: {
  19305. source: "./media/characters/dawn/front.svg",
  19306. extra: 2094 / 2016,
  19307. bottom: 0.025
  19308. }
  19309. },
  19310. back: {
  19311. height: math.unit(5 + 9 / 12, "feet"),
  19312. weight: math.unit(160, "lb"),
  19313. name: "Back",
  19314. image: {
  19315. source: "./media/characters/dawn/back.svg",
  19316. extra: 2112 / 2080,
  19317. bottom: 0.005
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(6 + 7 / 12, "feet"),
  19325. default: true
  19326. },
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19331. {
  19332. anthro: {
  19333. height: math.unit(8 + 3 / 12, "feet"),
  19334. weight: math.unit(450, "lb"),
  19335. name: "Anthro",
  19336. image: {
  19337. source: "./media/characters/arador/anthro.svg",
  19338. extra: 1835 / 1718,
  19339. bottom: 0.025
  19340. }
  19341. },
  19342. feral: {
  19343. height: math.unit(4, "feet"),
  19344. weight: math.unit(200, "lb"),
  19345. name: "Feral",
  19346. image: {
  19347. source: "./media/characters/arador/feral.svg",
  19348. extra: 1683 / 1514,
  19349. bottom: 0.07
  19350. }
  19351. },
  19352. },
  19353. [
  19354. {
  19355. name: "Normal",
  19356. height: math.unit(8 + 3 / 12, "feet")
  19357. },
  19358. {
  19359. name: "Macro",
  19360. height: math.unit(82.5, "feet"),
  19361. default: true
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19367. {
  19368. front: {
  19369. height: math.unit(5 + 10 / 12, "feet"),
  19370. weight: math.unit(125, "lb"),
  19371. name: "Front",
  19372. image: {
  19373. source: "./media/characters/dharsi/front.svg",
  19374. extra: 716 / 630,
  19375. bottom: 0.035
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Nano",
  19382. height: math.unit(100, "nm")
  19383. },
  19384. {
  19385. name: "Micro",
  19386. height: math.unit(2, "inches")
  19387. },
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(5 + 10 / 12, "feet"),
  19391. default: true
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(1000, "feet")
  19396. },
  19397. {
  19398. name: "Megamacro",
  19399. height: math.unit(10, "miles")
  19400. },
  19401. {
  19402. name: "Gigamacro",
  19403. height: math.unit(3000, "miles")
  19404. },
  19405. {
  19406. name: "Teramacro",
  19407. height: math.unit(500000, "miles")
  19408. },
  19409. {
  19410. name: "Teramacro+",
  19411. height: math.unit(30, "galaxies")
  19412. },
  19413. ]
  19414. ))
  19415. characterMakers.push(() => makeCharacter(
  19416. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19417. {
  19418. front: {
  19419. height: math.unit(6, "feet"),
  19420. weight: math.unit(150, "lb"),
  19421. name: "Front",
  19422. image: {
  19423. source: "./media/characters/deathy/front.svg",
  19424. extra: 1552 / 1463,
  19425. bottom: 0.025
  19426. }
  19427. },
  19428. side: {
  19429. height: math.unit(6, "feet"),
  19430. weight: math.unit(150, "lb"),
  19431. name: "Side",
  19432. image: {
  19433. source: "./media/characters/deathy/side.svg",
  19434. extra: 1604 / 1455,
  19435. bottom: 0.025
  19436. }
  19437. },
  19438. back: {
  19439. height: math.unit(6, "feet"),
  19440. weight: math.unit(150, "lb"),
  19441. name: "Back",
  19442. image: {
  19443. source: "./media/characters/deathy/back.svg",
  19444. extra: 1580 / 1463,
  19445. bottom: 0.005
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Micro",
  19452. height: math.unit(5, "millimeters")
  19453. },
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(6 + 5 / 12, "feet"),
  19457. default: true
  19458. },
  19459. ]
  19460. ))
  19461. characterMakers.push(() => makeCharacter(
  19462. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19463. {
  19464. front: {
  19465. height: math.unit(16, "feet"),
  19466. weight: math.unit(4000, "lb"),
  19467. name: "Front",
  19468. image: {
  19469. source: "./media/characters/juniper/front.svg",
  19470. bottom: 0.04
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Normal",
  19477. height: math.unit(16, "feet"),
  19478. default: true
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19484. {
  19485. front: {
  19486. height: math.unit(6, "feet"),
  19487. weight: math.unit(150, "lb"),
  19488. name: "Front",
  19489. image: {
  19490. source: "./media/characters/hipster/front.svg",
  19491. extra: 1312 / 1209,
  19492. bottom: 0.025
  19493. }
  19494. },
  19495. back: {
  19496. height: math.unit(6, "feet"),
  19497. weight: math.unit(150, "lb"),
  19498. name: "Back",
  19499. image: {
  19500. source: "./media/characters/hipster/back.svg",
  19501. extra: 1281 / 1196,
  19502. bottom: 0.01
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Micro",
  19509. height: math.unit(1, "mm")
  19510. },
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(4, "inches"),
  19514. default: true
  19515. },
  19516. {
  19517. name: "Macro",
  19518. height: math.unit(500, "feet")
  19519. },
  19520. {
  19521. name: "Megamacro",
  19522. height: math.unit(1000, "miles")
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19528. {
  19529. front: {
  19530. height: math.unit(6, "feet"),
  19531. weight: math.unit(150, "lb"),
  19532. name: "Front",
  19533. image: {
  19534. source: "./media/characters/tendirmuldr/front.svg",
  19535. extra: 1878 / 1772,
  19536. bottom: 0.015
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Megamacro",
  19543. height: math.unit(1500, "miles"),
  19544. default: true
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19550. {
  19551. front: {
  19552. height: math.unit(14, "feet"),
  19553. weight: math.unit(12000, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/mort/front.svg",
  19557. extra: 365 / 318,
  19558. bottom: 0.01
  19559. }
  19560. },
  19561. side: {
  19562. height: math.unit(14, "feet"),
  19563. weight: math.unit(12000, "lb"),
  19564. name: "Side",
  19565. image: {
  19566. source: "./media/characters/mort/side.svg",
  19567. extra: 365 / 318,
  19568. bottom: 0.052
  19569. },
  19570. default: true
  19571. },
  19572. back: {
  19573. height: math.unit(14, "feet"),
  19574. weight: math.unit(12000, "lb"),
  19575. name: "Back",
  19576. image: {
  19577. source: "./media/characters/mort/back.svg",
  19578. extra: 371 / 332,
  19579. bottom: 0.18
  19580. }
  19581. },
  19582. },
  19583. [
  19584. {
  19585. name: "Normal",
  19586. height: math.unit(14, "feet"),
  19587. default: true
  19588. },
  19589. ]
  19590. ))
  19591. characterMakers.push(() => makeCharacter(
  19592. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19593. {
  19594. front: {
  19595. height: math.unit(8, "feet"),
  19596. weight: math.unit(1, "ton"),
  19597. name: "Front",
  19598. image: {
  19599. source: "./media/characters/lycoa/front.svg",
  19600. extra: 1875 / 1789,
  19601. bottom: 0.022
  19602. }
  19603. },
  19604. back: {
  19605. height: math.unit(8, "feet"),
  19606. weight: math.unit(1, "ton"),
  19607. name: "Back",
  19608. image: {
  19609. source: "./media/characters/lycoa/back.svg",
  19610. extra: 1835 / 1781,
  19611. bottom: 0.03
  19612. }
  19613. },
  19614. head: {
  19615. height: math.unit(2.1, "feet"),
  19616. name: "Head",
  19617. image: {
  19618. source: "./media/characters/lycoa/head.svg"
  19619. }
  19620. },
  19621. tailmaw: {
  19622. height: math.unit(1.9, "feet"),
  19623. name: "Tailmaw",
  19624. image: {
  19625. source: "./media/characters/lycoa/tailmaw.svg"
  19626. }
  19627. },
  19628. tentacles: {
  19629. height: math.unit(2.1, "feet"),
  19630. name: "Tentacles",
  19631. image: {
  19632. source: "./media/characters/lycoa/tentacles.svg"
  19633. }
  19634. },
  19635. dick: {
  19636. height: math.unit(1.73, "feet"),
  19637. name: "Dick",
  19638. image: {
  19639. source: "./media/characters/lycoa/dick.svg"
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(8, "feet"),
  19647. default: true
  19648. },
  19649. {
  19650. name: "Macro",
  19651. height: math.unit(30, "feet")
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19657. {
  19658. front: {
  19659. height: math.unit(4 + 2 / 12, "feet"),
  19660. weight: math.unit(70, "lb"),
  19661. name: "Front",
  19662. image: {
  19663. source: "./media/characters/naldara/front.svg",
  19664. extra: 841 / 720,
  19665. bottom: 0.04
  19666. }
  19667. },
  19668. naga: {
  19669. height: math.unit(23, "feet"),
  19670. weight: math.unit(15000, "kg"),
  19671. name: "Naga",
  19672. image: {
  19673. source: "./media/characters/naldara/naga.svg",
  19674. extra: 3290 / 2959,
  19675. bottom: 124 / 3432
  19676. }
  19677. },
  19678. },
  19679. [
  19680. {
  19681. name: "Normal",
  19682. height: math.unit(4 + 2 / 12, "feet"),
  19683. default: true
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19689. {
  19690. front: {
  19691. height: math.unit(13 + 7 / 12, "feet"),
  19692. weight: math.unit(1500, "lb"),
  19693. name: "Front",
  19694. image: {
  19695. source: "./media/characters/briar/front.svg",
  19696. extra: 626 / 596,
  19697. bottom: 0.08
  19698. }
  19699. },
  19700. },
  19701. [
  19702. {
  19703. name: "Normal",
  19704. height: math.unit(13 + 7 / 12, "feet"),
  19705. default: true
  19706. },
  19707. ]
  19708. ))
  19709. characterMakers.push(() => makeCharacter(
  19710. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19711. {
  19712. side: {
  19713. height: math.unit(10, "feet"),
  19714. weight: math.unit(500, "lb"),
  19715. name: "Side",
  19716. image: {
  19717. source: "./media/characters/vanguard/side.svg",
  19718. extra: 502 / 425,
  19719. bottom: 0.087
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(10, "feet"),
  19727. default: true
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19733. {
  19734. front: {
  19735. height: math.unit(7.5, "feet"),
  19736. weight: math.unit(2, "lb"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/artemis/front.svg",
  19740. extra: 1192 / 1075,
  19741. bottom: 0.07
  19742. }
  19743. },
  19744. frontNsfw: {
  19745. height: math.unit(7.5, "feet"),
  19746. weight: math.unit(2, "lb"),
  19747. name: "Front (NSFW)",
  19748. image: {
  19749. source: "./media/characters/artemis/front-nsfw.svg",
  19750. extra: 1192 / 1075,
  19751. bottom: 0.07
  19752. }
  19753. },
  19754. frontNsfwer: {
  19755. height: math.unit(7.5, "feet"),
  19756. weight: math.unit(2, "lb"),
  19757. name: "Front (NSFW-er)",
  19758. image: {
  19759. source: "./media/characters/artemis/front-nsfwer.svg",
  19760. extra: 1192 / 1075,
  19761. bottom: 0.07
  19762. }
  19763. },
  19764. side: {
  19765. height: math.unit(7.5, "feet"),
  19766. weight: math.unit(2, "lb"),
  19767. name: "Side",
  19768. image: {
  19769. source: "./media/characters/artemis/side.svg",
  19770. extra: 1192 / 1075,
  19771. bottom: 0.07
  19772. }
  19773. },
  19774. sideNsfw: {
  19775. height: math.unit(7.5, "feet"),
  19776. weight: math.unit(2, "lb"),
  19777. name: "Side (NSFW)",
  19778. image: {
  19779. source: "./media/characters/artemis/side-nsfw.svg",
  19780. extra: 1192 / 1075,
  19781. bottom: 0.07
  19782. }
  19783. },
  19784. sideNsfwer: {
  19785. height: math.unit(7.5, "feet"),
  19786. weight: math.unit(2, "lb"),
  19787. name: "Side (NSFW-er)",
  19788. image: {
  19789. source: "./media/characters/artemis/side-nsfwer.svg",
  19790. extra: 1192 / 1075,
  19791. bottom: 0.07
  19792. }
  19793. },
  19794. maw: {
  19795. height: math.unit(1.1, "feet"),
  19796. name: "Maw",
  19797. image: {
  19798. source: "./media/characters/artemis/maw.svg"
  19799. }
  19800. },
  19801. stomach: {
  19802. height: math.unit(0.95, "feet"),
  19803. name: "Stomach",
  19804. image: {
  19805. source: "./media/characters/artemis/stomach.svg"
  19806. }
  19807. },
  19808. dickCanine: {
  19809. height: math.unit(1, "feet"),
  19810. name: "Dick (Canine)",
  19811. image: {
  19812. source: "./media/characters/artemis/dick-canine.svg"
  19813. }
  19814. },
  19815. dickEquine: {
  19816. height: math.unit(0.85, "feet"),
  19817. name: "Dick (Equine)",
  19818. image: {
  19819. source: "./media/characters/artemis/dick-equine.svg"
  19820. }
  19821. },
  19822. dickExotic: {
  19823. height: math.unit(0.85, "feet"),
  19824. name: "Dick (Exotic)",
  19825. image: {
  19826. source: "./media/characters/artemis/dick-exotic.svg"
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(7.5, "feet"),
  19834. default: true
  19835. },
  19836. {
  19837. name: "Enlarged",
  19838. height: math.unit(12, "feet")
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19844. {
  19845. front: {
  19846. height: math.unit(5 + 3 / 12, "feet"),
  19847. weight: math.unit(160, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/kira/front.svg",
  19851. extra: 906 / 786,
  19852. bottom: 0.01
  19853. }
  19854. },
  19855. back: {
  19856. height: math.unit(5 + 3 / 12, "feet"),
  19857. weight: math.unit(160, "lb"),
  19858. name: "Back",
  19859. image: {
  19860. source: "./media/characters/kira/back.svg",
  19861. extra: 882 / 757,
  19862. bottom: 0.005
  19863. }
  19864. },
  19865. frontDressed: {
  19866. height: math.unit(5 + 3 / 12, "feet"),
  19867. weight: math.unit(160, "lb"),
  19868. name: "Front (Dressed)",
  19869. image: {
  19870. source: "./media/characters/kira/front-dressed.svg",
  19871. extra: 906 / 786,
  19872. bottom: 0.01
  19873. }
  19874. },
  19875. beans: {
  19876. height: math.unit(0.92, "feet"),
  19877. name: "Beans",
  19878. image: {
  19879. source: "./media/characters/kira/beans.svg"
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(5 + 3 / 12, "feet"),
  19887. default: true
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19893. {
  19894. front: {
  19895. height: math.unit(5 + 4 / 12, "feet"),
  19896. weight: math.unit(145, "lb"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/scramble/front.svg",
  19900. extra: 763 / 727,
  19901. bottom: 0.05
  19902. }
  19903. },
  19904. back: {
  19905. height: math.unit(5 + 4 / 12, "feet"),
  19906. weight: math.unit(145, "lb"),
  19907. name: "Back",
  19908. image: {
  19909. source: "./media/characters/scramble/back.svg",
  19910. extra: 826 / 737,
  19911. bottom: 0.002
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(5 + 4 / 12, "feet"),
  19919. default: true
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19925. {
  19926. side: {
  19927. height: math.unit(6 + 2 / 12, "feet"),
  19928. weight: math.unit(190, "lb"),
  19929. name: "Side",
  19930. image: {
  19931. source: "./media/characters/biscuit/side.svg",
  19932. extra: 858 / 791,
  19933. bottom: 0.044
  19934. }
  19935. },
  19936. },
  19937. [
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(6 + 2 / 12, "feet"),
  19941. default: true
  19942. },
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19947. {
  19948. front: {
  19949. height: math.unit(5 + 2 / 12, "feet"),
  19950. weight: math.unit(120, "lb"),
  19951. name: "Front",
  19952. image: {
  19953. source: "./media/characters/poffin/front.svg",
  19954. extra: 786 / 680,
  19955. bottom: 0.005
  19956. }
  19957. },
  19958. },
  19959. [
  19960. {
  19961. name: "Normal",
  19962. height: math.unit(5 + 2 / 12, "feet"),
  19963. default: true
  19964. },
  19965. ]
  19966. ))
  19967. characterMakers.push(() => makeCharacter(
  19968. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19969. {
  19970. front: {
  19971. height: math.unit(6 + 3 / 12, "feet"),
  19972. weight: math.unit(519, "lb"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/dhari/front.svg",
  19976. extra: 1048 / 946,
  19977. bottom: 0.015
  19978. }
  19979. },
  19980. back: {
  19981. height: math.unit(6 + 3 / 12, "feet"),
  19982. weight: math.unit(519, "lb"),
  19983. name: "Back",
  19984. image: {
  19985. source: "./media/characters/dhari/back.svg",
  19986. extra: 1048 / 931,
  19987. bottom: 0.005
  19988. }
  19989. },
  19990. frontDressed: {
  19991. height: math.unit(6 + 3 / 12, "feet"),
  19992. weight: math.unit(519, "lb"),
  19993. name: "Front (Dressed)",
  19994. image: {
  19995. source: "./media/characters/dhari/front-dressed.svg",
  19996. extra: 1713 / 1546,
  19997. bottom: 0.02
  19998. }
  19999. },
  20000. backDressed: {
  20001. height: math.unit(6 + 3 / 12, "feet"),
  20002. weight: math.unit(519, "lb"),
  20003. name: "Back (Dressed)",
  20004. image: {
  20005. source: "./media/characters/dhari/back-dressed.svg",
  20006. extra: 1699 / 1537,
  20007. bottom: 0.01
  20008. }
  20009. },
  20010. maw: {
  20011. height: math.unit(0.95, "feet"),
  20012. name: "Maw",
  20013. image: {
  20014. source: "./media/characters/dhari/maw.svg"
  20015. }
  20016. },
  20017. wereFront: {
  20018. height: math.unit(12 + 8 / 12, "feet"),
  20019. weight: math.unit(4000, "lb"),
  20020. name: "Front (Were)",
  20021. image: {
  20022. source: "./media/characters/dhari/were-front.svg",
  20023. extra: 1065 / 969,
  20024. bottom: 0.015
  20025. }
  20026. },
  20027. wereBack: {
  20028. height: math.unit(12 + 8 / 12, "feet"),
  20029. weight: math.unit(4000, "lb"),
  20030. name: "Back (Were)",
  20031. image: {
  20032. source: "./media/characters/dhari/were-back.svg",
  20033. extra: 1065 / 969,
  20034. bottom: 0.012
  20035. }
  20036. },
  20037. wereMaw: {
  20038. height: math.unit(0.625, "meters"),
  20039. name: "Maw (Were)",
  20040. image: {
  20041. source: "./media/characters/dhari/were-maw.svg"
  20042. }
  20043. },
  20044. },
  20045. [
  20046. {
  20047. name: "Normal",
  20048. height: math.unit(6 + 3 / 12, "feet"),
  20049. default: true
  20050. },
  20051. ]
  20052. ))
  20053. characterMakers.push(() => makeCharacter(
  20054. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20055. {
  20056. anthro: {
  20057. height: math.unit(5 + 7 / 12, "feet"),
  20058. weight: math.unit(175, "lb"),
  20059. name: "Anthro",
  20060. image: {
  20061. source: "./media/characters/rena-dyne/anthro.svg",
  20062. extra: 1849 / 1785,
  20063. bottom: 0.005
  20064. }
  20065. },
  20066. taur: {
  20067. height: math.unit(15 + 6 / 12, "feet"),
  20068. weight: math.unit(8000, "lb"),
  20069. name: "Taur",
  20070. image: {
  20071. source: "./media/characters/rena-dyne/taur.svg",
  20072. extra: 2315 / 2234,
  20073. bottom: 0.033
  20074. }
  20075. },
  20076. },
  20077. [
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(5 + 7 / 12, "feet"),
  20081. default: true
  20082. },
  20083. ]
  20084. ))
  20085. characterMakers.push(() => makeCharacter(
  20086. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20087. {
  20088. front: {
  20089. height: math.unit(8, "feet"),
  20090. weight: math.unit(600, "lb"),
  20091. name: "Front",
  20092. image: {
  20093. source: "./media/characters/weremeep/front.svg",
  20094. extra: 967 / 862,
  20095. bottom: 0.01
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(8, "feet"),
  20103. default: true
  20104. },
  20105. {
  20106. name: "Lorg",
  20107. height: math.unit(12, "feet")
  20108. },
  20109. {
  20110. name: "Oh Lawd She Comin'",
  20111. height: math.unit(20, "feet")
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20117. {
  20118. front: {
  20119. height: math.unit(4, "feet"),
  20120. weight: math.unit(90, "lb"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/reza/front.svg",
  20124. extra: 1183 / 1111,
  20125. bottom: 0.017
  20126. }
  20127. },
  20128. back: {
  20129. height: math.unit(4, "feet"),
  20130. weight: math.unit(90, "lb"),
  20131. name: "Back",
  20132. image: {
  20133. source: "./media/characters/reza/back.svg",
  20134. extra: 1183 / 1111,
  20135. bottom: 0.01
  20136. }
  20137. },
  20138. drake: {
  20139. height: math.unit(30, "feet"),
  20140. weight: math.unit(246960, "lb"),
  20141. name: "Drake",
  20142. image: {
  20143. source: "./media/characters/reza/drake.svg",
  20144. extra: 2350 / 2024,
  20145. bottom: 60.7 / 2403
  20146. }
  20147. },
  20148. },
  20149. [
  20150. {
  20151. name: "Normal",
  20152. height: math.unit(4, "feet"),
  20153. default: true
  20154. },
  20155. ]
  20156. ))
  20157. characterMakers.push(() => makeCharacter(
  20158. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20159. {
  20160. side: {
  20161. height: math.unit(15, "feet"),
  20162. weight: math.unit(14, "tons"),
  20163. name: "Side",
  20164. image: {
  20165. source: "./media/characters/athea/side.svg",
  20166. extra: 960 / 540,
  20167. bottom: 0.003
  20168. }
  20169. },
  20170. sitting: {
  20171. height: math.unit(6 * 2.85, "feet"),
  20172. weight: math.unit(14, "tons"),
  20173. name: "Sitting",
  20174. image: {
  20175. source: "./media/characters/athea/sitting.svg",
  20176. extra: 621 / 581,
  20177. bottom: 0.075
  20178. }
  20179. },
  20180. maw: {
  20181. height: math.unit(7.59498031496063, "feet"),
  20182. name: "Maw",
  20183. image: {
  20184. source: "./media/characters/athea/maw.svg"
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Lap Cat",
  20191. height: math.unit(2.5, "feet")
  20192. },
  20193. {
  20194. name: "Minimacro",
  20195. height: math.unit(15, "feet"),
  20196. default: true
  20197. },
  20198. {
  20199. name: "Macro",
  20200. height: math.unit(120, "feet")
  20201. },
  20202. {
  20203. name: "Macro+",
  20204. height: math.unit(640, "feet")
  20205. },
  20206. {
  20207. name: "Colossus",
  20208. height: math.unit(2.2, "miles")
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20214. {
  20215. front: {
  20216. height: math.unit(8 + 8 / 12, "feet"),
  20217. weight: math.unit(130, "kg"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/seroko/front.svg",
  20221. extra: 1385 / 1280,
  20222. bottom: 0.025
  20223. }
  20224. },
  20225. back: {
  20226. height: math.unit(8 + 8 / 12, "feet"),
  20227. weight: math.unit(130, "kg"),
  20228. name: "Back",
  20229. image: {
  20230. source: "./media/characters/seroko/back.svg",
  20231. extra: 1369 / 1238,
  20232. bottom: 0.018
  20233. }
  20234. },
  20235. frontDressed: {
  20236. height: math.unit(8 + 8 / 12, "feet"),
  20237. weight: math.unit(130, "kg"),
  20238. name: "Front (Dressed)",
  20239. image: {
  20240. source: "./media/characters/seroko/front-dressed.svg",
  20241. extra: 1366 / 1275,
  20242. bottom: 0.03
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "Normal",
  20249. height: math.unit(8 + 8 / 12, "feet"),
  20250. default: true
  20251. },
  20252. ]
  20253. ))
  20254. characterMakers.push(() => makeCharacter(
  20255. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20256. {
  20257. front: {
  20258. height: math.unit(5.5, "feet"),
  20259. weight: math.unit(160, "lb"),
  20260. name: "Front",
  20261. image: {
  20262. source: "./media/characters/quatzi/front.svg",
  20263. extra: 2346 / 2242,
  20264. bottom: 0.015
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(5.5, "feet"),
  20272. default: true
  20273. },
  20274. {
  20275. name: "Big",
  20276. height: math.unit(7.7, "feet")
  20277. },
  20278. ]
  20279. ))
  20280. characterMakers.push(() => makeCharacter(
  20281. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20282. {
  20283. front: {
  20284. height: math.unit(5 + 11 / 12, "feet"),
  20285. weight: math.unit(180, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/sen/front.svg",
  20289. extra: 1321 / 1254,
  20290. bottom: 0.015
  20291. }
  20292. },
  20293. side: {
  20294. height: math.unit(5 + 11 / 12, "feet"),
  20295. weight: math.unit(180, "lb"),
  20296. name: "Side",
  20297. image: {
  20298. source: "./media/characters/sen/side.svg",
  20299. extra: 1321 / 1254,
  20300. bottom: 0.007
  20301. }
  20302. },
  20303. back: {
  20304. height: math.unit(5 + 11 / 12, "feet"),
  20305. weight: math.unit(180, "lb"),
  20306. name: "Back",
  20307. image: {
  20308. source: "./media/characters/sen/back.svg",
  20309. extra: 1321 / 1254
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(5 + 11 / 12, "feet"),
  20317. default: true
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(166.6, "cm"),
  20326. weight: math.unit(66.6, "kg"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/fruity/front.svg",
  20330. extra: 1510 / 1386,
  20331. bottom: 0.04
  20332. }
  20333. },
  20334. back: {
  20335. height: math.unit(166.6, "cm"),
  20336. weight: math.unit(66.6, "lb"),
  20337. name: "Back",
  20338. image: {
  20339. source: "./media/characters/fruity/back.svg",
  20340. extra: 1563 / 1435,
  20341. bottom: 0.005
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(166.6, "cm"),
  20349. default: true
  20350. },
  20351. {
  20352. name: "Demonic",
  20353. height: math.unit(166.6, "feet")
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20359. {
  20360. side: {
  20361. height: math.unit(10, "feet"),
  20362. weight: math.unit(500, "lb"),
  20363. name: "Side",
  20364. image: {
  20365. source: "./media/characters/zost/side.svg",
  20366. extra: 966 / 880,
  20367. bottom: 0.075
  20368. }
  20369. },
  20370. mawFront: {
  20371. height: math.unit(1.08, "meters"),
  20372. name: "Maw (Front)",
  20373. image: {
  20374. source: "./media/characters/zost/maw-front.svg"
  20375. }
  20376. },
  20377. mawSide: {
  20378. height: math.unit(2.66, "feet"),
  20379. name: "Maw (Side)",
  20380. image: {
  20381. source: "./media/characters/zost/maw-side.svg"
  20382. }
  20383. },
  20384. },
  20385. [
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(10, "feet"),
  20389. default: true
  20390. },
  20391. ]
  20392. ))
  20393. characterMakers.push(() => makeCharacter(
  20394. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20395. {
  20396. front: {
  20397. height: math.unit(5 + 4 / 12, "feet"),
  20398. weight: math.unit(120, "lb"),
  20399. name: "Front",
  20400. image: {
  20401. source: "./media/characters/luci/front.svg",
  20402. extra: 1985 / 1884,
  20403. bottom: 0.04
  20404. }
  20405. },
  20406. back: {
  20407. height: math.unit(5 + 4 / 12, "feet"),
  20408. weight: math.unit(120, "lb"),
  20409. name: "Back",
  20410. image: {
  20411. source: "./media/characters/luci/back.svg",
  20412. extra: 1892 / 1791,
  20413. bottom: 0.002
  20414. }
  20415. },
  20416. },
  20417. [
  20418. {
  20419. name: "Normal",
  20420. height: math.unit(5 + 4 / 12, "feet"),
  20421. default: true
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20427. {
  20428. front: {
  20429. height: math.unit(1500, "feet"),
  20430. weight: math.unit(3.8e6, "tons"),
  20431. name: "Front",
  20432. image: {
  20433. source: "./media/characters/2th/front.svg",
  20434. extra: 3489 / 3350,
  20435. bottom: 0.1
  20436. }
  20437. },
  20438. foot: {
  20439. height: math.unit(461, "feet"),
  20440. name: "Foot",
  20441. image: {
  20442. source: "./media/characters/2th/foot.svg"
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "\"Micro\"",
  20449. height: math.unit(15 + 7 / 12, "feet")
  20450. },
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(1500, "feet"),
  20454. default: true
  20455. },
  20456. {
  20457. name: "Macro",
  20458. height: math.unit(5000, "feet")
  20459. },
  20460. {
  20461. name: "Megamacro",
  20462. height: math.unit(15, "miles")
  20463. },
  20464. {
  20465. name: "Gigamacro",
  20466. height: math.unit(4000, "miles")
  20467. },
  20468. {
  20469. name: "Galactic",
  20470. height: math.unit(50, "AU")
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20476. {
  20477. front: {
  20478. height: math.unit(5 + 6 / 12, "feet"),
  20479. weight: math.unit(220, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/amethyst/front.svg",
  20483. extra: 2078 / 2040,
  20484. bottom: 0.045
  20485. }
  20486. },
  20487. back: {
  20488. height: math.unit(5 + 6 / 12, "feet"),
  20489. weight: math.unit(220, "lb"),
  20490. name: "Back",
  20491. image: {
  20492. source: "./media/characters/amethyst/back.svg",
  20493. extra: 2021 / 1989,
  20494. bottom: 0.02
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(5 + 6 / 12, "feet"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(4 + 11 / 12, "feet"),
  20511. weight: math.unit(120, "lb"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/yumi-akiyama/front.svg",
  20515. extra: 1327 / 1235,
  20516. bottom: 0.02
  20517. }
  20518. },
  20519. back: {
  20520. height: math.unit(4 + 11 / 12, "feet"),
  20521. weight: math.unit(120, "lb"),
  20522. name: "Back",
  20523. image: {
  20524. source: "./media/characters/yumi-akiyama/back.svg",
  20525. extra: 1287 / 1245,
  20526. bottom: 0.002
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Galactic",
  20533. height: math.unit(50, "galaxies"),
  20534. default: true
  20535. },
  20536. {
  20537. name: "Universal",
  20538. height: math.unit(100, "universes")
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20544. {
  20545. front: {
  20546. height: math.unit(8, "feet"),
  20547. weight: math.unit(500, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/rifter-yrmori/front.svg",
  20551. extra: 1180 / 1125,
  20552. bottom: 0.02
  20553. }
  20554. },
  20555. back: {
  20556. height: math.unit(8, "feet"),
  20557. weight: math.unit(500, "lb"),
  20558. name: "Back",
  20559. image: {
  20560. source: "./media/characters/rifter-yrmori/back.svg",
  20561. extra: 1190 / 1145,
  20562. bottom: 0.001
  20563. }
  20564. },
  20565. wings: {
  20566. height: math.unit(7.75, "feet"),
  20567. weight: math.unit(500, "lb"),
  20568. name: "Wings",
  20569. image: {
  20570. source: "./media/characters/rifter-yrmori/wings.svg",
  20571. extra: 1357 / 1285
  20572. }
  20573. },
  20574. maw: {
  20575. height: math.unit(0.8, "feet"),
  20576. name: "Maw",
  20577. image: {
  20578. source: "./media/characters/rifter-yrmori/maw.svg"
  20579. }
  20580. },
  20581. mawfront: {
  20582. height: math.unit(1.45, "feet"),
  20583. name: "Maw (Front)",
  20584. image: {
  20585. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Normal",
  20592. height: math.unit(8, "feet"),
  20593. default: true
  20594. },
  20595. {
  20596. name: "Macro",
  20597. height: math.unit(42, "meters")
  20598. },
  20599. ]
  20600. ))
  20601. characterMakers.push(() => makeCharacter(
  20602. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20603. {
  20604. were: {
  20605. height: math.unit(25 + 6 / 12, "feet"),
  20606. weight: math.unit(10000, "lb"),
  20607. name: "Were",
  20608. image: {
  20609. source: "./media/characters/tahajin/were.svg",
  20610. extra: 801 / 770,
  20611. bottom: 0.042
  20612. }
  20613. },
  20614. aquatic: {
  20615. height: math.unit(6 + 4 / 12, "feet"),
  20616. weight: math.unit(160, "lb"),
  20617. name: "Aquatic",
  20618. image: {
  20619. source: "./media/characters/tahajin/aquatic.svg",
  20620. extra: 572 / 542,
  20621. bottom: 0.04
  20622. }
  20623. },
  20624. chow: {
  20625. height: math.unit(8 + 11 / 12, "feet"),
  20626. weight: math.unit(450, "lb"),
  20627. name: "Chow",
  20628. image: {
  20629. source: "./media/characters/tahajin/chow.svg",
  20630. extra: 660 / 640,
  20631. bottom: 0.015
  20632. }
  20633. },
  20634. demiNaga: {
  20635. height: math.unit(6 + 8 / 12, "feet"),
  20636. weight: math.unit(300, "lb"),
  20637. name: "Demi Naga",
  20638. image: {
  20639. source: "./media/characters/tahajin/demi-naga.svg",
  20640. extra: 643 / 615,
  20641. bottom: 0.1
  20642. }
  20643. },
  20644. data: {
  20645. height: math.unit(5, "inches"),
  20646. weight: math.unit(0.1, "lb"),
  20647. name: "Data",
  20648. image: {
  20649. source: "./media/characters/tahajin/data.svg"
  20650. }
  20651. },
  20652. fluu: {
  20653. height: math.unit(5 + 7 / 12, "feet"),
  20654. weight: math.unit(140, "lb"),
  20655. name: "Fluu",
  20656. image: {
  20657. source: "./media/characters/tahajin/fluu.svg",
  20658. extra: 628 / 592,
  20659. bottom: 0.02
  20660. }
  20661. },
  20662. starWarrior: {
  20663. height: math.unit(4 + 5 / 12, "feet"),
  20664. weight: math.unit(50, "lb"),
  20665. name: "Star Warrior",
  20666. image: {
  20667. source: "./media/characters/tahajin/star-warrior.svg"
  20668. }
  20669. },
  20670. },
  20671. [
  20672. {
  20673. name: "Normal",
  20674. height: math.unit(25 + 6 / 12, "feet"),
  20675. default: true
  20676. },
  20677. ]
  20678. ))
  20679. characterMakers.push(() => makeCharacter(
  20680. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20681. {
  20682. front: {
  20683. height: math.unit(8, "feet"),
  20684. weight: math.unit(350, "lb"),
  20685. name: "Front",
  20686. image: {
  20687. source: "./media/characters/gabira/front.svg",
  20688. extra: 608 / 580,
  20689. bottom: 0.03
  20690. }
  20691. },
  20692. back: {
  20693. height: math.unit(8, "feet"),
  20694. weight: math.unit(350, "lb"),
  20695. name: "Back",
  20696. image: {
  20697. source: "./media/characters/gabira/back.svg",
  20698. extra: 608 / 580,
  20699. bottom: 0.03
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(8, "feet"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20713. {
  20714. front: {
  20715. height: math.unit(5 + 3 / 12, "feet"),
  20716. weight: math.unit(137, "lb"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/sasha-katraine/front.svg",
  20720. bottom: 0.045
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Micro",
  20727. height: math.unit(5, "inches")
  20728. },
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(5 + 3 / 12, "feet"),
  20732. default: true
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20738. {
  20739. side: {
  20740. height: math.unit(4, "inches"),
  20741. weight: math.unit(200, "grams"),
  20742. name: "Side",
  20743. image: {
  20744. source: "./media/characters/der/side.svg",
  20745. extra: 719 / 400,
  20746. bottom: 30.6 / 749.9187
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "Micro",
  20753. height: math.unit(4, "inches"),
  20754. default: true
  20755. },
  20756. ]
  20757. ))
  20758. characterMakers.push(() => makeCharacter(
  20759. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20760. {
  20761. side: {
  20762. height: math.unit(30, "meters"),
  20763. weight: math.unit(700, "tonnes"),
  20764. name: "Side",
  20765. image: {
  20766. source: "./media/characters/fixerdragon/side.svg",
  20767. extra: (1293.0514 - 116.03) / 1106.86,
  20768. bottom: 116.03 / 1293.0514
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Planck",
  20775. height: math.unit(1.6e-35, "meters")
  20776. },
  20777. {
  20778. name: "Micro",
  20779. height: math.unit(0.4, "meters")
  20780. },
  20781. {
  20782. name: "Normal",
  20783. height: math.unit(30, "meters"),
  20784. default: true
  20785. },
  20786. {
  20787. name: "Megamacro",
  20788. height: math.unit(1.2, "megameters")
  20789. },
  20790. {
  20791. name: "Teramacro",
  20792. height: math.unit(130, "terameters")
  20793. },
  20794. {
  20795. name: "Yottamacro",
  20796. height: math.unit(6200, "yottameters")
  20797. },
  20798. ]
  20799. ));
  20800. characterMakers.push(() => makeCharacter(
  20801. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20802. {
  20803. front: {
  20804. height: math.unit(8, "feet"),
  20805. weight: math.unit(250, "lb"),
  20806. name: "Front",
  20807. image: {
  20808. source: "./media/characters/kite/front.svg",
  20809. extra: 2796 / 2659,
  20810. bottom: 0.002
  20811. }
  20812. },
  20813. },
  20814. [
  20815. {
  20816. name: "Normal",
  20817. height: math.unit(8, "feet"),
  20818. default: true
  20819. },
  20820. {
  20821. name: "Macro",
  20822. height: math.unit(360, "feet")
  20823. },
  20824. {
  20825. name: "Megamacro",
  20826. height: math.unit(1500, "feet")
  20827. },
  20828. ]
  20829. ))
  20830. characterMakers.push(() => makeCharacter(
  20831. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20832. {
  20833. front: {
  20834. height: math.unit(5 + 10 / 12, "feet"),
  20835. weight: math.unit(150, "lb"),
  20836. name: "Front",
  20837. image: {
  20838. source: "./media/characters/poojawa-vynar/front.svg",
  20839. extra: (1506.1547 - 55) / 1356.6,
  20840. bottom: 55 / 1506.1547
  20841. }
  20842. },
  20843. frontTailless: {
  20844. height: math.unit(5 + 10 / 12, "feet"),
  20845. weight: math.unit(150, "lb"),
  20846. name: "Front (Tailless)",
  20847. image: {
  20848. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20849. extra: (1506.1547 - 55) / 1356.6,
  20850. bottom: 55 / 1506.1547
  20851. }
  20852. },
  20853. },
  20854. [
  20855. {
  20856. name: "Normal",
  20857. height: math.unit(5 + 10 / 12, "feet"),
  20858. default: true
  20859. },
  20860. ]
  20861. ))
  20862. characterMakers.push(() => makeCharacter(
  20863. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20864. {
  20865. front: {
  20866. height: math.unit(293, "meters"),
  20867. weight: math.unit(70400, "tons"),
  20868. name: "Front",
  20869. image: {
  20870. source: "./media/characters/violette/front.svg",
  20871. extra: 1227 / 1180,
  20872. bottom: 0.005
  20873. }
  20874. },
  20875. back: {
  20876. height: math.unit(293, "meters"),
  20877. weight: math.unit(70400, "tons"),
  20878. name: "Back",
  20879. image: {
  20880. source: "./media/characters/violette/back.svg",
  20881. extra: 1227 / 1180,
  20882. bottom: 0.005
  20883. }
  20884. },
  20885. },
  20886. [
  20887. {
  20888. name: "Macro",
  20889. height: math.unit(293, "meters"),
  20890. default: true
  20891. },
  20892. ]
  20893. ))
  20894. characterMakers.push(() => makeCharacter(
  20895. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20896. {
  20897. front: {
  20898. height: math.unit(1050, "feet"),
  20899. weight: math.unit(200000, "tons"),
  20900. name: "Front",
  20901. image: {
  20902. source: "./media/characters/alessandra/front.svg",
  20903. extra: 960 / 912,
  20904. bottom: 0.06
  20905. }
  20906. },
  20907. },
  20908. [
  20909. {
  20910. name: "Macro",
  20911. height: math.unit(1050, "feet")
  20912. },
  20913. {
  20914. name: "Macro+",
  20915. height: math.unit(900, "meters"),
  20916. default: true
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(5, "feet"),
  20925. weight: math.unit(187, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/person/front.svg",
  20929. extra: 3087 / 2945,
  20930. bottom: 91 / 3181
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Micro",
  20937. height: math.unit(3, "inches")
  20938. },
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(5, "feet"),
  20942. default: true
  20943. },
  20944. {
  20945. name: "Macro",
  20946. height: math.unit(90, "feet")
  20947. },
  20948. {
  20949. name: "Max Size",
  20950. height: math.unit(280, "feet")
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(4.5, "meters"),
  20959. weight: math.unit(3200, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/ty/front.svg",
  20963. extra: 1038 / 960,
  20964. bottom: 31.156 / 1068
  20965. }
  20966. },
  20967. back: {
  20968. height: math.unit(4.5, "meters"),
  20969. weight: math.unit(3200, "lb"),
  20970. name: "Back",
  20971. image: {
  20972. source: "./media/characters/ty/back.svg",
  20973. extra: 1044 / 966,
  20974. bottom: 7.48 / 1049
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Normal",
  20981. height: math.unit(4.5, "meters"),
  20982. default: true
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20988. {
  20989. front: {
  20990. height: math.unit(5 + 4 / 12, "feet"),
  20991. weight: math.unit(115, "lb"),
  20992. name: "Front",
  20993. image: {
  20994. source: "./media/characters/rocky/front.svg",
  20995. extra: 1012 / 975,
  20996. bottom: 54 / 1066
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(5 + 4 / 12, "feet"),
  21004. default: true
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21010. {
  21011. upright: {
  21012. height: math.unit(6, "meters"),
  21013. weight: math.unit(4000, "kg"),
  21014. name: "Upright",
  21015. image: {
  21016. source: "./media/characters/ruin/upright.svg",
  21017. extra: 668 / 661,
  21018. bottom: 42 / 799.8396
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(6, "meters"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(5, "feet"),
  21035. weight: math.unit(106, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/robin/front.svg",
  21039. extra: 862 / 799,
  21040. bottom: 42.4 / 914.8856
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(5, "feet"),
  21048. default: true
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21054. {
  21055. side: {
  21056. height: math.unit(3, "feet"),
  21057. weight: math.unit(225, "lb"),
  21058. name: "Side",
  21059. image: {
  21060. source: "./media/characters/saian/side.svg",
  21061. extra: 566 / 356,
  21062. bottom: 79.7 / 643
  21063. }
  21064. },
  21065. maw: {
  21066. height: math.unit(2.85, "feet"),
  21067. name: "Maw",
  21068. image: {
  21069. source: "./media/characters/saian/maw.svg"
  21070. }
  21071. },
  21072. },
  21073. [
  21074. {
  21075. name: "Normal",
  21076. height: math.unit(3, "feet"),
  21077. default: true
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21083. {
  21084. side: {
  21085. height: math.unit(8, "feet"),
  21086. weight: math.unit(300, "lb"),
  21087. name: "Side",
  21088. image: {
  21089. source: "./media/characters/equus-silvermane/side.svg",
  21090. extra: 2176 / 2050,
  21091. bottom: 65.7 / 2245
  21092. }
  21093. },
  21094. front: {
  21095. height: math.unit(8, "feet"),
  21096. weight: math.unit(300, "lb"),
  21097. name: "Front",
  21098. image: {
  21099. source: "./media/characters/equus-silvermane/front.svg",
  21100. extra: 4633 / 4400,
  21101. bottom: 71.3 / 4706.915
  21102. }
  21103. },
  21104. sideStepping: {
  21105. height: math.unit(8, "feet"),
  21106. weight: math.unit(300, "lb"),
  21107. name: "Side (Stepping)",
  21108. image: {
  21109. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21110. extra: 1968 / 1860,
  21111. bottom: 16.4 / 1989
  21112. }
  21113. },
  21114. },
  21115. [
  21116. {
  21117. name: "Normal",
  21118. height: math.unit(8, "feet")
  21119. },
  21120. {
  21121. name: "Minimacro",
  21122. height: math.unit(75, "feet"),
  21123. default: true
  21124. },
  21125. {
  21126. name: "Macro",
  21127. height: math.unit(150, "feet")
  21128. },
  21129. {
  21130. name: "Macro+",
  21131. height: math.unit(1000, "feet")
  21132. },
  21133. {
  21134. name: "Megamacro",
  21135. height: math.unit(1, "mile")
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21141. {
  21142. side: {
  21143. height: math.unit(20, "feet"),
  21144. weight: math.unit(30000, "kg"),
  21145. name: "Side",
  21146. image: {
  21147. source: "./media/characters/windar/side.svg",
  21148. extra: 1491 / 1248,
  21149. bottom: 82.56 / 1568
  21150. }
  21151. },
  21152. },
  21153. [
  21154. {
  21155. name: "Normal",
  21156. height: math.unit(20, "feet"),
  21157. default: true
  21158. },
  21159. ]
  21160. ))
  21161. characterMakers.push(() => makeCharacter(
  21162. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21163. {
  21164. side: {
  21165. height: math.unit(15.66, "feet"),
  21166. weight: math.unit(150, "lb"),
  21167. name: "Side",
  21168. image: {
  21169. source: "./media/characters/melody/side.svg",
  21170. extra: 1097 / 944,
  21171. bottom: 11.8 / 1109
  21172. }
  21173. },
  21174. sideOutfit: {
  21175. height: math.unit(15.66, "feet"),
  21176. weight: math.unit(150, "lb"),
  21177. name: "Side (Outfit)",
  21178. image: {
  21179. source: "./media/characters/melody/side-outfit.svg",
  21180. extra: 1097 / 944,
  21181. bottom: 11.8 / 1109
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(15.66, "feet"),
  21189. default: true
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21195. {
  21196. front: {
  21197. height: math.unit(8, "feet"),
  21198. weight: math.unit(325, "lb"),
  21199. name: "Front",
  21200. image: {
  21201. source: "./media/characters/windera/front.svg",
  21202. extra: 3180 / 2845,
  21203. bottom: 178 / 3365
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(8, "feet"),
  21211. default: true
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21217. {
  21218. front: {
  21219. height: math.unit(28.75, "feet"),
  21220. weight: math.unit(2000, "kg"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/sonear/front.svg",
  21224. extra: 1041.1 / 964.9,
  21225. bottom: 53.7 / 1096.6
  21226. }
  21227. },
  21228. },
  21229. [
  21230. {
  21231. name: "Normal",
  21232. height: math.unit(28.75, "feet"),
  21233. default: true
  21234. },
  21235. ]
  21236. ))
  21237. characterMakers.push(() => makeCharacter(
  21238. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21239. {
  21240. side: {
  21241. height: math.unit(25.5, "feet"),
  21242. weight: math.unit(23000, "kg"),
  21243. name: "Side",
  21244. image: {
  21245. source: "./media/characters/kanara/side.svg"
  21246. }
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(25.5, "feet"),
  21253. default: true
  21254. },
  21255. ]
  21256. ))
  21257. characterMakers.push(() => makeCharacter(
  21258. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21259. {
  21260. side: {
  21261. height: math.unit(10, "feet"),
  21262. weight: math.unit(1000, "kg"),
  21263. name: "Side",
  21264. image: {
  21265. source: "./media/characters/ereus/side.svg",
  21266. extra: 1157 / 959,
  21267. bottom: 153 / 1312.5
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Normal",
  21274. height: math.unit(10, "feet"),
  21275. default: true
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21281. {
  21282. side: {
  21283. height: math.unit(4.5, "feet"),
  21284. weight: math.unit(500, "lb"),
  21285. name: "Side",
  21286. image: {
  21287. source: "./media/characters/e-ter/side.svg",
  21288. extra: 1550 / 1248,
  21289. bottom: 146 / 1694
  21290. }
  21291. },
  21292. },
  21293. [
  21294. {
  21295. name: "Normal",
  21296. height: math.unit(4.5, "feet"),
  21297. default: true
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21303. {
  21304. side: {
  21305. height: math.unit(9.7, "feet"),
  21306. weight: math.unit(4000, "kg"),
  21307. name: "Side",
  21308. image: {
  21309. source: "./media/characters/yamie/side.svg"
  21310. }
  21311. },
  21312. },
  21313. [
  21314. {
  21315. name: "Normal",
  21316. height: math.unit(9.7, "feet"),
  21317. default: true
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21323. {
  21324. front: {
  21325. height: math.unit(50, "feet"),
  21326. weight: math.unit(50000, "kg"),
  21327. name: "Front",
  21328. image: {
  21329. source: "./media/characters/anders/front.svg",
  21330. extra: 570 / 539,
  21331. bottom: 14.7 / 586.7
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Large",
  21338. height: math.unit(50, "feet")
  21339. },
  21340. {
  21341. name: "Macro",
  21342. height: math.unit(2000, "feet"),
  21343. default: true
  21344. },
  21345. {
  21346. name: "Megamacro",
  21347. height: math.unit(12, "miles")
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21353. {
  21354. front: {
  21355. height: math.unit(7 + 2 / 12, "feet"),
  21356. weight: math.unit(300, "lb"),
  21357. name: "Front",
  21358. image: {
  21359. source: "./media/characters/reban/front.svg",
  21360. extra: 516 / 487,
  21361. bottom: 42.82 / 558.356
  21362. }
  21363. },
  21364. dick: {
  21365. height: math.unit(7 / 5, "feet"),
  21366. name: "Dick",
  21367. image: {
  21368. source: "./media/characters/reban/dick.svg"
  21369. }
  21370. },
  21371. },
  21372. [
  21373. {
  21374. name: "Natural Height",
  21375. height: math.unit(7 + 2 / 12, "feet")
  21376. },
  21377. {
  21378. name: "Macro",
  21379. height: math.unit(500, "feet"),
  21380. default: true
  21381. },
  21382. {
  21383. name: "Canon Height",
  21384. height: math.unit(50, "AU")
  21385. },
  21386. ]
  21387. ))
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21390. {
  21391. front: {
  21392. height: math.unit(6, "feet"),
  21393. weight: math.unit(150, "lb"),
  21394. name: "Front",
  21395. image: {
  21396. source: "./media/characters/terrance-keayes/front.svg",
  21397. extra: 1.005,
  21398. bottom: 151 / 1615
  21399. }
  21400. },
  21401. side: {
  21402. height: math.unit(6, "feet"),
  21403. weight: math.unit(150, "lb"),
  21404. name: "Side",
  21405. image: {
  21406. source: "./media/characters/terrance-keayes/side.svg",
  21407. extra: 1.005,
  21408. bottom: 129.4 / 1544
  21409. }
  21410. },
  21411. back: {
  21412. height: math.unit(6, "feet"),
  21413. weight: math.unit(150, "lb"),
  21414. name: "Back",
  21415. image: {
  21416. source: "./media/characters/terrance-keayes/back.svg",
  21417. extra: 1.005,
  21418. bottom: 58.4 / 1557.3
  21419. }
  21420. },
  21421. dick: {
  21422. height: math.unit(6 * 0.208, "feet"),
  21423. name: "Dick",
  21424. image: {
  21425. source: "./media/characters/terrance-keayes/dick.svg"
  21426. }
  21427. },
  21428. },
  21429. [
  21430. {
  21431. name: "Canon Height",
  21432. height: math.unit(35, "miles"),
  21433. default: true
  21434. },
  21435. ]
  21436. ))
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21439. {
  21440. front: {
  21441. height: math.unit(6, "feet"),
  21442. weight: math.unit(150, "lb"),
  21443. name: "Front",
  21444. image: {
  21445. source: "./media/characters/ofelia/front.svg",
  21446. extra: 546 / 541,
  21447. bottom: 39 / 583
  21448. }
  21449. },
  21450. back: {
  21451. height: math.unit(6, "feet"),
  21452. weight: math.unit(150, "lb"),
  21453. name: "Back",
  21454. image: {
  21455. source: "./media/characters/ofelia/back.svg",
  21456. extra: 564 / 559.5,
  21457. bottom: 8.69 / 573.02
  21458. }
  21459. },
  21460. maw: {
  21461. height: math.unit(1, "feet"),
  21462. name: "Maw",
  21463. image: {
  21464. source: "./media/characters/ofelia/maw.svg"
  21465. }
  21466. },
  21467. foot: {
  21468. height: math.unit(1.949, "feet"),
  21469. name: "Foot",
  21470. image: {
  21471. source: "./media/characters/ofelia/foot.svg"
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Canon Height",
  21478. height: math.unit(2000, "miles"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21485. {
  21486. front: {
  21487. height: math.unit(6, "feet"),
  21488. weight: math.unit(150, "lb"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/samuel/front.svg",
  21492. extra: 265 / 258,
  21493. bottom: 2 / 266.1566
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Macro",
  21500. height: math.unit(100, "feet"),
  21501. default: true
  21502. },
  21503. {
  21504. name: "Full Size",
  21505. height: math.unit(1000, "miles")
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(6, "feet"),
  21514. weight: math.unit(300, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/beishir-kiel/front.svg",
  21518. extra: 569 / 547,
  21519. bottom: 41.9 / 609
  21520. }
  21521. },
  21522. maw: {
  21523. height: math.unit(6 * 0.202, "feet"),
  21524. name: "Maw",
  21525. image: {
  21526. source: "./media/characters/beishir-kiel/maw.svg"
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Macro",
  21533. height: math.unit(300, "feet"),
  21534. default: true
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21540. {
  21541. front: {
  21542. height: math.unit(5 + 8 / 12, "feet"),
  21543. weight: math.unit(120, "lb"),
  21544. name: "Front",
  21545. image: {
  21546. source: "./media/characters/logan-grey/front.svg",
  21547. extra: 2539 / 2393,
  21548. bottom: 97.6 / 2636.37
  21549. }
  21550. },
  21551. frontAlt: {
  21552. height: math.unit(5 + 8 / 12, "feet"),
  21553. weight: math.unit(120, "lb"),
  21554. name: "Front (Alt)",
  21555. image: {
  21556. source: "./media/characters/logan-grey/front-alt.svg",
  21557. extra: 958 / 893,
  21558. bottom: 15 / 970.768
  21559. }
  21560. },
  21561. back: {
  21562. height: math.unit(5 + 8 / 12, "feet"),
  21563. weight: math.unit(120, "lb"),
  21564. name: "Back",
  21565. image: {
  21566. source: "./media/characters/logan-grey/back.svg",
  21567. extra: 958 / 893,
  21568. bottom: 2.1881 / 970.9788
  21569. }
  21570. },
  21571. dick: {
  21572. height: math.unit(1.437, "feet"),
  21573. name: "Dick",
  21574. image: {
  21575. source: "./media/characters/logan-grey/dick.svg"
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Normal",
  21582. height: math.unit(5 + 8 / 12, "feet")
  21583. },
  21584. {
  21585. name: "The 500 Foot Femboy",
  21586. height: math.unit(500, "feet"),
  21587. default: true
  21588. },
  21589. {
  21590. name: "Megmacro",
  21591. height: math.unit(20, "miles")
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21597. {
  21598. front: {
  21599. height: math.unit(8 + 2 / 12, "feet"),
  21600. weight: math.unit(275, "lb"),
  21601. name: "Front",
  21602. image: {
  21603. source: "./media/characters/draganta/front.svg",
  21604. extra: 1177 / 1135,
  21605. bottom: 33.46 / 1212.1
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Normal",
  21612. height: math.unit(8 + 6 / 12, "feet"),
  21613. default: true
  21614. },
  21615. {
  21616. name: "Macro",
  21617. height: math.unit(150, "feet")
  21618. },
  21619. {
  21620. name: "Megamacro",
  21621. height: math.unit(1000, "miles")
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(1.72, "m"),
  21630. weight: math.unit(80, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/voski/front.svg",
  21634. extra: 2076.22 / 2022.4,
  21635. bottom: 102.7 / 2177.3866
  21636. }
  21637. },
  21638. frontNsfw: {
  21639. height: math.unit(1.72, "m"),
  21640. weight: math.unit(80, "lb"),
  21641. name: "Front (NSFW)",
  21642. image: {
  21643. source: "./media/characters/voski/front-nsfw.svg",
  21644. extra: 2076.22 / 2022.4,
  21645. bottom: 102.7 / 2177.3866
  21646. }
  21647. },
  21648. back: {
  21649. height: math.unit(1.72, "m"),
  21650. weight: math.unit(80, "lb"),
  21651. name: "Back",
  21652. image: {
  21653. source: "./media/characters/voski/back.svg",
  21654. extra: 2104 / 2051,
  21655. bottom: 10.45 / 2113.63
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Normal",
  21662. height: math.unit(1.72, "m")
  21663. },
  21664. {
  21665. name: "Macro",
  21666. height: math.unit(55, "m"),
  21667. default: true
  21668. },
  21669. {
  21670. name: "Macro+",
  21671. height: math.unit(300, "m")
  21672. },
  21673. {
  21674. name: "Macro++",
  21675. height: math.unit(700, "m")
  21676. },
  21677. {
  21678. name: "Macro+++",
  21679. height: math.unit(4500, "m")
  21680. },
  21681. {
  21682. name: "Macro++++",
  21683. height: math.unit(45, "km")
  21684. },
  21685. {
  21686. name: "Macro+++++",
  21687. height: math.unit(1220, "km")
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21693. {
  21694. front: {
  21695. height: math.unit(2.3, "m"),
  21696. weight: math.unit(304, "kg"),
  21697. name: "Front",
  21698. image: {
  21699. source: "./media/characters/icowom-lee/front.svg",
  21700. extra: 985 / 955,
  21701. bottom: 25.4 / 1012
  21702. }
  21703. },
  21704. fronttentacles: {
  21705. height: math.unit(2.3, "m"),
  21706. weight: math.unit(304, "kg"),
  21707. name: "Front-tentacles",
  21708. image: {
  21709. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21710. extra: 985 / 955,
  21711. bottom: 25.4 / 1012
  21712. }
  21713. },
  21714. back: {
  21715. height: math.unit(2.3, "m"),
  21716. weight: math.unit(304, "kg"),
  21717. name: "Back",
  21718. image: {
  21719. source: "./media/characters/icowom-lee/back.svg",
  21720. extra: 975 / 954,
  21721. bottom: 9.5 / 985
  21722. }
  21723. },
  21724. backtentacles: {
  21725. height: math.unit(2.3, "m"),
  21726. weight: math.unit(304, "kg"),
  21727. name: "Back-tentacles",
  21728. image: {
  21729. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21730. extra: 975 / 954,
  21731. bottom: 9.5 / 985
  21732. }
  21733. },
  21734. frontDressed: {
  21735. height: math.unit(2.3, "m"),
  21736. weight: math.unit(304, "kg"),
  21737. name: "Front (Dressed)",
  21738. image: {
  21739. source: "./media/characters/icowom-lee/front-dressed.svg",
  21740. extra: 3076 / 2933,
  21741. bottom: 51.4 / 3125.1889
  21742. }
  21743. },
  21744. rump: {
  21745. height: math.unit(0.776, "meters"),
  21746. name: "Rump",
  21747. image: {
  21748. source: "./media/characters/icowom-lee/rump.svg"
  21749. }
  21750. },
  21751. genitals: {
  21752. height: math.unit(0.78, "meters"),
  21753. name: "Genitals",
  21754. image: {
  21755. source: "./media/characters/icowom-lee/genitals.svg"
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(2.3, "meters"),
  21763. default: true
  21764. },
  21765. {
  21766. name: "Macro",
  21767. height: math.unit(94, "meters"),
  21768. default: true
  21769. },
  21770. ]
  21771. ))
  21772. characterMakers.push(() => makeCharacter(
  21773. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21774. {
  21775. front: {
  21776. height: math.unit(22, "meters"),
  21777. weight: math.unit(21000, "kg"),
  21778. name: "Front",
  21779. image: {
  21780. source: "./media/characters/shock-diamond/front.svg",
  21781. extra: 2204 / 2053,
  21782. bottom: 65 / 2239.47
  21783. }
  21784. },
  21785. frontNude: {
  21786. height: math.unit(22, "meters"),
  21787. weight: math.unit(21000, "kg"),
  21788. name: "Front (Nude)",
  21789. image: {
  21790. source: "./media/characters/shock-diamond/front-nude.svg",
  21791. extra: 2514 / 2285,
  21792. bottom: 13 / 2527.56
  21793. }
  21794. },
  21795. },
  21796. [
  21797. {
  21798. name: "Normal",
  21799. height: math.unit(3, "meters")
  21800. },
  21801. {
  21802. name: "Macro",
  21803. height: math.unit(22, "meters"),
  21804. default: true
  21805. },
  21806. ]
  21807. ))
  21808. characterMakers.push(() => makeCharacter(
  21809. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21810. {
  21811. front: {
  21812. height: math.unit(5 + 4 / 12, "feet"),
  21813. weight: math.unit(120, "lb"),
  21814. name: "Front",
  21815. image: {
  21816. source: "./media/characters/rory/front.svg",
  21817. extra: 589 / 556,
  21818. bottom: 45.7 / 635.76
  21819. }
  21820. },
  21821. frontNude: {
  21822. height: math.unit(5 + 4 / 12, "feet"),
  21823. weight: math.unit(120, "lb"),
  21824. name: "Front (Nude)",
  21825. image: {
  21826. source: "./media/characters/rory/front-nude.svg",
  21827. extra: 589 / 556,
  21828. bottom: 45.7 / 635.76
  21829. }
  21830. },
  21831. side: {
  21832. height: math.unit(5 + 4 / 12, "feet"),
  21833. weight: math.unit(120, "lb"),
  21834. name: "Side",
  21835. image: {
  21836. source: "./media/characters/rory/side.svg",
  21837. extra: 597 / 564,
  21838. bottom: 55 / 653
  21839. }
  21840. },
  21841. back: {
  21842. height: math.unit(5 + 4 / 12, "feet"),
  21843. weight: math.unit(120, "lb"),
  21844. name: "Back",
  21845. image: {
  21846. source: "./media/characters/rory/back.svg",
  21847. extra: 620 / 585,
  21848. bottom: 8.86 / 630.43
  21849. }
  21850. },
  21851. dick: {
  21852. height: math.unit(0.86, "feet"),
  21853. name: "Dick",
  21854. image: {
  21855. source: "./media/characters/rory/dick.svg"
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(5 + 4 / 12, "feet"),
  21863. default: true
  21864. },
  21865. {
  21866. name: "Macro",
  21867. height: math.unit(100, "feet")
  21868. },
  21869. {
  21870. name: "Macro+",
  21871. height: math.unit(140, "feet")
  21872. },
  21873. {
  21874. name: "Macro++",
  21875. height: math.unit(300, "feet")
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(5 + 9 / 12, "feet"),
  21884. weight: math.unit(190, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/sprisk/front.svg",
  21888. extra: 1225 / 1180,
  21889. bottom: 42.7 / 1266.4
  21890. }
  21891. },
  21892. frontNsfw: {
  21893. height: math.unit(5 + 9 / 12, "feet"),
  21894. weight: math.unit(190, "lb"),
  21895. name: "Front (NSFW)",
  21896. image: {
  21897. source: "./media/characters/sprisk/front-nsfw.svg",
  21898. extra: 1225 / 1180,
  21899. bottom: 42.7 / 1266.4
  21900. }
  21901. },
  21902. back: {
  21903. height: math.unit(5 + 9 / 12, "feet"),
  21904. weight: math.unit(190, "lb"),
  21905. name: "Back",
  21906. image: {
  21907. source: "./media/characters/sprisk/back.svg",
  21908. extra: 1247 / 1200,
  21909. bottom: 5.6 / 1253.04
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Tiny",
  21916. height: math.unit(2, "inches")
  21917. },
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(5 + 9 / 12, "feet"),
  21921. default: true
  21922. },
  21923. {
  21924. name: "Mini Macro",
  21925. height: math.unit(18, "feet")
  21926. },
  21927. {
  21928. name: "Macro",
  21929. height: math.unit(100, "feet")
  21930. },
  21931. {
  21932. name: "MACRO",
  21933. height: math.unit(50, "miles")
  21934. },
  21935. {
  21936. name: "M A C R O",
  21937. height: math.unit(300, "miles")
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21943. {
  21944. side: {
  21945. height: math.unit(15.6, "meters"),
  21946. weight: math.unit(700000, "kg"),
  21947. name: "Side",
  21948. image: {
  21949. source: "./media/characters/bunsen/side.svg",
  21950. extra: 1644 / 358
  21951. }
  21952. },
  21953. foot: {
  21954. height: math.unit(1.611 * 1644 / 358, "meter"),
  21955. name: "Foot",
  21956. image: {
  21957. source: "./media/characters/bunsen/foot.svg"
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Small",
  21964. height: math.unit(10, "feet")
  21965. },
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(15.6, "meters"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(4 + 11 / 12, "feet"),
  21978. weight: math.unit(140, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/sesh/front.svg",
  21982. extra: 3420 / 3231,
  21983. bottom: 72 / 3949.5
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(4 + 11 / 12, "feet")
  21991. },
  21992. {
  21993. name: "Grown",
  21994. height: math.unit(15, "feet"),
  21995. default: true
  21996. },
  21997. {
  21998. name: "Macro",
  21999. height: math.unit(1500, "feet")
  22000. },
  22001. {
  22002. name: "Megamacro",
  22003. height: math.unit(30, "miles")
  22004. },
  22005. {
  22006. name: "Continental",
  22007. height: math.unit(3000, "miles")
  22008. },
  22009. {
  22010. name: "Gravity Mass",
  22011. height: math.unit(300000, "miles")
  22012. },
  22013. {
  22014. name: "Planet Buster",
  22015. height: math.unit(30000000, "miles")
  22016. },
  22017. {
  22018. name: "Big",
  22019. height: math.unit(3000000000, "miles")
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22025. {
  22026. front: {
  22027. height: math.unit(9, "feet"),
  22028. weight: math.unit(350, "lb"),
  22029. name: "Front",
  22030. image: {
  22031. source: "./media/characters/pepper/front.svg",
  22032. extra: 1448 / 1312,
  22033. bottom: 9.4 / 1457.88
  22034. }
  22035. },
  22036. back: {
  22037. height: math.unit(9, "feet"),
  22038. weight: math.unit(350, "lb"),
  22039. name: "Back",
  22040. image: {
  22041. source: "./media/characters/pepper/back.svg",
  22042. extra: 1423 / 1300,
  22043. bottom: 4.6 / 1429
  22044. }
  22045. },
  22046. maw: {
  22047. height: math.unit(0.932, "feet"),
  22048. name: "Maw",
  22049. image: {
  22050. source: "./media/characters/pepper/maw.svg"
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(9, "feet"),
  22058. default: true
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22064. {
  22065. front: {
  22066. height: math.unit(6, "feet"),
  22067. weight: math.unit(150, "lb"),
  22068. name: "Front",
  22069. image: {
  22070. source: "./media/characters/maelstrom/front.svg",
  22071. extra: 2100 / 1883,
  22072. bottom: 94 / 2196.7
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Less Kaiju",
  22079. height: math.unit(200, "feet")
  22080. },
  22081. {
  22082. name: "Kaiju",
  22083. height: math.unit(400, "feet"),
  22084. default: true
  22085. },
  22086. {
  22087. name: "Kaiju-er",
  22088. height: math.unit(600, "feet")
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22094. {
  22095. front: {
  22096. height: math.unit(6 + 5 / 12, "feet"),
  22097. weight: math.unit(180, "lb"),
  22098. name: "Front",
  22099. image: {
  22100. source: "./media/characters/lexir/front.svg",
  22101. extra: 180 / 172,
  22102. bottom: 12 / 192
  22103. }
  22104. },
  22105. back: {
  22106. height: math.unit(6 + 5 / 12, "feet"),
  22107. weight: math.unit(180, "lb"),
  22108. name: "Back",
  22109. image: {
  22110. source: "./media/characters/lexir/back.svg",
  22111. extra: 183.84 / 175.5,
  22112. bottom: 3.1 / 187
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Very Smal",
  22119. height: math.unit(1, "nm")
  22120. },
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(6 + 5 / 12, "feet"),
  22124. default: true
  22125. },
  22126. {
  22127. name: "Macro",
  22128. height: math.unit(1, "mile")
  22129. },
  22130. {
  22131. name: "Megamacro",
  22132. height: math.unit(50, "miles")
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22138. {
  22139. front: {
  22140. height: math.unit(1.5, "meters"),
  22141. weight: math.unit(100, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/maksio/front.svg",
  22145. extra: 1549 / 1531,
  22146. bottom: 123.7 / 1674.5429
  22147. }
  22148. },
  22149. back: {
  22150. height: math.unit(1.5, "meters"),
  22151. weight: math.unit(100, "lb"),
  22152. name: "Back",
  22153. image: {
  22154. source: "./media/characters/maksio/back.svg",
  22155. extra: 1541 / 1509,
  22156. bottom: 97 / 1639
  22157. }
  22158. },
  22159. hand: {
  22160. height: math.unit(0.621, "feet"),
  22161. name: "Hand",
  22162. image: {
  22163. source: "./media/characters/maksio/hand.svg"
  22164. }
  22165. },
  22166. foot: {
  22167. height: math.unit(1.611, "feet"),
  22168. name: "Foot",
  22169. image: {
  22170. source: "./media/characters/maksio/foot.svg"
  22171. }
  22172. },
  22173. },
  22174. [
  22175. {
  22176. name: "Shrunken",
  22177. height: math.unit(10, "cm")
  22178. },
  22179. {
  22180. name: "Normal",
  22181. height: math.unit(150, "cm"),
  22182. default: true
  22183. },
  22184. ]
  22185. ))
  22186. characterMakers.push(() => makeCharacter(
  22187. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22188. {
  22189. front: {
  22190. height: math.unit(100, "feet"),
  22191. name: "Front",
  22192. image: {
  22193. source: "./media/characters/erza-bear/front.svg",
  22194. extra: 2449 / 2390,
  22195. bottom: 46 / 2494
  22196. }
  22197. },
  22198. back: {
  22199. height: math.unit(100, "feet"),
  22200. name: "Back",
  22201. image: {
  22202. source: "./media/characters/erza-bear/back.svg",
  22203. extra: 2489 / 2430,
  22204. bottom: 85.4 / 2480
  22205. }
  22206. },
  22207. tail: {
  22208. height: math.unit(42, "feet"),
  22209. name: "Tail",
  22210. image: {
  22211. source: "./media/characters/erza-bear/tail.svg"
  22212. }
  22213. },
  22214. tongue: {
  22215. height: math.unit(8, "feet"),
  22216. name: "Tongue",
  22217. image: {
  22218. source: "./media/characters/erza-bear/tongue.svg"
  22219. }
  22220. },
  22221. dick: {
  22222. height: math.unit(10.5, "feet"),
  22223. name: "Dick",
  22224. image: {
  22225. source: "./media/characters/erza-bear/dick.svg"
  22226. }
  22227. },
  22228. dickVertical: {
  22229. height: math.unit(16.9, "feet"),
  22230. name: "Dick (Vertical)",
  22231. image: {
  22232. source: "./media/characters/erza-bear/dick-vertical.svg"
  22233. }
  22234. },
  22235. },
  22236. [
  22237. {
  22238. name: "Macro",
  22239. height: math.unit(100, "feet"),
  22240. default: true
  22241. },
  22242. ]
  22243. ))
  22244. characterMakers.push(() => makeCharacter(
  22245. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22246. {
  22247. front: {
  22248. height: math.unit(172, "cm"),
  22249. weight: math.unit(73, "kg"),
  22250. name: "Front",
  22251. image: {
  22252. source: "./media/characters/violet-flor/front.svg",
  22253. extra: 1530 / 1442,
  22254. bottom: 61.9 / 1588.8
  22255. }
  22256. },
  22257. back: {
  22258. height: math.unit(180, "cm"),
  22259. weight: math.unit(73, "kg"),
  22260. name: "Back",
  22261. image: {
  22262. source: "./media/characters/violet-flor/back.svg",
  22263. extra: 1692 / 1630,
  22264. bottom: 20 / 1712
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(172, "cm"),
  22272. default: true
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(6, "feet"),
  22281. weight: math.unit(220, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/lynn-rhea/front.svg",
  22285. extra: 310 / 273
  22286. }
  22287. },
  22288. back: {
  22289. height: math.unit(6, "feet"),
  22290. weight: math.unit(220, "lb"),
  22291. name: "Back",
  22292. image: {
  22293. source: "./media/characters/lynn-rhea/back.svg",
  22294. extra: 310 / 273
  22295. }
  22296. },
  22297. dicks: {
  22298. height: math.unit(0.9, "feet"),
  22299. name: "Dicks",
  22300. image: {
  22301. source: "./media/characters/lynn-rhea/dicks.svg"
  22302. }
  22303. },
  22304. slit: {
  22305. height: math.unit(0.4, "feet"),
  22306. name: "Slit",
  22307. image: {
  22308. source: "./media/characters/lynn-rhea/slit.svg"
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Micro",
  22315. height: math.unit(1, "inch")
  22316. },
  22317. {
  22318. name: "Macro",
  22319. height: math.unit(60, "feet"),
  22320. default: true
  22321. },
  22322. {
  22323. name: "Megamacro",
  22324. height: math.unit(2, "miles")
  22325. },
  22326. {
  22327. name: "Gigamacro",
  22328. height: math.unit(3, "earths")
  22329. },
  22330. {
  22331. name: "Galactic",
  22332. height: math.unit(0.8, "galaxies")
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22338. {
  22339. front: {
  22340. height: math.unit(1600, "feet"),
  22341. weight: math.unit(85758785169, "kg"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/valathos/front.svg",
  22345. extra: 1451 / 1339
  22346. }
  22347. },
  22348. },
  22349. [
  22350. {
  22351. name: "Macro",
  22352. height: math.unit(1600, "feet"),
  22353. default: true
  22354. },
  22355. ]
  22356. ))
  22357. characterMakers.push(() => makeCharacter(
  22358. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22359. {
  22360. front: {
  22361. height: math.unit(7 + 5 / 12, "feet"),
  22362. weight: math.unit(300, "lb"),
  22363. name: "Front",
  22364. image: {
  22365. source: "./media/characters/azula/front.svg",
  22366. extra: 3208 / 2880,
  22367. bottom: 80.2 / 3277
  22368. }
  22369. },
  22370. back: {
  22371. height: math.unit(7 + 5 / 12, "feet"),
  22372. weight: math.unit(300, "lb"),
  22373. name: "Back",
  22374. image: {
  22375. source: "./media/characters/azula/back.svg",
  22376. extra: 3169 / 2822,
  22377. bottom: 150.6 / 3321
  22378. }
  22379. },
  22380. },
  22381. [
  22382. {
  22383. name: "Normal",
  22384. height: math.unit(7 + 5 / 12, "feet"),
  22385. default: true
  22386. },
  22387. {
  22388. name: "Big",
  22389. height: math.unit(20, "feet")
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22395. {
  22396. front: {
  22397. height: math.unit(5 + 1 / 12, "feet"),
  22398. weight: math.unit(110, "lb"),
  22399. name: "Front",
  22400. image: {
  22401. source: "./media/characters/rupert/front.svg",
  22402. extra: 1549 / 1495,
  22403. bottom: 54.2 / 1604.4
  22404. }
  22405. },
  22406. },
  22407. [
  22408. {
  22409. name: "Normal",
  22410. height: math.unit(5 + 1 / 12, "feet"),
  22411. default: true
  22412. },
  22413. ]
  22414. ))
  22415. characterMakers.push(() => makeCharacter(
  22416. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22417. {
  22418. front: {
  22419. height: math.unit(8 + 4 / 12, "feet"),
  22420. weight: math.unit(350, "lb"),
  22421. name: "Front",
  22422. image: {
  22423. source: "./media/characters/sheera-castellar/front.svg",
  22424. extra: 1957 / 1894,
  22425. bottom: 26.97 / 1975.017
  22426. }
  22427. },
  22428. side: {
  22429. height: math.unit(8 + 4 / 12, "feet"),
  22430. weight: math.unit(350, "lb"),
  22431. name: "Side",
  22432. image: {
  22433. source: "./media/characters/sheera-castellar/side.svg",
  22434. extra: 1957 / 1894
  22435. }
  22436. },
  22437. back: {
  22438. height: math.unit(8 + 4 / 12, "feet"),
  22439. weight: math.unit(350, "lb"),
  22440. name: "Back",
  22441. image: {
  22442. source: "./media/characters/sheera-castellar/back.svg",
  22443. extra: 1957 / 1894
  22444. }
  22445. },
  22446. angled: {
  22447. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22448. weight: math.unit(350, "lb"),
  22449. name: "Angled",
  22450. image: {
  22451. source: "./media/characters/sheera-castellar/angled.svg",
  22452. extra: 1807 / 1707,
  22453. bottom: 68 / 1875
  22454. }
  22455. },
  22456. genitals: {
  22457. height: math.unit(2.2, "feet"),
  22458. name: "Genitals",
  22459. image: {
  22460. source: "./media/characters/sheera-castellar/genitals.svg"
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Normal",
  22467. height: math.unit(8 + 4 / 12, "feet")
  22468. },
  22469. {
  22470. name: "Macro",
  22471. height: math.unit(150, "feet"),
  22472. default: true
  22473. },
  22474. {
  22475. name: "Macro+",
  22476. height: math.unit(800, "feet")
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(6, "feet"),
  22485. weight: math.unit(150, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/jaipur/front.svg",
  22489. extra: 3860 / 3731,
  22490. bottom: 287 / 4140
  22491. }
  22492. },
  22493. back: {
  22494. height: math.unit(6, "feet"),
  22495. weight: math.unit(150, "lb"),
  22496. name: "Back",
  22497. image: {
  22498. source: "./media/characters/jaipur/back.svg",
  22499. extra: 4060 / 3930,
  22500. bottom: 151 / 4200
  22501. }
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(1.85, "meters"),
  22508. default: true
  22509. },
  22510. {
  22511. name: "Macro",
  22512. height: math.unit(150, "meters")
  22513. },
  22514. {
  22515. name: "Macro+",
  22516. height: math.unit(0.5, "miles")
  22517. },
  22518. {
  22519. name: "Macro++",
  22520. height: math.unit(2.5, "miles")
  22521. },
  22522. {
  22523. name: "Macro+++",
  22524. height: math.unit(12, "miles")
  22525. },
  22526. {
  22527. name: "Macro++++",
  22528. height: math.unit(120, "miles")
  22529. },
  22530. {
  22531. name: "Macro+++++",
  22532. height: math.unit(1200, "miles")
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(6, "feet"),
  22541. weight: math.unit(150, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/sheila-wolf/front.svg",
  22545. extra: 1931 / 1808,
  22546. bottom: 29.5 / 1960
  22547. }
  22548. },
  22549. dick: {
  22550. height: math.unit(1.464, "feet"),
  22551. name: "Dick",
  22552. image: {
  22553. source: "./media/characters/sheila-wolf/dick.svg"
  22554. }
  22555. },
  22556. muzzle: {
  22557. height: math.unit(0.513, "feet"),
  22558. name: "Muzzle",
  22559. image: {
  22560. source: "./media/characters/sheila-wolf/muzzle.svg"
  22561. }
  22562. },
  22563. },
  22564. [
  22565. {
  22566. name: "Macro",
  22567. height: math.unit(70, "feet"),
  22568. default: true
  22569. },
  22570. ]
  22571. ))
  22572. characterMakers.push(() => makeCharacter(
  22573. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22574. {
  22575. front: {
  22576. height: math.unit(32, "meters"),
  22577. weight: math.unit(300000, "kg"),
  22578. name: "Front",
  22579. image: {
  22580. source: "./media/characters/almor/front.svg",
  22581. extra: 1408 / 1322,
  22582. bottom: 94.6 / 1506.5
  22583. }
  22584. },
  22585. },
  22586. [
  22587. {
  22588. name: "Macro",
  22589. height: math.unit(32, "meters"),
  22590. default: true
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22596. {
  22597. front: {
  22598. height: math.unit(7, "feet"),
  22599. weight: math.unit(200, "lb"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/silver/front.svg",
  22603. extra: 472.1 / 450.5,
  22604. bottom: 26.5 / 499.424
  22605. }
  22606. },
  22607. },
  22608. [
  22609. {
  22610. name: "Normal",
  22611. height: math.unit(7, "feet"),
  22612. default: true
  22613. },
  22614. {
  22615. name: "Macro",
  22616. height: math.unit(800, "feet")
  22617. },
  22618. {
  22619. name: "Megamacro",
  22620. height: math.unit(250, "miles")
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22626. {
  22627. front: {
  22628. height: math.unit(6, "feet"),
  22629. weight: math.unit(150, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/pliskin/front.svg",
  22633. extra: 1469 / 1359,
  22634. bottom: 70 / 1540
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Micro",
  22641. height: math.unit(3, "inches")
  22642. },
  22643. {
  22644. name: "Normal",
  22645. height: math.unit(5 + 11 / 12, "feet"),
  22646. default: true
  22647. },
  22648. {
  22649. name: "Macro",
  22650. height: math.unit(120, "feet")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22656. {
  22657. front: {
  22658. height: math.unit(6, "feet"),
  22659. weight: math.unit(150, "lb"),
  22660. name: "Front",
  22661. image: {
  22662. source: "./media/characters/sammy/front.svg",
  22663. extra: 1193 / 1089,
  22664. bottom: 30.5 / 1226
  22665. }
  22666. },
  22667. },
  22668. [
  22669. {
  22670. name: "Macro",
  22671. height: math.unit(1700, "feet"),
  22672. default: true
  22673. },
  22674. {
  22675. name: "Examacro",
  22676. height: math.unit(2.5e9, "lightyears")
  22677. },
  22678. ]
  22679. ))
  22680. characterMakers.push(() => makeCharacter(
  22681. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22682. {
  22683. front: {
  22684. height: math.unit(21, "meters"),
  22685. weight: math.unit(12, "tonnes"),
  22686. name: "Front",
  22687. image: {
  22688. source: "./media/characters/kuru/front.svg",
  22689. extra: 4301 / 3785,
  22690. bottom: 371.3 / 4691
  22691. }
  22692. },
  22693. },
  22694. [
  22695. {
  22696. name: "Macro",
  22697. height: math.unit(21, "meters"),
  22698. default: true
  22699. },
  22700. ]
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(23, "meters"),
  22707. weight: math.unit(12.2, "tonnes"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/rakka/front.svg",
  22711. extra: 4670 / 4169,
  22712. bottom: 301 / 4968.7
  22713. }
  22714. },
  22715. },
  22716. [
  22717. {
  22718. name: "Macro",
  22719. height: math.unit(23, "meters"),
  22720. default: true
  22721. },
  22722. ]
  22723. ))
  22724. characterMakers.push(() => makeCharacter(
  22725. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22726. {
  22727. front: {
  22728. height: math.unit(6, "feet"),
  22729. weight: math.unit(150, "lb"),
  22730. name: "Front",
  22731. image: {
  22732. source: "./media/characters/rhys-feline/front.svg",
  22733. extra: 2488 / 2308,
  22734. bottom: 35.67 / 2519.19
  22735. }
  22736. },
  22737. },
  22738. [
  22739. {
  22740. name: "Really Small",
  22741. height: math.unit(1, "nm")
  22742. },
  22743. {
  22744. name: "Micro",
  22745. height: math.unit(4, "inches")
  22746. },
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(4 + 10 / 12, "feet"),
  22750. default: true
  22751. },
  22752. {
  22753. name: "Macro",
  22754. height: math.unit(100, "feet")
  22755. },
  22756. {
  22757. name: "Megamacto",
  22758. height: math.unit(50, "miles")
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22764. {
  22765. side: {
  22766. height: math.unit(30, "feet"),
  22767. weight: math.unit(35000, "kg"),
  22768. name: "Side",
  22769. image: {
  22770. source: "./media/characters/alydar/side.svg",
  22771. extra: 234 / 222,
  22772. bottom: 6.5 / 241
  22773. }
  22774. },
  22775. front: {
  22776. height: math.unit(30, "feet"),
  22777. weight: math.unit(35000, "kg"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/alydar/front.svg",
  22781. extra: 223.37 / 210.2,
  22782. bottom: 22.3 / 246.76
  22783. }
  22784. },
  22785. top: {
  22786. height: math.unit(64.54, "feet"),
  22787. weight: math.unit(35000, "kg"),
  22788. name: "Top",
  22789. image: {
  22790. source: "./media/characters/alydar/top.svg"
  22791. }
  22792. },
  22793. anthro: {
  22794. height: math.unit(30, "feet"),
  22795. weight: math.unit(9000, "kg"),
  22796. name: "Anthro",
  22797. image: {
  22798. source: "./media/characters/alydar/anthro.svg",
  22799. extra: 432 / 421,
  22800. bottom: 7.18 / 440
  22801. }
  22802. },
  22803. maw: {
  22804. height: math.unit(11.693, "feet"),
  22805. name: "Maw",
  22806. image: {
  22807. source: "./media/characters/alydar/maw.svg"
  22808. }
  22809. },
  22810. head: {
  22811. height: math.unit(11.693, "feet"),
  22812. name: "Head",
  22813. image: {
  22814. source: "./media/characters/alydar/head.svg"
  22815. }
  22816. },
  22817. headAlt: {
  22818. height: math.unit(12.861, "feet"),
  22819. name: "Head (Alt)",
  22820. image: {
  22821. source: "./media/characters/alydar/head-alt.svg"
  22822. }
  22823. },
  22824. wing: {
  22825. height: math.unit(20.712, "feet"),
  22826. name: "Wing",
  22827. image: {
  22828. source: "./media/characters/alydar/wing.svg"
  22829. }
  22830. },
  22831. wingFeather: {
  22832. height: math.unit(9.662, "feet"),
  22833. name: "Wing Feather",
  22834. image: {
  22835. source: "./media/characters/alydar/wing-feather.svg"
  22836. }
  22837. },
  22838. countourFeather: {
  22839. height: math.unit(4.154, "feet"),
  22840. name: "Contour Feather",
  22841. image: {
  22842. source: "./media/characters/alydar/contour-feather.svg"
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Diplomatic",
  22849. height: math.unit(13, "feet"),
  22850. default: true
  22851. },
  22852. {
  22853. name: "Small",
  22854. height: math.unit(30, "feet")
  22855. },
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(95, "feet"),
  22859. default: true
  22860. },
  22861. {
  22862. name: "Large",
  22863. height: math.unit(285, "feet")
  22864. },
  22865. {
  22866. name: "Incomprehensible",
  22867. height: math.unit(450, "megameters")
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22873. {
  22874. side: {
  22875. height: math.unit(11, "feet"),
  22876. weight: math.unit(1750, "kg"),
  22877. name: "Side",
  22878. image: {
  22879. source: "./media/characters/selicia/side.svg",
  22880. extra: 440 / 396,
  22881. bottom: 24.8 / 465.979
  22882. }
  22883. },
  22884. maw: {
  22885. height: math.unit(4.665, "feet"),
  22886. name: "Maw",
  22887. image: {
  22888. source: "./media/characters/selicia/maw.svg"
  22889. }
  22890. },
  22891. },
  22892. [
  22893. {
  22894. name: "Normal",
  22895. height: math.unit(11, "feet"),
  22896. default: true
  22897. },
  22898. ]
  22899. ))
  22900. characterMakers.push(() => makeCharacter(
  22901. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22902. {
  22903. side: {
  22904. height: math.unit(2 + 6 / 12, "feet"),
  22905. weight: math.unit(30, "lb"),
  22906. name: "Side",
  22907. image: {
  22908. source: "./media/characters/layla/side.svg",
  22909. extra: 244 / 188,
  22910. bottom: 18.2 / 262.1
  22911. }
  22912. },
  22913. back: {
  22914. height: math.unit(2 + 6 / 12, "feet"),
  22915. weight: math.unit(30, "lb"),
  22916. name: "Back",
  22917. image: {
  22918. source: "./media/characters/layla/back.svg",
  22919. extra: 308 / 241.5,
  22920. bottom: 8.9 / 316.8
  22921. }
  22922. },
  22923. cumming: {
  22924. height: math.unit(2 + 6 / 12, "feet"),
  22925. weight: math.unit(30, "lb"),
  22926. name: "Cumming",
  22927. image: {
  22928. source: "./media/characters/layla/cumming.svg",
  22929. extra: 342 / 279,
  22930. bottom: 595 / 938
  22931. }
  22932. },
  22933. dickFlaccid: {
  22934. height: math.unit(2.595, "feet"),
  22935. name: "Flaccid Genitals",
  22936. image: {
  22937. source: "./media/characters/layla/dick-flaccid.svg"
  22938. }
  22939. },
  22940. dickErect: {
  22941. height: math.unit(2.359, "feet"),
  22942. name: "Erect Genitals",
  22943. image: {
  22944. source: "./media/characters/layla/dick-erect.svg"
  22945. }
  22946. },
  22947. },
  22948. [
  22949. {
  22950. name: "Micro",
  22951. height: math.unit(1, "inch")
  22952. },
  22953. {
  22954. name: "Small",
  22955. height: math.unit(1, "foot")
  22956. },
  22957. {
  22958. name: "Normal",
  22959. height: math.unit(2 + 6 / 12, "feet"),
  22960. default: true
  22961. },
  22962. {
  22963. name: "Macro",
  22964. height: math.unit(200, "feet")
  22965. },
  22966. {
  22967. name: "Megamacro",
  22968. height: math.unit(1000, "miles")
  22969. },
  22970. {
  22971. name: "Planetary",
  22972. height: math.unit(8000, "miles")
  22973. },
  22974. {
  22975. name: "True Layla",
  22976. height: math.unit(200000 * 7, "multiverses")
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22982. {
  22983. back: {
  22984. height: math.unit(10.5, "feet"),
  22985. weight: math.unit(800, "lb"),
  22986. name: "Back",
  22987. image: {
  22988. source: "./media/characters/knox/back.svg",
  22989. extra: 1486 / 1089,
  22990. bottom: 107 / 1601.4
  22991. }
  22992. },
  22993. side: {
  22994. height: math.unit(10.5, "feet"),
  22995. weight: math.unit(800, "lb"),
  22996. name: "Side",
  22997. image: {
  22998. source: "./media/characters/knox/side.svg",
  22999. extra: 244 / 218,
  23000. bottom: 14 / 260
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Compact",
  23007. height: math.unit(10.5, "feet"),
  23008. default: true
  23009. },
  23010. {
  23011. name: "Dynamax",
  23012. height: math.unit(210, "feet")
  23013. },
  23014. {
  23015. name: "Full Macro",
  23016. height: math.unit(850, "feet")
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23022. {
  23023. front: {
  23024. height: math.unit(6, "feet"),
  23025. weight: math.unit(152, "lb"),
  23026. name: "Front",
  23027. image: {
  23028. source: "./media/characters/shin-pikachu/front.svg",
  23029. extra: 1574 / 1480,
  23030. bottom: 53.3 / 1626
  23031. }
  23032. },
  23033. hand: {
  23034. height: math.unit(1.055, "feet"),
  23035. name: "Hand",
  23036. image: {
  23037. source: "./media/characters/shin-pikachu/hand.svg"
  23038. }
  23039. },
  23040. foot: {
  23041. height: math.unit(1.1, "feet"),
  23042. name: "Foot",
  23043. image: {
  23044. source: "./media/characters/shin-pikachu/foot.svg"
  23045. }
  23046. },
  23047. collar: {
  23048. height: math.unit(0.386, "feet"),
  23049. name: "Collar",
  23050. image: {
  23051. source: "./media/characters/shin-pikachu/collar.svg"
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Smallest",
  23058. height: math.unit(0.5, "inches")
  23059. },
  23060. {
  23061. name: "Micro",
  23062. height: math.unit(6, "inches")
  23063. },
  23064. {
  23065. name: "Normal",
  23066. height: math.unit(6, "feet"),
  23067. default: true
  23068. },
  23069. {
  23070. name: "Macro",
  23071. height: math.unit(150, "feet")
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23077. {
  23078. front: {
  23079. height: math.unit(28, "feet"),
  23080. weight: math.unit(10500, "lb"),
  23081. name: "Front",
  23082. image: {
  23083. source: "./media/characters/kayda/front.svg",
  23084. extra: 1536 / 1428,
  23085. bottom: 68.7 / 1603
  23086. }
  23087. },
  23088. back: {
  23089. height: math.unit(28, "feet"),
  23090. weight: math.unit(10500, "lb"),
  23091. name: "Back",
  23092. image: {
  23093. source: "./media/characters/kayda/back.svg",
  23094. extra: 1557 / 1464,
  23095. bottom: 39.5 / 1597.49
  23096. }
  23097. },
  23098. dick: {
  23099. height: math.unit(3.858, "feet"),
  23100. name: "Dick",
  23101. image: {
  23102. source: "./media/characters/kayda/dick.svg"
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Macro",
  23109. height: math.unit(28, "feet"),
  23110. default: true
  23111. },
  23112. ]
  23113. ))
  23114. characterMakers.push(() => makeCharacter(
  23115. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23116. {
  23117. front: {
  23118. height: math.unit(10 + 11 / 12, "feet"),
  23119. weight: math.unit(1400, "lb"),
  23120. name: "Front",
  23121. image: {
  23122. source: "./media/characters/brian/front.svg",
  23123. extra: 737 / 692,
  23124. bottom: 55.4 / 785
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(10 + 11 / 12, "feet"),
  23132. default: true
  23133. },
  23134. ]
  23135. ))
  23136. characterMakers.push(() => makeCharacter(
  23137. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23138. {
  23139. front: {
  23140. height: math.unit(5 + 8 / 12, "feet"),
  23141. weight: math.unit(140, "lb"),
  23142. name: "Front",
  23143. image: {
  23144. source: "./media/characters/khemri/front.svg",
  23145. extra: 4780 / 4059,
  23146. bottom: 80.1 / 4859.25
  23147. }
  23148. },
  23149. },
  23150. [
  23151. {
  23152. name: "Micro",
  23153. height: math.unit(6, "inches")
  23154. },
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(5 + 8 / 12, "feet"),
  23158. default: true
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23164. {
  23165. front: {
  23166. height: math.unit(13, "feet"),
  23167. weight: math.unit(1700, "lb"),
  23168. name: "Front",
  23169. image: {
  23170. source: "./media/characters/felix-braveheart/front.svg",
  23171. extra: 1222 / 1157,
  23172. bottom: 53.2 / 1280
  23173. }
  23174. },
  23175. back: {
  23176. height: math.unit(13, "feet"),
  23177. weight: math.unit(1700, "lb"),
  23178. name: "Back",
  23179. image: {
  23180. source: "./media/characters/felix-braveheart/back.svg",
  23181. extra: 1277 / 1203,
  23182. bottom: 50.2 / 1327
  23183. }
  23184. },
  23185. feral: {
  23186. height: math.unit(6, "feet"),
  23187. weight: math.unit(400, "lb"),
  23188. name: "Feral",
  23189. image: {
  23190. source: "./media/characters/felix-braveheart/feral.svg",
  23191. extra: 682 / 625,
  23192. bottom: 6.9 / 688
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Normal",
  23199. height: math.unit(13, "feet"),
  23200. default: true
  23201. },
  23202. ]
  23203. ))
  23204. characterMakers.push(() => makeCharacter(
  23205. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23206. {
  23207. side: {
  23208. height: math.unit(5 + 11 / 12, "feet"),
  23209. weight: math.unit(1400, "lb"),
  23210. name: "Side",
  23211. image: {
  23212. source: "./media/characters/shadow-blade/side.svg",
  23213. extra: 1726 / 1267,
  23214. bottom: 58.4 / 1785
  23215. }
  23216. },
  23217. },
  23218. [
  23219. {
  23220. name: "Normal",
  23221. height: math.unit(5 + 11 / 12, "feet"),
  23222. default: true
  23223. },
  23224. ]
  23225. ))
  23226. characterMakers.push(() => makeCharacter(
  23227. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23228. {
  23229. front: {
  23230. height: math.unit(1 + 6 / 12, "feet"),
  23231. weight: math.unit(25, "lb"),
  23232. name: "Front",
  23233. image: {
  23234. source: "./media/characters/karla-halldor/front.svg",
  23235. extra: 1459 / 1383,
  23236. bottom: 12 / 1472
  23237. }
  23238. },
  23239. },
  23240. [
  23241. {
  23242. name: "Normal",
  23243. height: math.unit(1 + 6 / 12, "feet"),
  23244. default: true
  23245. },
  23246. ]
  23247. ))
  23248. characterMakers.push(() => makeCharacter(
  23249. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23250. {
  23251. front: {
  23252. height: math.unit(6 + 2 / 12, "feet"),
  23253. weight: math.unit(160, "lb"),
  23254. name: "Front",
  23255. image: {
  23256. source: "./media/characters/ariam/front.svg",
  23257. extra: 714 / 617,
  23258. bottom: 23.4 / 737,
  23259. }
  23260. },
  23261. squatting: {
  23262. height: math.unit(4.1, "feet"),
  23263. weight: math.unit(160, "lb"),
  23264. name: "Squatting",
  23265. image: {
  23266. source: "./media/characters/ariam/squatting.svg",
  23267. extra: 2617 / 2112,
  23268. bottom: 61.2 / 2681,
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Normal",
  23275. height: math.unit(6 + 2 / 12, "feet"),
  23276. default: true
  23277. },
  23278. {
  23279. name: "Normal+",
  23280. height: math.unit(4, "meters")
  23281. },
  23282. {
  23283. name: "Macro",
  23284. height: math.unit(50, "meters")
  23285. },
  23286. {
  23287. name: "Macro+",
  23288. height: math.unit(100, "meters")
  23289. },
  23290. {
  23291. name: "Megamacro",
  23292. height: math.unit(20, "km")
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23298. {
  23299. front: {
  23300. height: math.unit(1.67, "meters"),
  23301. weight: math.unit(140, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23305. extra: 438 / 410,
  23306. bottom: 0.75 / 439
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Shrunken",
  23313. height: math.unit(7.6, "cm")
  23314. },
  23315. {
  23316. name: "Human Scale",
  23317. height: math.unit(1.67, "meters")
  23318. },
  23319. {
  23320. name: "Wolxi Scale",
  23321. height: math.unit(36.7, "meters"),
  23322. default: true
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(1.73, "meters"),
  23331. weight: math.unit(240, "lb"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/izue-two-mothers/front.svg",
  23335. extra: 469 / 437,
  23336. bottom: 1.24 / 470.6
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Shrunken",
  23343. height: math.unit(7.86, "cm")
  23344. },
  23345. {
  23346. name: "Human Scale",
  23347. height: math.unit(1.73, "meters")
  23348. },
  23349. {
  23350. name: "Wolxi Scale",
  23351. height: math.unit(38, "meters"),
  23352. default: true
  23353. },
  23354. ]
  23355. ))
  23356. characterMakers.push(() => makeCharacter(
  23357. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23358. {
  23359. front: {
  23360. height: math.unit(1.55, "meters"),
  23361. weight: math.unit(120, "lb"),
  23362. name: "Front",
  23363. image: {
  23364. source: "./media/characters/teeku-love-shack/front.svg",
  23365. extra: 387 / 362,
  23366. bottom: 1.51 / 388
  23367. }
  23368. },
  23369. },
  23370. [
  23371. {
  23372. name: "Shrunken",
  23373. height: math.unit(7, "cm")
  23374. },
  23375. {
  23376. name: "Human Scale",
  23377. height: math.unit(1.55, "meters")
  23378. },
  23379. {
  23380. name: "Wolxi Scale",
  23381. height: math.unit(34.1, "meters"),
  23382. default: true
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(1.83, "meters"),
  23391. weight: math.unit(135, "lb"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/dejma-the-red/front.svg",
  23395. extra: 480 / 458,
  23396. bottom: 1.8 / 482
  23397. }
  23398. },
  23399. },
  23400. [
  23401. {
  23402. name: "Shrunken",
  23403. height: math.unit(8.3, "cm")
  23404. },
  23405. {
  23406. name: "Human Scale",
  23407. height: math.unit(1.83, "meters")
  23408. },
  23409. {
  23410. name: "Wolxi Scale",
  23411. height: math.unit(40, "meters"),
  23412. default: true
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23418. {
  23419. front: {
  23420. height: math.unit(1.78, "meters"),
  23421. weight: math.unit(65, "kg"),
  23422. name: "Front",
  23423. image: {
  23424. source: "./media/characters/aki/front.svg",
  23425. extra: 452 / 415
  23426. }
  23427. },
  23428. frontNsfw: {
  23429. height: math.unit(1.78, "meters"),
  23430. weight: math.unit(65, "kg"),
  23431. name: "Front (NSFW)",
  23432. image: {
  23433. source: "./media/characters/aki/front-nsfw.svg",
  23434. extra: 452 / 415
  23435. }
  23436. },
  23437. back: {
  23438. height: math.unit(1.78, "meters"),
  23439. weight: math.unit(65, "kg"),
  23440. name: "Back",
  23441. image: {
  23442. source: "./media/characters/aki/back.svg",
  23443. extra: 452 / 415
  23444. }
  23445. },
  23446. rump: {
  23447. height: math.unit(2.05, "feet"),
  23448. name: "Rump",
  23449. image: {
  23450. source: "./media/characters/aki/rump.svg"
  23451. }
  23452. },
  23453. dick: {
  23454. height: math.unit(0.95, "feet"),
  23455. name: "Dick",
  23456. image: {
  23457. source: "./media/characters/aki/dick.svg"
  23458. }
  23459. },
  23460. },
  23461. [
  23462. {
  23463. name: "Micro",
  23464. height: math.unit(15, "cm")
  23465. },
  23466. {
  23467. name: "Normal",
  23468. height: math.unit(178, "cm"),
  23469. default: true
  23470. },
  23471. {
  23472. name: "Macro",
  23473. height: math.unit(214, "m")
  23474. },
  23475. {
  23476. name: "Macro+",
  23477. height: math.unit(534, "m")
  23478. },
  23479. ]
  23480. ))
  23481. characterMakers.push(() => makeCharacter(
  23482. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23483. {
  23484. front: {
  23485. height: math.unit(5 + 5 / 12, "feet"),
  23486. weight: math.unit(120, "lb"),
  23487. name: "Front",
  23488. image: {
  23489. source: "./media/characters/ari/front.svg",
  23490. extra: 714.5 / 682,
  23491. bottom: 8 / 722.5
  23492. }
  23493. },
  23494. },
  23495. [
  23496. {
  23497. name: "Normal",
  23498. height: math.unit(5 + 5 / 12, "feet")
  23499. },
  23500. {
  23501. name: "Macro",
  23502. height: math.unit(100, "feet"),
  23503. default: true
  23504. },
  23505. {
  23506. name: "Megamacro",
  23507. height: math.unit(100, "miles")
  23508. },
  23509. {
  23510. name: "Gigamacro",
  23511. height: math.unit(80000, "miles")
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23517. {
  23518. side: {
  23519. height: math.unit(9, "feet"),
  23520. weight: math.unit(400, "kg"),
  23521. name: "Side",
  23522. image: {
  23523. source: "./media/characters/bolt/side.svg",
  23524. extra: 1126 / 896,
  23525. bottom: 60 / 1187.3,
  23526. }
  23527. },
  23528. },
  23529. [
  23530. {
  23531. name: "Micro",
  23532. height: math.unit(5, "inches")
  23533. },
  23534. {
  23535. name: "Normal",
  23536. height: math.unit(9, "feet"),
  23537. default: true
  23538. },
  23539. {
  23540. name: "Macro",
  23541. height: math.unit(700, "feet")
  23542. },
  23543. {
  23544. name: "Max Size",
  23545. height: math.unit(1.52e22, "yottameters")
  23546. },
  23547. ]
  23548. ))
  23549. characterMakers.push(() => makeCharacter(
  23550. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23551. {
  23552. front: {
  23553. height: math.unit(4.53, "meters"),
  23554. weight: math.unit(3, "tons"),
  23555. name: "Front",
  23556. image: {
  23557. source: "./media/characters/draekon-sylviar/front.svg",
  23558. extra: 1228 / 1068,
  23559. bottom: 41 / 1270
  23560. }
  23561. },
  23562. tail: {
  23563. height: math.unit(1.772, "meter"),
  23564. name: "Tail",
  23565. image: {
  23566. source: "./media/characters/draekon-sylviar/tail.svg"
  23567. }
  23568. },
  23569. head: {
  23570. height: math.unit(1.331, "meter"),
  23571. name: "Head",
  23572. image: {
  23573. source: "./media/characters/draekon-sylviar/head.svg"
  23574. }
  23575. },
  23576. hand: {
  23577. height: math.unit(0.564, "meter"),
  23578. name: "Hand",
  23579. image: {
  23580. source: "./media/characters/draekon-sylviar/hand.svg"
  23581. }
  23582. },
  23583. foot: {
  23584. height: math.unit(0.621, "meter"),
  23585. name: "Foot",
  23586. image: {
  23587. source: "./media/characters/draekon-sylviar/foot.svg",
  23588. bottom: 32 / 324
  23589. }
  23590. },
  23591. dick: {
  23592. height: math.unit(61, "cm"),
  23593. name: "Dick",
  23594. image: {
  23595. source: "./media/characters/draekon-sylviar/dick.svg"
  23596. }
  23597. },
  23598. dickseparated: {
  23599. height: math.unit(61, "cm"),
  23600. name: "Dick-separated",
  23601. image: {
  23602. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Small",
  23609. height: math.unit(4.53 / 2, "meters"),
  23610. default: true
  23611. },
  23612. {
  23613. name: "Normal",
  23614. height: math.unit(4.53, "meters"),
  23615. default: true
  23616. },
  23617. {
  23618. name: "Large",
  23619. height: math.unit(4.53 * 2, "meters"),
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(6 + 2 / 12, "feet"),
  23628. weight: math.unit(180, "lb"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/brawler/front.svg",
  23632. extra: 3301 / 3027,
  23633. bottom: 138 / 3439
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Normal",
  23640. height: math.unit(6 + 2 / 12, "feet"),
  23641. default: true
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23647. {
  23648. front: {
  23649. height: math.unit(11, "feet"),
  23650. weight: math.unit(1000, "lb"),
  23651. name: "Front",
  23652. image: {
  23653. source: "./media/characters/alex/front.svg",
  23654. bottom: 44.5 / 620
  23655. }
  23656. },
  23657. },
  23658. [
  23659. {
  23660. name: "Micro",
  23661. height: math.unit(5, "inches")
  23662. },
  23663. {
  23664. name: "Normal",
  23665. height: math.unit(11, "feet"),
  23666. default: true
  23667. },
  23668. {
  23669. name: "Macro",
  23670. height: math.unit(9.5e9, "feet")
  23671. },
  23672. {
  23673. name: "Max Size",
  23674. height: math.unit(1.4e283, "yottameters")
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23680. {
  23681. female: {
  23682. height: math.unit(29.9, "m"),
  23683. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23684. name: "Female",
  23685. image: {
  23686. source: "./media/characters/zenari/female.svg",
  23687. extra: 3281.6 / 3217,
  23688. bottom: 72.2 / 3353
  23689. }
  23690. },
  23691. male: {
  23692. height: math.unit(27.7, "m"),
  23693. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23694. name: "Male",
  23695. image: {
  23696. source: "./media/characters/zenari/male.svg",
  23697. extra: 3008 / 2991,
  23698. bottom: 54.6 / 3069
  23699. }
  23700. },
  23701. },
  23702. [
  23703. {
  23704. name: "Macro",
  23705. height: math.unit(29.7, "meters"),
  23706. default: true
  23707. },
  23708. ]
  23709. ))
  23710. characterMakers.push(() => makeCharacter(
  23711. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23712. {
  23713. female: {
  23714. height: math.unit(23.8, "m"),
  23715. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23716. name: "Female",
  23717. image: {
  23718. source: "./media/characters/mactarian/female.svg",
  23719. extra: 2662 / 2569,
  23720. bottom: 73 / 2736
  23721. }
  23722. },
  23723. male: {
  23724. height: math.unit(23.8, "m"),
  23725. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23726. name: "Male",
  23727. image: {
  23728. source: "./media/characters/mactarian/male.svg",
  23729. extra: 2673 / 2600,
  23730. bottom: 76 / 2750
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Macro",
  23737. height: math.unit(23.8, "meters"),
  23738. default: true
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23744. {
  23745. female: {
  23746. height: math.unit(19.3, "m"),
  23747. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23748. name: "Female",
  23749. image: {
  23750. source: "./media/characters/umok/female.svg",
  23751. extra: 2186 / 2078,
  23752. bottom: 87 / 2277
  23753. }
  23754. },
  23755. male: {
  23756. height: math.unit(19.5, "m"),
  23757. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23758. name: "Male",
  23759. image: {
  23760. source: "./media/characters/umok/male.svg",
  23761. extra: 2233 / 2140,
  23762. bottom: 24.4 / 2258
  23763. }
  23764. },
  23765. },
  23766. [
  23767. {
  23768. name: "Macro",
  23769. height: math.unit(19.3, "meters"),
  23770. default: true
  23771. },
  23772. ]
  23773. ))
  23774. characterMakers.push(() => makeCharacter(
  23775. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23776. {
  23777. female: {
  23778. height: math.unit(26.15, "m"),
  23779. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23780. name: "Female",
  23781. image: {
  23782. source: "./media/characters/joraxian/female.svg",
  23783. extra: 2912 / 2824,
  23784. bottom: 36 / 2956
  23785. }
  23786. },
  23787. male: {
  23788. height: math.unit(25.4, "m"),
  23789. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23790. name: "Male",
  23791. image: {
  23792. source: "./media/characters/joraxian/male.svg",
  23793. extra: 2877 / 2721,
  23794. bottom: 82 / 2967
  23795. }
  23796. },
  23797. },
  23798. [
  23799. {
  23800. name: "Macro",
  23801. height: math.unit(26.15, "meters"),
  23802. default: true
  23803. },
  23804. ]
  23805. ))
  23806. characterMakers.push(() => makeCharacter(
  23807. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23808. {
  23809. female: {
  23810. height: math.unit(21.6, "m"),
  23811. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23812. name: "Female",
  23813. image: {
  23814. source: "./media/characters/sthara/female.svg",
  23815. extra: 2516 / 2347,
  23816. bottom: 21.5 / 2537
  23817. }
  23818. },
  23819. male: {
  23820. height: math.unit(24, "m"),
  23821. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23822. name: "Male",
  23823. image: {
  23824. source: "./media/characters/sthara/male.svg",
  23825. extra: 2732 / 2607,
  23826. bottom: 23 / 2732
  23827. }
  23828. },
  23829. },
  23830. [
  23831. {
  23832. name: "Macro",
  23833. height: math.unit(21.6, "meters"),
  23834. default: true
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23840. {
  23841. front: {
  23842. height: math.unit(6 + 4 / 12, "feet"),
  23843. weight: math.unit(175, "lb"),
  23844. name: "Front",
  23845. image: {
  23846. source: "./media/characters/luka-bryzant/front.svg",
  23847. extra: 311 / 289,
  23848. bottom: 4 / 315
  23849. }
  23850. },
  23851. back: {
  23852. height: math.unit(6 + 4 / 12, "feet"),
  23853. weight: math.unit(175, "lb"),
  23854. name: "Back",
  23855. image: {
  23856. source: "./media/characters/luka-bryzant/back.svg",
  23857. extra: 311 / 289,
  23858. bottom: 3.8 / 313.7
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Micro",
  23865. height: math.unit(10, "inches")
  23866. },
  23867. {
  23868. name: "Normal",
  23869. height: math.unit(6 + 4 / 12, "feet"),
  23870. default: true
  23871. },
  23872. {
  23873. name: "Large",
  23874. height: math.unit(12, "feet")
  23875. },
  23876. ]
  23877. ))
  23878. characterMakers.push(() => makeCharacter(
  23879. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23880. {
  23881. front: {
  23882. height: math.unit(5 + 7 / 12, "feet"),
  23883. weight: math.unit(185, "lb"),
  23884. name: "Front",
  23885. image: {
  23886. source: "./media/characters/aman-aquila/front.svg",
  23887. extra: 1013 / 976,
  23888. bottom: 45.6 / 1057
  23889. }
  23890. },
  23891. side: {
  23892. height: math.unit(5 + 7 / 12, "feet"),
  23893. weight: math.unit(185, "lb"),
  23894. name: "Side",
  23895. image: {
  23896. source: "./media/characters/aman-aquila/side.svg",
  23897. extra: 1054 / 1011,
  23898. bottom: 15 / 1070
  23899. }
  23900. },
  23901. back: {
  23902. height: math.unit(5 + 7 / 12, "feet"),
  23903. weight: math.unit(185, "lb"),
  23904. name: "Back",
  23905. image: {
  23906. source: "./media/characters/aman-aquila/back.svg",
  23907. extra: 1026 / 970,
  23908. bottom: 12 / 1039
  23909. }
  23910. },
  23911. head: {
  23912. height: math.unit(1.211, "feet"),
  23913. name: "Head",
  23914. image: {
  23915. source: "./media/characters/aman-aquila/head.svg",
  23916. }
  23917. },
  23918. },
  23919. [
  23920. {
  23921. name: "Minimicro",
  23922. height: math.unit(0.057, "inches")
  23923. },
  23924. {
  23925. name: "Micro",
  23926. height: math.unit(7, "inches")
  23927. },
  23928. {
  23929. name: "Mini",
  23930. height: math.unit(3 + 7 / 12, "feet")
  23931. },
  23932. {
  23933. name: "Normal",
  23934. height: math.unit(5 + 7 / 12, "feet"),
  23935. default: true
  23936. },
  23937. {
  23938. name: "Macro",
  23939. height: math.unit(157 + 7 / 12, "feet")
  23940. },
  23941. {
  23942. name: "Megamacro",
  23943. height: math.unit(1557 + 7 / 12, "feet")
  23944. },
  23945. {
  23946. name: "Gigamacro",
  23947. height: math.unit(15557 + 7 / 12, "feet")
  23948. },
  23949. ]
  23950. ))
  23951. characterMakers.push(() => makeCharacter(
  23952. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23953. {
  23954. front: {
  23955. height: math.unit(3 + 2 / 12, "inches"),
  23956. weight: math.unit(0.3, "ounces"),
  23957. name: "Front",
  23958. image: {
  23959. source: "./media/characters/hiphae/front.svg",
  23960. extra: 1931 / 1683,
  23961. bottom: 24 / 1955
  23962. }
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Normal",
  23968. height: math.unit(3 + 1 / 2, "inches"),
  23969. default: true
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23975. {
  23976. front: {
  23977. height: math.unit(5 + 10 / 12, "feet"),
  23978. weight: math.unit(165, "lb"),
  23979. name: "Front",
  23980. image: {
  23981. source: "./media/characters/nicky/front.svg",
  23982. extra: 3144 / 2886,
  23983. bottom: 45.6 / 3192
  23984. }
  23985. },
  23986. back: {
  23987. height: math.unit(5 + 10 / 12, "feet"),
  23988. weight: math.unit(165, "lb"),
  23989. name: "Back",
  23990. image: {
  23991. source: "./media/characters/nicky/back.svg",
  23992. extra: 3055 / 2804,
  23993. bottom: 28.4 / 3087
  23994. }
  23995. },
  23996. frontclothed: {
  23997. height: math.unit(5 + 10 / 12, "feet"),
  23998. weight: math.unit(165, "lb"),
  23999. name: "Front-clothed",
  24000. image: {
  24001. source: "./media/characters/nicky/front-clothed.svg",
  24002. extra: 3184.9 / 2926.9,
  24003. bottom: 86.5 / 3239.9
  24004. }
  24005. },
  24006. foot: {
  24007. height: math.unit(1.16, "feet"),
  24008. name: "Foot",
  24009. image: {
  24010. source: "./media/characters/nicky/foot.svg"
  24011. }
  24012. },
  24013. feet: {
  24014. height: math.unit(1.34, "feet"),
  24015. name: "Feet",
  24016. image: {
  24017. source: "./media/characters/nicky/feet.svg"
  24018. }
  24019. },
  24020. maw: {
  24021. height: math.unit(0.9, "feet"),
  24022. name: "Maw",
  24023. image: {
  24024. source: "./media/characters/nicky/maw.svg"
  24025. }
  24026. },
  24027. },
  24028. [
  24029. {
  24030. name: "Normal",
  24031. height: math.unit(5 + 10 / 12, "feet"),
  24032. default: true
  24033. },
  24034. {
  24035. name: "Macro",
  24036. height: math.unit(60, "feet")
  24037. },
  24038. {
  24039. name: "Megamacro",
  24040. height: math.unit(1, "mile")
  24041. },
  24042. ]
  24043. ))
  24044. characterMakers.push(() => makeCharacter(
  24045. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24046. {
  24047. side: {
  24048. height: math.unit(10, "feet"),
  24049. weight: math.unit(600, "lb"),
  24050. name: "Side",
  24051. image: {
  24052. source: "./media/characters/blair/side.svg",
  24053. bottom: 16.6 / 475,
  24054. extra: 458 / 431
  24055. }
  24056. },
  24057. },
  24058. [
  24059. {
  24060. name: "Micro",
  24061. height: math.unit(8, "inches")
  24062. },
  24063. {
  24064. name: "Normal",
  24065. height: math.unit(10, "feet"),
  24066. default: true
  24067. },
  24068. {
  24069. name: "Macro",
  24070. height: math.unit(180, "feet")
  24071. },
  24072. ]
  24073. ))
  24074. characterMakers.push(() => makeCharacter(
  24075. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24076. {
  24077. front: {
  24078. height: math.unit(5 + 4 / 12, "feet"),
  24079. weight: math.unit(125, "lb"),
  24080. name: "Front",
  24081. image: {
  24082. source: "./media/characters/fisher/front.svg",
  24083. extra: 444 / 390,
  24084. bottom: 2 / 444.8
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Micro",
  24091. height: math.unit(4, "inches")
  24092. },
  24093. {
  24094. name: "Normal",
  24095. height: math.unit(5 + 4 / 12, "feet"),
  24096. default: true
  24097. },
  24098. {
  24099. name: "Macro",
  24100. height: math.unit(100, "feet")
  24101. },
  24102. ]
  24103. ))
  24104. characterMakers.push(() => makeCharacter(
  24105. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24106. {
  24107. front: {
  24108. height: math.unit(6.71, "feet"),
  24109. weight: math.unit(200, "lb"),
  24110. capacity: math.unit(1000000, "people"),
  24111. name: "Front",
  24112. image: {
  24113. source: "./media/characters/gliss/front.svg",
  24114. extra: 2347 / 2231,
  24115. bottom: 113 / 2462
  24116. }
  24117. },
  24118. hammerspaceSize: {
  24119. height: math.unit(6.71 * 717, "feet"),
  24120. weight: math.unit(200, "lb"),
  24121. capacity: math.unit(1000000, "people"),
  24122. name: "Hammerspace Size",
  24123. image: {
  24124. source: "./media/characters/gliss/front.svg",
  24125. extra: 2347 / 2231,
  24126. bottom: 113 / 2462
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Normal",
  24133. height: math.unit(6.71, "feet"),
  24134. default: true
  24135. },
  24136. ]
  24137. ))
  24138. characterMakers.push(() => makeCharacter(
  24139. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24140. {
  24141. side: {
  24142. height: math.unit(1.44, "m"),
  24143. weight: math.unit(80, "kg"),
  24144. name: "Side",
  24145. image: {
  24146. source: "./media/characters/dune-anderson/side.svg",
  24147. bottom: 49 / 1426
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Wolf-sized",
  24154. height: math.unit(1.44, "meters")
  24155. },
  24156. {
  24157. name: "Normal",
  24158. height: math.unit(5.05, "meters"),
  24159. default: true
  24160. },
  24161. {
  24162. name: "Big",
  24163. height: math.unit(14.4, "meters")
  24164. },
  24165. {
  24166. name: "Huge",
  24167. height: math.unit(144, "meters")
  24168. },
  24169. ]
  24170. ))
  24171. characterMakers.push(() => makeCharacter(
  24172. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24173. {
  24174. front: {
  24175. height: math.unit(7, "feet"),
  24176. weight: math.unit(425, "lb"),
  24177. name: "Front",
  24178. image: {
  24179. source: "./media/characters/hind/front.svg",
  24180. extra: 2091 / 1860,
  24181. bottom: 129 / 2220
  24182. }
  24183. },
  24184. back: {
  24185. height: math.unit(7, "feet"),
  24186. weight: math.unit(425, "lb"),
  24187. name: "Back",
  24188. image: {
  24189. source: "./media/characters/hind/back.svg",
  24190. extra: 2091 / 1860,
  24191. bottom: 24.6 / 2309
  24192. }
  24193. },
  24194. tail: {
  24195. height: math.unit(2.8, "feet"),
  24196. name: "Tail",
  24197. image: {
  24198. source: "./media/characters/hind/tail.svg"
  24199. }
  24200. },
  24201. head: {
  24202. height: math.unit(2.55, "feet"),
  24203. name: "Head",
  24204. image: {
  24205. source: "./media/characters/hind/head.svg"
  24206. }
  24207. },
  24208. },
  24209. [
  24210. {
  24211. name: "XS",
  24212. height: math.unit(0.7, "feet")
  24213. },
  24214. {
  24215. name: "Normal",
  24216. height: math.unit(7, "feet"),
  24217. default: true
  24218. },
  24219. {
  24220. name: "XL",
  24221. height: math.unit(70, "feet")
  24222. },
  24223. ]
  24224. ))
  24225. characterMakers.push(() => makeCharacter(
  24226. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24227. {
  24228. front: {
  24229. height: math.unit(6, "feet"),
  24230. weight: math.unit(150, "lb"),
  24231. name: "Front",
  24232. image: {
  24233. source: "./media/characters/dylan-skaven/front.svg",
  24234. extra: 2318 / 2063,
  24235. bottom: 93.4 / 2410
  24236. }
  24237. },
  24238. },
  24239. [
  24240. {
  24241. name: "Nano",
  24242. height: math.unit(1, "mm")
  24243. },
  24244. {
  24245. name: "Micro",
  24246. height: math.unit(1, "cm")
  24247. },
  24248. {
  24249. name: "Normal",
  24250. height: math.unit(2.1, "meters"),
  24251. default: true
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24257. {
  24258. front: {
  24259. height: math.unit(7 + 5 / 12, "feet"),
  24260. weight: math.unit(357, "lb"),
  24261. name: "Front",
  24262. image: {
  24263. source: "./media/characters/solex-draconov/front.svg",
  24264. extra: 1993 / 1865,
  24265. bottom: 117 / 2111
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Natural Height",
  24272. height: math.unit(7 + 5 / 12, "feet"),
  24273. default: true
  24274. },
  24275. {
  24276. name: "Macro",
  24277. height: math.unit(350, "feet")
  24278. },
  24279. {
  24280. name: "Macro+",
  24281. height: math.unit(1000, "feet")
  24282. },
  24283. {
  24284. name: "Megamacro",
  24285. height: math.unit(20, "km")
  24286. },
  24287. {
  24288. name: "Megamacro+",
  24289. height: math.unit(1000, "km")
  24290. },
  24291. {
  24292. name: "Gigamacro",
  24293. height: math.unit(2.5, "Gm")
  24294. },
  24295. {
  24296. name: "Teramacro",
  24297. height: math.unit(15, "Tm")
  24298. },
  24299. {
  24300. name: "Galactic",
  24301. height: math.unit(30, "Zm")
  24302. },
  24303. {
  24304. name: "Universal",
  24305. height: math.unit(21000, "Ym")
  24306. },
  24307. {
  24308. name: "Omniversal",
  24309. height: math.unit(9.861e50, "Ym")
  24310. },
  24311. {
  24312. name: "Existential",
  24313. height: math.unit(1e300, "meters")
  24314. },
  24315. ]
  24316. ))
  24317. characterMakers.push(() => makeCharacter(
  24318. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24319. {
  24320. side: {
  24321. height: math.unit(25, "feet"),
  24322. weight: math.unit(90000, "lb"),
  24323. name: "Side",
  24324. image: {
  24325. source: "./media/characters/mandarax/side.svg",
  24326. extra: 614 / 332,
  24327. bottom: 55 / 630
  24328. }
  24329. },
  24330. head: {
  24331. height: math.unit(11.4, "feet"),
  24332. name: "Head",
  24333. image: {
  24334. source: "./media/characters/mandarax/head.svg"
  24335. }
  24336. },
  24337. belly: {
  24338. height: math.unit(33, "feet"),
  24339. name: "Belly",
  24340. capacity: math.unit(500, "people"),
  24341. image: {
  24342. source: "./media/characters/mandarax/belly.svg"
  24343. }
  24344. },
  24345. dick: {
  24346. height: math.unit(8.46, "feet"),
  24347. name: "Dick",
  24348. image: {
  24349. source: "./media/characters/mandarax/dick.svg"
  24350. }
  24351. },
  24352. top: {
  24353. height: math.unit(28, "meters"),
  24354. name: "Top",
  24355. image: {
  24356. source: "./media/characters/mandarax/top.svg"
  24357. }
  24358. },
  24359. },
  24360. [
  24361. {
  24362. name: "Normal",
  24363. height: math.unit(25, "feet"),
  24364. default: true
  24365. },
  24366. ]
  24367. ))
  24368. characterMakers.push(() => makeCharacter(
  24369. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24370. {
  24371. front: {
  24372. height: math.unit(5, "feet"),
  24373. weight: math.unit(90, "lb"),
  24374. name: "Front",
  24375. image: {
  24376. source: "./media/characters/pixil/front.svg",
  24377. extra: 2000 / 1618,
  24378. bottom: 12.3 / 2011
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Normal",
  24385. height: math.unit(5, "feet"),
  24386. default: true
  24387. },
  24388. {
  24389. name: "Megamacro",
  24390. height: math.unit(10, "miles"),
  24391. },
  24392. ]
  24393. ))
  24394. characterMakers.push(() => makeCharacter(
  24395. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24396. {
  24397. front: {
  24398. height: math.unit(7 + 2 / 12, "feet"),
  24399. weight: math.unit(200, "lb"),
  24400. name: "Front",
  24401. image: {
  24402. source: "./media/characters/angel/front.svg",
  24403. extra: 1830 / 1737,
  24404. bottom: 22.6 / 1854,
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Normal",
  24411. height: math.unit(7 + 2 / 12, "feet"),
  24412. default: true
  24413. },
  24414. {
  24415. name: "Macro",
  24416. height: math.unit(1000, "feet")
  24417. },
  24418. {
  24419. name: "Megamacro",
  24420. height: math.unit(2, "miles")
  24421. },
  24422. {
  24423. name: "Gigamacro",
  24424. height: math.unit(20, "earths")
  24425. },
  24426. ]
  24427. ))
  24428. characterMakers.push(() => makeCharacter(
  24429. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24430. {
  24431. front: {
  24432. height: math.unit(5, "feet"),
  24433. weight: math.unit(180, "lb"),
  24434. name: "Front",
  24435. image: {
  24436. source: "./media/characters/mekana/front.svg",
  24437. extra: 1671 / 1605,
  24438. bottom: 3.5 / 1691
  24439. }
  24440. },
  24441. side: {
  24442. height: math.unit(5, "feet"),
  24443. weight: math.unit(180, "lb"),
  24444. name: "Side",
  24445. image: {
  24446. source: "./media/characters/mekana/side.svg",
  24447. extra: 1671 / 1605,
  24448. bottom: 3.5 / 1691
  24449. }
  24450. },
  24451. back: {
  24452. height: math.unit(5, "feet"),
  24453. weight: math.unit(180, "lb"),
  24454. name: "Back",
  24455. image: {
  24456. source: "./media/characters/mekana/back.svg",
  24457. extra: 1671 / 1605,
  24458. bottom: 3.5 / 1691
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Normal",
  24465. height: math.unit(5, "feet"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24472. {
  24473. front: {
  24474. height: math.unit(4 + 6 / 12, "feet"),
  24475. weight: math.unit(80, "lb"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/pixie/front.svg",
  24479. extra: 1924 / 1825,
  24480. bottom: 22.4 / 1946
  24481. }
  24482. },
  24483. },
  24484. [
  24485. {
  24486. name: "Normal",
  24487. height: math.unit(4 + 6 / 12, "feet"),
  24488. default: true
  24489. },
  24490. {
  24491. name: "Macro",
  24492. height: math.unit(40, "feet")
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(2.1, "meters"),
  24501. weight: math.unit(200, "lb"),
  24502. name: "Front",
  24503. image: {
  24504. source: "./media/characters/the-lascivious/front.svg",
  24505. extra: 1 / 0.893,
  24506. bottom: 3.5 / 573.7
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Human Scale",
  24513. height: math.unit(2.1, "meters")
  24514. },
  24515. {
  24516. name: "Wolxi Scale",
  24517. height: math.unit(46.2, "m"),
  24518. default: true
  24519. },
  24520. {
  24521. name: "Boinker of Buildings",
  24522. height: math.unit(10, "km")
  24523. },
  24524. {
  24525. name: "Shagger of Skyscrapers",
  24526. height: math.unit(40, "km")
  24527. },
  24528. {
  24529. name: "Banger of Boroughs",
  24530. height: math.unit(4000, "km")
  24531. },
  24532. {
  24533. name: "Screwer of States",
  24534. height: math.unit(100000, "km")
  24535. },
  24536. {
  24537. name: "Pounder of Planets",
  24538. height: math.unit(2000000, "km")
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24544. {
  24545. front: {
  24546. height: math.unit(6, "feet"),
  24547. weight: math.unit(150, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/aj/front.svg",
  24551. extra: 2039 / 1562,
  24552. bottom: 40 / 2079
  24553. }
  24554. },
  24555. },
  24556. [
  24557. {
  24558. name: "Normal",
  24559. height: math.unit(11 + 6 / 12, "feet"),
  24560. default: true
  24561. },
  24562. {
  24563. name: "Megamacro",
  24564. height: math.unit(60, "megameters")
  24565. },
  24566. ]
  24567. ))
  24568. characterMakers.push(() => makeCharacter(
  24569. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24570. {
  24571. side: {
  24572. height: math.unit(31 + 8 / 12, "feet"),
  24573. weight: math.unit(75000, "kg"),
  24574. name: "Side",
  24575. image: {
  24576. source: "./media/characters/koros/side.svg",
  24577. extra: 1442 / 1297,
  24578. bottom: 122.7 / 1562
  24579. }
  24580. },
  24581. dicksKingsCrown: {
  24582. height: math.unit(6, "feet"),
  24583. name: "Dicks (King's Crown)",
  24584. image: {
  24585. source: "./media/characters/koros/dicks-kings-crown.svg"
  24586. }
  24587. },
  24588. dicksTailSet: {
  24589. height: math.unit(3, "feet"),
  24590. name: "Dicks (Tail Set)",
  24591. image: {
  24592. source: "./media/characters/koros/dicks-tail-set.svg"
  24593. }
  24594. },
  24595. dickCumming: {
  24596. height: math.unit(7.98, "feet"),
  24597. name: "Dick (Cumming)",
  24598. image: {
  24599. source: "./media/characters/koros/dick-cumming.svg"
  24600. }
  24601. },
  24602. dicksBack: {
  24603. height: math.unit(5.9, "feet"),
  24604. name: "Dicks (Back)",
  24605. image: {
  24606. source: "./media/characters/koros/dicks-back.svg"
  24607. }
  24608. },
  24609. dicksFront: {
  24610. height: math.unit(3.72, "feet"),
  24611. name: "Dicks (Front)",
  24612. image: {
  24613. source: "./media/characters/koros/dicks-front.svg"
  24614. }
  24615. },
  24616. dicksPeeking: {
  24617. height: math.unit(3.0, "feet"),
  24618. name: "Dicks (Peeking)",
  24619. image: {
  24620. source: "./media/characters/koros/dicks-peeking.svg"
  24621. }
  24622. },
  24623. eye: {
  24624. height: math.unit(1.7, "feet"),
  24625. name: "Eye",
  24626. image: {
  24627. source: "./media/characters/koros/eye.svg"
  24628. }
  24629. },
  24630. headFront: {
  24631. height: math.unit(11.69, "feet"),
  24632. name: "Head (Front)",
  24633. image: {
  24634. source: "./media/characters/koros/head-front.svg"
  24635. }
  24636. },
  24637. headSide: {
  24638. height: math.unit(14, "feet"),
  24639. name: "Head (Side)",
  24640. image: {
  24641. source: "./media/characters/koros/head-side.svg"
  24642. }
  24643. },
  24644. leg: {
  24645. height: math.unit(17, "feet"),
  24646. name: "Leg",
  24647. image: {
  24648. source: "./media/characters/koros/leg.svg"
  24649. }
  24650. },
  24651. mawSide: {
  24652. height: math.unit(12.8, "feet"),
  24653. name: "Maw (Side)",
  24654. image: {
  24655. source: "./media/characters/koros/maw-side.svg"
  24656. }
  24657. },
  24658. mawSpitting: {
  24659. height: math.unit(17, "feet"),
  24660. name: "Maw (Spitting)",
  24661. image: {
  24662. source: "./media/characters/koros/maw-spitting.svg"
  24663. }
  24664. },
  24665. slit: {
  24666. height: math.unit(2.8, "feet"),
  24667. name: "Slit",
  24668. image: {
  24669. source: "./media/characters/koros/slit.svg"
  24670. }
  24671. },
  24672. stomach: {
  24673. height: math.unit(6.8, "feet"),
  24674. capacity: math.unit(20, "people"),
  24675. name: "Stomach",
  24676. image: {
  24677. source: "./media/characters/koros/stomach.svg"
  24678. }
  24679. },
  24680. wingspanBottom: {
  24681. height: math.unit(114, "feet"),
  24682. name: "Wingspan (Bottom)",
  24683. image: {
  24684. source: "./media/characters/koros/wingspan-bottom.svg"
  24685. }
  24686. },
  24687. wingspanTop: {
  24688. height: math.unit(104, "feet"),
  24689. name: "Wingspan (Top)",
  24690. image: {
  24691. source: "./media/characters/koros/wingspan-top.svg"
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(31 + 8 / 12, "feet"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24705. {
  24706. front: {
  24707. height: math.unit(18 + 5 / 12, "feet"),
  24708. weight: math.unit(3750, "kg"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/vexx/front.svg",
  24712. extra: 426 / 396,
  24713. bottom: 31.5 / 458
  24714. }
  24715. },
  24716. maw: {
  24717. height: math.unit(6, "feet"),
  24718. name: "Maw",
  24719. image: {
  24720. source: "./media/characters/vexx/maw.svg"
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(18 + 5 / 12, "feet"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(17 + 6 / 12, "feet"),
  24737. weight: math.unit(150, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/baadra/front.svg",
  24741. extra: 3137 / 2890,
  24742. bottom: 168.4 / 3305
  24743. }
  24744. },
  24745. back: {
  24746. height: math.unit(17 + 6 / 12, "feet"),
  24747. weight: math.unit(150, "lb"),
  24748. name: "Back",
  24749. image: {
  24750. source: "./media/characters/baadra/back.svg",
  24751. extra: 3142 / 2890,
  24752. bottom: 220 / 3371
  24753. }
  24754. },
  24755. head: {
  24756. height: math.unit(5.45, "feet"),
  24757. name: "Head",
  24758. image: {
  24759. source: "./media/characters/baadra/head.svg"
  24760. }
  24761. },
  24762. headAngry: {
  24763. height: math.unit(4.95, "feet"),
  24764. name: "Head (Angry)",
  24765. image: {
  24766. source: "./media/characters/baadra/head-angry.svg"
  24767. }
  24768. },
  24769. headOpen: {
  24770. height: math.unit(6, "feet"),
  24771. name: "Head (Open)",
  24772. image: {
  24773. source: "./media/characters/baadra/head-open.svg"
  24774. }
  24775. },
  24776. },
  24777. [
  24778. {
  24779. name: "Normal",
  24780. height: math.unit(17 + 6 / 12, "feet"),
  24781. default: true
  24782. },
  24783. ]
  24784. ))
  24785. characterMakers.push(() => makeCharacter(
  24786. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24787. {
  24788. front: {
  24789. height: math.unit(7 + 3 / 12, "feet"),
  24790. weight: math.unit(180, "lb"),
  24791. name: "Front",
  24792. image: {
  24793. source: "./media/characters/juri/front.svg",
  24794. extra: 1401 / 1237,
  24795. bottom: 18.5 / 1418
  24796. }
  24797. },
  24798. side: {
  24799. height: math.unit(7 + 3 / 12, "feet"),
  24800. weight: math.unit(180, "lb"),
  24801. name: "Side",
  24802. image: {
  24803. source: "./media/characters/juri/side.svg",
  24804. extra: 1424 / 1242,
  24805. bottom: 18.5 / 1447
  24806. }
  24807. },
  24808. sitting: {
  24809. height: math.unit(6, "feet"),
  24810. weight: math.unit(180, "lb"),
  24811. name: "Sitting",
  24812. image: {
  24813. source: "./media/characters/juri/sitting.svg",
  24814. extra: 1270 / 1143,
  24815. bottom: 100 / 1343
  24816. }
  24817. },
  24818. back: {
  24819. height: math.unit(7 + 3 / 12, "feet"),
  24820. weight: math.unit(180, "lb"),
  24821. name: "Back",
  24822. image: {
  24823. source: "./media/characters/juri/back.svg",
  24824. extra: 1377 / 1240,
  24825. bottom: 23.7 / 1405
  24826. }
  24827. },
  24828. maw: {
  24829. height: math.unit(2.8, "feet"),
  24830. name: "Maw",
  24831. image: {
  24832. source: "./media/characters/juri/maw.svg"
  24833. }
  24834. },
  24835. stomach: {
  24836. height: math.unit(0.89, "feet"),
  24837. capacity: math.unit(4, "liters"),
  24838. name: "Stomach",
  24839. image: {
  24840. source: "./media/characters/juri/stomach.svg"
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Normal",
  24847. height: math.unit(7 + 3 / 12, "feet"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24854. {
  24855. fox: {
  24856. height: math.unit(5 + 6 / 12, "feet"),
  24857. weight: math.unit(140, "lb"),
  24858. name: "Fox",
  24859. image: {
  24860. source: "./media/characters/maxene-sita/fox.svg",
  24861. extra: 146 / 138,
  24862. bottom: 2.1 / 148.19
  24863. }
  24864. },
  24865. foxLaying: {
  24866. height: math.unit(1.70, "feet"),
  24867. weight: math.unit(140, "lb"),
  24868. name: "Fox (Laying)",
  24869. image: {
  24870. source: "./media/characters/maxene-sita/fox-laying.svg",
  24871. extra: 910 / 572,
  24872. bottom: 71 / 981
  24873. }
  24874. },
  24875. kitsune: {
  24876. height: math.unit(10, "feet"),
  24877. weight: math.unit(800, "lb"),
  24878. name: "Kitsune",
  24879. image: {
  24880. source: "./media/characters/maxene-sita/kitsune.svg",
  24881. extra: 185 / 176,
  24882. bottom: 4.7 / 189.9
  24883. }
  24884. },
  24885. hellhound: {
  24886. height: math.unit(10, "feet"),
  24887. weight: math.unit(700, "lb"),
  24888. name: "Hellhound",
  24889. image: {
  24890. source: "./media/characters/maxene-sita/hellhound.svg",
  24891. extra: 1600 / 1545,
  24892. bottom: 81 / 1681
  24893. }
  24894. },
  24895. },
  24896. [
  24897. {
  24898. name: "Normal",
  24899. height: math.unit(5 + 6 / 12, "feet"),
  24900. default: true
  24901. },
  24902. ]
  24903. ))
  24904. characterMakers.push(() => makeCharacter(
  24905. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24906. {
  24907. front: {
  24908. height: math.unit(3 + 4 / 12, "feet"),
  24909. weight: math.unit(70, "lb"),
  24910. name: "Front",
  24911. image: {
  24912. source: "./media/characters/maia/front.svg",
  24913. extra: 227 / 219.5,
  24914. bottom: 40 / 267
  24915. }
  24916. },
  24917. back: {
  24918. height: math.unit(3 + 4 / 12, "feet"),
  24919. weight: math.unit(70, "lb"),
  24920. name: "Back",
  24921. image: {
  24922. source: "./media/characters/maia/back.svg",
  24923. extra: 237 / 225
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(3 + 4 / 12, "feet"),
  24931. default: true
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24937. {
  24938. front: {
  24939. height: math.unit(5 + 10 / 12, "feet"),
  24940. weight: math.unit(197, "lb"),
  24941. name: "Front",
  24942. image: {
  24943. source: "./media/characters/jabaro/front.svg",
  24944. extra: 225 / 216,
  24945. bottom: 5.06 / 230
  24946. }
  24947. },
  24948. back: {
  24949. height: math.unit(5 + 10 / 12, "feet"),
  24950. weight: math.unit(197, "lb"),
  24951. name: "Back",
  24952. image: {
  24953. source: "./media/characters/jabaro/back.svg",
  24954. extra: 225 / 219,
  24955. bottom: 1.9 / 227
  24956. }
  24957. },
  24958. },
  24959. [
  24960. {
  24961. name: "Normal",
  24962. height: math.unit(5 + 10 / 12, "feet"),
  24963. default: true
  24964. },
  24965. ]
  24966. ))
  24967. characterMakers.push(() => makeCharacter(
  24968. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24969. {
  24970. front: {
  24971. height: math.unit(5 + 8 / 12, "feet"),
  24972. weight: math.unit(139, "lb"),
  24973. name: "Front",
  24974. image: {
  24975. source: "./media/characters/risa/front.svg",
  24976. extra: 270 / 260,
  24977. bottom: 11.2 / 282
  24978. }
  24979. },
  24980. back: {
  24981. height: math.unit(5 + 8 / 12, "feet"),
  24982. weight: math.unit(139, "lb"),
  24983. name: "Back",
  24984. image: {
  24985. source: "./media/characters/risa/back.svg",
  24986. extra: 264 / 255,
  24987. bottom: 4 / 268
  24988. }
  24989. },
  24990. },
  24991. [
  24992. {
  24993. name: "Normal",
  24994. height: math.unit(5 + 8 / 12, "feet"),
  24995. default: true
  24996. },
  24997. ]
  24998. ))
  24999. characterMakers.push(() => makeCharacter(
  25000. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25001. {
  25002. front: {
  25003. height: math.unit(2 + 11 / 12, "feet"),
  25004. weight: math.unit(30, "lb"),
  25005. name: "Front",
  25006. image: {
  25007. source: "./media/characters/weatley/front.svg",
  25008. bottom: 10.7 / 414,
  25009. extra: 403.5 / 362
  25010. }
  25011. },
  25012. back: {
  25013. height: math.unit(2 + 11 / 12, "feet"),
  25014. weight: math.unit(30, "lb"),
  25015. name: "Back",
  25016. image: {
  25017. source: "./media/characters/weatley/back.svg",
  25018. bottom: 10.7 / 414,
  25019. extra: 403.5 / 362
  25020. }
  25021. },
  25022. },
  25023. [
  25024. {
  25025. name: "Normal",
  25026. height: math.unit(2 + 11 / 12, "feet"),
  25027. default: true
  25028. },
  25029. ]
  25030. ))
  25031. characterMakers.push(() => makeCharacter(
  25032. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25033. {
  25034. front: {
  25035. height: math.unit(5 + 2 / 12, "feet"),
  25036. weight: math.unit(50, "kg"),
  25037. name: "Front",
  25038. image: {
  25039. source: "./media/characters/mercury-crescent/front.svg",
  25040. extra: 1088 / 1033,
  25041. bottom: 18.9 / 1109
  25042. }
  25043. },
  25044. },
  25045. [
  25046. {
  25047. name: "Normal",
  25048. height: math.unit(5 + 2 / 12, "feet"),
  25049. default: true
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25055. {
  25056. front: {
  25057. height: math.unit(2, "feet"),
  25058. weight: math.unit(15, "kg"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/diamond-jones/front.svg",
  25062. bottom: 16 / 568
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Normal",
  25069. height: math.unit(2, "feet"),
  25070. default: true
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25076. {
  25077. front: {
  25078. height: math.unit(3, "feet"),
  25079. weight: math.unit(30, "kg"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/sweet-bit/front.svg",
  25083. extra: 675 / 567,
  25084. bottom: 27.7 / 703
  25085. }
  25086. },
  25087. },
  25088. [
  25089. {
  25090. name: "Normal",
  25091. height: math.unit(3, "feet"),
  25092. default: true
  25093. },
  25094. ]
  25095. ))
  25096. characterMakers.push(() => makeCharacter(
  25097. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25098. {
  25099. side: {
  25100. height: math.unit(9.178, "feet"),
  25101. weight: math.unit(500, "lb"),
  25102. name: "Side",
  25103. image: {
  25104. source: "./media/characters/umbrazen/side.svg",
  25105. extra: 1730 / 1473,
  25106. bottom: 34.6 / 1765
  25107. }
  25108. },
  25109. },
  25110. [
  25111. {
  25112. name: "Normal",
  25113. height: math.unit(9.178, "feet"),
  25114. default: true
  25115. },
  25116. ]
  25117. ))
  25118. characterMakers.push(() => makeCharacter(
  25119. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25120. {
  25121. front: {
  25122. height: math.unit(10, "feet"),
  25123. weight: math.unit(750, "lb"),
  25124. name: "Front",
  25125. image: {
  25126. source: "./media/characters/arlist/front.svg",
  25127. extra: 961 / 778,
  25128. bottom: 6.2 / 986
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Normal",
  25135. height: math.unit(10, "feet"),
  25136. default: true
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25142. {
  25143. front: {
  25144. height: math.unit(5 + 1 / 12, "feet"),
  25145. weight: math.unit(110, "lb"),
  25146. name: "Front",
  25147. image: {
  25148. source: "./media/characters/aradel/front.svg",
  25149. extra: 324 / 303,
  25150. bottom: 3.6 / 329.4
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Normal",
  25157. height: math.unit(5 + 1 / 12, "feet"),
  25158. default: true
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(3 + 8 / 12, "feet"),
  25167. weight: math.unit(50, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/serryn/front.svg",
  25171. extra: 1792 / 1656,
  25172. bottom: 43.5 / 1840
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Normal",
  25179. height: math.unit(3 + 8 / 12, "feet"),
  25180. default: true
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Xavier Thyme" },
  25186. {
  25187. front: {
  25188. height: math.unit(7 + 10 / 12, "feet"),
  25189. weight: math.unit(255, "lb"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/xavier-thyme/front.svg",
  25193. extra: 3733 / 3642,
  25194. bottom: 131 / 3869
  25195. }
  25196. },
  25197. frontRaven: {
  25198. height: math.unit(7 + 10 / 12, "feet"),
  25199. weight: math.unit(255, "lb"),
  25200. name: "Front (Raven)",
  25201. image: {
  25202. source: "./media/characters/xavier-thyme/front-raven.svg",
  25203. extra: 4385 / 3642,
  25204. bottom: 131 / 4517
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Normal",
  25211. height: math.unit(7 + 10 / 12, "feet"),
  25212. default: true
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25218. {
  25219. front: {
  25220. height: math.unit(1.6, "m"),
  25221. weight: math.unit(50, "kg"),
  25222. name: "Front",
  25223. image: {
  25224. source: "./media/characters/kiki/front.svg",
  25225. extra: 4682 / 3610,
  25226. bottom: 115 / 4777
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Normal",
  25233. height: math.unit(1.6, "meters"),
  25234. default: true
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25240. {
  25241. front: {
  25242. height: math.unit(50, "m"),
  25243. weight: math.unit(500, "tonnes"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/ryoko/front.svg",
  25247. extra: 4632 / 3926,
  25248. bottom: 193 / 4823
  25249. }
  25250. },
  25251. },
  25252. [
  25253. {
  25254. name: "Normal",
  25255. height: math.unit(50, "meters"),
  25256. default: true
  25257. },
  25258. ]
  25259. ))
  25260. characterMakers.push(() => makeCharacter(
  25261. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25262. {
  25263. front: {
  25264. height: math.unit(30, "m"),
  25265. weight: math.unit(22, "tonnes"),
  25266. name: "Front",
  25267. image: {
  25268. source: "./media/characters/elio/front.svg",
  25269. extra: 4582 / 3720,
  25270. bottom: 236 / 4828
  25271. }
  25272. },
  25273. },
  25274. [
  25275. {
  25276. name: "Normal",
  25277. height: math.unit(30, "meters"),
  25278. default: true
  25279. },
  25280. ]
  25281. ))
  25282. characterMakers.push(() => makeCharacter(
  25283. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25284. {
  25285. front: {
  25286. height: math.unit(6 + 3 / 12, "feet"),
  25287. weight: math.unit(120, "lb"),
  25288. name: "Front",
  25289. image: {
  25290. source: "./media/characters/azura/front.svg",
  25291. extra: 1149 / 1135,
  25292. bottom: 45 / 1194
  25293. }
  25294. },
  25295. frontClothed: {
  25296. height: math.unit(6 + 3 / 12, "feet"),
  25297. weight: math.unit(120, "lb"),
  25298. name: "Front (Clothed)",
  25299. image: {
  25300. source: "./media/characters/azura/front-clothed.svg",
  25301. extra: 1149 / 1135,
  25302. bottom: 45 / 1194
  25303. }
  25304. },
  25305. },
  25306. [
  25307. {
  25308. name: "Normal",
  25309. height: math.unit(6 + 3 / 12, "feet"),
  25310. default: true
  25311. },
  25312. {
  25313. name: "Macro",
  25314. height: math.unit(20 + 6 / 12, "feet")
  25315. },
  25316. {
  25317. name: "Megamacro",
  25318. height: math.unit(12, "miles")
  25319. },
  25320. {
  25321. name: "Gigamacro",
  25322. height: math.unit(10000, "miles")
  25323. },
  25324. {
  25325. name: "Teramacro",
  25326. height: math.unit(900000, "miles")
  25327. },
  25328. ]
  25329. ))
  25330. characterMakers.push(() => makeCharacter(
  25331. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25332. {
  25333. front: {
  25334. height: math.unit(12, "feet"),
  25335. weight: math.unit(1, "ton"),
  25336. capacity: math.unit(660000, "gallons"),
  25337. name: "Front",
  25338. image: {
  25339. source: "./media/characters/zeus/front.svg",
  25340. extra: 5005 / 4717,
  25341. bottom: 363 / 5388
  25342. }
  25343. },
  25344. },
  25345. [
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(12, "feet")
  25349. },
  25350. {
  25351. name: "Preferred Size",
  25352. height: math.unit(0.5, "miles"),
  25353. default: true
  25354. },
  25355. {
  25356. name: "Giga Horse",
  25357. height: math.unit(300, "miles")
  25358. },
  25359. {
  25360. name: "Riding Planets",
  25361. height: math.unit(30, "megameters")
  25362. },
  25363. {
  25364. name: "Cosmic Giant",
  25365. height: math.unit(3, "zettameters")
  25366. },
  25367. {
  25368. name: "Breeding God",
  25369. height: math.unit(9.92e22, "yottameters")
  25370. },
  25371. ]
  25372. ))
  25373. characterMakers.push(() => makeCharacter(
  25374. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25375. {
  25376. side: {
  25377. height: math.unit(9, "feet"),
  25378. weight: math.unit(1500, "kg"),
  25379. name: "Side",
  25380. image: {
  25381. source: "./media/characters/fang/side.svg",
  25382. extra: 924 / 866,
  25383. bottom: 47.5 / 972.3
  25384. }
  25385. },
  25386. },
  25387. [
  25388. {
  25389. name: "Normal",
  25390. height: math.unit(9, "feet"),
  25391. default: true
  25392. },
  25393. {
  25394. name: "Macro",
  25395. height: math.unit(75 + 6 / 12, "feet")
  25396. },
  25397. {
  25398. name: "Teramacro",
  25399. height: math.unit(50000, "miles")
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25405. {
  25406. front: {
  25407. height: math.unit(10, "feet"),
  25408. weight: math.unit(2, "tons"),
  25409. name: "Front",
  25410. image: {
  25411. source: "./media/characters/rekhit/front.svg",
  25412. extra: 2796 / 2590,
  25413. bottom: 225 / 3022
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Normal",
  25420. height: math.unit(10, "feet"),
  25421. default: true
  25422. },
  25423. {
  25424. name: "Macro",
  25425. height: math.unit(500, "feet")
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Dahlia Verrick" },
  25431. {
  25432. front: {
  25433. height: math.unit(7 + 6.451 / 12, "feet"),
  25434. weight: math.unit(310, "lb"),
  25435. name: "Front",
  25436. image: {
  25437. source: "./media/characters/dahlia-verrick/front.svg",
  25438. extra: 1488 / 1365,
  25439. bottom: 6.2 / 1495
  25440. }
  25441. },
  25442. back: {
  25443. height: math.unit(7 + 6.451 / 12, "feet"),
  25444. weight: math.unit(310, "lb"),
  25445. name: "Back",
  25446. image: {
  25447. source: "./media/characters/dahlia-verrick/back.svg",
  25448. extra: 1472 / 1351,
  25449. bottom: 5.28 / 1477
  25450. }
  25451. },
  25452. frontBusiness: {
  25453. height: math.unit(7 + 6.451 / 12, "feet"),
  25454. weight: math.unit(200, "lb"),
  25455. name: "Front (Business)",
  25456. image: {
  25457. source: "./media/characters/dahlia-verrick/front-business.svg",
  25458. extra: 1478 / 1381,
  25459. bottom: 5.5 / 1484
  25460. }
  25461. },
  25462. frontCasual: {
  25463. height: math.unit(7 + 6.451 / 12, "feet"),
  25464. weight: math.unit(200, "lb"),
  25465. name: "Front (Casual)",
  25466. image: {
  25467. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25468. extra: 1478 / 1381,
  25469. bottom: 5.5 / 1484
  25470. }
  25471. },
  25472. },
  25473. [
  25474. {
  25475. name: "Travel-Sized",
  25476. height: math.unit(7.45, "inches")
  25477. },
  25478. {
  25479. name: "Normal",
  25480. height: math.unit(7 + 6.451 / 12, "feet"),
  25481. default: true
  25482. },
  25483. {
  25484. name: "Hitting the Town",
  25485. height: math.unit(37 + 8 / 12, "feet")
  25486. },
  25487. {
  25488. name: "Stomp in the Suburbs",
  25489. height: math.unit(964 + 9.728 / 12, "feet")
  25490. },
  25491. {
  25492. name: "Sit on the City",
  25493. height: math.unit(61747 + 10.592 / 12, "feet")
  25494. },
  25495. {
  25496. name: "Glomp the Globe",
  25497. height: math.unit(252919327 + 4.832 / 12, "feet")
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25503. {
  25504. front: {
  25505. height: math.unit(6 + 4 / 12, "feet"),
  25506. weight: math.unit(320, "lb"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/balina-mahigan/front.svg",
  25510. extra: 447 / 428,
  25511. bottom: 18 / 466
  25512. }
  25513. },
  25514. back: {
  25515. height: math.unit(6 + 4 / 12, "feet"),
  25516. weight: math.unit(320, "lb"),
  25517. name: "Back",
  25518. image: {
  25519. source: "./media/characters/balina-mahigan/back.svg",
  25520. extra: 445 / 428,
  25521. bottom: 4.07 / 448
  25522. }
  25523. },
  25524. arm: {
  25525. height: math.unit(1.88, "feet"),
  25526. name: "Arm",
  25527. image: {
  25528. source: "./media/characters/balina-mahigan/arm.svg"
  25529. }
  25530. },
  25531. backPort: {
  25532. height: math.unit(0.685, "feet"),
  25533. name: "Back Port",
  25534. image: {
  25535. source: "./media/characters/balina-mahigan/back-port.svg"
  25536. }
  25537. },
  25538. hoofpaw: {
  25539. height: math.unit(1.41, "feet"),
  25540. name: "Hoofpaw",
  25541. image: {
  25542. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25543. }
  25544. },
  25545. leftHandBack: {
  25546. height: math.unit(0.938, "feet"),
  25547. name: "Left Hand (Back)",
  25548. image: {
  25549. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25550. }
  25551. },
  25552. leftHandFront: {
  25553. height: math.unit(0.938, "feet"),
  25554. name: "Left Hand (Front)",
  25555. image: {
  25556. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25557. }
  25558. },
  25559. rightHandBack: {
  25560. height: math.unit(0.95, "feet"),
  25561. name: "Right Hand (Back)",
  25562. image: {
  25563. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25564. }
  25565. },
  25566. rightHandFront: {
  25567. height: math.unit(0.95, "feet"),
  25568. name: "Right Hand (Front)",
  25569. image: {
  25570. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25571. }
  25572. },
  25573. },
  25574. [
  25575. {
  25576. name: "Normal",
  25577. height: math.unit(6 + 4 / 12, "feet"),
  25578. default: true
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25584. {
  25585. front: {
  25586. height: math.unit(6, "feet"),
  25587. weight: math.unit(320, "lb"),
  25588. name: "Front",
  25589. image: {
  25590. source: "./media/characters/balina-mejeri/front.svg",
  25591. extra: 517 / 488,
  25592. bottom: 44.2 / 561
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Normal",
  25599. height: math.unit(6 + 4 / 12, "feet")
  25600. },
  25601. {
  25602. name: "Business",
  25603. height: math.unit(155, "feet"),
  25604. default: true
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25610. {
  25611. kneeling: {
  25612. height: math.unit(6 + 4 / 12, "feet"),
  25613. weight: math.unit(300 * 20, "lb"),
  25614. name: "Kneeling",
  25615. image: {
  25616. source: "./media/characters/balbarian/kneeling.svg",
  25617. extra: 922 / 862,
  25618. bottom: 42.4 / 965
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(6 + 4 / 12, "feet")
  25626. },
  25627. {
  25628. name: "Treasured",
  25629. height: math.unit(18 + 9 / 12, "feet"),
  25630. default: true
  25631. },
  25632. {
  25633. name: "Macro",
  25634. height: math.unit(900, "feet")
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(6 + 4 / 12, "feet"),
  25643. weight: math.unit(325, "lb"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/balina-amarini/front.svg",
  25647. extra: 415 / 403,
  25648. bottom: 19 / 433.4
  25649. }
  25650. },
  25651. back: {
  25652. height: math.unit(6 + 4 / 12, "feet"),
  25653. weight: math.unit(325, "lb"),
  25654. name: "Back",
  25655. image: {
  25656. source: "./media/characters/balina-amarini/back.svg",
  25657. extra: 415 / 403,
  25658. bottom: 13.5 / 432
  25659. }
  25660. },
  25661. overdrive: {
  25662. height: math.unit(6 + 4 / 12, "feet"),
  25663. weight: math.unit(400, "lb"),
  25664. name: "Overdrive",
  25665. image: {
  25666. source: "./media/characters/balina-amarini/overdrive.svg",
  25667. extra: 269 / 259,
  25668. bottom: 12 / 282
  25669. }
  25670. },
  25671. },
  25672. [
  25673. {
  25674. name: "Boom",
  25675. height: math.unit(9 + 10 / 12, "feet"),
  25676. default: true
  25677. },
  25678. {
  25679. name: "Macro",
  25680. height: math.unit(280, "feet")
  25681. },
  25682. ]
  25683. ))
  25684. characterMakers.push(() => makeCharacter(
  25685. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25686. {
  25687. goddess: {
  25688. height: math.unit(600, "feet"),
  25689. weight: math.unit(2000000, "tons"),
  25690. name: "Goddess",
  25691. image: {
  25692. source: "./media/characters/lady-kubwa/goddess.svg",
  25693. extra: 1240.5 / 1223,
  25694. bottom: 22 / 1263
  25695. }
  25696. },
  25697. goddesser: {
  25698. height: math.unit(900, "feet"),
  25699. weight: math.unit(20000000, "lb"),
  25700. name: "Goddess-er",
  25701. image: {
  25702. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25703. extra: 899 / 888,
  25704. bottom: 12.6 / 912
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Macro",
  25711. height: math.unit(600, "feet"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Megamacro",
  25716. height: math.unit(250, "miles")
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25722. {
  25723. front: {
  25724. height: math.unit(7 + 7 / 12, "feet"),
  25725. weight: math.unit(250, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/tala-grovehorn/front.svg",
  25729. extra: 2636 / 2525,
  25730. bottom: 147 / 2781
  25731. }
  25732. },
  25733. back: {
  25734. height: math.unit(7 + 7 / 12, "feet"),
  25735. weight: math.unit(250, "lb"),
  25736. name: "Back",
  25737. image: {
  25738. source: "./media/characters/tala-grovehorn/back.svg",
  25739. extra: 2635 / 2539,
  25740. bottom: 100 / 2732.8
  25741. }
  25742. },
  25743. mouth: {
  25744. height: math.unit(1.15, "feet"),
  25745. name: "Mouth",
  25746. image: {
  25747. source: "./media/characters/tala-grovehorn/mouth.svg"
  25748. }
  25749. },
  25750. dick: {
  25751. height: math.unit(2.36, "feet"),
  25752. name: "Dick",
  25753. image: {
  25754. source: "./media/characters/tala-grovehorn/dick.svg"
  25755. }
  25756. },
  25757. slit: {
  25758. height: math.unit(0.61, "feet"),
  25759. name: "Slit",
  25760. image: {
  25761. source: "./media/characters/tala-grovehorn/slit.svg"
  25762. }
  25763. },
  25764. },
  25765. [
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(7 + 7 / 12, "feet"),
  25773. weight: math.unit(225, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/epona/front.svg",
  25777. extra: 2445 / 2290,
  25778. bottom: 251 / 2696
  25779. }
  25780. },
  25781. back: {
  25782. height: math.unit(7 + 7 / 12, "feet"),
  25783. weight: math.unit(225, "lb"),
  25784. name: "Back",
  25785. image: {
  25786. source: "./media/characters/epona/back.svg",
  25787. extra: 2546 / 2408,
  25788. bottom: 44 / 2589
  25789. }
  25790. },
  25791. genitals: {
  25792. height: math.unit(1.5, "feet"),
  25793. name: "Genitals",
  25794. image: {
  25795. source: "./media/characters/epona/genitals.svg"
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Normal",
  25802. height: math.unit(7 + 7 / 12, "feet")
  25803. },
  25804. ]
  25805. ))
  25806. characterMakers.push(() => makeCharacter(
  25807. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25808. {
  25809. front: {
  25810. height: math.unit(7, "feet"),
  25811. weight: math.unit(518, "lb"),
  25812. name: "Front",
  25813. image: {
  25814. source: "./media/characters/avia-bloodbourn/front.svg",
  25815. extra: 1466 / 1350,
  25816. bottom: 65 / 1527
  25817. }
  25818. },
  25819. },
  25820. [
  25821. ]
  25822. ))
  25823. characterMakers.push(() => makeCharacter(
  25824. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25825. {
  25826. front: {
  25827. height: math.unit(9.35, "feet"),
  25828. weight: math.unit(600, "lb"),
  25829. name: "Front",
  25830. image: {
  25831. source: "./media/characters/amera/front.svg",
  25832. extra: 891 / 818,
  25833. bottom: 30 / 922.7
  25834. }
  25835. },
  25836. back: {
  25837. height: math.unit(9.35, "feet"),
  25838. weight: math.unit(600, "lb"),
  25839. name: "Back",
  25840. image: {
  25841. source: "./media/characters/amera/back.svg",
  25842. extra: 876 / 824,
  25843. bottom: 6.8 / 884
  25844. }
  25845. },
  25846. dick: {
  25847. height: math.unit(2.14, "feet"),
  25848. name: "Dick",
  25849. image: {
  25850. source: "./media/characters/amera/dick.svg"
  25851. }
  25852. },
  25853. },
  25854. [
  25855. {
  25856. name: "Normal",
  25857. height: math.unit(9.35, "feet"),
  25858. default: true
  25859. },
  25860. ]
  25861. ))
  25862. characterMakers.push(() => makeCharacter(
  25863. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25864. {
  25865. kneeling: {
  25866. height: math.unit(3 + 4 / 12, "feet"),
  25867. weight: math.unit(90, "lb"),
  25868. name: "Kneeling",
  25869. image: {
  25870. source: "./media/characters/rosewen/kneeling.svg",
  25871. extra: 1835 / 1571,
  25872. bottom: 27.7 / 1862
  25873. }
  25874. },
  25875. },
  25876. [
  25877. {
  25878. name: "Normal",
  25879. height: math.unit(3 + 4 / 12, "feet"),
  25880. default: true
  25881. },
  25882. ]
  25883. ))
  25884. characterMakers.push(() => makeCharacter(
  25885. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25886. {
  25887. front: {
  25888. height: math.unit(5 + 10 / 12, "feet"),
  25889. weight: math.unit(200, "lb"),
  25890. name: "Front",
  25891. image: {
  25892. source: "./media/characters/sabah/front.svg",
  25893. extra: 849 / 763,
  25894. bottom: 33.9 / 881
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Normal",
  25901. height: math.unit(5 + 10 / 12, "feet"),
  25902. default: true
  25903. },
  25904. ]
  25905. ))
  25906. characterMakers.push(() => makeCharacter(
  25907. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25908. {
  25909. front: {
  25910. height: math.unit(3 + 5 / 12, "feet"),
  25911. weight: math.unit(40, "kg"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/purple-flame/front.svg",
  25915. extra: 1577 / 1412,
  25916. bottom: 97 / 1694
  25917. }
  25918. },
  25919. frontDressed: {
  25920. height: math.unit(3 + 5 / 12, "feet"),
  25921. weight: math.unit(40, "kg"),
  25922. name: "Front (Dressed)",
  25923. image: {
  25924. source: "./media/characters/purple-flame/front-dressed.svg",
  25925. extra: 1577 / 1412,
  25926. bottom: 97 / 1694
  25927. }
  25928. },
  25929. headphones: {
  25930. height: math.unit(0.85, "feet"),
  25931. name: "Headphones",
  25932. image: {
  25933. source: "./media/characters/purple-flame/headphones.svg"
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Really Small",
  25940. height: math.unit(5, "cm")
  25941. },
  25942. {
  25943. name: "Micro",
  25944. height: math.unit(1 + 5 / 12, "feet")
  25945. },
  25946. {
  25947. name: "Normal",
  25948. height: math.unit(3 + 5 / 12, "feet"),
  25949. default: true
  25950. },
  25951. {
  25952. name: "Minimacro",
  25953. height: math.unit(125, "feet")
  25954. },
  25955. {
  25956. name: "Macro",
  25957. height: math.unit(0.5, "miles")
  25958. },
  25959. {
  25960. name: "Megamacro",
  25961. height: math.unit(50, "miles")
  25962. },
  25963. {
  25964. name: "Gigantic",
  25965. height: math.unit(750, "miles")
  25966. },
  25967. {
  25968. name: "Planetary",
  25969. height: math.unit(15000, "miles")
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25975. {
  25976. front: {
  25977. height: math.unit(14, "feet"),
  25978. weight: math.unit(959, "lb"),
  25979. name: "Front",
  25980. image: {
  25981. source: "./media/characters/arsenal/front.svg",
  25982. extra: 2357 / 2157,
  25983. bottom: 93 / 2458
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Normal",
  25990. height: math.unit(14, "feet"),
  25991. default: true
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(6, "feet"),
  26000. weight: math.unit(150, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/adira/front.svg",
  26004. extra: 1078 / 1029,
  26005. bottom: 87 / 1166
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Micro",
  26012. height: math.unit(4, "inches"),
  26013. default: true
  26014. },
  26015. {
  26016. name: "Macro",
  26017. height: math.unit(50, "feet")
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(16, "feet"),
  26026. weight: math.unit(1000, "lb"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/grim/front.svg",
  26030. extra: 622 / 614,
  26031. bottom: 18.1 / 642
  26032. }
  26033. },
  26034. back: {
  26035. height: math.unit(16, "feet"),
  26036. weight: math.unit(1000, "lb"),
  26037. name: "Back",
  26038. image: {
  26039. source: "./media/characters/grim/back.svg",
  26040. extra: 610.6 / 602,
  26041. bottom: 40.8 / 652
  26042. }
  26043. },
  26044. hunched: {
  26045. height: math.unit(9.75, "feet"),
  26046. weight: math.unit(1000, "lb"),
  26047. name: "Hunched",
  26048. image: {
  26049. source: "./media/characters/grim/hunched.svg",
  26050. extra: 304 / 297,
  26051. bottom: 35.4 / 394
  26052. }
  26053. },
  26054. },
  26055. [
  26056. {
  26057. name: "Normal",
  26058. height: math.unit(16, "feet"),
  26059. default: true
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26065. {
  26066. front: {
  26067. height: math.unit(2.3, "meters"),
  26068. weight: math.unit(300, "lb"),
  26069. name: "Front",
  26070. image: {
  26071. source: "./media/characters/sinja/front-sfw.svg",
  26072. extra: 1393 / 1294,
  26073. bottom: 70 / 1463
  26074. }
  26075. },
  26076. frontNsfw: {
  26077. height: math.unit(2.3, "meters"),
  26078. weight: math.unit(300, "lb"),
  26079. name: "Front (NSFW)",
  26080. image: {
  26081. source: "./media/characters/sinja/front-nsfw.svg",
  26082. extra: 1393 / 1294,
  26083. bottom: 70 / 1463
  26084. }
  26085. },
  26086. back: {
  26087. height: math.unit(2.3, "meters"),
  26088. weight: math.unit(300, "lb"),
  26089. name: "Back",
  26090. image: {
  26091. source: "./media/characters/sinja/back.svg",
  26092. extra: 1393 / 1294,
  26093. bottom: 70 / 1463
  26094. }
  26095. },
  26096. head: {
  26097. height: math.unit(1.771, "feet"),
  26098. name: "Head",
  26099. image: {
  26100. source: "./media/characters/sinja/head.svg"
  26101. }
  26102. },
  26103. slit: {
  26104. height: math.unit(0.8, "feet"),
  26105. name: "Slit",
  26106. image: {
  26107. source: "./media/characters/sinja/slit.svg"
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Normal",
  26114. height: math.unit(2.3, "meters")
  26115. },
  26116. {
  26117. name: "Macro",
  26118. height: math.unit(91, "meters"),
  26119. default: true
  26120. },
  26121. {
  26122. name: "Megamacro",
  26123. height: math.unit(91440, "meters")
  26124. },
  26125. {
  26126. name: "Gigamacro",
  26127. height: math.unit(60960000, "meters")
  26128. },
  26129. {
  26130. name: "Teramacro",
  26131. height: math.unit(9144000000, "meters")
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(1.7, "meters"),
  26140. weight: math.unit(130, "lb"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/kyu/front.svg",
  26144. extra: 415 / 395,
  26145. bottom: 5 / 420
  26146. }
  26147. },
  26148. head: {
  26149. height: math.unit(1.75, "feet"),
  26150. name: "Head",
  26151. image: {
  26152. source: "./media/characters/kyu/head.svg"
  26153. }
  26154. },
  26155. foot: {
  26156. height: math.unit(0.81, "feet"),
  26157. name: "Foot",
  26158. image: {
  26159. source: "./media/characters/kyu/foot.svg"
  26160. }
  26161. },
  26162. },
  26163. [
  26164. {
  26165. name: "Normal",
  26166. height: math.unit(1.7, "meters")
  26167. },
  26168. {
  26169. name: "Macro",
  26170. height: math.unit(131, "feet"),
  26171. default: true
  26172. },
  26173. {
  26174. name: "Megamacro",
  26175. height: math.unit(91440, "meters")
  26176. },
  26177. {
  26178. name: "Gigamacro",
  26179. height: math.unit(60960000, "meters")
  26180. },
  26181. {
  26182. name: "Teramacro",
  26183. height: math.unit(9144000000, "meters")
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26189. {
  26190. front: {
  26191. height: math.unit(7 + 1 / 12, "feet"),
  26192. weight: math.unit(250, "lb"),
  26193. name: "Front",
  26194. image: {
  26195. source: "./media/characters/joey/front.svg",
  26196. extra: 1791 / 1537,
  26197. bottom: 28 / 1816
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Micro",
  26204. height: math.unit(3, "inches")
  26205. },
  26206. {
  26207. name: "Normal",
  26208. height: math.unit(7 + 1 / 12, "feet"),
  26209. default: true
  26210. },
  26211. ]
  26212. ))
  26213. characterMakers.push(() => makeCharacter(
  26214. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26215. {
  26216. front: {
  26217. height: math.unit(165, "cm"),
  26218. weight: math.unit(140, "lb"),
  26219. name: "Front",
  26220. image: {
  26221. source: "./media/characters/sam-evans/front.svg",
  26222. extra: 3417 / 3230,
  26223. bottom: 41.3 / 3417
  26224. }
  26225. },
  26226. frontSixTails: {
  26227. height: math.unit(165, "cm"),
  26228. weight: math.unit(140, "lb"),
  26229. name: "Front-six-tails",
  26230. image: {
  26231. source: "./media/characters/sam-evans/front-six-tails.svg",
  26232. extra: 3417 / 3230,
  26233. bottom: 41.3 / 3417
  26234. }
  26235. },
  26236. back: {
  26237. height: math.unit(165, "cm"),
  26238. weight: math.unit(140, "lb"),
  26239. name: "Back",
  26240. image: {
  26241. source: "./media/characters/sam-evans/back.svg",
  26242. extra: 3227 / 3032,
  26243. bottom: 6.8 / 3234
  26244. }
  26245. },
  26246. face: {
  26247. height: math.unit(0.68, "feet"),
  26248. name: "Face",
  26249. image: {
  26250. source: "./media/characters/sam-evans/face.svg"
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Normal",
  26257. height: math.unit(165, "cm"),
  26258. default: true
  26259. },
  26260. {
  26261. name: "Macro",
  26262. height: math.unit(100, "meters")
  26263. },
  26264. {
  26265. name: "Macro+",
  26266. height: math.unit(800, "meters")
  26267. },
  26268. {
  26269. name: "Macro++",
  26270. height: math.unit(3, "km")
  26271. },
  26272. {
  26273. name: "Macro+++",
  26274. height: math.unit(30, "km")
  26275. },
  26276. ]
  26277. ))
  26278. characterMakers.push(() => makeCharacter(
  26279. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26280. {
  26281. front: {
  26282. height: math.unit(10, "feet"),
  26283. weight: math.unit(750, "lb"),
  26284. name: "Front",
  26285. image: {
  26286. source: "./media/characters/juliet-a/front.svg",
  26287. extra: 1766 / 1720,
  26288. bottom: 43 / 1809
  26289. }
  26290. },
  26291. back: {
  26292. height: math.unit(10, "feet"),
  26293. weight: math.unit(750, "lb"),
  26294. name: "Back",
  26295. image: {
  26296. source: "./media/characters/juliet-a/back.svg",
  26297. extra: 1781 / 1734,
  26298. bottom: 35 / 1810,
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Normal",
  26305. height: math.unit(10, "feet"),
  26306. default: true
  26307. },
  26308. {
  26309. name: "Dragon Form",
  26310. height: math.unit(250, "feet")
  26311. },
  26312. {
  26313. name: "Macro",
  26314. height: math.unit(1000, "feet")
  26315. },
  26316. {
  26317. name: "Megamacro",
  26318. height: math.unit(10000, "feet")
  26319. }
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26324. {
  26325. regular: {
  26326. height: math.unit(7 + 3 / 12, "feet"),
  26327. weight: math.unit(260, "lb"),
  26328. name: "Regular",
  26329. image: {
  26330. source: "./media/characters/wild/regular.svg",
  26331. extra: 97.45 / 92,
  26332. bottom: 6.8 / 104.3
  26333. }
  26334. },
  26335. biggums: {
  26336. height: math.unit(8 + 6 / 12, "feet"),
  26337. weight: math.unit(425, "lb"),
  26338. name: "Biggums",
  26339. image: {
  26340. source: "./media/characters/wild/biggums.svg",
  26341. extra: 97.45 / 92,
  26342. bottom: 7.5 / 132.34
  26343. }
  26344. },
  26345. mawRegular: {
  26346. height: math.unit(1.24, "feet"),
  26347. name: "Maw (Regular)",
  26348. image: {
  26349. source: "./media/characters/wild/maw.svg"
  26350. }
  26351. },
  26352. mawBiggums: {
  26353. height: math.unit(1.47, "feet"),
  26354. name: "Maw (Biggums)",
  26355. image: {
  26356. source: "./media/characters/wild/maw.svg"
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Normal",
  26363. height: math.unit(7 + 3 / 12, "feet"),
  26364. default: true
  26365. },
  26366. ]
  26367. ))
  26368. characterMakers.push(() => makeCharacter(
  26369. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26370. {
  26371. front: {
  26372. height: math.unit(2.5, "meters"),
  26373. weight: math.unit(200, "kg"),
  26374. name: "Front",
  26375. image: {
  26376. source: "./media/characters/vidar/front.svg",
  26377. extra: 2994 / 2795,
  26378. bottom: 56 / 3061
  26379. }
  26380. },
  26381. back: {
  26382. height: math.unit(2.5, "meters"),
  26383. weight: math.unit(200, "kg"),
  26384. name: "Back",
  26385. image: {
  26386. source: "./media/characters/vidar/back.svg",
  26387. extra: 3131 / 2928,
  26388. bottom: 13.5 / 3141.5
  26389. }
  26390. },
  26391. feral: {
  26392. height: math.unit(2.5, "meters"),
  26393. weight: math.unit(2000, "kg"),
  26394. name: "Feral",
  26395. image: {
  26396. source: "./media/characters/vidar/feral.svg",
  26397. extra: 2790 / 1765,
  26398. bottom: 6 / 2796
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Normal",
  26405. height: math.unit(2.5, "meters"),
  26406. default: true
  26407. },
  26408. {
  26409. name: "Macro",
  26410. height: math.unit(100, "meters")
  26411. },
  26412. ]
  26413. ))
  26414. characterMakers.push(() => makeCharacter(
  26415. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26416. {
  26417. front: {
  26418. height: math.unit(5 + 9 / 12, "feet"),
  26419. weight: math.unit(120, "lb"),
  26420. name: "Front",
  26421. image: {
  26422. source: "./media/characters/ash/front.svg",
  26423. extra: 2189 / 1961,
  26424. bottom: 5.2 / 2194
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Normal",
  26431. height: math.unit(5 + 9 / 12, "feet"),
  26432. default: true
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26438. {
  26439. front: {
  26440. height: math.unit(9, "feet"),
  26441. weight: math.unit(10000, "lb"),
  26442. name: "Front",
  26443. image: {
  26444. source: "./media/characters/gygabite/front.svg",
  26445. bottom: 31.7 / 537.8,
  26446. extra: 505 / 370
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Normal",
  26453. height: math.unit(9, "feet"),
  26454. default: true
  26455. },
  26456. ]
  26457. ))
  26458. characterMakers.push(() => makeCharacter(
  26459. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26460. {
  26461. front: {
  26462. height: math.unit(12, "feet"),
  26463. weight: math.unit(35000, "lb"),
  26464. name: "Front",
  26465. image: {
  26466. source: "./media/characters/p0tat0/front.svg",
  26467. extra: 1065 / 921,
  26468. bottom: 55.7 / 1121.25
  26469. }
  26470. },
  26471. },
  26472. [
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(12, "feet"),
  26476. default: true
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26482. {
  26483. side: {
  26484. height: math.unit(6.5, "feet"),
  26485. weight: math.unit(800, "lb"),
  26486. name: "Side",
  26487. image: {
  26488. source: "./media/characters/dusk/side.svg",
  26489. extra: 615 / 373,
  26490. bottom: 53 / 664
  26491. }
  26492. },
  26493. sitting: {
  26494. height: math.unit(7, "feet"),
  26495. weight: math.unit(800, "lb"),
  26496. name: "Sitting",
  26497. image: {
  26498. source: "./media/characters/dusk/sitting.svg",
  26499. extra: 753 / 425,
  26500. bottom: 33 / 774
  26501. }
  26502. },
  26503. head: {
  26504. height: math.unit(6.1, "feet"),
  26505. name: "Head",
  26506. image: {
  26507. source: "./media/characters/dusk/head.svg"
  26508. }
  26509. },
  26510. },
  26511. [
  26512. {
  26513. name: "Normal",
  26514. height: math.unit(7, "feet"),
  26515. default: true
  26516. },
  26517. ]
  26518. ))
  26519. characterMakers.push(() => makeCharacter(
  26520. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26521. {
  26522. front: {
  26523. height: math.unit(15, "feet"),
  26524. weight: math.unit(7000, "lb"),
  26525. name: "Front",
  26526. image: {
  26527. source: "./media/characters/jay-direwolf/front.svg",
  26528. extra: 1810 / 1732,
  26529. bottom: 66 / 1892
  26530. }
  26531. },
  26532. },
  26533. [
  26534. {
  26535. name: "Normal",
  26536. height: math.unit(15, "feet"),
  26537. default: true
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(4 + 9 / 12, "feet"),
  26546. weight: math.unit(130, "lb"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/anchovie/front.svg",
  26550. extra: 382 / 350,
  26551. bottom: 25 / 409
  26552. }
  26553. },
  26554. back: {
  26555. height: math.unit(4 + 9 / 12, "feet"),
  26556. weight: math.unit(130, "lb"),
  26557. name: "Back",
  26558. image: {
  26559. source: "./media/characters/anchovie/back.svg",
  26560. extra: 385 / 352,
  26561. bottom: 16.6 / 402
  26562. }
  26563. },
  26564. frontDressed: {
  26565. height: math.unit(4 + 9 / 12, "feet"),
  26566. weight: math.unit(130, "lb"),
  26567. name: "Front (Dressed)",
  26568. image: {
  26569. source: "./media/characters/anchovie/front-dressed.svg",
  26570. extra: 382 / 350,
  26571. bottom: 25 / 409
  26572. }
  26573. },
  26574. backDressed: {
  26575. height: math.unit(4 + 9 / 12, "feet"),
  26576. weight: math.unit(130, "lb"),
  26577. name: "Back (Dressed)",
  26578. image: {
  26579. source: "./media/characters/anchovie/back-dressed.svg",
  26580. extra: 385 / 352,
  26581. bottom: 16.6 / 402
  26582. }
  26583. },
  26584. },
  26585. [
  26586. {
  26587. name: "Micro",
  26588. height: math.unit(6.4, "inches")
  26589. },
  26590. {
  26591. name: "Normal",
  26592. height: math.unit(4 + 9 / 12, "feet"),
  26593. default: true
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26599. {
  26600. front: {
  26601. height: math.unit(2, "meters"),
  26602. weight: math.unit(180, "lb"),
  26603. name: "Front",
  26604. image: {
  26605. source: "./media/characters/acidrenamon/front.svg",
  26606. extra: 987 / 890,
  26607. bottom: 22.8 / 1009
  26608. }
  26609. },
  26610. back: {
  26611. height: math.unit(2, "meters"),
  26612. weight: math.unit(180, "lb"),
  26613. name: "Back",
  26614. image: {
  26615. source: "./media/characters/acidrenamon/back.svg",
  26616. extra: 983 / 891,
  26617. bottom: 8.4 / 992
  26618. }
  26619. },
  26620. head: {
  26621. height: math.unit(1.92, "feet"),
  26622. name: "Head",
  26623. image: {
  26624. source: "./media/characters/acidrenamon/head.svg"
  26625. }
  26626. },
  26627. rump: {
  26628. height: math.unit(1.72, "feet"),
  26629. name: "Rump",
  26630. image: {
  26631. source: "./media/characters/acidrenamon/rump.svg"
  26632. }
  26633. },
  26634. tail: {
  26635. height: math.unit(4.2, "feet"),
  26636. name: "Tail",
  26637. image: {
  26638. source: "./media/characters/acidrenamon/tail.svg"
  26639. }
  26640. },
  26641. },
  26642. [
  26643. {
  26644. name: "Normal",
  26645. height: math.unit(2, "meters"),
  26646. default: true
  26647. },
  26648. {
  26649. name: "Minimacro",
  26650. height: math.unit(7, "meters")
  26651. },
  26652. {
  26653. name: "Macro",
  26654. height: math.unit(200, "meters")
  26655. },
  26656. {
  26657. name: "Gigamacro",
  26658. height: math.unit(0.2, "earths")
  26659. },
  26660. ]
  26661. ))
  26662. characterMakers.push(() => makeCharacter(
  26663. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26664. {
  26665. front: {
  26666. height: math.unit(6, "feet"),
  26667. weight: math.unit(150, "lb"),
  26668. name: "Front",
  26669. image: {
  26670. source: "./media/characters/kenzie-lee/front.svg",
  26671. extra: 1525 / 1465,
  26672. bottom: 45 / 1570
  26673. }
  26674. },
  26675. side: {
  26676. height: math.unit(6, "feet"),
  26677. weight: math.unit(150, "lb"),
  26678. name: "Side",
  26679. image: {
  26680. source: "./media/characters/kenzie-lee/side.svg",
  26681. extra: 5505 / 5383,
  26682. bottom: 60 / 5573
  26683. }
  26684. },
  26685. },
  26686. [
  26687. {
  26688. name: "Normal",
  26689. height: math.unit(152, "feet"),
  26690. default: true
  26691. },
  26692. {
  26693. name: "Megamacro",
  26694. height: math.unit(7, "miles")
  26695. },
  26696. {
  26697. name: "Gigamacro",
  26698. height: math.unit(8000, "miles")
  26699. },
  26700. ]
  26701. ))
  26702. characterMakers.push(() => makeCharacter(
  26703. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26704. {
  26705. side: {
  26706. height: math.unit(6, "feet"),
  26707. weight: math.unit(150, "lb"),
  26708. name: "Side",
  26709. image: {
  26710. source: "./media/characters/withers/side.svg",
  26711. extra: 1830 / 1728,
  26712. bottom: 96 / 1927
  26713. }
  26714. },
  26715. front: {
  26716. height: math.unit(6, "feet"),
  26717. weight: math.unit(150, "lb"),
  26718. name: "Front",
  26719. image: {
  26720. source: "./media/characters/withers/front.svg",
  26721. extra: 1514 / 1438,
  26722. bottom: 118 / 1632
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Macro",
  26729. height: math.unit(168, "feet"),
  26730. default: true
  26731. },
  26732. {
  26733. name: "Megamacro",
  26734. height: math.unit(15, "miles")
  26735. }
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26740. {
  26741. front: {
  26742. height: math.unit(6 + 7 / 12, "feet"),
  26743. weight: math.unit(250, "lb"),
  26744. name: "Front",
  26745. image: {
  26746. source: "./media/characters/nemoskii/front.svg",
  26747. extra: 2270 / 1734,
  26748. bottom: 86 / 2354
  26749. }
  26750. },
  26751. back: {
  26752. height: math.unit(6 + 7 / 12, "feet"),
  26753. weight: math.unit(250, "lb"),
  26754. name: "Back",
  26755. image: {
  26756. source: "./media/characters/nemoskii/back.svg",
  26757. extra: 1845 / 1788,
  26758. bottom: 10.5 / 1852
  26759. }
  26760. },
  26761. head: {
  26762. height: math.unit(1.31, "feet"),
  26763. name: "Head",
  26764. image: {
  26765. source: "./media/characters/nemoskii/head.svg"
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Normal",
  26772. height: math.unit(6 + 7 / 12, "feet"),
  26773. default: true
  26774. },
  26775. ]
  26776. ))
  26777. characterMakers.push(() => makeCharacter(
  26778. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26779. {
  26780. front: {
  26781. height: math.unit(1, "mile"),
  26782. weight: math.unit(265261.9, "lb"),
  26783. name: "Front",
  26784. image: {
  26785. source: "./media/characters/shui/front.svg",
  26786. extra: 1633 / 1564,
  26787. bottom: 91.5 / 1726
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Macro",
  26794. height: math.unit(1, "mile"),
  26795. default: true
  26796. },
  26797. ]
  26798. ))
  26799. characterMakers.push(() => makeCharacter(
  26800. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26801. {
  26802. front: {
  26803. height: math.unit(12 + 6 / 12, "feet"),
  26804. weight: math.unit(1342, "lb"),
  26805. name: "Front",
  26806. image: {
  26807. source: "./media/characters/arokh-takakura/front.svg",
  26808. extra: 1089 / 1043,
  26809. bottom: 77.4 / 1176.7
  26810. }
  26811. },
  26812. back: {
  26813. height: math.unit(12 + 6 / 12, "feet"),
  26814. weight: math.unit(1342, "lb"),
  26815. name: "Back",
  26816. image: {
  26817. source: "./media/characters/arokh-takakura/back.svg",
  26818. extra: 1046 / 1019,
  26819. bottom: 102 / 1150
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Big",
  26826. height: math.unit(12 + 6 / 12, "feet"),
  26827. default: true
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(5 + 6 / 12, "feet"),
  26836. weight: math.unit(150, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/theo/front.svg",
  26840. extra: 1184 / 1131,
  26841. bottom: 7.4 / 1191
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Micro",
  26848. height: math.unit(5, "inches")
  26849. },
  26850. {
  26851. name: "Normal",
  26852. height: math.unit(5 + 6 / 12, "feet"),
  26853. default: true
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(5 + 9 / 12, "feet"),
  26862. weight: math.unit(130, "lb"),
  26863. name: "Front",
  26864. image: {
  26865. source: "./media/characters/cecelia-swift/front.svg",
  26866. extra: 502 / 484,
  26867. bottom: 23 / 523
  26868. }
  26869. },
  26870. back: {
  26871. height: math.unit(5 + 9 / 12, "feet"),
  26872. weight: math.unit(130, "lb"),
  26873. name: "Back",
  26874. image: {
  26875. source: "./media/characters/cecelia-swift/back.svg",
  26876. extra: 499 / 485,
  26877. bottom: 12 / 511
  26878. }
  26879. },
  26880. head: {
  26881. height: math.unit(0.90, "feet"),
  26882. name: "Head",
  26883. image: {
  26884. source: "./media/characters/cecelia-swift/head.svg"
  26885. }
  26886. },
  26887. rump: {
  26888. height: math.unit(1.75, "feet"),
  26889. name: "Rump",
  26890. image: {
  26891. source: "./media/characters/cecelia-swift/rump.svg"
  26892. }
  26893. },
  26894. },
  26895. [
  26896. {
  26897. name: "Normal",
  26898. height: math.unit(5 + 9 / 12, "feet"),
  26899. default: true
  26900. },
  26901. {
  26902. name: "Big",
  26903. height: math.unit(50, "feet")
  26904. },
  26905. {
  26906. name: "Macro",
  26907. height: math.unit(100, "feet")
  26908. },
  26909. {
  26910. name: "Macro+",
  26911. height: math.unit(500, "feet")
  26912. },
  26913. {
  26914. name: "Macro++",
  26915. height: math.unit(1000, "feet")
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26921. {
  26922. front: {
  26923. height: math.unit(6, "feet"),
  26924. weight: math.unit(150, "lb"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/kaunan/front.svg",
  26928. extra: 2890 / 2523,
  26929. bottom: 49 / 2939
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Macro",
  26936. height: math.unit(150, "feet"),
  26937. default: true
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(175, "cm"),
  26946. weight: math.unit(60, "kg"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/fei/front.svg",
  26950. extra: 2581 / 2400,
  26951. bottom: 82.2 / 2663
  26952. }
  26953. },
  26954. },
  26955. [
  26956. {
  26957. name: "Mortal",
  26958. height: math.unit(175, "cm")
  26959. },
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(3500, "m"),
  26963. default: true
  26964. },
  26965. {
  26966. name: "Stroll",
  26967. height: math.unit(17.5, "km")
  26968. },
  26969. {
  26970. name: "Showoff",
  26971. height: math.unit(175, "km")
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(7, "feet"),
  26980. weight: math.unit(1000, "kg"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/edrax/front.svg",
  26984. extra: 2838 / 2550,
  26985. bottom: 130 / 2968
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Small",
  26992. height: math.unit(7, "feet")
  26993. },
  26994. {
  26995. name: "Normal",
  26996. height: math.unit(1500, "meters")
  26997. },
  26998. {
  26999. name: "Mega",
  27000. height: math.unit(12000000, "km"),
  27001. default: true
  27002. },
  27003. {
  27004. name: "Megamacro",
  27005. height: math.unit(10600000, "lightyears")
  27006. },
  27007. {
  27008. name: "Hypermacro",
  27009. height: math.unit(256, "yottameters")
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(10, "feet"),
  27018. weight: math.unit(750, "lb"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/clove/front.svg",
  27022. extra: 2031 / 1860,
  27023. bottom: 47.8 / 2080
  27024. }
  27025. },
  27026. back: {
  27027. height: math.unit(10, "feet"),
  27028. weight: math.unit(750, "lb"),
  27029. name: "Back",
  27030. image: {
  27031. source: "./media/characters/clove/back.svg",
  27032. extra: 2025 / 1859,
  27033. bottom: 46 / 2071
  27034. }
  27035. },
  27036. },
  27037. [
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(10, "feet")
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27046. {
  27047. front: {
  27048. height: math.unit(4, "feet"),
  27049. weight: math.unit(50, "lb"),
  27050. name: "Front",
  27051. image: {
  27052. source: "./media/characters/alex-rabbit/front.svg",
  27053. extra: 507 / 458,
  27054. bottom: 18.5 / 527
  27055. }
  27056. },
  27057. back: {
  27058. height: math.unit(4, "feet"),
  27059. weight: math.unit(50, "lb"),
  27060. name: "Back",
  27061. image: {
  27062. source: "./media/characters/alex-rabbit/back.svg",
  27063. extra: 502 / 460,
  27064. bottom: 18.9 / 521
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Normal",
  27071. height: math.unit(4, "feet"),
  27072. default: true
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27078. {
  27079. front: {
  27080. height: math.unit(1 + 3 / 12, "feet"),
  27081. weight: math.unit(80, "lb"),
  27082. name: "Front",
  27083. image: {
  27084. source: "./media/characters/zander-rose/front.svg",
  27085. extra: 916 / 797,
  27086. bottom: 17 / 933
  27087. }
  27088. },
  27089. back: {
  27090. height: math.unit(1 + 3 / 12, "feet"),
  27091. weight: math.unit(80, "lb"),
  27092. name: "Back",
  27093. image: {
  27094. source: "./media/characters/zander-rose/back.svg",
  27095. extra: 903 / 779,
  27096. bottom: 31 / 934
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Normal",
  27103. height: math.unit(1 + 3 / 12, "feet"),
  27104. default: true
  27105. },
  27106. ]
  27107. ))
  27108. characterMakers.push(() => makeCharacter(
  27109. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27110. {
  27111. anthro: {
  27112. height: math.unit(6, "feet"),
  27113. weight: math.unit(150, "lb"),
  27114. name: "Anthro",
  27115. image: {
  27116. source: "./media/characters/razz/anthro.svg",
  27117. extra: 1437 / 1343,
  27118. bottom: 48 / 1485
  27119. }
  27120. },
  27121. feral: {
  27122. height: math.unit(6, "feet"),
  27123. weight: math.unit(150, "lb"),
  27124. name: "Feral",
  27125. image: {
  27126. source: "./media/characters/razz/feral.svg",
  27127. extra: 2569 / 1385,
  27128. bottom: 95 / 2664
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Normal",
  27135. height: math.unit(6, "feet"),
  27136. default: true
  27137. },
  27138. ]
  27139. ))
  27140. characterMakers.push(() => makeCharacter(
  27141. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27142. {
  27143. front: {
  27144. height: math.unit(9 + 4 / 12, "feet"),
  27145. weight: math.unit(500, "lb"),
  27146. name: "Front",
  27147. image: {
  27148. source: "./media/characters/morrigan/front.svg",
  27149. extra: 2707 / 2579,
  27150. bottom: 156 / 2863
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Normal",
  27157. height: math.unit(9 + 4 / 12, "feet"),
  27158. default: true
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27164. {
  27165. front: {
  27166. height: math.unit(5, "stories"),
  27167. weight: math.unit(4000, "lb"),
  27168. name: "Front",
  27169. image: {
  27170. source: "./media/characters/jenene/front.svg",
  27171. extra: 1780 / 1710,
  27172. bottom: 57 / 1837
  27173. }
  27174. },
  27175. },
  27176. [
  27177. {
  27178. name: "Normal",
  27179. height: math.unit(5, "stories"),
  27180. default: true
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(6, "feet"),
  27189. weight: math.unit(150, "lb"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/vix-archaser/front.svg",
  27193. extra: 2767 / 2562,
  27194. bottom: 36 / 2803
  27195. }
  27196. },
  27197. },
  27198. [
  27199. {
  27200. name: "Micro",
  27201. height: math.unit(1, "foot")
  27202. },
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(6 + 5 / 12, "feet")
  27206. },
  27207. {
  27208. name: "Minimacro",
  27209. height: math.unit(500, "feet")
  27210. },
  27211. {
  27212. name: "Macro",
  27213. height: math.unit(4, "miles")
  27214. },
  27215. {
  27216. name: "Megamacro",
  27217. height: math.unit(250, "miles"),
  27218. default: true
  27219. },
  27220. {
  27221. name: "Gigamacro",
  27222. height: math.unit(1, "universe")
  27223. },
  27224. {
  27225. name: "Endgame",
  27226. height: math.unit(100, "multiverses")
  27227. }
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27232. {
  27233. taurSfw: {
  27234. height: math.unit(10, "meters"),
  27235. weight: math.unit(17500, "kg"),
  27236. name: "Taur",
  27237. image: {
  27238. source: "./media/characters/faey/taur-sfw.svg",
  27239. extra: 1200 / 968,
  27240. bottom: 41 / 1241
  27241. }
  27242. },
  27243. chestmaw: {
  27244. height: math.unit(2.01, "meters"),
  27245. name: "Chestmaw",
  27246. image: {
  27247. source: "./media/characters/faey/chestmaw.svg"
  27248. }
  27249. },
  27250. foot: {
  27251. height: math.unit(2.43, "meters"),
  27252. name: "Foot",
  27253. image: {
  27254. source: "./media/characters/faey/foot.svg"
  27255. }
  27256. },
  27257. jaws: {
  27258. height: math.unit(1.66, "meters"),
  27259. name: "Jaws",
  27260. image: {
  27261. source: "./media/characters/faey/jaws.svg"
  27262. }
  27263. },
  27264. tongues: {
  27265. height: math.unit(2.01, "meters"),
  27266. name: "Tongues",
  27267. image: {
  27268. source: "./media/characters/faey/tongues.svg"
  27269. }
  27270. },
  27271. },
  27272. [
  27273. {
  27274. name: "Small",
  27275. height: math.unit(10, "meters"),
  27276. default: true
  27277. },
  27278. {
  27279. name: "Big",
  27280. height: math.unit(500000, "km")
  27281. },
  27282. ]
  27283. ))
  27284. characterMakers.push(() => makeCharacter(
  27285. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27286. {
  27287. front: {
  27288. height: math.unit(7, "feet"),
  27289. weight: math.unit(275, "lb"),
  27290. name: "Front",
  27291. image: {
  27292. source: "./media/characters/roku/front.svg",
  27293. extra: 903 / 878,
  27294. bottom: 37 / 940
  27295. }
  27296. },
  27297. },
  27298. [
  27299. {
  27300. name: "Normal",
  27301. height: math.unit(7, "feet"),
  27302. default: true
  27303. },
  27304. {
  27305. name: "Macro",
  27306. height: math.unit(500, "feet")
  27307. },
  27308. {
  27309. name: "Megamacro",
  27310. height: math.unit(200, "miles")
  27311. },
  27312. ]
  27313. ))
  27314. characterMakers.push(() => makeCharacter(
  27315. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27316. {
  27317. front: {
  27318. height: math.unit(6 + 2 / 12, "feet"),
  27319. weight: math.unit(150, "lb"),
  27320. name: "Front",
  27321. image: {
  27322. source: "./media/characters/lira/front.svg",
  27323. extra: 1727 / 1605,
  27324. bottom: 26 / 1753
  27325. }
  27326. },
  27327. back: {
  27328. height: math.unit(6 + 2 / 12, "feet"),
  27329. weight: math.unit(150, "lb"),
  27330. name: "Back",
  27331. image: {
  27332. source: "./media/characters/lira/back.svg",
  27333. extra: 1713 / 159,
  27334. bottom: 20 / 1733
  27335. }
  27336. },
  27337. hand: {
  27338. height: math.unit(0.75, "feet"),
  27339. name: "Hand",
  27340. image: {
  27341. source: "./media/characters/lira/hand.svg"
  27342. }
  27343. },
  27344. maw: {
  27345. height: math.unit(0.65, "feet"),
  27346. name: "Maw",
  27347. image: {
  27348. source: "./media/characters/lira/maw.svg"
  27349. }
  27350. },
  27351. pawDigi: {
  27352. height: math.unit(1.6, "feet"),
  27353. name: "Paw Digi",
  27354. image: {
  27355. source: "./media/characters/lira/paw-digi.svg"
  27356. }
  27357. },
  27358. pawPlanti: {
  27359. height: math.unit(1.4, "feet"),
  27360. name: "Paw Planti",
  27361. image: {
  27362. source: "./media/characters/lira/paw-planti.svg"
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(6 + 2 / 12, "feet"),
  27370. default: true
  27371. },
  27372. {
  27373. name: "Macro",
  27374. height: math.unit(100, "feet")
  27375. },
  27376. {
  27377. name: "Macro²",
  27378. height: math.unit(1600, "feet")
  27379. },
  27380. {
  27381. name: "Planetary",
  27382. height: math.unit(20, "earths")
  27383. },
  27384. ]
  27385. ))
  27386. characterMakers.push(() => makeCharacter(
  27387. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27388. {
  27389. front: {
  27390. height: math.unit(6, "feet"),
  27391. weight: math.unit(150, "lb"),
  27392. name: "Front",
  27393. image: {
  27394. source: "./media/characters/hadjet/front.svg",
  27395. extra: 1480 / 1346,
  27396. bottom: 26 / 1506
  27397. }
  27398. },
  27399. frontNsfw: {
  27400. height: math.unit(6, "feet"),
  27401. weight: math.unit(150, "lb"),
  27402. name: "Front (NSFW)",
  27403. image: {
  27404. source: "./media/characters/hadjet/front-nsfw.svg",
  27405. extra: 1440 / 1358,
  27406. bottom: 52 / 1492
  27407. }
  27408. },
  27409. },
  27410. [
  27411. {
  27412. name: "Macro",
  27413. height: math.unit(10, "stories"),
  27414. default: true
  27415. },
  27416. {
  27417. name: "Megamacro",
  27418. height: math.unit(1.5, "miles")
  27419. },
  27420. {
  27421. name: "Megamacro+",
  27422. height: math.unit(5, "miles")
  27423. },
  27424. ]
  27425. ))
  27426. characterMakers.push(() => makeCharacter(
  27427. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27428. {
  27429. side: {
  27430. height: math.unit(106, "feet"),
  27431. weight: math.unit(500, "tonnes"),
  27432. name: "Side",
  27433. image: {
  27434. source: "./media/characters/kodran/side.svg",
  27435. extra: 553 / 480,
  27436. bottom: 33 / 586
  27437. }
  27438. },
  27439. front: {
  27440. height: math.unit(132, "feet"),
  27441. weight: math.unit(500, "tonnes"),
  27442. name: "Front",
  27443. image: {
  27444. source: "./media/characters/kodran/front.svg",
  27445. extra: 667 / 643,
  27446. bottom: 42 / 709
  27447. }
  27448. },
  27449. flying: {
  27450. height: math.unit(350, "feet"),
  27451. weight: math.unit(500, "tonnes"),
  27452. name: "Flying",
  27453. image: {
  27454. source: "./media/characters/kodran/flying.svg"
  27455. }
  27456. },
  27457. foot: {
  27458. height: math.unit(33, "feet"),
  27459. name: "Foot",
  27460. image: {
  27461. source: "./media/characters/kodran/foot.svg"
  27462. }
  27463. },
  27464. footFront: {
  27465. height: math.unit(19, "feet"),
  27466. name: "Foot (Front)",
  27467. image: {
  27468. source: "./media/characters/kodran/foot-front.svg",
  27469. extra: 261 / 261,
  27470. bottom: 91 / 352
  27471. }
  27472. },
  27473. headFront: {
  27474. height: math.unit(53, "feet"),
  27475. name: "Head (Front)",
  27476. image: {
  27477. source: "./media/characters/kodran/head-front.svg"
  27478. }
  27479. },
  27480. headSide: {
  27481. height: math.unit(65, "feet"),
  27482. name: "Head (Side)",
  27483. image: {
  27484. source: "./media/characters/kodran/head-side.svg"
  27485. }
  27486. },
  27487. throat: {
  27488. height: math.unit(79, "feet"),
  27489. name: "Throat",
  27490. image: {
  27491. source: "./media/characters/kodran/throat.svg"
  27492. }
  27493. },
  27494. },
  27495. [
  27496. {
  27497. name: "Large",
  27498. height: math.unit(106, "feet"),
  27499. default: true
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27505. {
  27506. side: {
  27507. height: math.unit(11, "feet"),
  27508. weight: math.unit(150, "lb"),
  27509. name: "Side",
  27510. image: {
  27511. source: "./media/characters/pyxaron/side.svg",
  27512. extra: 305 / 195,
  27513. bottom: 17 / 322
  27514. }
  27515. },
  27516. },
  27517. [
  27518. {
  27519. name: "Normal",
  27520. height: math.unit(11, "feet")
  27521. },
  27522. ]
  27523. ))
  27524. characterMakers.push(() => makeCharacter(
  27525. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27526. {
  27527. front: {
  27528. height: math.unit(6, "feet"),
  27529. weight: math.unit(150, "lb"),
  27530. name: "Front",
  27531. image: {
  27532. source: "./media/characters/meep/front.svg",
  27533. extra: 88 / 80,
  27534. bottom: 6 / 94
  27535. }
  27536. },
  27537. },
  27538. [
  27539. {
  27540. name: "Fun Sized",
  27541. height: math.unit(2, "inches"),
  27542. default: true
  27543. },
  27544. {
  27545. name: "Friend Sized",
  27546. height: math.unit(8, "inches")
  27547. },
  27548. ]
  27549. ))
  27550. characterMakers.push(() => makeCharacter(
  27551. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27552. {
  27553. front: {
  27554. height: math.unit(15, "feet"),
  27555. weight: math.unit(2500, "lb"),
  27556. name: "Front",
  27557. image: {
  27558. source: "./media/characters/holly-rabbit/front.svg",
  27559. extra: 1433 / 1233,
  27560. bottom: 125 / 1558
  27561. }
  27562. },
  27563. dick: {
  27564. height: math.unit(4.6, "feet"),
  27565. name: "Dick",
  27566. image: {
  27567. source: "./media/characters/holly-rabbit/dick.svg"
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Normal",
  27574. height: math.unit(15, "feet"),
  27575. default: true
  27576. },
  27577. {
  27578. name: "Macro",
  27579. height: math.unit(250, "feet")
  27580. },
  27581. {
  27582. name: "Macro+",
  27583. height: math.unit(2500, "feet")
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(3.02, "meters"),
  27592. weight: math.unit(500, "kg"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/drena/front.svg",
  27596. extra: 282 / 243,
  27597. bottom: 8 / 290
  27598. }
  27599. },
  27600. side: {
  27601. height: math.unit(3.02, "meters"),
  27602. weight: math.unit(500, "kg"),
  27603. name: "Side",
  27604. image: {
  27605. source: "./media/characters/drena/side.svg",
  27606. extra: 280 / 245,
  27607. bottom: 10 / 290
  27608. }
  27609. },
  27610. back: {
  27611. height: math.unit(3.02, "meters"),
  27612. weight: math.unit(500, "kg"),
  27613. name: "Back",
  27614. image: {
  27615. source: "./media/characters/drena/back.svg",
  27616. extra: 278 / 243,
  27617. bottom: 2 / 280
  27618. }
  27619. },
  27620. foot: {
  27621. height: math.unit(0.75, "meters"),
  27622. name: "Foot",
  27623. image: {
  27624. source: "./media/characters/drena/foot.svg"
  27625. }
  27626. },
  27627. maw: {
  27628. height: math.unit(0.82, "meters"),
  27629. name: "Maw",
  27630. image: {
  27631. source: "./media/characters/drena/maw.svg"
  27632. }
  27633. },
  27634. rump: {
  27635. height: math.unit(0.93, "meters"),
  27636. name: "Rump",
  27637. image: {
  27638. source: "./media/characters/drena/rump.svg"
  27639. }
  27640. },
  27641. },
  27642. [
  27643. {
  27644. name: "Normal",
  27645. height: math.unit(3.02, "meters"),
  27646. default: true
  27647. },
  27648. ]
  27649. ))
  27650. characterMakers.push(() => makeCharacter(
  27651. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27652. {
  27653. front: {
  27654. height: math.unit(6 + 4 / 12, "feet"),
  27655. weight: math.unit(250, "lb"),
  27656. name: "Front",
  27657. image: {
  27658. source: "./media/characters/remmyzilla/front.svg",
  27659. extra: 4033 / 3588,
  27660. bottom: 123 / 4156
  27661. }
  27662. },
  27663. back: {
  27664. height: math.unit(6 + 4 / 12, "feet"),
  27665. weight: math.unit(250, "lb"),
  27666. name: "Back",
  27667. image: {
  27668. source: "./media/characters/remmyzilla/back.svg",
  27669. extra: 2687 / 2555,
  27670. bottom: 48 / 2735
  27671. }
  27672. },
  27673. frontFancy: {
  27674. height: math.unit(6 + 4 / 12, "feet"),
  27675. weight: math.unit(250, "lb"),
  27676. name: "Front (Fancy)",
  27677. image: {
  27678. source: "./media/characters/remmyzilla/front-fancy.svg",
  27679. extra: 4119 / 3419,
  27680. bottom: 237 / 4356
  27681. }
  27682. },
  27683. paw: {
  27684. height: math.unit(1.73, "feet"),
  27685. name: "Paw",
  27686. image: {
  27687. source: "./media/characters/remmyzilla/paw.svg"
  27688. }
  27689. },
  27690. maw: {
  27691. height: math.unit(1.73, "feet"),
  27692. name: "Maw",
  27693. image: {
  27694. source: "./media/characters/remmyzilla/maw.svg"
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Normal",
  27701. height: math.unit(6 + 4 / 12, "feet")
  27702. },
  27703. {
  27704. name: "Minimacro",
  27705. height: math.unit(12 + 8 / 12, "feet")
  27706. },
  27707. {
  27708. name: "Normal",
  27709. height: math.unit(640, "feet"),
  27710. default: true
  27711. },
  27712. {
  27713. name: "Megamacro",
  27714. height: math.unit(6400, "feet")
  27715. },
  27716. {
  27717. name: "Gigamacro",
  27718. height: math.unit(64000, "miles")
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(2.5, "meters"),
  27727. weight: math.unit(300, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/lawrence/front.svg",
  27731. extra: 357 / 335,
  27732. bottom: 30 / 387
  27733. }
  27734. },
  27735. back: {
  27736. height: math.unit(2.5, "meters"),
  27737. weight: math.unit(300, "lb"),
  27738. name: "Back",
  27739. image: {
  27740. source: "./media/characters/lawrence/back.svg",
  27741. extra: 357 / 338,
  27742. bottom: 16 / 373
  27743. }
  27744. },
  27745. head: {
  27746. height: math.unit(0.9, "meter"),
  27747. name: "Head",
  27748. image: {
  27749. source: "./media/characters/lawrence/head.svg"
  27750. }
  27751. },
  27752. maw: {
  27753. height: math.unit(0.7, "meter"),
  27754. name: "Maw",
  27755. image: {
  27756. source: "./media/characters/lawrence/maw.svg"
  27757. }
  27758. },
  27759. footBottom: {
  27760. height: math.unit(0.5, "meter"),
  27761. name: "Foot (Bottom)",
  27762. image: {
  27763. source: "./media/characters/lawrence/foot-bottom.svg"
  27764. }
  27765. },
  27766. footTop: {
  27767. height: math.unit(0.5, "meter"),
  27768. name: "Foot (Top)",
  27769. image: {
  27770. source: "./media/characters/lawrence/foot-top.svg"
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(2.5, "meters"),
  27778. default: true
  27779. },
  27780. {
  27781. name: "Macro",
  27782. height: math.unit(95, "meters")
  27783. },
  27784. {
  27785. name: "Megamacro",
  27786. height: math.unit(150, "km")
  27787. },
  27788. ]
  27789. ))
  27790. characterMakers.push(() => makeCharacter(
  27791. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27792. {
  27793. front: {
  27794. height: math.unit(4.2, "meters"),
  27795. name: "Front",
  27796. image: {
  27797. source: "./media/characters/sydney/front.svg",
  27798. extra: 1323 / 1277,
  27799. bottom: 111 / 1434
  27800. }
  27801. },
  27802. },
  27803. [
  27804. {
  27805. name: "Normal",
  27806. height: math.unit(4.2, "meters")
  27807. },
  27808. ]
  27809. ))
  27810. characterMakers.push(() => makeCharacter(
  27811. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27812. {
  27813. back: {
  27814. height: math.unit(201, "feet"),
  27815. name: "Back",
  27816. image: {
  27817. source: "./media/characters/jessica/back.svg",
  27818. extra: 273 / 259,
  27819. bottom: 7 / 280
  27820. }
  27821. },
  27822. },
  27823. [
  27824. {
  27825. name: "Normal",
  27826. height: math.unit(201, "feet"),
  27827. default: true
  27828. },
  27829. {
  27830. name: "Megamacro",
  27831. height: math.unit(8, "miles")
  27832. },
  27833. ]
  27834. ))
  27835. characterMakers.push(() => makeCharacter(
  27836. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27837. {
  27838. side: {
  27839. height: math.unit(320, "cm"),
  27840. name: "Side",
  27841. image: {
  27842. source: "./media/characters/victoria/side.svg",
  27843. extra: 778 / 346,
  27844. bottom: 56 / 834
  27845. }
  27846. },
  27847. maw: {
  27848. height: math.unit(5.9, "feet"),
  27849. name: "Maw",
  27850. image: {
  27851. source: "./media/characters/victoria/maw.svg"
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Normal",
  27858. height: math.unit(320, "cm"),
  27859. default: true
  27860. },
  27861. ]
  27862. ))
  27863. characterMakers.push(() => makeCharacter(
  27864. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27865. {
  27866. front: {
  27867. height: math.unit(5 + 6 / 12, "feet"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/cat/front.svg",
  27871. extra: 1374 / 1257,
  27872. bottom: 59 / 1433
  27873. }
  27874. },
  27875. back: {
  27876. height: math.unit(5 + 6 / 12, "feet"),
  27877. name: "Back",
  27878. image: {
  27879. source: "./media/characters/cat/back.svg",
  27880. extra: 1337 / 1226,
  27881. bottom: 34 / 1371
  27882. }
  27883. },
  27884. taur: {
  27885. height: math.unit(7, "feet"),
  27886. name: "Taur",
  27887. image: {
  27888. source: "./media/characters/cat/taur.svg",
  27889. extra: 1345 / 1231,
  27890. bottom: 66 / 1411
  27891. }
  27892. },
  27893. lucario: {
  27894. height: math.unit(4, "feet"),
  27895. name: "Lucario",
  27896. image: {
  27897. source: "./media/characters/cat/lucario.svg",
  27898. extra: 1470 / 1318,
  27899. bottom: 65 / 1535
  27900. }
  27901. },
  27902. megaLucario: {
  27903. height: math.unit(4, "feet"),
  27904. name: "Mega Lucario",
  27905. image: {
  27906. source: "./media/characters/cat/mega-lucario.svg",
  27907. extra: 1515 / 1319,
  27908. bottom: 63 / 1578
  27909. }
  27910. },
  27911. nickit: {
  27912. height: math.unit(2, "feet"),
  27913. name: "Nickit",
  27914. image: {
  27915. source: "./media/characters/cat/nickit.svg",
  27916. extra: 1980 / 1585,
  27917. bottom: 102 / 2082
  27918. }
  27919. },
  27920. lopunnyFront: {
  27921. height: math.unit(5, "feet"),
  27922. name: "Lopunny (Front)",
  27923. image: {
  27924. source: "./media/characters/cat/lopunny-front.svg",
  27925. extra: 1782 / 1469,
  27926. bottom: 38 / 1820
  27927. }
  27928. },
  27929. lopunnyBack: {
  27930. height: math.unit(5, "feet"),
  27931. name: "Lopunny (Back)",
  27932. image: {
  27933. source: "./media/characters/cat/lopunny-back.svg",
  27934. extra: 1660 / 1490,
  27935. bottom: 25 / 1685
  27936. }
  27937. },
  27938. },
  27939. [
  27940. {
  27941. name: "Really small",
  27942. height: math.unit(1, "nm")
  27943. },
  27944. {
  27945. name: "Micro",
  27946. height: math.unit(5, "inches")
  27947. },
  27948. {
  27949. name: "Normal",
  27950. height: math.unit(5 + 6 / 12, "feet"),
  27951. default: true
  27952. },
  27953. {
  27954. name: "Macro",
  27955. height: math.unit(50, "feet")
  27956. },
  27957. {
  27958. name: "Macro+",
  27959. height: math.unit(150, "feet")
  27960. },
  27961. {
  27962. name: "Megamacro",
  27963. height: math.unit(100, "miles")
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27969. {
  27970. front: {
  27971. height: math.unit(63.4, "meters"),
  27972. weight: math.unit(3.28349e+6, "kilograms"),
  27973. name: "Front",
  27974. image: {
  27975. source: "./media/characters/kirina-violet/front.svg",
  27976. extra: 2812 / 2725,
  27977. bottom: 0 / 2812
  27978. }
  27979. },
  27980. back: {
  27981. height: math.unit(63.4, "meters"),
  27982. weight: math.unit(3.28349e+6, "kilograms"),
  27983. name: "Back",
  27984. image: {
  27985. source: "./media/characters/kirina-violet/back.svg",
  27986. extra: 2812 / 2725,
  27987. bottom: 0 / 2812
  27988. }
  27989. },
  27990. mouth: {
  27991. height: math.unit(4.35, "meters"),
  27992. name: "Mouth",
  27993. image: {
  27994. source: "./media/characters/kirina-violet/mouth.svg"
  27995. }
  27996. },
  27997. paw: {
  27998. height: math.unit(5.6, "meters"),
  27999. name: "Paw",
  28000. image: {
  28001. source: "./media/characters/kirina-violet/paw.svg"
  28002. }
  28003. },
  28004. tail: {
  28005. height: math.unit(18, "meters"),
  28006. name: "Tail",
  28007. image: {
  28008. source: "./media/characters/kirina-violet/tail.svg"
  28009. }
  28010. },
  28011. },
  28012. [
  28013. {
  28014. name: "Macro",
  28015. height: math.unit(63.4, "meters"),
  28016. default: true
  28017. },
  28018. ]
  28019. ))
  28020. characterMakers.push(() => makeCharacter(
  28021. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28022. {
  28023. front: {
  28024. height: math.unit(60, "feet"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/cat-gigachu/front.svg",
  28028. extra: 1024 / 780,
  28029. bottom: 23 / 1047
  28030. }
  28031. },
  28032. back: {
  28033. height: math.unit(60, "feet"),
  28034. name: "Back",
  28035. image: {
  28036. source: "./media/characters/cat-gigachu/back.svg",
  28037. extra: 1024 / 780,
  28038. bottom: 23 / 1047
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Dynamax",
  28045. height: math.unit(60, "feet"),
  28046. default: true
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28052. {
  28053. front: {
  28054. height: math.unit(6, "feet"),
  28055. weight: math.unit(150, "lb"),
  28056. name: "Front",
  28057. image: {
  28058. source: "./media/characters/sfaiyan/front.svg",
  28059. extra: 999 / 978,
  28060. bottom: 5 / 1004
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(1.82, "meters")
  28068. },
  28069. {
  28070. name: "Giant",
  28071. height: math.unit(2.27, "km"),
  28072. default: true
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28078. {
  28079. front: {
  28080. height: math.unit(179, "cm"),
  28081. weight: math.unit(100, "kg"),
  28082. name: "Front",
  28083. image: {
  28084. source: "./media/characters/raunehkeli/front.svg",
  28085. extra: 1934 / 1926,
  28086. bottom: 0 / 1934
  28087. }
  28088. },
  28089. },
  28090. [
  28091. {
  28092. name: "Normal",
  28093. height: math.unit(179, "cm")
  28094. },
  28095. {
  28096. name: "Maximum",
  28097. height: math.unit(575, "meters"),
  28098. default: true
  28099. },
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(6, "feet"),
  28107. weight: math.unit(150, "lb"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28111. extra: 2625 / 2518,
  28112. bottom: 60 / 2685
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(6 + 2 / 12, "feet"),
  28120. default: true
  28121. },
  28122. {
  28123. name: "Macro",
  28124. height: math.unit(1180, "feet")
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(5 + 6 / 12, "feet"),
  28133. weight: math.unit(108, "lb"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/lilith-zott/front.svg",
  28137. extra: 2510 / 2238,
  28138. bottom: 100 / 2610
  28139. }
  28140. },
  28141. frontDressed: {
  28142. height: math.unit(5 + 6 / 12, "feet"),
  28143. weight: math.unit(108, "lb"),
  28144. name: "Front (Dressed)",
  28145. image: {
  28146. source: "./media/characters/lilith-zott/front-dressed.svg",
  28147. extra: 2510 / 2238,
  28148. bottom: 100 / 2610
  28149. }
  28150. },
  28151. },
  28152. [
  28153. {
  28154. name: "Normal",
  28155. height: math.unit(5 + 6 / 12, "feet")
  28156. },
  28157. {
  28158. name: "Macro",
  28159. height: math.unit(200, "feet"),
  28160. default: true
  28161. },
  28162. {
  28163. name: "Macro+",
  28164. height: math.unit(1030, "feet")
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(6, "feet"),
  28173. weight: math.unit(150, "lb"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28177. extra: 2567 / 2435,
  28178. bottom: 39 / 2606
  28179. }
  28180. },
  28181. frontSuper: {
  28182. height: math.unit(6, "feet"),
  28183. name: "Front (Super)",
  28184. image: {
  28185. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28186. extra: 2567 / 2435,
  28187. bottom: 39 / 2606
  28188. }
  28189. },
  28190. },
  28191. [
  28192. {
  28193. name: "Normal",
  28194. height: math.unit(5 + 10 / 12, "feet")
  28195. },
  28196. {
  28197. name: "Macro",
  28198. height: math.unit(220, "feet"),
  28199. default: true
  28200. },
  28201. {
  28202. name: "Macro+",
  28203. height: math.unit(1100, "feet")
  28204. },
  28205. ]
  28206. ))
  28207. characterMakers.push(() => makeCharacter(
  28208. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28209. {
  28210. front: {
  28211. height: math.unit(100, "miles"),
  28212. name: "Front",
  28213. image: {
  28214. source: "./media/characters/sona/front.svg",
  28215. extra: 2433 / 2201,
  28216. bottom: 53 / 2486
  28217. }
  28218. },
  28219. foot: {
  28220. height: math.unit(16.1, "miles"),
  28221. name: "Foot",
  28222. image: {
  28223. source: "./media/characters/sona/foot.svg"
  28224. }
  28225. },
  28226. },
  28227. [
  28228. {
  28229. name: "Macro",
  28230. height: math.unit(100, "miles"),
  28231. default: true
  28232. },
  28233. ]
  28234. ))
  28235. characterMakers.push(() => makeCharacter(
  28236. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28237. {
  28238. front: {
  28239. height: math.unit(6, "feet"),
  28240. weight: math.unit(150, "lb"),
  28241. name: "Front",
  28242. image: {
  28243. source: "./media/characters/bailey/front.svg",
  28244. extra: 1778 / 1724,
  28245. bottom: 30 / 1808
  28246. }
  28247. },
  28248. },
  28249. [
  28250. {
  28251. name: "Micro",
  28252. height: math.unit(4, "inches")
  28253. },
  28254. {
  28255. name: "Normal",
  28256. height: math.unit(5 + 5 / 12, "feet"),
  28257. default: true
  28258. },
  28259. {
  28260. name: "Macro",
  28261. height: math.unit(250, "feet")
  28262. },
  28263. {
  28264. name: "Megamacro",
  28265. height: math.unit(100, "miles")
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(5 + 2 / 12, "feet"),
  28274. weight: math.unit(120, "lb"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/snaps/front.svg",
  28278. extra: 2370 / 2177,
  28279. bottom: 48 / 2418
  28280. }
  28281. },
  28282. back: {
  28283. height: math.unit(5 + 2 / 12, "feet"),
  28284. weight: math.unit(120, "lb"),
  28285. name: "Back",
  28286. image: {
  28287. source: "./media/characters/snaps/back.svg",
  28288. extra: 2408 / 2258,
  28289. bottom: 15 / 2423
  28290. }
  28291. },
  28292. },
  28293. [
  28294. {
  28295. name: "Micro",
  28296. height: math.unit(9, "inches")
  28297. },
  28298. {
  28299. name: "Normal",
  28300. height: math.unit(5 + 2 / 12, "feet"),
  28301. default: true
  28302. },
  28303. {
  28304. name: "Mini Macro",
  28305. height: math.unit(10, "feet")
  28306. },
  28307. ]
  28308. ))
  28309. characterMakers.push(() => makeCharacter(
  28310. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28311. {
  28312. front: {
  28313. height: math.unit(1.8, "meters"),
  28314. weight: math.unit(85, "kg"),
  28315. name: "Front",
  28316. image: {
  28317. source: "./media/characters/azteck/front.svg",
  28318. extra: 2815 / 2625,
  28319. bottom: 89 / 2904
  28320. }
  28321. },
  28322. back: {
  28323. height: math.unit(1.8, "meters"),
  28324. weight: math.unit(85, "kg"),
  28325. name: "Back",
  28326. image: {
  28327. source: "./media/characters/azteck/back.svg",
  28328. extra: 2856 / 2648,
  28329. bottom: 85 / 2941
  28330. }
  28331. },
  28332. frontDressed: {
  28333. height: math.unit(1.8, "meters"),
  28334. weight: math.unit(85, "kg"),
  28335. name: "Front (Dressed)",
  28336. image: {
  28337. source: "./media/characters/azteck/front-dressed.svg",
  28338. extra: 2147 / 2003,
  28339. bottom: 68 / 2215
  28340. }
  28341. },
  28342. head: {
  28343. height: math.unit(0.47, "meters"),
  28344. weight: math.unit(85, "kg"),
  28345. name: "Head",
  28346. image: {
  28347. source: "./media/characters/azteck/head.svg"
  28348. }
  28349. },
  28350. },
  28351. [
  28352. {
  28353. name: "Bite sized",
  28354. height: math.unit(16, "cm")
  28355. },
  28356. {
  28357. name: "Normal",
  28358. height: math.unit(1.8, "meters"),
  28359. default: true
  28360. },
  28361. ]
  28362. ))
  28363. characterMakers.push(() => makeCharacter(
  28364. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28365. {
  28366. front: {
  28367. height: math.unit(6, "feet"),
  28368. weight: math.unit(150, "lb"),
  28369. name: "Front",
  28370. image: {
  28371. source: "./media/characters/pidge/front.svg",
  28372. extra: 620 / 588,
  28373. bottom: 9 / 629
  28374. }
  28375. },
  28376. back: {
  28377. height: math.unit(6, "feet"),
  28378. weight: math.unit(150, "lb"),
  28379. name: "Back",
  28380. image: {
  28381. source: "./media/characters/pidge/back.svg",
  28382. extra: 620 / 588,
  28383. bottom: 9 / 629
  28384. }
  28385. },
  28386. },
  28387. [
  28388. {
  28389. name: "Macro",
  28390. height: math.unit(1, "mile"),
  28391. default: true
  28392. },
  28393. ]
  28394. ))
  28395. characterMakers.push(() => makeCharacter(
  28396. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28397. {
  28398. front: {
  28399. height: math.unit(6, "feet"),
  28400. weight: math.unit(150, "lb"),
  28401. name: "Front",
  28402. image: {
  28403. source: "./media/characters/en/front.svg",
  28404. extra: 1697 / 1563,
  28405. bottom: 103 / 1800
  28406. }
  28407. },
  28408. back: {
  28409. height: math.unit(6, "feet"),
  28410. weight: math.unit(150, "lb"),
  28411. name: "Back",
  28412. image: {
  28413. source: "./media/characters/en/back.svg",
  28414. extra: 1700 / 1570,
  28415. bottom: 51 / 1751
  28416. }
  28417. },
  28418. frontDressed: {
  28419. height: math.unit(6, "feet"),
  28420. weight: math.unit(150, "lb"),
  28421. name: "Front (Dressed)",
  28422. image: {
  28423. source: "./media/characters/en/front-dressed.svg",
  28424. extra: 1697 / 1563,
  28425. bottom: 103 / 1800
  28426. }
  28427. },
  28428. backDressed: {
  28429. height: math.unit(6, "feet"),
  28430. weight: math.unit(150, "lb"),
  28431. name: "Back (Dressed)",
  28432. image: {
  28433. source: "./media/characters/en/back-dressed.svg",
  28434. extra: 1700 / 1570,
  28435. bottom: 51 / 1751
  28436. }
  28437. },
  28438. },
  28439. [
  28440. {
  28441. name: "Macro",
  28442. height: math.unit(210, "feet"),
  28443. default: true
  28444. },
  28445. ]
  28446. ))
  28447. characterMakers.push(() => makeCharacter(
  28448. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28449. {
  28450. front: {
  28451. height: math.unit(6, "feet"),
  28452. weight: math.unit(150, "lb"),
  28453. name: "Front",
  28454. image: {
  28455. source: "./media/characters/haze-orris/front.svg",
  28456. extra: 3975 / 3525,
  28457. bottom: 137 / 4112
  28458. }
  28459. },
  28460. },
  28461. [
  28462. {
  28463. name: "Micro",
  28464. height: math.unit(150, "mm"),
  28465. default: true
  28466. },
  28467. ]
  28468. ))
  28469. characterMakers.push(() => makeCharacter(
  28470. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28471. {
  28472. front: {
  28473. height: math.unit(6, "feet"),
  28474. weight: math.unit(150, "lb"),
  28475. name: "Front",
  28476. image: {
  28477. source: "./media/characters/casselene-yaro/front.svg",
  28478. extra: 4721 / 4541,
  28479. bottom: 82 / 4803
  28480. }
  28481. },
  28482. back: {
  28483. height: math.unit(6, "feet"),
  28484. weight: math.unit(150, "lb"),
  28485. name: "Back",
  28486. image: {
  28487. source: "./media/characters/casselene-yaro/back.svg",
  28488. extra: 4569 / 4377,
  28489. bottom: 69 / 4638
  28490. }
  28491. },
  28492. frontDressed: {
  28493. height: math.unit(6, "feet"),
  28494. weight: math.unit(150, "lb"),
  28495. name: "Front-dressed",
  28496. image: {
  28497. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28498. extra: 4721 / 4541,
  28499. bottom: 82 / 4803
  28500. }
  28501. },
  28502. },
  28503. [
  28504. {
  28505. name: "Macro",
  28506. height: math.unit(190, "feet")
  28507. },
  28508. ]
  28509. ))
  28510. characterMakers.push(() => makeCharacter(
  28511. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28512. {
  28513. front: {
  28514. height: math.unit(6, "feet"),
  28515. weight: math.unit(150, "lb"),
  28516. name: "Front",
  28517. image: {
  28518. source: "./media/characters/myra-rue-delore/front.svg",
  28519. extra: 1340 / 1308,
  28520. bottom: 67 / 1407
  28521. }
  28522. },
  28523. back: {
  28524. height: math.unit(6, "feet"),
  28525. weight: math.unit(150, "lb"),
  28526. name: "Back",
  28527. image: {
  28528. source: "./media/characters/myra-rue-delore/back.svg",
  28529. extra: 1341 / 1310,
  28530. bottom: 40 / 1381
  28531. }
  28532. },
  28533. frontDressed: {
  28534. height: math.unit(6, "feet"),
  28535. weight: math.unit(150, "lb"),
  28536. name: "Front (Dressed)",
  28537. image: {
  28538. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28539. extra: 1340 / 1308,
  28540. bottom: 67 / 1407
  28541. }
  28542. },
  28543. },
  28544. [
  28545. {
  28546. name: "Macro",
  28547. height: math.unit(150, "feet")
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(10, "feet"),
  28556. weight: math.unit(15015, "lb"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/fem!plat/front.svg",
  28560. extra: 2799 / 2604,
  28561. bottom: 149 / 2948
  28562. }
  28563. },
  28564. },
  28565. [
  28566. {
  28567. name: "Normal",
  28568. height: math.unit(10, "feet"),
  28569. default: true
  28570. },
  28571. {
  28572. name: "Macro",
  28573. height: math.unit(100, "feet")
  28574. },
  28575. {
  28576. name: "Megamacro",
  28577. height: math.unit(1000, "feet")
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28583. {
  28584. front: {
  28585. height: math.unit(15 + 5 / 12, "feet"),
  28586. weight: math.unit(4600, "lb"),
  28587. name: "Front",
  28588. image: {
  28589. source: "./media/characters/neapolitan-ananassa/front.svg",
  28590. extra: 2903 / 2736,
  28591. bottom: 0 / 2903
  28592. }
  28593. },
  28594. side: {
  28595. height: math.unit(15 + 5 / 12, "feet"),
  28596. weight: math.unit(4600, "lb"),
  28597. name: "Side",
  28598. image: {
  28599. source: "./media/characters/neapolitan-ananassa/side.svg",
  28600. extra: 2925 / 2719,
  28601. bottom: 0 / 2925
  28602. }
  28603. },
  28604. back: {
  28605. height: math.unit(15 + 5 / 12, "feet"),
  28606. weight: math.unit(4600, "lb"),
  28607. name: "Back",
  28608. image: {
  28609. source: "./media/characters/neapolitan-ananassa/back.svg",
  28610. extra: 2903 / 2736,
  28611. bottom: 0 / 2903
  28612. }
  28613. },
  28614. },
  28615. [
  28616. {
  28617. name: "Normal",
  28618. height: math.unit(15 + 5 / 12, "feet"),
  28619. default: true
  28620. },
  28621. {
  28622. name: "Post-Millenium",
  28623. height: math.unit(35 + 5 / 12, "feet")
  28624. },
  28625. {
  28626. name: "Post-Era",
  28627. height: math.unit(450 + 5 / 12, "feet")
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(300, "meters"),
  28636. weight: math.unit(125000, "tonnes"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/pazuzu/front.svg",
  28640. extra: 877 / 794,
  28641. bottom: 47 / 924
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Macro",
  28648. height: math.unit(300, "meters"),
  28649. default: true
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28655. {
  28656. side: {
  28657. height: math.unit(10 + 7 / 12, "feet"),
  28658. weight: math.unit(2.5, "tons"),
  28659. name: "Side",
  28660. image: {
  28661. source: "./media/characters/aasha/side.svg",
  28662. extra: 1345 / 1245,
  28663. bottom: 111 / 1456
  28664. }
  28665. },
  28666. back: {
  28667. height: math.unit(10 + 7 / 12, "feet"),
  28668. weight: math.unit(2.5, "tons"),
  28669. name: "Back",
  28670. image: {
  28671. source: "./media/characters/aasha/back.svg",
  28672. extra: 1133 / 1057,
  28673. bottom: 257 / 1390
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Normal",
  28680. height: math.unit(10 + 7 / 12, "feet"),
  28681. default: true
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28687. {
  28688. front: {
  28689. height: math.unit(6 + 3 / 12, "feet"),
  28690. name: "Front",
  28691. image: {
  28692. source: "./media/characters/nevan/front.svg",
  28693. extra: 704 / 704,
  28694. bottom: 28 / 732
  28695. }
  28696. },
  28697. back: {
  28698. height: math.unit(6 + 3 / 12, "feet"),
  28699. name: "Back",
  28700. image: {
  28701. source: "./media/characters/nevan/back.svg",
  28702. extra: 714 / 714,
  28703. bottom: 21 / 735
  28704. }
  28705. },
  28706. frontFlaccid: {
  28707. height: math.unit(6 + 3 / 12, "feet"),
  28708. name: "Front (Flaccid)",
  28709. image: {
  28710. source: "./media/characters/nevan/front-flaccid.svg",
  28711. extra: 704 / 704,
  28712. bottom: 28 / 732
  28713. }
  28714. },
  28715. frontErect: {
  28716. height: math.unit(6 + 3 / 12, "feet"),
  28717. name: "Front (Erect)",
  28718. image: {
  28719. source: "./media/characters/nevan/front-erect.svg",
  28720. extra: 704 / 704,
  28721. bottom: 28 / 732
  28722. }
  28723. },
  28724. backFlaccid: {
  28725. height: math.unit(6 + 3 / 12, "feet"),
  28726. name: "Back (Flaccid)",
  28727. image: {
  28728. source: "./media/characters/nevan/back-flaccid.svg",
  28729. extra: 714 / 714,
  28730. bottom: 21 / 735
  28731. }
  28732. },
  28733. },
  28734. [
  28735. {
  28736. name: "Normal",
  28737. height: math.unit(6 + 3 / 12, "feet"),
  28738. default: true
  28739. },
  28740. ]
  28741. ))
  28742. characterMakers.push(() => makeCharacter(
  28743. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28744. {
  28745. front: {
  28746. height: math.unit(4, "feet"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/arhan/front.svg",
  28750. extra: 3368 / 3133,
  28751. bottom: 0 / 3368
  28752. }
  28753. },
  28754. side: {
  28755. height: math.unit(4, "feet"),
  28756. name: "Side",
  28757. image: {
  28758. source: "./media/characters/arhan/side.svg",
  28759. extra: 3347 / 3105,
  28760. bottom: 0 / 3347
  28761. }
  28762. },
  28763. tongue: {
  28764. height: math.unit(1.42, "feet"),
  28765. name: "Tongue",
  28766. image: {
  28767. source: "./media/characters/arhan/tongue.svg"
  28768. }
  28769. },
  28770. head: {
  28771. height: math.unit(0.85, "feet"),
  28772. name: "Head",
  28773. image: {
  28774. source: "./media/characters/arhan/head.svg"
  28775. }
  28776. },
  28777. },
  28778. [
  28779. {
  28780. name: "Normal",
  28781. height: math.unit(4, "feet"),
  28782. default: true
  28783. },
  28784. ]
  28785. ))
  28786. characterMakers.push(() => makeCharacter(
  28787. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28788. {
  28789. front: {
  28790. height: math.unit(5 + 7.5 / 12, "feet"),
  28791. weight: math.unit(120, "lb"),
  28792. name: "Front",
  28793. image: {
  28794. source: "./media/characters/digi-duncan/front.svg",
  28795. extra: 330 / 326,
  28796. bottom: 16 / 346
  28797. }
  28798. },
  28799. side: {
  28800. height: math.unit(5 + 7.5 / 12, "feet"),
  28801. weight: math.unit(120, "lb"),
  28802. name: "Side",
  28803. image: {
  28804. source: "./media/characters/digi-duncan/side.svg",
  28805. extra: 341 / 337,
  28806. bottom: 1 / 342
  28807. }
  28808. },
  28809. back: {
  28810. height: math.unit(5 + 7.5 / 12, "feet"),
  28811. weight: math.unit(120, "lb"),
  28812. name: "Back",
  28813. image: {
  28814. source: "./media/characters/digi-duncan/back.svg",
  28815. extra: 330 / 326,
  28816. bottom: 12 / 342
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Speck",
  28823. height: math.unit(0.25, "mm")
  28824. },
  28825. {
  28826. name: "Micro",
  28827. height: math.unit(5, "mm")
  28828. },
  28829. {
  28830. name: "Tiny",
  28831. height: math.unit(0.5, "inches"),
  28832. default: true
  28833. },
  28834. {
  28835. name: "Human",
  28836. height: math.unit(5 + 7.5 / 12, "feet")
  28837. },
  28838. {
  28839. name: "Minigiant",
  28840. height: math.unit(8 + 5.25, "feet")
  28841. },
  28842. {
  28843. name: "Giant",
  28844. height: math.unit(2000, "feet")
  28845. },
  28846. {
  28847. name: "Mega",
  28848. height: math.unit(371.1, "miles")
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28854. {
  28855. front: {
  28856. height: math.unit(2, "meters"),
  28857. weight: math.unit(350, "kg"),
  28858. name: "Front",
  28859. image: {
  28860. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28861. extra: 898 / 838,
  28862. bottom: 9 / 907
  28863. }
  28864. },
  28865. },
  28866. [
  28867. {
  28868. name: "Micro",
  28869. height: math.unit(8, "meters")
  28870. },
  28871. {
  28872. name: "Normal",
  28873. height: math.unit(50, "meters"),
  28874. default: true
  28875. },
  28876. {
  28877. name: "Macro",
  28878. height: math.unit(500, "meters")
  28879. },
  28880. ]
  28881. ))
  28882. characterMakers.push(() => makeCharacter(
  28883. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28884. {
  28885. front: {
  28886. height: math.unit(6 + 6 / 12, "feet"),
  28887. name: "Front",
  28888. image: {
  28889. source: "./media/characters/khardesh/front.svg",
  28890. extra: 888 / 797,
  28891. bottom: 25 / 913
  28892. }
  28893. },
  28894. },
  28895. [
  28896. {
  28897. name: "Normal",
  28898. height: math.unit(6 + 6 / 12, "feet"),
  28899. default: true
  28900. },
  28901. {
  28902. name: "Normal+",
  28903. height: math.unit(4, "meters")
  28904. },
  28905. {
  28906. name: "Macro",
  28907. height: math.unit(50, "meters")
  28908. },
  28909. {
  28910. name: "Macro+",
  28911. height: math.unit(100, "meters")
  28912. },
  28913. {
  28914. name: "Megamacro",
  28915. height: math.unit(20, "km")
  28916. },
  28917. ]
  28918. ))
  28919. characterMakers.push(() => makeCharacter(
  28920. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28921. {
  28922. front: {
  28923. height: math.unit(6, "feet"),
  28924. weight: math.unit(150, "lb"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/kosho/front.svg",
  28928. extra: 1847 / 1847,
  28929. bottom: 86 / 1933
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Second-stage micro",
  28936. height: math.unit(0.5, "inches")
  28937. },
  28938. {
  28939. name: "First-stage micro",
  28940. height: math.unit(6, "inches")
  28941. },
  28942. {
  28943. name: "Normal",
  28944. height: math.unit(6, "feet"),
  28945. default: true
  28946. },
  28947. {
  28948. name: "First-stage macro",
  28949. height: math.unit(72, "feet")
  28950. },
  28951. {
  28952. name: "Second-stage macro",
  28953. height: math.unit(864, "feet")
  28954. },
  28955. ]
  28956. ))
  28957. characterMakers.push(() => makeCharacter(
  28958. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28959. {
  28960. normal: {
  28961. height: math.unit(4 + 6 / 12, "feet"),
  28962. name: "Normal",
  28963. image: {
  28964. source: "./media/characters/hydra/normal.svg",
  28965. extra: 2833 / 2634,
  28966. bottom: 68 / 2901
  28967. }
  28968. },
  28969. smol: {
  28970. height: math.unit(0.705, "inches"),
  28971. name: "Smol",
  28972. image: {
  28973. source: "./media/characters/hydra/smol.svg",
  28974. extra: 2715 / 2540,
  28975. bottom: 0 / 2715
  28976. }
  28977. },
  28978. },
  28979. [
  28980. {
  28981. name: "Normal",
  28982. height: math.unit(4 + 6 / 12, "feet"),
  28983. default: true
  28984. }
  28985. ]
  28986. ))
  28987. characterMakers.push(() => makeCharacter(
  28988. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  28989. {
  28990. front: {
  28991. height: math.unit(0.6, "cm"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/daz/front.svg",
  28995. extra: 1682 / 1164,
  28996. bottom: 42 / 1724
  28997. }
  28998. },
  28999. },
  29000. [
  29001. {
  29002. name: "Normal",
  29003. height: math.unit(0.6, "cm"),
  29004. default: true
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(6, "feet"),
  29013. weight: math.unit(235, "lb"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/theo-pangolin/front.svg",
  29017. extra: 1996 / 1969,
  29018. bottom: 115 / 2111
  29019. }
  29020. },
  29021. back: {
  29022. height: math.unit(6, "feet"),
  29023. weight: math.unit(235, "lb"),
  29024. name: "Back",
  29025. image: {
  29026. source: "./media/characters/theo-pangolin/back.svg",
  29027. extra: 1979 / 1979,
  29028. bottom: 40 / 2019
  29029. }
  29030. },
  29031. feral: {
  29032. height: math.unit(2, "feet"),
  29033. weight: math.unit(30, "lb"),
  29034. name: "Feral",
  29035. image: {
  29036. source: "./media/characters/theo-pangolin/feral.svg",
  29037. extra: 803 / 791,
  29038. bottom: 181 / 984
  29039. }
  29040. },
  29041. footFive: {
  29042. height: math.unit(1.43, "feet"),
  29043. name: "Foot (Five Toes)",
  29044. image: {
  29045. source: "./media/characters/theo-pangolin/foot-five.svg"
  29046. }
  29047. },
  29048. footFour: {
  29049. height: math.unit(1.43, "feet"),
  29050. name: "Foot (Four Toes)",
  29051. image: {
  29052. source: "./media/characters/theo-pangolin/foot-four.svg"
  29053. }
  29054. },
  29055. handFour: {
  29056. height: math.unit(0.81, "feet"),
  29057. name: "Hand (Four Fingers)",
  29058. image: {
  29059. source: "./media/characters/theo-pangolin/hand-four.svg"
  29060. }
  29061. },
  29062. handThree: {
  29063. height: math.unit(0.81, "feet"),
  29064. name: "Hand (Three Fingers)",
  29065. image: {
  29066. source: "./media/characters/theo-pangolin/hand-three.svg"
  29067. }
  29068. },
  29069. headFront: {
  29070. height: math.unit(1.37, "feet"),
  29071. name: "Head (Front)",
  29072. image: {
  29073. source: "./media/characters/theo-pangolin/head-front.svg"
  29074. }
  29075. },
  29076. headSide: {
  29077. height: math.unit(1.43, "feet"),
  29078. name: "Head (Side)",
  29079. image: {
  29080. source: "./media/characters/theo-pangolin/head-side.svg"
  29081. }
  29082. },
  29083. tongue: {
  29084. height: math.unit(2.29, "feet"),
  29085. name: "Tongue",
  29086. image: {
  29087. source: "./media/characters/theo-pangolin/tongue.svg"
  29088. }
  29089. },
  29090. },
  29091. [
  29092. {
  29093. name: "Normal",
  29094. height: math.unit(6, "feet")
  29095. },
  29096. {
  29097. name: "Macro",
  29098. height: math.unit(400, "feet"),
  29099. default: true
  29100. },
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29105. {
  29106. front: {
  29107. height: math.unit(6, "inches"),
  29108. weight: math.unit(0.036, "kg"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/renée/front.svg",
  29112. extra: 900 / 886,
  29113. bottom: 8 / 908
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Nano",
  29120. height: math.unit(1, "nm")
  29121. },
  29122. {
  29123. name: "Micro",
  29124. height: math.unit(1, "mm")
  29125. },
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(6, "inches")
  29129. },
  29130. {
  29131. name: "Macro",
  29132. height: math.unit(2000, "feet"),
  29133. default: true
  29134. },
  29135. {
  29136. name: "Megamacro",
  29137. height: math.unit(2, "km")
  29138. },
  29139. {
  29140. name: "Gigamacro",
  29141. height: math.unit(2000, "km")
  29142. },
  29143. {
  29144. name: "Teramacro",
  29145. height: math.unit(250000, "km")
  29146. },
  29147. ]
  29148. ))
  29149. characterMakers.push(() => makeCharacter(
  29150. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29151. {
  29152. front: {
  29153. height: math.unit(4, "meters"),
  29154. weight: math.unit(150, "kg"),
  29155. name: "Front",
  29156. image: {
  29157. source: "./media/characters/caledvwlch/front.svg",
  29158. extra: 1760 / 1551,
  29159. bottom: 28 / 1788
  29160. }
  29161. },
  29162. side: {
  29163. height: math.unit(4, "meters"),
  29164. weight: math.unit(150, "kg"),
  29165. name: "Side",
  29166. image: {
  29167. source: "./media/characters/caledvwlch/side.svg",
  29168. extra: 1605 / 1536,
  29169. bottom: 31 / 1636
  29170. }
  29171. },
  29172. back: {
  29173. height: math.unit(4, "meters"),
  29174. weight: math.unit(150, "kg"),
  29175. name: "Back",
  29176. image: {
  29177. source: "./media/characters/caledvwlch/back.svg",
  29178. extra: 1635 / 1565,
  29179. bottom: 27 / 1662
  29180. }
  29181. },
  29182. },
  29183. [
  29184. {
  29185. name: "\"Incognito\"",
  29186. height: math.unit(4, "meters")
  29187. },
  29188. {
  29189. name: "Small rampage",
  29190. height: math.unit(600, "meters")
  29191. },
  29192. {
  29193. name: "Mega",
  29194. height: math.unit(30, "km")
  29195. },
  29196. {
  29197. name: "Home-size",
  29198. height: math.unit(50, "km"),
  29199. default: true
  29200. },
  29201. {
  29202. name: "Giga",
  29203. height: math.unit(300, "km")
  29204. },
  29205. {
  29206. name: "Lounging",
  29207. height: math.unit(11000, "km")
  29208. },
  29209. {
  29210. name: "Planet snacking",
  29211. height: math.unit(2000000, "km")
  29212. },
  29213. ]
  29214. ))
  29215. characterMakers.push(() => makeCharacter(
  29216. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29217. {
  29218. front: {
  29219. height: math.unit(6, "feet"),
  29220. weight: math.unit(215, "lb"),
  29221. name: "Front",
  29222. image: {
  29223. source: "./media/characters/sapphire-svell/front.svg",
  29224. extra: 495 / 455,
  29225. bottom: 20 / 515
  29226. }
  29227. },
  29228. back: {
  29229. height: math.unit(6, "feet"),
  29230. weight: math.unit(216, "lb"),
  29231. name: "Back",
  29232. image: {
  29233. source: "./media/characters/sapphire-svell/back.svg",
  29234. extra: 497 / 477,
  29235. bottom: 7 / 504
  29236. }
  29237. },
  29238. maw: {
  29239. height: math.unit(1.57, "feet"),
  29240. name: "Maw",
  29241. image: {
  29242. source: "./media/characters/sapphire-svell/maw.svg"
  29243. }
  29244. },
  29245. foot: {
  29246. height: math.unit(1.07, "feet"),
  29247. name: "Foot",
  29248. image: {
  29249. source: "./media/characters/sapphire-svell/foot.svg"
  29250. }
  29251. },
  29252. toering: {
  29253. height: math.unit(1.7, "inch"),
  29254. name: "Toering",
  29255. image: {
  29256. source: "./media/characters/sapphire-svell/toering.svg"
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "Normal",
  29263. height: math.unit(300, "feet"),
  29264. default: true
  29265. },
  29266. {
  29267. name: "Augmented",
  29268. height: math.unit(1250, "feet")
  29269. },
  29270. {
  29271. name: "Unleashed",
  29272. height: math.unit(3000, "feet")
  29273. },
  29274. ]
  29275. ))
  29276. characterMakers.push(() => makeCharacter(
  29277. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29278. {
  29279. side: {
  29280. height: math.unit(2 + 3 / 12, "feet"),
  29281. weight: math.unit(110, "lb"),
  29282. name: "Side",
  29283. image: {
  29284. source: "./media/characters/glitch-flux/side.svg",
  29285. extra: 997 / 805,
  29286. bottom: 20 / 1017
  29287. }
  29288. },
  29289. },
  29290. [
  29291. {
  29292. name: "Normal",
  29293. height: math.unit(2 + 3 / 12, "feet"),
  29294. default: true
  29295. },
  29296. ]
  29297. ))
  29298. characterMakers.push(() => makeCharacter(
  29299. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29300. {
  29301. front: {
  29302. height: math.unit(4, "meters"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/mid/front.svg",
  29306. extra: 507 / 476,
  29307. bottom: 17 / 524
  29308. }
  29309. },
  29310. back: {
  29311. height: math.unit(4, "meters"),
  29312. name: "Back",
  29313. image: {
  29314. source: "./media/characters/mid/back.svg",
  29315. extra: 519 / 487,
  29316. bottom: 7 / 526
  29317. }
  29318. },
  29319. stuck: {
  29320. height: math.unit(2.2, "meters"),
  29321. name: "Stuck",
  29322. image: {
  29323. source: "./media/characters/mid/stuck.svg",
  29324. extra: 1951 / 1869,
  29325. bottom: 88 / 2039
  29326. }
  29327. }
  29328. },
  29329. [
  29330. {
  29331. name: "Normal",
  29332. height: math.unit(4, "meters"),
  29333. default: true
  29334. },
  29335. {
  29336. name: "Big",
  29337. height: math.unit(10, "meters")
  29338. },
  29339. {
  29340. name: "Macro",
  29341. height: math.unit(800, "meters")
  29342. },
  29343. {
  29344. name: "Megamacro",
  29345. height: math.unit(100, "km")
  29346. },
  29347. {
  29348. name: "Overgrown",
  29349. height: math.unit(1, "parsec")
  29350. },
  29351. ]
  29352. ))
  29353. characterMakers.push(() => makeCharacter(
  29354. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29355. {
  29356. front: {
  29357. height: math.unit(2.5, "meters"),
  29358. weight: math.unit(225, "kg"),
  29359. name: "Front",
  29360. image: {
  29361. source: "./media/characters/iris/front.svg",
  29362. extra: 3348 / 3251,
  29363. bottom: 205 / 3553
  29364. }
  29365. },
  29366. maw: {
  29367. height: math.unit(0.56, "meter"),
  29368. name: "Maw",
  29369. image: {
  29370. source: "./media/characters/iris/maw.svg"
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Mewter cat",
  29377. height: math.unit(1.2, "meters")
  29378. },
  29379. {
  29380. name: "Minimacro",
  29381. height: math.unit(2.5, "meters"),
  29382. default: true
  29383. },
  29384. {
  29385. name: "Macro",
  29386. height: math.unit(180, "meters")
  29387. },
  29388. {
  29389. name: "Megamacro",
  29390. height: math.unit(2746, "meters")
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(6, "feet"),
  29399. weight: math.unit(135, "lb"),
  29400. name: "Front",
  29401. image: {
  29402. source: "./media/characters/axel/front.svg",
  29403. extra: 908/908,
  29404. bottom: 58/966
  29405. }
  29406. },
  29407. side: {
  29408. height: math.unit(6, "feet"),
  29409. weight: math.unit(135, "lb"),
  29410. name: "Side",
  29411. image: {
  29412. source: "./media/characters/axel/side.svg",
  29413. extra: 958/958,
  29414. bottom: 11/969
  29415. }
  29416. },
  29417. back: {
  29418. height: math.unit(6, "feet"),
  29419. weight: math.unit(135, "lb"),
  29420. name: "Back",
  29421. image: {
  29422. source: "./media/characters/axel/back.svg",
  29423. extra: 887/887,
  29424. bottom: 34/921
  29425. }
  29426. },
  29427. head: {
  29428. height: math.unit(1.07, "feet"),
  29429. name: "Head",
  29430. image: {
  29431. source: "./media/characters/axel/head.svg"
  29432. }
  29433. },
  29434. beak: {
  29435. height: math.unit(1.4, "feet"),
  29436. name: "Beak",
  29437. image: {
  29438. source: "./media/characters/axel/beak.svg"
  29439. }
  29440. },
  29441. beakSide: {
  29442. height: math.unit(1.4, "feet"),
  29443. name: "Beak Side",
  29444. image: {
  29445. source: "./media/characters/axel/beak-side.svg"
  29446. }
  29447. },
  29448. sheath: {
  29449. height: math.unit(0.5, "feet"),
  29450. name: "Sheath",
  29451. image: {
  29452. source: "./media/characters/axel/sheath.svg"
  29453. }
  29454. },
  29455. dick: {
  29456. height: math.unit(0.98, "feet"),
  29457. name: "Dick",
  29458. image: {
  29459. source: "./media/characters/axel/dick.svg"
  29460. }
  29461. },
  29462. },
  29463. [
  29464. {
  29465. name: "Macro",
  29466. height: math.unit(68, "meters"),
  29467. default: true
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29473. {
  29474. front: {
  29475. height: math.unit(3.5, "meters"),
  29476. weight: math.unit(1200, "kg"),
  29477. name: "Front",
  29478. image: {
  29479. source: "./media/characters/joanna/front.svg",
  29480. extra: 1596/1488,
  29481. bottom: 29/1625
  29482. }
  29483. },
  29484. back: {
  29485. height: math.unit(3.5, "meters"),
  29486. weight: math.unit(1200, "kg"),
  29487. name: "Back",
  29488. image: {
  29489. source: "./media/characters/joanna/back.svg",
  29490. extra: 1594/1495,
  29491. bottom: 26/1620
  29492. }
  29493. },
  29494. frontShorts: {
  29495. height: math.unit(3.5, "meters"),
  29496. weight: math.unit(1200, "kg"),
  29497. name: "Front (Shorts)",
  29498. image: {
  29499. source: "./media/characters/joanna/front-shorts.svg",
  29500. extra: 1596/1488,
  29501. bottom: 29/1625
  29502. }
  29503. },
  29504. frontBiker: {
  29505. height: math.unit(3.5, "meters"),
  29506. weight: math.unit(1200, "kg"),
  29507. name: "Front (Biker)",
  29508. image: {
  29509. source: "./media/characters/joanna/front-biker.svg",
  29510. extra: 1596/1488,
  29511. bottom: 29/1625
  29512. }
  29513. },
  29514. backBiker: {
  29515. height: math.unit(3.5, "meters"),
  29516. weight: math.unit(1200, "kg"),
  29517. name: "Back (Biker)",
  29518. image: {
  29519. source: "./media/characters/joanna/back-biker.svg",
  29520. extra: 1594/1495,
  29521. bottom: 88/1682
  29522. }
  29523. },
  29524. bikeLeft: {
  29525. height: math.unit(2.4, "meters"),
  29526. weight: math.unit(1600, "kg"),
  29527. name: "Bike (Left)",
  29528. image: {
  29529. source: "./media/characters/joanna/bike-left.svg",
  29530. extra: 720/720,
  29531. bottom: 8/728
  29532. }
  29533. },
  29534. bikeRight: {
  29535. height: math.unit(2.4, "meters"),
  29536. weight: math.unit(1600, "kg"),
  29537. name: "Bike (Right)",
  29538. image: {
  29539. source: "./media/characters/joanna/bike-right.svg",
  29540. extra: 720/720,
  29541. bottom: 8/728
  29542. }
  29543. },
  29544. },
  29545. [
  29546. {
  29547. name: "Incognito",
  29548. height: math.unit(3.5, "meters")
  29549. },
  29550. {
  29551. name: "Casual Big",
  29552. height: math.unit(200, "meters")
  29553. },
  29554. {
  29555. name: "Macro",
  29556. height: math.unit(600, "meters")
  29557. },
  29558. {
  29559. name: "Original",
  29560. height: math.unit(20, "km"),
  29561. default: true
  29562. },
  29563. {
  29564. name: "Giga",
  29565. height: math.unit(400, "km")
  29566. },
  29567. {
  29568. name: "Lounging",
  29569. height: math.unit(1500, "km")
  29570. },
  29571. {
  29572. name: "Planetary",
  29573. height: math.unit(200000, "km")
  29574. },
  29575. ]
  29576. ))
  29577. characterMakers.push(() => makeCharacter(
  29578. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29579. {
  29580. front: {
  29581. height: math.unit(6, "feet"),
  29582. weight: math.unit(150, "lb"),
  29583. name: "Front",
  29584. image: {
  29585. source: "./media/characters/hugo-sigil/front.svg",
  29586. extra: 522/500,
  29587. bottom: 2/524
  29588. }
  29589. },
  29590. back: {
  29591. height: math.unit(6, "feet"),
  29592. weight: math.unit(150, "lb"),
  29593. name: "Back",
  29594. image: {
  29595. source: "./media/characters/hugo-sigil/back.svg",
  29596. extra: 519/495,
  29597. bottom: 5/524
  29598. }
  29599. },
  29600. maw: {
  29601. height: math.unit(1.4, "feet"),
  29602. weight: math.unit(150, "lb"),
  29603. name: "Maw",
  29604. image: {
  29605. source: "./media/characters/hugo-sigil/maw.svg"
  29606. }
  29607. },
  29608. feet: {
  29609. height: math.unit(1.56, "feet"),
  29610. weight: math.unit(150, "lb"),
  29611. name: "Feet",
  29612. image: {
  29613. source: "./media/characters/hugo-sigil/feet.svg",
  29614. extra: 177/177,
  29615. bottom: 12/189
  29616. }
  29617. },
  29618. },
  29619. [
  29620. {
  29621. name: "Normal",
  29622. height: math.unit(6, "feet")
  29623. },
  29624. {
  29625. name: "Macro",
  29626. height: math.unit(200, "feet"),
  29627. default: true
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29633. {
  29634. front: {
  29635. height: math.unit(6, "feet"),
  29636. weight: math.unit(150, "lb"),
  29637. name: "Front",
  29638. image: {
  29639. source: "./media/characters/peri/front.svg",
  29640. extra: 2354/2233,
  29641. bottom: 49/2403
  29642. }
  29643. },
  29644. },
  29645. [
  29646. {
  29647. name: "Really Small",
  29648. height: math.unit(1, "nm")
  29649. },
  29650. {
  29651. name: "Micro",
  29652. height: math.unit(4, "inches")
  29653. },
  29654. {
  29655. name: "Normal",
  29656. height: math.unit(7, "inches"),
  29657. default: true
  29658. },
  29659. {
  29660. name: "Macro",
  29661. height: math.unit(400, "feet")
  29662. },
  29663. {
  29664. name: "Megamacro",
  29665. height: math.unit(100, "miles")
  29666. },
  29667. ]
  29668. ))
  29669. characterMakers.push(() => makeCharacter(
  29670. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29671. {
  29672. frontSlim: {
  29673. height: math.unit(7, "feet"),
  29674. name: "Front (Slim)",
  29675. image: {
  29676. source: "./media/characters/issilora/front-slim.svg",
  29677. extra: 529/449,
  29678. bottom: 53/582
  29679. }
  29680. },
  29681. sideSlim: {
  29682. height: math.unit(7, "feet"),
  29683. name: "Side (Slim)",
  29684. image: {
  29685. source: "./media/characters/issilora/side-slim.svg",
  29686. extra: 570/480,
  29687. bottom: 30/600
  29688. }
  29689. },
  29690. backSlim: {
  29691. height: math.unit(7, "feet"),
  29692. name: "Back (Slim)",
  29693. image: {
  29694. source: "./media/characters/issilora/back-slim.svg",
  29695. extra: 537/455,
  29696. bottom: 46/583
  29697. }
  29698. },
  29699. frontBuff: {
  29700. height: math.unit(7, "feet"),
  29701. name: "Front (Buff)",
  29702. image: {
  29703. source: "./media/characters/issilora/front-buff.svg",
  29704. extra: 2310/2035,
  29705. bottom: 335/2645
  29706. }
  29707. },
  29708. head: {
  29709. height: math.unit(1.94, "feet"),
  29710. name: "Head",
  29711. image: {
  29712. source: "./media/characters/issilora/head.svg"
  29713. }
  29714. },
  29715. },
  29716. [
  29717. {
  29718. name: "Minimum",
  29719. height: math.unit(7, "feet")
  29720. },
  29721. {
  29722. name: "Comfortable",
  29723. height: math.unit(17, "feet")
  29724. },
  29725. {
  29726. name: "Fun Size",
  29727. height: math.unit(47, "feet")
  29728. },
  29729. {
  29730. name: "Natural Macro",
  29731. height: math.unit(137, "feet"),
  29732. default: true
  29733. },
  29734. {
  29735. name: "Maximum Kaiju",
  29736. height: math.unit(397, "feet")
  29737. },
  29738. ]
  29739. ))
  29740. //characters
  29741. function makeCharacters() {
  29742. const results = [];
  29743. characterMakers.forEach(character => {
  29744. results.push(character());
  29745. });
  29746. return results;
  29747. }