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.
 
 
 

30032 lines
750 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. },
  1581. [
  1582. {
  1583. name: "Normal",
  1584. height: math.unit(1.83, "meter")
  1585. },
  1586. {
  1587. name: "Size Thief",
  1588. height: math.unit(18, "feet")
  1589. },
  1590. {
  1591. name: "50 Foot Collie",
  1592. height: math.unit(50, "feet")
  1593. },
  1594. {
  1595. name: "Macro",
  1596. height: math.unit(96, "feet"),
  1597. default: true
  1598. },
  1599. {
  1600. name: "Megamerger",
  1601. height: math.unit(650, "feet")
  1602. },
  1603. ]
  1604. ))
  1605. characterMakers.push(() => makeCharacter(
  1606. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1607. {
  1608. front: {
  1609. height: math.unit(7, "feet"),
  1610. weight: math.unit(100, "kg"),
  1611. name: "Front",
  1612. image: {
  1613. source: "./media/characters/march/front.svg",
  1614. extra: 1,
  1615. bottom: 0.015
  1616. }
  1617. },
  1618. foot: {
  1619. height: math.unit(0.9, "feet"),
  1620. name: "Foot",
  1621. image: {
  1622. source: "./media/characters/march/foot.svg"
  1623. }
  1624. },
  1625. },
  1626. [
  1627. {
  1628. name: "Normal",
  1629. height: math.unit(7.9, "feet")
  1630. },
  1631. {
  1632. name: "Macro",
  1633. height: math.unit(220, "meters")
  1634. },
  1635. {
  1636. name: "Megamacro",
  1637. height: math.unit(2.98, "km"),
  1638. default: true
  1639. },
  1640. {
  1641. name: "Gigamacro",
  1642. height: math.unit(15963, "km")
  1643. },
  1644. {
  1645. name: "Teramacro",
  1646. height: math.unit(2980000000, "km")
  1647. },
  1648. {
  1649. name: "Examacro",
  1650. height: math.unit(250, "parsecs")
  1651. },
  1652. ]
  1653. ))
  1654. characterMakers.push(() => makeCharacter(
  1655. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1656. {
  1657. front: {
  1658. height: math.unit(6, "feet"),
  1659. weight: math.unit(60, "kg"),
  1660. name: "Front",
  1661. image: {
  1662. source: "./media/characters/noir/front.svg",
  1663. extra: 1,
  1664. bottom: 0.032
  1665. }
  1666. },
  1667. },
  1668. [
  1669. {
  1670. name: "Normal",
  1671. height: math.unit(6.6, "feet")
  1672. },
  1673. {
  1674. name: "Macro",
  1675. height: math.unit(500, "feet")
  1676. },
  1677. {
  1678. name: "Megamacro",
  1679. height: math.unit(2.5, "km"),
  1680. default: true
  1681. },
  1682. {
  1683. name: "Gigamacro",
  1684. height: math.unit(22500, "km")
  1685. },
  1686. {
  1687. name: "Teramacro",
  1688. height: math.unit(2500000000, "km")
  1689. },
  1690. {
  1691. name: "Examacro",
  1692. height: math.unit(200, "parsecs")
  1693. },
  1694. ]
  1695. ))
  1696. characterMakers.push(() => makeCharacter(
  1697. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1698. {
  1699. front: {
  1700. height: math.unit(7, "feet"),
  1701. weight: math.unit(100, "kg"),
  1702. name: "Front",
  1703. image: {
  1704. source: "./media/characters/okuri/front.svg",
  1705. extra: 1,
  1706. bottom: 0.037
  1707. }
  1708. },
  1709. back: {
  1710. height: math.unit(7, "feet"),
  1711. weight: math.unit(100, "kg"),
  1712. name: "Back",
  1713. image: {
  1714. source: "./media/characters/okuri/back.svg",
  1715. extra: 1,
  1716. bottom: 0.007
  1717. }
  1718. },
  1719. },
  1720. [
  1721. {
  1722. name: "Megamacro",
  1723. height: math.unit(100, "miles"),
  1724. default: true
  1725. },
  1726. ]
  1727. ))
  1728. characterMakers.push(() => makeCharacter(
  1729. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1730. {
  1731. front: {
  1732. height: math.unit(7, "feet"),
  1733. weight: math.unit(100, "kg"),
  1734. name: "Front",
  1735. image: {
  1736. source: "./media/characters/manny/front.svg",
  1737. extra: 1,
  1738. bottom: 0.06
  1739. }
  1740. },
  1741. back: {
  1742. height: math.unit(7, "feet"),
  1743. weight: math.unit(100, "kg"),
  1744. name: "Back",
  1745. image: {
  1746. source: "./media/characters/manny/back.svg",
  1747. extra: 1,
  1748. bottom: 0.014
  1749. }
  1750. },
  1751. },
  1752. [
  1753. {
  1754. name: "Normal",
  1755. height: math.unit(7, "feet"),
  1756. },
  1757. {
  1758. name: "Macro",
  1759. height: math.unit(78, "feet"),
  1760. default: true
  1761. },
  1762. {
  1763. name: "Macro+",
  1764. height: math.unit(300, "meters")
  1765. },
  1766. {
  1767. name: "Macro++",
  1768. height: math.unit(2400, "meters")
  1769. },
  1770. {
  1771. name: "Megamacro",
  1772. height: math.unit(5167, "meters")
  1773. },
  1774. {
  1775. name: "Gigamacro",
  1776. height: math.unit(41769, "miles")
  1777. },
  1778. ]
  1779. ))
  1780. characterMakers.push(() => makeCharacter(
  1781. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1782. {
  1783. front: {
  1784. height: math.unit(7, "feet"),
  1785. weight: math.unit(100, "kg"),
  1786. name: "Front",
  1787. image: {
  1788. source: "./media/characters/adake/front-1.svg"
  1789. }
  1790. },
  1791. frontAlt: {
  1792. height: math.unit(7, "feet"),
  1793. weight: math.unit(100, "kg"),
  1794. name: "Front (Alt)",
  1795. image: {
  1796. source: "./media/characters/adake/front-2.svg",
  1797. extra: 1,
  1798. bottom: 0.01
  1799. }
  1800. },
  1801. back: {
  1802. height: math.unit(7, "feet"),
  1803. weight: math.unit(100, "kg"),
  1804. name: "Back",
  1805. image: {
  1806. source: "./media/characters/adake/back.svg",
  1807. }
  1808. },
  1809. kneel: {
  1810. height: math.unit(5.385, "feet"),
  1811. weight: math.unit(100, "kg"),
  1812. name: "Kneeling",
  1813. image: {
  1814. source: "./media/characters/adake/kneel.svg",
  1815. bottom: 0.052
  1816. }
  1817. },
  1818. },
  1819. [
  1820. {
  1821. name: "Normal",
  1822. height: math.unit(7, "feet"),
  1823. },
  1824. {
  1825. name: "Macro",
  1826. height: math.unit(78, "feet"),
  1827. default: true
  1828. },
  1829. {
  1830. name: "Macro+",
  1831. height: math.unit(300, "meters")
  1832. },
  1833. {
  1834. name: "Macro++",
  1835. height: math.unit(2400, "meters")
  1836. },
  1837. {
  1838. name: "Megamacro",
  1839. height: math.unit(5167, "meters")
  1840. },
  1841. {
  1842. name: "Gigamacro",
  1843. height: math.unit(41769, "miles")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(1.65, "meters"),
  1852. weight: math.unit(50, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/elijah/front.svg",
  1856. extra: 858 / 830,
  1857. bottom: 95.5 / 953.8559
  1858. }
  1859. },
  1860. back: {
  1861. height: math.unit(1.65, "meters"),
  1862. weight: math.unit(50, "kg"),
  1863. name: "Back",
  1864. image: {
  1865. source: "./media/characters/elijah/back.svg",
  1866. extra: 895 / 850,
  1867. bottom: 5.3 / 897.956
  1868. }
  1869. },
  1870. frontNsfw: {
  1871. height: math.unit(1.65, "meters"),
  1872. weight: math.unit(50, "kg"),
  1873. name: "Front (NSFW)",
  1874. image: {
  1875. source: "./media/characters/elijah/front-nsfw.svg",
  1876. extra: 858 / 830,
  1877. bottom: 95.5 / 953.8559
  1878. }
  1879. },
  1880. backNsfw: {
  1881. height: math.unit(1.65, "meters"),
  1882. weight: math.unit(50, "kg"),
  1883. name: "Back (NSFW)",
  1884. image: {
  1885. source: "./media/characters/elijah/back-nsfw.svg",
  1886. extra: 895 / 850,
  1887. bottom: 5.3 / 897.956
  1888. }
  1889. },
  1890. dick: {
  1891. height: math.unit(1, "feet"),
  1892. name: "Dick",
  1893. image: {
  1894. source: "./media/characters/elijah/dick.svg"
  1895. }
  1896. },
  1897. beakOpen: {
  1898. height: math.unit(1.25, "feet"),
  1899. name: "Beak (Open)",
  1900. image: {
  1901. source: "./media/characters/elijah/beak-open.svg"
  1902. }
  1903. },
  1904. beakShut: {
  1905. height: math.unit(1.25, "feet"),
  1906. name: "Beak (Shut)",
  1907. image: {
  1908. source: "./media/characters/elijah/beak-shut.svg"
  1909. }
  1910. },
  1911. footFlexing: {
  1912. height: math.unit(1.61, "feet"),
  1913. name: "Foot (Flexing)",
  1914. image: {
  1915. source: "./media/characters/elijah/foot-flexing.svg"
  1916. }
  1917. },
  1918. footStepping: {
  1919. height: math.unit(1.44, "feet"),
  1920. name: "Foot (Stepping)",
  1921. image: {
  1922. source: "./media/characters/elijah/foot-stepping.svg"
  1923. }
  1924. },
  1925. plantigradeLeg: {
  1926. height: math.unit(2.34, "feet"),
  1927. name: "Plantigrade Leg",
  1928. image: {
  1929. source: "./media/characters/elijah/plantigrade-leg.svg"
  1930. }
  1931. },
  1932. plantigradeFootLeft: {
  1933. height: math.unit(0.9, "feet"),
  1934. name: "Plantigrade Foot (Left)",
  1935. image: {
  1936. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1937. }
  1938. },
  1939. plantigradeFootRight: {
  1940. height: math.unit(0.9, "feet"),
  1941. name: "Plantigrade Foot (Right)",
  1942. image: {
  1943. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1944. }
  1945. },
  1946. },
  1947. [
  1948. {
  1949. name: "Normal",
  1950. height: math.unit(1.65, "meters")
  1951. },
  1952. {
  1953. name: "Macro",
  1954. height: math.unit(55, "meters"),
  1955. default: true
  1956. },
  1957. {
  1958. name: "Macro+",
  1959. height: math.unit(105, "meters")
  1960. },
  1961. ]
  1962. ))
  1963. characterMakers.push(() => makeCharacter(
  1964. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1965. {
  1966. front: {
  1967. height: math.unit(11, "feet"),
  1968. weight: math.unit(80, "kg"),
  1969. name: "Front",
  1970. image: {
  1971. source: "./media/characters/rai/front.svg",
  1972. extra: 1,
  1973. bottom: 0.03
  1974. }
  1975. },
  1976. side: {
  1977. height: math.unit(11, "feet"),
  1978. weight: math.unit(80, "kg"),
  1979. name: "Side",
  1980. image: {
  1981. source: "./media/characters/rai/side.svg"
  1982. }
  1983. },
  1984. back: {
  1985. height: math.unit(11, "feet"),
  1986. weight: math.unit(80, "lb"),
  1987. name: "Back",
  1988. image: {
  1989. source: "./media/characters/rai/back.svg",
  1990. extra: 1,
  1991. bottom: 0.01
  1992. }
  1993. },
  1994. feral: {
  1995. height: math.unit(11, "feet"),
  1996. weight: math.unit(800, "lb"),
  1997. name: "Feral",
  1998. image: {
  1999. source: "./media/characters/rai/feral.svg",
  2000. extra: 1050 / 659,
  2001. bottom: 0.07
  2002. }
  2003. },
  2004. dragon: {
  2005. height: math.unit(23, "feet"),
  2006. weight: math.unit(50000, "lb"),
  2007. name: "Dragon",
  2008. image: {
  2009. source: "./media/characters/rai/dragon.svg",
  2010. extra: 2498 / 2030,
  2011. bottom: 85.2 / 2584
  2012. }
  2013. },
  2014. maw: {
  2015. height: math.unit(6 / 3.81416, "feet"),
  2016. name: "Maw",
  2017. image: {
  2018. source: "./media/characters/rai/maw.svg"
  2019. }
  2020. },
  2021. },
  2022. [
  2023. {
  2024. name: "Normal",
  2025. height: math.unit(11, "feet")
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(302, "feet"),
  2030. default: true
  2031. },
  2032. ]
  2033. ))
  2034. characterMakers.push(() => makeCharacter(
  2035. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2036. {
  2037. frontDressed: {
  2038. height: math.unit(216, "feet"),
  2039. weight: math.unit(7000000, "lb"),
  2040. name: "Front (Dressed)",
  2041. image: {
  2042. source: "./media/characters/jazzy/front-dressed.svg",
  2043. extra: 2738 / 2651,
  2044. bottom: 41.8 / 2786
  2045. }
  2046. },
  2047. backDressed: {
  2048. height: math.unit(216, "feet"),
  2049. weight: math.unit(7000000, "lb"),
  2050. name: "Back (Dressed)",
  2051. image: {
  2052. source: "./media/characters/jazzy/back-dressed.svg",
  2053. extra: 2775 / 2673,
  2054. bottom: 36.8 / 2817
  2055. }
  2056. },
  2057. front: {
  2058. height: math.unit(216, "feet"),
  2059. weight: math.unit(7000000, "lb"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/jazzy/front.svg",
  2063. extra: 2738 / 2651,
  2064. bottom: 41.8 / 2786
  2065. }
  2066. },
  2067. back: {
  2068. height: math.unit(216, "feet"),
  2069. weight: math.unit(7000000, "lb"),
  2070. name: "Back",
  2071. image: {
  2072. source: "./media/characters/jazzy/back.svg",
  2073. extra: 2775 / 2673,
  2074. bottom: 36.8 / 2817
  2075. }
  2076. },
  2077. maw: {
  2078. height: math.unit(20, "feet"),
  2079. name: "Maw",
  2080. image: {
  2081. source: "./media/characters/jazzy/maw.svg"
  2082. }
  2083. },
  2084. paws: {
  2085. height: math.unit(27.5, "feet"),
  2086. name: "Paws",
  2087. image: {
  2088. source: "./media/characters/jazzy/paws.svg"
  2089. }
  2090. },
  2091. eye: {
  2092. height: math.unit(4.4, "feet"),
  2093. name: "Eye",
  2094. image: {
  2095. source: "./media/characters/jazzy/eye.svg"
  2096. }
  2097. },
  2098. droneOffense: {
  2099. height: math.unit(9.5, "inches"),
  2100. name: "Drone (Offense)",
  2101. image: {
  2102. source: "./media/characters/jazzy/drone-offense.svg"
  2103. }
  2104. },
  2105. droneRecon: {
  2106. height: math.unit(9.5, "inches"),
  2107. name: "Drone (Recon)",
  2108. image: {
  2109. source: "./media/characters/jazzy/drone-recon.svg"
  2110. }
  2111. },
  2112. droneDefense: {
  2113. height: math.unit(9.5, "inches"),
  2114. name: "Drone (Defense)",
  2115. image: {
  2116. source: "./media/characters/jazzy/drone-defense.svg"
  2117. }
  2118. },
  2119. },
  2120. [
  2121. {
  2122. name: "Macro",
  2123. height: math.unit(216, "feet"),
  2124. default: true
  2125. },
  2126. ]
  2127. ))
  2128. characterMakers.push(() => makeCharacter(
  2129. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2130. {
  2131. front: {
  2132. height: math.unit(7, "feet"),
  2133. weight: math.unit(80, "kg"),
  2134. name: "Front",
  2135. image: {
  2136. source: "./media/characters/flamm/front.svg",
  2137. extra: 1794 / 1677,
  2138. bottom: 31.7 / 1828.5
  2139. }
  2140. },
  2141. },
  2142. [
  2143. {
  2144. name: "Normal",
  2145. height: math.unit(9.5, "feet")
  2146. },
  2147. {
  2148. name: "Macro",
  2149. height: math.unit(200, "feet"),
  2150. default: true
  2151. },
  2152. ]
  2153. ))
  2154. characterMakers.push(() => makeCharacter(
  2155. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2156. {
  2157. front: {
  2158. height: math.unit(7, "feet"),
  2159. weight: math.unit(80, "kg"),
  2160. name: "Front",
  2161. image: {
  2162. source: "./media/characters/zephiro/front.svg",
  2163. extra: 2309 / 2162,
  2164. bottom: 0.069
  2165. }
  2166. },
  2167. side: {
  2168. height: math.unit(7, "feet"),
  2169. weight: math.unit(80, "kg"),
  2170. name: "Side",
  2171. image: {
  2172. source: "./media/characters/zephiro/side.svg",
  2173. extra: 2403 / 2279,
  2174. bottom: 0.015
  2175. }
  2176. },
  2177. back: {
  2178. height: math.unit(7, "feet"),
  2179. weight: math.unit(80, "kg"),
  2180. name: "Back",
  2181. image: {
  2182. source: "./media/characters/zephiro/back.svg",
  2183. extra: 2373 / 2244,
  2184. bottom: 0.013
  2185. }
  2186. },
  2187. },
  2188. [
  2189. {
  2190. name: "Micro",
  2191. height: math.unit(3, "inches")
  2192. },
  2193. {
  2194. name: "Normal",
  2195. height: math.unit(5 + 3 / 12, "feet"),
  2196. default: true
  2197. },
  2198. {
  2199. name: "Macro",
  2200. height: math.unit(118, "feet")
  2201. },
  2202. ]
  2203. ))
  2204. characterMakers.push(() => makeCharacter(
  2205. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2206. {
  2207. front: {
  2208. height: math.unit(5, "feet"),
  2209. weight: math.unit(90, "kg"),
  2210. name: "Front",
  2211. image: {
  2212. source: "./media/characters/fory/front.svg",
  2213. extra: 2862 / 2674,
  2214. bottom: 180 / 3043.8
  2215. }
  2216. },
  2217. back: {
  2218. height: math.unit(5, "feet"),
  2219. weight: math.unit(90, "kg"),
  2220. name: "Back",
  2221. image: {
  2222. source: "./media/characters/fory/back.svg",
  2223. extra: 2962 / 2791,
  2224. bottom: 106 / 3071.8
  2225. }
  2226. },
  2227. foot: {
  2228. height: math.unit(2.14, "feet"),
  2229. name: "Foot",
  2230. image: {
  2231. source: "./media/characters/fory/foot.svg"
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(5, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(50, "feet"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(10, "miles")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(5, "earths")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(7, "feet"),
  2260. weight: math.unit(90, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/kurrikage/front.svg",
  2264. extra: 1,
  2265. bottom: 0.035
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(90, "lb"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/kurrikage/back.svg"
  2274. }
  2275. },
  2276. paw: {
  2277. height: math.unit(1.5, "feet"),
  2278. name: "Paw",
  2279. image: {
  2280. source: "./media/characters/kurrikage/paw.svg"
  2281. }
  2282. },
  2283. staff: {
  2284. height: math.unit(6.7, "feet"),
  2285. name: "Staff",
  2286. image: {
  2287. source: "./media/characters/kurrikage/staff.svg"
  2288. }
  2289. },
  2290. peek: {
  2291. height: math.unit(1.05, "feet"),
  2292. name: "Peeking",
  2293. image: {
  2294. source: "./media/characters/kurrikage/peek.svg",
  2295. bottom: 0.08
  2296. }
  2297. },
  2298. },
  2299. [
  2300. {
  2301. name: "Normal",
  2302. height: math.unit(12, "feet"),
  2303. default: true
  2304. },
  2305. {
  2306. name: "Big",
  2307. height: math.unit(20, "feet")
  2308. },
  2309. {
  2310. name: "Macro",
  2311. height: math.unit(500, "feet")
  2312. },
  2313. {
  2314. name: "Megamacro",
  2315. height: math.unit(20, "miles")
  2316. },
  2317. ]
  2318. ))
  2319. characterMakers.push(() => makeCharacter(
  2320. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2321. {
  2322. front: {
  2323. height: math.unit(6, "feet"),
  2324. weight: math.unit(75, "kg"),
  2325. name: "Front",
  2326. image: {
  2327. source: "./media/characters/shingo/front.svg",
  2328. extra: 3511 / 3338,
  2329. bottom: 0.005
  2330. }
  2331. },
  2332. paw: {
  2333. height: math.unit(1, "feet"),
  2334. name: "Paw",
  2335. image: {
  2336. source: "./media/characters/shingo/paw.svg"
  2337. }
  2338. },
  2339. },
  2340. [
  2341. {
  2342. name: "Micro",
  2343. height: math.unit(4, "inches")
  2344. },
  2345. {
  2346. name: "Normal",
  2347. height: math.unit(6, "feet"),
  2348. default: true
  2349. },
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(108, "feet")
  2353. }
  2354. ]
  2355. ))
  2356. characterMakers.push(() => makeCharacter(
  2357. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2358. {
  2359. side: {
  2360. height: math.unit(6, "feet"),
  2361. weight: math.unit(75, "kg"),
  2362. name: "Side",
  2363. image: {
  2364. source: "./media/characters/aigey/side.svg"
  2365. }
  2366. },
  2367. },
  2368. [
  2369. {
  2370. name: "Macro",
  2371. height: math.unit(200, "feet"),
  2372. default: true
  2373. },
  2374. {
  2375. name: "Megamacro",
  2376. height: math.unit(100, "miles")
  2377. },
  2378. ]
  2379. )
  2380. )
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2383. {
  2384. front: {
  2385. height: math.unit(5 + 5 / 12, "feet"),
  2386. weight: math.unit(75, "kg"),
  2387. name: "Front",
  2388. image: {
  2389. source: "./media/characters/natasha/front.svg",
  2390. extra: 859 / 824,
  2391. bottom: 23 / 879.6
  2392. }
  2393. },
  2394. frontNsfw: {
  2395. height: math.unit(5 + 5 / 12, "feet"),
  2396. weight: math.unit(75, "kg"),
  2397. name: "Front (NSFW)",
  2398. image: {
  2399. source: "./media/characters/natasha/front-nsfw.svg",
  2400. extra: 859 / 824,
  2401. bottom: 23 / 879.6
  2402. }
  2403. },
  2404. frontErect: {
  2405. height: math.unit(5 + 5 / 12, "feet"),
  2406. weight: math.unit(75, "kg"),
  2407. name: "Front (Erect)",
  2408. image: {
  2409. source: "./media/characters/natasha/front-erect.svg",
  2410. extra: 859 / 824,
  2411. bottom: 23 / 879.6
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(5 + 5 / 12, "feet"),
  2416. weight: math.unit(75, "kg"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/natasha/back.svg",
  2420. extra: 887.9 / 852.6,
  2421. bottom: 9.7 / 896.4
  2422. }
  2423. },
  2424. backAlt: {
  2425. height: math.unit(5 + 5 / 12, "feet"),
  2426. weight: math.unit(75, "kg"),
  2427. name: "Back (Alt)",
  2428. image: {
  2429. source: "./media/characters/natasha/back-alt.svg",
  2430. extra: 1236.7 / 1192,
  2431. bottom: 22.3 / 1258.2
  2432. }
  2433. },
  2434. dick: {
  2435. height: math.unit(1.772, "feet"),
  2436. name: "Dick",
  2437. image: {
  2438. source: "./media/characters/natasha/dick.svg"
  2439. }
  2440. },
  2441. paw: {
  2442. height: math.unit(0.250, "meters"),
  2443. name: "Paw",
  2444. image: {
  2445. source: "./media/characters/natasha/paw.svg"
  2446. }
  2447. },
  2448. },
  2449. [
  2450. {
  2451. name: "Normal",
  2452. height: math.unit(5 + 5 / 12, "feet")
  2453. },
  2454. {
  2455. name: "Large",
  2456. height: math.unit(12, "feet")
  2457. },
  2458. {
  2459. name: "Macro",
  2460. height: math.unit(100, "feet"),
  2461. default: true
  2462. },
  2463. {
  2464. name: "Macro+",
  2465. height: math.unit(260, "feet")
  2466. },
  2467. {
  2468. name: "Macro++",
  2469. height: math.unit(1, "mile")
  2470. },
  2471. ]
  2472. ))
  2473. characterMakers.push(() => makeCharacter(
  2474. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2475. {
  2476. front: {
  2477. height: math.unit(6, "feet"),
  2478. weight: math.unit(75, "kg"),
  2479. name: "Front",
  2480. image: {
  2481. source: "./media/characters/malik/front.svg"
  2482. }
  2483. },
  2484. side: {
  2485. height: math.unit(6, "feet"),
  2486. weight: math.unit(75, "kg"),
  2487. name: "Side",
  2488. image: {
  2489. source: "./media/characters/malik/side.svg",
  2490. extra: 1.1539
  2491. }
  2492. },
  2493. back: {
  2494. height: math.unit(6, "feet"),
  2495. weight: math.unit(75, "kg"),
  2496. name: "Back",
  2497. image: {
  2498. source: "./media/characters/malik/back.svg"
  2499. }
  2500. },
  2501. },
  2502. [
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(156, "feet"),
  2506. default: true
  2507. },
  2508. {
  2509. name: "Macro+",
  2510. height: math.unit(1188, "feet")
  2511. },
  2512. ]
  2513. ))
  2514. characterMakers.push(() => makeCharacter(
  2515. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2516. {
  2517. front: {
  2518. height: math.unit(6, "feet"),
  2519. weight: math.unit(75, "kg"),
  2520. name: "Front",
  2521. image: {
  2522. source: "./media/characters/sefer/front.svg",
  2523. extra: 848 / 659,
  2524. bottom: 28.3 / 876.442
  2525. }
  2526. },
  2527. back: {
  2528. height: math.unit(6, "feet"),
  2529. weight: math.unit(75, "kg"),
  2530. name: "Back",
  2531. image: {
  2532. source: "./media/characters/sefer/back.svg",
  2533. extra: 864 / 695,
  2534. bottom: 10 / 871
  2535. }
  2536. },
  2537. frontDressed: {
  2538. height: math.unit(6, "feet"),
  2539. weight: math.unit(75, "kg"),
  2540. name: "Front (Dressed)",
  2541. image: {
  2542. source: "./media/characters/sefer/front-dressed.svg",
  2543. extra: 839 / 653,
  2544. bottom: 37.6 / 878
  2545. }
  2546. },
  2547. },
  2548. [
  2549. {
  2550. name: "Normal",
  2551. height: math.unit(6, "feet"),
  2552. default: true
  2553. },
  2554. ]
  2555. ))
  2556. characterMakers.push(() => makeCharacter(
  2557. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2558. {
  2559. body: {
  2560. height: math.unit(2.2428, "meter"),
  2561. weight: math.unit(124.738, "kg"),
  2562. name: "Body",
  2563. image: {
  2564. extra: 1225 / 1050,
  2565. source: "./media/characters/north/front.svg"
  2566. }
  2567. }
  2568. },
  2569. [
  2570. {
  2571. name: "Micro",
  2572. height: math.unit(4, "inches")
  2573. },
  2574. {
  2575. name: "Macro",
  2576. height: math.unit(63, "meters")
  2577. },
  2578. {
  2579. name: "Megamacro",
  2580. height: math.unit(101, "miles"),
  2581. default: true
  2582. }
  2583. ]
  2584. ))
  2585. characterMakers.push(() => makeCharacter(
  2586. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2587. {
  2588. angled: {
  2589. height: math.unit(4, "meter"),
  2590. weight: math.unit(150, "kg"),
  2591. name: "Angled",
  2592. image: {
  2593. source: "./media/characters/talan/angled-sfw.svg",
  2594. bottom: 29 / 3734
  2595. }
  2596. },
  2597. angledNsfw: {
  2598. height: math.unit(4, "meter"),
  2599. weight: math.unit(150, "kg"),
  2600. name: "Angled (NSFW)",
  2601. image: {
  2602. source: "./media/characters/talan/angled-nsfw.svg",
  2603. bottom: 29 / 3734
  2604. }
  2605. },
  2606. frontNsfw: {
  2607. height: math.unit(4, "meter"),
  2608. weight: math.unit(150, "kg"),
  2609. name: "Front (NSFW)",
  2610. image: {
  2611. source: "./media/characters/talan/front-nsfw.svg",
  2612. bottom: 29 / 3734
  2613. }
  2614. },
  2615. sideNsfw: {
  2616. height: math.unit(4, "meter"),
  2617. weight: math.unit(150, "kg"),
  2618. name: "Side (NSFW)",
  2619. image: {
  2620. source: "./media/characters/talan/side-nsfw.svg",
  2621. bottom: 29 / 3734
  2622. }
  2623. },
  2624. back: {
  2625. height: math.unit(4, "meter"),
  2626. weight: math.unit(150, "kg"),
  2627. name: "Back",
  2628. image: {
  2629. source: "./media/characters/talan/back.svg"
  2630. }
  2631. },
  2632. dickBottom: {
  2633. height: math.unit(0.621, "meter"),
  2634. name: "Dick (Bottom)",
  2635. image: {
  2636. source: "./media/characters/talan/dick-bottom.svg"
  2637. }
  2638. },
  2639. dickTop: {
  2640. height: math.unit(0.621, "meter"),
  2641. name: "Dick (Top)",
  2642. image: {
  2643. source: "./media/characters/talan/dick-top.svg"
  2644. }
  2645. },
  2646. dickSide: {
  2647. height: math.unit(0.305, "meter"),
  2648. name: "Dick (Side)",
  2649. image: {
  2650. source: "./media/characters/talan/dick-side.svg"
  2651. }
  2652. },
  2653. dickFront: {
  2654. height: math.unit(0.305, "meter"),
  2655. name: "Dick (Front)",
  2656. image: {
  2657. source: "./media/characters/talan/dick-front.svg"
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Normal",
  2664. height: math.unit(4, "meters")
  2665. },
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(100, "meters")
  2669. },
  2670. {
  2671. name: "Megamacro",
  2672. height: math.unit(2, "miles"),
  2673. default: true
  2674. },
  2675. {
  2676. name: "Gigamacro",
  2677. height: math.unit(5000, "miles")
  2678. },
  2679. {
  2680. name: "Teramacro",
  2681. height: math.unit(100, "parsecs")
  2682. }
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(2, "meter"),
  2690. weight: math.unit(90, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/gael'rathus/front.svg"
  2694. }
  2695. },
  2696. frontAlt: {
  2697. height: math.unit(2, "meter"),
  2698. weight: math.unit(90, "kg"),
  2699. name: "Front (alt)",
  2700. image: {
  2701. source: "./media/characters/gael'rathus/front-alt.svg"
  2702. }
  2703. },
  2704. frontAlt2: {
  2705. height: math.unit(2, "meter"),
  2706. weight: math.unit(90, "kg"),
  2707. name: "Front (alt 2)",
  2708. image: {
  2709. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2710. }
  2711. }
  2712. },
  2713. [
  2714. {
  2715. name: "Normal",
  2716. height: math.unit(9, "feet"),
  2717. default: true
  2718. },
  2719. {
  2720. name: "Large",
  2721. height: math.unit(25, "feet")
  2722. },
  2723. {
  2724. name: "Macro",
  2725. height: math.unit(0.25, "miles")
  2726. },
  2727. {
  2728. name: "Megamacro",
  2729. height: math.unit(10, "miles")
  2730. }
  2731. ]
  2732. ))
  2733. characterMakers.push(() => makeCharacter(
  2734. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2735. {
  2736. side: {
  2737. height: math.unit(2, "meter"),
  2738. weight: math.unit(140, "kg"),
  2739. name: "Side",
  2740. image: {
  2741. source: "./media/characters/sosha/side.svg",
  2742. bottom: 0.042
  2743. }
  2744. },
  2745. },
  2746. [
  2747. {
  2748. name: "Normal",
  2749. height: math.unit(12, "feet"),
  2750. default: true
  2751. }
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2756. {
  2757. side: {
  2758. height: math.unit(5 + 5 / 12, "feet"),
  2759. weight: math.unit(170, "kg"),
  2760. name: "Side",
  2761. image: {
  2762. source: "./media/characters/runnola/side.svg",
  2763. extra: 741 / 448,
  2764. bottom: 0.05
  2765. }
  2766. },
  2767. },
  2768. [
  2769. {
  2770. name: "Small",
  2771. height: math.unit(3, "feet")
  2772. },
  2773. {
  2774. name: "Normal",
  2775. height: math.unit(5 + 5 / 12, "feet"),
  2776. default: true
  2777. },
  2778. {
  2779. name: "Big",
  2780. height: math.unit(10, "feet")
  2781. },
  2782. ]
  2783. ))
  2784. characterMakers.push(() => makeCharacter(
  2785. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2786. {
  2787. front: {
  2788. height: math.unit(2, "meter"),
  2789. weight: math.unit(50, "kg"),
  2790. name: "Front",
  2791. image: {
  2792. source: "./media/characters/kurribird/front.svg",
  2793. bottom: 0.015
  2794. }
  2795. },
  2796. frontAlt: {
  2797. height: math.unit(1.5, "meter"),
  2798. weight: math.unit(50, "kg"),
  2799. name: "Front (Alt)",
  2800. image: {
  2801. source: "./media/characters/kurribird/front-alt.svg",
  2802. extra: 1.45
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Normal",
  2809. height: math.unit(7, "feet")
  2810. },
  2811. {
  2812. name: "Big",
  2813. height: math.unit(12, "feet"),
  2814. default: true
  2815. },
  2816. {
  2817. name: "Macro",
  2818. height: math.unit(1500, "feet")
  2819. },
  2820. {
  2821. name: "Megamacro",
  2822. height: math.unit(2, "miles")
  2823. }
  2824. ]
  2825. ))
  2826. characterMakers.push(() => makeCharacter(
  2827. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2828. {
  2829. front: {
  2830. height: math.unit(2, "meter"),
  2831. weight: math.unit(80, "kg"),
  2832. name: "Front",
  2833. image: {
  2834. source: "./media/characters/elbial/front.svg",
  2835. extra: 1643 / 1556,
  2836. bottom: 60.2 / 1696
  2837. }
  2838. },
  2839. side: {
  2840. height: math.unit(2, "meter"),
  2841. weight: math.unit(80, "kg"),
  2842. name: "Side",
  2843. image: {
  2844. source: "./media/characters/elbial/side.svg",
  2845. extra: 1630 / 1565,
  2846. bottom: 71.5 / 1697
  2847. }
  2848. },
  2849. back: {
  2850. height: math.unit(2, "meter"),
  2851. weight: math.unit(80, "kg"),
  2852. name: "Back",
  2853. image: {
  2854. source: "./media/characters/elbial/back.svg",
  2855. extra: 1668 / 1595,
  2856. bottom: 5.6 / 1672
  2857. }
  2858. },
  2859. frontDressed: {
  2860. height: math.unit(2, "meter"),
  2861. weight: math.unit(80, "kg"),
  2862. name: "Front (Dressed)",
  2863. image: {
  2864. source: "./media/characters/elbial/front-dressed.svg",
  2865. extra: 1653 / 1584,
  2866. bottom: 57 / 1708
  2867. }
  2868. },
  2869. genitals: {
  2870. height: math.unit(2 / 3.367, "meter"),
  2871. name: "Genitals",
  2872. image: {
  2873. source: "./media/characters/elbial/genitals.svg"
  2874. }
  2875. },
  2876. },
  2877. [
  2878. {
  2879. name: "Large",
  2880. height: math.unit(100, "feet")
  2881. },
  2882. {
  2883. name: "Macro",
  2884. height: math.unit(500, "feet"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(10, "miles")
  2890. },
  2891. {
  2892. name: "Gigamacro",
  2893. height: math.unit(25000, "miles")
  2894. },
  2895. {
  2896. name: "Full-Size",
  2897. height: math.unit(8000000, "gigaparsecs")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(60, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/noah/front.svg"
  2910. }
  2911. },
  2912. talons: {
  2913. height: math.unit(0.315, "meter"),
  2914. name: "Talons",
  2915. image: {
  2916. source: "./media/characters/noah/talons.svg"
  2917. }
  2918. }
  2919. },
  2920. [
  2921. {
  2922. name: "Large",
  2923. height: math.unit(50, "feet")
  2924. },
  2925. {
  2926. name: "Macro",
  2927. height: math.unit(750, "feet"),
  2928. default: true
  2929. },
  2930. {
  2931. name: "Megamacro",
  2932. height: math.unit(50, "miles")
  2933. },
  2934. {
  2935. name: "Gigamacro",
  2936. height: math.unit(100000, "miles")
  2937. },
  2938. {
  2939. name: "Full-Size",
  2940. height: math.unit(3000000000, "miles")
  2941. }
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2946. {
  2947. front: {
  2948. height: math.unit(2, "meter"),
  2949. weight: math.unit(80, "kg"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/natalya/front.svg"
  2953. }
  2954. },
  2955. back: {
  2956. height: math.unit(2, "meter"),
  2957. weight: math.unit(80, "kg"),
  2958. name: "Back",
  2959. image: {
  2960. source: "./media/characters/natalya/back.svg"
  2961. }
  2962. }
  2963. },
  2964. [
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(150, "feet"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Megamacro",
  2972. height: math.unit(5, "miles")
  2973. },
  2974. {
  2975. name: "Full-Size",
  2976. height: math.unit(600, "kiloparsecs")
  2977. }
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(2, "meter"),
  2985. weight: math.unit(50, "kg"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/erestrebah/front.svg",
  2989. extra: 208 / 193,
  2990. bottom: 0.055
  2991. }
  2992. },
  2993. back: {
  2994. height: math.unit(2, "meter"),
  2995. weight: math.unit(50, "kg"),
  2996. name: "Back",
  2997. image: {
  2998. source: "./media/characters/erestrebah/back.svg",
  2999. extra: 1.3
  3000. }
  3001. }
  3002. },
  3003. [
  3004. {
  3005. name: "Normal",
  3006. height: math.unit(10, "feet")
  3007. },
  3008. {
  3009. name: "Large",
  3010. height: math.unit(50, "feet"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Macro",
  3015. height: math.unit(300, "feet")
  3016. },
  3017. {
  3018. name: "Macro+",
  3019. height: math.unit(750, "feet")
  3020. },
  3021. {
  3022. name: "Megamacro",
  3023. height: math.unit(3, "miles")
  3024. }
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(80, "kg"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/jennifer/front.svg",
  3036. bottom: 0.11,
  3037. extra: 1.16
  3038. }
  3039. },
  3040. frontAlt: {
  3041. height: math.unit(2, "meter"),
  3042. weight: math.unit(80, "kg"),
  3043. name: "Front (Alt)",
  3044. image: {
  3045. source: "./media/characters/jennifer/front-alt.svg"
  3046. }
  3047. }
  3048. },
  3049. [
  3050. {
  3051. name: "Canon Height",
  3052. height: math.unit(120, "feet"),
  3053. default: true
  3054. },
  3055. {
  3056. name: "Macro+",
  3057. height: math.unit(300, "feet")
  3058. },
  3059. {
  3060. name: "Megamacro",
  3061. height: math.unit(20000, "feet")
  3062. }
  3063. ]
  3064. ))
  3065. characterMakers.push(() => makeCharacter(
  3066. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3067. {
  3068. front: {
  3069. height: math.unit(2, "meter"),
  3070. weight: math.unit(50, "kg"),
  3071. name: "Front",
  3072. image: {
  3073. source: "./media/characters/kalista/front.svg",
  3074. extra: 1947 / 1700,
  3075. bottom: 76.6 / 1412.98
  3076. }
  3077. },
  3078. back: {
  3079. height: math.unit(2, "meter"),
  3080. weight: math.unit(50, "kg"),
  3081. name: "Back",
  3082. image: {
  3083. source: "./media/characters/kalista/back.svg",
  3084. extra: 1366 / 1156,
  3085. bottom: 33.9 / 1362.78
  3086. }
  3087. }
  3088. },
  3089. [
  3090. {
  3091. name: "Uncomfortably Small",
  3092. height: math.unit(10, "feet")
  3093. },
  3094. {
  3095. name: "Small",
  3096. height: math.unit(30, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(100, "feet"),
  3101. default: true
  3102. },
  3103. {
  3104. name: "Macro+",
  3105. height: math.unit(2000, "feet")
  3106. },
  3107. {
  3108. name: "True Form",
  3109. height: math.unit(8924, "miles")
  3110. }
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(2, "meter"),
  3118. weight: math.unit(120, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/ggv/front.svg"
  3122. }
  3123. },
  3124. side: {
  3125. height: math.unit(2, "meter"),
  3126. weight: math.unit(120, "kg"),
  3127. name: "Side",
  3128. image: {
  3129. source: "./media/characters/ggv/side.svg"
  3130. }
  3131. }
  3132. },
  3133. [
  3134. {
  3135. name: "Extremely Puny",
  3136. height: math.unit(9 + 5 / 12, "feet")
  3137. },
  3138. {
  3139. name: "Horribly Small",
  3140. height: math.unit(47.7, "miles"),
  3141. default: true
  3142. },
  3143. {
  3144. name: "Reasonably Sized",
  3145. height: math.unit(25000, "parsecs")
  3146. },
  3147. {
  3148. name: "Slightly Uncompressed",
  3149. height: math.unit(7.77e31, "parsecs")
  3150. },
  3151. {
  3152. name: "Omniversal",
  3153. height: math.unit(1e300, "meters")
  3154. },
  3155. ]
  3156. ))
  3157. characterMakers.push(() => makeCharacter(
  3158. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3159. {
  3160. front: {
  3161. height: math.unit(2, "meter"),
  3162. weight: math.unit(75, "lb"),
  3163. name: "Front",
  3164. image: {
  3165. source: "./media/characters/napalm/front.svg"
  3166. }
  3167. },
  3168. back: {
  3169. height: math.unit(2, "meter"),
  3170. weight: math.unit(75, "lb"),
  3171. name: "Back",
  3172. image: {
  3173. source: "./media/characters/napalm/back.svg"
  3174. }
  3175. }
  3176. },
  3177. [
  3178. {
  3179. name: "Standard",
  3180. height: math.unit(55, "feet"),
  3181. default: true
  3182. }
  3183. ]
  3184. ))
  3185. characterMakers.push(() => makeCharacter(
  3186. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3187. {
  3188. front: {
  3189. height: math.unit(7 + 5 / 6, "feet"),
  3190. weight: math.unit(325, "lb"),
  3191. name: "Front",
  3192. image: {
  3193. source: "./media/characters/asana/front.svg",
  3194. extra: 1133 / 1060,
  3195. bottom: 15.2 / 1148.6
  3196. }
  3197. },
  3198. back: {
  3199. height: math.unit(7 + 5 / 6, "feet"),
  3200. weight: math.unit(325, "lb"),
  3201. name: "Back",
  3202. image: {
  3203. source: "./media/characters/asana/back.svg",
  3204. extra: 1114 / 1043,
  3205. bottom: 5 / 1120
  3206. }
  3207. },
  3208. dressedDark: {
  3209. height: math.unit(7 + 5 / 6, "feet"),
  3210. weight: math.unit(325, "lb"),
  3211. name: "Dressed (Dark)",
  3212. image: {
  3213. source: "./media/characters/asana/dressed-dark.svg",
  3214. extra: 1133 / 1060,
  3215. bottom: 15.2 / 1148.6
  3216. }
  3217. },
  3218. dressedLight: {
  3219. height: math.unit(7 + 5 / 6, "feet"),
  3220. weight: math.unit(325, "lb"),
  3221. name: "Dressed (Light)",
  3222. image: {
  3223. source: "./media/characters/asana/dressed-light.svg",
  3224. extra: 1133 / 1060,
  3225. bottom: 15.2 / 1148.6
  3226. }
  3227. },
  3228. },
  3229. [
  3230. {
  3231. name: "Standard",
  3232. height: math.unit(7 + 5 / 6, "feet"),
  3233. default: true
  3234. },
  3235. {
  3236. name: "Large",
  3237. height: math.unit(10, "meters")
  3238. },
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(2500, "meters")
  3242. },
  3243. {
  3244. name: "Megamacro",
  3245. height: math.unit(5e6, "meters")
  3246. },
  3247. {
  3248. name: "Examacro",
  3249. height: math.unit(5e12, "lightyears")
  3250. },
  3251. {
  3252. name: "Max Size",
  3253. height: math.unit(1e31, "lightyears")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(60, "kg"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/ebony/front.svg",
  3266. bottom: 0.03,
  3267. extra: 1045 / 810 + 0.03
  3268. }
  3269. },
  3270. side: {
  3271. height: math.unit(2, "meter"),
  3272. weight: math.unit(60, "kg"),
  3273. name: "Side",
  3274. image: {
  3275. source: "./media/characters/ebony/side.svg",
  3276. bottom: 0.03,
  3277. extra: 1045 / 810 + 0.03
  3278. }
  3279. },
  3280. back: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(60, "kg"),
  3283. name: "Back",
  3284. image: {
  3285. source: "./media/characters/ebony/back.svg",
  3286. bottom: 0.01,
  3287. extra: 1045 / 810 + 0.01
  3288. }
  3289. },
  3290. },
  3291. [
  3292. // TODO check why I did this lol
  3293. {
  3294. name: "Standard",
  3295. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3296. default: true
  3297. },
  3298. {
  3299. name: "Macro",
  3300. height: math.unit(200, "feet")
  3301. },
  3302. {
  3303. name: "Gigamacro",
  3304. height: math.unit(13000, "km")
  3305. }
  3306. ]
  3307. ))
  3308. characterMakers.push(() => makeCharacter(
  3309. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3310. {
  3311. front: {
  3312. height: math.unit(6, "feet"),
  3313. weight: math.unit(175, "lb"),
  3314. name: "Front",
  3315. image: {
  3316. source: "./media/characters/mountain/front.svg",
  3317. extra: 972 / 955,
  3318. bottom: 64 / 1036.6
  3319. }
  3320. },
  3321. back: {
  3322. height: math.unit(6, "feet"),
  3323. weight: math.unit(175, "lb"),
  3324. name: "Back",
  3325. image: {
  3326. source: "./media/characters/mountain/back.svg",
  3327. extra: 970 / 950,
  3328. bottom: 28.25 / 999
  3329. }
  3330. },
  3331. },
  3332. [
  3333. {
  3334. name: "Large",
  3335. height: math.unit(20, "meters")
  3336. },
  3337. {
  3338. name: "Macro",
  3339. height: math.unit(300, "meters")
  3340. },
  3341. {
  3342. name: "Gigamacro",
  3343. height: math.unit(10000, "km"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Examacro",
  3348. height: math.unit(10e9, "lightyears")
  3349. }
  3350. ]
  3351. ))
  3352. characterMakers.push(() => makeCharacter(
  3353. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3354. {
  3355. front: {
  3356. height: math.unit(8, "feet"),
  3357. weight: math.unit(500, "lb"),
  3358. name: "Front",
  3359. image: {
  3360. source: "./media/characters/rick/front.svg"
  3361. }
  3362. }
  3363. },
  3364. [
  3365. {
  3366. name: "Normal",
  3367. height: math.unit(8, "feet"),
  3368. default: true
  3369. },
  3370. {
  3371. name: "Macro",
  3372. height: math.unit(5, "km")
  3373. }
  3374. ]
  3375. ))
  3376. characterMakers.push(() => makeCharacter(
  3377. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3378. {
  3379. front: {
  3380. height: math.unit(8, "feet"),
  3381. weight: math.unit(120, "lb"),
  3382. name: "Front",
  3383. image: {
  3384. source: "./media/characters/ona/front.svg"
  3385. }
  3386. },
  3387. frontAlt: {
  3388. height: math.unit(8, "feet"),
  3389. weight: math.unit(120, "lb"),
  3390. name: "Front (Alt)",
  3391. image: {
  3392. source: "./media/characters/ona/front-alt.svg"
  3393. }
  3394. },
  3395. back: {
  3396. height: math.unit(8, "feet"),
  3397. weight: math.unit(120, "lb"),
  3398. name: "Back",
  3399. image: {
  3400. source: "./media/characters/ona/back.svg"
  3401. }
  3402. },
  3403. foot: {
  3404. height: math.unit(1.1, "feet"),
  3405. name: "Foot",
  3406. image: {
  3407. source: "./media/characters/ona/foot.svg"
  3408. }
  3409. }
  3410. },
  3411. [
  3412. {
  3413. name: "Megamacro",
  3414. height: math.unit(70, "km"),
  3415. default: true
  3416. },
  3417. {
  3418. name: "Gigamacro",
  3419. height: math.unit(681818, "miles")
  3420. },
  3421. {
  3422. name: "Examacro",
  3423. height: math.unit(3800000, "lightyears")
  3424. },
  3425. ]
  3426. ))
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3429. {
  3430. front: {
  3431. height: math.unit(12, "feet"),
  3432. weight: math.unit(3000, "lb"),
  3433. name: "Front",
  3434. image: {
  3435. source: "./media/characters/mech/front.svg",
  3436. extra: 2900/2770,
  3437. bottom: 110/3010
  3438. }
  3439. },
  3440. back: {
  3441. height: math.unit(12, "feet"),
  3442. weight: math.unit(3000, "lb"),
  3443. name: "Back",
  3444. image: {
  3445. source: "./media/characters/mech/back.svg",
  3446. extra: 3011/2890,
  3447. bottom: 94/3105
  3448. }
  3449. },
  3450. maw: {
  3451. height: math.unit(3.07, "feet"),
  3452. name: "Maw",
  3453. image: {
  3454. source: "./media/characters/mech/maw.svg"
  3455. }
  3456. },
  3457. head: {
  3458. height: math.unit(2.82, "feet"),
  3459. name: "Head",
  3460. image: {
  3461. source: "./media/characters/mech/head.svg"
  3462. }
  3463. },
  3464. dick: {
  3465. height: math.unit(1.43, "feet"),
  3466. name: "Dick",
  3467. image: {
  3468. source: "./media/characters/mech/dick.svg"
  3469. }
  3470. },
  3471. },
  3472. [
  3473. {
  3474. name: "Normal",
  3475. height: math.unit(12, "feet")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(300, "feet"),
  3480. default: true
  3481. },
  3482. {
  3483. name: "Macro+",
  3484. height: math.unit(1500, "feet")
  3485. },
  3486. ]
  3487. ))
  3488. characterMakers.push(() => makeCharacter(
  3489. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3490. {
  3491. front: {
  3492. height: math.unit(1.3, "meter"),
  3493. weight: math.unit(30, "kg"),
  3494. name: "Front",
  3495. image: {
  3496. source: "./media/characters/gregory/front.svg",
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(1.3, "meter"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(20, "meter")
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(2.8, "meter"),
  3517. weight: math.unit(200, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/elory/front.svg",
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(2.8, "meter"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(38, "meter")
  3533. }
  3534. ]
  3535. ))
  3536. characterMakers.push(() => makeCharacter(
  3537. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3538. {
  3539. front: {
  3540. height: math.unit(470, "feet"),
  3541. weight: math.unit(924, "tons"),
  3542. name: "Front",
  3543. image: {
  3544. source: "./media/characters/angelpatamon/front.svg",
  3545. }
  3546. }
  3547. },
  3548. [
  3549. {
  3550. name: "Normal",
  3551. height: math.unit(470, "feet"),
  3552. default: true
  3553. },
  3554. {
  3555. name: "Deity Size I",
  3556. height: math.unit(28651.2, "km")
  3557. },
  3558. {
  3559. name: "Deity Size II",
  3560. height: math.unit(171907.2, "km")
  3561. }
  3562. ]
  3563. ))
  3564. characterMakers.push(() => makeCharacter(
  3565. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3566. {
  3567. side: {
  3568. height: math.unit(7.2, "meter"),
  3569. weight: math.unit(8.2, "tons"),
  3570. name: "Side",
  3571. image: {
  3572. source: "./media/characters/cryae/side.svg",
  3573. extra: 3500 / 1500
  3574. }
  3575. }
  3576. },
  3577. [
  3578. {
  3579. name: "Normal",
  3580. height: math.unit(7.2, "meter"),
  3581. default: true
  3582. }
  3583. ]
  3584. ))
  3585. characterMakers.push(() => makeCharacter(
  3586. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3587. {
  3588. front: {
  3589. height: math.unit(6, "feet"),
  3590. weight: math.unit(175, "lb"),
  3591. name: "Front",
  3592. image: {
  3593. source: "./media/characters/xera/front.svg",
  3594. extra: 2377 / 1972,
  3595. bottom: 75.5 / 2452
  3596. }
  3597. },
  3598. side: {
  3599. height: math.unit(6, "feet"),
  3600. weight: math.unit(175, "lb"),
  3601. name: "Side",
  3602. image: {
  3603. source: "./media/characters/xera/side.svg",
  3604. extra: 2345 / 2019,
  3605. bottom: 39.7 / 2384
  3606. }
  3607. },
  3608. back: {
  3609. height: math.unit(6, "feet"),
  3610. weight: math.unit(175, "lb"),
  3611. name: "Back",
  3612. image: {
  3613. source: "./media/characters/xera/back.svg",
  3614. extra: 2095 / 1984,
  3615. bottom: 67 / 2166
  3616. }
  3617. },
  3618. },
  3619. [
  3620. {
  3621. name: "Small",
  3622. height: math.unit(10, "feet")
  3623. },
  3624. {
  3625. name: "Macro",
  3626. height: math.unit(500, "meters"),
  3627. default: true
  3628. },
  3629. {
  3630. name: "Macro+",
  3631. height: math.unit(10, "km")
  3632. },
  3633. {
  3634. name: "Gigamacro",
  3635. height: math.unit(25000, "km")
  3636. },
  3637. {
  3638. name: "Teramacro",
  3639. height: math.unit(3e6, "km")
  3640. }
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3645. {
  3646. front: {
  3647. height: math.unit(6, "feet"),
  3648. weight: math.unit(175, "lb"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/nebula/front.svg",
  3652. extra: 2566 / 2362,
  3653. bottom: 81 / 2644
  3654. }
  3655. }
  3656. },
  3657. [
  3658. {
  3659. name: "Small",
  3660. height: math.unit(4.5, "meters")
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(1500, "meters"),
  3665. default: true
  3666. },
  3667. {
  3668. name: "Megamacro",
  3669. height: math.unit(150, "km")
  3670. },
  3671. {
  3672. name: "Gigamacro",
  3673. height: math.unit(27000, "km")
  3674. }
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3679. {
  3680. front: {
  3681. height: math.unit(6, "feet"),
  3682. weight: math.unit(225, "lb"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/abysgar/front.svg"
  3686. }
  3687. }
  3688. },
  3689. [
  3690. {
  3691. name: "Small",
  3692. height: math.unit(4.5, "meters")
  3693. },
  3694. {
  3695. name: "Macro",
  3696. height: math.unit(1250, "meters"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Megamacro",
  3701. height: math.unit(125, "km")
  3702. },
  3703. {
  3704. name: "Gigamacro",
  3705. height: math.unit(26000, "km")
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3711. {
  3712. front: {
  3713. height: math.unit(6, "feet"),
  3714. weight: math.unit(180, "lb"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/yakuz/front.svg"
  3718. }
  3719. }
  3720. },
  3721. [
  3722. {
  3723. name: "Small",
  3724. height: math.unit(5, "meters")
  3725. },
  3726. {
  3727. name: "Macro",
  3728. height: math.unit(1500, "meters"),
  3729. default: true
  3730. },
  3731. {
  3732. name: "Megamacro",
  3733. height: math.unit(200, "km")
  3734. },
  3735. {
  3736. name: "Gigamacro",
  3737. height: math.unit(100000, "km")
  3738. }
  3739. ]
  3740. ))
  3741. characterMakers.push(() => makeCharacter(
  3742. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3743. {
  3744. front: {
  3745. height: math.unit(6, "feet"),
  3746. weight: math.unit(175, "lb"),
  3747. name: "Front",
  3748. image: {
  3749. source: "./media/characters/mirova/front.svg",
  3750. extra: 3334 / 3071,
  3751. bottom: 42 / 3375.6
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Small",
  3758. height: math.unit(5, "meters")
  3759. },
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(900, "meters"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Megamacro",
  3767. height: math.unit(135, "km")
  3768. },
  3769. {
  3770. name: "Gigamacro",
  3771. height: math.unit(20000, "km")
  3772. }
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3777. {
  3778. side: {
  3779. height: math.unit(28.35, "feet"),
  3780. weight: math.unit(99.75, "tons"),
  3781. name: "Side",
  3782. image: {
  3783. source: "./media/characters/asana-mech/side.svg",
  3784. extra: 923 / 699,
  3785. bottom: 50 / 975
  3786. }
  3787. },
  3788. chaingun: {
  3789. height: math.unit(7, "feet"),
  3790. weight: math.unit(2400, "lb"),
  3791. name: "Chaingun",
  3792. image: {
  3793. source: "./media/characters/asana-mech/chaingun.svg"
  3794. }
  3795. },
  3796. laser: {
  3797. height: math.unit(7.12, "feet"),
  3798. weight: math.unit(2000, "lb"),
  3799. name: "Laser",
  3800. image: {
  3801. source: "./media/characters/asana-mech/laser.svg"
  3802. }
  3803. },
  3804. },
  3805. [
  3806. {
  3807. name: "Normal",
  3808. height: math.unit(28.35, "feet"),
  3809. default: true
  3810. },
  3811. {
  3812. name: "Macro",
  3813. height: math.unit(2500, "feet")
  3814. },
  3815. {
  3816. name: "Megamacro",
  3817. height: math.unit(25, "miles")
  3818. },
  3819. {
  3820. name: "Examacro",
  3821. height: math.unit(6e8, "lightyears")
  3822. },
  3823. ]
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3827. {
  3828. front: {
  3829. height: math.unit(5, "meters"),
  3830. weight: math.unit(1000, "kg"),
  3831. name: "Front",
  3832. image: {
  3833. source: "./media/characters/asche/front.svg",
  3834. extra: 1258 / 1190,
  3835. bottom: 47 / 1305
  3836. }
  3837. },
  3838. frontUnderwear: {
  3839. height: math.unit(5, "meters"),
  3840. weight: math.unit(1000, "kg"),
  3841. name: "Front (Underwear)",
  3842. image: {
  3843. source: "./media/characters/asche/front-underwear.svg",
  3844. extra: 1258 / 1190,
  3845. bottom: 47 / 1305
  3846. }
  3847. },
  3848. frontDressed: {
  3849. height: math.unit(5, "meters"),
  3850. weight: math.unit(1000, "kg"),
  3851. name: "Front (Dressed)",
  3852. image: {
  3853. source: "./media/characters/asche/front-dressed.svg",
  3854. extra: 1258 / 1190,
  3855. bottom: 47 / 1305
  3856. }
  3857. },
  3858. frontArmor: {
  3859. height: math.unit(5, "meters"),
  3860. weight: math.unit(1000, "kg"),
  3861. name: "Front (Armored)",
  3862. image: {
  3863. source: "./media/characters/asche/front-armored.svg",
  3864. extra: 1374 / 1308,
  3865. bottom: 23 / 1397
  3866. }
  3867. },
  3868. mp724: {
  3869. height: math.unit(0.96, "meters"),
  3870. weight: math.unit(38, "kg"),
  3871. name: "H&K MP724",
  3872. image: {
  3873. source: "./media/characters/asche/h&k-mp724.svg"
  3874. }
  3875. },
  3876. side: {
  3877. height: math.unit(5, "meters"),
  3878. weight: math.unit(1000, "kg"),
  3879. name: "Side",
  3880. image: {
  3881. source: "./media/characters/asche/side.svg",
  3882. extra: 1717 / 1609,
  3883. bottom: 0.005
  3884. }
  3885. },
  3886. back: {
  3887. height: math.unit(5, "meters"),
  3888. weight: math.unit(1000, "kg"),
  3889. name: "Back",
  3890. image: {
  3891. source: "./media/characters/asche/back.svg",
  3892. extra: 1570 / 1501
  3893. }
  3894. },
  3895. },
  3896. [
  3897. {
  3898. name: "DEFCON 5",
  3899. height: math.unit(5, "meters")
  3900. },
  3901. {
  3902. name: "DEFCON 4",
  3903. height: math.unit(500, "meters"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "DEFCON 3",
  3908. height: math.unit(5, "km")
  3909. },
  3910. {
  3911. name: "DEFCON 2",
  3912. height: math.unit(500, "km")
  3913. },
  3914. {
  3915. name: "DEFCON 1",
  3916. height: math.unit(500000, "km")
  3917. },
  3918. {
  3919. name: "DEFCON 0",
  3920. height: math.unit(3, "gigaparsecs")
  3921. },
  3922. ]
  3923. ))
  3924. characterMakers.push(() => makeCharacter(
  3925. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3926. {
  3927. front: {
  3928. height: math.unit(2, "meters"),
  3929. weight: math.unit(76, "kg"),
  3930. name: "Front",
  3931. image: {
  3932. source: "./media/characters/gale/front.svg"
  3933. }
  3934. },
  3935. frontAlt1: {
  3936. height: math.unit(2, "meters"),
  3937. weight: math.unit(76, "kg"),
  3938. name: "Front (Alt 1)",
  3939. image: {
  3940. source: "./media/characters/gale/front-alt-1.svg"
  3941. }
  3942. },
  3943. frontAlt2: {
  3944. height: math.unit(2, "meters"),
  3945. weight: math.unit(76, "kg"),
  3946. name: "Front (Alt 2)",
  3947. image: {
  3948. source: "./media/characters/gale/front-alt-2.svg"
  3949. }
  3950. },
  3951. },
  3952. [
  3953. {
  3954. name: "Normal",
  3955. height: math.unit(7, "feet")
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(150, "feet"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Macro+",
  3964. height: math.unit(300, "feet")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(2, "meters"),
  3973. weight: math.unit(76, "kg"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/draylen/front.svg"
  3977. }
  3978. }
  3979. },
  3980. [
  3981. {
  3982. name: "Macro",
  3983. height: math.unit(150, "feet"),
  3984. default: true
  3985. }
  3986. ]
  3987. ))
  3988. characterMakers.push(() => makeCharacter(
  3989. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3990. {
  3991. front: {
  3992. height: math.unit(7 + 9 / 12, "feet"),
  3993. weight: math.unit(379, "lbs"),
  3994. name: "Front",
  3995. image: {
  3996. source: "./media/characters/chez/front.svg"
  3997. }
  3998. },
  3999. side: {
  4000. height: math.unit(7 + 9 / 12, "feet"),
  4001. weight: math.unit(379, "lbs"),
  4002. name: "Side",
  4003. image: {
  4004. source: "./media/characters/chez/side.svg"
  4005. }
  4006. }
  4007. },
  4008. [
  4009. {
  4010. name: "Normal",
  4011. height: math.unit(7 + 9 / 12, "feet"),
  4012. default: true
  4013. },
  4014. {
  4015. name: "God King",
  4016. height: math.unit(9750000, "meters")
  4017. }
  4018. ]
  4019. ))
  4020. characterMakers.push(() => makeCharacter(
  4021. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4022. {
  4023. front: {
  4024. height: math.unit(6, "feet"),
  4025. weight: math.unit(275, "lbs"),
  4026. name: "Front",
  4027. image: {
  4028. source: "./media/characters/kaylum/front.svg",
  4029. bottom: 0.01,
  4030. extra: 1166 / 1031
  4031. }
  4032. },
  4033. frontWingless: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(275, "lbs"),
  4036. name: "Front (Wingless)",
  4037. image: {
  4038. source: "./media/characters/kaylum/front-wingless.svg",
  4039. bottom: 0.01,
  4040. extra: 1117 / 1031
  4041. }
  4042. }
  4043. },
  4044. [
  4045. {
  4046. name: "Normal",
  4047. height: math.unit(3.05, "meters")
  4048. },
  4049. {
  4050. name: "Master",
  4051. height: math.unit(5.5, "meters")
  4052. },
  4053. {
  4054. name: "Rampage",
  4055. height: math.unit(19, "meters")
  4056. },
  4057. {
  4058. name: "Macro Lite",
  4059. height: math.unit(37, "meters")
  4060. },
  4061. {
  4062. name: "Hyper Predator",
  4063. height: math.unit(61, "meters")
  4064. },
  4065. {
  4066. name: "Macro",
  4067. height: math.unit(138, "meters"),
  4068. default: true
  4069. }
  4070. ]
  4071. ))
  4072. characterMakers.push(() => makeCharacter(
  4073. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4074. {
  4075. front: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(150, "lbs"),
  4078. name: "Front",
  4079. image: {
  4080. source: "./media/characters/geta/front.svg"
  4081. }
  4082. }
  4083. },
  4084. [
  4085. {
  4086. name: "Micro",
  4087. height: math.unit(3, "inches"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(5 + 5 / 12, "feet")
  4093. }
  4094. ]
  4095. ))
  4096. characterMakers.push(() => makeCharacter(
  4097. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4098. {
  4099. front: {
  4100. height: math.unit(6, "feet"),
  4101. weight: math.unit(300, "lbs"),
  4102. name: "Front",
  4103. image: {
  4104. source: "./media/characters/tyrnn/front.svg"
  4105. }
  4106. }
  4107. },
  4108. [
  4109. {
  4110. name: "Main Height",
  4111. height: math.unit(355, "feet"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Fave. Height",
  4116. height: math.unit(2400, "feet")
  4117. }
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4122. {
  4123. front: {
  4124. height: math.unit(6, "feet"),
  4125. weight: math.unit(300, "lbs"),
  4126. name: "Front",
  4127. image: {
  4128. source: "./media/characters/appledectomy/front.svg"
  4129. }
  4130. }
  4131. },
  4132. [
  4133. {
  4134. name: "Macro",
  4135. height: math.unit(2500, "feet")
  4136. },
  4137. {
  4138. name: "Megamacro",
  4139. height: math.unit(50, "miles"),
  4140. default: true
  4141. },
  4142. {
  4143. name: "Gigamacro",
  4144. height: math.unit(5000, "miles")
  4145. },
  4146. {
  4147. name: "Teramacro",
  4148. height: math.unit(250000, "miles")
  4149. },
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4154. {
  4155. front: {
  4156. height: math.unit(6, "feet"),
  4157. weight: math.unit(200, "lbs"),
  4158. name: "Front",
  4159. image: {
  4160. source: "./media/characters/vulpes/front.svg",
  4161. extra: 573 / 543,
  4162. bottom: 0.033
  4163. }
  4164. },
  4165. side: {
  4166. height: math.unit(6, "feet"),
  4167. weight: math.unit(200, "lbs"),
  4168. name: "Side",
  4169. image: {
  4170. source: "./media/characters/vulpes/side.svg",
  4171. extra: 577 / 549,
  4172. bottom: 11 / 588
  4173. }
  4174. },
  4175. back: {
  4176. height: math.unit(6, "feet"),
  4177. weight: math.unit(200, "lbs"),
  4178. name: "Back",
  4179. image: {
  4180. source: "./media/characters/vulpes/back.svg",
  4181. extra: 573 / 549,
  4182. bottom: 20 / 593
  4183. }
  4184. },
  4185. feet: {
  4186. height: math.unit(1.276, "feet"),
  4187. name: "Feet",
  4188. image: {
  4189. source: "./media/characters/vulpes/feet.svg"
  4190. }
  4191. },
  4192. maw: {
  4193. height: math.unit(1.18, "feet"),
  4194. name: "Maw",
  4195. image: {
  4196. source: "./media/characters/vulpes/maw.svg"
  4197. }
  4198. },
  4199. },
  4200. [
  4201. {
  4202. name: "Micro",
  4203. height: math.unit(2, "inches")
  4204. },
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(6.3, "feet")
  4208. },
  4209. {
  4210. name: "Macro",
  4211. height: math.unit(850, "feet")
  4212. },
  4213. {
  4214. name: "Megamacro",
  4215. height: math.unit(7500, "feet"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "Gigamacro",
  4220. height: math.unit(570000, "miles")
  4221. }
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4226. {
  4227. front: {
  4228. height: math.unit(6, "feet"),
  4229. weight: math.unit(210, "lbs"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/rain-fallen/front.svg"
  4233. }
  4234. },
  4235. side: {
  4236. height: math.unit(6, "feet"),
  4237. weight: math.unit(210, "lbs"),
  4238. name: "Side",
  4239. image: {
  4240. source: "./media/characters/rain-fallen/side.svg"
  4241. }
  4242. },
  4243. back: {
  4244. height: math.unit(6, "feet"),
  4245. weight: math.unit(210, "lbs"),
  4246. name: "Back",
  4247. image: {
  4248. source: "./media/characters/rain-fallen/back.svg"
  4249. }
  4250. },
  4251. feral: {
  4252. height: math.unit(9, "feet"),
  4253. weight: math.unit(700, "lbs"),
  4254. name: "Feral",
  4255. image: {
  4256. source: "./media/characters/rain-fallen/feral.svg"
  4257. }
  4258. },
  4259. },
  4260. [
  4261. {
  4262. name: "Normal",
  4263. height: math.unit(5, "meter")
  4264. },
  4265. {
  4266. name: "Macro",
  4267. height: math.unit(150, "meter"),
  4268. default: true
  4269. },
  4270. {
  4271. name: "Megamacro",
  4272. height: math.unit(278e6, "meter")
  4273. },
  4274. {
  4275. name: "Gigamacro",
  4276. height: math.unit(2e9, "meter")
  4277. },
  4278. {
  4279. name: "Teramacro",
  4280. height: math.unit(8e12, "meter")
  4281. },
  4282. {
  4283. name: "Devourer",
  4284. height: math.unit(14, "zettameters")
  4285. },
  4286. {
  4287. name: "Scarlet King",
  4288. height: math.unit(18, "yottameters")
  4289. },
  4290. {
  4291. name: "Void",
  4292. height: math.unit(6.66e66, "yottameters")
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4298. {
  4299. standing: {
  4300. height: math.unit(6, "feet"),
  4301. weight: math.unit(180, "lbs"),
  4302. name: "Standing",
  4303. image: {
  4304. source: "./media/characters/zaakira/standing.svg"
  4305. }
  4306. },
  4307. laying: {
  4308. height: math.unit(3, "feet"),
  4309. weight: math.unit(180, "lbs"),
  4310. name: "Laying",
  4311. image: {
  4312. source: "./media/characters/zaakira/laying.svg"
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Normal",
  4319. height: math.unit(12, "feet")
  4320. },
  4321. {
  4322. name: "Macro",
  4323. height: math.unit(279, "feet"),
  4324. default: true
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4330. {
  4331. femSfw: {
  4332. height: math.unit(8, "feet"),
  4333. weight: math.unit(350, "lb"),
  4334. name: "Fem",
  4335. image: {
  4336. source: "./media/characters/sigvald/fem-sfw.svg",
  4337. extra: 182 / 164,
  4338. bottom: 8.7 / 190.5
  4339. }
  4340. },
  4341. femNsfw: {
  4342. height: math.unit(8, "feet"),
  4343. weight: math.unit(350, "lb"),
  4344. name: "Fem (NSFW)",
  4345. image: {
  4346. source: "./media/characters/sigvald/fem-nsfw.svg",
  4347. extra: 182 / 164,
  4348. bottom: 8.7 / 190.5
  4349. }
  4350. },
  4351. maleNsfw: {
  4352. height: math.unit(8, "feet"),
  4353. weight: math.unit(350, "lb"),
  4354. name: "Male (NSFW)",
  4355. image: {
  4356. source: "./media/characters/sigvald/male-nsfw.svg",
  4357. extra: 182 / 164,
  4358. bottom: 8.7 / 190.5
  4359. }
  4360. },
  4361. hermNsfw: {
  4362. height: math.unit(8, "feet"),
  4363. weight: math.unit(350, "lb"),
  4364. name: "Herm (NSFW)",
  4365. image: {
  4366. source: "./media/characters/sigvald/herm-nsfw.svg",
  4367. extra: 182 / 164,
  4368. bottom: 8.7 / 190.5
  4369. }
  4370. },
  4371. dick: {
  4372. height: math.unit(2.36, "feet"),
  4373. name: "Dick",
  4374. image: {
  4375. source: "./media/characters/sigvald/dick.svg"
  4376. }
  4377. },
  4378. eye: {
  4379. height: math.unit(0.31, "feet"),
  4380. name: "Eye",
  4381. image: {
  4382. source: "./media/characters/sigvald/eye.svg"
  4383. }
  4384. },
  4385. mouth: {
  4386. height: math.unit(0.92, "feet"),
  4387. name: "Mouth",
  4388. image: {
  4389. source: "./media/characters/sigvald/mouth.svg"
  4390. }
  4391. },
  4392. paws: {
  4393. height: math.unit(2.2, "feet"),
  4394. name: "Paws",
  4395. image: {
  4396. source: "./media/characters/sigvald/paws.svg"
  4397. }
  4398. }
  4399. },
  4400. [
  4401. {
  4402. name: "Normal",
  4403. height: math.unit(8, "feet")
  4404. },
  4405. {
  4406. name: "Large",
  4407. height: math.unit(12, "feet")
  4408. },
  4409. {
  4410. name: "Larger",
  4411. height: math.unit(20, "feet")
  4412. },
  4413. {
  4414. name: "Macro",
  4415. height: math.unit(150, "feet")
  4416. },
  4417. {
  4418. name: "Macro+",
  4419. height: math.unit(200, "feet"),
  4420. default: true
  4421. },
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4426. {
  4427. side: {
  4428. height: math.unit(12, "feet"),
  4429. weight: math.unit(2000, "kg"),
  4430. name: "Side",
  4431. image: {
  4432. source: "./media/characters/scott/side.svg",
  4433. extra: 754 / 724,
  4434. bottom: 0.069
  4435. }
  4436. },
  4437. upright: {
  4438. height: math.unit(12, "feet"),
  4439. weight: math.unit(2000, "kg"),
  4440. name: "Upright",
  4441. image: {
  4442. source: "./media/characters/scott/upright.svg",
  4443. extra: 3881 / 3722,
  4444. bottom: 0.05
  4445. }
  4446. },
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(12, "feet"),
  4452. default: true
  4453. },
  4454. ]
  4455. ))
  4456. characterMakers.push(() => makeCharacter(
  4457. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4458. {
  4459. side: {
  4460. height: math.unit(8, "meters"),
  4461. weight: math.unit(84755, "lbs"),
  4462. name: "Side",
  4463. image: {
  4464. source: "./media/characters/tobias/side.svg",
  4465. extra: 1474 / 1096,
  4466. bottom: 38.9 / 1513.1235
  4467. }
  4468. },
  4469. },
  4470. [
  4471. {
  4472. name: "Normal",
  4473. height: math.unit(8, "meters"),
  4474. default: true
  4475. },
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4480. {
  4481. front: {
  4482. height: math.unit(5.5, "feet"),
  4483. weight: math.unit(400, "lbs"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/kieran/front.svg",
  4487. extra: 2694 / 2364,
  4488. bottom: 217 / 2908
  4489. }
  4490. },
  4491. side: {
  4492. height: math.unit(5.5, "feet"),
  4493. weight: math.unit(400, "lbs"),
  4494. name: "Side",
  4495. image: {
  4496. source: "./media/characters/kieran/side.svg",
  4497. extra: 875 / 777,
  4498. bottom: 84.6 / 959
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Normal",
  4505. height: math.unit(5.5, "feet"),
  4506. default: true
  4507. },
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4512. {
  4513. side: {
  4514. height: math.unit(2, "meters"),
  4515. weight: math.unit(70, "kg"),
  4516. name: "Side",
  4517. image: {
  4518. source: "./media/characters/sanya/side.svg",
  4519. bottom: 0.02,
  4520. extra: 1.02
  4521. }
  4522. },
  4523. },
  4524. [
  4525. {
  4526. name: "Small",
  4527. height: math.unit(2, "meters")
  4528. },
  4529. {
  4530. name: "Normal",
  4531. height: math.unit(3, "meters")
  4532. },
  4533. {
  4534. name: "Macro",
  4535. height: math.unit(16, "meters"),
  4536. default: true
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4542. {
  4543. front: {
  4544. height: math.unit(2, "meters"),
  4545. weight: math.unit(120, "kg"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/miranda/front.svg",
  4549. extra: 195 / 185,
  4550. bottom: 10.9 / 206.5
  4551. }
  4552. },
  4553. back: {
  4554. height: math.unit(2, "meters"),
  4555. weight: math.unit(120, "kg"),
  4556. name: "Back",
  4557. image: {
  4558. source: "./media/characters/miranda/back.svg",
  4559. extra: 201 / 193,
  4560. bottom: 2.3 / 203.7
  4561. }
  4562. },
  4563. },
  4564. [
  4565. {
  4566. name: "Normal",
  4567. height: math.unit(10, "feet"),
  4568. default: true
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "James", species: ["deer"], tags: ["anthro"] },
  4574. {
  4575. side: {
  4576. height: math.unit(2, "meters"),
  4577. weight: math.unit(100, "kg"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/james/front.svg",
  4581. extra: 10 / 8.5
  4582. }
  4583. },
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(8.5, "feet"),
  4589. default: true
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4595. {
  4596. side: {
  4597. height: math.unit(9.5, "feet"),
  4598. weight: math.unit(2500, "lbs"),
  4599. name: "Side",
  4600. image: {
  4601. source: "./media/characters/heather/side.svg"
  4602. }
  4603. },
  4604. },
  4605. [
  4606. {
  4607. name: "Normal",
  4608. height: math.unit(9.5, "feet"),
  4609. default: true
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4615. {
  4616. side: {
  4617. height: math.unit(6.5, "feet"),
  4618. weight: math.unit(400, "lbs"),
  4619. name: "Side",
  4620. image: {
  4621. source: "./media/characters/lukas/side.svg",
  4622. extra: 7.25 / 6.5
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(6.5, "feet"),
  4630. default: true
  4631. }
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4636. {
  4637. side: {
  4638. height: math.unit(5, "feet"),
  4639. weight: math.unit(3000, "lbs"),
  4640. name: "Side",
  4641. image: {
  4642. source: "./media/characters/louise/side.svg"
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(5, "feet"),
  4650. default: true
  4651. }
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4656. {
  4657. side: {
  4658. height: math.unit(6, "feet"),
  4659. weight: math.unit(150, "lbs"),
  4660. name: "Side",
  4661. image: {
  4662. source: "./media/characters/ramona/side.svg"
  4663. }
  4664. },
  4665. },
  4666. [
  4667. {
  4668. name: "Normal",
  4669. height: math.unit(5.3, "meters"),
  4670. default: true
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(20, "stories")
  4675. },
  4676. {
  4677. name: "Macro+",
  4678. height: math.unit(50, "stories")
  4679. },
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4684. {
  4685. standing: {
  4686. height: math.unit(5.75, "feet"),
  4687. weight: math.unit(160, "lbs"),
  4688. name: "Standing",
  4689. image: {
  4690. source: "./media/characters/deerpuff/standing.svg",
  4691. extra: 682 / 624
  4692. }
  4693. },
  4694. sitting: {
  4695. height: math.unit(5.75 / 1.79, "feet"),
  4696. weight: math.unit(160, "lbs"),
  4697. name: "Sitting",
  4698. image: {
  4699. source: "./media/characters/deerpuff/sitting.svg",
  4700. bottom: 44 / 400,
  4701. extra: 1
  4702. }
  4703. },
  4704. taurLaying: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(400, "lbs"),
  4707. name: "Taur (Laying)",
  4708. image: {
  4709. source: "./media/characters/deerpuff/taur-laying.svg"
  4710. }
  4711. },
  4712. },
  4713. [
  4714. {
  4715. name: "Puffball",
  4716. height: math.unit(6, "inches")
  4717. },
  4718. {
  4719. name: "Normalpuff",
  4720. height: math.unit(5.75, "feet")
  4721. },
  4722. {
  4723. name: "Macropuff",
  4724. height: math.unit(1500, "feet"),
  4725. default: true
  4726. },
  4727. {
  4728. name: "Megapuff",
  4729. height: math.unit(500, "miles")
  4730. },
  4731. {
  4732. name: "Gigapuff",
  4733. height: math.unit(250000, "miles")
  4734. },
  4735. {
  4736. name: "Omegapuff",
  4737. height: math.unit(1000, "lightyears")
  4738. },
  4739. ]
  4740. ))
  4741. characterMakers.push(() => makeCharacter(
  4742. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4743. {
  4744. stomping: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(170, "lbs"),
  4747. name: "Stomping",
  4748. image: {
  4749. source: "./media/characters/vivian/stomping.svg"
  4750. }
  4751. },
  4752. sitting: {
  4753. height: math.unit(6 / 1.75, "feet"),
  4754. weight: math.unit(170, "lbs"),
  4755. name: "Sitting",
  4756. image: {
  4757. source: "./media/characters/vivian/sitting.svg",
  4758. bottom: 1 / 6.4,
  4759. extra: 1,
  4760. }
  4761. },
  4762. },
  4763. [
  4764. {
  4765. name: "Normal",
  4766. height: math.unit(7, "feet"),
  4767. default: true
  4768. },
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(10, "stories")
  4772. },
  4773. {
  4774. name: "Macro+",
  4775. height: math.unit(30, "stories")
  4776. },
  4777. {
  4778. name: "Megamacro",
  4779. height: math.unit(10, "miles")
  4780. },
  4781. {
  4782. name: "Megamacro+",
  4783. height: math.unit(2750000, "meters")
  4784. },
  4785. ]
  4786. ))
  4787. characterMakers.push(() => makeCharacter(
  4788. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4789. {
  4790. front: {
  4791. height: math.unit(6, "feet"),
  4792. weight: math.unit(160, "lbs"),
  4793. name: "Front",
  4794. image: {
  4795. source: "./media/characters/prince/front.svg",
  4796. extra: 3400 / 3000
  4797. }
  4798. },
  4799. jumping: {
  4800. height: math.unit(6, "feet"),
  4801. weight: math.unit(160, "lbs"),
  4802. name: "Jumping",
  4803. image: {
  4804. source: "./media/characters/prince/jump.svg",
  4805. extra: 2555 / 2134
  4806. }
  4807. },
  4808. },
  4809. [
  4810. {
  4811. name: "Normal",
  4812. height: math.unit(7.75, "feet"),
  4813. default: true
  4814. },
  4815. {
  4816. name: "Not cute",
  4817. height: math.unit(17, "feet")
  4818. },
  4819. {
  4820. name: "I said NOT",
  4821. height: math.unit(91, "feet")
  4822. },
  4823. {
  4824. name: "Please stop",
  4825. height: math.unit(560, "feet")
  4826. },
  4827. {
  4828. name: "What have you done",
  4829. height: math.unit(2200, "feet")
  4830. },
  4831. {
  4832. name: "Deer God",
  4833. height: math.unit(3.6, "miles")
  4834. },
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4839. {
  4840. standing: {
  4841. height: math.unit(6, "feet"),
  4842. weight: math.unit(300, "lbs"),
  4843. name: "Standing",
  4844. image: {
  4845. source: "./media/characters/psymon/standing.svg",
  4846. extra: 1888 / 1810,
  4847. bottom: 0.05
  4848. }
  4849. },
  4850. slithering: {
  4851. height: math.unit(6, "feet"),
  4852. weight: math.unit(300, "lbs"),
  4853. name: "Slithering",
  4854. image: {
  4855. source: "./media/characters/psymon/slithering.svg",
  4856. extra: 1330 / 1224
  4857. }
  4858. },
  4859. slitheringAlt: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(300, "lbs"),
  4862. name: "Slithering (Alt)",
  4863. image: {
  4864. source: "./media/characters/psymon/slithering-alt.svg",
  4865. extra: 1330 / 1224
  4866. }
  4867. },
  4868. },
  4869. [
  4870. {
  4871. name: "Normal",
  4872. height: math.unit(11.25, "feet"),
  4873. default: true
  4874. },
  4875. {
  4876. name: "Large",
  4877. height: math.unit(27, "feet")
  4878. },
  4879. {
  4880. name: "Giant",
  4881. height: math.unit(87, "feet")
  4882. },
  4883. {
  4884. name: "Macro",
  4885. height: math.unit(365, "feet")
  4886. },
  4887. {
  4888. name: "Megamacro",
  4889. height: math.unit(3, "miles")
  4890. },
  4891. {
  4892. name: "World Serpent",
  4893. height: math.unit(8000, "miles")
  4894. },
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4899. {
  4900. front: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(180, "lbs"),
  4903. name: "Front",
  4904. image: {
  4905. source: "./media/characters/daimos/front.svg",
  4906. extra: 4160 / 3897,
  4907. bottom: 0.021
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(8, "feet"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "Big Dog",
  4919. height: math.unit(22, "feet")
  4920. },
  4921. {
  4922. name: "Macro",
  4923. height: math.unit(127, "feet")
  4924. },
  4925. {
  4926. name: "Megamacro",
  4927. height: math.unit(3600, "feet")
  4928. },
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4933. {
  4934. side: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(180, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/blake/side.svg",
  4940. extra: 1212 / 1120,
  4941. bottom: 0.05
  4942. }
  4943. },
  4944. crouched: {
  4945. height: math.unit(6 * 0.57, "feet"),
  4946. weight: math.unit(180, "lbs"),
  4947. name: "Crouched",
  4948. image: {
  4949. source: "./media/characters/blake/crouched.svg",
  4950. extra: 840 / 587,
  4951. bottom: 0.04
  4952. }
  4953. },
  4954. bent: {
  4955. height: math.unit(6 * 0.75, "feet"),
  4956. weight: math.unit(180, "lbs"),
  4957. name: "Bent",
  4958. image: {
  4959. source: "./media/characters/blake/bent.svg",
  4960. extra: 592 / 544,
  4961. bottom: 0.035
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(8 + 1 / 6, "feet"),
  4969. default: true
  4970. },
  4971. {
  4972. name: "Big Backside",
  4973. height: math.unit(37, "feet")
  4974. },
  4975. {
  4976. name: "Subway Shredder",
  4977. height: math.unit(72, "feet")
  4978. },
  4979. {
  4980. name: "City Carver",
  4981. height: math.unit(1675, "feet")
  4982. },
  4983. {
  4984. name: "Tectonic Tweaker",
  4985. height: math.unit(2300, "miles")
  4986. },
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4991. {
  4992. front: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(180, "lbs"),
  4995. name: "Front",
  4996. image: {
  4997. source: "./media/characters/guisetto/front.svg",
  4998. extra: 856 / 817,
  4999. bottom: 0.06
  5000. }
  5001. },
  5002. airborne: {
  5003. height: math.unit(6, "feet"),
  5004. weight: math.unit(180, "lbs"),
  5005. name: "Airborne",
  5006. image: {
  5007. source: "./media/characters/guisetto/airborne.svg",
  5008. extra: 584 / 525
  5009. }
  5010. },
  5011. },
  5012. [
  5013. {
  5014. name: "Normal",
  5015. height: math.unit(10 + 11 / 12, "feet"),
  5016. default: true
  5017. },
  5018. {
  5019. name: "Large",
  5020. height: math.unit(35, "feet")
  5021. },
  5022. {
  5023. name: "Macro",
  5024. height: math.unit(475, "feet")
  5025. },
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5030. {
  5031. front: {
  5032. height: math.unit(6, "feet"),
  5033. weight: math.unit(180, "lbs"),
  5034. name: "Front",
  5035. image: {
  5036. source: "./media/characters/luxor/front.svg",
  5037. extra: 2940 / 2152
  5038. }
  5039. },
  5040. back: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(180, "lbs"),
  5043. name: "Back",
  5044. image: {
  5045. source: "./media/characters/luxor/back.svg",
  5046. extra: 1083 / 960
  5047. }
  5048. },
  5049. },
  5050. [
  5051. {
  5052. name: "Normal",
  5053. height: math.unit(5 + 5 / 6, "feet"),
  5054. default: true
  5055. },
  5056. {
  5057. name: "Lamp",
  5058. height: math.unit(50, "feet")
  5059. },
  5060. {
  5061. name: "Lämp",
  5062. height: math.unit(300, "feet")
  5063. },
  5064. {
  5065. name: "The sun is a lamp",
  5066. height: math.unit(250000, "miles")
  5067. },
  5068. ]
  5069. ))
  5070. characterMakers.push(() => makeCharacter(
  5071. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5072. {
  5073. front: {
  5074. height: math.unit(6, "feet"),
  5075. weight: math.unit(50, "lbs"),
  5076. name: "Front",
  5077. image: {
  5078. source: "./media/characters/huoyan/front.svg"
  5079. }
  5080. },
  5081. side: {
  5082. height: math.unit(6, "feet"),
  5083. weight: math.unit(180, "lbs"),
  5084. name: "Side",
  5085. image: {
  5086. source: "./media/characters/huoyan/side.svg"
  5087. }
  5088. },
  5089. },
  5090. [
  5091. {
  5092. name: "Chef",
  5093. height: math.unit(9, "feet")
  5094. },
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(65, "feet"),
  5098. default: true
  5099. },
  5100. {
  5101. name: "Macro",
  5102. height: math.unit(780, "feet")
  5103. },
  5104. {
  5105. name: "Flaming Mountain",
  5106. height: math.unit(4.8, "miles")
  5107. },
  5108. {
  5109. name: "Celestial",
  5110. height: math.unit(765000, "miles")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5116. {
  5117. front: {
  5118. height: math.unit(5 + 3 / 4, "feet"),
  5119. weight: math.unit(120, "lbs"),
  5120. name: "Front",
  5121. image: {
  5122. source: "./media/characters/tails/front.svg"
  5123. }
  5124. }
  5125. },
  5126. [
  5127. {
  5128. name: "Normal",
  5129. height: math.unit(5 + 3 / 4, "feet"),
  5130. default: true
  5131. }
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5136. {
  5137. front: {
  5138. height: math.unit(4, "feet"),
  5139. weight: math.unit(50, "lbs"),
  5140. name: "Front",
  5141. image: {
  5142. source: "./media/characters/rainy/front.svg"
  5143. }
  5144. }
  5145. },
  5146. [
  5147. {
  5148. name: "Macro",
  5149. height: math.unit(800, "feet"),
  5150. default: true
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5156. {
  5157. front: {
  5158. height: math.unit(6, "feet"),
  5159. weight: math.unit(150, "lbs"),
  5160. name: "Front",
  5161. image: {
  5162. source: "./media/characters/rainier/front.svg"
  5163. }
  5164. }
  5165. },
  5166. [
  5167. {
  5168. name: "Micro",
  5169. height: math.unit(2, "mm"),
  5170. default: true
  5171. }
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5176. {
  5177. front: {
  5178. height: math.unit(6, "feet"),
  5179. weight: math.unit(180, "lbs"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/andy/front.svg"
  5183. }
  5184. }
  5185. },
  5186. [
  5187. {
  5188. name: "Normal",
  5189. height: math.unit(8, "feet"),
  5190. default: true
  5191. },
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(1000, "feet")
  5195. },
  5196. {
  5197. name: "Megamacro",
  5198. height: math.unit(5, "miles")
  5199. },
  5200. {
  5201. name: "Gigamacro",
  5202. height: math.unit(5000, "miles")
  5203. },
  5204. ]
  5205. ))
  5206. characterMakers.push(() => makeCharacter(
  5207. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5208. {
  5209. front: {
  5210. height: math.unit(6, "feet"),
  5211. weight: math.unit(210, "lbs"),
  5212. name: "Front",
  5213. image: {
  5214. source: "./media/characters/cimmaron/front-sfw.svg",
  5215. extra: 701 / 676,
  5216. bottom: 0.046
  5217. }
  5218. },
  5219. back: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(210, "lbs"),
  5222. name: "Back",
  5223. image: {
  5224. source: "./media/characters/cimmaron/back-sfw.svg",
  5225. extra: 701 / 676,
  5226. bottom: 0.046
  5227. }
  5228. },
  5229. frontNsfw: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(210, "lbs"),
  5232. name: "Front (NSFW)",
  5233. image: {
  5234. source: "./media/characters/cimmaron/front-nsfw.svg",
  5235. extra: 701 / 676,
  5236. bottom: 0.046
  5237. }
  5238. },
  5239. backNsfw: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(210, "lbs"),
  5242. name: "Back (NSFW)",
  5243. image: {
  5244. source: "./media/characters/cimmaron/back-nsfw.svg",
  5245. extra: 701 / 676,
  5246. bottom: 0.046
  5247. }
  5248. },
  5249. dick: {
  5250. height: math.unit(1.714, "feet"),
  5251. name: "Dick",
  5252. image: {
  5253. source: "./media/characters/cimmaron/dick.svg"
  5254. }
  5255. },
  5256. },
  5257. [
  5258. {
  5259. name: "Normal",
  5260. height: math.unit(6, "feet"),
  5261. default: true
  5262. },
  5263. {
  5264. name: "Macro Mayor",
  5265. height: math.unit(350, "meters")
  5266. },
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5271. {
  5272. front: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(200, "lbs"),
  5275. name: "Front",
  5276. image: {
  5277. source: "./media/characters/akari/front.svg",
  5278. extra: 962 / 901,
  5279. bottom: 0.04
  5280. }
  5281. }
  5282. },
  5283. [
  5284. {
  5285. name: "Micro",
  5286. height: math.unit(5, "inches"),
  5287. default: true
  5288. },
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(7, "feet")
  5292. },
  5293. ]
  5294. ))
  5295. characterMakers.push(() => makeCharacter(
  5296. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5297. {
  5298. front: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(140, "lbs"),
  5301. name: "Front",
  5302. image: {
  5303. source: "./media/characters/cynosura/front.svg",
  5304. extra: 896 / 847
  5305. }
  5306. },
  5307. back: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(140, "lbs"),
  5310. name: "Back",
  5311. image: {
  5312. source: "./media/characters/cynosura/back.svg",
  5313. extra: 1365 / 1250
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Micro",
  5320. height: math.unit(4, "inches")
  5321. },
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(5.75, "feet"),
  5325. default: true
  5326. },
  5327. {
  5328. name: "Tall",
  5329. height: math.unit(10, "feet")
  5330. },
  5331. {
  5332. name: "Big",
  5333. height: math.unit(20, "feet")
  5334. },
  5335. {
  5336. name: "Macro",
  5337. height: math.unit(50, "feet")
  5338. },
  5339. ]
  5340. ))
  5341. characterMakers.push(() => makeCharacter(
  5342. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5343. {
  5344. front: {
  5345. height: math.unit(6, "feet"),
  5346. weight: math.unit(170, "lbs"),
  5347. name: "Front",
  5348. image: {
  5349. source: "./media/characters/gin/front.svg",
  5350. extra: 1.053,
  5351. bottom: 0.025
  5352. }
  5353. },
  5354. foot: {
  5355. height: math.unit(6 / 4.25, "feet"),
  5356. name: "Foot",
  5357. image: {
  5358. source: "./media/characters/gin/foot.svg"
  5359. }
  5360. },
  5361. sole: {
  5362. height: math.unit(6 / 4.40, "feet"),
  5363. name: "Sole",
  5364. image: {
  5365. source: "./media/characters/gin/sole.svg"
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(13 + 2 / 12, "feet")
  5373. },
  5374. {
  5375. name: "Macro",
  5376. height: math.unit(1500, "feet")
  5377. },
  5378. {
  5379. name: "Megamacro",
  5380. height: math.unit(200, "miles"),
  5381. default: true
  5382. },
  5383. {
  5384. name: "Gigamacro",
  5385. height: math.unit(500, "megameters")
  5386. },
  5387. {
  5388. name: "Teramacro",
  5389. height: math.unit(15, "lightyears")
  5390. }
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(6 + 1 / 6, "feet"),
  5398. weight: math.unit(178, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/guy/front.svg"
  5402. }
  5403. }
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(6 + 1 / 6, "feet"),
  5409. default: true
  5410. },
  5411. {
  5412. name: "Large",
  5413. height: math.unit(25 + 7 / 12, "feet")
  5414. },
  5415. {
  5416. name: "Macro",
  5417. height: math.unit(60 + 9 / 12, "feet")
  5418. },
  5419. {
  5420. name: "Macro+",
  5421. height: math.unit(246, "feet")
  5422. },
  5423. {
  5424. name: "Macro++",
  5425. height: math.unit(878, "feet")
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(9, "feet"),
  5434. weight: math.unit(800, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/tiberius/front.svg",
  5438. extra: 2295 / 2071
  5439. }
  5440. },
  5441. back: {
  5442. height: math.unit(9, "feet"),
  5443. weight: math.unit(800, "lbs"),
  5444. name: "Back",
  5445. image: {
  5446. source: "./media/characters/tiberius/back.svg",
  5447. extra: 2373 / 2160
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(9, "feet"),
  5455. default: true
  5456. }
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5461. {
  5462. front: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(600, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/surgo/front.svg",
  5468. extra: 3591 / 2227
  5469. }
  5470. },
  5471. back: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(600, "lbs"),
  5474. name: "Back",
  5475. image: {
  5476. source: "./media/characters/surgo/back.svg",
  5477. extra: 3557 / 2228
  5478. }
  5479. },
  5480. laying: {
  5481. height: math.unit(6 * 0.85, "feet"),
  5482. weight: math.unit(600, "lbs"),
  5483. name: "Laying",
  5484. image: {
  5485. source: "./media/characters/surgo/laying.svg"
  5486. }
  5487. },
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(6, "feet"),
  5493. default: true
  5494. }
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5499. {
  5500. side: {
  5501. height: math.unit(6, "feet"),
  5502. weight: math.unit(150, "lbs"),
  5503. name: "Side",
  5504. image: {
  5505. source: "./media/characters/cibus/side.svg",
  5506. extra: 800 / 400
  5507. }
  5508. },
  5509. },
  5510. [
  5511. {
  5512. name: "Normal",
  5513. height: math.unit(6, "feet"),
  5514. default: true
  5515. }
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5520. {
  5521. front: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(240, "lbs"),
  5524. name: "Front",
  5525. image: {
  5526. source: "./media/characters/nibbles/front.svg"
  5527. }
  5528. },
  5529. side: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(240, "lbs"),
  5532. name: "Side",
  5533. image: {
  5534. source: "./media/characters/nibbles/side.svg"
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(9, "feet"),
  5542. default: true
  5543. }
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5548. {
  5549. side: {
  5550. height: math.unit(5 + 1 / 6, "feet"),
  5551. weight: math.unit(130, "lbs"),
  5552. name: "Side",
  5553. image: {
  5554. source: "./media/characters/rikky/side.svg",
  5555. extra: 851 / 801
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(5 + 1 / 6, "feet")
  5563. },
  5564. {
  5565. name: "Macro",
  5566. height: math.unit(152, "feet"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Megamacro",
  5571. height: math.unit(7, "miles")
  5572. }
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5577. {
  5578. side: {
  5579. height: math.unit(370, "cm"),
  5580. weight: math.unit(350, "lbs"),
  5581. name: "Side",
  5582. image: {
  5583. source: "./media/characters/malfressa/side.svg"
  5584. }
  5585. },
  5586. walking: {
  5587. height: math.unit(370, "cm"),
  5588. weight: math.unit(350, "lbs"),
  5589. name: "Walking",
  5590. image: {
  5591. source: "./media/characters/malfressa/walking.svg"
  5592. }
  5593. },
  5594. feral: {
  5595. height: math.unit(2500, "cm"),
  5596. weight: math.unit(100000, "lbs"),
  5597. name: "Feral",
  5598. image: {
  5599. source: "./media/characters/malfressa/feral.svg",
  5600. extra: 2108 / 837,
  5601. bottom: 0.02
  5602. }
  5603. },
  5604. },
  5605. [
  5606. {
  5607. name: "Normal",
  5608. height: math.unit(370, "cm")
  5609. },
  5610. {
  5611. name: "Macro",
  5612. height: math.unit(300, "meters"),
  5613. default: true
  5614. }
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(60, "kg"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/jaro/front.svg"
  5626. }
  5627. },
  5628. back: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(60, "kg"),
  5631. name: "Back",
  5632. image: {
  5633. source: "./media/characters/jaro/back.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Micro",
  5640. height: math.unit(7, "inches")
  5641. },
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(5.5, "feet"),
  5645. default: true
  5646. },
  5647. {
  5648. name: "Minimacro",
  5649. height: math.unit(20, "feet")
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(200, "meters")
  5654. }
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5659. {
  5660. front: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(195, "lb"),
  5663. name: "Front",
  5664. image: {
  5665. source: "./media/characters/rogue/front.svg"
  5666. }
  5667. },
  5668. },
  5669. [
  5670. {
  5671. name: "Macro",
  5672. height: math.unit(90, "feet"),
  5673. default: true
  5674. },
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5679. {
  5680. front: {
  5681. height: math.unit(5 + 8 / 12, "feet"),
  5682. weight: math.unit(140, "lb"),
  5683. name: "Front",
  5684. image: {
  5685. source: "./media/characters/piper/front.svg",
  5686. extra: 3928 / 3681
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(2, "inches")
  5694. },
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(5 + 8 / 12, "feet")
  5698. },
  5699. {
  5700. name: "Macro",
  5701. height: math.unit(250, "feet"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Megamacro",
  5706. height: math.unit(7, "miles")
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(220, "lb"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/gemini/front.svg"
  5719. }
  5720. },
  5721. back: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(220, "lb"),
  5724. name: "Back",
  5725. image: {
  5726. source: "./media/characters/gemini/back.svg"
  5727. }
  5728. },
  5729. kneeling: {
  5730. height: math.unit(6 / 1.5, "feet"),
  5731. weight: math.unit(220, "lb"),
  5732. name: "Kneeling",
  5733. image: {
  5734. source: "./media/characters/gemini/kneeling.svg",
  5735. bottom: 0.02
  5736. }
  5737. },
  5738. },
  5739. [
  5740. {
  5741. name: "Macro",
  5742. height: math.unit(300, "meters"),
  5743. default: true
  5744. },
  5745. {
  5746. name: "Megamacro",
  5747. height: math.unit(6900, "meters")
  5748. },
  5749. ]
  5750. ))
  5751. characterMakers.push(() => makeCharacter(
  5752. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5753. {
  5754. anthro: {
  5755. height: math.unit(2.35, "meters"),
  5756. weight: math.unit(73, "kg"),
  5757. name: "Anthro",
  5758. image: {
  5759. source: "./media/characters/alicia/anthro.svg",
  5760. extra: 2571 / 2385,
  5761. bottom: 75 / 2648
  5762. }
  5763. },
  5764. paw: {
  5765. height: math.unit(1.32, "feet"),
  5766. name: "Paw",
  5767. image: {
  5768. source: "./media/characters/alicia/paw.svg"
  5769. }
  5770. },
  5771. feral: {
  5772. height: math.unit(1.69, "meters"),
  5773. weight: math.unit(73, "kg"),
  5774. name: "Feral",
  5775. image: {
  5776. source: "./media/characters/alicia/feral.svg",
  5777. extra: 2123 / 1715,
  5778. bottom: 222 / 2349
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(2.35, "meters")
  5786. },
  5787. {
  5788. name: "Macro",
  5789. height: math.unit(60, "meters"),
  5790. default: true
  5791. },
  5792. {
  5793. name: "Megamacro",
  5794. height: math.unit(10000, "kilometers")
  5795. },
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5800. {
  5801. front: {
  5802. height: math.unit(7, "feet"),
  5803. weight: math.unit(250, "lbs"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/archy/front.svg"
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(1, "inch")
  5814. },
  5815. {
  5816. name: "Shorty",
  5817. height: math.unit(5, "feet")
  5818. },
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(7, "feet")
  5822. },
  5823. {
  5824. name: "Macro",
  5825. height: math.unit(600, "meters"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Megamacro",
  5830. height: math.unit(1, "mile")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(1.65, "meters"),
  5839. weight: math.unit(74, "kg"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/berri/front.svg",
  5843. extra: 857 / 837,
  5844. bottom: 18 / 877
  5845. }
  5846. },
  5847. bum: {
  5848. height: math.unit(1.46, "feet"),
  5849. name: "Bum",
  5850. image: {
  5851. source: "./media/characters/berri/bum.svg"
  5852. }
  5853. },
  5854. mouth: {
  5855. height: math.unit(0.44, "feet"),
  5856. name: "Mouth",
  5857. image: {
  5858. source: "./media/characters/berri/mouth.svg"
  5859. }
  5860. },
  5861. paw: {
  5862. height: math.unit(0.826, "feet"),
  5863. name: "Paw",
  5864. image: {
  5865. source: "./media/characters/berri/paw.svg"
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(1.65, "meters")
  5873. },
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(60, "m"),
  5877. default: true
  5878. },
  5879. {
  5880. name: "Megamacro",
  5881. height: math.unit(9.213, "km")
  5882. },
  5883. {
  5884. name: "Planet Eater",
  5885. height: math.unit(489, "megameters")
  5886. },
  5887. {
  5888. name: "Teramacro",
  5889. height: math.unit(2471635000000, "meters")
  5890. },
  5891. {
  5892. name: "Examacro",
  5893. height: math.unit(8.0624e+26, "meters")
  5894. }
  5895. ]
  5896. ))
  5897. characterMakers.push(() => makeCharacter(
  5898. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5899. {
  5900. front: {
  5901. height: math.unit(1.72, "meters"),
  5902. weight: math.unit(68, "kg"),
  5903. name: "Front",
  5904. image: {
  5905. source: "./media/characters/lexi/front.svg"
  5906. }
  5907. }
  5908. },
  5909. [
  5910. {
  5911. name: "Very Smol",
  5912. height: math.unit(10, "mm")
  5913. },
  5914. {
  5915. name: "Micro",
  5916. height: math.unit(6.8, "cm"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(1.72, "m")
  5922. }
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5927. {
  5928. front: {
  5929. height: math.unit(1.69, "meters"),
  5930. weight: math.unit(68, "kg"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/martin/front.svg",
  5934. extra: 596 / 581
  5935. }
  5936. }
  5937. },
  5938. [
  5939. {
  5940. name: "Micro",
  5941. height: math.unit(6.85, "cm"),
  5942. default: true
  5943. },
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(1.69, "m")
  5947. }
  5948. ]
  5949. ))
  5950. characterMakers.push(() => makeCharacter(
  5951. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5952. {
  5953. front: {
  5954. height: math.unit(1.69, "meters"),
  5955. weight: math.unit(68, "kg"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/juno/front.svg"
  5959. }
  5960. }
  5961. },
  5962. [
  5963. {
  5964. name: "Micro",
  5965. height: math.unit(7, "cm")
  5966. },
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(1.89, "m")
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(353, "meters"),
  5974. default: true
  5975. }
  5976. ]
  5977. ))
  5978. characterMakers.push(() => makeCharacter(
  5979. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5980. {
  5981. front: {
  5982. height: math.unit(1.93, "meters"),
  5983. weight: math.unit(83, "kg"),
  5984. name: "Front",
  5985. image: {
  5986. source: "./media/characters/samantha/front.svg"
  5987. }
  5988. },
  5989. frontClothed: {
  5990. height: math.unit(1.93, "meters"),
  5991. weight: math.unit(83, "kg"),
  5992. name: "Front (Clothed)",
  5993. image: {
  5994. source: "./media/characters/samantha/front-clothed.svg"
  5995. }
  5996. },
  5997. back: {
  5998. height: math.unit(1.93, "meters"),
  5999. weight: math.unit(83, "kg"),
  6000. name: "Back",
  6001. image: {
  6002. source: "./media/characters/samantha/back.svg"
  6003. }
  6004. },
  6005. },
  6006. [
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(1.93, "m")
  6010. },
  6011. {
  6012. name: "Macro",
  6013. height: math.unit(74, "meters"),
  6014. default: true
  6015. },
  6016. {
  6017. name: "Macro+",
  6018. height: math.unit(223, "meters"),
  6019. },
  6020. {
  6021. name: "Megamacro",
  6022. height: math.unit(8381, "meters"),
  6023. },
  6024. {
  6025. name: "Megamacro+",
  6026. height: math.unit(12000, "kilometers")
  6027. },
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6032. {
  6033. front: {
  6034. height: math.unit(1.92, "meters"),
  6035. weight: math.unit(80, "kg"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/dr-clay/front.svg"
  6039. }
  6040. },
  6041. frontClothed: {
  6042. height: math.unit(1.92, "meters"),
  6043. weight: math.unit(80, "kg"),
  6044. name: "Front (Clothed)",
  6045. image: {
  6046. source: "./media/characters/dr-clay/front-clothed.svg"
  6047. }
  6048. }
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(1.92, "m")
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(214, "meters"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Macro+",
  6062. height: math.unit(12.237, "meters"),
  6063. },
  6064. {
  6065. name: "Megamacro",
  6066. height: math.unit(557, "megameters"),
  6067. },
  6068. {
  6069. name: "Unimaginable",
  6070. height: math.unit(120e9, "lightyears")
  6071. },
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6076. {
  6077. front: {
  6078. height: math.unit(2, "meters"),
  6079. weight: math.unit(80, "kg"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6083. }
  6084. }
  6085. },
  6086. [
  6087. {
  6088. name: "Teramacro",
  6089. height: math.unit(500000, "lightyears"),
  6090. default: true
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(2, "meters"),
  6099. weight: math.unit(150, "kg"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/vemus/front.svg",
  6103. extra: 2384 / 2084,
  6104. bottom: 0.0123
  6105. }
  6106. }
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(3.75, "meters"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Big",
  6116. height: math.unit(8, "meters")
  6117. },
  6118. {
  6119. name: "Macro",
  6120. height: math.unit(100, "meters")
  6121. },
  6122. {
  6123. name: "Macro+",
  6124. height: math.unit(1500, "meters")
  6125. },
  6126. {
  6127. name: "Stellar",
  6128. height: math.unit(14e8, "meters")
  6129. },
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6134. {
  6135. front: {
  6136. height: math.unit(2, "meters"),
  6137. weight: math.unit(70, "kg"),
  6138. name: "Front",
  6139. image: {
  6140. source: "./media/characters/beherit/front.svg",
  6141. extra: 1408 / 1242
  6142. }
  6143. }
  6144. },
  6145. [
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(6, "feet")
  6149. },
  6150. {
  6151. name: "Lorg",
  6152. height: math.unit(25, "feet"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Lorger",
  6157. height: math.unit(75, "feet")
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(200, "meters")
  6162. },
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6167. {
  6168. front: {
  6169. height: math.unit(2, "meters"),
  6170. weight: math.unit(150, "kg"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/everett/front.svg",
  6174. extra: 2038 / 1737,
  6175. bottom: 0.03
  6176. }
  6177. },
  6178. paw: {
  6179. height: math.unit(2 / 3.6, "meters"),
  6180. name: "Paw",
  6181. image: {
  6182. source: "./media/characters/everett/paw.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(15, "feet"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Lorg",
  6194. height: math.unit(70, "feet"),
  6195. default: true
  6196. },
  6197. {
  6198. name: "Lorger",
  6199. height: math.unit(250, "feet")
  6200. },
  6201. {
  6202. name: "Macro",
  6203. height: math.unit(500, "meters")
  6204. },
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6209. {
  6210. front: {
  6211. height: math.unit(2, "meters"),
  6212. weight: math.unit(86, "kg"),
  6213. name: "Front",
  6214. image: {
  6215. source: "./media/characters/rose-lion/front.svg"
  6216. }
  6217. },
  6218. bent: {
  6219. height: math.unit(2 / 1.4288, "meters"),
  6220. weight: math.unit(86, "kg"),
  6221. name: "Bent",
  6222. image: {
  6223. source: "./media/characters/rose-lion/bent.svg"
  6224. }
  6225. }
  6226. },
  6227. [
  6228. {
  6229. name: "Mini-Micro",
  6230. height: math.unit(1, "cm")
  6231. },
  6232. {
  6233. name: "Micro",
  6234. height: math.unit(3.5, "inches"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(6 + 1 / 6, "feet")
  6240. },
  6241. {
  6242. name: "Mini-Macro",
  6243. height: math.unit(9 + 10 / 12, "feet")
  6244. },
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6249. {
  6250. front: {
  6251. height: math.unit(2, "meters"),
  6252. weight: math.unit(350, "lbs"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/regal/front.svg"
  6256. }
  6257. },
  6258. back: {
  6259. height: math.unit(2, "meters"),
  6260. weight: math.unit(350, "lbs"),
  6261. name: "Back",
  6262. image: {
  6263. source: "./media/characters/regal/back.svg"
  6264. }
  6265. },
  6266. },
  6267. [
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(350, "feet"),
  6271. default: true
  6272. }
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6277. {
  6278. front: {
  6279. height: math.unit(4 + 11 / 12, "feet"),
  6280. weight: math.unit(100, "lbs"),
  6281. name: "Front",
  6282. image: {
  6283. source: "./media/characters/opal/front.svg"
  6284. }
  6285. },
  6286. frontAlt: {
  6287. height: math.unit(4 + 11 / 12, "feet"),
  6288. weight: math.unit(100, "lbs"),
  6289. name: "Front (Alt)",
  6290. image: {
  6291. source: "./media/characters/opal/front-alt.svg"
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Small",
  6298. height: math.unit(4 + 11 / 12, "feet")
  6299. },
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(20, "feet"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Macro",
  6307. height: math.unit(120, "feet")
  6308. },
  6309. {
  6310. name: "Megamacro",
  6311. height: math.unit(80, "miles")
  6312. },
  6313. {
  6314. name: "True Size",
  6315. height: math.unit(100000, "lightyears")
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6321. {
  6322. front: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(200, "lbs"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/vector-wuff/front.svg"
  6328. }
  6329. }
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(2.8, "meters")
  6335. },
  6336. {
  6337. name: "Macro",
  6338. height: math.unit(450, "meters"),
  6339. default: true
  6340. },
  6341. {
  6342. name: "Megamacro",
  6343. height: math.unit(15, "kilometers")
  6344. }
  6345. ]
  6346. ))
  6347. characterMakers.push(() => makeCharacter(
  6348. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6349. {
  6350. front: {
  6351. height: math.unit(6, "feet"),
  6352. weight: math.unit(256, "lbs"),
  6353. name: "Front",
  6354. image: {
  6355. source: "./media/characters/dannik/front.svg"
  6356. }
  6357. }
  6358. },
  6359. [
  6360. {
  6361. name: "Macro",
  6362. height: math.unit(69.57, "meters"),
  6363. default: true
  6364. },
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6369. {
  6370. front: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(120, "lbs"),
  6373. name: "Front",
  6374. image: {
  6375. source: "./media/characters/azura-saharah/front.svg"
  6376. }
  6377. },
  6378. back: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(120, "lbs"),
  6381. name: "Back",
  6382. image: {
  6383. source: "./media/characters/azura-saharah/back.svg"
  6384. }
  6385. },
  6386. },
  6387. [
  6388. {
  6389. name: "Macro",
  6390. height: math.unit(100, "feet"),
  6391. default: true
  6392. },
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6397. {
  6398. side: {
  6399. height: math.unit(5 + 4 / 12, "feet"),
  6400. weight: math.unit(163, "lbs"),
  6401. name: "Side",
  6402. image: {
  6403. source: "./media/characters/kennedy/side.svg"
  6404. }
  6405. }
  6406. },
  6407. [
  6408. {
  6409. name: "Standard Doggo",
  6410. height: math.unit(5 + 4 / 12, "feet")
  6411. },
  6412. {
  6413. name: "Big Doggo",
  6414. height: math.unit(25 + 3 / 12, "feet"),
  6415. default: true
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6421. {
  6422. front: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(90, "lbs"),
  6425. name: "Front",
  6426. image: {
  6427. source: "./media/characters/odi-lunar/front.svg"
  6428. }
  6429. }
  6430. },
  6431. [
  6432. {
  6433. name: "Micro",
  6434. height: math.unit(3, "inches"),
  6435. default: true
  6436. },
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(5.5, "feet")
  6440. }
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6445. {
  6446. back: {
  6447. height: math.unit(6, "feet"),
  6448. weight: math.unit(220, "lbs"),
  6449. name: "Back",
  6450. image: {
  6451. source: "./media/characters/mandake/back.svg"
  6452. }
  6453. }
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(7, "feet"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(78, "feet")
  6464. },
  6465. {
  6466. name: "Macro+",
  6467. height: math.unit(300, "meters")
  6468. },
  6469. {
  6470. name: "Macro++",
  6471. height: math.unit(2400, "feet")
  6472. },
  6473. {
  6474. name: "Megamacro",
  6475. height: math.unit(5167, "meters")
  6476. },
  6477. {
  6478. name: "Gigamacro",
  6479. height: math.unit(41769, "miles")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(6, "feet"),
  6488. weight: math.unit(120, "lbs"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/yozey/front.svg"
  6492. }
  6493. },
  6494. frontAlt: {
  6495. height: math.unit(6, "feet"),
  6496. weight: math.unit(120, "lbs"),
  6497. name: "Front (Alt)",
  6498. image: {
  6499. source: "./media/characters/yozey/front-alt.svg"
  6500. }
  6501. },
  6502. side: {
  6503. height: math.unit(6, "feet"),
  6504. weight: math.unit(120, "lbs"),
  6505. name: "Side",
  6506. image: {
  6507. source: "./media/characters/yozey/side.svg"
  6508. }
  6509. },
  6510. },
  6511. [
  6512. {
  6513. name: "Micro",
  6514. height: math.unit(3, "inches"),
  6515. default: true
  6516. },
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(6, "feet")
  6520. }
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6525. {
  6526. front: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(103, "lbs"),
  6529. name: "Front",
  6530. image: {
  6531. source: "./media/characters/valeska-voss/front.svg"
  6532. }
  6533. }
  6534. },
  6535. [
  6536. {
  6537. name: "Mini-Sized Sub",
  6538. height: math.unit(3.1, "inches")
  6539. },
  6540. {
  6541. name: "Mid-Sized Sub",
  6542. height: math.unit(6.2, "inches")
  6543. },
  6544. {
  6545. name: "Full-Sized Sub",
  6546. height: math.unit(9.3, "inches")
  6547. },
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(5 + 2 / 12, "foot"),
  6551. default: true
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6557. {
  6558. front: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(160, "lbs"),
  6561. name: "Front",
  6562. image: {
  6563. source: "./media/characters/gene-zeta/front.svg",
  6564. extra: 3006/2826,
  6565. bottom: 182/3188
  6566. }
  6567. }
  6568. },
  6569. [
  6570. {
  6571. name: "Micro",
  6572. height: math.unit(6, "inches")
  6573. },
  6574. {
  6575. name: "Normal",
  6576. height: math.unit(5 + 11/12, "foot"),
  6577. default: true
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(140, "feet")
  6582. },
  6583. {
  6584. name: "Supercharged",
  6585. height: math.unit(2500, "feet")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6591. {
  6592. front: {
  6593. height: math.unit(6, "feet"),
  6594. weight: math.unit(350, "lbs"),
  6595. name: "Front",
  6596. image: {
  6597. source: "./media/characters/razinox/front.svg",
  6598. extra: 1686 / 1548,
  6599. bottom: 28.2 / 1868
  6600. }
  6601. },
  6602. back: {
  6603. height: math.unit(6, "feet"),
  6604. weight: math.unit(350, "lbs"),
  6605. name: "Back",
  6606. image: {
  6607. source: "./media/characters/razinox/back.svg",
  6608. extra: 1660 / 1590,
  6609. bottom: 15 / 1665
  6610. }
  6611. },
  6612. },
  6613. [
  6614. {
  6615. name: "Normal",
  6616. height: math.unit(10 + 8 / 12, "foot")
  6617. },
  6618. {
  6619. name: "Minimacro",
  6620. height: math.unit(15, "foot")
  6621. },
  6622. {
  6623. name: "Macro",
  6624. height: math.unit(60, "foot"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Megamacro",
  6629. height: math.unit(5, "miles")
  6630. },
  6631. {
  6632. name: "Gigamacro",
  6633. height: math.unit(6000, "miles")
  6634. },
  6635. ]
  6636. ))
  6637. characterMakers.push(() => makeCharacter(
  6638. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6639. {
  6640. front: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(150, "lbs"),
  6643. name: "Front",
  6644. image: {
  6645. source: "./media/characters/cobalt/front.svg"
  6646. }
  6647. }
  6648. },
  6649. [
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(8 + 1 / 12, "foot")
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(111, "foot"),
  6657. default: true
  6658. },
  6659. {
  6660. name: "Supracosmic",
  6661. height: math.unit(1e42, "feet")
  6662. },
  6663. ]
  6664. ))
  6665. characterMakers.push(() => makeCharacter(
  6666. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6667. {
  6668. front: {
  6669. height: math.unit(6, "feet"),
  6670. weight: math.unit(140, "lbs"),
  6671. name: "Front",
  6672. image: {
  6673. source: "./media/characters/amanda/front.svg"
  6674. }
  6675. }
  6676. },
  6677. [
  6678. {
  6679. name: "Micro",
  6680. height: math.unit(5, "inches"),
  6681. default: true
  6682. },
  6683. ]
  6684. ))
  6685. characterMakers.push(() => makeCharacter(
  6686. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6687. {
  6688. front: {
  6689. height: math.unit(5.59, "feet"),
  6690. weight: math.unit(250, "lbs"),
  6691. name: "Front",
  6692. image: {
  6693. source: "./media/characters/teal/front.svg"
  6694. }
  6695. },
  6696. frontAlt: {
  6697. height: math.unit(6, "feet"),
  6698. weight: math.unit(250, "lbs"),
  6699. name: "Front (Alt)",
  6700. image: {
  6701. source: "./media/characters/teal/front-alt.svg",
  6702. bottom: 0.04,
  6703. extra: 1
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(12, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(300, "feet")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6721. {
  6722. frontCat: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(180, "lbs"),
  6725. name: "Front (Cat)",
  6726. image: {
  6727. source: "./media/characters/ravin-amulet/front-cat.svg"
  6728. }
  6729. },
  6730. frontCatAlt: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(180, "lbs"),
  6733. name: "Front (Alt, Cat)",
  6734. image: {
  6735. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6736. }
  6737. },
  6738. frontWerewolf: {
  6739. height: math.unit(6 * 1.2, "feet"),
  6740. weight: math.unit(225, "lbs"),
  6741. name: "Front (Werewolf)",
  6742. image: {
  6743. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6744. }
  6745. },
  6746. backWerewolf: {
  6747. height: math.unit(6 * 1.2, "feet"),
  6748. weight: math.unit(225, "lbs"),
  6749. name: "Back (Werewolf)",
  6750. image: {
  6751. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Nano",
  6758. height: math.unit(1, "micrometer")
  6759. },
  6760. {
  6761. name: "Micro",
  6762. height: math.unit(1, "inch")
  6763. },
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(6, "feet"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Macro",
  6771. height: math.unit(60, "feet")
  6772. }
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(165, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/fluoresce/front.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Micro",
  6790. height: math.unit(6, "cm")
  6791. },
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(5 + 7 / 12, "feet"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Macro",
  6799. height: math.unit(56, "feet")
  6800. },
  6801. {
  6802. name: "Megamacro",
  6803. height: math.unit(1.9, "miles")
  6804. },
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(9 + 6 / 12, "feet"),
  6812. weight: math.unit(523, "lbs"),
  6813. name: "Side",
  6814. image: {
  6815. source: "./media/characters/aurora/side.svg"
  6816. }
  6817. }
  6818. },
  6819. [
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(9 + 6 / 12, "feet")
  6823. },
  6824. {
  6825. name: "Macro",
  6826. height: math.unit(96, "feet"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Macro+",
  6831. height: math.unit(243, "feet")
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(194, "cm"),
  6840. weight: math.unit(90, "kg"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/ranek/front.svg"
  6844. }
  6845. },
  6846. side: {
  6847. height: math.unit(194, "cm"),
  6848. weight: math.unit(90, "kg"),
  6849. name: "Side",
  6850. image: {
  6851. source: "./media/characters/ranek/side.svg"
  6852. }
  6853. },
  6854. back: {
  6855. height: math.unit(194, "cm"),
  6856. weight: math.unit(90, "kg"),
  6857. name: "Back",
  6858. image: {
  6859. source: "./media/characters/ranek/back.svg"
  6860. }
  6861. },
  6862. feral: {
  6863. height: math.unit(30, "cm"),
  6864. weight: math.unit(1.6, "lbs"),
  6865. name: "Feral",
  6866. image: {
  6867. source: "./media/characters/ranek/feral.svg"
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(194, "cm"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(100, "meters")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(5 + 6 / 12, "feet"),
  6888. weight: math.unit(153, "lbs"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/andrew-cooper/front.svg"
  6892. }
  6893. },
  6894. },
  6895. [
  6896. {
  6897. name: "Nano",
  6898. height: math.unit(1, "mm")
  6899. },
  6900. {
  6901. name: "Micro",
  6902. height: math.unit(2, "inches")
  6903. },
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(5 + 6 / 12, "feet"),
  6907. default: true
  6908. }
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(180, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/akane-sato/front.svg",
  6920. extra: 1219 / 1140
  6921. }
  6922. },
  6923. back: {
  6924. height: math.unit(6, "feet"),
  6925. weight: math.unit(180, "lbs"),
  6926. name: "Back",
  6927. image: {
  6928. source: "./media/characters/akane-sato/back.svg",
  6929. extra: 1219 / 1170
  6930. }
  6931. },
  6932. },
  6933. [
  6934. {
  6935. name: "Normal",
  6936. height: math.unit(2.5, "meters")
  6937. },
  6938. {
  6939. name: "Macro",
  6940. height: math.unit(250, "meters"),
  6941. default: true
  6942. },
  6943. {
  6944. name: "Megamacro",
  6945. height: math.unit(25, "km")
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6951. {
  6952. front: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(65, "kg"),
  6955. name: "Front",
  6956. image: {
  6957. source: "./media/characters/rook/front.svg",
  6958. extra: 960 / 950
  6959. }
  6960. }
  6961. },
  6962. [
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(8.8, "feet")
  6966. },
  6967. {
  6968. name: "Macro",
  6969. height: math.unit(88, "feet"),
  6970. default: true
  6971. },
  6972. {
  6973. name: "Megamacro",
  6974. height: math.unit(8, "miles")
  6975. },
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6980. {
  6981. front: {
  6982. height: math.unit(12 + 2 / 12, "feet"),
  6983. weight: math.unit(808, "lbs"),
  6984. name: "Front",
  6985. image: {
  6986. source: "./media/characters/prodigy/front.svg"
  6987. }
  6988. }
  6989. },
  6990. [
  6991. {
  6992. name: "Normal",
  6993. height: math.unit(12 + 2 / 12, "feet"),
  6994. default: true
  6995. },
  6996. {
  6997. name: "Macro",
  6998. height: math.unit(143, "feet")
  6999. },
  7000. {
  7001. name: "Macro+",
  7002. height: math.unit(400, "feet")
  7003. },
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7008. {
  7009. front: {
  7010. height: math.unit(6, "feet"),
  7011. weight: math.unit(225, "lbs"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/daniel/front.svg"
  7015. }
  7016. },
  7017. leaning: {
  7018. height: math.unit(6, "feet"),
  7019. weight: math.unit(225, "lbs"),
  7020. name: "Leaning",
  7021. image: {
  7022. source: "./media/characters/daniel/leaning.svg"
  7023. }
  7024. },
  7025. },
  7026. [
  7027. {
  7028. name: "Macro",
  7029. height: math.unit(1000, "feet"),
  7030. default: true
  7031. },
  7032. ]
  7033. ))
  7034. characterMakers.push(() => makeCharacter(
  7035. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7036. {
  7037. front: {
  7038. height: math.unit(6, "feet"),
  7039. weight: math.unit(88, "lbs"),
  7040. name: "Front",
  7041. image: {
  7042. source: "./media/characters/chiros/front.svg",
  7043. extra: 306 / 226
  7044. }
  7045. },
  7046. side: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(88, "lbs"),
  7049. name: "Side",
  7050. image: {
  7051. source: "./media/characters/chiros/side.svg",
  7052. extra: 306 / 226
  7053. }
  7054. },
  7055. },
  7056. [
  7057. {
  7058. name: "Normal",
  7059. height: math.unit(6, "cm"),
  7060. default: true
  7061. },
  7062. ]
  7063. ))
  7064. characterMakers.push(() => makeCharacter(
  7065. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7066. {
  7067. front: {
  7068. height: math.unit(6, "feet"),
  7069. weight: math.unit(100, "lbs"),
  7070. name: "Front",
  7071. image: {
  7072. source: "./media/characters/selka/front.svg",
  7073. extra: 947 / 887
  7074. }
  7075. }
  7076. },
  7077. [
  7078. {
  7079. name: "Normal",
  7080. height: math.unit(5, "cm"),
  7081. default: true
  7082. },
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7087. {
  7088. front: {
  7089. height: math.unit(8 + 3 / 12, "feet"),
  7090. weight: math.unit(424, "lbs"),
  7091. name: "Front",
  7092. image: {
  7093. source: "./media/characters/verin/front.svg",
  7094. extra: 1845 / 1550
  7095. }
  7096. },
  7097. frontArmored: {
  7098. height: math.unit(8 + 3 / 12, "feet"),
  7099. weight: math.unit(424, "lbs"),
  7100. name: "Front (Armored)",
  7101. image: {
  7102. source: "./media/characters/verin/front-armor.svg",
  7103. extra: 1845 / 1550,
  7104. bottom: 0.01
  7105. }
  7106. },
  7107. back: {
  7108. height: math.unit(8 + 3 / 12, "feet"),
  7109. weight: math.unit(424, "lbs"),
  7110. name: "Back",
  7111. image: {
  7112. source: "./media/characters/verin/back.svg",
  7113. bottom: 0.1,
  7114. extra: 1
  7115. }
  7116. },
  7117. foot: {
  7118. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7119. name: "Foot",
  7120. image: {
  7121. source: "./media/characters/verin/foot.svg"
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(8 + 3 / 12, "feet")
  7129. },
  7130. {
  7131. name: "Minimacro",
  7132. height: math.unit(21, "feet"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(626, "feet")
  7138. },
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(2.718, "meters"),
  7146. weight: math.unit(150, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/sovrim-terraquian/front.svg"
  7150. }
  7151. },
  7152. back: {
  7153. height: math.unit(2.718, "meters"),
  7154. weight: math.unit(150, "lbs"),
  7155. name: "Back",
  7156. image: {
  7157. source: "./media/characters/sovrim-terraquian/back.svg"
  7158. }
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Micro",
  7164. height: math.unit(2, "inches")
  7165. },
  7166. {
  7167. name: "Small",
  7168. height: math.unit(1, "meter")
  7169. },
  7170. {
  7171. name: "Normal",
  7172. height: math.unit(Math.E, "meters"),
  7173. default: true
  7174. },
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(20, "meters")
  7178. },
  7179. {
  7180. name: "Macro+",
  7181. height: math.unit(400, "meters")
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7187. {
  7188. front: {
  7189. height: math.unit(7, "feet"),
  7190. weight: math.unit(489, "lbs"),
  7191. name: "Front",
  7192. image: {
  7193. source: "./media/characters/reece-silvermane/front.svg",
  7194. bottom: 0.02,
  7195. extra: 1
  7196. }
  7197. },
  7198. },
  7199. [
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(1.5, "miles"),
  7203. default: true
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(78, "kg"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/kane/front.svg",
  7216. extra: 978 / 899
  7217. }
  7218. },
  7219. },
  7220. [
  7221. {
  7222. name: "Normal",
  7223. height: math.unit(2.1, "m"),
  7224. },
  7225. {
  7226. name: "Macro",
  7227. height: math.unit(1, "km"),
  7228. default: true
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(200, "kg"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/tegon/front.svg",
  7241. bottom: 0.01,
  7242. extra: 1
  7243. }
  7244. },
  7245. },
  7246. [
  7247. {
  7248. name: "Micro",
  7249. height: math.unit(1, "inch")
  7250. },
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(6 + 3 / 12, "feet"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(300, "feet")
  7259. },
  7260. {
  7261. name: "Megamacro",
  7262. height: math.unit(69, "miles")
  7263. },
  7264. ]
  7265. ))
  7266. characterMakers.push(() => makeCharacter(
  7267. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7268. {
  7269. side: {
  7270. height: math.unit(6, "feet"),
  7271. weight: math.unit(2304, "lbs"),
  7272. name: "Side",
  7273. image: {
  7274. source: "./media/characters/arcturax/side.svg",
  7275. extra: 790 / 376,
  7276. bottom: 0.01
  7277. }
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "Micro",
  7283. height: math.unit(2, "inch")
  7284. },
  7285. {
  7286. name: "Normal",
  7287. height: math.unit(6, "feet")
  7288. },
  7289. {
  7290. name: "Macro",
  7291. height: math.unit(39, "feet"),
  7292. default: true
  7293. },
  7294. {
  7295. name: "Megamacro",
  7296. height: math.unit(7, "miles")
  7297. },
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7302. {
  7303. front: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(50, "lbs"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/sentri/front.svg",
  7309. extra: 1750 / 1570,
  7310. bottom: 0.025
  7311. }
  7312. },
  7313. frontAlt: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(50, "lbs"),
  7316. name: "Front (Alt)",
  7317. image: {
  7318. source: "./media/characters/sentri/front-alt.svg",
  7319. extra: 1750 / 1570,
  7320. bottom: 0.025
  7321. }
  7322. },
  7323. },
  7324. [
  7325. {
  7326. name: "Normal",
  7327. height: math.unit(15, "feet"),
  7328. default: true
  7329. },
  7330. {
  7331. name: "Macro",
  7332. height: math.unit(2500, "feet")
  7333. }
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(5 + 8 / 12, "feet"),
  7341. weight: math.unit(130, "lbs"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/corvin/front.svg",
  7345. extra: 1803 / 1629
  7346. }
  7347. },
  7348. frontShirt: {
  7349. height: math.unit(5 + 8 / 12, "feet"),
  7350. weight: math.unit(130, "lbs"),
  7351. name: "Front (Shirt)",
  7352. image: {
  7353. source: "./media/characters/corvin/front-shirt.svg",
  7354. extra: 1803 / 1629
  7355. }
  7356. },
  7357. frontPoncho: {
  7358. height: math.unit(5 + 8 / 12, "feet"),
  7359. weight: math.unit(130, "lbs"),
  7360. name: "Front (Poncho)",
  7361. image: {
  7362. source: "./media/characters/corvin/front-poncho.svg",
  7363. extra: 1803 / 1629
  7364. }
  7365. },
  7366. side: {
  7367. height: math.unit(5 + 8 / 12, "feet"),
  7368. weight: math.unit(130, "lbs"),
  7369. name: "Side",
  7370. image: {
  7371. source: "./media/characters/corvin/side.svg",
  7372. extra: 1012 / 945
  7373. }
  7374. },
  7375. back: {
  7376. height: math.unit(5 + 8 / 12, "feet"),
  7377. weight: math.unit(130, "lbs"),
  7378. name: "Back",
  7379. image: {
  7380. source: "./media/characters/corvin/back.svg",
  7381. extra: 1803 / 1629
  7382. }
  7383. },
  7384. },
  7385. [
  7386. {
  7387. name: "Micro",
  7388. height: math.unit(3, "inches")
  7389. },
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(5 + 8 / 12, "feet")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(300, "feet"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Megamacro",
  7401. height: math.unit(500, "miles")
  7402. }
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(6, "feet"),
  7410. weight: math.unit(135, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/q/front.svg",
  7414. extra: 854 / 752,
  7415. bottom: 0.005
  7416. }
  7417. },
  7418. back: {
  7419. height: math.unit(6, "feet"),
  7420. weight: math.unit(130, "lbs"),
  7421. name: "Back",
  7422. image: {
  7423. source: "./media/characters/q/back.svg",
  7424. extra: 854 / 752
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Macro",
  7431. height: math.unit(90, "feet"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Extra Macro",
  7436. height: math.unit(300, "feet"),
  7437. },
  7438. {
  7439. name: "BIG WALF",
  7440. height: math.unit(750, "feet"),
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(150, "lbs"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/carley/front.svg",
  7453. extra: 3927 / 3540,
  7454. bottom: 29.2 / 735
  7455. }
  7456. }
  7457. },
  7458. [
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(6 + 3 / 12, "feet")
  7462. },
  7463. {
  7464. name: "Macro",
  7465. height: math.unit(185, "feet"),
  7466. default: true
  7467. },
  7468. {
  7469. name: "Megamacro",
  7470. height: math.unit(8, "miles"),
  7471. },
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(3, "feet"),
  7479. weight: math.unit(28, "lbs"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/citrine/front.svg"
  7483. }
  7484. }
  7485. },
  7486. [
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(3, "feet"),
  7490. default: true
  7491. }
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7496. {
  7497. front: {
  7498. height: math.unit(14, "feet"),
  7499. weight: math.unit(1450, "kg"),
  7500. capacity: math.unit(15, "people"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/aura-starwind/front.svg",
  7504. extra: 1455 / 1335
  7505. }
  7506. },
  7507. side: {
  7508. height: math.unit(14, "feet"),
  7509. weight: math.unit(1450, "kg"),
  7510. capacity: math.unit(15, "people"),
  7511. name: "Side",
  7512. image: {
  7513. source: "./media/characters/aura-starwind/side.svg",
  7514. extra: 1654 / 1497
  7515. }
  7516. },
  7517. taur: {
  7518. height: math.unit(18, "feet"),
  7519. weight: math.unit(5500, "kg"),
  7520. capacity: math.unit(50, "people"),
  7521. name: "Taur",
  7522. image: {
  7523. source: "./media/characters/aura-starwind/taur.svg",
  7524. extra: 1760 / 1650
  7525. }
  7526. },
  7527. feral: {
  7528. height: math.unit(46, "feet"),
  7529. weight: math.unit(25000, "kg"),
  7530. capacity: math.unit(120, "people"),
  7531. name: "Feral",
  7532. image: {
  7533. source: "./media/characters/aura-starwind/feral.svg"
  7534. }
  7535. },
  7536. },
  7537. [
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(14, "feet"),
  7541. default: true
  7542. },
  7543. {
  7544. name: "Macro",
  7545. height: math.unit(50, "meters")
  7546. },
  7547. {
  7548. name: "Megamacro",
  7549. height: math.unit(5000, "meters")
  7550. },
  7551. {
  7552. name: "Gigamacro",
  7553. height: math.unit(100000, "kilometers")
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(2 + 7 / 12, "feet"),
  7562. weight: math.unit(32, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/rivet/front.svg",
  7566. extra: 1716 / 1658,
  7567. bottom: 0.03
  7568. }
  7569. },
  7570. foot: {
  7571. height: math.unit(0.551, "feet"),
  7572. name: "Rivet's Foot",
  7573. image: {
  7574. source: "./media/characters/rivet/foot.svg"
  7575. },
  7576. rename: true
  7577. }
  7578. },
  7579. [
  7580. {
  7581. name: "Micro",
  7582. height: math.unit(1.5, "inches"),
  7583. },
  7584. {
  7585. name: "Normal",
  7586. height: math.unit(2 + 7 / 12, "feet"),
  7587. default: true
  7588. },
  7589. {
  7590. name: "Macro",
  7591. height: math.unit(85, "feet")
  7592. },
  7593. {
  7594. name: "Megamacro",
  7595. height: math.unit(2.2, "km")
  7596. }
  7597. ]
  7598. ))
  7599. characterMakers.push(() => makeCharacter(
  7600. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7601. {
  7602. front: {
  7603. height: math.unit(5 + 9 / 12, "feet"),
  7604. weight: math.unit(150, "lbs"),
  7605. name: "Front",
  7606. image: {
  7607. source: "./media/characters/coffee/front.svg",
  7608. extra: 3666 / 3032,
  7609. bottom: 0.04
  7610. }
  7611. },
  7612. foot: {
  7613. height: math.unit(1.29, "feet"),
  7614. name: "Foot",
  7615. image: {
  7616. source: "./media/characters/coffee/foot.svg"
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Micro",
  7623. height: math.unit(2, "inches"),
  7624. },
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(5 + 9 / 12, "feet"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Macro",
  7632. height: math.unit(800, "feet")
  7633. },
  7634. {
  7635. name: "Megamacro",
  7636. height: math.unit(25, "miles")
  7637. }
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7642. {
  7643. front: {
  7644. height: math.unit(6, "feet"),
  7645. weight: math.unit(200, "lbs"),
  7646. name: "Front",
  7647. image: {
  7648. source: "./media/characters/chari-gal/front.svg",
  7649. extra: 1568 / 1385,
  7650. bottom: 0.047
  7651. }
  7652. },
  7653. gigantamax: {
  7654. height: math.unit(6 * 16, "feet"),
  7655. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7656. name: "Gigantamax",
  7657. image: {
  7658. source: "./media/characters/chari-gal/gigantamax.svg",
  7659. extra: 1124 / 888,
  7660. bottom: 0.03
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(5 + 7 / 12, "feet")
  7668. },
  7669. {
  7670. name: "Macro",
  7671. height: math.unit(200, "feet"),
  7672. default: true
  7673. }
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7678. {
  7679. front: {
  7680. height: math.unit(6, "feet"),
  7681. weight: math.unit(150, "lbs"),
  7682. name: "Front",
  7683. image: {
  7684. source: "./media/characters/nova/front.svg",
  7685. extra: 5000 / 4722,
  7686. bottom: 0.02
  7687. }
  7688. }
  7689. },
  7690. [
  7691. {
  7692. name: "Micro-",
  7693. height: math.unit(0.8, "inches")
  7694. },
  7695. {
  7696. name: "Micro",
  7697. height: math.unit(2, "inches"),
  7698. default: true
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(3 + 1 / 12, "feet"),
  7707. weight: math.unit(21.7, "lbs"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/argent/front.svg",
  7711. extra: 1471 / 1331,
  7712. bottom: 100.8 / 1575.5
  7713. }
  7714. }
  7715. },
  7716. [
  7717. {
  7718. name: "Micro",
  7719. height: math.unit(2, "inches")
  7720. },
  7721. {
  7722. name: "Normal",
  7723. height: math.unit(3 + 1 / 12, "feet"),
  7724. default: true
  7725. },
  7726. {
  7727. name: "Macro",
  7728. height: math.unit(120, "feet")
  7729. },
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7734. {
  7735. lamp: {
  7736. height: math.unit(7 * 1559 / 989, "feet"),
  7737. name: "Magic Lamp",
  7738. image: {
  7739. source: "./media/characters/mira-al-cul/lamp.svg",
  7740. extra: 1617 / 1559
  7741. }
  7742. },
  7743. front: {
  7744. height: math.unit(7, "feet"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/mira-al-cul/front.svg",
  7748. extra: 1044 / 990
  7749. }
  7750. },
  7751. },
  7752. [
  7753. {
  7754. name: "Heavily Restricted",
  7755. height: math.unit(7 * 1559 / 989, "feet")
  7756. },
  7757. {
  7758. name: "Freshly Freed",
  7759. height: math.unit(50 * 1559 / 989, "feet")
  7760. },
  7761. {
  7762. name: "World Encompassing",
  7763. height: math.unit(10000 * 1559 / 989, "miles")
  7764. },
  7765. {
  7766. name: "Galactic",
  7767. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7768. },
  7769. {
  7770. name: "Palmed Universe",
  7771. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Multiversal Matriarch",
  7776. height: math.unit(8.87e10, "yottameters")
  7777. },
  7778. {
  7779. name: "Void Mother",
  7780. height: math.unit(3.14e110, "yottaparsecs")
  7781. },
  7782. {
  7783. name: "Toying with Transcendence",
  7784. height: math.unit(1e307, "meters")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7790. {
  7791. front: {
  7792. height: math.unit(17 + 1 / 12, "feet"),
  7793. weight: math.unit(476.2 * 5, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/kuro-shi-uchū/front.svg",
  7797. extra: 2329 / 1835,
  7798. bottom: 0.02
  7799. }
  7800. },
  7801. },
  7802. [
  7803. {
  7804. name: "Micro",
  7805. height: math.unit(2, "inches")
  7806. },
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(12, "meters")
  7810. },
  7811. {
  7812. name: "Planetary",
  7813. height: math.unit(0.00929, "AU"),
  7814. default: true
  7815. },
  7816. {
  7817. name: "Universal",
  7818. height: math.unit(20, "gigaparsecs")
  7819. },
  7820. ]
  7821. ))
  7822. characterMakers.push(() => makeCharacter(
  7823. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7824. {
  7825. front: {
  7826. height: math.unit(5 + 2 / 12, "feet"),
  7827. weight: math.unit(120, "lbs"),
  7828. name: "Front",
  7829. image: {
  7830. source: "./media/characters/katherine/front.svg",
  7831. extra: 2075 / 1969
  7832. }
  7833. },
  7834. dress: {
  7835. height: math.unit(5 + 2 / 12, "feet"),
  7836. weight: math.unit(120, "lbs"),
  7837. name: "Dress",
  7838. image: {
  7839. source: "./media/characters/katherine/dress.svg",
  7840. extra: 2258 / 2064
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Micro",
  7847. height: math.unit(1, "inches"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(5 + 2 / 12, "feet")
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(100, "meters")
  7857. },
  7858. {
  7859. name: "Megamacro",
  7860. height: math.unit(80, "miles")
  7861. },
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(7 + 8 / 12, "feet"),
  7869. weight: math.unit(250, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/yevis/front.svg",
  7873. extra: 1938 / 1755
  7874. }
  7875. }
  7876. },
  7877. [
  7878. {
  7879. name: "Mortal",
  7880. height: math.unit(7 + 8 / 12, "feet")
  7881. },
  7882. {
  7883. name: "Battle",
  7884. height: math.unit(25 + 11 / 12, "feet")
  7885. },
  7886. {
  7887. name: "Wrath",
  7888. height: math.unit(1654 + 11 / 12, "feet")
  7889. },
  7890. {
  7891. name: "Planet Destroyer",
  7892. height: math.unit(12000, "miles")
  7893. },
  7894. {
  7895. name: "Galaxy Conqueror",
  7896. height: math.unit(1.45, "zettameters"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Universal War",
  7901. height: math.unit(184, "gigaparsecs")
  7902. },
  7903. {
  7904. name: "Eternity War",
  7905. height: math.unit(1.98e55, "yottaparsecs")
  7906. },
  7907. ]
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7911. {
  7912. front: {
  7913. height: math.unit(5 + 8 / 12, "feet"),
  7914. weight: math.unit(63, "kg"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/xavier/front.svg",
  7918. extra: 944 / 883
  7919. }
  7920. },
  7921. frontStretch: {
  7922. height: math.unit(5 + 8 / 12, "feet"),
  7923. weight: math.unit(63, "kg"),
  7924. name: "Stretching",
  7925. image: {
  7926. source: "./media/characters/xavier/front-stretch.svg",
  7927. extra: 962 / 820
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(5 + 8 / 12, "feet")
  7935. },
  7936. {
  7937. name: "Macro",
  7938. height: math.unit(100, "meters"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "McLargeHuge",
  7943. height: math.unit(10, "miles")
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7949. {
  7950. front: {
  7951. height: math.unit(5 + 5 / 12, "feet"),
  7952. weight: math.unit(150, "lb"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/joshii/front.svg",
  7956. extra: 765/653,
  7957. bottom: 51/816
  7958. }
  7959. },
  7960. foot: {
  7961. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7962. name: "Foot",
  7963. image: {
  7964. source: "./media/characters/joshii/foot.svg"
  7965. }
  7966. },
  7967. },
  7968. [
  7969. {
  7970. name: "Micro",
  7971. height: math.unit(2, "inches"),
  7972. default: true
  7973. },
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(5 + 5 / 12, "feet")
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(785, "feet")
  7981. },
  7982. {
  7983. name: "Megamacro",
  7984. height: math.unit(24.5, "miles")
  7985. },
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7990. {
  7991. front: {
  7992. height: math.unit(6, "feet"),
  7993. weight: math.unit(150, "lb"),
  7994. name: "Front",
  7995. image: {
  7996. source: "./media/characters/goddess-elizabeth/front.svg",
  7997. extra: 1800 / 1525,
  7998. bottom: 0.005
  7999. }
  8000. },
  8001. foot: {
  8002. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8003. name: "Foot",
  8004. image: {
  8005. source: "./media/characters/goddess-elizabeth/foot.svg"
  8006. }
  8007. },
  8008. mouth: {
  8009. height: math.unit(6, "feet"),
  8010. name: "Mouth",
  8011. image: {
  8012. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8013. }
  8014. },
  8015. },
  8016. [
  8017. {
  8018. name: "Micro",
  8019. height: math.unit(12, "feet")
  8020. },
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(80, "miles"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(15000, "parsecs")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(5 + 9 / 12, "feet"),
  8037. weight: math.unit(144, "lb"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/kara/front.svg"
  8041. }
  8042. },
  8043. feet: {
  8044. height: math.unit(6 / 6.765, "feet"),
  8045. name: "Kara's Feet",
  8046. rename: true,
  8047. image: {
  8048. source: "./media/characters/kara/feet.svg"
  8049. }
  8050. },
  8051. },
  8052. [
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(5 + 9 / 12, "feet")
  8056. },
  8057. {
  8058. name: "Macro",
  8059. height: math.unit(174, "feet"),
  8060. default: true
  8061. },
  8062. ]
  8063. ))
  8064. characterMakers.push(() => makeCharacter(
  8065. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8066. {
  8067. front: {
  8068. height: math.unit(18, "feet"),
  8069. weight: math.unit(4050, "lb"),
  8070. name: "Front",
  8071. image: {
  8072. source: "./media/characters/tyrone/front.svg",
  8073. extra: 2405/2270,
  8074. bottom: 182/2587
  8075. }
  8076. },
  8077. },
  8078. [
  8079. {
  8080. name: "Normal",
  8081. height: math.unit(18, "feet"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Macro",
  8086. height: math.unit(300, "feet")
  8087. },
  8088. {
  8089. name: "Megamacro",
  8090. height: math.unit(15, "km")
  8091. },
  8092. {
  8093. name: "Gigamacro",
  8094. height: math.unit(500, "km")
  8095. },
  8096. {
  8097. name: "Teramacro",
  8098. height: math.unit(0.5, "gigameters")
  8099. },
  8100. {
  8101. name: "Omnimacro",
  8102. height: math.unit(1e252, "yottauniverse")
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(7 + 8 / 12, "feet"),
  8111. weight: math.unit(120, "lb"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/danny/front.svg",
  8115. extra: 1490 / 1350
  8116. }
  8117. },
  8118. back: {
  8119. height: math.unit(7 + 8 / 12, "feet"),
  8120. weight: math.unit(120, "lb"),
  8121. name: "Back",
  8122. image: {
  8123. source: "./media/characters/danny/back.svg",
  8124. extra: 1490 / 1350
  8125. }
  8126. },
  8127. },
  8128. [
  8129. {
  8130. name: "Normal",
  8131. height: math.unit(7 + 8 / 12, "feet"),
  8132. default: true
  8133. },
  8134. ]
  8135. ))
  8136. characterMakers.push(() => makeCharacter(
  8137. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8138. {
  8139. front: {
  8140. height: math.unit(3.5, "inches"),
  8141. weight: math.unit(19, "grams"),
  8142. name: "Front",
  8143. image: {
  8144. source: "./media/characters/mallow/front.svg",
  8145. extra: 471 / 431
  8146. }
  8147. },
  8148. back: {
  8149. height: math.unit(3.5, "inches"),
  8150. weight: math.unit(19, "grams"),
  8151. name: "Back",
  8152. image: {
  8153. source: "./media/characters/mallow/back.svg",
  8154. extra: 471 / 431
  8155. }
  8156. },
  8157. },
  8158. [
  8159. {
  8160. name: "Normal",
  8161. height: math.unit(3.5, "inches"),
  8162. default: true
  8163. },
  8164. ]
  8165. ))
  8166. characterMakers.push(() => makeCharacter(
  8167. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8168. {
  8169. front: {
  8170. height: math.unit(9, "feet"),
  8171. weight: math.unit(230, "kg"),
  8172. name: "Front",
  8173. image: {
  8174. source: "./media/characters/starry-aqua/front.svg"
  8175. }
  8176. },
  8177. back: {
  8178. height: math.unit(9, "feet"),
  8179. weight: math.unit(230, "kg"),
  8180. name: "Back",
  8181. image: {
  8182. source: "./media/characters/starry-aqua/back.svg"
  8183. }
  8184. },
  8185. hand: {
  8186. height: math.unit(9 * 0.1168, "feet"),
  8187. name: "Hand",
  8188. image: {
  8189. source: "./media/characters/starry-aqua/hand.svg"
  8190. }
  8191. },
  8192. foot: {
  8193. height: math.unit(9 * 0.18, "feet"),
  8194. name: "Foot",
  8195. image: {
  8196. source: "./media/characters/starry-aqua/foot.svg"
  8197. }
  8198. }
  8199. },
  8200. [
  8201. {
  8202. name: "Micro",
  8203. height: math.unit(3, "inches")
  8204. },
  8205. {
  8206. name: "Normal",
  8207. height: math.unit(9, "feet")
  8208. },
  8209. {
  8210. name: "Macro",
  8211. height: math.unit(300, "feet"),
  8212. default: true
  8213. },
  8214. {
  8215. name: "Megamacro",
  8216. height: math.unit(3200, "feet")
  8217. }
  8218. ]
  8219. ))
  8220. characterMakers.push(() => makeCharacter(
  8221. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8222. {
  8223. front: {
  8224. height: math.unit(6, "feet"),
  8225. weight: math.unit(230, "lb"),
  8226. name: "Front",
  8227. image: {
  8228. source: "./media/characters/luka/front.svg",
  8229. extra: 1,
  8230. bottom: 0.025
  8231. }
  8232. },
  8233. },
  8234. [
  8235. {
  8236. name: "Normal",
  8237. height: math.unit(12 + 8 / 12, "feet"),
  8238. default: true
  8239. },
  8240. {
  8241. name: "Minimacro",
  8242. height: math.unit(20, "feet")
  8243. },
  8244. {
  8245. name: "Macro",
  8246. height: math.unit(250, "feet")
  8247. },
  8248. {
  8249. name: "Megamacro",
  8250. height: math.unit(5, "miles")
  8251. },
  8252. {
  8253. name: "Gigamacro",
  8254. height: math.unit(8000, "miles")
  8255. },
  8256. ]
  8257. ))
  8258. characterMakers.push(() => makeCharacter(
  8259. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8260. {
  8261. front: {
  8262. height: math.unit(6, "feet"),
  8263. weight: math.unit(150, "lb"),
  8264. name: "Front",
  8265. image: {
  8266. source: "./media/characters/natalie-nightring/front.svg",
  8267. extra: 1,
  8268. bottom: 0.06
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Uh Oh",
  8275. height: math.unit(0.1, "mm")
  8276. },
  8277. {
  8278. name: "Small",
  8279. height: math.unit(3, "inches")
  8280. },
  8281. {
  8282. name: "Human Scale",
  8283. height: math.unit(6, "feet")
  8284. },
  8285. {
  8286. name: "Librarian",
  8287. height: math.unit(50, "feet"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Immense",
  8292. height: math.unit(200, "miles")
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(6, "feet"),
  8301. weight: math.unit(180, "lbs"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/danni-rosie/front.svg",
  8305. extra: 1260 / 1128,
  8306. bottom: 0.022
  8307. }
  8308. },
  8309. },
  8310. [
  8311. {
  8312. name: "Micro",
  8313. height: math.unit(2, "inches"),
  8314. default: true
  8315. },
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(5 + 9 / 12, "feet"),
  8323. weight: math.unit(220, "lb"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/samantha-kruse/front.svg",
  8327. extra: (985 / 935),
  8328. bottom: 0.03
  8329. }
  8330. },
  8331. frontUndressed: {
  8332. height: math.unit(5 + 9 / 12, "feet"),
  8333. weight: math.unit(220, "lb"),
  8334. name: "Front (Undressed)",
  8335. image: {
  8336. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8337. extra: (973 / 923),
  8338. bottom: 0.025
  8339. }
  8340. },
  8341. fat: {
  8342. height: math.unit(5 + 9 / 12, "feet"),
  8343. weight: math.unit(900, "lb"),
  8344. name: "Front (Fat)",
  8345. image: {
  8346. source: "./media/characters/samantha-kruse/fat.svg",
  8347. extra: 2688 / 2561
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(5 + 9 / 12, "feet"),
  8355. default: true
  8356. }
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8361. {
  8362. back: {
  8363. height: math.unit(5 + 4 / 12, "feet"),
  8364. weight: math.unit(4963, "lb"),
  8365. name: "Back",
  8366. image: {
  8367. source: "./media/characters/amelia-rosie/back.svg",
  8368. extra: 1113 / 963,
  8369. bottom: 0.01
  8370. }
  8371. },
  8372. },
  8373. [
  8374. {
  8375. name: "Level 0",
  8376. height: math.unit(5 + 4 / 12, "feet")
  8377. },
  8378. {
  8379. name: "Level 1",
  8380. height: math.unit(164597, "feet"),
  8381. default: true
  8382. },
  8383. {
  8384. name: "Level 2",
  8385. height: math.unit(956243, "miles")
  8386. },
  8387. {
  8388. name: "Level 3",
  8389. height: math.unit(29421709423, "miles")
  8390. },
  8391. {
  8392. name: "Level 4",
  8393. height: math.unit(154, "lightyears")
  8394. },
  8395. {
  8396. name: "Level 5",
  8397. height: math.unit(4738272, "lightyears")
  8398. },
  8399. {
  8400. name: "Level 6",
  8401. height: math.unit(145787152896, "lightyears")
  8402. },
  8403. ]
  8404. ))
  8405. characterMakers.push(() => makeCharacter(
  8406. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8407. {
  8408. front: {
  8409. height: math.unit(5 + 11 / 12, "feet"),
  8410. weight: math.unit(65, "kg"),
  8411. name: "Front",
  8412. image: {
  8413. source: "./media/characters/rook-kitara/front.svg",
  8414. extra: 1347 / 1274,
  8415. bottom: 0.005
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Totally Unfair",
  8422. height: math.unit(1.8, "mm")
  8423. },
  8424. {
  8425. name: "Lap Rookie",
  8426. height: math.unit(1.4, "feet")
  8427. },
  8428. {
  8429. name: "Normal",
  8430. height: math.unit(5 + 11 / 12, "feet"),
  8431. default: true
  8432. },
  8433. {
  8434. name: "How Did This Happen",
  8435. height: math.unit(80, "miles")
  8436. }
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(7, "feet"),
  8444. weight: math.unit(300, "lb"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/pisces/front.svg",
  8448. extra: 2255 / 2115,
  8449. bottom: 0.03
  8450. }
  8451. },
  8452. back: {
  8453. height: math.unit(7, "feet"),
  8454. weight: math.unit(300, "lb"),
  8455. name: "Back",
  8456. image: {
  8457. source: "./media/characters/pisces/back.svg",
  8458. extra: 2146 / 2055,
  8459. bottom: 0.04
  8460. }
  8461. },
  8462. },
  8463. [
  8464. {
  8465. name: "Normal",
  8466. height: math.unit(7, "feet"),
  8467. default: true
  8468. },
  8469. {
  8470. name: "Swimming Pool",
  8471. height: math.unit(12.2, "meters")
  8472. },
  8473. {
  8474. name: "Olympic Swimming Pool",
  8475. height: math.unit(56.3, "meters")
  8476. },
  8477. {
  8478. name: "Lake Superior",
  8479. height: math.unit(93900, "meters")
  8480. },
  8481. {
  8482. name: "Mediterranean Sea",
  8483. height: math.unit(644457, "meters")
  8484. },
  8485. {
  8486. name: "World's Oceans",
  8487. height: math.unit(4567491, "meters")
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(2.3, "meters"),
  8496. weight: math.unit(120, "kg"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/zelas/front.svg"
  8500. }
  8501. },
  8502. side: {
  8503. height: math.unit(2.3, "meters"),
  8504. weight: math.unit(120, "kg"),
  8505. name: "Side",
  8506. image: {
  8507. source: "./media/characters/zelas/side.svg"
  8508. }
  8509. },
  8510. back: {
  8511. height: math.unit(2.3, "meters"),
  8512. weight: math.unit(120, "kg"),
  8513. name: "Back",
  8514. image: {
  8515. source: "./media/characters/zelas/back.svg"
  8516. }
  8517. },
  8518. foot: {
  8519. height: math.unit(1.116, "feet"),
  8520. name: "Foot",
  8521. image: {
  8522. source: "./media/characters/zelas/foot.svg"
  8523. }
  8524. },
  8525. },
  8526. [
  8527. {
  8528. name: "Normal",
  8529. height: math.unit(2.3, "meters")
  8530. },
  8531. {
  8532. name: "Macro",
  8533. height: math.unit(30, "meters"),
  8534. default: true
  8535. },
  8536. ]
  8537. ))
  8538. characterMakers.push(() => makeCharacter(
  8539. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8540. {
  8541. front: {
  8542. height: math.unit(1, "inch"),
  8543. weight: math.unit(0.21, "grams"),
  8544. name: "Front",
  8545. image: {
  8546. source: "./media/characters/talbot/front.svg",
  8547. extra: 594 / 544
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Micro",
  8554. height: math.unit(1, "inch"),
  8555. default: true
  8556. },
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8561. {
  8562. front: {
  8563. height: math.unit(3 + 3 / 12, "feet"),
  8564. weight: math.unit(51.8, "lb"),
  8565. name: "Front",
  8566. image: {
  8567. source: "./media/characters/fliss/front.svg",
  8568. extra: 840 / 640
  8569. }
  8570. },
  8571. },
  8572. [
  8573. {
  8574. name: "Teeny Tiny",
  8575. height: math.unit(1, "mm")
  8576. },
  8577. {
  8578. name: "Small",
  8579. height: math.unit(1, "inch"),
  8580. default: true
  8581. },
  8582. {
  8583. name: "Standard Sylveon",
  8584. height: math.unit(3 + 3 / 12, "feet")
  8585. },
  8586. {
  8587. name: "Large Nuisance",
  8588. height: math.unit(33, "feet")
  8589. },
  8590. {
  8591. name: "City Filler",
  8592. height: math.unit(3000, "feet")
  8593. },
  8594. {
  8595. name: "New Horizon",
  8596. height: math.unit(6000, "miles")
  8597. },
  8598. ]
  8599. ))
  8600. characterMakers.push(() => makeCharacter(
  8601. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8602. {
  8603. front: {
  8604. height: math.unit(5, "cm"),
  8605. weight: math.unit(1.94, "g"),
  8606. name: "Front",
  8607. image: {
  8608. source: "./media/characters/fleta/front.svg",
  8609. extra: 835 / 803
  8610. }
  8611. },
  8612. back: {
  8613. height: math.unit(5, "cm"),
  8614. weight: math.unit(1.94, "g"),
  8615. name: "Back",
  8616. image: {
  8617. source: "./media/characters/fleta/back.svg",
  8618. extra: 835 / 803
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Micro",
  8625. height: math.unit(5, "cm"),
  8626. default: true
  8627. },
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8632. {
  8633. front: {
  8634. height: math.unit(6, "feet"),
  8635. weight: math.unit(225, "lb"),
  8636. name: "Front",
  8637. image: {
  8638. source: "./media/characters/dominic/front.svg",
  8639. extra: 1770 / 1620,
  8640. bottom: 0.025
  8641. }
  8642. },
  8643. back: {
  8644. height: math.unit(6, "feet"),
  8645. weight: math.unit(225, "lb"),
  8646. name: "Back",
  8647. image: {
  8648. source: "./media/characters/dominic/back.svg",
  8649. extra: 1745 / 1620,
  8650. bottom: 0.065
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Nano",
  8657. height: math.unit(0.1, "mm")
  8658. },
  8659. {
  8660. name: "Micro-",
  8661. height: math.unit(1, "mm")
  8662. },
  8663. {
  8664. name: "Micro",
  8665. height: math.unit(4, "inches")
  8666. },
  8667. {
  8668. name: "Normal",
  8669. height: math.unit(6 + 4 / 12, "feet"),
  8670. default: true
  8671. },
  8672. {
  8673. name: "Macro",
  8674. height: math.unit(115, "feet")
  8675. },
  8676. {
  8677. name: "Macro+",
  8678. height: math.unit(955, "feet")
  8679. },
  8680. {
  8681. name: "Megamacro",
  8682. height: math.unit(8990, "feet")
  8683. },
  8684. {
  8685. name: "Gigmacro",
  8686. height: math.unit(9310, "miles")
  8687. },
  8688. {
  8689. name: "Teramacro",
  8690. height: math.unit(1567005010, "miles")
  8691. },
  8692. {
  8693. name: "Examacro",
  8694. height: math.unit(1425, "parsecs")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(400, "feet"),
  8703. weight: math.unit(44444444, "lb"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/major-colonel/front.svg"
  8707. }
  8708. },
  8709. back: {
  8710. height: math.unit(400, "feet"),
  8711. weight: math.unit(44444444, "lb"),
  8712. name: "Back",
  8713. image: {
  8714. source: "./media/characters/major-colonel/back.svg"
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Macro",
  8721. height: math.unit(400, "feet"),
  8722. default: true
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8728. {
  8729. catFront: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(120, "lb"),
  8732. name: "Front (Cat Side)",
  8733. image: {
  8734. source: "./media/characters/axel-lycan/cat-front.svg",
  8735. extra: 430 / 402,
  8736. bottom: 43 / 472.35
  8737. }
  8738. },
  8739. catBack: {
  8740. height: math.unit(6, "feet"),
  8741. weight: math.unit(120, "lb"),
  8742. name: "Back (Cat Side)",
  8743. image: {
  8744. source: "./media/characters/axel-lycan/cat-back.svg",
  8745. extra: 447 / 419,
  8746. bottom: 23.3 / 469
  8747. }
  8748. },
  8749. wolfFront: {
  8750. height: math.unit(6, "feet"),
  8751. weight: math.unit(120, "lb"),
  8752. name: "Front (Wolf Side)",
  8753. image: {
  8754. source: "./media/characters/axel-lycan/wolf-front.svg",
  8755. extra: 485 / 456,
  8756. bottom: 19 / 504
  8757. }
  8758. },
  8759. wolfBack: {
  8760. height: math.unit(6, "feet"),
  8761. weight: math.unit(120, "lb"),
  8762. name: "Back (Wolf Side)",
  8763. image: {
  8764. source: "./media/characters/axel-lycan/wolf-back.svg",
  8765. extra: 475 / 438,
  8766. bottom: 39.2 / 514
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Macro",
  8773. height: math.unit(1, "km"),
  8774. default: true
  8775. },
  8776. ]
  8777. ))
  8778. characterMakers.push(() => makeCharacter(
  8779. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8780. {
  8781. front: {
  8782. height: math.unit(5 + 9 / 12, "feet"),
  8783. weight: math.unit(175, "lb"),
  8784. name: "Front",
  8785. image: {
  8786. source: "./media/characters/vanrel-hyena/front.svg",
  8787. extra: 1086 / 1010,
  8788. bottom: 0.04
  8789. }
  8790. },
  8791. },
  8792. [
  8793. {
  8794. name: "Normal",
  8795. height: math.unit(5 + 9 / 12, "feet"),
  8796. default: true
  8797. },
  8798. ]
  8799. ))
  8800. characterMakers.push(() => makeCharacter(
  8801. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8802. {
  8803. front: {
  8804. height: math.unit(6, "feet"),
  8805. weight: math.unit(103, "lb"),
  8806. name: "Front",
  8807. image: {
  8808. source: "./media/characters/abbott-absol/front.svg",
  8809. extra: 2010 / 1842
  8810. }
  8811. },
  8812. },
  8813. [
  8814. {
  8815. name: "Megamicro",
  8816. height: math.unit(0.1, "mm")
  8817. },
  8818. {
  8819. name: "Micro",
  8820. height: math.unit(1, "inch")
  8821. },
  8822. {
  8823. name: "Normal",
  8824. height: math.unit(6, "feet"),
  8825. default: true
  8826. },
  8827. ]
  8828. ))
  8829. characterMakers.push(() => makeCharacter(
  8830. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8831. {
  8832. front: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(264, "lb"),
  8835. name: "Front",
  8836. image: {
  8837. source: "./media/characters/hector/front.svg",
  8838. extra: 2280 / 2130,
  8839. bottom: 0.07
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(12.25, "foot"),
  8847. default: true
  8848. },
  8849. {
  8850. name: "Macro",
  8851. height: math.unit(160, "feet")
  8852. },
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(6, "feet"),
  8860. weight: math.unit(150, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/sal/front.svg",
  8864. extra: 1846 / 1699,
  8865. bottom: 0.04
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Megamacro",
  8872. height: math.unit(10, "miles"),
  8873. default: true
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8879. {
  8880. front: {
  8881. height: math.unit(3, "meters"),
  8882. weight: math.unit(450, "kg"),
  8883. name: "front",
  8884. image: {
  8885. source: "./media/characters/ranger/front.svg",
  8886. extra: 2401 / 2243,
  8887. bottom: 0.05
  8888. }
  8889. },
  8890. },
  8891. [
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(3, "meters"),
  8895. default: true
  8896. },
  8897. ]
  8898. ))
  8899. characterMakers.push(() => makeCharacter(
  8900. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8901. {
  8902. front: {
  8903. height: math.unit(14, "feet"),
  8904. weight: math.unit(800, "kg"),
  8905. name: "Front",
  8906. image: {
  8907. source: "./media/characters/theresa/front.svg",
  8908. extra: 3575 / 3346,
  8909. bottom: 0.03
  8910. }
  8911. },
  8912. },
  8913. [
  8914. {
  8915. name: "Normal",
  8916. height: math.unit(14, "feet"),
  8917. default: true
  8918. },
  8919. ]
  8920. ))
  8921. characterMakers.push(() => makeCharacter(
  8922. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8923. {
  8924. front: {
  8925. height: math.unit(6, "feet"),
  8926. weight: math.unit(3, "kg"),
  8927. name: "Front",
  8928. image: {
  8929. source: "./media/characters/ine/front.svg",
  8930. extra: 678 / 539,
  8931. bottom: 0.023
  8932. }
  8933. },
  8934. },
  8935. [
  8936. {
  8937. name: "Normal",
  8938. height: math.unit(2.265, "feet"),
  8939. default: true
  8940. },
  8941. ]
  8942. ))
  8943. characterMakers.push(() => makeCharacter(
  8944. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8945. {
  8946. front: {
  8947. height: math.unit(5, "feet"),
  8948. weight: math.unit(30, "kg"),
  8949. name: "Front",
  8950. image: {
  8951. source: "./media/characters/vial/front.svg",
  8952. extra: 1365 / 1277,
  8953. bottom: 0.04
  8954. }
  8955. },
  8956. },
  8957. [
  8958. {
  8959. name: "Normal",
  8960. height: math.unit(5, "feet"),
  8961. default: true
  8962. },
  8963. ]
  8964. ))
  8965. characterMakers.push(() => makeCharacter(
  8966. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8967. {
  8968. side: {
  8969. height: math.unit(3.4, "meters"),
  8970. weight: math.unit(1000, "lb"),
  8971. name: "Side",
  8972. image: {
  8973. source: "./media/characters/rovoska/side.svg",
  8974. extra: 4403 / 1515
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(3.4, "meters"),
  8982. default: true
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(8, "feet"),
  8991. weight: math.unit(315, "lb"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/gunner-rotthbauer/front.svg"
  8995. }
  8996. },
  8997. back: {
  8998. height: math.unit(8, "feet"),
  8999. weight: math.unit(315, "lb"),
  9000. name: "Back",
  9001. image: {
  9002. source: "./media/characters/gunner-rotthbauer/back.svg"
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Micro",
  9009. height: math.unit(3.5, "inches")
  9010. },
  9011. {
  9012. name: "Normal",
  9013. height: math.unit(8, "feet"),
  9014. default: true
  9015. },
  9016. {
  9017. name: "Macro",
  9018. height: math.unit(250, "feet")
  9019. },
  9020. {
  9021. name: "Megamacro",
  9022. height: math.unit(1, "AU")
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9028. {
  9029. front: {
  9030. height: math.unit(5 + 5 / 12, "feet"),
  9031. weight: math.unit(140, "lb"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/allatia/front.svg",
  9035. extra: 1227 / 1180,
  9036. bottom: 0.027
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Normal",
  9043. height: math.unit(5 + 5 / 12, "feet")
  9044. },
  9045. {
  9046. name: "Macro",
  9047. height: math.unit(250, "feet"),
  9048. default: true
  9049. },
  9050. {
  9051. name: "Megamacro",
  9052. height: math.unit(8, "miles")
  9053. }
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9058. {
  9059. front: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(120, "lb"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/tene/front.svg",
  9065. extra: 1728 / 1578,
  9066. bottom: 0.022
  9067. }
  9068. },
  9069. stomping: {
  9070. height: math.unit(2.025, "meters"),
  9071. weight: math.unit(120, "lb"),
  9072. name: "Stomping",
  9073. image: {
  9074. source: "./media/characters/tene/stomping.svg",
  9075. extra: 938 / 873,
  9076. bottom: 0.01
  9077. }
  9078. },
  9079. sitting: {
  9080. height: math.unit(1, "meter"),
  9081. weight: math.unit(120, "lb"),
  9082. name: "Sitting",
  9083. image: {
  9084. source: "./media/characters/tene/sitting.svg",
  9085. extra: 437 / 415,
  9086. bottom: 0.1
  9087. }
  9088. },
  9089. feral: {
  9090. height: math.unit(3.9, "feet"),
  9091. weight: math.unit(250, "lb"),
  9092. name: "Feral",
  9093. image: {
  9094. source: "./media/characters/tene/feral.svg",
  9095. extra: 717 / 458,
  9096. bottom: 0.179
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Normal",
  9103. height: math.unit(6, "feet")
  9104. },
  9105. {
  9106. name: "Macro",
  9107. height: math.unit(300, "feet"),
  9108. default: true
  9109. },
  9110. {
  9111. name: "Megamacro",
  9112. height: math.unit(5, "miles")
  9113. },
  9114. ]
  9115. ))
  9116. characterMakers.push(() => makeCharacter(
  9117. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9118. {
  9119. side: {
  9120. height: math.unit(6, "feet"),
  9121. name: "Side",
  9122. image: {
  9123. source: "./media/characters/evander/side.svg",
  9124. extra: 877 / 477
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Normal",
  9131. height: math.unit(0.83, "meters"),
  9132. default: true
  9133. },
  9134. ]
  9135. ))
  9136. characterMakers.push(() => makeCharacter(
  9137. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9138. {
  9139. front: {
  9140. height: math.unit(12, "feet"),
  9141. weight: math.unit(1000, "lb"),
  9142. name: "Front",
  9143. image: {
  9144. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9145. extra: 1762 / 1611
  9146. }
  9147. },
  9148. back: {
  9149. height: math.unit(12, "feet"),
  9150. weight: math.unit(1000, "lb"),
  9151. name: "Back",
  9152. image: {
  9153. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9154. extra: 1762 / 1611
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Normal",
  9161. height: math.unit(12, "feet"),
  9162. default: true
  9163. },
  9164. {
  9165. name: "Kaiju",
  9166. height: math.unit(150, "feet")
  9167. },
  9168. ]
  9169. ))
  9170. characterMakers.push(() => makeCharacter(
  9171. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9172. {
  9173. front: {
  9174. height: math.unit(6, "feet"),
  9175. weight: math.unit(150, "lb"),
  9176. name: "Front",
  9177. image: {
  9178. source: "./media/characters/zero-alurus/front.svg"
  9179. }
  9180. },
  9181. back: {
  9182. height: math.unit(6, "feet"),
  9183. weight: math.unit(150, "lb"),
  9184. name: "Back",
  9185. image: {
  9186. source: "./media/characters/zero-alurus/back.svg"
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(5 + 10 / 12, "feet")
  9194. },
  9195. {
  9196. name: "Macro",
  9197. height: math.unit(60, "feet"),
  9198. default: true
  9199. },
  9200. {
  9201. name: "Macro+",
  9202. height: math.unit(450, "feet")
  9203. },
  9204. ]
  9205. ))
  9206. characterMakers.push(() => makeCharacter(
  9207. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9208. {
  9209. front: {
  9210. height: math.unit(6, "feet"),
  9211. weight: math.unit(200, "lb"),
  9212. name: "Front",
  9213. image: {
  9214. source: "./media/characters/mega-shi/front.svg",
  9215. extra: 1279 / 1250,
  9216. bottom: 0.02
  9217. }
  9218. },
  9219. back: {
  9220. height: math.unit(6, "feet"),
  9221. weight: math.unit(200, "lb"),
  9222. name: "Back",
  9223. image: {
  9224. source: "./media/characters/mega-shi/back.svg",
  9225. extra: 1279 / 1250,
  9226. bottom: 0.02
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Micro",
  9233. height: math.unit(16 + 6 / 12, "feet")
  9234. },
  9235. {
  9236. name: "Third Dimension",
  9237. height: math.unit(40, "meters")
  9238. },
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(660, "feet"),
  9242. default: true
  9243. },
  9244. {
  9245. name: "Megamacro",
  9246. height: math.unit(10, "miles")
  9247. },
  9248. {
  9249. name: "Planetary Launch",
  9250. height: math.unit(500, "miles")
  9251. },
  9252. {
  9253. name: "Interstellar",
  9254. height: math.unit(1e9, "miles")
  9255. },
  9256. {
  9257. name: "Leaving the Universe",
  9258. height: math.unit(1, "gigaparsec")
  9259. },
  9260. {
  9261. name: "Travelling Universes",
  9262. height: math.unit(30e15, "parsecs")
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(6, "feet"),
  9271. weight: math.unit(150, "lb"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/odyssey/front.svg",
  9275. extra: 1782 / 1582,
  9276. bottom: 0.01
  9277. }
  9278. },
  9279. side: {
  9280. height: math.unit(5.7, "feet"),
  9281. weight: math.unit(140, "lb"),
  9282. name: "Side",
  9283. image: {
  9284. source: "./media/characters/odyssey/side.svg",
  9285. extra: 6462 / 5700
  9286. }
  9287. },
  9288. },
  9289. [
  9290. {
  9291. name: "Normal",
  9292. height: math.unit(5 + 4 / 12, "feet")
  9293. },
  9294. {
  9295. name: "Macro",
  9296. height: math.unit(1, "km")
  9297. },
  9298. {
  9299. name: "Megamacro",
  9300. height: math.unit(3000, "km")
  9301. },
  9302. {
  9303. name: "Gigamacro",
  9304. height: math.unit(1, "AU"),
  9305. default: true
  9306. },
  9307. {
  9308. name: "Omniversal",
  9309. height: math.unit(100e14, "lightyears")
  9310. },
  9311. ]
  9312. ))
  9313. characterMakers.push(() => makeCharacter(
  9314. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9315. {
  9316. front: {
  9317. height: math.unit(6, "feet"),
  9318. weight: math.unit(300, "lb"),
  9319. name: "Front",
  9320. image: {
  9321. source: "./media/characters/mekuto/front.svg",
  9322. extra: 921 / 832,
  9323. bottom: 0.03
  9324. }
  9325. },
  9326. hand: {
  9327. height: math.unit(6 / 10.24, "feet"),
  9328. name: "Hand",
  9329. image: {
  9330. source: "./media/characters/mekuto/hand.svg"
  9331. }
  9332. },
  9333. foot: {
  9334. height: math.unit(6 / 5.05, "feet"),
  9335. name: "Foot",
  9336. image: {
  9337. source: "./media/characters/mekuto/foot.svg"
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Minimicro",
  9344. height: math.unit(0.2, "inches")
  9345. },
  9346. {
  9347. name: "Micro",
  9348. height: math.unit(1.5, "inches")
  9349. },
  9350. {
  9351. name: "Normal",
  9352. height: math.unit(5 + 11 / 12, "feet"),
  9353. default: true
  9354. },
  9355. {
  9356. name: "Minimacro",
  9357. height: math.unit(17 + 9 / 12, "feet")
  9358. },
  9359. {
  9360. name: "Macro",
  9361. height: math.unit(177.5, "feet")
  9362. },
  9363. {
  9364. name: "Megamacro",
  9365. height: math.unit(152, "miles")
  9366. },
  9367. ]
  9368. ))
  9369. characterMakers.push(() => makeCharacter(
  9370. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9371. {
  9372. front: {
  9373. height: math.unit(6.5, "inches"),
  9374. weight: math.unit(13, "oz"),
  9375. name: "Front",
  9376. image: {
  9377. source: "./media/characters/dafydd-tomos/front.svg",
  9378. extra: 2990 / 2603,
  9379. bottom: 0.03
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Micro",
  9386. height: math.unit(6.5, "inches"),
  9387. default: true
  9388. },
  9389. ]
  9390. ))
  9391. characterMakers.push(() => makeCharacter(
  9392. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9393. {
  9394. front: {
  9395. height: math.unit(6, "feet"),
  9396. weight: math.unit(150, "lb"),
  9397. name: "Front",
  9398. image: {
  9399. source: "./media/characters/splinter/front.svg",
  9400. extra: 2990 / 2882,
  9401. bottom: 0.04
  9402. }
  9403. },
  9404. back: {
  9405. height: math.unit(6, "feet"),
  9406. weight: math.unit(150, "lb"),
  9407. name: "Back",
  9408. image: {
  9409. source: "./media/characters/splinter/back.svg",
  9410. extra: 2990 / 2882,
  9411. bottom: 0.04
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Normal",
  9418. height: math.unit(6, "feet")
  9419. },
  9420. {
  9421. name: "Macro",
  9422. height: math.unit(230, "meters"),
  9423. default: true
  9424. },
  9425. ]
  9426. ))
  9427. characterMakers.push(() => makeCharacter(
  9428. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9429. {
  9430. front: {
  9431. height: math.unit(4 + 10 / 12, "feet"),
  9432. weight: math.unit(480, "lb"),
  9433. name: "Front",
  9434. image: {
  9435. source: "./media/characters/snow-gabumon/front.svg",
  9436. extra: 1140 / 963,
  9437. bottom: 0.058
  9438. }
  9439. },
  9440. back: {
  9441. height: math.unit(4 + 10 / 12, "feet"),
  9442. weight: math.unit(480, "lb"),
  9443. name: "Back",
  9444. image: {
  9445. source: "./media/characters/snow-gabumon/back.svg",
  9446. extra: 1115 / 962,
  9447. bottom: 0.041
  9448. }
  9449. },
  9450. frontUndresed: {
  9451. height: math.unit(4 + 10 / 12, "feet"),
  9452. weight: math.unit(480, "lb"),
  9453. name: "Front (Undressed)",
  9454. image: {
  9455. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9456. extra: 1061 / 960,
  9457. bottom: 0.045
  9458. }
  9459. },
  9460. },
  9461. [
  9462. {
  9463. name: "Micro",
  9464. height: math.unit(1, "inch")
  9465. },
  9466. {
  9467. name: "Normal",
  9468. height: math.unit(4 + 10 / 12, "feet"),
  9469. default: true
  9470. },
  9471. {
  9472. name: "Macro",
  9473. height: math.unit(200, "feet")
  9474. },
  9475. {
  9476. name: "Megamacro",
  9477. height: math.unit(120, "miles")
  9478. },
  9479. {
  9480. name: "Gigamacro",
  9481. height: math.unit(9800, "miles")
  9482. },
  9483. ]
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9487. {
  9488. front: {
  9489. height: math.unit(1.7, "meters"),
  9490. weight: math.unit(140, "lb"),
  9491. name: "Front",
  9492. image: {
  9493. source: "./media/characters/moody/front.svg",
  9494. extra: 3226 / 3007,
  9495. bottom: 0.087
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Micro",
  9502. height: math.unit(1, "mm")
  9503. },
  9504. {
  9505. name: "Normal",
  9506. height: math.unit(1.7, "meters"),
  9507. default: true
  9508. },
  9509. {
  9510. name: "Macro",
  9511. height: math.unit(80, "meters")
  9512. },
  9513. {
  9514. name: "Macro+",
  9515. height: math.unit(500, "meters")
  9516. },
  9517. ]
  9518. ))
  9519. characterMakers.push(() => makeCharacter(
  9520. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9521. {
  9522. front: {
  9523. height: math.unit(6, "feet"),
  9524. weight: math.unit(150, "lb"),
  9525. name: "Front",
  9526. image: {
  9527. source: "./media/characters/zyas/front.svg",
  9528. extra: 1180 / 1120,
  9529. bottom: 0.045
  9530. }
  9531. },
  9532. },
  9533. [
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(10, "feet"),
  9537. default: true
  9538. },
  9539. {
  9540. name: "Macro",
  9541. height: math.unit(500, "feet")
  9542. },
  9543. {
  9544. name: "Megamacro",
  9545. height: math.unit(5, "miles")
  9546. },
  9547. {
  9548. name: "Teramacro",
  9549. height: math.unit(150000, "miles")
  9550. },
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9555. {
  9556. front: {
  9557. height: math.unit(6, "feet"),
  9558. weight: math.unit(150, "lb"),
  9559. name: "Front",
  9560. image: {
  9561. source: "./media/characters/cuon/front.svg",
  9562. extra: 1390 / 1320,
  9563. bottom: 0.008
  9564. }
  9565. },
  9566. },
  9567. [
  9568. {
  9569. name: "Micro",
  9570. height: math.unit(3, "inches")
  9571. },
  9572. {
  9573. name: "Normal",
  9574. height: math.unit(18 + 9 / 12, "feet"),
  9575. default: true
  9576. },
  9577. {
  9578. name: "Macro",
  9579. height: math.unit(360, "feet")
  9580. },
  9581. {
  9582. name: "Megamacro",
  9583. height: math.unit(360, "miles")
  9584. },
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9589. {
  9590. front: {
  9591. height: math.unit(2.4, "meters"),
  9592. weight: math.unit(70, "kg"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/nyanuxk/front.svg",
  9596. extra: 1172 / 1084,
  9597. bottom: 0.065
  9598. }
  9599. },
  9600. side: {
  9601. height: math.unit(2.4, "meters"),
  9602. weight: math.unit(70, "kg"),
  9603. name: "Side",
  9604. image: {
  9605. source: "./media/characters/nyanuxk/side.svg",
  9606. extra: 1190 / 1132,
  9607. bottom: 0.007
  9608. }
  9609. },
  9610. back: {
  9611. height: math.unit(2.4, "meters"),
  9612. weight: math.unit(70, "kg"),
  9613. name: "Back",
  9614. image: {
  9615. source: "./media/characters/nyanuxk/back.svg",
  9616. extra: 1200 / 1141,
  9617. bottom: 0.015
  9618. }
  9619. },
  9620. foot: {
  9621. height: math.unit(0.52, "meters"),
  9622. name: "Foot",
  9623. image: {
  9624. source: "./media/characters/nyanuxk/foot.svg"
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Micro",
  9631. height: math.unit(2, "cm")
  9632. },
  9633. {
  9634. name: "Normal",
  9635. height: math.unit(2.4, "meters"),
  9636. default: true
  9637. },
  9638. {
  9639. name: "Smaller Macro",
  9640. height: math.unit(120, "meters")
  9641. },
  9642. {
  9643. name: "Bigger Macro",
  9644. height: math.unit(1.2, "km")
  9645. },
  9646. {
  9647. name: "Megamacro",
  9648. height: math.unit(15, "kilometers")
  9649. },
  9650. {
  9651. name: "Gigamacro",
  9652. height: math.unit(2000, "km")
  9653. },
  9654. {
  9655. name: "Teramacro",
  9656. height: math.unit(500000, "km")
  9657. },
  9658. ]
  9659. ))
  9660. characterMakers.push(() => makeCharacter(
  9661. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9662. {
  9663. side: {
  9664. height: math.unit(6, "feet"),
  9665. name: "Side",
  9666. image: {
  9667. source: "./media/characters/ailbhe/side.svg",
  9668. extra: 757 / 464,
  9669. bottom: 0.041
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Normal",
  9676. height: math.unit(1.07, "meters"),
  9677. default: true
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(6, "feet"),
  9686. weight: math.unit(120, "kg"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/zevulfius/front.svg",
  9690. extra: 965 / 903
  9691. }
  9692. },
  9693. side: {
  9694. height: math.unit(6, "feet"),
  9695. weight: math.unit(120, "kg"),
  9696. name: "Side",
  9697. image: {
  9698. source: "./media/characters/zevulfius/side.svg",
  9699. extra: 939 / 900
  9700. }
  9701. },
  9702. back: {
  9703. height: math.unit(6, "feet"),
  9704. weight: math.unit(120, "kg"),
  9705. name: "Back",
  9706. image: {
  9707. source: "./media/characters/zevulfius/back.svg",
  9708. extra: 918 / 854,
  9709. bottom: 0.005
  9710. }
  9711. },
  9712. foot: {
  9713. height: math.unit(6 / 3.72, "feet"),
  9714. name: "Foot",
  9715. image: {
  9716. source: "./media/characters/zevulfius/foot.svg"
  9717. }
  9718. },
  9719. },
  9720. [
  9721. {
  9722. name: "Macro",
  9723. height: math.unit(750, "meters")
  9724. },
  9725. {
  9726. name: "Megamacro",
  9727. height: math.unit(20, "km"),
  9728. default: true
  9729. },
  9730. {
  9731. name: "Gigamacro",
  9732. height: math.unit(2000, "km")
  9733. },
  9734. {
  9735. name: "Teramacro",
  9736. height: math.unit(250000, "km")
  9737. },
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9742. {
  9743. front: {
  9744. height: math.unit(100, "feet"),
  9745. weight: math.unit(350, "kg"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/rikes/front.svg",
  9749. extra: 1565 / 1483,
  9750. bottom: 0.017
  9751. }
  9752. },
  9753. },
  9754. [
  9755. {
  9756. name: "Macro",
  9757. height: math.unit(100, "feet"),
  9758. default: true
  9759. },
  9760. ]
  9761. ))
  9762. characterMakers.push(() => makeCharacter(
  9763. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9764. {
  9765. anthro: {
  9766. height: math.unit(8, "feet"),
  9767. weight: math.unit(120, "kg"),
  9768. name: "Anthro",
  9769. image: {
  9770. source: "./media/characters/adam-silver-mane/anthro.svg",
  9771. extra: 5743 / 5339,
  9772. bottom: 0.07
  9773. }
  9774. },
  9775. taur: {
  9776. height: math.unit(16, "feet"),
  9777. weight: math.unit(1500, "kg"),
  9778. name: "Taur",
  9779. image: {
  9780. source: "./media/characters/adam-silver-mane/taur.svg",
  9781. extra: 1713 / 1571,
  9782. bottom: 0.01
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(8, "feet")
  9790. },
  9791. {
  9792. name: "Minimacro",
  9793. height: math.unit(80, "feet")
  9794. },
  9795. {
  9796. name: "Macro",
  9797. height: math.unit(800, "feet"),
  9798. default: true
  9799. },
  9800. {
  9801. name: "Megamacro",
  9802. height: math.unit(8000, "feet")
  9803. },
  9804. {
  9805. name: "Gigamacro",
  9806. height: math.unit(800, "miles")
  9807. },
  9808. {
  9809. name: "Teramacro",
  9810. height: math.unit(80000, "miles")
  9811. },
  9812. {
  9813. name: "Celestial",
  9814. height: math.unit(8e6, "miles")
  9815. },
  9816. {
  9817. name: "Star Dragon",
  9818. height: math.unit(800000, "parsecs")
  9819. },
  9820. {
  9821. name: "Godly",
  9822. height: math.unit(800, "teraparsecs")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9828. {
  9829. front: {
  9830. height: math.unit(6, "feet"),
  9831. weight: math.unit(150, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/ky'owin/front.svg",
  9835. extra: 3888 / 3068,
  9836. bottom: 0.015
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(6 + 8 / 12, "feet")
  9844. },
  9845. {
  9846. name: "Large",
  9847. height: math.unit(68, "feet")
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(132, "feet")
  9852. },
  9853. {
  9854. name: "Macro+",
  9855. height: math.unit(340, "feet")
  9856. },
  9857. {
  9858. name: "Macro++",
  9859. height: math.unit(680, "feet"),
  9860. default: true
  9861. },
  9862. {
  9863. name: "Megamacro",
  9864. height: math.unit(1, "mile")
  9865. },
  9866. {
  9867. name: "Megamacro+",
  9868. height: math.unit(10, "miles")
  9869. },
  9870. ]
  9871. ))
  9872. characterMakers.push(() => makeCharacter(
  9873. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9874. {
  9875. front: {
  9876. height: math.unit(4, "feet"),
  9877. weight: math.unit(50, "lb"),
  9878. name: "Front",
  9879. image: {
  9880. source: "./media/characters/mal/front.svg",
  9881. extra: 785 / 724,
  9882. bottom: 0.07
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Micro",
  9889. height: math.unit(4, "inches")
  9890. },
  9891. {
  9892. name: "Normal",
  9893. height: math.unit(4, "feet"),
  9894. default: true
  9895. },
  9896. {
  9897. name: "Macro",
  9898. height: math.unit(200, "feet")
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(150, "lb"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/jordan-deware/front.svg",
  9911. extra: 1191 / 1012
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Nano",
  9918. height: math.unit(0.01, "mm")
  9919. },
  9920. {
  9921. name: "Minimicro",
  9922. height: math.unit(1, "mm")
  9923. },
  9924. {
  9925. name: "Micro",
  9926. height: math.unit(0.5, "inches")
  9927. },
  9928. {
  9929. name: "Normal",
  9930. height: math.unit(4, "feet"),
  9931. default: true
  9932. },
  9933. {
  9934. name: "Minimacro",
  9935. height: math.unit(40, "meters")
  9936. },
  9937. {
  9938. name: "Small Macro",
  9939. height: math.unit(400, "meters")
  9940. },
  9941. {
  9942. name: "Macro",
  9943. height: math.unit(4, "miles")
  9944. },
  9945. {
  9946. name: "Megamacro",
  9947. height: math.unit(40, "miles")
  9948. },
  9949. {
  9950. name: "Megamacro+",
  9951. height: math.unit(400, "miles")
  9952. },
  9953. {
  9954. name: "Gigamacro",
  9955. height: math.unit(400000, "miles")
  9956. },
  9957. ]
  9958. ))
  9959. characterMakers.push(() => makeCharacter(
  9960. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9961. {
  9962. side: {
  9963. height: math.unit(6, "feet"),
  9964. weight: math.unit(150, "lb"),
  9965. name: "Side",
  9966. image: {
  9967. source: "./media/characters/kimiko/side.svg",
  9968. extra: 600 / 358
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Normal",
  9975. height: math.unit(15, "feet"),
  9976. default: true
  9977. },
  9978. {
  9979. name: "Macro",
  9980. height: math.unit(220, "feet")
  9981. },
  9982. {
  9983. name: "Macro+",
  9984. height: math.unit(1450, "feet")
  9985. },
  9986. {
  9987. name: "Megamacro",
  9988. height: math.unit(11500, "feet")
  9989. },
  9990. {
  9991. name: "Gigamacro",
  9992. height: math.unit(9500, "miles")
  9993. },
  9994. {
  9995. name: "Teramacro",
  9996. height: math.unit(2208005005, "miles")
  9997. },
  9998. {
  9999. name: "Examacro",
  10000. height: math.unit(2750, "parsecs")
  10001. },
  10002. {
  10003. name: "Zettamacro",
  10004. height: math.unit(101500, "parsecs")
  10005. },
  10006. ]
  10007. ))
  10008. characterMakers.push(() => makeCharacter(
  10009. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10010. {
  10011. front: {
  10012. height: math.unit(6, "feet"),
  10013. weight: math.unit(70, "kg"),
  10014. name: "Front",
  10015. image: {
  10016. source: "./media/characters/andrew-sleepy/front.svg"
  10017. }
  10018. },
  10019. side: {
  10020. height: math.unit(6, "feet"),
  10021. weight: math.unit(70, "kg"),
  10022. name: "Side",
  10023. image: {
  10024. source: "./media/characters/andrew-sleepy/side.svg"
  10025. }
  10026. },
  10027. },
  10028. [
  10029. {
  10030. name: "Micro",
  10031. height: math.unit(1, "mm"),
  10032. default: true
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10038. {
  10039. front: {
  10040. height: math.unit(6, "feet"),
  10041. weight: math.unit(150, "lb"),
  10042. name: "Front",
  10043. image: {
  10044. source: "./media/characters/judio/front.svg",
  10045. extra: 1258 / 1110
  10046. }
  10047. },
  10048. },
  10049. [
  10050. {
  10051. name: "Normal",
  10052. height: math.unit(5 + 6 / 12, "feet")
  10053. },
  10054. {
  10055. name: "Macro",
  10056. height: math.unit(1000, "feet"),
  10057. default: true
  10058. },
  10059. {
  10060. name: "Megamacro",
  10061. height: math.unit(10, "miles")
  10062. },
  10063. ]
  10064. ))
  10065. characterMakers.push(() => makeCharacter(
  10066. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10067. {
  10068. front: {
  10069. height: math.unit(6, "feet"),
  10070. weight: math.unit(68, "kg"),
  10071. name: "Front",
  10072. image: {
  10073. source: "./media/characters/nomaxice/front.svg",
  10074. extra: 1498 / 1073,
  10075. bottom: 0.075
  10076. }
  10077. },
  10078. foot: {
  10079. height: math.unit(1.1, "feet"),
  10080. name: "Foot",
  10081. image: {
  10082. source: "./media/characters/nomaxice/foot.svg"
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Micro",
  10089. height: math.unit(8, "cm")
  10090. },
  10091. {
  10092. name: "Norm",
  10093. height: math.unit(1.82, "m")
  10094. },
  10095. {
  10096. name: "Norm+",
  10097. height: math.unit(8.8, "feet")
  10098. },
  10099. {
  10100. name: "Big",
  10101. height: math.unit(8, "meters"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Macro",
  10106. height: math.unit(18, "meters")
  10107. },
  10108. {
  10109. name: "Macro+",
  10110. height: math.unit(88, "meters")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(12, "feet"),
  10119. weight: math.unit(1.5, "tons"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/dydros/front.svg",
  10123. extra: 863 / 800,
  10124. bottom: 0.015
  10125. }
  10126. },
  10127. back: {
  10128. height: math.unit(12, "feet"),
  10129. weight: math.unit(1.5, "tons"),
  10130. name: "Back",
  10131. image: {
  10132. source: "./media/characters/dydros/back.svg",
  10133. extra: 900 / 843,
  10134. bottom: 0.005
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Normal",
  10141. height: math.unit(12, "feet"),
  10142. default: true
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(6, "feet"),
  10151. weight: math.unit(100, "kg"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/riggi/front.svg",
  10155. extra: 5787 / 5303
  10156. }
  10157. },
  10158. hyper: {
  10159. height: math.unit(6 * 5 / 3, "feet"),
  10160. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10161. name: "Hyper",
  10162. image: {
  10163. source: "./media/characters/riggi/hyper.svg",
  10164. extra: 3595 / 3485
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Small Macro",
  10171. height: math.unit(50, "feet")
  10172. },
  10173. {
  10174. name: "Default",
  10175. height: math.unit(200, "feet"),
  10176. default: true
  10177. },
  10178. {
  10179. name: "Loom",
  10180. height: math.unit(10000, "feet")
  10181. },
  10182. {
  10183. name: "Cruising Altitude",
  10184. height: math.unit(30000, "feet")
  10185. },
  10186. {
  10187. name: "Megamacro",
  10188. height: math.unit(100, "miles")
  10189. },
  10190. {
  10191. name: "Continent Sized",
  10192. height: math.unit(2800, "miles")
  10193. },
  10194. {
  10195. name: "Earth Sized",
  10196. height: math.unit(8000, "miles")
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(6, "feet"),
  10205. weight: math.unit(250, "lb"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/alexi/front.svg",
  10209. extra: 3483 / 3291,
  10210. bottom: 0.04
  10211. }
  10212. },
  10213. back: {
  10214. height: math.unit(6, "feet"),
  10215. weight: math.unit(250, "lb"),
  10216. name: "Back",
  10217. image: {
  10218. source: "./media/characters/alexi/back.svg",
  10219. extra: 3533 / 3356,
  10220. bottom: 0.021
  10221. }
  10222. },
  10223. frontTransforming: {
  10224. height: math.unit(8.58, "feet"),
  10225. weight: math.unit(1300, "lb"),
  10226. name: "Transforming",
  10227. image: {
  10228. source: "./media/characters/alexi/front-transforming.svg",
  10229. extra: 437 / 409,
  10230. bottom: 19 / 458.66
  10231. }
  10232. },
  10233. frontTransformed: {
  10234. height: math.unit(12.5, "feet"),
  10235. weight: math.unit(4000, "lb"),
  10236. name: "Transformed",
  10237. image: {
  10238. source: "./media/characters/alexi/front-transformed.svg",
  10239. extra: 639 / 614,
  10240. bottom: 30.55 / 671
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(14, "feet"),
  10248. default: true
  10249. },
  10250. {
  10251. name: "Minimacro",
  10252. height: math.unit(30, "meters")
  10253. },
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(500, "meters")
  10257. },
  10258. {
  10259. name: "Megamacro",
  10260. height: math.unit(9000, "km")
  10261. },
  10262. {
  10263. name: "Teramacro",
  10264. height: math.unit(384000, "km")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(150, "lb"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/kayroo/front.svg",
  10277. extra: 1153 / 1038,
  10278. bottom: 0.06
  10279. }
  10280. },
  10281. foot: {
  10282. height: math.unit(6, "feet"),
  10283. weight: math.unit(150, "lb"),
  10284. name: "Foot",
  10285. image: {
  10286. source: "./media/characters/kayroo/foot.svg"
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(8, "feet"),
  10294. default: true
  10295. },
  10296. {
  10297. name: "Minimacro",
  10298. height: math.unit(250, "feet")
  10299. },
  10300. {
  10301. name: "Macro",
  10302. height: math.unit(2800, "feet")
  10303. },
  10304. {
  10305. name: "Megamacro",
  10306. height: math.unit(5200, "feet")
  10307. },
  10308. {
  10309. name: "Gigamacro",
  10310. height: math.unit(27000, "feet")
  10311. },
  10312. {
  10313. name: "Omega",
  10314. height: math.unit(45000, "feet")
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(18, "feet"),
  10323. weight: math.unit(5800, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/rhys/front.svg",
  10327. extra: 3386 / 3090,
  10328. bottom: 0.07
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(18, "feet"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Working Size",
  10340. height: math.unit(200, "feet")
  10341. },
  10342. {
  10343. name: "Demolition Size",
  10344. height: math.unit(2000, "feet")
  10345. },
  10346. {
  10347. name: "Maximum Licensed Size",
  10348. height: math.unit(5, "miles")
  10349. },
  10350. {
  10351. name: "Maximum Observed Size",
  10352. height: math.unit(10, "yottameters")
  10353. },
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10358. {
  10359. front: {
  10360. height: math.unit(6, "feet"),
  10361. weight: math.unit(250, "lb"),
  10362. name: "Front",
  10363. image: {
  10364. source: "./media/characters/toto/front.svg",
  10365. extra: 527 / 479,
  10366. bottom: 0.05
  10367. }
  10368. },
  10369. },
  10370. [
  10371. {
  10372. name: "Micro",
  10373. height: math.unit(3, "feet")
  10374. },
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(10, "feet")
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(150, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(1200, "feet")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "King", species: ["lion"], tags: ["anthro"] },
  10392. {
  10393. back: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(150, "lb"),
  10396. name: "Back",
  10397. image: {
  10398. source: "./media/characters/king/back.svg"
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Micro",
  10405. height: math.unit(2, "inches")
  10406. },
  10407. {
  10408. name: "Normal",
  10409. height: math.unit(8, "feet")
  10410. },
  10411. {
  10412. name: "Macro",
  10413. height: math.unit(200, "feet"),
  10414. default: true
  10415. },
  10416. {
  10417. name: "Megamacro",
  10418. height: math.unit(50, "miles")
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10424. {
  10425. anthro: {
  10426. height: math.unit(6 + 5 / 12, "feet"),
  10427. weight: math.unit(280, "lb"),
  10428. name: "Anthro",
  10429. image: {
  10430. source: "./media/characters/cordite/anthro.svg",
  10431. extra: 1986 / 1905,
  10432. bottom: 0.025
  10433. }
  10434. },
  10435. feral: {
  10436. height: math.unit(2, "feet"),
  10437. weight: math.unit(90, "lb"),
  10438. name: "Feral",
  10439. image: {
  10440. source: "./media/characters/cordite/feral.svg",
  10441. extra: 1260 / 755,
  10442. bottom: 0.05
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(6 + 5 / 12, "feet"),
  10450. default: true
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10456. {
  10457. front: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(150, "lb"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/pianostrong/front.svg",
  10463. extra: 6577 / 6254,
  10464. bottom: 0.02
  10465. }
  10466. },
  10467. side: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(150, "lb"),
  10470. name: "Side",
  10471. image: {
  10472. source: "./media/characters/pianostrong/side.svg",
  10473. extra: 6106 / 5730
  10474. }
  10475. },
  10476. back: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(150, "lb"),
  10479. name: "Back",
  10480. image: {
  10481. source: "./media/characters/pianostrong/back.svg",
  10482. extra: 6085 / 5733,
  10483. bottom: 0.01
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Macro",
  10490. height: math.unit(100, "feet")
  10491. },
  10492. {
  10493. name: "Macro+",
  10494. height: math.unit(300, "feet"),
  10495. default: true
  10496. },
  10497. {
  10498. name: "Macro++",
  10499. height: math.unit(1000, "feet")
  10500. },
  10501. ]
  10502. ))
  10503. characterMakers.push(() => makeCharacter(
  10504. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10505. {
  10506. front: {
  10507. height: math.unit(6, "feet"),
  10508. weight: math.unit(150, "lb"),
  10509. name: "Front",
  10510. image: {
  10511. source: "./media/characters/kona/front.svg",
  10512. extra: 2960 / 2629,
  10513. bottom: 0.005
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(11 + 8 / 12, "feet")
  10521. },
  10522. {
  10523. name: "Macro",
  10524. height: math.unit(850, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "Macro+",
  10529. height: math.unit(1.5, "km"),
  10530. default: true
  10531. },
  10532. {
  10533. name: "Megamacro",
  10534. height: math.unit(80, "miles")
  10535. },
  10536. {
  10537. name: "Gigamacro",
  10538. height: math.unit(3500, "miles")
  10539. },
  10540. ]
  10541. ))
  10542. characterMakers.push(() => makeCharacter(
  10543. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10544. {
  10545. side: {
  10546. height: math.unit(1.9, "meters"),
  10547. weight: math.unit(326, "kg"),
  10548. name: "Side",
  10549. image: {
  10550. source: "./media/characters/levi/side.svg",
  10551. extra: 1704 / 1334,
  10552. bottom: 0.02
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(1.9, "meters"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Macro",
  10564. height: math.unit(20, "meters")
  10565. },
  10566. {
  10567. name: "Macro+",
  10568. height: math.unit(200, "meters")
  10569. },
  10570. {
  10571. name: "Megamacro",
  10572. height: math.unit(2, "km")
  10573. },
  10574. {
  10575. name: "Megamacro+",
  10576. height: math.unit(20, "km")
  10577. },
  10578. {
  10579. name: "Gigamacro",
  10580. height: math.unit(2500, "km")
  10581. },
  10582. {
  10583. name: "Gigamacro+",
  10584. height: math.unit(120000, "km")
  10585. },
  10586. {
  10587. name: "Teramacro",
  10588. height: math.unit(7.77e6, "km")
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10594. {
  10595. front: {
  10596. height: math.unit(6 + 4 / 12, "feet"),
  10597. weight: math.unit(188, "lb"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/bmc/front.svg",
  10601. extra: 1067 / 1022,
  10602. bottom: 0.047
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Human-sized",
  10609. height: math.unit(6 + 4 / 12, "feet")
  10610. },
  10611. {
  10612. name: "Small",
  10613. height: math.unit(250, "feet")
  10614. },
  10615. {
  10616. name: "Normal",
  10617. height: math.unit(1250, "feet"),
  10618. default: true
  10619. },
  10620. {
  10621. name: "Good Day",
  10622. height: math.unit(88, "miles")
  10623. },
  10624. {
  10625. name: "Largest Measured Size",
  10626. height: math.unit(11.2e6, "lightyears")
  10627. },
  10628. ]
  10629. ))
  10630. characterMakers.push(() => makeCharacter(
  10631. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10632. {
  10633. front: {
  10634. height: math.unit(20, "feet"),
  10635. weight: math.unit(2016, "kg"),
  10636. name: "Front",
  10637. image: {
  10638. source: "./media/characters/sven-the-kaiju/front.svg",
  10639. extra: 1479 / 1449,
  10640. bottom: 0.05
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Fairy",
  10647. height: math.unit(6, "inches")
  10648. },
  10649. {
  10650. name: "Normal",
  10651. height: math.unit(20, "feet"),
  10652. default: true
  10653. },
  10654. {
  10655. name: "Rampage",
  10656. height: math.unit(200, "feet")
  10657. },
  10658. {
  10659. name: "Archfey Forest Guardian",
  10660. height: math.unit(1, "mile")
  10661. },
  10662. ]
  10663. ))
  10664. characterMakers.push(() => makeCharacter(
  10665. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10666. {
  10667. front: {
  10668. height: math.unit(4, "meters"),
  10669. weight: math.unit(2, "tons"),
  10670. name: "Front",
  10671. image: {
  10672. source: "./media/characters/marik/front.svg",
  10673. extra: 1057 / 1003,
  10674. bottom: 0.08
  10675. }
  10676. },
  10677. },
  10678. [
  10679. {
  10680. name: "Normal",
  10681. height: math.unit(4, "meters"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Macro",
  10686. height: math.unit(20, "meters")
  10687. },
  10688. {
  10689. name: "Megamacro",
  10690. height: math.unit(50, "km")
  10691. },
  10692. {
  10693. name: "Gigamacro",
  10694. height: math.unit(100, "km")
  10695. },
  10696. {
  10697. name: "Alpha Macro",
  10698. height: math.unit(7.88e7, "yottameters")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10704. {
  10705. front: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(110, "lb"),
  10708. name: "Front",
  10709. image: {
  10710. source: "./media/characters/mel/front.svg",
  10711. extra: 736 / 617,
  10712. bottom: 0.017
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Pico",
  10719. height: math.unit(3, "pm")
  10720. },
  10721. {
  10722. name: "Nano",
  10723. height: math.unit(3, "nm")
  10724. },
  10725. {
  10726. name: "Micro",
  10727. height: math.unit(0.3, "mm"),
  10728. default: true
  10729. },
  10730. {
  10731. name: "Micro+",
  10732. height: math.unit(3, "mm")
  10733. },
  10734. {
  10735. name: "Normal",
  10736. height: math.unit(5 + 10.5 / 12, "feet")
  10737. },
  10738. ]
  10739. ))
  10740. characterMakers.push(() => makeCharacter(
  10741. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10742. {
  10743. kaiju: {
  10744. height: math.unit(1.75, "meters"),
  10745. weight: math.unit(55, "kg"),
  10746. name: "Kaiju",
  10747. image: {
  10748. source: "./media/characters/lykonous/kaiju.svg",
  10749. extra: 1055 / 946,
  10750. bottom: 0.135
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(2.5, "meters"),
  10758. default: true
  10759. },
  10760. {
  10761. name: "Kaiju Dragon",
  10762. height: math.unit(60, "meters")
  10763. },
  10764. {
  10765. name: "Mega Kaiju",
  10766. height: math.unit(120, "km")
  10767. },
  10768. {
  10769. name: "Giga Kaiju",
  10770. height: math.unit(200, "megameters")
  10771. },
  10772. {
  10773. name: "Terra Kaiju",
  10774. height: math.unit(400, "gigameters")
  10775. },
  10776. {
  10777. name: "Kaiju Dragon God",
  10778. height: math.unit(13000, "exaparsecs")
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(6, "feet"),
  10787. weight: math.unit(150, "lb"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/blü/front.svg",
  10791. extra: 1883 / 1564,
  10792. bottom: 0.031
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(13, "feet"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Big Boi",
  10804. height: math.unit(150, "meters")
  10805. },
  10806. {
  10807. name: "Mini Stomper",
  10808. height: math.unit(300, "meters")
  10809. },
  10810. {
  10811. name: "Macro",
  10812. height: math.unit(1000, "meters")
  10813. },
  10814. {
  10815. name: "Megamacro",
  10816. height: math.unit(11000, "meters")
  10817. },
  10818. {
  10819. name: "Gigamacro",
  10820. height: math.unit(11000, "km")
  10821. },
  10822. {
  10823. name: "Teramacro",
  10824. height: math.unit(420000, "km")
  10825. },
  10826. {
  10827. name: "Examacro",
  10828. height: math.unit(120, "parsecs")
  10829. },
  10830. {
  10831. name: "God Tho",
  10832. height: math.unit(98000000000, "parsecs")
  10833. },
  10834. ]
  10835. ))
  10836. characterMakers.push(() => makeCharacter(
  10837. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10838. {
  10839. taurFront: {
  10840. height: math.unit(6, "feet"),
  10841. weight: math.unit(200, "lb"),
  10842. name: "Taur (Front)",
  10843. image: {
  10844. source: "./media/characters/scales/taur-front.svg",
  10845. extra: 1,
  10846. bottom: 0.05
  10847. }
  10848. },
  10849. taurBack: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(200, "lb"),
  10852. name: "Taur (Back)",
  10853. image: {
  10854. source: "./media/characters/scales/taur-back.svg",
  10855. extra: 1,
  10856. bottom: 0.08
  10857. }
  10858. },
  10859. anthro: {
  10860. height: math.unit(6 * 7 / 12, "feet"),
  10861. weight: math.unit(100, "lb"),
  10862. name: "Anthro",
  10863. image: {
  10864. source: "./media/characters/scales/anthro.svg",
  10865. extra: 1,
  10866. bottom: 0.06
  10867. }
  10868. },
  10869. },
  10870. [
  10871. {
  10872. name: "Normal",
  10873. height: math.unit(12, "feet"),
  10874. default: true
  10875. },
  10876. ]
  10877. ))
  10878. characterMakers.push(() => makeCharacter(
  10879. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10880. {
  10881. front: {
  10882. height: math.unit(6, "feet"),
  10883. weight: math.unit(150, "lb"),
  10884. name: "Front",
  10885. image: {
  10886. source: "./media/characters/koragos/front.svg",
  10887. extra: 841 / 794,
  10888. bottom: 0.035
  10889. }
  10890. },
  10891. back: {
  10892. height: math.unit(6, "feet"),
  10893. weight: math.unit(150, "lb"),
  10894. name: "Back",
  10895. image: {
  10896. source: "./media/characters/koragos/back.svg",
  10897. extra: 841 / 810,
  10898. bottom: 0.022
  10899. }
  10900. },
  10901. },
  10902. [
  10903. {
  10904. name: "Normal",
  10905. height: math.unit(6 + 11 / 12, "feet"),
  10906. default: true
  10907. },
  10908. {
  10909. name: "Macro",
  10910. height: math.unit(490, "feet")
  10911. },
  10912. {
  10913. name: "Megamacro",
  10914. height: math.unit(10, "miles")
  10915. },
  10916. {
  10917. name: "Gigamacro",
  10918. height: math.unit(50, "miles")
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(6, "feet"),
  10927. weight: math.unit(250, "lb"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/xylrem/front.svg",
  10931. extra: 3323 / 3050,
  10932. bottom: 0.065
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Micro",
  10939. height: math.unit(4, "feet")
  10940. },
  10941. {
  10942. name: "Normal",
  10943. height: math.unit(16, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Macro",
  10948. height: math.unit(2720, "feet")
  10949. },
  10950. {
  10951. name: "Megamacro",
  10952. height: math.unit(25000, "miles")
  10953. },
  10954. ]
  10955. ))
  10956. characterMakers.push(() => makeCharacter(
  10957. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10958. {
  10959. front: {
  10960. height: math.unit(8, "feet"),
  10961. weight: math.unit(250, "kg"),
  10962. name: "Front",
  10963. image: {
  10964. source: "./media/characters/ikideru/front.svg",
  10965. extra: 930 / 870,
  10966. bottom: 0.087
  10967. }
  10968. },
  10969. back: {
  10970. height: math.unit(8, "feet"),
  10971. weight: math.unit(250, "kg"),
  10972. name: "Back",
  10973. image: {
  10974. source: "./media/characters/ikideru/back.svg",
  10975. extra: 919 / 852,
  10976. bottom: 0.055
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Rare",
  10983. height: math.unit(8, "feet"),
  10984. default: true
  10985. },
  10986. {
  10987. name: "Playful Loom",
  10988. height: math.unit(80, "feet")
  10989. },
  10990. {
  10991. name: "City Leaner",
  10992. height: math.unit(230, "feet")
  10993. },
  10994. {
  10995. name: "Megamacro",
  10996. height: math.unit(2500, "feet")
  10997. },
  10998. {
  10999. name: "Gigamacro",
  11000. height: math.unit(26400, "feet")
  11001. },
  11002. {
  11003. name: "Tectonic Shifter",
  11004. height: math.unit(1.7, "megameters")
  11005. },
  11006. {
  11007. name: "Planet Carer",
  11008. height: math.unit(21, "megameters")
  11009. },
  11010. {
  11011. name: "God",
  11012. height: math.unit(11157.22, "parsecs")
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(6, "feet"),
  11021. weight: math.unit(120, "lb"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/neo/front.svg"
  11025. }
  11026. },
  11027. },
  11028. [
  11029. {
  11030. name: "Micro",
  11031. height: math.unit(2, "inches"),
  11032. default: true
  11033. },
  11034. {
  11035. name: "Human Size",
  11036. height: math.unit(5 + 8 / 12, "feet")
  11037. },
  11038. ]
  11039. ))
  11040. characterMakers.push(() => makeCharacter(
  11041. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11042. {
  11043. front: {
  11044. height: math.unit(13 + 10 / 12, "feet"),
  11045. weight: math.unit(5320, "lb"),
  11046. name: "Front",
  11047. image: {
  11048. source: "./media/characters/chauncey-chantz/front.svg",
  11049. extra: 1587 / 1435,
  11050. bottom: 0.02
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Normal",
  11057. height: math.unit(13 + 10 / 12, "feet"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(45, "feet")
  11063. },
  11064. {
  11065. name: "Megamacro",
  11066. height: math.unit(250, "miles")
  11067. },
  11068. {
  11069. name: "Planetary",
  11070. height: math.unit(10000, "miles")
  11071. },
  11072. {
  11073. name: "Galactic",
  11074. height: math.unit(40000, "parsecs")
  11075. },
  11076. {
  11077. name: "Universal",
  11078. height: math.unit(1, "yottameter")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11084. {
  11085. front: {
  11086. height: math.unit(6, "feet"),
  11087. weight: math.unit(150, "lb"),
  11088. name: "Front",
  11089. image: {
  11090. source: "./media/characters/epifox/front.svg",
  11091. extra: 1,
  11092. bottom: 0.075
  11093. }
  11094. },
  11095. },
  11096. [
  11097. {
  11098. name: "Micro",
  11099. height: math.unit(6, "inches")
  11100. },
  11101. {
  11102. name: "Normal",
  11103. height: math.unit(12, "feet"),
  11104. default: true
  11105. },
  11106. {
  11107. name: "Macro",
  11108. height: math.unit(3810, "feet")
  11109. },
  11110. {
  11111. name: "Megamacro",
  11112. height: math.unit(500, "miles")
  11113. },
  11114. ]
  11115. ))
  11116. characterMakers.push(() => makeCharacter(
  11117. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11118. {
  11119. front: {
  11120. height: math.unit(1.8796, "m"),
  11121. weight: math.unit(230, "lb"),
  11122. name: "Front",
  11123. image: {
  11124. source: "./media/characters/colin-t/front.svg",
  11125. extra: 1272 / 1193,
  11126. bottom: 0.07
  11127. }
  11128. },
  11129. },
  11130. [
  11131. {
  11132. name: "Micro",
  11133. height: math.unit(0.571, "meters")
  11134. },
  11135. {
  11136. name: "Normal",
  11137. height: math.unit(1.8796, "meters"),
  11138. default: true
  11139. },
  11140. {
  11141. name: "Tall",
  11142. height: math.unit(4, "meters")
  11143. },
  11144. {
  11145. name: "Macro",
  11146. height: math.unit(67.241, "meters")
  11147. },
  11148. {
  11149. name: "Megamacro",
  11150. height: math.unit(371.856, "meters")
  11151. },
  11152. {
  11153. name: "Planetary",
  11154. height: math.unit(12631.5689, "km")
  11155. },
  11156. ]
  11157. ))
  11158. characterMakers.push(() => makeCharacter(
  11159. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11160. {
  11161. front: {
  11162. height: math.unit(1.85, "meters"),
  11163. weight: math.unit(80, "kg"),
  11164. name: "Front",
  11165. image: {
  11166. source: "./media/characters/matvei/front.svg",
  11167. extra: 614 / 594,
  11168. bottom: 0.01
  11169. }
  11170. },
  11171. },
  11172. [
  11173. {
  11174. name: "Normal",
  11175. height: math.unit(1.85, "meters"),
  11176. default: true
  11177. },
  11178. ]
  11179. ))
  11180. characterMakers.push(() => makeCharacter(
  11181. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11182. {
  11183. front: {
  11184. height: math.unit(5 + 9 / 12, "feet"),
  11185. weight: math.unit(70, "lb"),
  11186. name: "Front",
  11187. image: {
  11188. source: "./media/characters/quincy/front.svg",
  11189. extra: 3041 / 2751
  11190. }
  11191. },
  11192. back: {
  11193. height: math.unit(5 + 9 / 12, "feet"),
  11194. weight: math.unit(70, "lb"),
  11195. name: "Back",
  11196. image: {
  11197. source: "./media/characters/quincy/back.svg",
  11198. extra: 3041 / 2751
  11199. }
  11200. },
  11201. flying: {
  11202. height: math.unit(5 + 4 / 12, "feet"),
  11203. weight: math.unit(70, "lb"),
  11204. name: "Flying",
  11205. image: {
  11206. source: "./media/characters/quincy/flying.svg",
  11207. extra: 1044 / 930
  11208. }
  11209. },
  11210. },
  11211. [
  11212. {
  11213. name: "Micro",
  11214. height: math.unit(3, "cm")
  11215. },
  11216. {
  11217. name: "Normal",
  11218. height: math.unit(5 + 9 / 12, "feet")
  11219. },
  11220. {
  11221. name: "Macro",
  11222. height: math.unit(200, "meters"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Megamacro",
  11227. height: math.unit(1000, "meters")
  11228. },
  11229. ]
  11230. ))
  11231. characterMakers.push(() => makeCharacter(
  11232. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11233. {
  11234. front: {
  11235. height: math.unit(4 + 7 / 12, "feet"),
  11236. weight: math.unit(50, "lb"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/vanrel/front.svg",
  11240. extra: 1,
  11241. bottom: 0.02
  11242. }
  11243. },
  11244. frontAlt: {
  11245. height: math.unit(4 + 7 / 12, "feet"),
  11246. weight: math.unit(50, "lb"),
  11247. name: "Front-alt",
  11248. image: {
  11249. source: "./media/characters/vanrel/front-alt.svg",
  11250. extra: 1,
  11251. bottom: 15/1511
  11252. }
  11253. },
  11254. elemental: {
  11255. height: math.unit(3, "feet"),
  11256. weight: math.unit(50, "lb"),
  11257. name: "Elemental",
  11258. image: {
  11259. source: "./media/characters/vanrel/elemental.svg",
  11260. extra: 192.3 / 162.8,
  11261. bottom: 1.79 / 194.17
  11262. }
  11263. },
  11264. side: {
  11265. height: math.unit(4 + 7 / 12, "feet"),
  11266. weight: math.unit(50, "lb"),
  11267. name: "Side",
  11268. image: {
  11269. source: "./media/characters/vanrel/side.svg",
  11270. extra: 1,
  11271. bottom: 0.025
  11272. }
  11273. },
  11274. tome: {
  11275. height: math.unit(1.35, "feet"),
  11276. weight: math.unit(10, "lb"),
  11277. name: "Vanrel's Tome",
  11278. rename: true,
  11279. image: {
  11280. source: "./media/characters/vanrel/tome.svg"
  11281. }
  11282. },
  11283. beans: {
  11284. height: math.unit(0.89, "feet"),
  11285. name: "Beans",
  11286. image: {
  11287. source: "./media/characters/vanrel/beans.svg"
  11288. }
  11289. },
  11290. },
  11291. [
  11292. {
  11293. name: "Normal",
  11294. height: math.unit(4 + 7 / 12, "feet"),
  11295. default: true
  11296. },
  11297. ]
  11298. ))
  11299. characterMakers.push(() => makeCharacter(
  11300. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11301. {
  11302. front: {
  11303. height: math.unit(7 + 5 / 12, "feet"),
  11304. weight: math.unit(150, "lb"),
  11305. name: "Front",
  11306. image: {
  11307. source: "./media/characters/kuiper-vanrel/front.svg",
  11308. extra: 1118 / 1068,
  11309. bottom: 0.09
  11310. }
  11311. },
  11312. foot: {
  11313. height: math.unit(0.55, "meters"),
  11314. name: "Foot",
  11315. image: {
  11316. source: "./media/characters/kuiper-vanrel/foot.svg",
  11317. }
  11318. },
  11319. battle: {
  11320. height: math.unit(6.824, "feet"),
  11321. weight: math.unit(150, "lb"),
  11322. name: "Battle",
  11323. image: {
  11324. source: "./media/characters/kuiper-vanrel/battle.svg",
  11325. extra: 1466 / 1327,
  11326. bottom: 29 / 1492.5
  11327. }
  11328. },
  11329. battleAlt: {
  11330. height: math.unit(6.824, "feet"),
  11331. weight: math.unit(150, "lb"),
  11332. name: "Battle (Alt)",
  11333. image: {
  11334. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11335. extra: 2081 / 1965,
  11336. bottom: 40 / 2121
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Normal",
  11343. height: math.unit(7 + 5 / 12, "feet"),
  11344. default: true
  11345. },
  11346. ]
  11347. ))
  11348. characterMakers.push(() => makeCharacter(
  11349. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11350. {
  11351. front: {
  11352. height: math.unit(8 + 5 / 12, "feet"),
  11353. weight: math.unit(150, "lb"),
  11354. name: "Front",
  11355. image: {
  11356. source: "./media/characters/keset-vanrel/front.svg",
  11357. extra: 1150 / 1084,
  11358. bottom: 0.05
  11359. }
  11360. },
  11361. hand: {
  11362. height: math.unit(0.6, "meters"),
  11363. name: "Hand",
  11364. image: {
  11365. source: "./media/characters/keset-vanrel/hand.svg"
  11366. }
  11367. },
  11368. foot: {
  11369. height: math.unit(0.94978, "meters"),
  11370. name: "Foot",
  11371. image: {
  11372. source: "./media/characters/keset-vanrel/foot.svg"
  11373. }
  11374. },
  11375. battle: {
  11376. height: math.unit(7.408, "feet"),
  11377. weight: math.unit(150, "lb"),
  11378. name: "Battle",
  11379. image: {
  11380. source: "./media/characters/keset-vanrel/battle.svg",
  11381. extra: 1890 / 1386,
  11382. bottom: 73.28 / 1970
  11383. }
  11384. },
  11385. },
  11386. [
  11387. {
  11388. name: "Normal",
  11389. height: math.unit(8 + 5 / 12, "feet"),
  11390. default: true
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11396. {
  11397. front: {
  11398. height: math.unit(6, "feet"),
  11399. weight: math.unit(150, "lb"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/neos/front.svg",
  11403. extra: 1696 / 992,
  11404. bottom: 0.14
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Normal",
  11411. height: math.unit(54, "cm"),
  11412. default: true
  11413. },
  11414. {
  11415. name: "Macro",
  11416. height: math.unit(100, "m")
  11417. },
  11418. {
  11419. name: "Megamacro",
  11420. height: math.unit(10, "km")
  11421. },
  11422. {
  11423. name: "Megamacro+",
  11424. height: math.unit(100, "km")
  11425. },
  11426. {
  11427. name: "Gigamacro",
  11428. height: math.unit(100, "Mm")
  11429. },
  11430. {
  11431. name: "Teramacro",
  11432. height: math.unit(100, "Gm")
  11433. },
  11434. {
  11435. name: "Examacro",
  11436. height: math.unit(100, "Em")
  11437. },
  11438. {
  11439. name: "Godly",
  11440. height: math.unit(10000, "Ym")
  11441. },
  11442. {
  11443. name: "Beyond Godly",
  11444. height: math.unit(25, "multiverses")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11450. {
  11451. feminine: {
  11452. height: math.unit(5, "feet"),
  11453. weight: math.unit(100, "lb"),
  11454. name: "Feminine",
  11455. image: {
  11456. source: "./media/characters/sammy-mouse/feminine.svg",
  11457. extra: 2526 / 2425,
  11458. bottom: 0.123
  11459. }
  11460. },
  11461. masculine: {
  11462. height: math.unit(5, "feet"),
  11463. weight: math.unit(100, "lb"),
  11464. name: "Masculine",
  11465. image: {
  11466. source: "./media/characters/sammy-mouse/masculine.svg",
  11467. extra: 2526 / 2425,
  11468. bottom: 0.123
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Micro",
  11475. height: math.unit(5, "inches")
  11476. },
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(5, "feet"),
  11480. default: true
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(60, "feet")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(4, "feet"),
  11493. weight: math.unit(50, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/kole/front.svg",
  11497. extra: 1423 / 1303,
  11498. bottom: 0.025
  11499. }
  11500. },
  11501. back: {
  11502. height: math.unit(4, "feet"),
  11503. weight: math.unit(50, "lb"),
  11504. name: "Back",
  11505. image: {
  11506. source: "./media/characters/kole/back.svg",
  11507. extra: 1426 / 1280,
  11508. bottom: 0.02
  11509. }
  11510. },
  11511. },
  11512. [
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(4, "feet"),
  11516. default: true
  11517. },
  11518. ]
  11519. ))
  11520. characterMakers.push(() => makeCharacter(
  11521. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11522. {
  11523. front: {
  11524. height: math.unit(2 + 6 / 12, "feet"),
  11525. weight: math.unit(20, "lb"),
  11526. name: "Front",
  11527. image: {
  11528. source: "./media/characters/rufran/front.svg",
  11529. extra: 2041 / 1839,
  11530. bottom: 0.055
  11531. }
  11532. },
  11533. back: {
  11534. height: math.unit(2 + 6 / 12, "feet"),
  11535. weight: math.unit(20, "lb"),
  11536. name: "Back",
  11537. image: {
  11538. source: "./media/characters/rufran/back.svg",
  11539. extra: 2054 / 1839,
  11540. bottom: 0.01
  11541. }
  11542. },
  11543. hand: {
  11544. height: math.unit(0.2166, "meters"),
  11545. name: "Hand",
  11546. image: {
  11547. source: "./media/characters/rufran/hand.svg"
  11548. }
  11549. },
  11550. foot: {
  11551. height: math.unit(0.185, "meters"),
  11552. name: "Foot",
  11553. image: {
  11554. source: "./media/characters/rufran/foot.svg"
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Micro",
  11561. height: math.unit(1, "inch")
  11562. },
  11563. {
  11564. name: "Normal",
  11565. height: math.unit(2 + 6 / 12, "feet"),
  11566. default: true
  11567. },
  11568. {
  11569. name: "Big",
  11570. height: math.unit(60, "feet")
  11571. },
  11572. {
  11573. name: "Macro",
  11574. height: math.unit(325, "feet")
  11575. },
  11576. ]
  11577. ))
  11578. characterMakers.push(() => makeCharacter(
  11579. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11580. {
  11581. front: {
  11582. height: math.unit(0.3, "meters"),
  11583. weight: math.unit(3.5, "kg"),
  11584. name: "Front",
  11585. image: {
  11586. source: "./media/characters/chip/front.svg",
  11587. extra: 748 / 674
  11588. }
  11589. },
  11590. },
  11591. [
  11592. {
  11593. name: "Micro",
  11594. height: math.unit(1, "inch"),
  11595. default: true
  11596. },
  11597. ]
  11598. ))
  11599. characterMakers.push(() => makeCharacter(
  11600. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11601. {
  11602. side: {
  11603. height: math.unit(2.3, "meters"),
  11604. weight: math.unit(3500, "lb"),
  11605. name: "Side",
  11606. image: {
  11607. source: "./media/characters/torvid/side.svg",
  11608. extra: 1972 / 722,
  11609. bottom: 0.035
  11610. }
  11611. },
  11612. },
  11613. [
  11614. {
  11615. name: "Normal",
  11616. height: math.unit(2.3, "meters"),
  11617. default: true
  11618. },
  11619. ]
  11620. ))
  11621. characterMakers.push(() => makeCharacter(
  11622. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11623. {
  11624. front: {
  11625. height: math.unit(2, "meters"),
  11626. weight: math.unit(150.5, "kg"),
  11627. name: "Front",
  11628. image: {
  11629. source: "./media/characters/susan/front.svg",
  11630. extra: 693 / 635,
  11631. bottom: 0.05
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Megamacro",
  11638. height: math.unit(505, "miles"),
  11639. default: true
  11640. },
  11641. ]
  11642. ))
  11643. characterMakers.push(() => makeCharacter(
  11644. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11645. {
  11646. front: {
  11647. height: math.unit(6, "feet"),
  11648. weight: math.unit(150, "lb"),
  11649. name: "Front",
  11650. image: {
  11651. source: "./media/characters/raindrops/front.svg",
  11652. extra: 2655 / 2461,
  11653. bottom: 49 / 2705
  11654. }
  11655. },
  11656. back: {
  11657. height: math.unit(6, "feet"),
  11658. weight: math.unit(150, "lb"),
  11659. name: "Back",
  11660. image: {
  11661. source: "./media/characters/raindrops/back.svg",
  11662. extra: 2574 / 2400,
  11663. bottom: 65 / 2634
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Micro",
  11670. height: math.unit(6, "inches")
  11671. },
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(6 + 2 / 12, "feet")
  11675. },
  11676. {
  11677. name: "Macro",
  11678. height: math.unit(131, "feet"),
  11679. default: true
  11680. },
  11681. {
  11682. name: "Megamacro",
  11683. height: math.unit(15, "miles")
  11684. },
  11685. {
  11686. name: "Gigamacro",
  11687. height: math.unit(4000, "miles")
  11688. },
  11689. {
  11690. name: "Teramacro",
  11691. height: math.unit(315000, "miles")
  11692. },
  11693. ]
  11694. ))
  11695. characterMakers.push(() => makeCharacter(
  11696. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11697. {
  11698. front: {
  11699. height: math.unit(2.794, "meters"),
  11700. weight: math.unit(325, "kg"),
  11701. name: "Front",
  11702. image: {
  11703. source: "./media/characters/tezwa/front.svg",
  11704. extra: 2083 / 1906,
  11705. bottom: 0.031
  11706. }
  11707. },
  11708. foot: {
  11709. height: math.unit(0.687, "meters"),
  11710. name: "Foot",
  11711. image: {
  11712. source: "./media/characters/tezwa/foot.svg"
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Normal",
  11719. height: math.unit(9 + 2 / 12, "feet"),
  11720. default: true
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11726. {
  11727. front: {
  11728. height: math.unit(58, "feet"),
  11729. weight: math.unit(89000, "lb"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/typhus/front.svg",
  11733. extra: 816 / 800,
  11734. bottom: 0.065
  11735. }
  11736. },
  11737. },
  11738. [
  11739. {
  11740. name: "Macro",
  11741. height: math.unit(58, "feet"),
  11742. default: true
  11743. },
  11744. ]
  11745. ))
  11746. characterMakers.push(() => makeCharacter(
  11747. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11748. {
  11749. front: {
  11750. height: math.unit(12, "feet"),
  11751. weight: math.unit(6, "tonnes"),
  11752. name: "Front",
  11753. image: {
  11754. source: "./media/characters/lyra-von-wulf/front.svg",
  11755. extra: 1,
  11756. bottom: 0.10
  11757. }
  11758. },
  11759. frontMecha: {
  11760. height: math.unit(12, "feet"),
  11761. weight: math.unit(12, "tonnes"),
  11762. name: "Front (Mecha)",
  11763. image: {
  11764. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11765. extra: 1,
  11766. bottom: 0.042
  11767. }
  11768. },
  11769. maw: {
  11770. height: math.unit(2.2, "feet"),
  11771. name: "Maw",
  11772. image: {
  11773. source: "./media/characters/lyra-von-wulf/maw.svg"
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(12, "feet"),
  11781. default: true
  11782. },
  11783. {
  11784. name: "Classic",
  11785. height: math.unit(50, "feet")
  11786. },
  11787. {
  11788. name: "Macro",
  11789. height: math.unit(500, "feet")
  11790. },
  11791. {
  11792. name: "Megamacro",
  11793. height: math.unit(1, "mile")
  11794. },
  11795. {
  11796. name: "Gigamacro",
  11797. height: math.unit(400, "miles")
  11798. },
  11799. {
  11800. name: "Teramacro",
  11801. height: math.unit(22000, "miles")
  11802. },
  11803. {
  11804. name: "Solarmacro",
  11805. height: math.unit(8600000, "miles")
  11806. },
  11807. {
  11808. name: "Galactic",
  11809. height: math.unit(1057000, "lightyears")
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(6 + 10 / 12, "feet"),
  11818. weight: math.unit(150, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/dixon/front.svg",
  11822. extra: 3361 / 3209,
  11823. bottom: 0.01
  11824. }
  11825. },
  11826. },
  11827. [
  11828. {
  11829. name: "Normal",
  11830. height: math.unit(6 + 10 / 12, "feet"),
  11831. default: true
  11832. },
  11833. {
  11834. name: "Big",
  11835. height: math.unit(12, "meters")
  11836. },
  11837. {
  11838. name: "Macro",
  11839. height: math.unit(500, "meters")
  11840. },
  11841. {
  11842. name: "Megamacro",
  11843. height: math.unit(2, "km")
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11849. {
  11850. front: {
  11851. height: math.unit(185, "cm"),
  11852. weight: math.unit(68, "kg"),
  11853. name: "Front",
  11854. image: {
  11855. source: "./media/characters/kauko/front.svg",
  11856. extra: 1455 / 1421,
  11857. bottom: 0.03
  11858. }
  11859. },
  11860. back: {
  11861. height: math.unit(185, "cm"),
  11862. weight: math.unit(68, "kg"),
  11863. name: "Back",
  11864. image: {
  11865. source: "./media/characters/kauko/back.svg",
  11866. extra: 1455 / 1421,
  11867. bottom: 0.004
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Normal",
  11874. height: math.unit(185, "cm"),
  11875. default: true
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(150, "kg"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/varg/front.svg",
  11888. extra: 1108 / 1018,
  11889. bottom: 0.0375
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(5, "meters")
  11897. },
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(200, "meters")
  11901. },
  11902. {
  11903. name: "Megamacro",
  11904. height: math.unit(20, "kilometers")
  11905. },
  11906. {
  11907. name: "True Size",
  11908. height: math.unit(211, "km"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Gigamacro",
  11913. height: math.unit(1000, "km")
  11914. },
  11915. {
  11916. name: "Gigamacro+",
  11917. height: math.unit(8000, "km")
  11918. },
  11919. {
  11920. name: "Teramacro",
  11921. height: math.unit(1000000, "km")
  11922. },
  11923. ]
  11924. ))
  11925. characterMakers.push(() => makeCharacter(
  11926. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11927. {
  11928. front: {
  11929. height: math.unit(7 + 7 / 12, "feet"),
  11930. weight: math.unit(267, "lb"),
  11931. name: "Front",
  11932. image: {
  11933. source: "./media/characters/dayza/front.svg",
  11934. extra: 1262 / 1200,
  11935. bottom: 0.035
  11936. }
  11937. },
  11938. side: {
  11939. height: math.unit(7 + 7 / 12, "feet"),
  11940. weight: math.unit(267, "lb"),
  11941. name: "Side",
  11942. image: {
  11943. source: "./media/characters/dayza/side.svg",
  11944. extra: 1295 / 1245,
  11945. bottom: 0.05
  11946. }
  11947. },
  11948. back: {
  11949. height: math.unit(7 + 7 / 12, "feet"),
  11950. weight: math.unit(267, "lb"),
  11951. name: "Back",
  11952. image: {
  11953. source: "./media/characters/dayza/back.svg",
  11954. extra: 1241 / 1170
  11955. }
  11956. },
  11957. },
  11958. [
  11959. {
  11960. name: "Normal",
  11961. height: math.unit(7 + 7 / 12, "feet"),
  11962. default: true
  11963. },
  11964. {
  11965. name: "Macro",
  11966. height: math.unit(155, "feet")
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11972. {
  11973. front: {
  11974. height: math.unit(6 + 5 / 12, "feet"),
  11975. weight: math.unit(160, "lb"),
  11976. name: "Front",
  11977. image: {
  11978. source: "./media/characters/xanthos/front.svg",
  11979. extra: 1,
  11980. bottom: 0.04
  11981. }
  11982. },
  11983. back: {
  11984. height: math.unit(6 + 5 / 12, "feet"),
  11985. weight: math.unit(160, "lb"),
  11986. name: "Back",
  11987. image: {
  11988. source: "./media/characters/xanthos/back.svg",
  11989. extra: 1,
  11990. bottom: 0.03
  11991. }
  11992. },
  11993. hand: {
  11994. height: math.unit(0.928, "feet"),
  11995. name: "Hand",
  11996. image: {
  11997. source: "./media/characters/xanthos/hand.svg"
  11998. }
  11999. },
  12000. foot: {
  12001. height: math.unit(1.286, "feet"),
  12002. name: "Foot",
  12003. image: {
  12004. source: "./media/characters/xanthos/foot.svg"
  12005. }
  12006. },
  12007. },
  12008. [
  12009. {
  12010. name: "Normal",
  12011. height: math.unit(6 + 5 / 12, "feet"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Normal+",
  12016. height: math.unit(6, "meters")
  12017. },
  12018. {
  12019. name: "Macro",
  12020. height: math.unit(40, "feet")
  12021. },
  12022. {
  12023. name: "Macro+",
  12024. height: math.unit(200, "meters")
  12025. },
  12026. {
  12027. name: "Megamacro",
  12028. height: math.unit(20, "km")
  12029. },
  12030. {
  12031. name: "Megamacro+",
  12032. height: math.unit(100, "km")
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12038. {
  12039. front: {
  12040. height: math.unit(6 + 3 / 12, "feet"),
  12041. weight: math.unit(215, "lb"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/grynn/front.svg",
  12045. extra: 4627 / 4209,
  12046. bottom: 0.047
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Micro",
  12053. height: math.unit(6, "inches")
  12054. },
  12055. {
  12056. name: "Normal",
  12057. height: math.unit(6 + 3 / 12, "feet"),
  12058. default: true
  12059. },
  12060. {
  12061. name: "Big",
  12062. height: math.unit(104, "feet")
  12063. },
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(944, "feet")
  12067. },
  12068. {
  12069. name: "Macro+",
  12070. height: math.unit(9480, "feet")
  12071. },
  12072. {
  12073. name: "Megamacro",
  12074. height: math.unit(78752, "feet")
  12075. },
  12076. {
  12077. name: "Megamacro+",
  12078. height: math.unit(630128, "feet")
  12079. },
  12080. {
  12081. name: "Megamacro++",
  12082. height: math.unit(3150695, "feet")
  12083. },
  12084. ]
  12085. ))
  12086. characterMakers.push(() => makeCharacter(
  12087. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12088. {
  12089. front: {
  12090. height: math.unit(7 + 5 / 12, "feet"),
  12091. weight: math.unit(450, "lb"),
  12092. name: "Front",
  12093. image: {
  12094. source: "./media/characters/mocha-aura/front.svg",
  12095. extra: 1907 / 1817,
  12096. bottom: 0.04
  12097. }
  12098. },
  12099. back: {
  12100. height: math.unit(7 + 5 / 12, "feet"),
  12101. weight: math.unit(450, "lb"),
  12102. name: "Back",
  12103. image: {
  12104. source: "./media/characters/mocha-aura/back.svg",
  12105. extra: 1900 / 1825,
  12106. bottom: 0.045
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Nano",
  12113. height: math.unit(1, "nm")
  12114. },
  12115. {
  12116. name: "Megamicro",
  12117. height: math.unit(1, "mm")
  12118. },
  12119. {
  12120. name: "Micro",
  12121. height: math.unit(3, "inches")
  12122. },
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(7 + 5 / 12, "feet"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Macro",
  12130. height: math.unit(30, "feet")
  12131. },
  12132. {
  12133. name: "Megamacro",
  12134. height: math.unit(3500, "feet")
  12135. },
  12136. {
  12137. name: "Teramacro",
  12138. height: math.unit(500000, "miles")
  12139. },
  12140. {
  12141. name: "Petamacro",
  12142. height: math.unit(50000000000000000, "parsecs")
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(6, "feet"),
  12151. weight: math.unit(150, "lb"),
  12152. name: "Front",
  12153. image: {
  12154. source: "./media/characters/ilisha-devya/front.svg",
  12155. extra: 1,
  12156. bottom: 0.175
  12157. }
  12158. },
  12159. back: {
  12160. height: math.unit(6, "feet"),
  12161. weight: math.unit(150, "lb"),
  12162. name: "Back",
  12163. image: {
  12164. source: "./media/characters/ilisha-devya/back.svg",
  12165. extra: 1,
  12166. bottom: 0.015
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Macro",
  12173. height: math.unit(500, "feet"),
  12174. default: true
  12175. },
  12176. {
  12177. name: "Megamacro",
  12178. height: math.unit(10, "miles")
  12179. },
  12180. {
  12181. name: "Gigamacro",
  12182. height: math.unit(100000, "miles")
  12183. },
  12184. {
  12185. name: "Examacro",
  12186. height: math.unit(1e9, "lightyears")
  12187. },
  12188. {
  12189. name: "Omniversal",
  12190. height: math.unit(1e33, "lightyears")
  12191. },
  12192. {
  12193. name: "Beyond Infinite",
  12194. height: math.unit(1e100, "lightyears")
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12200. {
  12201. Side: {
  12202. height: math.unit(6, "feet"),
  12203. weight: math.unit(150, "lb"),
  12204. name: "Side",
  12205. image: {
  12206. source: "./media/characters/mira/side.svg",
  12207. extra: 900 / 799,
  12208. bottom: 0.02
  12209. }
  12210. },
  12211. },
  12212. [
  12213. {
  12214. name: "Human Size",
  12215. height: math.unit(6, "feet")
  12216. },
  12217. {
  12218. name: "Macro",
  12219. height: math.unit(100, "feet"),
  12220. default: true
  12221. },
  12222. {
  12223. name: "Megamacro",
  12224. height: math.unit(10, "miles")
  12225. },
  12226. {
  12227. name: "Gigamacro",
  12228. height: math.unit(25000, "miles")
  12229. },
  12230. {
  12231. name: "Teramacro",
  12232. height: math.unit(300, "AU")
  12233. },
  12234. {
  12235. name: "Full Size",
  12236. height: math.unit(4.5e10, "lightyears")
  12237. },
  12238. ]
  12239. ))
  12240. characterMakers.push(() => makeCharacter(
  12241. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12242. {
  12243. front: {
  12244. height: math.unit(6, "feet"),
  12245. weight: math.unit(150, "lb"),
  12246. name: "Front",
  12247. image: {
  12248. source: "./media/characters/holly/front.svg",
  12249. extra: 639 / 606
  12250. }
  12251. },
  12252. back: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(150, "lb"),
  12255. name: "Back",
  12256. image: {
  12257. source: "./media/characters/holly/back.svg",
  12258. extra: 623 / 598
  12259. }
  12260. },
  12261. frontWorking: {
  12262. height: math.unit(6, "feet"),
  12263. weight: math.unit(150, "lb"),
  12264. name: "Front (Working)",
  12265. image: {
  12266. source: "./media/characters/holly/front-working.svg",
  12267. extra: 607 / 577,
  12268. bottom: 0.048
  12269. }
  12270. },
  12271. },
  12272. [
  12273. {
  12274. name: "Normal",
  12275. height: math.unit(12 + 3 / 12, "feet"),
  12276. default: true
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(6, "feet"),
  12285. weight: math.unit(150, "lb"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/porter/front.svg",
  12289. extra: 1,
  12290. bottom: 0.01
  12291. }
  12292. },
  12293. frontRobes: {
  12294. height: math.unit(6, "feet"),
  12295. weight: math.unit(150, "lb"),
  12296. name: "Front (Robes)",
  12297. image: {
  12298. source: "./media/characters/porter/front-robes.svg",
  12299. extra: 1.01,
  12300. bottom: 0.01
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(11 + 9 / 12, "feet"),
  12308. default: true
  12309. },
  12310. ]
  12311. ))
  12312. characterMakers.push(() => makeCharacter(
  12313. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12314. {
  12315. legendary: {
  12316. height: math.unit(6, "feet"),
  12317. weight: math.unit(150, "lb"),
  12318. name: "Legendary",
  12319. image: {
  12320. source: "./media/characters/lucy/legendary.svg",
  12321. extra: 1355 / 1100,
  12322. bottom: 0.045
  12323. }
  12324. },
  12325. },
  12326. [
  12327. {
  12328. name: "Legendary",
  12329. height: math.unit(86882 * 2, "miles"),
  12330. default: true
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12336. {
  12337. front: {
  12338. height: math.unit(6, "feet"),
  12339. weight: math.unit(150, "lb"),
  12340. name: "Front",
  12341. image: {
  12342. source: "./media/characters/drusilla/front.svg",
  12343. extra: 678 / 635,
  12344. bottom: 0.03
  12345. }
  12346. },
  12347. back: {
  12348. height: math.unit(6, "feet"),
  12349. weight: math.unit(150, "lb"),
  12350. name: "Back",
  12351. image: {
  12352. source: "./media/characters/drusilla/back.svg",
  12353. extra: 678 / 635,
  12354. bottom: 0.005
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Macro",
  12361. height: math.unit(100, "feet")
  12362. },
  12363. {
  12364. name: "Canon Height",
  12365. height: math.unit(2000, "feet"),
  12366. default: true
  12367. },
  12368. ]
  12369. ))
  12370. characterMakers.push(() => makeCharacter(
  12371. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12372. {
  12373. front: {
  12374. height: math.unit(6, "feet"),
  12375. weight: math.unit(180, "lb"),
  12376. name: "Front",
  12377. image: {
  12378. source: "./media/characters/renard-thatch/front.svg",
  12379. extra: 2411 / 2275,
  12380. bottom: 0.01
  12381. }
  12382. },
  12383. frontPosing: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(180, "lb"),
  12386. name: "Front (Posing)",
  12387. image: {
  12388. source: "./media/characters/renard-thatch/front-posing.svg",
  12389. extra: 2381 / 2261,
  12390. bottom: 0.01
  12391. }
  12392. },
  12393. back: {
  12394. height: math.unit(6, "feet"),
  12395. weight: math.unit(180, "lb"),
  12396. name: "Back",
  12397. image: {
  12398. source: "./media/characters/renard-thatch/back.svg",
  12399. extra: 2428 / 2288
  12400. }
  12401. },
  12402. },
  12403. [
  12404. {
  12405. name: "Micro",
  12406. height: math.unit(3, "inches")
  12407. },
  12408. {
  12409. name: "Default",
  12410. height: math.unit(6, "feet"),
  12411. default: true
  12412. },
  12413. {
  12414. name: "Macro",
  12415. height: math.unit(75, "feet")
  12416. },
  12417. ]
  12418. ))
  12419. characterMakers.push(() => makeCharacter(
  12420. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12421. {
  12422. front: {
  12423. height: math.unit(1450, "feet"),
  12424. weight: math.unit(1.21e6, "tons"),
  12425. name: "Front",
  12426. image: {
  12427. source: "./media/characters/sekvra/front.svg",
  12428. extra: 1,
  12429. bottom: 0.03
  12430. }
  12431. },
  12432. frontClothed: {
  12433. height: math.unit(1450, "feet"),
  12434. weight: math.unit(1.21e6, "tons"),
  12435. name: "Front (Clothed)",
  12436. image: {
  12437. source: "./media/characters/sekvra/front-clothed.svg",
  12438. extra: 1,
  12439. bottom: 0.03
  12440. }
  12441. },
  12442. side: {
  12443. height: math.unit(1450, "feet"),
  12444. weight: math.unit(1.21e6, "tons"),
  12445. name: "Side",
  12446. image: {
  12447. source: "./media/characters/sekvra/side.svg",
  12448. extra: 1,
  12449. bottom: 0.025
  12450. }
  12451. },
  12452. back: {
  12453. height: math.unit(1450, "feet"),
  12454. weight: math.unit(1.21e6, "tons"),
  12455. name: "Back",
  12456. image: {
  12457. source: "./media/characters/sekvra/back.svg",
  12458. extra: 1,
  12459. bottom: 0.005
  12460. }
  12461. },
  12462. },
  12463. [
  12464. {
  12465. name: "Macro",
  12466. height: math.unit(1450, "feet"),
  12467. default: true
  12468. },
  12469. {
  12470. name: "Megamacro",
  12471. height: math.unit(15000, "feet")
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(6, "feet"),
  12480. weight: math.unit(150, "lb"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/carmine/front.svg",
  12484. extra: 1,
  12485. bottom: 0.035
  12486. }
  12487. },
  12488. frontArmor: {
  12489. height: math.unit(6, "feet"),
  12490. weight: math.unit(150, "lb"),
  12491. name: "Front (Armor)",
  12492. image: {
  12493. source: "./media/characters/carmine/front-armor.svg",
  12494. extra: 1,
  12495. bottom: 0.035
  12496. }
  12497. },
  12498. },
  12499. [
  12500. {
  12501. name: "Large",
  12502. height: math.unit(1, "mile")
  12503. },
  12504. {
  12505. name: "Huge",
  12506. height: math.unit(40, "miles"),
  12507. default: true
  12508. },
  12509. {
  12510. name: "Colossal",
  12511. height: math.unit(2500, "miles")
  12512. },
  12513. ]
  12514. ))
  12515. characterMakers.push(() => makeCharacter(
  12516. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12517. {
  12518. front: {
  12519. height: math.unit(6, "feet"),
  12520. weight: math.unit(150, "lb"),
  12521. name: "Front",
  12522. image: {
  12523. source: "./media/characters/elyssia/front.svg",
  12524. extra: 2201 / 2035,
  12525. bottom: 0.05
  12526. }
  12527. },
  12528. frontClothed: {
  12529. height: math.unit(6, "feet"),
  12530. weight: math.unit(150, "lb"),
  12531. name: "Front (Clothed)",
  12532. image: {
  12533. source: "./media/characters/elyssia/front-clothed.svg",
  12534. extra: 2201 / 2035,
  12535. bottom: 0.05
  12536. }
  12537. },
  12538. back: {
  12539. height: math.unit(6, "feet"),
  12540. weight: math.unit(150, "lb"),
  12541. name: "Back",
  12542. image: {
  12543. source: "./media/characters/elyssia/back.svg",
  12544. extra: 2201 / 2035,
  12545. bottom: 0.013
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Smaller",
  12552. height: math.unit(150, "feet")
  12553. },
  12554. {
  12555. name: "Standard",
  12556. height: math.unit(1400, "feet"),
  12557. default: true
  12558. },
  12559. {
  12560. name: "Distracted",
  12561. height: math.unit(15000, "feet")
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(7 + 4 / 12, "feet"),
  12570. weight: math.unit(500, "lb"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/geno-maxwell/front.svg",
  12574. extra: 2207 / 2040,
  12575. bottom: 0.015
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Micro",
  12582. height: math.unit(3, "inches")
  12583. },
  12584. {
  12585. name: "Normal",
  12586. height: math.unit(7 + 4 / 12, "feet"),
  12587. default: true
  12588. },
  12589. {
  12590. name: "Macro",
  12591. height: math.unit(220, "feet")
  12592. },
  12593. {
  12594. name: "Megamacro",
  12595. height: math.unit(11, "miles")
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12601. {
  12602. front: {
  12603. height: math.unit(7 + 4 / 12, "feet"),
  12604. weight: math.unit(500, "lb"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/regena-maxwell/front.svg",
  12608. extra: 3115 / 2770,
  12609. bottom: 0.02
  12610. }
  12611. },
  12612. },
  12613. [
  12614. {
  12615. name: "Normal",
  12616. height: math.unit(7 + 4 / 12, "feet"),
  12617. default: true
  12618. },
  12619. {
  12620. name: "Macro",
  12621. height: math.unit(220, "feet")
  12622. },
  12623. {
  12624. name: "Megamacro",
  12625. height: math.unit(11, "miles")
  12626. },
  12627. ]
  12628. ))
  12629. characterMakers.push(() => makeCharacter(
  12630. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12631. {
  12632. front: {
  12633. height: math.unit(6, "feet"),
  12634. weight: math.unit(150, "lb"),
  12635. name: "Front",
  12636. image: {
  12637. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12638. extra: 860 / 690,
  12639. bottom: 0.03
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(1.7, "meters"),
  12647. default: true
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(6, "feet"),
  12656. weight: math.unit(150, "lb"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/quilly/front.svg",
  12660. extra: 890 / 776
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Gigamacro",
  12667. height: math.unit(404090, "miles"),
  12668. default: true
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(7 + 8 / 12, "feet"),
  12677. weight: math.unit(350, "lb"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/tempest/front.svg",
  12681. extra: 1175 / 1086,
  12682. bottom: 0.02
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Normal",
  12689. height: math.unit(7 + 8 / 12, "feet"),
  12690. default: true
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12696. {
  12697. side: {
  12698. height: math.unit(4 + 5 / 12, "feet"),
  12699. weight: math.unit(80, "lb"),
  12700. name: "Side",
  12701. image: {
  12702. source: "./media/characters/rodger/side.svg",
  12703. extra: 1235 / 1118
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Micro",
  12710. height: math.unit(1, "inch")
  12711. },
  12712. {
  12713. name: "Normal",
  12714. height: math.unit(4 + 5 / 12, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Macro",
  12719. height: math.unit(120, "feet")
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(6, "feet"),
  12728. weight: math.unit(150, "lb"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/danyel/front.svg",
  12732. extra: 1185 / 1123,
  12733. bottom: 0.05
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Shrunken",
  12740. height: math.unit(0.5, "mm")
  12741. },
  12742. {
  12743. name: "Micro",
  12744. height: math.unit(1, "mm"),
  12745. default: true
  12746. },
  12747. {
  12748. name: "Upsized",
  12749. height: math.unit(5 + 5 / 12, "feet")
  12750. },
  12751. ]
  12752. ))
  12753. characterMakers.push(() => makeCharacter(
  12754. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12755. {
  12756. front: {
  12757. height: math.unit(5 + 6 / 12, "feet"),
  12758. weight: math.unit(200, "lb"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/vivian-bijoux/front.svg",
  12762. extra: 1,
  12763. bottom: 0.072
  12764. }
  12765. },
  12766. },
  12767. [
  12768. {
  12769. name: "Normal",
  12770. height: math.unit(5 + 6 / 12, "feet"),
  12771. default: true
  12772. },
  12773. {
  12774. name: "Bad Dream",
  12775. height: math.unit(500, "feet")
  12776. },
  12777. {
  12778. name: "Nightmare",
  12779. height: math.unit(500, "miles")
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(6 + 1 / 12, "feet"),
  12788. weight: math.unit(260, "lb"),
  12789. name: "Front",
  12790. image: {
  12791. source: "./media/characters/zeta/front.svg",
  12792. extra: 1968 / 1889,
  12793. bottom: 0.06
  12794. }
  12795. },
  12796. back: {
  12797. height: math.unit(6 + 1 / 12, "feet"),
  12798. weight: math.unit(260, "lb"),
  12799. name: "Back",
  12800. image: {
  12801. source: "./media/characters/zeta/back.svg",
  12802. extra: 1944 / 1858,
  12803. bottom: 0.03
  12804. }
  12805. },
  12806. hand: {
  12807. height: math.unit(1.112, "feet"),
  12808. name: "Hand",
  12809. image: {
  12810. source: "./media/characters/zeta/hand.svg"
  12811. }
  12812. },
  12813. foot: {
  12814. height: math.unit(1.48, "feet"),
  12815. name: "Foot",
  12816. image: {
  12817. source: "./media/characters/zeta/foot.svg"
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Micro",
  12824. height: math.unit(6, "inches")
  12825. },
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(6 + 1 / 12, "feet"),
  12829. default: true
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(20, "feet")
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12839. {
  12840. front: {
  12841. height: math.unit(6, "feet"),
  12842. weight: math.unit(150, "lb"),
  12843. name: "Front",
  12844. image: {
  12845. source: "./media/characters/jamie-larsen/front.svg",
  12846. extra: 962 / 933,
  12847. bottom: 0.02
  12848. }
  12849. },
  12850. back: {
  12851. height: math.unit(6, "feet"),
  12852. weight: math.unit(150, "lb"),
  12853. name: "Back",
  12854. image: {
  12855. source: "./media/characters/jamie-larsen/back.svg",
  12856. extra: 997 / 946
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Macro",
  12863. height: math.unit(28 + 7 / 12, "feet"),
  12864. default: true
  12865. },
  12866. {
  12867. name: "Macro+",
  12868. height: math.unit(180, "feet")
  12869. },
  12870. {
  12871. name: "Megamacro",
  12872. height: math.unit(10, "miles")
  12873. },
  12874. {
  12875. name: "Gigamacro",
  12876. height: math.unit(200000, "miles")
  12877. },
  12878. ]
  12879. ))
  12880. characterMakers.push(() => makeCharacter(
  12881. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12882. {
  12883. front: {
  12884. height: math.unit(6, "feet"),
  12885. weight: math.unit(120, "lb"),
  12886. name: "Front",
  12887. image: {
  12888. source: "./media/characters/vance/front.svg",
  12889. extra: 1980 / 1890,
  12890. bottom: 0.09
  12891. }
  12892. },
  12893. back: {
  12894. height: math.unit(6, "feet"),
  12895. weight: math.unit(120, "lb"),
  12896. name: "Back",
  12897. image: {
  12898. source: "./media/characters/vance/back.svg",
  12899. extra: 2081 / 1994,
  12900. bottom: 0.014
  12901. }
  12902. },
  12903. hand: {
  12904. height: math.unit(0.88, "feet"),
  12905. name: "Hand",
  12906. image: {
  12907. source: "./media/characters/vance/hand.svg"
  12908. }
  12909. },
  12910. foot: {
  12911. height: math.unit(0.64, "feet"),
  12912. name: "Foot",
  12913. image: {
  12914. source: "./media/characters/vance/foot.svg"
  12915. }
  12916. },
  12917. },
  12918. [
  12919. {
  12920. name: "Small",
  12921. height: math.unit(90, "feet"),
  12922. default: true
  12923. },
  12924. {
  12925. name: "Macro",
  12926. height: math.unit(100, "meters")
  12927. },
  12928. {
  12929. name: "Megamacro",
  12930. height: math.unit(15, "miles")
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(6, "feet"),
  12939. weight: math.unit(180, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/xochitl/front.svg",
  12943. extra: 2297 / 2261,
  12944. bottom: 0.065
  12945. }
  12946. },
  12947. back: {
  12948. height: math.unit(6, "feet"),
  12949. weight: math.unit(180, "lb"),
  12950. name: "Back",
  12951. image: {
  12952. source: "./media/characters/xochitl/back.svg",
  12953. extra: 2386 / 2354,
  12954. bottom: 0.01
  12955. }
  12956. },
  12957. foot: {
  12958. height: math.unit(6 / 5 * 1.15, "feet"),
  12959. weight: math.unit(150, "lb"),
  12960. name: "Foot",
  12961. image: {
  12962. source: "./media/characters/xochitl/foot.svg"
  12963. }
  12964. },
  12965. },
  12966. [
  12967. {
  12968. name: "Macro",
  12969. height: math.unit(80, "feet")
  12970. },
  12971. {
  12972. name: "Macro+",
  12973. height: math.unit(400, "feet"),
  12974. default: true
  12975. },
  12976. {
  12977. name: "Gigamacro",
  12978. height: math.unit(80000, "miles")
  12979. },
  12980. {
  12981. name: "Gigamacro+",
  12982. height: math.unit(400000, "miles")
  12983. },
  12984. {
  12985. name: "Teramacro",
  12986. height: math.unit(300, "AU")
  12987. },
  12988. ]
  12989. ))
  12990. characterMakers.push(() => makeCharacter(
  12991. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12992. {
  12993. front: {
  12994. height: math.unit(6, "feet"),
  12995. weight: math.unit(150, "lb"),
  12996. name: "Front",
  12997. image: {
  12998. source: "./media/characters/vincent/front.svg",
  12999. extra: 1130 / 1080,
  13000. bottom: 0.055
  13001. }
  13002. },
  13003. beak: {
  13004. height: math.unit(6 * 0.1, "feet"),
  13005. name: "Beak",
  13006. image: {
  13007. source: "./media/characters/vincent/beak.svg"
  13008. }
  13009. },
  13010. hand: {
  13011. height: math.unit(6 * 0.85, "feet"),
  13012. weight: math.unit(150, "lb"),
  13013. name: "Hand",
  13014. image: {
  13015. source: "./media/characters/vincent/hand.svg"
  13016. }
  13017. },
  13018. foot: {
  13019. height: math.unit(6 * 0.19, "feet"),
  13020. weight: math.unit(150, "lb"),
  13021. name: "Foot",
  13022. image: {
  13023. source: "./media/characters/vincent/foot.svg"
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Base",
  13030. height: math.unit(6 + 5 / 12, "feet"),
  13031. default: true
  13032. },
  13033. {
  13034. name: "Macro",
  13035. height: math.unit(300, "feet")
  13036. },
  13037. {
  13038. name: "Megamacro",
  13039. height: math.unit(2, "miles")
  13040. },
  13041. {
  13042. name: "Gigamacro",
  13043. height: math.unit(1000, "miles")
  13044. },
  13045. ]
  13046. ))
  13047. characterMakers.push(() => makeCharacter(
  13048. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13049. {
  13050. front: {
  13051. height: math.unit(6 + 2 / 12, "feet"),
  13052. weight: math.unit(265, "lb"),
  13053. name: "Front",
  13054. image: {
  13055. source: "./media/characters/jay/front.svg",
  13056. extra: 1510 / 1430,
  13057. bottom: 0.042
  13058. }
  13059. },
  13060. back: {
  13061. height: math.unit(6 + 2 / 12, "feet"),
  13062. weight: math.unit(265, "lb"),
  13063. name: "Back",
  13064. image: {
  13065. source: "./media/characters/jay/back.svg",
  13066. extra: 1510 / 1430,
  13067. bottom: 0.025
  13068. }
  13069. },
  13070. clothed: {
  13071. height: math.unit(6 + 2 / 12, "feet"),
  13072. weight: math.unit(265, "lb"),
  13073. name: "Front (Clothed)",
  13074. image: {
  13075. source: "./media/characters/jay/clothed.svg",
  13076. extra: 744 / 699,
  13077. bottom: 0.043
  13078. }
  13079. },
  13080. head: {
  13081. height: math.unit(1.772, "feet"),
  13082. name: "Head",
  13083. image: {
  13084. source: "./media/characters/jay/head.svg"
  13085. }
  13086. },
  13087. sizeRay: {
  13088. height: math.unit(1.331, "feet"),
  13089. name: "Size Ray",
  13090. image: {
  13091. source: "./media/characters/jay/size-ray.svg"
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Micro",
  13098. height: math.unit(1, "inch")
  13099. },
  13100. {
  13101. name: "Normal",
  13102. height: math.unit(6 + 2 / 12, "feet"),
  13103. default: true
  13104. },
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(1, "mile")
  13108. },
  13109. {
  13110. name: "Megamacro",
  13111. height: math.unit(100, "miles")
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(2, "meters"),
  13120. weight: math.unit(500, "kg"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/coatl/front.svg",
  13124. extra: 3948 / 3500,
  13125. bottom: 0.082
  13126. }
  13127. },
  13128. },
  13129. [
  13130. {
  13131. name: "Normal",
  13132. height: math.unit(4, "meters")
  13133. },
  13134. {
  13135. name: "Macro",
  13136. height: math.unit(100, "meters"),
  13137. default: true
  13138. },
  13139. {
  13140. name: "Macro+",
  13141. height: math.unit(300, "meters")
  13142. },
  13143. {
  13144. name: "Megamacro",
  13145. height: math.unit(3, "gigameters")
  13146. },
  13147. {
  13148. name: "Megamacro+",
  13149. height: math.unit(300, "terameters")
  13150. },
  13151. {
  13152. name: "Megamacro++",
  13153. height: math.unit(3, "lightyears")
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(50, "kg"),
  13163. name: "front",
  13164. image: {
  13165. source: "./media/characters/shiroryu/front.svg",
  13166. extra: 1990 / 1935
  13167. }
  13168. },
  13169. },
  13170. [
  13171. {
  13172. name: "Mortal Mingling",
  13173. height: math.unit(3, "meters")
  13174. },
  13175. {
  13176. name: "Kaiju-ish",
  13177. height: math.unit(250, "meters")
  13178. },
  13179. {
  13180. name: "Somewhat Godly",
  13181. height: math.unit(400, "km"),
  13182. default: true
  13183. },
  13184. {
  13185. name: "Planetary",
  13186. height: math.unit(300, "megameters")
  13187. },
  13188. {
  13189. name: "Galaxy-dwarfing",
  13190. height: math.unit(450, "kiloparsecs")
  13191. },
  13192. {
  13193. name: "Universe Eater",
  13194. height: math.unit(150, "gigaparsecs")
  13195. },
  13196. {
  13197. name: "Almost Immeasurable",
  13198. height: math.unit(1.3e266, "yottaparsecs")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/umeko/front.svg",
  13211. extra: 1,
  13212. bottom: 0.019
  13213. }
  13214. },
  13215. frontArmored: {
  13216. height: math.unit(6, "feet"),
  13217. weight: math.unit(150, "lb"),
  13218. name: "Front (Armored)",
  13219. image: {
  13220. source: "./media/characters/umeko/front-armored.svg",
  13221. extra: 1,
  13222. bottom: 0.021
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Macro",
  13229. height: math.unit(220, "feet"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Guardian Dragon",
  13234. height: math.unit(50, "miles")
  13235. },
  13236. {
  13237. name: "Cosmic",
  13238. height: math.unit(800000, "miles")
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13244. {
  13245. front: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Front",
  13249. image: {
  13250. source: "./media/characters/cassidy/front.svg",
  13251. extra: 1,
  13252. bottom: 0.043
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Canon Height",
  13259. height: math.unit(120, "feet"),
  13260. default: true
  13261. },
  13262. {
  13263. name: "Macro+",
  13264. height: math.unit(400, "feet")
  13265. },
  13266. {
  13267. name: "Macro++",
  13268. height: math.unit(4000, "feet")
  13269. },
  13270. {
  13271. name: "Megamacro",
  13272. height: math.unit(3, "miles")
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13278. {
  13279. front: {
  13280. height: math.unit(6, "feet"),
  13281. weight: math.unit(150, "lb"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/isaac/front.svg",
  13285. extra: 896 / 815,
  13286. bottom: 0.11
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Human Size",
  13293. height: math.unit(8, "feet"),
  13294. default: true
  13295. },
  13296. {
  13297. name: "Macro",
  13298. height: math.unit(400, "feet")
  13299. },
  13300. {
  13301. name: "Megamacro",
  13302. height: math.unit(50, "miles")
  13303. },
  13304. {
  13305. name: "Canon Height",
  13306. height: math.unit(200, "AU")
  13307. },
  13308. ]
  13309. ))
  13310. characterMakers.push(() => makeCharacter(
  13311. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13312. {
  13313. front: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(72, "kg"),
  13316. name: "Front",
  13317. image: {
  13318. source: "./media/characters/sleekit/front.svg",
  13319. extra: 4693 / 4487,
  13320. bottom: 0.012
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Minimum Height",
  13327. height: math.unit(10, "meters")
  13328. },
  13329. {
  13330. name: "Smaller",
  13331. height: math.unit(25, "meters")
  13332. },
  13333. {
  13334. name: "Larger",
  13335. height: math.unit(38, "meters"),
  13336. default: true
  13337. },
  13338. {
  13339. name: "Maximum height",
  13340. height: math.unit(100, "meters")
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(150, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/nillia/front.svg",
  13353. extra: 2195 / 2037,
  13354. bottom: 0.005
  13355. }
  13356. },
  13357. back: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(150, "lb"),
  13360. name: "Back",
  13361. image: {
  13362. source: "./media/characters/nillia/back.svg",
  13363. extra: 2195 / 2037,
  13364. bottom: 0.005
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "Canon Height",
  13371. height: math.unit(489, "feet"),
  13372. default: true
  13373. }
  13374. ]
  13375. ))
  13376. characterMakers.push(() => makeCharacter(
  13377. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13378. {
  13379. front: {
  13380. height: math.unit(6, "feet"),
  13381. weight: math.unit(150, "lb"),
  13382. name: "Front",
  13383. image: {
  13384. source: "./media/characters/mesmyriza/front.svg",
  13385. extra: 2067 / 1784,
  13386. bottom: 0.035
  13387. }
  13388. },
  13389. foot: {
  13390. height: math.unit(6 / (250 / 35), "feet"),
  13391. name: "Foot",
  13392. image: {
  13393. source: "./media/characters/mesmyriza/foot.svg"
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(457, "meters"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Megamacro",
  13405. height: math.unit(8, "megameters")
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13411. {
  13412. front: {
  13413. height: math.unit(6, "feet"),
  13414. weight: math.unit(250, "lb"),
  13415. name: "Front",
  13416. image: {
  13417. source: "./media/characters/saudade/front.svg",
  13418. extra: 1172 / 1139,
  13419. bottom: 0.035
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Micro",
  13426. height: math.unit(3, "inches")
  13427. },
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(6, "feet"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Macro",
  13435. height: math.unit(50, "feet")
  13436. },
  13437. {
  13438. name: "Megamacro",
  13439. height: math.unit(2800, "feet")
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13445. {
  13446. front: {
  13447. height: math.unit(5 + 4 / 12, "feet"),
  13448. weight: math.unit(100, "lb"),
  13449. name: "Front",
  13450. image: {
  13451. source: "./media/characters/keireer/front.svg",
  13452. extra: 716 / 666,
  13453. bottom: 0.05
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Normal",
  13460. height: math.unit(5 + 4 / 12, "feet"),
  13461. default: true
  13462. },
  13463. ]
  13464. ))
  13465. characterMakers.push(() => makeCharacter(
  13466. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13467. {
  13468. front: {
  13469. height: math.unit(6, "feet"),
  13470. weight: math.unit(90, "kg"),
  13471. name: "Front",
  13472. image: {
  13473. source: "./media/characters/mirja/front.svg",
  13474. extra: 1789 / 1683,
  13475. bottom: 0.05
  13476. }
  13477. },
  13478. frontDressed: {
  13479. height: math.unit(6, "feet"),
  13480. weight: math.unit(90, "lb"),
  13481. name: "Front (Dressed)",
  13482. image: {
  13483. source: "./media/characters/mirja/front-dressed.svg",
  13484. extra: 1789 / 1683,
  13485. bottom: 0.05
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(6, "feet"),
  13490. weight: math.unit(90, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/mirja/back.svg",
  13494. extra: 953 / 917,
  13495. bottom: 0.017
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "\"Incognito\"",
  13502. height: math.unit(3, "meters")
  13503. },
  13504. {
  13505. name: "Strolling Size",
  13506. height: math.unit(15, "km")
  13507. },
  13508. {
  13509. name: "Larger Strolling Size",
  13510. height: math.unit(400, "km")
  13511. },
  13512. {
  13513. name: "Preferred Size",
  13514. height: math.unit(5000, "km")
  13515. },
  13516. {
  13517. name: "True Size",
  13518. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13519. default: true
  13520. },
  13521. ]
  13522. ))
  13523. characterMakers.push(() => makeCharacter(
  13524. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13525. {
  13526. front: {
  13527. height: math.unit(15, "feet"),
  13528. weight: math.unit(880, "kg"),
  13529. name: "Front",
  13530. image: {
  13531. source: "./media/characters/nightraver/front.svg",
  13532. extra: 2444 / 2160,
  13533. bottom: 0.027
  13534. }
  13535. },
  13536. back: {
  13537. height: math.unit(15, "feet"),
  13538. weight: math.unit(880, "kg"),
  13539. name: "Back",
  13540. image: {
  13541. source: "./media/characters/nightraver/back.svg",
  13542. extra: 2309 / 2180,
  13543. bottom: 0.005
  13544. }
  13545. },
  13546. sole: {
  13547. height: math.unit(2.878, "feet"),
  13548. name: "Sole",
  13549. image: {
  13550. source: "./media/characters/nightraver/sole.svg"
  13551. }
  13552. },
  13553. foot: {
  13554. height: math.unit(2.285, "feet"),
  13555. name: "Foot",
  13556. image: {
  13557. source: "./media/characters/nightraver/foot.svg"
  13558. }
  13559. },
  13560. maw: {
  13561. height: math.unit(2.67, "feet"),
  13562. name: "Maw",
  13563. image: {
  13564. source: "./media/characters/nightraver/maw.svg"
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Micro",
  13571. height: math.unit(1, "cm")
  13572. },
  13573. {
  13574. name: "Normal",
  13575. height: math.unit(15, "feet"),
  13576. default: true
  13577. },
  13578. {
  13579. name: "Macro",
  13580. height: math.unit(300, "feet")
  13581. },
  13582. {
  13583. name: "Megamacro",
  13584. height: math.unit(300, "miles")
  13585. },
  13586. {
  13587. name: "Gigamacro",
  13588. height: math.unit(10000, "miles")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13594. {
  13595. side: {
  13596. height: math.unit(2, "inches"),
  13597. weight: math.unit(5, "grams"),
  13598. name: "Side",
  13599. image: {
  13600. source: "./media/characters/arc/side.svg"
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Micro",
  13607. height: math.unit(2, "inches"),
  13608. default: true
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(1.1938, "meters"),
  13617. weight: math.unit(54, "kg"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/nebula-shahar/front.svg",
  13621. extra: 1642 / 1436,
  13622. bottom: 0.06
  13623. }
  13624. },
  13625. },
  13626. [
  13627. {
  13628. name: "Megamicro",
  13629. height: math.unit(0.3, "mm")
  13630. },
  13631. {
  13632. name: "Micro",
  13633. height: math.unit(3, "cm")
  13634. },
  13635. {
  13636. name: "Normal",
  13637. height: math.unit(138, "cm"),
  13638. default: true
  13639. },
  13640. {
  13641. name: "Macro",
  13642. height: math.unit(30, "m")
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(5.24, "feet"),
  13651. weight: math.unit(150, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/shayla/front.svg",
  13655. extra: 1512 / 1414,
  13656. bottom: 0.01
  13657. }
  13658. },
  13659. back: {
  13660. height: math.unit(5.24, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Back",
  13663. image: {
  13664. source: "./media/characters/shayla/back.svg",
  13665. extra: 1512 / 1414
  13666. }
  13667. },
  13668. hand: {
  13669. height: math.unit(0.7781496062992126, "feet"),
  13670. name: "Hand",
  13671. image: {
  13672. source: "./media/characters/shayla/hand.svg"
  13673. }
  13674. },
  13675. foot: {
  13676. height: math.unit(1.4206036745406823, "feet"),
  13677. name: "Foot",
  13678. image: {
  13679. source: "./media/characters/shayla/foot.svg"
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Micro",
  13686. height: math.unit(0.32, "feet")
  13687. },
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(5.24, "feet"),
  13691. default: true
  13692. },
  13693. {
  13694. name: "Macro",
  13695. height: math.unit(492.12, "feet")
  13696. },
  13697. {
  13698. name: "Megamacro",
  13699. height: math.unit(186.41, "miles")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(2.2, "m"),
  13708. weight: math.unit(120, "kg"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/pia-jr/front.svg",
  13712. extra: 1000 / 970,
  13713. bottom: 0.035
  13714. }
  13715. },
  13716. hand: {
  13717. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13718. name: "Hand",
  13719. image: {
  13720. source: "./media/characters/pia-jr/hand.svg"
  13721. }
  13722. },
  13723. paw: {
  13724. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13725. name: "Paw",
  13726. image: {
  13727. source: "./media/characters/pia-jr/paw.svg"
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Micro",
  13734. height: math.unit(1.2, "cm")
  13735. },
  13736. {
  13737. name: "Normal",
  13738. height: math.unit(2.2, "m"),
  13739. default: true
  13740. },
  13741. {
  13742. name: "Macro",
  13743. height: math.unit(180, "m")
  13744. },
  13745. {
  13746. name: "Megamacro",
  13747. height: math.unit(420, "km")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(2, "m"),
  13756. weight: math.unit(115, "kg"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/pia-sr/front.svg",
  13760. extra: 760 / 730,
  13761. bottom: 0.015
  13762. }
  13763. },
  13764. back: {
  13765. height: math.unit(2, "m"),
  13766. weight: math.unit(115, "kg"),
  13767. name: "Back",
  13768. image: {
  13769. source: "./media/characters/pia-sr/back.svg",
  13770. extra: 760 / 730,
  13771. bottom: 0.01
  13772. }
  13773. },
  13774. hand: {
  13775. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13776. name: "Hand",
  13777. image: {
  13778. source: "./media/characters/pia-sr/hand.svg"
  13779. }
  13780. },
  13781. foot: {
  13782. height: math.unit(1.83, "feet"),
  13783. name: "Foot",
  13784. image: {
  13785. source: "./media/characters/pia-sr/foot.svg"
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Micro",
  13792. height: math.unit(88, "mm")
  13793. },
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(2, "m"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Macro",
  13801. height: math.unit(200, "m")
  13802. },
  13803. {
  13804. name: "Megamacro",
  13805. height: math.unit(420, "km")
  13806. },
  13807. ]
  13808. ))
  13809. characterMakers.push(() => makeCharacter(
  13810. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13811. {
  13812. front: {
  13813. height: math.unit(8 + 2 / 12, "feet"),
  13814. weight: math.unit(300, "lb"),
  13815. name: "Front",
  13816. image: {
  13817. source: "./media/characters/kibibyte/front.svg",
  13818. extra: 2221 / 2098,
  13819. bottom: 0.04
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(8 + 2 / 12, "feet"),
  13827. default: true
  13828. },
  13829. {
  13830. name: "Socialable Macro",
  13831. height: math.unit(50, "feet")
  13832. },
  13833. {
  13834. name: "Macro",
  13835. height: math.unit(300, "feet")
  13836. },
  13837. {
  13838. name: "Megamacro",
  13839. height: math.unit(500, "miles")
  13840. },
  13841. ]
  13842. ))
  13843. characterMakers.push(() => makeCharacter(
  13844. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13845. {
  13846. front: {
  13847. height: math.unit(6, "feet"),
  13848. weight: math.unit(150, "lb"),
  13849. name: "Front",
  13850. image: {
  13851. source: "./media/characters/felix/front.svg",
  13852. extra: 762 / 722,
  13853. bottom: 0.02
  13854. }
  13855. },
  13856. frontClothed: {
  13857. height: math.unit(6, "feet"),
  13858. weight: math.unit(150, "lb"),
  13859. name: "Front (Clothed)",
  13860. image: {
  13861. source: "./media/characters/felix/front-clothed.svg",
  13862. extra: 762 / 722,
  13863. bottom: 0.02
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Normal",
  13870. height: math.unit(6 + 8 / 12, "feet"),
  13871. default: true
  13872. },
  13873. {
  13874. name: "Macro",
  13875. height: math.unit(2600, "feet")
  13876. },
  13877. {
  13878. name: "Megamacro",
  13879. height: math.unit(450, "miles")
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(6 + 1 / 12, "feet"),
  13888. weight: math.unit(250, "lb"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/tobo/front.svg",
  13892. extra: 608 / 586,
  13893. bottom: 0.023
  13894. }
  13895. },
  13896. back: {
  13897. height: math.unit(6 + 1 / 12, "feet"),
  13898. weight: math.unit(250, "lb"),
  13899. name: "Back",
  13900. image: {
  13901. source: "./media/characters/tobo/back.svg",
  13902. extra: 608 / 586
  13903. }
  13904. },
  13905. },
  13906. [
  13907. {
  13908. name: "Nano",
  13909. height: math.unit(2, "nm")
  13910. },
  13911. {
  13912. name: "Megamicro",
  13913. height: math.unit(0.1, "mm")
  13914. },
  13915. {
  13916. name: "Micro",
  13917. height: math.unit(1, "inch"),
  13918. default: true
  13919. },
  13920. {
  13921. name: "Human-sized",
  13922. height: math.unit(6 + 1 / 12, "feet")
  13923. },
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(250, "feet")
  13927. },
  13928. {
  13929. name: "Megamacro",
  13930. height: math.unit(75, "miles")
  13931. },
  13932. {
  13933. name: "Texas-sized",
  13934. height: math.unit(750, "miles")
  13935. },
  13936. {
  13937. name: "Teramacro",
  13938. height: math.unit(50000, "miles")
  13939. },
  13940. ]
  13941. ))
  13942. characterMakers.push(() => makeCharacter(
  13943. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13944. {
  13945. front: {
  13946. height: math.unit(6, "feet"),
  13947. weight: math.unit(269, "lb"),
  13948. name: "Front",
  13949. image: {
  13950. source: "./media/characters/danny-kapowsky/front.svg",
  13951. extra: 766 / 736,
  13952. bottom: 0.044
  13953. }
  13954. },
  13955. back: {
  13956. height: math.unit(6, "feet"),
  13957. weight: math.unit(269, "lb"),
  13958. name: "Back",
  13959. image: {
  13960. source: "./media/characters/danny-kapowsky/back.svg",
  13961. extra: 797 / 760,
  13962. bottom: 0.025
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Macro",
  13969. height: math.unit(150, "feet"),
  13970. default: true
  13971. },
  13972. {
  13973. name: "Macro+",
  13974. height: math.unit(200, "feet")
  13975. },
  13976. {
  13977. name: "Macro++",
  13978. height: math.unit(300, "feet")
  13979. },
  13980. {
  13981. name: "Macro+++",
  13982. height: math.unit(400, "feet")
  13983. },
  13984. ]
  13985. ))
  13986. characterMakers.push(() => makeCharacter(
  13987. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13988. {
  13989. side: {
  13990. height: math.unit(6, "feet"),
  13991. weight: math.unit(170, "lb"),
  13992. name: "Side",
  13993. image: {
  13994. source: "./media/characters/finn/side.svg",
  13995. extra: 1953 / 1807,
  13996. bottom: 0.057
  13997. }
  13998. },
  13999. },
  14000. [
  14001. {
  14002. name: "Megamacro",
  14003. height: math.unit(14445, "feet"),
  14004. default: true
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14010. {
  14011. front: {
  14012. height: math.unit(5 + 6 / 12, "feet"),
  14013. weight: math.unit(125, "lb"),
  14014. name: "Front",
  14015. image: {
  14016. source: "./media/characters/roy/front.svg",
  14017. extra: 1,
  14018. bottom: 0.11
  14019. }
  14020. },
  14021. },
  14022. [
  14023. {
  14024. name: "Micro",
  14025. height: math.unit(3, "inches"),
  14026. default: true
  14027. },
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(5 + 6 / 12, "feet")
  14031. },
  14032. {
  14033. name: "Lesser Macro",
  14034. height: math.unit(60, "feet")
  14035. },
  14036. {
  14037. name: "Greater Macro",
  14038. height: math.unit(120, "feet")
  14039. },
  14040. ]
  14041. ))
  14042. characterMakers.push(() => makeCharacter(
  14043. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14044. {
  14045. front: {
  14046. height: math.unit(6, "feet"),
  14047. weight: math.unit(100, "lb"),
  14048. name: "Front",
  14049. image: {
  14050. source: "./media/characters/aevsivs/front.svg",
  14051. extra: 1,
  14052. bottom: 0.03
  14053. }
  14054. },
  14055. back: {
  14056. height: math.unit(6, "feet"),
  14057. weight: math.unit(100, "lb"),
  14058. name: "Back",
  14059. image: {
  14060. source: "./media/characters/aevsivs/back.svg"
  14061. }
  14062. },
  14063. },
  14064. [
  14065. {
  14066. name: "Micro",
  14067. height: math.unit(2, "inches"),
  14068. default: true
  14069. },
  14070. {
  14071. name: "Normal",
  14072. height: math.unit(5, "feet")
  14073. },
  14074. ]
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14078. {
  14079. front: {
  14080. height: math.unit(5 + 7 / 12, "feet"),
  14081. weight: math.unit(159, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/hildegard/front.svg",
  14085. extra: 289 / 269,
  14086. bottom: 7.63 / 297.8
  14087. }
  14088. },
  14089. back: {
  14090. height: math.unit(5 + 7 / 12, "feet"),
  14091. weight: math.unit(159, "lb"),
  14092. name: "Back",
  14093. image: {
  14094. source: "./media/characters/hildegard/back.svg",
  14095. extra: 280 / 260,
  14096. bottom: 2.3 / 282
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(5 + 7 / 12, "feet"),
  14104. default: true
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14110. {
  14111. bernard: {
  14112. height: math.unit(2 + 7 / 12, "feet"),
  14113. weight: math.unit(66, "lb"),
  14114. name: "Bernard",
  14115. rename: true,
  14116. image: {
  14117. source: "./media/characters/bernard-wilder/bernard.svg",
  14118. extra: 192 / 128,
  14119. bottom: 0.05
  14120. }
  14121. },
  14122. wilder: {
  14123. height: math.unit(5 + 8 / 12, "feet"),
  14124. weight: math.unit(143, "lb"),
  14125. name: "Wilder",
  14126. rename: true,
  14127. image: {
  14128. source: "./media/characters/bernard-wilder/wilder.svg",
  14129. extra: 361 / 312,
  14130. bottom: 0.02
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Normal",
  14137. height: math.unit(2 + 7 / 12, "feet"),
  14138. default: true
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14144. {
  14145. anthro: {
  14146. height: math.unit(6 + 1 / 12, "feet"),
  14147. weight: math.unit(155, "lb"),
  14148. name: "Anthro",
  14149. image: {
  14150. source: "./media/characters/hearth/anthro.svg",
  14151. extra: 260 / 250,
  14152. bottom: 0.02
  14153. }
  14154. },
  14155. feral: {
  14156. height: math.unit(3.78, "feet"),
  14157. weight: math.unit(35, "kg"),
  14158. name: "Feral",
  14159. image: {
  14160. source: "./media/characters/hearth/feral.svg",
  14161. extra: 153 / 135,
  14162. bottom: 0.03
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Normal",
  14169. height: math.unit(6 + 1 / 12, "feet"),
  14170. default: true
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(182, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/ingrid/front.svg",
  14183. extra: 294 / 268,
  14184. bottom: 0.027
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Normal",
  14191. height: math.unit(6, "feet"),
  14192. default: true
  14193. },
  14194. ]
  14195. ))
  14196. characterMakers.push(() => makeCharacter(
  14197. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14198. {
  14199. eevee: {
  14200. height: math.unit(2 + 10 / 12, "feet"),
  14201. weight: math.unit(86, "lb"),
  14202. name: "Malgam",
  14203. image: {
  14204. source: "./media/characters/malgam/eevee.svg",
  14205. extra: 218 / 180,
  14206. bottom: 0.2
  14207. }
  14208. },
  14209. sylveon: {
  14210. height: math.unit(4, "feet"),
  14211. weight: math.unit(101, "lb"),
  14212. name: "Future Malgam",
  14213. rename: true,
  14214. image: {
  14215. source: "./media/characters/malgam/sylveon.svg",
  14216. extra: 371 / 325,
  14217. bottom: 0.015
  14218. }
  14219. },
  14220. gigantamax: {
  14221. height: math.unit(50, "feet"),
  14222. name: "Gigantamax Malgam",
  14223. rename: true,
  14224. image: {
  14225. source: "./media/characters/malgam/gigantamax.svg"
  14226. }
  14227. },
  14228. },
  14229. [
  14230. {
  14231. name: "Normal",
  14232. height: math.unit(2 + 10 / 12, "feet"),
  14233. default: true
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(5 + 11 / 12, "feet"),
  14242. weight: math.unit(188, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/fleur/front.svg",
  14246. extra: 309 / 283,
  14247. bottom: 0.007
  14248. }
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Normal",
  14254. height: math.unit(5 + 11 / 12, "feet"),
  14255. default: true
  14256. },
  14257. ]
  14258. ))
  14259. characterMakers.push(() => makeCharacter(
  14260. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14261. {
  14262. front: {
  14263. height: math.unit(5 + 4 / 12, "feet"),
  14264. weight: math.unit(122, "lb"),
  14265. name: "Front",
  14266. image: {
  14267. source: "./media/characters/jude/front.svg",
  14268. extra: 288 / 273,
  14269. bottom: 0.03
  14270. }
  14271. },
  14272. },
  14273. [
  14274. {
  14275. name: "Normal",
  14276. height: math.unit(5 + 4 / 12, "feet"),
  14277. default: true
  14278. },
  14279. ]
  14280. ))
  14281. characterMakers.push(() => makeCharacter(
  14282. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14283. {
  14284. front: {
  14285. height: math.unit(5 + 11 / 12, "feet"),
  14286. weight: math.unit(190, "lb"),
  14287. name: "Front",
  14288. image: {
  14289. source: "./media/characters/seara/front.svg",
  14290. extra: 1,
  14291. bottom: 0.05
  14292. }
  14293. },
  14294. },
  14295. [
  14296. {
  14297. name: "Normal",
  14298. height: math.unit(5 + 11 / 12, "feet"),
  14299. default: true
  14300. },
  14301. ]
  14302. ))
  14303. characterMakers.push(() => makeCharacter(
  14304. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14305. {
  14306. front: {
  14307. height: math.unit(16 + 5 / 12, "feet"),
  14308. weight: math.unit(524, "lb"),
  14309. name: "Front",
  14310. image: {
  14311. source: "./media/characters/caspian/front.svg",
  14312. extra: 1,
  14313. bottom: 0.04
  14314. }
  14315. },
  14316. },
  14317. [
  14318. {
  14319. name: "Normal",
  14320. height: math.unit(16 + 5 / 12, "feet"),
  14321. default: true
  14322. },
  14323. ]
  14324. ))
  14325. characterMakers.push(() => makeCharacter(
  14326. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14327. {
  14328. front: {
  14329. height: math.unit(5 + 7 / 12, "feet"),
  14330. weight: math.unit(170, "lb"),
  14331. name: "Front",
  14332. image: {
  14333. source: "./media/characters/mika/front.svg",
  14334. extra: 1,
  14335. bottom: 0.016
  14336. }
  14337. },
  14338. },
  14339. [
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(5 + 7 / 12, "feet"),
  14343. default: true
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(6 + 2 / 12, "feet"),
  14352. weight: math.unit(268, "lb"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/sol/front.svg",
  14356. extra: 247 / 231,
  14357. bottom: 0.05
  14358. }
  14359. },
  14360. },
  14361. [
  14362. {
  14363. name: "Normal",
  14364. height: math.unit(6 + 2 / 12, "feet"),
  14365. default: true
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14371. {
  14372. buizel: {
  14373. height: math.unit(2 + 5 / 12, "feet"),
  14374. weight: math.unit(87, "lb"),
  14375. name: "Buizel",
  14376. image: {
  14377. source: "./media/characters/umiko/buizel.svg",
  14378. extra: 172 / 157,
  14379. bottom: 0.01
  14380. }
  14381. },
  14382. floatzel: {
  14383. height: math.unit(5 + 9 / 12, "feet"),
  14384. weight: math.unit(250, "lb"),
  14385. name: "Floatzel",
  14386. image: {
  14387. source: "./media/characters/umiko/floatzel.svg",
  14388. extra: 262 / 248
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Normal",
  14395. height: math.unit(2 + 5 / 12, "feet"),
  14396. default: true
  14397. },
  14398. ]
  14399. ))
  14400. characterMakers.push(() => makeCharacter(
  14401. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14402. {
  14403. front: {
  14404. height: math.unit(6 + 2 / 12, "feet"),
  14405. weight: math.unit(146, "lb"),
  14406. name: "Front",
  14407. image: {
  14408. source: "./media/characters/iliac/front.svg",
  14409. extra: 389 / 365,
  14410. bottom: 0.035
  14411. }
  14412. },
  14413. },
  14414. [
  14415. {
  14416. name: "Normal",
  14417. height: math.unit(6 + 2 / 12, "feet"),
  14418. default: true
  14419. },
  14420. ]
  14421. ))
  14422. characterMakers.push(() => makeCharacter(
  14423. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14424. {
  14425. front: {
  14426. height: math.unit(6, "feet"),
  14427. weight: math.unit(170, "lb"),
  14428. name: "Front",
  14429. image: {
  14430. source: "./media/characters/topaz/front.svg",
  14431. extra: 317 / 303,
  14432. bottom: 0.055
  14433. }
  14434. },
  14435. },
  14436. [
  14437. {
  14438. name: "Normal",
  14439. height: math.unit(6, "feet"),
  14440. default: true
  14441. },
  14442. ]
  14443. ))
  14444. characterMakers.push(() => makeCharacter(
  14445. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14446. {
  14447. front: {
  14448. height: math.unit(5 + 11 / 12, "feet"),
  14449. weight: math.unit(144, "lb"),
  14450. name: "Front",
  14451. image: {
  14452. source: "./media/characters/gabriel/front.svg",
  14453. extra: 285 / 262,
  14454. bottom: 0.004
  14455. }
  14456. },
  14457. },
  14458. [
  14459. {
  14460. name: "Normal",
  14461. height: math.unit(5 + 11 / 12, "feet"),
  14462. default: true
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14468. {
  14469. side: {
  14470. height: math.unit(6 + 5 / 12, "feet"),
  14471. weight: math.unit(300, "lb"),
  14472. name: "Side",
  14473. image: {
  14474. source: "./media/characters/tempest-suicune/side.svg",
  14475. extra: 195 / 154,
  14476. bottom: 0.04
  14477. }
  14478. },
  14479. },
  14480. [
  14481. {
  14482. name: "Normal",
  14483. height: math.unit(6 + 5 / 12, "feet"),
  14484. default: true
  14485. },
  14486. ]
  14487. ))
  14488. characterMakers.push(() => makeCharacter(
  14489. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14490. {
  14491. front: {
  14492. height: math.unit(7 + 2 / 12, "feet"),
  14493. weight: math.unit(322, "lb"),
  14494. name: "Front",
  14495. image: {
  14496. source: "./media/characters/vulcan/front.svg",
  14497. extra: 154 / 147,
  14498. bottom: 0.04
  14499. }
  14500. },
  14501. },
  14502. [
  14503. {
  14504. name: "Normal",
  14505. height: math.unit(7 + 2 / 12, "feet"),
  14506. default: true
  14507. },
  14508. ]
  14509. ))
  14510. characterMakers.push(() => makeCharacter(
  14511. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14512. {
  14513. front: {
  14514. height: math.unit(5 + 10 / 12, "feet"),
  14515. weight: math.unit(264, "lb"),
  14516. name: "Front",
  14517. image: {
  14518. source: "./media/characters/gault/front.svg",
  14519. extra: 161 / 140,
  14520. bottom: 0.028
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Normal",
  14527. height: math.unit(5 + 10 / 12, "feet"),
  14528. default: true
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(150, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/shard/front.svg",
  14541. extra: 273 / 238,
  14542. bottom: 0.02
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Normal",
  14549. height: math.unit(3 + 6 / 12, "feet"),
  14550. default: true
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14556. {
  14557. front: {
  14558. height: math.unit(5 + 11 / 12, "feet"),
  14559. weight: math.unit(146, "lb"),
  14560. name: "Front",
  14561. image: {
  14562. source: "./media/characters/ashe/front.svg",
  14563. extra: 400 / 373,
  14564. bottom: 0.01
  14565. }
  14566. },
  14567. },
  14568. [
  14569. {
  14570. name: "Normal",
  14571. height: math.unit(5 + 11 / 12, "feet"),
  14572. default: true
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14578. {
  14579. front: {
  14580. height: math.unit(5 + 5 / 12, "feet"),
  14581. weight: math.unit(135, "lb"),
  14582. name: "Front",
  14583. image: {
  14584. source: "./media/characters/beatrix/front.svg",
  14585. extra: 392 / 379,
  14586. bottom: 0.01
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Normal",
  14593. height: math.unit(6, "feet"),
  14594. default: true
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(150, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/ignatius/front.svg",
  14607. extra: 245 / 222,
  14608. bottom: 0.01
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(5 + 5 / 12, "feet"),
  14616. default: true
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14622. {
  14623. front: {
  14624. height: math.unit(6 + 2 / 12, "feet"),
  14625. weight: math.unit(138, "lb"),
  14626. name: "Front",
  14627. image: {
  14628. source: "./media/characters/mei-li/front.svg",
  14629. extra: 237 / 229,
  14630. bottom: 0.03
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Normal",
  14637. height: math.unit(6 + 2 / 12, "feet"),
  14638. default: true
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(2 + 4 / 12, "feet"),
  14647. weight: math.unit(62, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/puru/front.svg",
  14651. extra: 206 / 149,
  14652. bottom: 0.06
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Normal",
  14659. height: math.unit(2 + 4 / 12, "feet"),
  14660. default: true
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14666. {
  14667. taur: {
  14668. height: math.unit(11, "feet"),
  14669. weight: math.unit(500, "lb"),
  14670. name: "Taur",
  14671. image: {
  14672. source: "./media/characters/kee/taur.svg",
  14673. extra: 1,
  14674. bottom: 0.04
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(11, "feet"),
  14682. default: true
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14688. {
  14689. anthro: {
  14690. height: math.unit(7, "feet"),
  14691. weight: math.unit(190, "lb"),
  14692. name: "Anthro",
  14693. image: {
  14694. source: "./media/characters/cobalt-dracha/anthro.svg",
  14695. extra: 231 / 225,
  14696. bottom: 0.04
  14697. }
  14698. },
  14699. feral: {
  14700. height: math.unit(9 + 7 / 12, "feet"),
  14701. weight: math.unit(294, "lb"),
  14702. name: "Feral",
  14703. image: {
  14704. source: "./media/characters/cobalt-dracha/feral.svg",
  14705. extra: 692 / 633,
  14706. bottom: 0.05
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(7, "feet"),
  14714. default: true
  14715. },
  14716. ]
  14717. ))
  14718. characterMakers.push(() => makeCharacter(
  14719. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14720. {
  14721. fallen: {
  14722. height: math.unit(11 + 8 / 12, "feet"),
  14723. weight: math.unit(485, "lb"),
  14724. name: "Java (Fallen)",
  14725. rename: true,
  14726. image: {
  14727. source: "./media/characters/java/fallen.svg",
  14728. extra: 226 / 208,
  14729. bottom: 0.005
  14730. }
  14731. },
  14732. godkin: {
  14733. height: math.unit(10 + 6 / 12, "feet"),
  14734. weight: math.unit(328, "lb"),
  14735. name: "Java (Godkin)",
  14736. rename: true,
  14737. image: {
  14738. source: "./media/characters/java/godkin.svg",
  14739. extra: 270 / 262,
  14740. bottom: 0.02
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(11 + 8 / 12, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14754. {
  14755. front: {
  14756. height: math.unit(7 + 8 / 12, "feet"),
  14757. weight: math.unit(320, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/skoll/front.svg",
  14761. extra: 232 / 220,
  14762. bottom: 0.02
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Normal",
  14769. height: math.unit(7 + 8 / 12, "feet"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(5 + 9 / 12, "feet"),
  14779. weight: math.unit(170, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/purna/front.svg",
  14783. extra: 239 / 229,
  14784. bottom: 0.01
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(5 + 9 / 12, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(5 + 9 / 12, "feet"),
  14801. weight: math.unit(142, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/kuva/front.svg",
  14805. extra: 281 / 271,
  14806. bottom: 0.006
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(5 + 9 / 12, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14820. {
  14821. anthro: {
  14822. height: math.unit(9 + 2 / 12, "feet"),
  14823. weight: math.unit(270, "lb"),
  14824. name: "Anthro",
  14825. image: {
  14826. source: "./media/characters/embra/anthro.svg",
  14827. extra: 200 / 187,
  14828. bottom: 0.02
  14829. }
  14830. },
  14831. feral: {
  14832. height: math.unit(18 + 8 / 12, "feet"),
  14833. weight: math.unit(576, "lb"),
  14834. name: "Feral",
  14835. image: {
  14836. source: "./media/characters/embra/feral.svg",
  14837. extra: 152 / 137,
  14838. bottom: 0.037
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(9 + 2 / 12, "feet"),
  14846. default: true
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14852. {
  14853. anthro: {
  14854. height: math.unit(10 + 9 / 12, "feet"),
  14855. weight: math.unit(224, "lb"),
  14856. name: "Anthro",
  14857. image: {
  14858. source: "./media/characters/grottos/anthro.svg",
  14859. extra: 350 / 332,
  14860. bottom: 0.045
  14861. }
  14862. },
  14863. feral: {
  14864. height: math.unit(20 + 7 / 12, "feet"),
  14865. weight: math.unit(629, "lb"),
  14866. name: "Feral",
  14867. image: {
  14868. source: "./media/characters/grottos/feral.svg",
  14869. extra: 207 / 190,
  14870. bottom: 0.05
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(10 + 9 / 12, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14884. {
  14885. anthro: {
  14886. height: math.unit(9 + 6 / 12, "feet"),
  14887. weight: math.unit(298, "lb"),
  14888. name: "Anthro",
  14889. image: {
  14890. source: "./media/characters/frifna/anthro.svg",
  14891. extra: 282 / 269,
  14892. bottom: 0.015
  14893. }
  14894. },
  14895. feral: {
  14896. height: math.unit(16 + 2 / 12, "feet"),
  14897. weight: math.unit(624, "lb"),
  14898. name: "Feral",
  14899. image: {
  14900. source: "./media/characters/frifna/feral.svg"
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(9 + 6 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6 + 2 / 12, "feet"),
  14917. weight: math.unit(168, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/elise/front.svg",
  14921. extra: 276 / 271
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Normal",
  14928. height: math.unit(6 + 2 / 12, "feet"),
  14929. default: true
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14935. {
  14936. front: {
  14937. height: math.unit(5 + 10 / 12, "feet"),
  14938. weight: math.unit(210, "lb"),
  14939. name: "Front",
  14940. image: {
  14941. source: "./media/characters/glade/front.svg",
  14942. extra: 258 / 247,
  14943. bottom: 0.008
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(5 + 10 / 12, "feet"),
  14951. default: true
  14952. },
  14953. ]
  14954. ))
  14955. characterMakers.push(() => makeCharacter(
  14956. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14957. {
  14958. front: {
  14959. height: math.unit(5 + 10 / 12, "feet"),
  14960. weight: math.unit(129, "lb"),
  14961. name: "Front",
  14962. image: {
  14963. source: "./media/characters/rina/front.svg",
  14964. extra: 266 / 255,
  14965. bottom: 0.005
  14966. }
  14967. },
  14968. },
  14969. [
  14970. {
  14971. name: "Normal",
  14972. height: math.unit(5 + 10 / 12, "feet"),
  14973. default: true
  14974. },
  14975. ]
  14976. ))
  14977. characterMakers.push(() => makeCharacter(
  14978. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14979. {
  14980. front: {
  14981. height: math.unit(6 + 1 / 12, "feet"),
  14982. weight: math.unit(192, "lb"),
  14983. name: "Front",
  14984. image: {
  14985. source: "./media/characters/veronica/front.svg",
  14986. extra: 319 / 309,
  14987. bottom: 0.005
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "Normal",
  14994. height: math.unit(6 + 1 / 12, "feet"),
  14995. default: true
  14996. },
  14997. ]
  14998. ))
  14999. characterMakers.push(() => makeCharacter(
  15000. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15001. {
  15002. front: {
  15003. height: math.unit(9 + 3 / 12, "feet"),
  15004. weight: math.unit(1100, "lb"),
  15005. name: "Front",
  15006. image: {
  15007. source: "./media/characters/braxton/front.svg",
  15008. extra: 1057 / 984,
  15009. bottom: 0.05
  15010. }
  15011. },
  15012. },
  15013. [
  15014. {
  15015. name: "Normal",
  15016. height: math.unit(9 + 3 / 12, "feet")
  15017. },
  15018. {
  15019. name: "Giant",
  15020. height: math.unit(300, "feet"),
  15021. default: true
  15022. },
  15023. {
  15024. name: "Macro",
  15025. height: math.unit(700, "feet")
  15026. },
  15027. {
  15028. name: "Megamacro",
  15029. height: math.unit(6000, "feet")
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(6 + 7 / 12, "feet"),
  15038. weight: math.unit(150, "lb"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/blue-feyonics/front.svg",
  15042. extra: 1403 / 1306,
  15043. bottom: 0.047
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Normal",
  15050. height: math.unit(6 + 7 / 12, "feet"),
  15051. default: true
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(1.8, "meters"),
  15060. weight: math.unit(60, "kg"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/maxwell/front.svg",
  15064. extra: 2060 / 1873
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Micro",
  15071. height: math.unit(1, "mm")
  15072. },
  15073. {
  15074. name: "Normal",
  15075. height: math.unit(1.8, "meter"),
  15076. default: true
  15077. },
  15078. {
  15079. name: "Macro",
  15080. height: math.unit(30, "meters")
  15081. },
  15082. {
  15083. name: "Megamacro",
  15084. height: math.unit(10, "km")
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15090. {
  15091. front: {
  15092. height: math.unit(6, "feet"),
  15093. weight: math.unit(150, "lb"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/jack/front.svg",
  15097. extra: 1754 / 1640,
  15098. bottom: 0.01
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(80000, "feet"),
  15106. default: true
  15107. },
  15108. {
  15109. name: "Max size",
  15110. height: math.unit(10, "lightyears")
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15116. {
  15117. upright: {
  15118. height: math.unit(7, "feet"),
  15119. weight: math.unit(170, "lb"),
  15120. name: "Upright",
  15121. image: {
  15122. source: "./media/characters/cafat/upright.svg",
  15123. bottom: 0.01
  15124. }
  15125. },
  15126. uprightFull: {
  15127. height: math.unit(7, "feet"),
  15128. weight: math.unit(170, "lb"),
  15129. name: "Upright (Full)",
  15130. image: {
  15131. source: "./media/characters/cafat/upright-full.svg",
  15132. bottom: 0.01
  15133. }
  15134. },
  15135. side: {
  15136. height: math.unit(5, "feet"),
  15137. weight: math.unit(150, "lb"),
  15138. name: "Side",
  15139. image: {
  15140. source: "./media/characters/cafat/side.svg"
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Small",
  15147. height: math.unit(7, "feet"),
  15148. default: true
  15149. },
  15150. {
  15151. name: "Large",
  15152. height: math.unit(15.5, "feet")
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(6, "feet"),
  15161. weight: math.unit(150, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/verin-raharra/front.svg",
  15165. extra: 5019 / 4835,
  15166. bottom: 0.023
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(7 + 5 / 12, "feet"),
  15174. default: true
  15175. },
  15176. {
  15177. name: "Upsized",
  15178. height: math.unit(20, "feet")
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15184. {
  15185. front: {
  15186. height: math.unit(7, "feet"),
  15187. weight: math.unit(230, "lb"),
  15188. name: "Front",
  15189. image: {
  15190. source: "./media/characters/nakata/front.svg",
  15191. extra: 1.005,
  15192. bottom: 0.01
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(7, "feet"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Big",
  15204. height: math.unit(14, "feet")
  15205. },
  15206. {
  15207. name: "Macro",
  15208. height: math.unit(400, "feet")
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(4.91, "feet"),
  15217. weight: math.unit(100, "lb"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/lily/front.svg",
  15221. extra: 1585 / 1415,
  15222. bottom: 0.02
  15223. }
  15224. },
  15225. },
  15226. [
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(4.91, "feet"),
  15230. default: true
  15231. },
  15232. ]
  15233. ))
  15234. characterMakers.push(() => makeCharacter(
  15235. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15236. {
  15237. laying: {
  15238. height: math.unit(4 + 4 / 12, "feet"),
  15239. weight: math.unit(600, "lb"),
  15240. name: "Laying",
  15241. image: {
  15242. source: "./media/characters/sheila/laying.svg",
  15243. extra: 1333 / 1265,
  15244. bottom: 0.16
  15245. }
  15246. },
  15247. },
  15248. [
  15249. {
  15250. name: "Normal",
  15251. height: math.unit(4 + 4 / 12, "feet"),
  15252. default: true
  15253. },
  15254. ]
  15255. ))
  15256. characterMakers.push(() => makeCharacter(
  15257. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15258. {
  15259. front: {
  15260. height: math.unit(6, "feet"),
  15261. weight: math.unit(190, "lb"),
  15262. name: "Front",
  15263. image: {
  15264. source: "./media/characters/sax/front.svg",
  15265. extra: 1187 / 973,
  15266. bottom: 0.042
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "Micro",
  15273. height: math.unit(4, "inches"),
  15274. default: true
  15275. },
  15276. ]
  15277. ))
  15278. characterMakers.push(() => makeCharacter(
  15279. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15280. {
  15281. front: {
  15282. height: math.unit(6, "feet"),
  15283. weight: math.unit(150, "lb"),
  15284. name: "Front",
  15285. image: {
  15286. source: "./media/characters/pandora/front.svg",
  15287. extra: 2720 / 2556,
  15288. bottom: 0.015
  15289. }
  15290. },
  15291. back: {
  15292. height: math.unit(6, "feet"),
  15293. weight: math.unit(150, "lb"),
  15294. name: "Back",
  15295. image: {
  15296. source: "./media/characters/pandora/back.svg",
  15297. extra: 2720 / 2556,
  15298. bottom: 0.01
  15299. }
  15300. },
  15301. beans: {
  15302. height: math.unit(6 / 8, "feet"),
  15303. name: "Beans",
  15304. image: {
  15305. source: "./media/characters/pandora/beans.svg"
  15306. }
  15307. },
  15308. skirt: {
  15309. height: math.unit(6, "feet"),
  15310. weight: math.unit(150, "lb"),
  15311. name: "Skirt",
  15312. image: {
  15313. source: "./media/characters/pandora/skirt.svg",
  15314. extra: 1622 / 1525,
  15315. bottom: 0.015
  15316. }
  15317. },
  15318. hoodie: {
  15319. height: math.unit(6, "feet"),
  15320. weight: math.unit(150, "lb"),
  15321. name: "Hoodie",
  15322. image: {
  15323. source: "./media/characters/pandora/hoodie.svg",
  15324. extra: 1622 / 1525,
  15325. bottom: 0.015
  15326. }
  15327. },
  15328. casual: {
  15329. height: math.unit(6, "feet"),
  15330. weight: math.unit(150, "lb"),
  15331. name: "Casual",
  15332. image: {
  15333. source: "./media/characters/pandora/casual.svg",
  15334. extra: 1622 / 1525,
  15335. bottom: 0.015
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Normal",
  15342. height: math.unit(6, "feet")
  15343. },
  15344. {
  15345. name: "Big Steppy",
  15346. height: math.unit(1, "km"),
  15347. default: true
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15353. {
  15354. side: {
  15355. height: math.unit(10, "feet"),
  15356. weight: math.unit(800, "kg"),
  15357. name: "Side",
  15358. image: {
  15359. source: "./media/characters/venio-darcony/side.svg",
  15360. extra: 1373 / 1003,
  15361. bottom: 0.037
  15362. }
  15363. },
  15364. front: {
  15365. height: math.unit(19, "feet"),
  15366. weight: math.unit(800, "kg"),
  15367. name: "Front",
  15368. image: {
  15369. source: "./media/characters/venio-darcony/front.svg"
  15370. }
  15371. },
  15372. back: {
  15373. height: math.unit(19, "feet"),
  15374. weight: math.unit(800, "kg"),
  15375. name: "Back",
  15376. image: {
  15377. source: "./media/characters/venio-darcony/back.svg"
  15378. }
  15379. },
  15380. sideNsfw: {
  15381. height: math.unit(10, "feet"),
  15382. weight: math.unit(800, "kg"),
  15383. name: "Side (NSFW)",
  15384. image: {
  15385. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15386. extra: 1373 / 1003,
  15387. bottom: 0.037
  15388. }
  15389. },
  15390. frontNsfw: {
  15391. height: math.unit(19, "feet"),
  15392. weight: math.unit(800, "kg"),
  15393. name: "Front (NSFW)",
  15394. image: {
  15395. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15396. }
  15397. },
  15398. backNsfw: {
  15399. height: math.unit(19, "feet"),
  15400. weight: math.unit(800, "kg"),
  15401. name: "Back (NSFW)",
  15402. image: {
  15403. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15404. }
  15405. },
  15406. sideArmored: {
  15407. height: math.unit(10, "feet"),
  15408. weight: math.unit(800, "kg"),
  15409. name: "Side (Armored)",
  15410. image: {
  15411. source: "./media/characters/venio-darcony/side-armored.svg",
  15412. extra: 1373 / 1003,
  15413. bottom: 0.037
  15414. }
  15415. },
  15416. frontArmored: {
  15417. height: math.unit(19, "feet"),
  15418. weight: math.unit(900, "kg"),
  15419. name: "Front (Armored)",
  15420. image: {
  15421. source: "./media/characters/venio-darcony/front-armored.svg"
  15422. }
  15423. },
  15424. backArmored: {
  15425. height: math.unit(19, "feet"),
  15426. weight: math.unit(900, "kg"),
  15427. name: "Back (Armored)",
  15428. image: {
  15429. source: "./media/characters/venio-darcony/back-armored.svg"
  15430. }
  15431. },
  15432. sword: {
  15433. height: math.unit(10, "feet"),
  15434. weight: math.unit(50, "lb"),
  15435. name: "Sword",
  15436. image: {
  15437. source: "./media/characters/venio-darcony/sword.svg"
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(10, "feet")
  15445. },
  15446. {
  15447. name: "Macro",
  15448. height: math.unit(130, "feet"),
  15449. default: true
  15450. },
  15451. {
  15452. name: "Macro+",
  15453. height: math.unit(240, "feet")
  15454. },
  15455. ]
  15456. ))
  15457. characterMakers.push(() => makeCharacter(
  15458. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15459. {
  15460. front: {
  15461. height: math.unit(6, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Front",
  15464. image: {
  15465. source: "./media/characters/veski/front.svg",
  15466. extra: 1299 / 1225,
  15467. bottom: 0.04
  15468. }
  15469. },
  15470. back: {
  15471. height: math.unit(6, "feet"),
  15472. weight: math.unit(150, "lb"),
  15473. name: "Back",
  15474. image: {
  15475. source: "./media/characters/veski/back.svg",
  15476. extra: 1299 / 1225,
  15477. bottom: 0.008
  15478. }
  15479. },
  15480. maw: {
  15481. height: math.unit(1.5 * 1.21, "feet"),
  15482. name: "Maw",
  15483. image: {
  15484. source: "./media/characters/veski/maw.svg"
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Macro",
  15491. height: math.unit(2, "km"),
  15492. default: true
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(5 + 7 / 12, "feet"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/isabelle/front.svg",
  15504. extra: 2130 / 1976,
  15505. bottom: 0.05
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Supermicro",
  15512. height: math.unit(10, "micrometers")
  15513. },
  15514. {
  15515. name: "Micro",
  15516. height: math.unit(1, "inch")
  15517. },
  15518. {
  15519. name: "Tiny",
  15520. height: math.unit(5, "inches")
  15521. },
  15522. {
  15523. name: "Standard",
  15524. height: math.unit(5 + 7 / 12, "inches")
  15525. },
  15526. {
  15527. name: "Macro",
  15528. height: math.unit(80, "meters"),
  15529. default: true
  15530. },
  15531. {
  15532. name: "Megamacro",
  15533. height: math.unit(250, "meters")
  15534. },
  15535. {
  15536. name: "Gigamacro",
  15537. height: math.unit(5, "km")
  15538. },
  15539. {
  15540. name: "Cosmic",
  15541. height: math.unit(2.5e6, "miles")
  15542. },
  15543. ]
  15544. ))
  15545. characterMakers.push(() => makeCharacter(
  15546. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15547. {
  15548. front: {
  15549. height: math.unit(6, "feet"),
  15550. weight: math.unit(150, "lb"),
  15551. name: "Front",
  15552. image: {
  15553. source: "./media/characters/hanzo/front.svg",
  15554. extra: 374 / 344,
  15555. bottom: 0.02
  15556. }
  15557. },
  15558. },
  15559. [
  15560. {
  15561. name: "Normal",
  15562. height: math.unit(8, "feet"),
  15563. default: true
  15564. },
  15565. ]
  15566. ))
  15567. characterMakers.push(() => makeCharacter(
  15568. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15569. {
  15570. front: {
  15571. height: math.unit(7, "feet"),
  15572. weight: math.unit(130, "lb"),
  15573. name: "Front",
  15574. image: {
  15575. source: "./media/characters/anna/front.svg",
  15576. extra: 169 / 145,
  15577. bottom: 0.06
  15578. }
  15579. },
  15580. full: {
  15581. height: math.unit(4.96, "feet"),
  15582. weight: math.unit(220, "lb"),
  15583. name: "Full",
  15584. image: {
  15585. source: "./media/characters/anna/full.svg",
  15586. extra: 138 / 114,
  15587. bottom: 0.15
  15588. }
  15589. },
  15590. tongue: {
  15591. height: math.unit(2.53, "feet"),
  15592. name: "Tongue",
  15593. image: {
  15594. source: "./media/characters/anna/tongue.svg"
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(7, "feet"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(7, "feet"),
  15611. weight: math.unit(150, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/ian-corvid/front.svg",
  15615. extra: 150 / 142,
  15616. bottom: 0.02
  15617. }
  15618. },
  15619. back: {
  15620. height: math.unit(7, "feet"),
  15621. weight: math.unit(150, "lb"),
  15622. name: "Back",
  15623. image: {
  15624. source: "./media/characters/ian-corvid/back.svg",
  15625. extra: 150 / 143,
  15626. bottom: 0.01
  15627. }
  15628. },
  15629. stomping: {
  15630. height: math.unit(7, "feet"),
  15631. weight: math.unit(150, "lb"),
  15632. name: "Stomping",
  15633. image: {
  15634. source: "./media/characters/ian-corvid/stomping.svg",
  15635. extra: 76 / 72
  15636. }
  15637. },
  15638. sitting: {
  15639. height: math.unit(7 / 1.8, "feet"),
  15640. weight: math.unit(150, "lb"),
  15641. name: "Sitting",
  15642. image: {
  15643. source: "./media/characters/ian-corvid/sitting.svg",
  15644. extra: 1400 / 1269,
  15645. bottom: 0.15
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Tiny Microw",
  15652. height: math.unit(1, "inch")
  15653. },
  15654. {
  15655. name: "Microw",
  15656. height: math.unit(6, "inches")
  15657. },
  15658. {
  15659. name: "Crow",
  15660. height: math.unit(7 + 1 / 12, "feet"),
  15661. default: true
  15662. },
  15663. {
  15664. name: "Macrow",
  15665. height: math.unit(176, "feet")
  15666. },
  15667. ]
  15668. ))
  15669. characterMakers.push(() => makeCharacter(
  15670. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15671. {
  15672. front: {
  15673. height: math.unit(5 + 7 / 12, "feet"),
  15674. weight: math.unit(147, "lb"),
  15675. name: "Front",
  15676. image: {
  15677. source: "./media/characters/natalie-kellon/front.svg",
  15678. extra: 1214 / 1141,
  15679. bottom: 0.02
  15680. }
  15681. },
  15682. },
  15683. [
  15684. {
  15685. name: "Micro",
  15686. height: math.unit(1 / 16, "inch")
  15687. },
  15688. {
  15689. name: "Tiny",
  15690. height: math.unit(4, "inches")
  15691. },
  15692. {
  15693. name: "Normal",
  15694. height: math.unit(5 + 7 / 12, "feet"),
  15695. default: true
  15696. },
  15697. {
  15698. name: "Amazon",
  15699. height: math.unit(12, "feet")
  15700. },
  15701. {
  15702. name: "Giantess",
  15703. height: math.unit(160, "meters")
  15704. },
  15705. {
  15706. name: "Titaness",
  15707. height: math.unit(800, "meters")
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15713. {
  15714. front: {
  15715. height: math.unit(6, "feet"),
  15716. weight: math.unit(150, "lb"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/alluria/front.svg",
  15720. extra: 806 / 738,
  15721. bottom: 0.01
  15722. }
  15723. },
  15724. side: {
  15725. height: math.unit(6, "feet"),
  15726. weight: math.unit(150, "lb"),
  15727. name: "Side",
  15728. image: {
  15729. source: "./media/characters/alluria/side.svg",
  15730. extra: 800 / 750,
  15731. }
  15732. },
  15733. back: {
  15734. height: math.unit(6, "feet"),
  15735. weight: math.unit(150, "lb"),
  15736. name: "Back",
  15737. image: {
  15738. source: "./media/characters/alluria/back.svg",
  15739. extra: 806 / 738,
  15740. }
  15741. },
  15742. frontMaid: {
  15743. height: math.unit(6, "feet"),
  15744. weight: math.unit(150, "lb"),
  15745. name: "Front (Maid)",
  15746. image: {
  15747. source: "./media/characters/alluria/front-maid.svg",
  15748. extra: 806 / 738,
  15749. bottom: 0.01
  15750. }
  15751. },
  15752. sideMaid: {
  15753. height: math.unit(6, "feet"),
  15754. weight: math.unit(150, "lb"),
  15755. name: "Side (Maid)",
  15756. image: {
  15757. source: "./media/characters/alluria/side-maid.svg",
  15758. extra: 800 / 750,
  15759. bottom: 0.005
  15760. }
  15761. },
  15762. backMaid: {
  15763. height: math.unit(6, "feet"),
  15764. weight: math.unit(150, "lb"),
  15765. name: "Back (Maid)",
  15766. image: {
  15767. source: "./media/characters/alluria/back-maid.svg",
  15768. extra: 806 / 738,
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Micro",
  15775. height: math.unit(6, "inches"),
  15776. default: true
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15782. {
  15783. front: {
  15784. height: math.unit(6, "feet"),
  15785. weight: math.unit(150, "lb"),
  15786. name: "Front",
  15787. image: {
  15788. source: "./media/characters/kyle/front.svg",
  15789. extra: 1069 / 962,
  15790. bottom: 77.228 / 1727.45
  15791. }
  15792. },
  15793. },
  15794. [
  15795. {
  15796. name: "Macro",
  15797. height: math.unit(150, "feet"),
  15798. default: true
  15799. },
  15800. ]
  15801. ))
  15802. characterMakers.push(() => makeCharacter(
  15803. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15804. {
  15805. front: {
  15806. height: math.unit(6, "feet"),
  15807. weight: math.unit(300, "lb"),
  15808. name: "Front",
  15809. image: {
  15810. source: "./media/characters/duncan/front.svg",
  15811. extra: 1650 / 1482,
  15812. bottom: 0.05
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Macro",
  15819. height: math.unit(100, "feet"),
  15820. default: true
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15826. {
  15827. front: {
  15828. height: math.unit(5 + 4 / 12, "feet"),
  15829. weight: math.unit(220, "lb"),
  15830. name: "Front",
  15831. image: {
  15832. source: "./media/characters/memory/front.svg",
  15833. extra: 3641 / 3545,
  15834. bottom: 0.03
  15835. }
  15836. },
  15837. back: {
  15838. height: math.unit(5 + 4 / 12, "feet"),
  15839. weight: math.unit(220, "lb"),
  15840. name: "Back",
  15841. image: {
  15842. source: "./media/characters/memory/back.svg",
  15843. extra: 3641 / 3545,
  15844. bottom: 0.025
  15845. }
  15846. },
  15847. frontSkirt: {
  15848. height: math.unit(5 + 4 / 12, "feet"),
  15849. weight: math.unit(220, "lb"),
  15850. name: "Front (Skirt)",
  15851. image: {
  15852. source: "./media/characters/memory/front-skirt.svg",
  15853. extra: 3641 / 3545,
  15854. bottom: 0.03
  15855. }
  15856. },
  15857. frontDress: {
  15858. height: math.unit(5 + 4 / 12, "feet"),
  15859. weight: math.unit(220, "lb"),
  15860. name: "Front (Dress)",
  15861. image: {
  15862. source: "./media/characters/memory/front-dress.svg",
  15863. extra: 3641 / 3545,
  15864. bottom: 0.03
  15865. }
  15866. },
  15867. },
  15868. [
  15869. {
  15870. name: "Micro",
  15871. height: math.unit(6, "inches"),
  15872. default: true
  15873. },
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(5 + 4 / 12, "feet")
  15877. },
  15878. ]
  15879. ))
  15880. characterMakers.push(() => makeCharacter(
  15881. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15882. {
  15883. front: {
  15884. height: math.unit(4 + 11 / 12, "feet"),
  15885. weight: math.unit(100, "lb"),
  15886. name: "Front",
  15887. image: {
  15888. source: "./media/characters/luno/front.svg",
  15889. extra: 1535 / 1487,
  15890. bottom: 0.03
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Micro",
  15897. height: math.unit(3, "inches")
  15898. },
  15899. {
  15900. name: "Normal",
  15901. height: math.unit(4 + 11 / 12, "feet"),
  15902. default: true
  15903. },
  15904. {
  15905. name: "Macro",
  15906. height: math.unit(300, "feet")
  15907. },
  15908. {
  15909. name: "Megamacro",
  15910. height: math.unit(700, "miles")
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15916. {
  15917. front: {
  15918. height: math.unit(6 + 2 / 12, "feet"),
  15919. weight: math.unit(170, "lb"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/jamesy/front.svg",
  15923. extra: 440 / 382,
  15924. bottom: 0.005
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Micro",
  15931. height: math.unit(3, "inches")
  15932. },
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(6 + 2 / 12, "feet"),
  15936. default: true
  15937. },
  15938. {
  15939. name: "Macro",
  15940. height: math.unit(300, "feet")
  15941. },
  15942. {
  15943. name: "Megamacro",
  15944. height: math.unit(700, "miles")
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15950. {
  15951. front: {
  15952. height: math.unit(6, "feet"),
  15953. weight: math.unit(160, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/mark/front.svg",
  15957. extra: 3300 / 3100,
  15958. bottom: 136.42 / 3440.47
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Macro",
  15965. height: math.unit(120, "meters")
  15966. },
  15967. {
  15968. name: "Bigger Macro",
  15969. height: math.unit(350, "meters")
  15970. },
  15971. {
  15972. name: "Megamacro",
  15973. height: math.unit(8, "km"),
  15974. default: true
  15975. },
  15976. {
  15977. name: "Continental",
  15978. height: math.unit(4550, "km")
  15979. },
  15980. {
  15981. name: "Planetary",
  15982. height: math.unit(65000, "km")
  15983. },
  15984. ]
  15985. ))
  15986. characterMakers.push(() => makeCharacter(
  15987. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15988. {
  15989. front: {
  15990. height: math.unit(6, "feet"),
  15991. weight: math.unit(400, "lb"),
  15992. name: "Front",
  15993. image: {
  15994. source: "./media/characters/mac/front.svg",
  15995. extra: 1048 / 987.7,
  15996. bottom: 60 / 1107.6,
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Macro",
  16003. height: math.unit(500, "feet"),
  16004. default: true
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16010. {
  16011. front: {
  16012. height: math.unit(5 + 2 / 12, "feet"),
  16013. weight: math.unit(190, "lb"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/bari/front.svg",
  16017. extra: 3156 / 2880,
  16018. bottom: 0.03
  16019. }
  16020. },
  16021. back: {
  16022. height: math.unit(5 + 2 / 12, "feet"),
  16023. weight: math.unit(190, "lb"),
  16024. name: "Back",
  16025. image: {
  16026. source: "./media/characters/bari/back.svg",
  16027. extra: 3260 / 2834,
  16028. bottom: 0.025
  16029. }
  16030. },
  16031. frontPlush: {
  16032. height: math.unit(5 + 2 / 12, "feet"),
  16033. weight: math.unit(190, "lb"),
  16034. name: "Front (Plush)",
  16035. image: {
  16036. source: "./media/characters/bari/front-plush.svg",
  16037. extra: 1112 / 1061,
  16038. bottom: 0.002
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Micro",
  16045. height: math.unit(3, "inches")
  16046. },
  16047. {
  16048. name: "Normal",
  16049. height: math.unit(5 + 2 / 12, "feet"),
  16050. default: true
  16051. },
  16052. {
  16053. name: "Macro",
  16054. height: math.unit(20, "feet")
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(6 + 1 / 12, "feet"),
  16063. weight: math.unit(275, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/hunter-misha-raven/front.svg"
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Mortal",
  16073. height: math.unit(6 + 1 / 12, "feet")
  16074. },
  16075. {
  16076. name: "Divine",
  16077. height: math.unit(1.12134e34, "parsecs"),
  16078. default: true
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(6 + 3 / 12, "feet"),
  16087. weight: math.unit(220, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/max-calore/front.svg",
  16091. extra: 1700 / 1648,
  16092. bottom: 0.01
  16093. }
  16094. },
  16095. back: {
  16096. height: math.unit(6 + 3 / 12, "feet"),
  16097. weight: math.unit(220, "lb"),
  16098. name: "Back",
  16099. image: {
  16100. source: "./media/characters/max-calore/back.svg",
  16101. extra: 1700 / 1648,
  16102. bottom: 0.01
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Normal",
  16109. height: math.unit(6 + 3 / 12, "feet"),
  16110. default: true
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16116. {
  16117. side: {
  16118. height: math.unit(2 + 8 / 12, "feet"),
  16119. weight: math.unit(99, "lb"),
  16120. name: "Side",
  16121. image: {
  16122. source: "./media/characters/aspen/side.svg",
  16123. extra: 152 / 138,
  16124. bottom: 0.032
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(2 + 8 / 12, "feet"),
  16132. default: true
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16138. {
  16139. side: {
  16140. height: math.unit(3 + 2 / 12, "feet"),
  16141. weight: math.unit(224, "lb"),
  16142. name: "Side",
  16143. image: {
  16144. source: "./media/characters/sheila-feral-wolf/side.svg",
  16145. extra: 179 / 166,
  16146. bottom: 0.03
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(3 + 2 / 12, "feet"),
  16154. default: true
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16160. {
  16161. side: {
  16162. height: math.unit(1 + 9 / 12, "feet"),
  16163. weight: math.unit(38, "lb"),
  16164. name: "Side",
  16165. image: {
  16166. source: "./media/characters/michelle/side.svg",
  16167. extra: 147 / 136.7,
  16168. bottom: 0.03
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(1 + 9 / 12, "feet"),
  16176. default: true
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(1 + 1 / 12, "feet"),
  16185. weight: math.unit(18, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/nino/front.svg"
  16189. }
  16190. },
  16191. },
  16192. [
  16193. {
  16194. name: "Normal",
  16195. height: math.unit(1 + 1 / 12, "feet"),
  16196. default: true
  16197. },
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16202. {
  16203. front: {
  16204. height: math.unit(1, "feet"),
  16205. weight: math.unit(16, "lb"),
  16206. name: "Front",
  16207. image: {
  16208. source: "./media/characters/viola/front.svg"
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(1, "feet"),
  16216. default: true
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(6 + 5 / 12, "feet"),
  16225. weight: math.unit(580, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/atlas/front.svg",
  16229. extra: 298.5 / 290,
  16230. bottom: 0.015
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(6 + 5 / 12, "feet"),
  16238. default: true
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16244. {
  16245. side: {
  16246. height: math.unit(1 + 10 / 12, "feet"),
  16247. weight: math.unit(25, "lb"),
  16248. name: "Side",
  16249. image: {
  16250. source: "./media/characters/davy/side.svg",
  16251. extra: 200 / 170,
  16252. bottom: 0.01
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(1 + 10 / 12, "feet"),
  16260. default: true
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16266. {
  16267. side: {
  16268. height: math.unit(4 + 8 / 12, "feet"),
  16269. weight: math.unit(166, "lb"),
  16270. name: "Side",
  16271. image: {
  16272. source: "./media/characters/fiona/side.svg",
  16273. extra: 232 / 220,
  16274. bottom: 0.03
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(4 + 8 / 12, "feet"),
  16282. default: true
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16288. {
  16289. front: {
  16290. height: math.unit(2, "feet"),
  16291. weight: math.unit(62, "lb"),
  16292. name: "Front",
  16293. image: {
  16294. source: "./media/characters/lyla/front.svg",
  16295. bottom: 0.1
  16296. }
  16297. },
  16298. },
  16299. [
  16300. {
  16301. name: "Normal",
  16302. height: math.unit(2, "feet"),
  16303. default: true
  16304. },
  16305. ]
  16306. ))
  16307. characterMakers.push(() => makeCharacter(
  16308. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16309. {
  16310. side: {
  16311. height: math.unit(1.8, "feet"),
  16312. weight: math.unit(44, "lb"),
  16313. name: "Side",
  16314. image: {
  16315. source: "./media/characters/perseus/side.svg",
  16316. bottom: 0.21
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(1.8, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16330. {
  16331. side: {
  16332. height: math.unit(4 + 2 / 12, "feet"),
  16333. weight: math.unit(20, "lb"),
  16334. name: "Side",
  16335. image: {
  16336. source: "./media/characters/remus/side.svg"
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(4 + 2 / 12, "feet"),
  16344. default: true
  16345. },
  16346. ]
  16347. ))
  16348. characterMakers.push(() => makeCharacter(
  16349. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16350. {
  16351. front: {
  16352. height: math.unit(4 + 11 / 12, "feet"),
  16353. weight: math.unit(114, "lb"),
  16354. name: "Front",
  16355. image: {
  16356. source: "./media/characters/raf/front.svg",
  16357. bottom: 20.5 / 1863
  16358. }
  16359. },
  16360. side: {
  16361. height: math.unit(4 + 11 / 12, "feet"),
  16362. weight: math.unit(114, "lb"),
  16363. name: "Side",
  16364. image: {
  16365. source: "./media/characters/raf/side.svg",
  16366. bottom: 22 / 1822
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Micro",
  16373. height: math.unit(2, "inches")
  16374. },
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(4 + 11 / 12, "feet"),
  16378. default: true
  16379. },
  16380. {
  16381. name: "Macro",
  16382. height: math.unit(70, "feet")
  16383. },
  16384. ]
  16385. ))
  16386. characterMakers.push(() => makeCharacter(
  16387. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16388. {
  16389. front: {
  16390. height: math.unit(1.5, "meters"),
  16391. weight: math.unit(68, "kg"),
  16392. name: "Front",
  16393. image: {
  16394. source: "./media/characters/liam-einarr/front.svg",
  16395. extra: 2822 / 2666
  16396. }
  16397. },
  16398. back: {
  16399. height: math.unit(1.5, "meters"),
  16400. weight: math.unit(68, "kg"),
  16401. name: "Back",
  16402. image: {
  16403. source: "./media/characters/liam-einarr/back.svg",
  16404. extra: 2822 / 2666,
  16405. bottom: 0.015
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(1.5, "meters"),
  16413. default: true
  16414. },
  16415. {
  16416. name: "Macro",
  16417. height: math.unit(150, "meters")
  16418. },
  16419. {
  16420. name: "Megamacro",
  16421. height: math.unit(35, "km")
  16422. },
  16423. ]
  16424. ))
  16425. characterMakers.push(() => makeCharacter(
  16426. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16427. {
  16428. front: {
  16429. height: math.unit(6, "feet"),
  16430. weight: math.unit(75, "kg"),
  16431. name: "Front",
  16432. image: {
  16433. source: "./media/characters/linda/front.svg",
  16434. extra: 930 / 874,
  16435. bottom: 0.004
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "Normal",
  16442. height: math.unit(6, "feet"),
  16443. default: true
  16444. },
  16445. ]
  16446. ))
  16447. characterMakers.push(() => makeCharacter(
  16448. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16449. {
  16450. front: {
  16451. height: math.unit(6 + 8 / 12, "feet"),
  16452. weight: math.unit(220, "lb"),
  16453. name: "Front",
  16454. image: {
  16455. source: "./media/characters/caylex/front.svg",
  16456. extra: 821 / 772,
  16457. bottom: 0.07
  16458. }
  16459. },
  16460. back: {
  16461. height: math.unit(6 + 8 / 12, "feet"),
  16462. weight: math.unit(220, "lb"),
  16463. name: "Back",
  16464. image: {
  16465. source: "./media/characters/caylex/back.svg",
  16466. extra: 821 / 772,
  16467. bottom: 0.022
  16468. }
  16469. },
  16470. hand: {
  16471. height: math.unit(1.25, "feet"),
  16472. name: "Hand",
  16473. image: {
  16474. source: "./media/characters/caylex/hand.svg"
  16475. }
  16476. },
  16477. foot: {
  16478. height: math.unit(1.6, "feet"),
  16479. name: "Foot",
  16480. image: {
  16481. source: "./media/characters/caylex/foot.svg"
  16482. }
  16483. },
  16484. armored: {
  16485. height: math.unit(6 + 8 / 12, "feet"),
  16486. weight: math.unit(250, "lb"),
  16487. name: "Armored",
  16488. image: {
  16489. source: "./media/characters/caylex/armored.svg",
  16490. extra: 1420 / 1310,
  16491. bottom: 0.045
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(6 + 8 / 12, "feet"),
  16499. default: true
  16500. },
  16501. {
  16502. name: "Normal+",
  16503. height: math.unit(12, "feet")
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(7 + 6 / 12, "feet"),
  16512. weight: math.unit(288, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/alana/front.svg",
  16516. extra: 679 / 653,
  16517. bottom: 22.5 / 701
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(7 + 6 / 12, "feet")
  16525. },
  16526. {
  16527. name: "Large",
  16528. height: math.unit(50, "feet")
  16529. },
  16530. {
  16531. name: "Macro",
  16532. height: math.unit(100, "feet"),
  16533. default: true
  16534. },
  16535. {
  16536. name: "Macro+",
  16537. height: math.unit(200, "feet")
  16538. },
  16539. ]
  16540. ))
  16541. characterMakers.push(() => makeCharacter(
  16542. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16543. {
  16544. front: {
  16545. height: math.unit(6 + 1 / 12, "feet"),
  16546. weight: math.unit(210, "lb"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/hasani/front.svg",
  16550. extra: 244 / 232,
  16551. bottom: 0.01
  16552. }
  16553. },
  16554. back: {
  16555. height: math.unit(6 + 1 / 12, "feet"),
  16556. weight: math.unit(210, "lb"),
  16557. name: "Back",
  16558. image: {
  16559. source: "./media/characters/hasani/back.svg",
  16560. extra: 244 / 232,
  16561. bottom: 0.01
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(6 + 1 / 12, "feet")
  16569. },
  16570. {
  16571. name: "Macro",
  16572. height: math.unit(175, "feet"),
  16573. default: true
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(1.82, "meters"),
  16582. weight: math.unit(140, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/nita/front.svg",
  16586. extra: 2473 / 2363,
  16587. bottom: 0.01
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(1.82, "m")
  16595. },
  16596. {
  16597. name: "Macro",
  16598. height: math.unit(300, "m")
  16599. },
  16600. {
  16601. name: "Mistake Canon",
  16602. height: math.unit(0.5, "miles"),
  16603. default: true
  16604. },
  16605. {
  16606. name: "Big Mistake",
  16607. height: math.unit(13, "miles")
  16608. },
  16609. {
  16610. name: "Playing God",
  16611. height: math.unit(2450, "miles")
  16612. },
  16613. ]
  16614. ))
  16615. characterMakers.push(() => makeCharacter(
  16616. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16617. {
  16618. front: {
  16619. height: math.unit(4, "feet"),
  16620. weight: math.unit(120, "lb"),
  16621. name: "Front",
  16622. image: {
  16623. source: "./media/characters/shiriko/front.svg",
  16624. extra: 195 / 188
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(4, "feet"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16638. {
  16639. front: {
  16640. height: math.unit(6, "feet"),
  16641. name: "front",
  16642. image: {
  16643. source: "./media/characters/deja/front.svg",
  16644. extra: 926 / 840,
  16645. bottom: 0.07
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Planck Length",
  16652. height: math.unit(1.6e-35, "meters")
  16653. },
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(30.48, "meters"),
  16657. default: true
  16658. },
  16659. {
  16660. name: "Universal",
  16661. height: math.unit(8.8e26, "meters")
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16667. {
  16668. side: {
  16669. height: math.unit(8, "feet"),
  16670. weight: math.unit(6300, "lb"),
  16671. name: "Side",
  16672. image: {
  16673. source: "./media/characters/anima/side.svg",
  16674. bottom: 0.035
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(8, "feet"),
  16682. default: true
  16683. },
  16684. ]
  16685. ))
  16686. characterMakers.push(() => makeCharacter(
  16687. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16688. {
  16689. front: {
  16690. height: math.unit(8, "feet"),
  16691. weight: math.unit(350, "lb"),
  16692. name: "Front",
  16693. image: {
  16694. source: "./media/characters/bianca/front.svg",
  16695. extra: 234 / 225,
  16696. bottom: 0.03
  16697. }
  16698. },
  16699. },
  16700. [
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(8, "feet"),
  16704. default: true
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16710. {
  16711. front: {
  16712. height: math.unit(6, "feet"),
  16713. weight: math.unit(150, "lb"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/adinia/front.svg",
  16717. extra: 1845 / 1672,
  16718. bottom: 0.02
  16719. }
  16720. },
  16721. back: {
  16722. height: math.unit(6, "feet"),
  16723. weight: math.unit(150, "lb"),
  16724. name: "Back",
  16725. image: {
  16726. source: "./media/characters/adinia/back.svg",
  16727. extra: 1845 / 1672,
  16728. bottom: 0.002
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(11 + 5 / 12, "feet"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16742. {
  16743. front: {
  16744. height: math.unit(3, "meters"),
  16745. weight: math.unit(200, "kg"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/lykasa/front.svg",
  16749. extra: 1076 / 976,
  16750. bottom: 0.06
  16751. }
  16752. },
  16753. },
  16754. [
  16755. {
  16756. name: "Normal",
  16757. height: math.unit(3, "meters")
  16758. },
  16759. {
  16760. name: "Kaiju",
  16761. height: math.unit(120, "meters"),
  16762. default: true
  16763. },
  16764. {
  16765. name: "Mega Kaiju",
  16766. height: math.unit(240, "km")
  16767. },
  16768. {
  16769. name: "Giga Kaiju",
  16770. height: math.unit(400, "megameters")
  16771. },
  16772. {
  16773. name: "Tera Kaiju",
  16774. height: math.unit(800, "gigameters")
  16775. },
  16776. {
  16777. name: "Kaiju Dragon Goddess",
  16778. height: math.unit(26, "zettaparsecs")
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16784. {
  16785. side: {
  16786. height: math.unit(283 / 124 * 6, "feet"),
  16787. weight: math.unit(35000, "lb"),
  16788. name: "Side",
  16789. image: {
  16790. source: "./media/characters/malfaren/side.svg",
  16791. extra: 2500 / 1010,
  16792. bottom: 0.01
  16793. }
  16794. },
  16795. front: {
  16796. height: math.unit(22.36, "feet"),
  16797. weight: math.unit(35000, "lb"),
  16798. name: "Front",
  16799. image: {
  16800. source: "./media/characters/malfaren/front.svg",
  16801. extra: 1631 / 1476,
  16802. bottom: 0.01
  16803. }
  16804. },
  16805. maw: {
  16806. height: math.unit(6.9, "feet"),
  16807. name: "Maw",
  16808. image: {
  16809. source: "./media/characters/malfaren/maw.svg"
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Big",
  16816. height: math.unit(283 / 162 * 6, "feet"),
  16817. },
  16818. {
  16819. name: "Bigger",
  16820. height: math.unit(283 / 124 * 6, "feet")
  16821. },
  16822. {
  16823. name: "Massive",
  16824. height: math.unit(283 / 92 * 6, "feet"),
  16825. default: true
  16826. },
  16827. {
  16828. name: "👀💦",
  16829. height: math.unit(283 / 73 * 6, "feet"),
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(1.7, "m"),
  16838. weight: math.unit(70, "kg"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/kernel/front.svg",
  16842. extra: 222 / 210,
  16843. bottom: 0.007
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Nano",
  16850. height: math.unit(17, "micrometers")
  16851. },
  16852. {
  16853. name: "Micro",
  16854. height: math.unit(1.7, "mm")
  16855. },
  16856. {
  16857. name: "Small",
  16858. height: math.unit(1.7, "cm")
  16859. },
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(1.7, "m"),
  16863. default: true
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16869. {
  16870. front: {
  16871. height: math.unit(1.75, "meters"),
  16872. weight: math.unit(65, "kg"),
  16873. name: "Front",
  16874. image: {
  16875. source: "./media/characters/jayne-folest/front.svg",
  16876. extra: 2115 / 2007,
  16877. bottom: 0.02
  16878. }
  16879. },
  16880. back: {
  16881. height: math.unit(1.75, "meters"),
  16882. weight: math.unit(65, "kg"),
  16883. name: "Back",
  16884. image: {
  16885. source: "./media/characters/jayne-folest/back.svg",
  16886. extra: 2115 / 2007,
  16887. bottom: 0.005
  16888. }
  16889. },
  16890. frontClothed: {
  16891. height: math.unit(1.75, "meters"),
  16892. weight: math.unit(65, "kg"),
  16893. name: "Front (Clothed)",
  16894. image: {
  16895. source: "./media/characters/jayne-folest/front-clothed.svg",
  16896. extra: 2115 / 2007,
  16897. bottom: 0.035
  16898. }
  16899. },
  16900. hand: {
  16901. height: math.unit(1 / 1.260, "feet"),
  16902. name: "Hand",
  16903. image: {
  16904. source: "./media/characters/jayne-folest/hand.svg"
  16905. }
  16906. },
  16907. foot: {
  16908. height: math.unit(1 / 0.918, "feet"),
  16909. name: "Foot",
  16910. image: {
  16911. source: "./media/characters/jayne-folest/foot.svg"
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Micro",
  16918. height: math.unit(4, "cm")
  16919. },
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(1.75, "meters")
  16923. },
  16924. {
  16925. name: "Macro",
  16926. height: math.unit(47.5, "meters"),
  16927. default: true
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16933. {
  16934. front: {
  16935. height: math.unit(180, "cm"),
  16936. weight: math.unit(70, "kg"),
  16937. name: "Front",
  16938. image: {
  16939. source: "./media/characters/algier/front.svg",
  16940. extra: 596 / 572,
  16941. bottom: 0.04
  16942. }
  16943. },
  16944. back: {
  16945. height: math.unit(180, "cm"),
  16946. weight: math.unit(70, "kg"),
  16947. name: "Back",
  16948. image: {
  16949. source: "./media/characters/algier/back.svg",
  16950. extra: 596 / 572,
  16951. bottom: 0.025
  16952. }
  16953. },
  16954. frontdressed: {
  16955. height: math.unit(180, "cm"),
  16956. weight: math.unit(150, "kg"),
  16957. name: "Front-dressed",
  16958. image: {
  16959. source: "./media/characters/algier/front-dressed.svg",
  16960. extra: 596 / 572,
  16961. bottom: 0.038
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Micro",
  16968. height: math.unit(5, "cm")
  16969. },
  16970. {
  16971. name: "Normal",
  16972. height: math.unit(180, "cm"),
  16973. default: true
  16974. },
  16975. {
  16976. name: "Macro",
  16977. height: math.unit(64, "m")
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16983. {
  16984. upright: {
  16985. height: math.unit(7, "feet"),
  16986. weight: math.unit(300, "lb"),
  16987. name: "Upright",
  16988. image: {
  16989. source: "./media/characters/pretzel/upright.svg",
  16990. extra: 534 / 522,
  16991. bottom: 0.065
  16992. }
  16993. },
  16994. sprawling: {
  16995. height: math.unit(3.75, "feet"),
  16996. weight: math.unit(300, "lb"),
  16997. name: "Sprawling",
  16998. image: {
  16999. source: "./media/characters/pretzel/sprawling.svg",
  17000. extra: 314 / 281,
  17001. bottom: 0.1
  17002. }
  17003. },
  17004. tongue: {
  17005. height: math.unit(2, "feet"),
  17006. name: "Tongue",
  17007. image: {
  17008. source: "./media/characters/pretzel/tongue.svg"
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(7, "feet"),
  17016. default: true
  17017. },
  17018. {
  17019. name: "Oversized",
  17020. height: math.unit(15, "feet")
  17021. },
  17022. {
  17023. name: "Huge",
  17024. height: math.unit(30, "feet")
  17025. },
  17026. {
  17027. name: "Macro",
  17028. height: math.unit(250, "feet")
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17034. {
  17035. sideFront: {
  17036. height: math.unit(5 + 2 / 12, "feet"),
  17037. weight: math.unit(120, "lb"),
  17038. name: "Front Side",
  17039. image: {
  17040. source: "./media/characters/roxi/side-front.svg",
  17041. extra: 2924 / 2717,
  17042. bottom: 0.08
  17043. }
  17044. },
  17045. sideBack: {
  17046. height: math.unit(5 + 2 / 12, "feet"),
  17047. weight: math.unit(120, "lb"),
  17048. name: "Back Side",
  17049. image: {
  17050. source: "./media/characters/roxi/side-back.svg",
  17051. extra: 2904 / 2693,
  17052. bottom: 0.06
  17053. }
  17054. },
  17055. front: {
  17056. height: math.unit(5 + 2 / 12, "feet"),
  17057. weight: math.unit(120, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/roxi/front.svg",
  17061. extra: 2028 / 1907,
  17062. bottom: 0.01
  17063. }
  17064. },
  17065. frontAlt: {
  17066. height: math.unit(5 + 2 / 12, "feet"),
  17067. weight: math.unit(120, "lb"),
  17068. name: "Front (Alt)",
  17069. image: {
  17070. source: "./media/characters/roxi/front-alt.svg",
  17071. extra: 1828 / 1798,
  17072. bottom: 0.01
  17073. }
  17074. },
  17075. sitting: {
  17076. height: math.unit(2.8, "feet"),
  17077. weight: math.unit(120, "lb"),
  17078. name: "Sitting",
  17079. image: {
  17080. source: "./media/characters/roxi/sitting.svg",
  17081. extra: 2660 / 2462,
  17082. bottom: 0.1
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(5 + 2 / 12, "feet"),
  17090. default: true
  17091. },
  17092. ]
  17093. ))
  17094. characterMakers.push(() => makeCharacter(
  17095. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17096. {
  17097. side: {
  17098. height: math.unit(55, "feet"),
  17099. weight: math.unit(153, "tons"),
  17100. name: "Side",
  17101. image: {
  17102. source: "./media/characters/shadow/side.svg",
  17103. extra: 701 / 628,
  17104. bottom: 0.02
  17105. }
  17106. },
  17107. flying: {
  17108. height: math.unit(145, "feet"),
  17109. weight: math.unit(153, "tons"),
  17110. name: "Flying",
  17111. image: {
  17112. source: "./media/characters/shadow/flying.svg"
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Normal",
  17119. height: math.unit(55, "feet"),
  17120. default: true
  17121. },
  17122. ]
  17123. ))
  17124. characterMakers.push(() => makeCharacter(
  17125. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17126. {
  17127. front: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(200, "lb"),
  17130. name: "Front",
  17131. image: {
  17132. source: "./media/characters/marcie/front.svg",
  17133. extra: 960 / 876,
  17134. bottom: 58 / 1017.87
  17135. }
  17136. },
  17137. },
  17138. [
  17139. {
  17140. name: "Macro",
  17141. height: math.unit(1, "mile"),
  17142. default: true
  17143. },
  17144. ]
  17145. ))
  17146. characterMakers.push(() => makeCharacter(
  17147. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17148. {
  17149. front: {
  17150. height: math.unit(7, "feet"),
  17151. weight: math.unit(200, "lb"),
  17152. name: "Front",
  17153. image: {
  17154. source: "./media/characters/kachina/front.svg",
  17155. extra: 1290.68 / 1119,
  17156. bottom: 36.5 / 1327.18
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(7, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17170. {
  17171. looking: {
  17172. height: math.unit(2, "meters"),
  17173. weight: math.unit(300, "kg"),
  17174. name: "Looking",
  17175. image: {
  17176. source: "./media/characters/kash/looking.svg",
  17177. extra: 474 / 344,
  17178. bottom: 0.03
  17179. }
  17180. },
  17181. side: {
  17182. height: math.unit(2, "meters"),
  17183. weight: math.unit(300, "kg"),
  17184. name: "Side",
  17185. image: {
  17186. source: "./media/characters/kash/side.svg",
  17187. extra: 302 / 251,
  17188. bottom: 0.03
  17189. }
  17190. },
  17191. front: {
  17192. height: math.unit(2, "meters"),
  17193. weight: math.unit(300, "kg"),
  17194. name: "Front",
  17195. image: {
  17196. source: "./media/characters/kash/front.svg",
  17197. extra: 495 / 360,
  17198. bottom: 0.015
  17199. }
  17200. },
  17201. },
  17202. [
  17203. {
  17204. name: "Normal",
  17205. height: math.unit(2, "meters"),
  17206. default: true
  17207. },
  17208. {
  17209. name: "Big",
  17210. height: math.unit(3, "meters")
  17211. },
  17212. {
  17213. name: "Large",
  17214. height: math.unit(5, "meters")
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17220. {
  17221. feeding: {
  17222. height: math.unit(6.7, "feet"),
  17223. weight: math.unit(350, "lb"),
  17224. name: "Feeding",
  17225. image: {
  17226. source: "./media/characters/lalim/feeding.svg",
  17227. }
  17228. },
  17229. },
  17230. [
  17231. {
  17232. name: "Normal",
  17233. height: math.unit(6.7, "feet"),
  17234. default: true
  17235. },
  17236. ]
  17237. ))
  17238. characterMakers.push(() => makeCharacter(
  17239. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17240. {
  17241. front: {
  17242. height: math.unit(9.5, "feet"),
  17243. weight: math.unit(600, "lb"),
  17244. name: "Front",
  17245. image: {
  17246. source: "./media/characters/de'vout/front.svg",
  17247. extra: 1443 / 1328,
  17248. bottom: 0.025
  17249. }
  17250. },
  17251. back: {
  17252. height: math.unit(9.5, "feet"),
  17253. weight: math.unit(600, "lb"),
  17254. name: "Back",
  17255. image: {
  17256. source: "./media/characters/de'vout/back.svg",
  17257. extra: 1443 / 1328
  17258. }
  17259. },
  17260. frontDressed: {
  17261. height: math.unit(9.5, "feet"),
  17262. weight: math.unit(600, "lb"),
  17263. name: "Front (Dressed",
  17264. image: {
  17265. source: "./media/characters/de'vout/front-dressed.svg",
  17266. extra: 1443 / 1328,
  17267. bottom: 0.025
  17268. }
  17269. },
  17270. backDressed: {
  17271. height: math.unit(9.5, "feet"),
  17272. weight: math.unit(600, "lb"),
  17273. name: "Back (Dressed",
  17274. image: {
  17275. source: "./media/characters/de'vout/back-dressed.svg",
  17276. extra: 1443 / 1328
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(9.5, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(8, "feet"),
  17293. weight: math.unit(225, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/talana/front.svg",
  17297. extra: 1410 / 1300,
  17298. bottom: 0.015
  17299. }
  17300. },
  17301. frontDressed: {
  17302. height: math.unit(8, "feet"),
  17303. weight: math.unit(225, "lb"),
  17304. name: "Front (Dressed",
  17305. image: {
  17306. source: "./media/characters/talana/front-dressed.svg",
  17307. extra: 1410 / 1300,
  17308. bottom: 0.015
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Normal",
  17315. height: math.unit(8, "feet"),
  17316. default: true
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17322. {
  17323. side: {
  17324. height: math.unit(7.2, "feet"),
  17325. weight: math.unit(150, "lb"),
  17326. name: "Side",
  17327. image: {
  17328. source: "./media/characters/xeauvok/side.svg",
  17329. extra: 1975 / 1523,
  17330. bottom: 0.07
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Normal",
  17337. height: math.unit(7.2, "feet"),
  17338. default: true
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17344. {
  17345. side: {
  17346. height: math.unit(10, "feet"),
  17347. weight: math.unit(900, "kg"),
  17348. name: "Side",
  17349. image: {
  17350. source: "./media/characters/zara/side.svg",
  17351. extra: 504 / 498
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(10, "feet"),
  17359. default: true
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17365. {
  17366. side: {
  17367. height: math.unit(6, "feet"),
  17368. weight: math.unit(150, "lb"),
  17369. name: "Side",
  17370. image: {
  17371. source: "./media/characters/richard-dragon/side.svg",
  17372. extra: 845 / 340,
  17373. bottom: 0.017
  17374. }
  17375. },
  17376. maw: {
  17377. height: math.unit(2.97, "feet"),
  17378. name: "Maw",
  17379. image: {
  17380. source: "./media/characters/richard-dragon/maw.svg"
  17381. }
  17382. },
  17383. },
  17384. [
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17389. {
  17390. front: {
  17391. height: math.unit(4, "feet"),
  17392. weight: math.unit(100, "lb"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/richard-smeargle/front.svg",
  17396. extra: 2952 / 2820,
  17397. bottom: 0.028
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Normal",
  17404. height: math.unit(4, "feet"),
  17405. default: true
  17406. },
  17407. {
  17408. name: "Dynamax",
  17409. height: math.unit(20, "meters")
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(6, "feet"),
  17418. weight: math.unit(110, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/klay/front.svg",
  17422. extra: 962 / 883,
  17423. bottom: 0.04
  17424. }
  17425. },
  17426. back: {
  17427. height: math.unit(6, "feet"),
  17428. weight: math.unit(110, "lb"),
  17429. name: "Back",
  17430. image: {
  17431. source: "./media/characters/klay/back.svg",
  17432. extra: 962 / 883
  17433. }
  17434. },
  17435. beans: {
  17436. height: math.unit(1.15, "feet"),
  17437. name: "Beans",
  17438. image: {
  17439. source: "./media/characters/klay/beans.svg"
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Micro",
  17446. height: math.unit(6, "inches")
  17447. },
  17448. {
  17449. name: "Mini",
  17450. height: math.unit(3, "feet")
  17451. },
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(6, "feet"),
  17455. default: true
  17456. },
  17457. {
  17458. name: "Big",
  17459. height: math.unit(25, "feet")
  17460. },
  17461. {
  17462. name: "Macro",
  17463. height: math.unit(100, "feet")
  17464. },
  17465. {
  17466. name: "Megamacro",
  17467. height: math.unit(400, "feet")
  17468. },
  17469. ]
  17470. ))
  17471. characterMakers.push(() => makeCharacter(
  17472. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17473. {
  17474. front: {
  17475. height: math.unit(6, "feet"),
  17476. weight: math.unit(160, "lb"),
  17477. name: "Front",
  17478. image: {
  17479. source: "./media/characters/marcus/front.svg",
  17480. extra: 734 / 676,
  17481. bottom: 0.03
  17482. }
  17483. },
  17484. },
  17485. [
  17486. {
  17487. name: "Little",
  17488. height: math.unit(6, "feet")
  17489. },
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(110, "feet"),
  17493. default: true
  17494. },
  17495. {
  17496. name: "Macro",
  17497. height: math.unit(250, "feet")
  17498. },
  17499. {
  17500. name: "Megamacro",
  17501. height: math.unit(1000, "feet")
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17507. {
  17508. front: {
  17509. height: math.unit(7, "feet"),
  17510. weight: math.unit(275, "lb"),
  17511. name: "Front",
  17512. image: {
  17513. source: "./media/characters/claude-delroute/front.svg",
  17514. extra: 230 / 214,
  17515. bottom: 0.007
  17516. }
  17517. },
  17518. side: {
  17519. height: math.unit(7, "feet"),
  17520. weight: math.unit(275, "lb"),
  17521. name: "Side",
  17522. image: {
  17523. source: "./media/characters/claude-delroute/side.svg",
  17524. extra: 222 / 214,
  17525. bottom: 0.01
  17526. }
  17527. },
  17528. back: {
  17529. height: math.unit(7, "feet"),
  17530. weight: math.unit(275, "lb"),
  17531. name: "Back",
  17532. image: {
  17533. source: "./media/characters/claude-delroute/back.svg",
  17534. extra: 230 / 214,
  17535. bottom: 0.015
  17536. }
  17537. },
  17538. maw: {
  17539. height: math.unit(0.6407, "meters"),
  17540. name: "Maw",
  17541. image: {
  17542. source: "./media/characters/claude-delroute/maw.svg"
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(7, "feet"),
  17550. default: true
  17551. },
  17552. {
  17553. name: "Lorge",
  17554. height: math.unit(20, "feet")
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(8 + 4 / 12, "feet"),
  17563. weight: math.unit(600, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/dragonien/front.svg",
  17567. extra: 100 / 94,
  17568. bottom: 3.3 / 103.3445
  17569. }
  17570. },
  17571. back: {
  17572. height: math.unit(8 + 4 / 12, "feet"),
  17573. weight: math.unit(600, "lb"),
  17574. name: "Back",
  17575. image: {
  17576. source: "./media/characters/dragonien/back.svg",
  17577. extra: 776 / 746,
  17578. bottom: 6.4 / 782.0616
  17579. }
  17580. },
  17581. foot: {
  17582. height: math.unit(1.54, "feet"),
  17583. name: "Foot",
  17584. image: {
  17585. source: "./media/characters/dragonien/foot.svg",
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Normal",
  17592. height: math.unit(8 + 4 / 12, "feet"),
  17593. default: true
  17594. },
  17595. {
  17596. name: "Macro",
  17597. height: math.unit(200, "feet")
  17598. },
  17599. {
  17600. name: "Megamacro",
  17601. height: math.unit(1, "mile")
  17602. },
  17603. {
  17604. name: "Gigamacro",
  17605. height: math.unit(1000, "miles")
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(5 + 2 / 12, "feet"),
  17614. weight: math.unit(110, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/desta/front.svg",
  17618. extra: 767 / 726,
  17619. bottom: 11.7 / 779
  17620. }
  17621. },
  17622. back: {
  17623. height: math.unit(5 + 2 / 12, "feet"),
  17624. weight: math.unit(110, "lb"),
  17625. name: "Back",
  17626. image: {
  17627. source: "./media/characters/desta/back.svg",
  17628. extra: 777 / 728,
  17629. bottom: 6 / 784
  17630. }
  17631. },
  17632. frontAlt: {
  17633. height: math.unit(5 + 2 / 12, "feet"),
  17634. weight: math.unit(110, "lb"),
  17635. name: "Front",
  17636. image: {
  17637. source: "./media/characters/desta/front-alt.svg",
  17638. extra: 1482 / 1417
  17639. }
  17640. },
  17641. side: {
  17642. height: math.unit(5 + 2 / 12, "feet"),
  17643. weight: math.unit(110, "lb"),
  17644. name: "Side",
  17645. image: {
  17646. source: "./media/characters/desta/side.svg",
  17647. extra: 2579 / 2491,
  17648. bottom: 0.053
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Micro",
  17655. height: math.unit(6, "inches")
  17656. },
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(5 + 2 / 12, "feet"),
  17660. default: true
  17661. },
  17662. {
  17663. name: "Macro",
  17664. height: math.unit(62, "feet")
  17665. },
  17666. {
  17667. name: "Megamacro",
  17668. height: math.unit(1800, "feet")
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17674. {
  17675. front: {
  17676. height: math.unit(10, "feet"),
  17677. weight: math.unit(700, "lb"),
  17678. name: "Front",
  17679. image: {
  17680. source: "./media/characters/storm-alystar/front.svg",
  17681. extra: 2112 / 1898,
  17682. bottom: 0.034
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Micro",
  17689. height: math.unit(3.5, "inches")
  17690. },
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(10, "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "Macro",
  17698. height: math.unit(400, "feet")
  17699. },
  17700. {
  17701. name: "Deific",
  17702. height: math.unit(60, "miles")
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17708. {
  17709. front: {
  17710. height: math.unit(2.35, "meters"),
  17711. weight: math.unit(119, "kg"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/ilia/front.svg",
  17715. extra: 1285 / 1255,
  17716. bottom: 0.06
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(2.35, "meters")
  17724. },
  17725. {
  17726. name: "Macro",
  17727. height: math.unit(140, "meters"),
  17728. default: true
  17729. },
  17730. {
  17731. name: "Megamacro",
  17732. height: math.unit(100, "miles")
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(6 + 5 / 12, "feet"),
  17741. weight: math.unit(190, "lb"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/kingdead/front.svg",
  17745. extra: 1228 / 1177
  17746. }
  17747. },
  17748. },
  17749. [
  17750. {
  17751. name: "Micro",
  17752. height: math.unit(7, "inches")
  17753. },
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(6 + 5 / 12, "feet")
  17757. },
  17758. {
  17759. name: "Macro",
  17760. height: math.unit(150, "feet"),
  17761. default: true
  17762. },
  17763. {
  17764. name: "Megamacro",
  17765. height: math.unit(200, "miles")
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(8, "feet"),
  17774. weight: math.unit(600, "lb"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/kyrehx/front.svg",
  17778. extra: 1195 / 1095,
  17779. bottom: 0.034
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Micro",
  17786. height: math.unit(2, "inches")
  17787. },
  17788. {
  17789. name: "Normal",
  17790. height: math.unit(8, "feet"),
  17791. default: true
  17792. },
  17793. {
  17794. name: "Macro",
  17795. height: math.unit(255, "feet")
  17796. },
  17797. ]
  17798. ))
  17799. characterMakers.push(() => makeCharacter(
  17800. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17801. {
  17802. front: {
  17803. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17804. weight: math.unit(184, "lb"),
  17805. name: "Front",
  17806. image: {
  17807. source: "./media/characters/xang/front.svg",
  17808. extra: 845 / 755
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Normal",
  17815. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17816. default: true
  17817. },
  17818. {
  17819. name: "Macro",
  17820. height: math.unit(0.935 * 146, "feet")
  17821. },
  17822. {
  17823. name: "Megamacro",
  17824. height: math.unit(0.935 * 3, "miles")
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17830. {
  17831. frontDressed: {
  17832. height: math.unit(5 + 7 / 12, "feet"),
  17833. weight: math.unit(140, "lb"),
  17834. name: "Front (Dressed)",
  17835. image: {
  17836. source: "./media/characters/doc-weardno/front-dressed.svg",
  17837. extra: 263 / 234
  17838. }
  17839. },
  17840. backDressed: {
  17841. height: math.unit(5 + 7 / 12, "feet"),
  17842. weight: math.unit(140, "lb"),
  17843. name: "Back (Dressed)",
  17844. image: {
  17845. source: "./media/characters/doc-weardno/back-dressed.svg",
  17846. extra: 266 / 238
  17847. }
  17848. },
  17849. front: {
  17850. height: math.unit(5 + 7 / 12, "feet"),
  17851. weight: math.unit(140, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/doc-weardno/front.svg",
  17855. extra: 254 / 233
  17856. }
  17857. },
  17858. },
  17859. [
  17860. {
  17861. name: "Micro",
  17862. height: math.unit(3, "inches")
  17863. },
  17864. {
  17865. name: "Normal",
  17866. height: math.unit(5 + 7 / 12, "feet"),
  17867. default: true
  17868. },
  17869. {
  17870. name: "Macro",
  17871. height: math.unit(25, "feet")
  17872. },
  17873. {
  17874. name: "Megamacro",
  17875. height: math.unit(2, "miles")
  17876. },
  17877. ]
  17878. ))
  17879. characterMakers.push(() => makeCharacter(
  17880. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17881. {
  17882. front: {
  17883. height: math.unit(6 + 2 / 12, "feet"),
  17884. weight: math.unit(153, "lb"),
  17885. name: "Front",
  17886. image: {
  17887. source: "./media/characters/seth-whilst/front.svg",
  17888. bottom: 0.07
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Micro",
  17895. height: math.unit(5, "inches")
  17896. },
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(6 + 2 / 12, "feet"),
  17900. default: true
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17906. {
  17907. front: {
  17908. height: math.unit(3, "inches"),
  17909. weight: math.unit(8, "grams"),
  17910. name: "Front",
  17911. image: {
  17912. source: "./media/characters/pocket-jabari/front.svg",
  17913. extra: 1024 / 974,
  17914. bottom: 0.039
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Minimicro",
  17921. height: math.unit(8, "mm")
  17922. },
  17923. {
  17924. name: "Micro",
  17925. height: math.unit(3, "inches"),
  17926. default: true
  17927. },
  17928. {
  17929. name: "Normal",
  17930. height: math.unit(3, "feet")
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17936. {
  17937. front: {
  17938. height: math.unit(15, "feet"),
  17939. weight: math.unit(3280, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/sapphy/front.svg",
  17943. extra: 671 / 577,
  17944. bottom: 0.085
  17945. }
  17946. },
  17947. back: {
  17948. height: math.unit(15, "feet"),
  17949. weight: math.unit(3280, "lb"),
  17950. name: "Back",
  17951. image: {
  17952. source: "./media/characters/sapphy/back.svg",
  17953. extra: 631 / 607,
  17954. bottom: 0.045
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(15, "feet")
  17962. },
  17963. {
  17964. name: "Casual Macro",
  17965. height: math.unit(120, "feet")
  17966. },
  17967. {
  17968. name: "Macro",
  17969. height: math.unit(2150, "feet"),
  17970. default: true
  17971. },
  17972. {
  17973. name: "Megamacro",
  17974. height: math.unit(8, "miles")
  17975. },
  17976. {
  17977. name: "Galaxy Mom",
  17978. height: math.unit(6, "megalightyears")
  17979. },
  17980. ]
  17981. ))
  17982. characterMakers.push(() => makeCharacter(
  17983. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17984. {
  17985. front: {
  17986. height: math.unit(6, "feet"),
  17987. weight: math.unit(170, "lb"),
  17988. name: "Front",
  17989. image: {
  17990. source: "./media/characters/kiro/front.svg",
  17991. extra: 1064 / 1012,
  17992. bottom: 0.052
  17993. }
  17994. },
  17995. },
  17996. [
  17997. {
  17998. name: "Micro",
  17999. height: math.unit(6, "inches")
  18000. },
  18001. {
  18002. name: "Normal",
  18003. height: math.unit(6, "feet"),
  18004. default: true
  18005. },
  18006. {
  18007. name: "Macro",
  18008. height: math.unit(72, "feet")
  18009. },
  18010. ]
  18011. ))
  18012. characterMakers.push(() => makeCharacter(
  18013. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18014. {
  18015. front: {
  18016. height: math.unit(5 + 9 / 12, "feet"),
  18017. weight: math.unit(175, "lb"),
  18018. name: "Front",
  18019. image: {
  18020. source: "./media/characters/irishfox/front.svg",
  18021. extra: 1912 / 1680,
  18022. bottom: 0.02
  18023. }
  18024. },
  18025. },
  18026. [
  18027. {
  18028. name: "Nano",
  18029. height: math.unit(1, "mm")
  18030. },
  18031. {
  18032. name: "Micro",
  18033. height: math.unit(2, "inches")
  18034. },
  18035. {
  18036. name: "Normal",
  18037. height: math.unit(5 + 9 / 12, "feet"),
  18038. default: true
  18039. },
  18040. {
  18041. name: "Macro",
  18042. height: math.unit(45, "feet")
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18048. {
  18049. front: {
  18050. height: math.unit(6 + 1 / 12, "feet"),
  18051. weight: math.unit(150, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/aronai-sieyes/front.svg",
  18055. extra: 1556 / 1480,
  18056. bottom: 0.015
  18057. }
  18058. },
  18059. side: {
  18060. height: math.unit(6 + 1 / 12, "feet"),
  18061. weight: math.unit(150, "lb"),
  18062. name: "Side",
  18063. image: {
  18064. source: "./media/characters/aronai-sieyes/side.svg",
  18065. extra: 1433 / 1390,
  18066. bottom: 0.0393
  18067. }
  18068. },
  18069. back: {
  18070. height: math.unit(6 + 1 / 12, "feet"),
  18071. weight: math.unit(150, "lb"),
  18072. name: "Back",
  18073. image: {
  18074. source: "./media/characters/aronai-sieyes/back.svg",
  18075. extra: 1544 / 1494,
  18076. bottom: 0.02
  18077. }
  18078. },
  18079. frontClothed: {
  18080. height: math.unit(6 + 1 / 12, "feet"),
  18081. weight: math.unit(150, "lb"),
  18082. name: "Front (Clothed)",
  18083. image: {
  18084. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18085. extra: 1582 / 1527
  18086. }
  18087. },
  18088. feral: {
  18089. height: math.unit(18, "feet"),
  18090. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18091. name: "Feral",
  18092. image: {
  18093. source: "./media/characters/aronai-sieyes/feral.svg",
  18094. extra: 1530 / 1240,
  18095. bottom: 0.035
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Micro",
  18102. height: math.unit(2, "inches")
  18103. },
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(6 + 1 / 12, "feet"),
  18107. default: true
  18108. }
  18109. ]
  18110. ))
  18111. characterMakers.push(() => makeCharacter(
  18112. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18113. {
  18114. front: {
  18115. height: math.unit(12, "feet"),
  18116. weight: math.unit(410, "kg"),
  18117. name: "Front",
  18118. image: {
  18119. source: "./media/characters/xuna/front.svg",
  18120. extra: 2184 / 1980
  18121. }
  18122. },
  18123. side: {
  18124. height: math.unit(12, "feet"),
  18125. weight: math.unit(410, "kg"),
  18126. name: "Side",
  18127. image: {
  18128. source: "./media/characters/xuna/side.svg",
  18129. extra: 2184 / 1980
  18130. }
  18131. },
  18132. back: {
  18133. height: math.unit(12, "feet"),
  18134. weight: math.unit(410, "kg"),
  18135. name: "Back",
  18136. image: {
  18137. source: "./media/characters/xuna/back.svg",
  18138. extra: 2184 / 1980
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Nano glow",
  18145. height: math.unit(10, "nm")
  18146. },
  18147. {
  18148. name: "Micro floof",
  18149. height: math.unit(0.3, "m")
  18150. },
  18151. {
  18152. name: "Huggable softy boi",
  18153. height: math.unit(3.6576, "m"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Admirable floof",
  18158. height: math.unit(80, "meters")
  18159. },
  18160. {
  18161. name: "Gentle macro",
  18162. height: math.unit(300, "meters")
  18163. },
  18164. {
  18165. name: "Very careful floof",
  18166. height: math.unit(3200, "meters")
  18167. },
  18168. {
  18169. name: "The mega floof",
  18170. height: math.unit(36000, "meters")
  18171. },
  18172. {
  18173. name: "Giga-fur-Wicker",
  18174. height: math.unit(4800000, "meters")
  18175. },
  18176. {
  18177. name: "Licky world",
  18178. height: math.unit(20000000, "meters")
  18179. },
  18180. {
  18181. name: "Floofy cyan sun",
  18182. height: math.unit(1500000000, "meters")
  18183. },
  18184. {
  18185. name: "Milky Wicker",
  18186. height: math.unit(1000000000000000000000, "meters")
  18187. },
  18188. {
  18189. name: "The observing Wicker",
  18190. height: math.unit(999999999999999999999999999, "meters")
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18196. {
  18197. front: {
  18198. height: math.unit(5 + 9 / 12, "feet"),
  18199. weight: math.unit(150, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/arokha-sieyes/front.svg",
  18203. extra: 1425 / 1284,
  18204. bottom: 0.05
  18205. }
  18206. },
  18207. },
  18208. [
  18209. {
  18210. name: "Normal",
  18211. height: math.unit(5 + 9 / 12, "feet")
  18212. },
  18213. {
  18214. name: "Macro",
  18215. height: math.unit(30, "meters"),
  18216. default: true
  18217. },
  18218. ]
  18219. ))
  18220. characterMakers.push(() => makeCharacter(
  18221. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18222. {
  18223. front: {
  18224. height: math.unit(6, "feet"),
  18225. weight: math.unit(180, "lb"),
  18226. name: "Front",
  18227. image: {
  18228. source: "./media/characters/arokh-sieyes/front.svg",
  18229. extra: 1830 / 1769,
  18230. bottom: 0.01
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(6, "feet")
  18238. },
  18239. {
  18240. name: "Macro",
  18241. height: math.unit(30, "meters"),
  18242. default: true
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18248. {
  18249. side: {
  18250. height: math.unit(13 + 1 / 12, "feet"),
  18251. weight: math.unit(8.5, "tonnes"),
  18252. name: "Side",
  18253. image: {
  18254. source: "./media/characters/goldeneye/side.svg",
  18255. extra: 1182 / 778,
  18256. bottom: 0.067
  18257. }
  18258. },
  18259. paw: {
  18260. height: math.unit(3.4, "feet"),
  18261. name: "Paw",
  18262. image: {
  18263. source: "./media/characters/goldeneye/paw.svg"
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(13 + 1 / 12, "feet"),
  18271. default: true
  18272. },
  18273. ]
  18274. ))
  18275. characterMakers.push(() => makeCharacter(
  18276. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18277. {
  18278. front: {
  18279. height: math.unit(6 + 1 / 12, "feet"),
  18280. weight: math.unit(210, "lb"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/leonardo-lycheborne/front.svg",
  18284. extra: 390 / 365,
  18285. bottom: 0.032
  18286. }
  18287. },
  18288. side: {
  18289. height: math.unit(6 + 1 / 12, "feet"),
  18290. weight: math.unit(210, "lb"),
  18291. name: "Side",
  18292. image: {
  18293. source: "./media/characters/leonardo-lycheborne/side.svg",
  18294. extra: 390 / 365,
  18295. bottom: 0.005
  18296. }
  18297. },
  18298. back: {
  18299. height: math.unit(6 + 1 / 12, "feet"),
  18300. weight: math.unit(210, "lb"),
  18301. name: "Back",
  18302. image: {
  18303. source: "./media/characters/leonardo-lycheborne/back.svg",
  18304. extra: 392 / 366,
  18305. bottom: 0.01
  18306. }
  18307. },
  18308. hand: {
  18309. height: math.unit(1.08, "feet"),
  18310. name: "Hand",
  18311. image: {
  18312. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18313. }
  18314. },
  18315. foot: {
  18316. height: math.unit(1.32, "feet"),
  18317. name: "Foot",
  18318. image: {
  18319. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18320. }
  18321. },
  18322. were: {
  18323. height: math.unit(20, "feet"),
  18324. weight: math.unit(7800, "lb"),
  18325. name: "Were",
  18326. image: {
  18327. source: "./media/characters/leonardo-lycheborne/were.svg",
  18328. extra: 308 / 294,
  18329. bottom: 0.048
  18330. }
  18331. },
  18332. feral: {
  18333. height: math.unit(7.5, "feet"),
  18334. weight: math.unit(600, "lb"),
  18335. name: "Feral",
  18336. image: {
  18337. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18338. extra: 210 / 186,
  18339. bottom: 0.108
  18340. }
  18341. },
  18342. taur: {
  18343. height: math.unit(11, "feet"),
  18344. weight: math.unit(3300, "lb"),
  18345. name: "Taur",
  18346. image: {
  18347. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18348. extra: 320 / 303,
  18349. bottom: 0.025
  18350. }
  18351. },
  18352. barghest: {
  18353. height: math.unit(11, "feet"),
  18354. weight: math.unit(1300, "lb"),
  18355. name: "Barghest",
  18356. image: {
  18357. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18358. extra: 323 / 302,
  18359. bottom: 0.027
  18360. }
  18361. },
  18362. dick: {
  18363. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18364. name: "Dick",
  18365. image: {
  18366. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18367. }
  18368. },
  18369. dickWere: {
  18370. height: math.unit((20) / 3.8, "feet"),
  18371. name: "Dick (Were)",
  18372. image: {
  18373. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18374. }
  18375. },
  18376. },
  18377. [
  18378. {
  18379. name: "Normal",
  18380. height: math.unit(6 + 1 / 12, "feet"),
  18381. default: true
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18387. {
  18388. front: {
  18389. height: math.unit(10, "feet"),
  18390. weight: math.unit(350, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/jet/front.svg",
  18394. extra: 2050 / 1980,
  18395. bottom: 0.013
  18396. }
  18397. },
  18398. back: {
  18399. height: math.unit(10, "feet"),
  18400. weight: math.unit(350, "lb"),
  18401. name: "Back",
  18402. image: {
  18403. source: "./media/characters/jet/back.svg",
  18404. extra: 2050 / 1980,
  18405. bottom: 0.013
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Micro",
  18412. height: math.unit(6, "inches")
  18413. },
  18414. {
  18415. name: "Normal",
  18416. height: math.unit(10, "feet"),
  18417. default: true
  18418. },
  18419. {
  18420. name: "Macro",
  18421. height: math.unit(100, "feet")
  18422. },
  18423. ]
  18424. ))
  18425. characterMakers.push(() => makeCharacter(
  18426. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18427. {
  18428. front: {
  18429. height: math.unit(15, "feet"),
  18430. weight: math.unit(2800, "lb"),
  18431. name: "Front",
  18432. image: {
  18433. source: "./media/characters/tanarath/front.svg",
  18434. extra: 2392 / 2220,
  18435. bottom: 0.03
  18436. }
  18437. },
  18438. back: {
  18439. height: math.unit(15, "feet"),
  18440. weight: math.unit(2800, "lb"),
  18441. name: "Back",
  18442. image: {
  18443. source: "./media/characters/tanarath/back.svg",
  18444. extra: 2392 / 2220,
  18445. bottom: 0.03
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(15, "feet"),
  18453. default: true
  18454. },
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18459. {
  18460. front: {
  18461. height: math.unit(7 + 1 / 12, "feet"),
  18462. weight: math.unit(175, "lb"),
  18463. name: "Front",
  18464. image: {
  18465. source: "./media/characters/patty-cattybatty/front.svg",
  18466. extra: 908 / 874,
  18467. bottom: 0.025
  18468. }
  18469. },
  18470. },
  18471. [
  18472. {
  18473. name: "Micro",
  18474. height: math.unit(1, "inch")
  18475. },
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(7 + 1 / 12, "feet")
  18479. },
  18480. {
  18481. name: "Mini Macro",
  18482. height: math.unit(155, "feet")
  18483. },
  18484. {
  18485. name: "Macro",
  18486. height: math.unit(1077, "feet")
  18487. },
  18488. {
  18489. name: "Mega Macro",
  18490. height: math.unit(47650, "feet"),
  18491. default: true
  18492. },
  18493. {
  18494. name: "Giga Macro",
  18495. height: math.unit(440, "miles")
  18496. },
  18497. {
  18498. name: "Tera Macro",
  18499. height: math.unit(8700, "miles")
  18500. },
  18501. {
  18502. name: "Planetary Macro",
  18503. height: math.unit(32700, "miles")
  18504. },
  18505. {
  18506. name: "Solar Macro",
  18507. height: math.unit(550000, "miles")
  18508. },
  18509. {
  18510. name: "Celestial Macro",
  18511. height: math.unit(2.5, "AU")
  18512. },
  18513. ]
  18514. ))
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18517. {
  18518. front: {
  18519. height: math.unit(4 + 5 / 12, "feet"),
  18520. weight: math.unit(90, "lb"),
  18521. name: "Front",
  18522. image: {
  18523. source: "./media/characters/cappu/front.svg",
  18524. extra: 1247 / 1152,
  18525. bottom: 0.012
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Normal",
  18532. height: math.unit(4 + 5 / 12, "feet"),
  18533. default: true
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18539. {
  18540. frontDressed: {
  18541. height: math.unit(70, "cm"),
  18542. weight: math.unit(6, "kg"),
  18543. name: "Front (Dressed)",
  18544. image: {
  18545. source: "./media/characters/sebi/front-dressed.svg",
  18546. extra: 713.5 / 686.5,
  18547. bottom: 0.003
  18548. }
  18549. },
  18550. front: {
  18551. height: math.unit(70, "cm"),
  18552. weight: math.unit(5, "kg"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/sebi/front.svg",
  18556. extra: 713.5 / 686.5,
  18557. bottom: 0.003
  18558. }
  18559. }
  18560. },
  18561. [
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(70, "cm"),
  18565. default: true
  18566. },
  18567. {
  18568. name: "Macro",
  18569. height: math.unit(8, "meters")
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(6, "feet"),
  18578. weight: math.unit(150, "lb"),
  18579. name: "Front",
  18580. image: {
  18581. source: "./media/characters/typhek/front.svg",
  18582. extra: 1948 / 1929,
  18583. bottom: 0.025
  18584. }
  18585. },
  18586. side: {
  18587. height: math.unit(6, "feet"),
  18588. weight: math.unit(150, "lb"),
  18589. name: "Side",
  18590. image: {
  18591. source: "./media/characters/typhek/side.svg",
  18592. extra: 2034 / 2010,
  18593. bottom: 0.003
  18594. }
  18595. },
  18596. back: {
  18597. height: math.unit(6, "feet"),
  18598. weight: math.unit(150, "lb"),
  18599. name: "Back",
  18600. image: {
  18601. source: "./media/characters/typhek/back.svg",
  18602. extra: 2005 / 1978,
  18603. bottom: 0.004
  18604. }
  18605. },
  18606. palm: {
  18607. height: math.unit(1.2, "feet"),
  18608. name: "Palm",
  18609. image: {
  18610. source: "./media/characters/typhek/palm.svg"
  18611. }
  18612. },
  18613. fist: {
  18614. height: math.unit(1.1, "feet"),
  18615. name: "Fist",
  18616. image: {
  18617. source: "./media/characters/typhek/fist.svg"
  18618. }
  18619. },
  18620. foot: {
  18621. height: math.unit(1.57, "feet"),
  18622. name: "Foot",
  18623. image: {
  18624. source: "./media/characters/typhek/foot.svg"
  18625. }
  18626. },
  18627. sole: {
  18628. height: math.unit(2.05, "feet"),
  18629. name: "Sole",
  18630. image: {
  18631. source: "./media/characters/typhek/sole.svg"
  18632. }
  18633. },
  18634. },
  18635. [
  18636. {
  18637. name: "Macro",
  18638. height: math.unit(40, "stories"),
  18639. default: true
  18640. },
  18641. {
  18642. name: "Megamacro",
  18643. height: math.unit(1, "mile")
  18644. },
  18645. {
  18646. name: "Gigamacro",
  18647. height: math.unit(4000, "solarradii")
  18648. },
  18649. {
  18650. name: "Universal",
  18651. height: math.unit(1.1, "universes")
  18652. }
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18657. {
  18658. side: {
  18659. height: math.unit(5 + 7 / 12, "feet"),
  18660. weight: math.unit(150, "lb"),
  18661. name: "Side",
  18662. image: {
  18663. source: "./media/characters/kassy/side.svg",
  18664. extra: 1280 / 1225,
  18665. bottom: 0.002
  18666. }
  18667. },
  18668. front: {
  18669. height: math.unit(5 + 7 / 12, "feet"),
  18670. weight: math.unit(150, "lb"),
  18671. name: "Front",
  18672. image: {
  18673. source: "./media/characters/kassy/front.svg",
  18674. extra: 1280 / 1225,
  18675. bottom: 0.025
  18676. }
  18677. },
  18678. back: {
  18679. height: math.unit(5 + 7 / 12, "feet"),
  18680. weight: math.unit(150, "lb"),
  18681. name: "Back",
  18682. image: {
  18683. source: "./media/characters/kassy/back.svg",
  18684. extra: 1280 / 1225,
  18685. bottom: 0.002
  18686. }
  18687. },
  18688. foot: {
  18689. height: math.unit(1.266, "feet"),
  18690. name: "Foot",
  18691. image: {
  18692. source: "./media/characters/kassy/foot.svg"
  18693. }
  18694. },
  18695. },
  18696. [
  18697. {
  18698. name: "Normal",
  18699. height: math.unit(5 + 7 / 12, "feet")
  18700. },
  18701. {
  18702. name: "Macro",
  18703. height: math.unit(137, "feet"),
  18704. default: true
  18705. },
  18706. {
  18707. name: "Megamacro",
  18708. height: math.unit(1, "mile")
  18709. },
  18710. ]
  18711. ))
  18712. characterMakers.push(() => makeCharacter(
  18713. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18714. {
  18715. front: {
  18716. height: math.unit(6 + 1 / 12, "feet"),
  18717. weight: math.unit(200, "lb"),
  18718. name: "Front",
  18719. image: {
  18720. source: "./media/characters/neil/front.svg",
  18721. extra: 1326 / 1250,
  18722. bottom: 0.023
  18723. }
  18724. },
  18725. },
  18726. [
  18727. {
  18728. name: "Normal",
  18729. height: math.unit(6 + 1 / 12, "feet"),
  18730. default: true
  18731. },
  18732. {
  18733. name: "Macro",
  18734. height: math.unit(200, "feet")
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18740. {
  18741. front: {
  18742. height: math.unit(5 + 9 / 12, "feet"),
  18743. weight: math.unit(190, "lb"),
  18744. name: "Front",
  18745. image: {
  18746. source: "./media/characters/atticus/front.svg",
  18747. extra: 2934 / 2785,
  18748. bottom: 0.025
  18749. }
  18750. },
  18751. },
  18752. [
  18753. {
  18754. name: "Normal",
  18755. height: math.unit(5 + 9 / 12, "feet"),
  18756. default: true
  18757. },
  18758. {
  18759. name: "Macro",
  18760. height: math.unit(180, "feet")
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18766. {
  18767. side: {
  18768. height: math.unit(9, "feet"),
  18769. weight: math.unit(650, "lb"),
  18770. name: "Side",
  18771. image: {
  18772. source: "./media/characters/milo/side.svg",
  18773. extra: 2644 / 2310,
  18774. bottom: 0.032
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(9, "feet"),
  18782. default: true
  18783. },
  18784. {
  18785. name: "Macro",
  18786. height: math.unit(300, "feet")
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18792. {
  18793. side: {
  18794. height: math.unit(8, "meters"),
  18795. weight: math.unit(90000, "kg"),
  18796. name: "Side",
  18797. image: {
  18798. source: "./media/characters/ijzer/side.svg",
  18799. extra: 2756 / 1600,
  18800. bottom: 0.01
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Small",
  18807. height: math.unit(3, "meters")
  18808. },
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(8, "meters"),
  18812. default: true
  18813. },
  18814. {
  18815. name: "Normal+",
  18816. height: math.unit(10, "meters")
  18817. },
  18818. {
  18819. name: "Bigger",
  18820. height: math.unit(24, "meters")
  18821. },
  18822. {
  18823. name: "Huge",
  18824. height: math.unit(80, "meters")
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(6 + 2 / 12, "feet"),
  18833. weight: math.unit(153, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/luca-cervicum/front.svg",
  18837. extra: 370 / 327,
  18838. bottom: 0.015
  18839. }
  18840. },
  18841. back: {
  18842. height: math.unit(6 + 2 / 12, "feet"),
  18843. weight: math.unit(153, "lb"),
  18844. name: "Back",
  18845. image: {
  18846. source: "./media/characters/luca-cervicum/back.svg",
  18847. extra: 367 / 333,
  18848. bottom: 0.005
  18849. }
  18850. },
  18851. frontGear: {
  18852. height: math.unit(6 + 2 / 12, "feet"),
  18853. weight: math.unit(173, "lb"),
  18854. name: "Front (Gear)",
  18855. image: {
  18856. source: "./media/characters/luca-cervicum/front-gear.svg",
  18857. extra: 377 / 333,
  18858. bottom: 0.006
  18859. }
  18860. },
  18861. },
  18862. [
  18863. {
  18864. name: "Normal",
  18865. height: math.unit(6 + 2 / 12, "feet"),
  18866. default: true
  18867. },
  18868. ]
  18869. ))
  18870. characterMakers.push(() => makeCharacter(
  18871. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18872. {
  18873. front: {
  18874. height: math.unit(6 + 1 / 12, "feet"),
  18875. weight: math.unit(304, "lb"),
  18876. name: "Front",
  18877. image: {
  18878. source: "./media/characters/oliver/front.svg",
  18879. extra: 157 / 143,
  18880. bottom: 0.08
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(6 + 1 / 12, "feet"),
  18888. default: true
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(5 + 7 / 12, "feet"),
  18897. weight: math.unit(140, "lb"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/shane/front.svg",
  18901. extra: 304 / 289,
  18902. bottom: 0.005
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Normal",
  18909. height: math.unit(5 + 7 / 12, "feet"),
  18910. default: true
  18911. },
  18912. ]
  18913. ))
  18914. characterMakers.push(() => makeCharacter(
  18915. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18916. {
  18917. front: {
  18918. height: math.unit(5 + 9 / 12, "feet"),
  18919. weight: math.unit(178, "lb"),
  18920. name: "Front",
  18921. image: {
  18922. source: "./media/characters/shin/front.svg",
  18923. extra: 159 / 151,
  18924. bottom: 0.015
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(5 + 9 / 12, "feet"),
  18932. default: true
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(5 + 10 / 12, "feet"),
  18941. weight: math.unit(168, "lb"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/xerxes/front.svg",
  18945. extra: 282 / 260,
  18946. bottom: 0.045
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(5 + 10 / 12, "feet"),
  18954. default: true
  18955. },
  18956. ]
  18957. ))
  18958. characterMakers.push(() => makeCharacter(
  18959. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18960. {
  18961. front: {
  18962. height: math.unit(6 + 7 / 12, "feet"),
  18963. weight: math.unit(208, "lb"),
  18964. name: "Front",
  18965. image: {
  18966. source: "./media/characters/chaska/front.svg",
  18967. extra: 332 / 319,
  18968. bottom: 0.015
  18969. }
  18970. },
  18971. },
  18972. [
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(6 + 7 / 12, "feet"),
  18976. default: true
  18977. },
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18982. {
  18983. front: {
  18984. height: math.unit(5 + 8 / 12, "feet"),
  18985. weight: math.unit(208, "lb"),
  18986. name: "Front",
  18987. image: {
  18988. source: "./media/characters/enuk/front.svg",
  18989. extra: 437 / 406,
  18990. bottom: 0.02
  18991. }
  18992. },
  18993. },
  18994. [
  18995. {
  18996. name: "Normal",
  18997. height: math.unit(5 + 8 / 12, "feet"),
  18998. default: true
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19004. {
  19005. front: {
  19006. height: math.unit(5 + 10 / 12, "feet"),
  19007. weight: math.unit(252, "lb"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/bruun/front.svg",
  19011. extra: 197 / 187,
  19012. bottom: 0.012
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(5 + 10 / 12, "feet"),
  19020. default: true
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(6 + 10 / 12, "feet"),
  19029. weight: math.unit(255, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/alexeev/front.svg",
  19033. extra: 213 / 200,
  19034. bottom: 0.05
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(6 + 10 / 12, "feet"),
  19042. default: true
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19048. {
  19049. front: {
  19050. height: math.unit(2 + 8 / 12, "feet"),
  19051. weight: math.unit(22, "lb"),
  19052. name: "Front",
  19053. image: {
  19054. source: "./media/characters/evelyn/front.svg",
  19055. extra: 208 / 180
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(2 + 8 / 12, "feet"),
  19063. default: true
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19069. {
  19070. front: {
  19071. height: math.unit(5 + 9 / 12, "feet"),
  19072. weight: math.unit(139, "lb"),
  19073. name: "Front",
  19074. image: {
  19075. source: "./media/characters/inca/front.svg",
  19076. extra: 294 / 291,
  19077. bottom: 0.03
  19078. }
  19079. },
  19080. },
  19081. [
  19082. {
  19083. name: "Normal",
  19084. height: math.unit(5 + 9 / 12, "feet"),
  19085. default: true
  19086. },
  19087. ]
  19088. ))
  19089. characterMakers.push(() => makeCharacter(
  19090. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19091. {
  19092. front: {
  19093. height: math.unit(5 + 1 / 12, "feet"),
  19094. weight: math.unit(84, "lb"),
  19095. name: "Front",
  19096. image: {
  19097. source: "./media/characters/magdalene/front.svg",
  19098. extra: 293 / 273
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(5 + 1 / 12, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(6 + 3 / 12, "feet"),
  19115. weight: math.unit(185, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/mera/front.svg",
  19119. extra: 291 / 277,
  19120. bottom: 0.03
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(6 + 3 / 12, "feet"),
  19128. default: true
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19134. {
  19135. front: {
  19136. height: math.unit(6 + 7 / 12, "feet"),
  19137. weight: math.unit(160, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/ceres/front.svg",
  19141. extra: 1023 / 950,
  19142. bottom: 0.027
  19143. }
  19144. },
  19145. back: {
  19146. height: math.unit(6 + 7 / 12, "feet"),
  19147. weight: math.unit(160, "lb"),
  19148. name: "Back",
  19149. image: {
  19150. source: "./media/characters/ceres/back.svg",
  19151. extra: 1023 / 950
  19152. }
  19153. },
  19154. },
  19155. [
  19156. {
  19157. name: "Normal",
  19158. height: math.unit(6 + 7 / 12, "feet"),
  19159. default: true
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(5 + 10 / 12, "feet"),
  19168. weight: math.unit(150, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/kris/front.svg",
  19172. extra: 885 / 803,
  19173. bottom: 0.03
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(5 + 10 / 12, "feet"),
  19181. default: true
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(7, "feet"),
  19190. weight: math.unit(120, "kg"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/taluthus/front.svg",
  19194. extra: 903 / 833,
  19195. bottom: 0.015
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Normal",
  19202. height: math.unit(7, "feet"),
  19203. default: true
  19204. },
  19205. {
  19206. name: "Macro",
  19207. height: math.unit(300, "feet")
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(5 + 9 / 12, "feet"),
  19216. weight: math.unit(145, "lb"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/dawn/front.svg",
  19220. extra: 2094 / 2016,
  19221. bottom: 0.025
  19222. }
  19223. },
  19224. back: {
  19225. height: math.unit(5 + 9 / 12, "feet"),
  19226. weight: math.unit(160, "lb"),
  19227. name: "Back",
  19228. image: {
  19229. source: "./media/characters/dawn/back.svg",
  19230. extra: 2112 / 2080,
  19231. bottom: 0.005
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(6 + 7 / 12, "feet"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19245. {
  19246. anthro: {
  19247. height: math.unit(8 + 3 / 12, "feet"),
  19248. weight: math.unit(450, "lb"),
  19249. name: "Anthro",
  19250. image: {
  19251. source: "./media/characters/arador/anthro.svg",
  19252. extra: 1835 / 1718,
  19253. bottom: 0.025
  19254. }
  19255. },
  19256. feral: {
  19257. height: math.unit(4, "feet"),
  19258. weight: math.unit(200, "lb"),
  19259. name: "Feral",
  19260. image: {
  19261. source: "./media/characters/arador/feral.svg",
  19262. extra: 1683 / 1514,
  19263. bottom: 0.07
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(8 + 3 / 12, "feet")
  19271. },
  19272. {
  19273. name: "Macro",
  19274. height: math.unit(82.5, "feet"),
  19275. default: true
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(5 + 10 / 12, "feet"),
  19284. weight: math.unit(125, "lb"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/dharsi/front.svg",
  19288. extra: 716 / 630,
  19289. bottom: 0.035
  19290. }
  19291. },
  19292. },
  19293. [
  19294. {
  19295. name: "Nano",
  19296. height: math.unit(100, "nm")
  19297. },
  19298. {
  19299. name: "Micro",
  19300. height: math.unit(2, "inches")
  19301. },
  19302. {
  19303. name: "Normal",
  19304. height: math.unit(5 + 10 / 12, "feet"),
  19305. default: true
  19306. },
  19307. {
  19308. name: "Macro",
  19309. height: math.unit(1000, "feet")
  19310. },
  19311. {
  19312. name: "Megamacro",
  19313. height: math.unit(10, "miles")
  19314. },
  19315. {
  19316. name: "Gigamacro",
  19317. height: math.unit(3000, "miles")
  19318. },
  19319. {
  19320. name: "Teramacro",
  19321. height: math.unit(500000, "miles")
  19322. },
  19323. {
  19324. name: "Teramacro+",
  19325. height: math.unit(30, "galaxies")
  19326. },
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19331. {
  19332. front: {
  19333. height: math.unit(6, "feet"),
  19334. weight: math.unit(150, "lb"),
  19335. name: "Front",
  19336. image: {
  19337. source: "./media/characters/deathy/front.svg",
  19338. extra: 1552 / 1463,
  19339. bottom: 0.025
  19340. }
  19341. },
  19342. side: {
  19343. height: math.unit(6, "feet"),
  19344. weight: math.unit(150, "lb"),
  19345. name: "Side",
  19346. image: {
  19347. source: "./media/characters/deathy/side.svg",
  19348. extra: 1604 / 1455,
  19349. bottom: 0.025
  19350. }
  19351. },
  19352. back: {
  19353. height: math.unit(6, "feet"),
  19354. weight: math.unit(150, "lb"),
  19355. name: "Back",
  19356. image: {
  19357. source: "./media/characters/deathy/back.svg",
  19358. extra: 1580 / 1463,
  19359. bottom: 0.005
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Micro",
  19366. height: math.unit(5, "millimeters")
  19367. },
  19368. {
  19369. name: "Normal",
  19370. height: math.unit(6 + 5 / 12, "feet"),
  19371. default: true
  19372. },
  19373. ]
  19374. ))
  19375. characterMakers.push(() => makeCharacter(
  19376. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19377. {
  19378. front: {
  19379. height: math.unit(16, "feet"),
  19380. weight: math.unit(4000, "lb"),
  19381. name: "Front",
  19382. image: {
  19383. source: "./media/characters/juniper/front.svg",
  19384. bottom: 0.04
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(16, "feet"),
  19392. default: true
  19393. },
  19394. ]
  19395. ))
  19396. characterMakers.push(() => makeCharacter(
  19397. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19398. {
  19399. front: {
  19400. height: math.unit(6, "feet"),
  19401. weight: math.unit(150, "lb"),
  19402. name: "Front",
  19403. image: {
  19404. source: "./media/characters/hipster/front.svg",
  19405. extra: 1312 / 1209,
  19406. bottom: 0.025
  19407. }
  19408. },
  19409. back: {
  19410. height: math.unit(6, "feet"),
  19411. weight: math.unit(150, "lb"),
  19412. name: "Back",
  19413. image: {
  19414. source: "./media/characters/hipster/back.svg",
  19415. extra: 1281 / 1196,
  19416. bottom: 0.01
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Micro",
  19423. height: math.unit(1, "mm")
  19424. },
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(4, "inches"),
  19428. default: true
  19429. },
  19430. {
  19431. name: "Macro",
  19432. height: math.unit(500, "feet")
  19433. },
  19434. {
  19435. name: "Megamacro",
  19436. height: math.unit(1000, "miles")
  19437. },
  19438. ]
  19439. ))
  19440. characterMakers.push(() => makeCharacter(
  19441. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19442. {
  19443. front: {
  19444. height: math.unit(6, "feet"),
  19445. weight: math.unit(150, "lb"),
  19446. name: "Front",
  19447. image: {
  19448. source: "./media/characters/tendirmuldr/front.svg",
  19449. extra: 1878 / 1772,
  19450. bottom: 0.015
  19451. }
  19452. },
  19453. },
  19454. [
  19455. {
  19456. name: "Megamacro",
  19457. height: math.unit(1500, "miles"),
  19458. default: true
  19459. },
  19460. ]
  19461. ))
  19462. characterMakers.push(() => makeCharacter(
  19463. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19464. {
  19465. front: {
  19466. height: math.unit(14, "feet"),
  19467. weight: math.unit(12000, "lb"),
  19468. name: "Front",
  19469. image: {
  19470. source: "./media/characters/mort/front.svg",
  19471. extra: 365 / 318,
  19472. bottom: 0.01
  19473. }
  19474. },
  19475. side: {
  19476. height: math.unit(14, "feet"),
  19477. weight: math.unit(12000, "lb"),
  19478. name: "Side",
  19479. image: {
  19480. source: "./media/characters/mort/side.svg",
  19481. extra: 365 / 318,
  19482. bottom: 0.052
  19483. },
  19484. default: true
  19485. },
  19486. back: {
  19487. height: math.unit(14, "feet"),
  19488. weight: math.unit(12000, "lb"),
  19489. name: "Back",
  19490. image: {
  19491. source: "./media/characters/mort/back.svg",
  19492. extra: 371 / 332,
  19493. bottom: 0.18
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(14, "feet"),
  19501. default: true
  19502. },
  19503. ]
  19504. ))
  19505. characterMakers.push(() => makeCharacter(
  19506. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19507. {
  19508. front: {
  19509. height: math.unit(8, "feet"),
  19510. weight: math.unit(1, "ton"),
  19511. name: "Front",
  19512. image: {
  19513. source: "./media/characters/lycoa/front.svg",
  19514. extra: 1875 / 1789,
  19515. bottom: 0.022
  19516. }
  19517. },
  19518. back: {
  19519. height: math.unit(8, "feet"),
  19520. weight: math.unit(1, "ton"),
  19521. name: "Back",
  19522. image: {
  19523. source: "./media/characters/lycoa/back.svg",
  19524. extra: 1835 / 1781,
  19525. bottom: 0.03
  19526. }
  19527. },
  19528. head: {
  19529. height: math.unit(2.1, "feet"),
  19530. name: "Head",
  19531. image: {
  19532. source: "./media/characters/lycoa/head.svg"
  19533. }
  19534. },
  19535. tailmaw: {
  19536. height: math.unit(1.9, "feet"),
  19537. name: "Tailmaw",
  19538. image: {
  19539. source: "./media/characters/lycoa/tailmaw.svg"
  19540. }
  19541. },
  19542. tentacles: {
  19543. height: math.unit(2.1, "feet"),
  19544. name: "Tentacles",
  19545. image: {
  19546. source: "./media/characters/lycoa/tentacles.svg"
  19547. }
  19548. },
  19549. dick: {
  19550. height: math.unit(1.73, "feet"),
  19551. name: "Dick",
  19552. image: {
  19553. source: "./media/characters/lycoa/dick.svg"
  19554. }
  19555. },
  19556. },
  19557. [
  19558. {
  19559. name: "Normal",
  19560. height: math.unit(8, "feet"),
  19561. default: true
  19562. },
  19563. {
  19564. name: "Macro",
  19565. height: math.unit(30, "feet")
  19566. },
  19567. ]
  19568. ))
  19569. characterMakers.push(() => makeCharacter(
  19570. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19571. {
  19572. front: {
  19573. height: math.unit(4 + 2 / 12, "feet"),
  19574. weight: math.unit(70, "lb"),
  19575. name: "Front",
  19576. image: {
  19577. source: "./media/characters/naldara/front.svg",
  19578. extra: 841 / 720,
  19579. bottom: 0.04
  19580. }
  19581. },
  19582. naga: {
  19583. height: math.unit(23, "feet"),
  19584. weight: math.unit(15000, "kg"),
  19585. name: "Naga",
  19586. image: {
  19587. source: "./media/characters/naldara/naga.svg",
  19588. extra: 3290 / 2959,
  19589. bottom: 124 / 3432
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(4 + 2 / 12, "feet"),
  19597. default: true
  19598. },
  19599. ]
  19600. ))
  19601. characterMakers.push(() => makeCharacter(
  19602. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19603. {
  19604. front: {
  19605. height: math.unit(13 + 7 / 12, "feet"),
  19606. weight: math.unit(1500, "lb"),
  19607. name: "Front",
  19608. image: {
  19609. source: "./media/characters/briar/front.svg",
  19610. extra: 626 / 596,
  19611. bottom: 0.08
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Normal",
  19618. height: math.unit(13 + 7 / 12, "feet"),
  19619. default: true
  19620. },
  19621. ]
  19622. ))
  19623. characterMakers.push(() => makeCharacter(
  19624. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19625. {
  19626. side: {
  19627. height: math.unit(10, "feet"),
  19628. weight: math.unit(500, "lb"),
  19629. name: "Side",
  19630. image: {
  19631. source: "./media/characters/vanguard/side.svg",
  19632. extra: 502 / 425,
  19633. bottom: 0.087
  19634. }
  19635. },
  19636. },
  19637. [
  19638. {
  19639. name: "Normal",
  19640. height: math.unit(10, "feet"),
  19641. default: true
  19642. },
  19643. ]
  19644. ))
  19645. characterMakers.push(() => makeCharacter(
  19646. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19647. {
  19648. front: {
  19649. height: math.unit(7.5, "feet"),
  19650. weight: math.unit(2, "lb"),
  19651. name: "Front",
  19652. image: {
  19653. source: "./media/characters/artemis/front.svg",
  19654. extra: 1192 / 1075,
  19655. bottom: 0.07
  19656. }
  19657. },
  19658. frontNsfw: {
  19659. height: math.unit(7.5, "feet"),
  19660. weight: math.unit(2, "lb"),
  19661. name: "Front (NSFW)",
  19662. image: {
  19663. source: "./media/characters/artemis/front-nsfw.svg",
  19664. extra: 1192 / 1075,
  19665. bottom: 0.07
  19666. }
  19667. },
  19668. frontNsfwer: {
  19669. height: math.unit(7.5, "feet"),
  19670. weight: math.unit(2, "lb"),
  19671. name: "Front (NSFW-er)",
  19672. image: {
  19673. source: "./media/characters/artemis/front-nsfwer.svg",
  19674. extra: 1192 / 1075,
  19675. bottom: 0.07
  19676. }
  19677. },
  19678. side: {
  19679. height: math.unit(7.5, "feet"),
  19680. weight: math.unit(2, "lb"),
  19681. name: "Side",
  19682. image: {
  19683. source: "./media/characters/artemis/side.svg",
  19684. extra: 1192 / 1075,
  19685. bottom: 0.07
  19686. }
  19687. },
  19688. sideNsfw: {
  19689. height: math.unit(7.5, "feet"),
  19690. weight: math.unit(2, "lb"),
  19691. name: "Side (NSFW)",
  19692. image: {
  19693. source: "./media/characters/artemis/side-nsfw.svg",
  19694. extra: 1192 / 1075,
  19695. bottom: 0.07
  19696. }
  19697. },
  19698. sideNsfwer: {
  19699. height: math.unit(7.5, "feet"),
  19700. weight: math.unit(2, "lb"),
  19701. name: "Side (NSFW-er)",
  19702. image: {
  19703. source: "./media/characters/artemis/side-nsfwer.svg",
  19704. extra: 1192 / 1075,
  19705. bottom: 0.07
  19706. }
  19707. },
  19708. maw: {
  19709. height: math.unit(1.1, "feet"),
  19710. name: "Maw",
  19711. image: {
  19712. source: "./media/characters/artemis/maw.svg"
  19713. }
  19714. },
  19715. stomach: {
  19716. height: math.unit(0.95, "feet"),
  19717. name: "Stomach",
  19718. image: {
  19719. source: "./media/characters/artemis/stomach.svg"
  19720. }
  19721. },
  19722. dickCanine: {
  19723. height: math.unit(1, "feet"),
  19724. name: "Dick (Canine)",
  19725. image: {
  19726. source: "./media/characters/artemis/dick-canine.svg"
  19727. }
  19728. },
  19729. dickEquine: {
  19730. height: math.unit(0.85, "feet"),
  19731. name: "Dick (Equine)",
  19732. image: {
  19733. source: "./media/characters/artemis/dick-equine.svg"
  19734. }
  19735. },
  19736. dickExotic: {
  19737. height: math.unit(0.85, "feet"),
  19738. name: "Dick (Exotic)",
  19739. image: {
  19740. source: "./media/characters/artemis/dick-exotic.svg"
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(7.5, "feet"),
  19748. default: true
  19749. },
  19750. {
  19751. name: "Enlarged",
  19752. height: math.unit(12, "feet")
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19758. {
  19759. front: {
  19760. height: math.unit(5 + 3 / 12, "feet"),
  19761. weight: math.unit(160, "lb"),
  19762. name: "Front",
  19763. image: {
  19764. source: "./media/characters/kira/front.svg",
  19765. extra: 906 / 786,
  19766. bottom: 0.01
  19767. }
  19768. },
  19769. back: {
  19770. height: math.unit(5 + 3 / 12, "feet"),
  19771. weight: math.unit(160, "lb"),
  19772. name: "Back",
  19773. image: {
  19774. source: "./media/characters/kira/back.svg",
  19775. extra: 882 / 757,
  19776. bottom: 0.005
  19777. }
  19778. },
  19779. frontDressed: {
  19780. height: math.unit(5 + 3 / 12, "feet"),
  19781. weight: math.unit(160, "lb"),
  19782. name: "Front (Dressed)",
  19783. image: {
  19784. source: "./media/characters/kira/front-dressed.svg",
  19785. extra: 906 / 786,
  19786. bottom: 0.01
  19787. }
  19788. },
  19789. beans: {
  19790. height: math.unit(0.92, "feet"),
  19791. name: "Beans",
  19792. image: {
  19793. source: "./media/characters/kira/beans.svg"
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(5 + 3 / 12, "feet"),
  19801. default: true
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19807. {
  19808. front: {
  19809. height: math.unit(5 + 4 / 12, "feet"),
  19810. weight: math.unit(145, "lb"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/scramble/front.svg",
  19814. extra: 763 / 727,
  19815. bottom: 0.05
  19816. }
  19817. },
  19818. back: {
  19819. height: math.unit(5 + 4 / 12, "feet"),
  19820. weight: math.unit(145, "lb"),
  19821. name: "Back",
  19822. image: {
  19823. source: "./media/characters/scramble/back.svg",
  19824. extra: 826 / 737,
  19825. bottom: 0.002
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(5 + 4 / 12, "feet"),
  19833. default: true
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19839. {
  19840. side: {
  19841. height: math.unit(6 + 2 / 12, "feet"),
  19842. weight: math.unit(190, "lb"),
  19843. name: "Side",
  19844. image: {
  19845. source: "./media/characters/biscuit/side.svg",
  19846. extra: 858 / 791,
  19847. bottom: 0.044
  19848. }
  19849. },
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(6 + 2 / 12, "feet"),
  19855. default: true
  19856. },
  19857. ]
  19858. ))
  19859. characterMakers.push(() => makeCharacter(
  19860. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19861. {
  19862. front: {
  19863. height: math.unit(5 + 2 / 12, "feet"),
  19864. weight: math.unit(120, "lb"),
  19865. name: "Front",
  19866. image: {
  19867. source: "./media/characters/poffin/front.svg",
  19868. extra: 786 / 680,
  19869. bottom: 0.005
  19870. }
  19871. },
  19872. },
  19873. [
  19874. {
  19875. name: "Normal",
  19876. height: math.unit(5 + 2 / 12, "feet"),
  19877. default: true
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19883. {
  19884. front: {
  19885. height: math.unit(6 + 3 / 12, "feet"),
  19886. weight: math.unit(519, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/dhari/front.svg",
  19890. extra: 1048 / 946,
  19891. bottom: 0.015
  19892. }
  19893. },
  19894. back: {
  19895. height: math.unit(6 + 3 / 12, "feet"),
  19896. weight: math.unit(519, "lb"),
  19897. name: "Back",
  19898. image: {
  19899. source: "./media/characters/dhari/back.svg",
  19900. extra: 1048 / 931,
  19901. bottom: 0.005
  19902. }
  19903. },
  19904. frontDressed: {
  19905. height: math.unit(6 + 3 / 12, "feet"),
  19906. weight: math.unit(519, "lb"),
  19907. name: "Front (Dressed)",
  19908. image: {
  19909. source: "./media/characters/dhari/front-dressed.svg",
  19910. extra: 1713 / 1546,
  19911. bottom: 0.02
  19912. }
  19913. },
  19914. backDressed: {
  19915. height: math.unit(6 + 3 / 12, "feet"),
  19916. weight: math.unit(519, "lb"),
  19917. name: "Back (Dressed)",
  19918. image: {
  19919. source: "./media/characters/dhari/back-dressed.svg",
  19920. extra: 1699 / 1537,
  19921. bottom: 0.01
  19922. }
  19923. },
  19924. maw: {
  19925. height: math.unit(0.95, "feet"),
  19926. name: "Maw",
  19927. image: {
  19928. source: "./media/characters/dhari/maw.svg"
  19929. }
  19930. },
  19931. wereFront: {
  19932. height: math.unit(12 + 8 / 12, "feet"),
  19933. weight: math.unit(4000, "lb"),
  19934. name: "Front (Were)",
  19935. image: {
  19936. source: "./media/characters/dhari/were-front.svg",
  19937. extra: 1065 / 969,
  19938. bottom: 0.015
  19939. }
  19940. },
  19941. wereBack: {
  19942. height: math.unit(12 + 8 / 12, "feet"),
  19943. weight: math.unit(4000, "lb"),
  19944. name: "Back (Were)",
  19945. image: {
  19946. source: "./media/characters/dhari/were-back.svg",
  19947. extra: 1065 / 969,
  19948. bottom: 0.012
  19949. }
  19950. },
  19951. wereMaw: {
  19952. height: math.unit(0.625, "meters"),
  19953. name: "Maw (Were)",
  19954. image: {
  19955. source: "./media/characters/dhari/were-maw.svg"
  19956. }
  19957. },
  19958. },
  19959. [
  19960. {
  19961. name: "Normal",
  19962. height: math.unit(6 + 3 / 12, "feet"),
  19963. default: true
  19964. },
  19965. ]
  19966. ))
  19967. characterMakers.push(() => makeCharacter(
  19968. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19969. {
  19970. anthro: {
  19971. height: math.unit(5 + 7 / 12, "feet"),
  19972. weight: math.unit(175, "lb"),
  19973. name: "Anthro",
  19974. image: {
  19975. source: "./media/characters/rena-dyne/anthro.svg",
  19976. extra: 1849 / 1785,
  19977. bottom: 0.005
  19978. }
  19979. },
  19980. taur: {
  19981. height: math.unit(15 + 6 / 12, "feet"),
  19982. weight: math.unit(8000, "lb"),
  19983. name: "Taur",
  19984. image: {
  19985. source: "./media/characters/rena-dyne/taur.svg",
  19986. extra: 2315 / 2234,
  19987. bottom: 0.033
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Normal",
  19994. height: math.unit(5 + 7 / 12, "feet"),
  19995. default: true
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(8, "feet"),
  20004. weight: math.unit(600, "lb"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/weremeep/front.svg",
  20008. extra: 967 / 862,
  20009. bottom: 0.01
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Normal",
  20016. height: math.unit(8, "feet"),
  20017. default: true
  20018. },
  20019. {
  20020. name: "Lorg",
  20021. height: math.unit(12, "feet")
  20022. },
  20023. {
  20024. name: "Oh Lawd She Comin'",
  20025. height: math.unit(20, "feet")
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20031. {
  20032. front: {
  20033. height: math.unit(4, "feet"),
  20034. weight: math.unit(90, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/reza/front.svg",
  20038. extra: 1183 / 1111,
  20039. bottom: 0.017
  20040. }
  20041. },
  20042. back: {
  20043. height: math.unit(4, "feet"),
  20044. weight: math.unit(90, "lb"),
  20045. name: "Back",
  20046. image: {
  20047. source: "./media/characters/reza/back.svg",
  20048. extra: 1183 / 1111,
  20049. bottom: 0.01
  20050. }
  20051. },
  20052. drake: {
  20053. height: math.unit(30, "feet"),
  20054. weight: math.unit(246960, "lb"),
  20055. name: "Drake",
  20056. image: {
  20057. source: "./media/characters/reza/drake.svg",
  20058. extra: 2350 / 2024,
  20059. bottom: 60.7 / 2403
  20060. }
  20061. },
  20062. },
  20063. [
  20064. {
  20065. name: "Normal",
  20066. height: math.unit(4, "feet"),
  20067. default: true
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20073. {
  20074. side: {
  20075. height: math.unit(15, "feet"),
  20076. weight: math.unit(14, "tons"),
  20077. name: "Side",
  20078. image: {
  20079. source: "./media/characters/athea/side.svg",
  20080. extra: 960 / 540,
  20081. bottom: 0.003
  20082. }
  20083. },
  20084. sitting: {
  20085. height: math.unit(6 * 2.85, "feet"),
  20086. weight: math.unit(14, "tons"),
  20087. name: "Sitting",
  20088. image: {
  20089. source: "./media/characters/athea/sitting.svg",
  20090. extra: 621 / 581,
  20091. bottom: 0.075
  20092. }
  20093. },
  20094. maw: {
  20095. height: math.unit(7.59498031496063, "feet"),
  20096. name: "Maw",
  20097. image: {
  20098. source: "./media/characters/athea/maw.svg"
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Lap Cat",
  20105. height: math.unit(2.5, "feet")
  20106. },
  20107. {
  20108. name: "Minimacro",
  20109. height: math.unit(15, "feet"),
  20110. default: true
  20111. },
  20112. {
  20113. name: "Macro",
  20114. height: math.unit(120, "feet")
  20115. },
  20116. {
  20117. name: "Macro+",
  20118. height: math.unit(640, "feet")
  20119. },
  20120. {
  20121. name: "Colossus",
  20122. height: math.unit(2.2, "miles")
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20128. {
  20129. front: {
  20130. height: math.unit(8 + 8 / 12, "feet"),
  20131. weight: math.unit(130, "kg"),
  20132. name: "Front",
  20133. image: {
  20134. source: "./media/characters/seroko/front.svg",
  20135. extra: 1385 / 1280,
  20136. bottom: 0.025
  20137. }
  20138. },
  20139. back: {
  20140. height: math.unit(8 + 8 / 12, "feet"),
  20141. weight: math.unit(130, "kg"),
  20142. name: "Back",
  20143. image: {
  20144. source: "./media/characters/seroko/back.svg",
  20145. extra: 1369 / 1238,
  20146. bottom: 0.018
  20147. }
  20148. },
  20149. frontDressed: {
  20150. height: math.unit(8 + 8 / 12, "feet"),
  20151. weight: math.unit(130, "kg"),
  20152. name: "Front (Dressed)",
  20153. image: {
  20154. source: "./media/characters/seroko/front-dressed.svg",
  20155. extra: 1366 / 1275,
  20156. bottom: 0.03
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Normal",
  20163. height: math.unit(8 + 8 / 12, "feet"),
  20164. default: true
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20170. {
  20171. front: {
  20172. height: math.unit(5.5, "feet"),
  20173. weight: math.unit(160, "lb"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/quatzi/front.svg",
  20177. extra: 2346 / 2242,
  20178. bottom: 0.015
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Normal",
  20185. height: math.unit(5.5, "feet"),
  20186. default: true
  20187. },
  20188. {
  20189. name: "Big",
  20190. height: math.unit(7.7, "feet")
  20191. },
  20192. ]
  20193. ))
  20194. characterMakers.push(() => makeCharacter(
  20195. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20196. {
  20197. front: {
  20198. height: math.unit(5 + 11 / 12, "feet"),
  20199. weight: math.unit(180, "lb"),
  20200. name: "Front",
  20201. image: {
  20202. source: "./media/characters/sen/front.svg",
  20203. extra: 1321 / 1254,
  20204. bottom: 0.015
  20205. }
  20206. },
  20207. side: {
  20208. height: math.unit(5 + 11 / 12, "feet"),
  20209. weight: math.unit(180, "lb"),
  20210. name: "Side",
  20211. image: {
  20212. source: "./media/characters/sen/side.svg",
  20213. extra: 1321 / 1254,
  20214. bottom: 0.007
  20215. }
  20216. },
  20217. back: {
  20218. height: math.unit(5 + 11 / 12, "feet"),
  20219. weight: math.unit(180, "lb"),
  20220. name: "Back",
  20221. image: {
  20222. source: "./media/characters/sen/back.svg",
  20223. extra: 1321 / 1254
  20224. }
  20225. },
  20226. },
  20227. [
  20228. {
  20229. name: "Normal",
  20230. height: math.unit(5 + 11 / 12, "feet"),
  20231. default: true
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20237. {
  20238. front: {
  20239. height: math.unit(166.6, "cm"),
  20240. weight: math.unit(66.6, "kg"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/fruity/front.svg",
  20244. extra: 1510 / 1386,
  20245. bottom: 0.04
  20246. }
  20247. },
  20248. back: {
  20249. height: math.unit(166.6, "cm"),
  20250. weight: math.unit(66.6, "lb"),
  20251. name: "Back",
  20252. image: {
  20253. source: "./media/characters/fruity/back.svg",
  20254. extra: 1563 / 1435,
  20255. bottom: 0.005
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(166.6, "cm"),
  20263. default: true
  20264. },
  20265. {
  20266. name: "Demonic",
  20267. height: math.unit(166.6, "feet")
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20273. {
  20274. side: {
  20275. height: math.unit(10, "feet"),
  20276. weight: math.unit(500, "lb"),
  20277. name: "Side",
  20278. image: {
  20279. source: "./media/characters/zost/side.svg",
  20280. extra: 966 / 880,
  20281. bottom: 0.075
  20282. }
  20283. },
  20284. mawFront: {
  20285. height: math.unit(1.08, "meters"),
  20286. name: "Maw (Front)",
  20287. image: {
  20288. source: "./media/characters/zost/maw-front.svg"
  20289. }
  20290. },
  20291. mawSide: {
  20292. height: math.unit(2.66, "feet"),
  20293. name: "Maw (Side)",
  20294. image: {
  20295. source: "./media/characters/zost/maw-side.svg"
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Normal",
  20302. height: math.unit(10, "feet"),
  20303. default: true
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(5 + 4 / 12, "feet"),
  20312. weight: math.unit(120, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/luci/front.svg",
  20316. extra: 1985 / 1884,
  20317. bottom: 0.04
  20318. }
  20319. },
  20320. back: {
  20321. height: math.unit(5 + 4 / 12, "feet"),
  20322. weight: math.unit(120, "lb"),
  20323. name: "Back",
  20324. image: {
  20325. source: "./media/characters/luci/back.svg",
  20326. extra: 1892 / 1791,
  20327. bottom: 0.002
  20328. }
  20329. },
  20330. },
  20331. [
  20332. {
  20333. name: "Normal",
  20334. height: math.unit(5 + 4 / 12, "feet"),
  20335. default: true
  20336. },
  20337. ]
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20341. {
  20342. front: {
  20343. height: math.unit(1500, "feet"),
  20344. weight: math.unit(3.8e6, "tons"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/2th/front.svg",
  20348. extra: 3489 / 3350,
  20349. bottom: 0.1
  20350. }
  20351. },
  20352. foot: {
  20353. height: math.unit(461, "feet"),
  20354. name: "Foot",
  20355. image: {
  20356. source: "./media/characters/2th/foot.svg"
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "\"Micro\"",
  20363. height: math.unit(15 + 7 / 12, "feet")
  20364. },
  20365. {
  20366. name: "Normal",
  20367. height: math.unit(1500, "feet"),
  20368. default: true
  20369. },
  20370. {
  20371. name: "Macro",
  20372. height: math.unit(5000, "feet")
  20373. },
  20374. {
  20375. name: "Megamacro",
  20376. height: math.unit(15, "miles")
  20377. },
  20378. {
  20379. name: "Gigamacro",
  20380. height: math.unit(4000, "miles")
  20381. },
  20382. {
  20383. name: "Galactic",
  20384. height: math.unit(50, "AU")
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20390. {
  20391. front: {
  20392. height: math.unit(5 + 6 / 12, "feet"),
  20393. weight: math.unit(220, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/amethyst/front.svg",
  20397. extra: 2078 / 2040,
  20398. bottom: 0.045
  20399. }
  20400. },
  20401. back: {
  20402. height: math.unit(5 + 6 / 12, "feet"),
  20403. weight: math.unit(220, "lb"),
  20404. name: "Back",
  20405. image: {
  20406. source: "./media/characters/amethyst/back.svg",
  20407. extra: 2021 / 1989,
  20408. bottom: 0.02
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Normal",
  20415. height: math.unit(5 + 6 / 12, "feet"),
  20416. default: true
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20422. {
  20423. front: {
  20424. height: math.unit(4 + 11 / 12, "feet"),
  20425. weight: math.unit(120, "lb"),
  20426. name: "Front",
  20427. image: {
  20428. source: "./media/characters/yumi-akiyama/front.svg",
  20429. extra: 1327 / 1235,
  20430. bottom: 0.02
  20431. }
  20432. },
  20433. back: {
  20434. height: math.unit(4 + 11 / 12, "feet"),
  20435. weight: math.unit(120, "lb"),
  20436. name: "Back",
  20437. image: {
  20438. source: "./media/characters/yumi-akiyama/back.svg",
  20439. extra: 1287 / 1245,
  20440. bottom: 0.002
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Galactic",
  20447. height: math.unit(50, "galaxies"),
  20448. default: true
  20449. },
  20450. {
  20451. name: "Universal",
  20452. height: math.unit(100, "universes")
  20453. },
  20454. ]
  20455. ))
  20456. characterMakers.push(() => makeCharacter(
  20457. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20458. {
  20459. front: {
  20460. height: math.unit(8, "feet"),
  20461. weight: math.unit(500, "lb"),
  20462. name: "Front",
  20463. image: {
  20464. source: "./media/characters/rifter-yrmori/front.svg",
  20465. extra: 1180 / 1125,
  20466. bottom: 0.02
  20467. }
  20468. },
  20469. back: {
  20470. height: math.unit(8, "feet"),
  20471. weight: math.unit(500, "lb"),
  20472. name: "Back",
  20473. image: {
  20474. source: "./media/characters/rifter-yrmori/back.svg",
  20475. extra: 1190 / 1145,
  20476. bottom: 0.001
  20477. }
  20478. },
  20479. wings: {
  20480. height: math.unit(7.75, "feet"),
  20481. weight: math.unit(500, "lb"),
  20482. name: "Wings",
  20483. image: {
  20484. source: "./media/characters/rifter-yrmori/wings.svg",
  20485. extra: 1357 / 1285
  20486. }
  20487. },
  20488. maw: {
  20489. height: math.unit(0.8, "feet"),
  20490. name: "Maw",
  20491. image: {
  20492. source: "./media/characters/rifter-yrmori/maw.svg"
  20493. }
  20494. },
  20495. mawfront: {
  20496. height: math.unit(1.45, "feet"),
  20497. name: "Maw (Front)",
  20498. image: {
  20499. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(8, "feet"),
  20507. default: true
  20508. },
  20509. {
  20510. name: "Macro",
  20511. height: math.unit(42, "meters")
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20517. {
  20518. were: {
  20519. height: math.unit(25 + 6 / 12, "feet"),
  20520. weight: math.unit(10000, "lb"),
  20521. name: "Were",
  20522. image: {
  20523. source: "./media/characters/tahajin/were.svg",
  20524. extra: 801 / 770,
  20525. bottom: 0.042
  20526. }
  20527. },
  20528. aquatic: {
  20529. height: math.unit(6 + 4 / 12, "feet"),
  20530. weight: math.unit(160, "lb"),
  20531. name: "Aquatic",
  20532. image: {
  20533. source: "./media/characters/tahajin/aquatic.svg",
  20534. extra: 572 / 542,
  20535. bottom: 0.04
  20536. }
  20537. },
  20538. chow: {
  20539. height: math.unit(8 + 11 / 12, "feet"),
  20540. weight: math.unit(450, "lb"),
  20541. name: "Chow",
  20542. image: {
  20543. source: "./media/characters/tahajin/chow.svg",
  20544. extra: 660 / 640,
  20545. bottom: 0.015
  20546. }
  20547. },
  20548. demiNaga: {
  20549. height: math.unit(6 + 8 / 12, "feet"),
  20550. weight: math.unit(300, "lb"),
  20551. name: "Demi Naga",
  20552. image: {
  20553. source: "./media/characters/tahajin/demi-naga.svg",
  20554. extra: 643 / 615,
  20555. bottom: 0.1
  20556. }
  20557. },
  20558. data: {
  20559. height: math.unit(5, "inches"),
  20560. weight: math.unit(0.1, "lb"),
  20561. name: "Data",
  20562. image: {
  20563. source: "./media/characters/tahajin/data.svg"
  20564. }
  20565. },
  20566. fluu: {
  20567. height: math.unit(5 + 7 / 12, "feet"),
  20568. weight: math.unit(140, "lb"),
  20569. name: "Fluu",
  20570. image: {
  20571. source: "./media/characters/tahajin/fluu.svg",
  20572. extra: 628 / 592,
  20573. bottom: 0.02
  20574. }
  20575. },
  20576. starWarrior: {
  20577. height: math.unit(4 + 5 / 12, "feet"),
  20578. weight: math.unit(50, "lb"),
  20579. name: "Star Warrior",
  20580. image: {
  20581. source: "./media/characters/tahajin/star-warrior.svg"
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(25 + 6 / 12, "feet"),
  20589. default: true
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(8, "feet"),
  20598. weight: math.unit(350, "lb"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/gabira/front.svg",
  20602. extra: 608 / 580,
  20603. bottom: 0.03
  20604. }
  20605. },
  20606. back: {
  20607. height: math.unit(8, "feet"),
  20608. weight: math.unit(350, "lb"),
  20609. name: "Back",
  20610. image: {
  20611. source: "./media/characters/gabira/back.svg",
  20612. extra: 608 / 580,
  20613. bottom: 0.03
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(8, "feet"),
  20621. default: true
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20627. {
  20628. front: {
  20629. height: math.unit(5 + 3 / 12, "feet"),
  20630. weight: math.unit(137, "lb"),
  20631. name: "Front",
  20632. image: {
  20633. source: "./media/characters/sasha-katraine/front.svg",
  20634. bottom: 0.045
  20635. }
  20636. },
  20637. },
  20638. [
  20639. {
  20640. name: "Micro",
  20641. height: math.unit(5, "inches")
  20642. },
  20643. {
  20644. name: "Normal",
  20645. height: math.unit(5 + 3 / 12, "feet"),
  20646. default: true
  20647. },
  20648. ]
  20649. ))
  20650. characterMakers.push(() => makeCharacter(
  20651. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20652. {
  20653. side: {
  20654. height: math.unit(4, "inches"),
  20655. weight: math.unit(200, "grams"),
  20656. name: "Side",
  20657. image: {
  20658. source: "./media/characters/der/side.svg",
  20659. extra: 719 / 400,
  20660. bottom: 30.6 / 749.9187
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Micro",
  20667. height: math.unit(4, "inches"),
  20668. default: true
  20669. },
  20670. ]
  20671. ))
  20672. characterMakers.push(() => makeCharacter(
  20673. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20674. {
  20675. side: {
  20676. height: math.unit(30, "meters"),
  20677. weight: math.unit(700, "tonnes"),
  20678. name: "Side",
  20679. image: {
  20680. source: "./media/characters/fixerdragon/side.svg",
  20681. extra: (1293.0514 - 116.03) / 1106.86,
  20682. bottom: 116.03 / 1293.0514
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "Planck",
  20689. height: math.unit(1.6e-35, "meters")
  20690. },
  20691. {
  20692. name: "Micro",
  20693. height: math.unit(0.4, "meters")
  20694. },
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(30, "meters"),
  20698. default: true
  20699. },
  20700. {
  20701. name: "Megamacro",
  20702. height: math.unit(1.2, "megameters")
  20703. },
  20704. {
  20705. name: "Teramacro",
  20706. height: math.unit(130, "terameters")
  20707. },
  20708. {
  20709. name: "Yottamacro",
  20710. height: math.unit(6200, "yottameters")
  20711. },
  20712. ]
  20713. ));
  20714. characterMakers.push(() => makeCharacter(
  20715. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20716. {
  20717. front: {
  20718. height: math.unit(8, "feet"),
  20719. weight: math.unit(250, "lb"),
  20720. name: "Front",
  20721. image: {
  20722. source: "./media/characters/kite/front.svg",
  20723. extra: 2796 / 2659,
  20724. bottom: 0.002
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(8, "feet"),
  20732. default: true
  20733. },
  20734. {
  20735. name: "Macro",
  20736. height: math.unit(360, "feet")
  20737. },
  20738. {
  20739. name: "Megamacro",
  20740. height: math.unit(1500, "feet")
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20746. {
  20747. front: {
  20748. height: math.unit(5 + 10 / 12, "feet"),
  20749. weight: math.unit(150, "lb"),
  20750. name: "Front",
  20751. image: {
  20752. source: "./media/characters/poojawa-vynar/front.svg",
  20753. extra: (1506.1547 - 55) / 1356.6,
  20754. bottom: 55 / 1506.1547
  20755. }
  20756. },
  20757. frontTailless: {
  20758. height: math.unit(5 + 10 / 12, "feet"),
  20759. weight: math.unit(150, "lb"),
  20760. name: "Front (Tailless)",
  20761. image: {
  20762. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20763. extra: (1506.1547 - 55) / 1356.6,
  20764. bottom: 55 / 1506.1547
  20765. }
  20766. },
  20767. },
  20768. [
  20769. {
  20770. name: "Normal",
  20771. height: math.unit(5 + 10 / 12, "feet"),
  20772. default: true
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20778. {
  20779. front: {
  20780. height: math.unit(293, "meters"),
  20781. weight: math.unit(70400, "tons"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/violette/front.svg",
  20785. extra: 1227 / 1180,
  20786. bottom: 0.005
  20787. }
  20788. },
  20789. back: {
  20790. height: math.unit(293, "meters"),
  20791. weight: math.unit(70400, "tons"),
  20792. name: "Back",
  20793. image: {
  20794. source: "./media/characters/violette/back.svg",
  20795. extra: 1227 / 1180,
  20796. bottom: 0.005
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "Macro",
  20803. height: math.unit(293, "meters"),
  20804. default: true
  20805. },
  20806. ]
  20807. ))
  20808. characterMakers.push(() => makeCharacter(
  20809. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20810. {
  20811. front: {
  20812. height: math.unit(1050, "feet"),
  20813. weight: math.unit(200000, "tons"),
  20814. name: "Front",
  20815. image: {
  20816. source: "./media/characters/alessandra/front.svg",
  20817. extra: 960 / 912,
  20818. bottom: 0.06
  20819. }
  20820. },
  20821. },
  20822. [
  20823. {
  20824. name: "Macro",
  20825. height: math.unit(1050, "feet")
  20826. },
  20827. {
  20828. name: "Macro+",
  20829. height: math.unit(900, "meters"),
  20830. default: true
  20831. },
  20832. ]
  20833. ))
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20836. {
  20837. front: {
  20838. height: math.unit(5, "feet"),
  20839. weight: math.unit(187, "lb"),
  20840. name: "Front",
  20841. image: {
  20842. source: "./media/characters/person/front.svg",
  20843. extra: 3087 / 2945,
  20844. bottom: 91 / 3181
  20845. }
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Micro",
  20851. height: math.unit(3, "inches")
  20852. },
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(5, "feet"),
  20856. default: true
  20857. },
  20858. {
  20859. name: "Macro",
  20860. height: math.unit(90, "feet")
  20861. },
  20862. {
  20863. name: "Max Size",
  20864. height: math.unit(280, "feet")
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20870. {
  20871. front: {
  20872. height: math.unit(4.5, "meters"),
  20873. weight: math.unit(3200, "lb"),
  20874. name: "Front",
  20875. image: {
  20876. source: "./media/characters/ty/front.svg",
  20877. extra: 1038 / 960,
  20878. bottom: 31.156 / 1068
  20879. }
  20880. },
  20881. back: {
  20882. height: math.unit(4.5, "meters"),
  20883. weight: math.unit(3200, "lb"),
  20884. name: "Back",
  20885. image: {
  20886. source: "./media/characters/ty/back.svg",
  20887. extra: 1044 / 966,
  20888. bottom: 7.48 / 1049
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(4.5, "meters"),
  20896. default: true
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(5 + 4 / 12, "feet"),
  20905. weight: math.unit(115, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/rocky/front.svg",
  20909. extra: 1012 / 975,
  20910. bottom: 54 / 1066
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(5 + 4 / 12, "feet"),
  20918. default: true
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20924. {
  20925. upright: {
  20926. height: math.unit(6, "meters"),
  20927. weight: math.unit(4000, "kg"),
  20928. name: "Upright",
  20929. image: {
  20930. source: "./media/characters/ruin/upright.svg",
  20931. extra: 668 / 661,
  20932. bottom: 42 / 799.8396
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(6, "meters"),
  20940. default: true
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(5, "feet"),
  20949. weight: math.unit(106, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/robin/front.svg",
  20953. extra: 862 / 799,
  20954. bottom: 42.4 / 914.8856
  20955. }
  20956. },
  20957. },
  20958. [
  20959. {
  20960. name: "Normal",
  20961. height: math.unit(5, "feet"),
  20962. default: true
  20963. },
  20964. ]
  20965. ))
  20966. characterMakers.push(() => makeCharacter(
  20967. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20968. {
  20969. side: {
  20970. height: math.unit(3, "feet"),
  20971. weight: math.unit(225, "lb"),
  20972. name: "Side",
  20973. image: {
  20974. source: "./media/characters/saian/side.svg",
  20975. extra: 566 / 356,
  20976. bottom: 79.7 / 643
  20977. }
  20978. },
  20979. maw: {
  20980. height: math.unit(2.85, "feet"),
  20981. name: "Maw",
  20982. image: {
  20983. source: "./media/characters/saian/maw.svg"
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Normal",
  20990. height: math.unit(3, "feet"),
  20991. default: true
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20997. {
  20998. side: {
  20999. height: math.unit(8, "feet"),
  21000. weight: math.unit(300, "lb"),
  21001. name: "Side",
  21002. image: {
  21003. source: "./media/characters/equus-silvermane/side.svg",
  21004. extra: 2176 / 2050,
  21005. bottom: 65.7 / 2245
  21006. }
  21007. },
  21008. front: {
  21009. height: math.unit(8, "feet"),
  21010. weight: math.unit(300, "lb"),
  21011. name: "Front",
  21012. image: {
  21013. source: "./media/characters/equus-silvermane/front.svg",
  21014. extra: 4633 / 4400,
  21015. bottom: 71.3 / 4706.915
  21016. }
  21017. },
  21018. sideStepping: {
  21019. height: math.unit(8, "feet"),
  21020. weight: math.unit(300, "lb"),
  21021. name: "Side (Stepping)",
  21022. image: {
  21023. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21024. extra: 1968 / 1860,
  21025. bottom: 16.4 / 1989
  21026. }
  21027. },
  21028. },
  21029. [
  21030. {
  21031. name: "Normal",
  21032. height: math.unit(8, "feet")
  21033. },
  21034. {
  21035. name: "Minimacro",
  21036. height: math.unit(75, "feet"),
  21037. default: true
  21038. },
  21039. {
  21040. name: "Macro",
  21041. height: math.unit(150, "feet")
  21042. },
  21043. {
  21044. name: "Macro+",
  21045. height: math.unit(1000, "feet")
  21046. },
  21047. {
  21048. name: "Megamacro",
  21049. height: math.unit(1, "mile")
  21050. },
  21051. ]
  21052. ))
  21053. characterMakers.push(() => makeCharacter(
  21054. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21055. {
  21056. side: {
  21057. height: math.unit(20, "feet"),
  21058. weight: math.unit(30000, "kg"),
  21059. name: "Side",
  21060. image: {
  21061. source: "./media/characters/windar/side.svg",
  21062. extra: 1491 / 1248,
  21063. bottom: 82.56 / 1568
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(20, "feet"),
  21071. default: true
  21072. },
  21073. ]
  21074. ))
  21075. characterMakers.push(() => makeCharacter(
  21076. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21077. {
  21078. side: {
  21079. height: math.unit(15.66, "feet"),
  21080. weight: math.unit(150, "lb"),
  21081. name: "Side",
  21082. image: {
  21083. source: "./media/characters/melody/side.svg",
  21084. extra: 1097 / 944,
  21085. bottom: 11.8 / 1109
  21086. }
  21087. },
  21088. sideOutfit: {
  21089. height: math.unit(15.66, "feet"),
  21090. weight: math.unit(150, "lb"),
  21091. name: "Side (Outfit)",
  21092. image: {
  21093. source: "./media/characters/melody/side-outfit.svg",
  21094. extra: 1097 / 944,
  21095. bottom: 11.8 / 1109
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Normal",
  21102. height: math.unit(15.66, "feet"),
  21103. default: true
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21109. {
  21110. front: {
  21111. height: math.unit(8, "feet"),
  21112. weight: math.unit(325, "lb"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/windera/front.svg",
  21116. extra: 3180 / 2845,
  21117. bottom: 178 / 3365
  21118. }
  21119. },
  21120. },
  21121. [
  21122. {
  21123. name: "Normal",
  21124. height: math.unit(8, "feet"),
  21125. default: true
  21126. },
  21127. ]
  21128. ))
  21129. characterMakers.push(() => makeCharacter(
  21130. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21131. {
  21132. front: {
  21133. height: math.unit(28.75, "feet"),
  21134. weight: math.unit(2000, "kg"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/sonear/front.svg",
  21138. extra: 1041.1 / 964.9,
  21139. bottom: 53.7 / 1096.6
  21140. }
  21141. },
  21142. },
  21143. [
  21144. {
  21145. name: "Normal",
  21146. height: math.unit(28.75, "feet"),
  21147. default: true
  21148. },
  21149. ]
  21150. ))
  21151. characterMakers.push(() => makeCharacter(
  21152. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21153. {
  21154. side: {
  21155. height: math.unit(25.5, "feet"),
  21156. weight: math.unit(23000, "kg"),
  21157. name: "Side",
  21158. image: {
  21159. source: "./media/characters/kanara/side.svg"
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(25.5, "feet"),
  21167. default: true
  21168. },
  21169. ]
  21170. ))
  21171. characterMakers.push(() => makeCharacter(
  21172. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21173. {
  21174. side: {
  21175. height: math.unit(10, "feet"),
  21176. weight: math.unit(1000, "kg"),
  21177. name: "Side",
  21178. image: {
  21179. source: "./media/characters/ereus/side.svg",
  21180. extra: 1157 / 959,
  21181. bottom: 153 / 1312.5
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(10, "feet"),
  21189. default: true
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21195. {
  21196. side: {
  21197. height: math.unit(4.5, "feet"),
  21198. weight: math.unit(500, "lb"),
  21199. name: "Side",
  21200. image: {
  21201. source: "./media/characters/e-ter/side.svg",
  21202. extra: 1550 / 1248,
  21203. bottom: 146 / 1694
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(4.5, "feet"),
  21211. default: true
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21217. {
  21218. side: {
  21219. height: math.unit(9.7, "feet"),
  21220. weight: math.unit(4000, "kg"),
  21221. name: "Side",
  21222. image: {
  21223. source: "./media/characters/yamie/side.svg"
  21224. }
  21225. },
  21226. },
  21227. [
  21228. {
  21229. name: "Normal",
  21230. height: math.unit(9.7, "feet"),
  21231. default: true
  21232. },
  21233. ]
  21234. ))
  21235. characterMakers.push(() => makeCharacter(
  21236. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21237. {
  21238. front: {
  21239. height: math.unit(50, "feet"),
  21240. weight: math.unit(50000, "kg"),
  21241. name: "Front",
  21242. image: {
  21243. source: "./media/characters/anders/front.svg",
  21244. extra: 570 / 539,
  21245. bottom: 14.7 / 586.7
  21246. }
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Large",
  21252. height: math.unit(50, "feet")
  21253. },
  21254. {
  21255. name: "Macro",
  21256. height: math.unit(2000, "feet"),
  21257. default: true
  21258. },
  21259. {
  21260. name: "Megamacro",
  21261. height: math.unit(12, "miles")
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21267. {
  21268. front: {
  21269. height: math.unit(7 + 2 / 12, "feet"),
  21270. weight: math.unit(300, "lb"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/reban/front.svg",
  21274. extra: 516 / 487,
  21275. bottom: 42.82 / 558.356
  21276. }
  21277. },
  21278. dick: {
  21279. height: math.unit(7 / 5, "feet"),
  21280. name: "Dick",
  21281. image: {
  21282. source: "./media/characters/reban/dick.svg"
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Natural Height",
  21289. height: math.unit(7 + 2 / 12, "feet")
  21290. },
  21291. {
  21292. name: "Macro",
  21293. height: math.unit(500, "feet"),
  21294. default: true
  21295. },
  21296. {
  21297. name: "Canon Height",
  21298. height: math.unit(50, "AU")
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21304. {
  21305. front: {
  21306. height: math.unit(6, "feet"),
  21307. weight: math.unit(150, "lb"),
  21308. name: "Front",
  21309. image: {
  21310. source: "./media/characters/terrance-keayes/front.svg",
  21311. extra: 1.005,
  21312. bottom: 151 / 1615
  21313. }
  21314. },
  21315. side: {
  21316. height: math.unit(6, "feet"),
  21317. weight: math.unit(150, "lb"),
  21318. name: "Side",
  21319. image: {
  21320. source: "./media/characters/terrance-keayes/side.svg",
  21321. extra: 1.005,
  21322. bottom: 129.4 / 1544
  21323. }
  21324. },
  21325. back: {
  21326. height: math.unit(6, "feet"),
  21327. weight: math.unit(150, "lb"),
  21328. name: "Back",
  21329. image: {
  21330. source: "./media/characters/terrance-keayes/back.svg",
  21331. extra: 1.005,
  21332. bottom: 58.4 / 1557.3
  21333. }
  21334. },
  21335. dick: {
  21336. height: math.unit(6 * 0.208, "feet"),
  21337. name: "Dick",
  21338. image: {
  21339. source: "./media/characters/terrance-keayes/dick.svg"
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Canon Height",
  21346. height: math.unit(35, "miles"),
  21347. default: true
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21353. {
  21354. front: {
  21355. height: math.unit(6, "feet"),
  21356. weight: math.unit(150, "lb"),
  21357. name: "Front",
  21358. image: {
  21359. source: "./media/characters/ofelia/front.svg",
  21360. extra: 546 / 541,
  21361. bottom: 39 / 583
  21362. }
  21363. },
  21364. back: {
  21365. height: math.unit(6, "feet"),
  21366. weight: math.unit(150, "lb"),
  21367. name: "Back",
  21368. image: {
  21369. source: "./media/characters/ofelia/back.svg",
  21370. extra: 564 / 559.5,
  21371. bottom: 8.69 / 573.02
  21372. }
  21373. },
  21374. maw: {
  21375. height: math.unit(1, "feet"),
  21376. name: "Maw",
  21377. image: {
  21378. source: "./media/characters/ofelia/maw.svg"
  21379. }
  21380. },
  21381. foot: {
  21382. height: math.unit(1.949, "feet"),
  21383. name: "Foot",
  21384. image: {
  21385. source: "./media/characters/ofelia/foot.svg"
  21386. }
  21387. },
  21388. },
  21389. [
  21390. {
  21391. name: "Canon Height",
  21392. height: math.unit(2000, "miles"),
  21393. default: true
  21394. },
  21395. ]
  21396. ))
  21397. characterMakers.push(() => makeCharacter(
  21398. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21399. {
  21400. front: {
  21401. height: math.unit(6, "feet"),
  21402. weight: math.unit(150, "lb"),
  21403. name: "Front",
  21404. image: {
  21405. source: "./media/characters/samuel/front.svg",
  21406. extra: 265 / 258,
  21407. bottom: 2 / 266.1566
  21408. }
  21409. },
  21410. },
  21411. [
  21412. {
  21413. name: "Macro",
  21414. height: math.unit(100, "feet"),
  21415. default: true
  21416. },
  21417. {
  21418. name: "Full Size",
  21419. height: math.unit(1000, "miles")
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(6, "feet"),
  21428. weight: math.unit(300, "lb"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/beishir-kiel/front.svg",
  21432. extra: 569 / 547,
  21433. bottom: 41.9 / 609
  21434. }
  21435. },
  21436. maw: {
  21437. height: math.unit(6 * 0.202, "feet"),
  21438. name: "Maw",
  21439. image: {
  21440. source: "./media/characters/beishir-kiel/maw.svg"
  21441. }
  21442. },
  21443. },
  21444. [
  21445. {
  21446. name: "Macro",
  21447. height: math.unit(300, "feet"),
  21448. default: true
  21449. },
  21450. ]
  21451. ))
  21452. characterMakers.push(() => makeCharacter(
  21453. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21454. {
  21455. front: {
  21456. height: math.unit(5 + 8 / 12, "feet"),
  21457. weight: math.unit(120, "lb"),
  21458. name: "Front",
  21459. image: {
  21460. source: "./media/characters/logan-grey/front.svg",
  21461. extra: 2539 / 2393,
  21462. bottom: 97.6 / 2636.37
  21463. }
  21464. },
  21465. frontAlt: {
  21466. height: math.unit(5 + 8 / 12, "feet"),
  21467. weight: math.unit(120, "lb"),
  21468. name: "Front (Alt)",
  21469. image: {
  21470. source: "./media/characters/logan-grey/front-alt.svg",
  21471. extra: 958 / 893,
  21472. bottom: 15 / 970.768
  21473. }
  21474. },
  21475. back: {
  21476. height: math.unit(5 + 8 / 12, "feet"),
  21477. weight: math.unit(120, "lb"),
  21478. name: "Back",
  21479. image: {
  21480. source: "./media/characters/logan-grey/back.svg",
  21481. extra: 958 / 893,
  21482. bottom: 2.1881 / 970.9788
  21483. }
  21484. },
  21485. dick: {
  21486. height: math.unit(1.437, "feet"),
  21487. name: "Dick",
  21488. image: {
  21489. source: "./media/characters/logan-grey/dick.svg"
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "Normal",
  21496. height: math.unit(5 + 8 / 12, "feet")
  21497. },
  21498. {
  21499. name: "The 500 Foot Femboy",
  21500. height: math.unit(500, "feet"),
  21501. default: true
  21502. },
  21503. {
  21504. name: "Megmacro",
  21505. height: math.unit(20, "miles")
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(8 + 2 / 12, "feet"),
  21514. weight: math.unit(275, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/draganta/front.svg",
  21518. extra: 1177 / 1135,
  21519. bottom: 33.46 / 1212.1
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(8 + 6 / 12, "feet"),
  21527. default: true
  21528. },
  21529. {
  21530. name: "Macro",
  21531. height: math.unit(150, "feet")
  21532. },
  21533. {
  21534. name: "Megamacro",
  21535. height: math.unit(1000, "miles")
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(1.72, "m"),
  21544. weight: math.unit(80, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/voski/front.svg",
  21548. extra: 2076.22 / 2022.4,
  21549. bottom: 102.7 / 2177.3866
  21550. }
  21551. },
  21552. frontNsfw: {
  21553. height: math.unit(1.72, "m"),
  21554. weight: math.unit(80, "lb"),
  21555. name: "Front (NSFW)",
  21556. image: {
  21557. source: "./media/characters/voski/front-nsfw.svg",
  21558. extra: 2076.22 / 2022.4,
  21559. bottom: 102.7 / 2177.3866
  21560. }
  21561. },
  21562. back: {
  21563. height: math.unit(1.72, "m"),
  21564. weight: math.unit(80, "lb"),
  21565. name: "Back",
  21566. image: {
  21567. source: "./media/characters/voski/back.svg",
  21568. extra: 2104 / 2051,
  21569. bottom: 10.45 / 2113.63
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Normal",
  21576. height: math.unit(1.72, "m")
  21577. },
  21578. {
  21579. name: "Macro",
  21580. height: math.unit(55, "m"),
  21581. default: true
  21582. },
  21583. {
  21584. name: "Macro+",
  21585. height: math.unit(300, "m")
  21586. },
  21587. {
  21588. name: "Macro++",
  21589. height: math.unit(700, "m")
  21590. },
  21591. {
  21592. name: "Macro+++",
  21593. height: math.unit(4500, "m")
  21594. },
  21595. {
  21596. name: "Macro++++",
  21597. height: math.unit(45, "km")
  21598. },
  21599. {
  21600. name: "Macro+++++",
  21601. height: math.unit(1220, "km")
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21607. {
  21608. front: {
  21609. height: math.unit(2.3, "m"),
  21610. weight: math.unit(304, "kg"),
  21611. name: "Front",
  21612. image: {
  21613. source: "./media/characters/icowom-lee/front.svg",
  21614. extra: 985 / 955,
  21615. bottom: 25.4 / 1012
  21616. }
  21617. },
  21618. fronttentacles: {
  21619. height: math.unit(2.3, "m"),
  21620. weight: math.unit(304, "kg"),
  21621. name: "Front-tentacles",
  21622. image: {
  21623. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21624. extra: 985 / 955,
  21625. bottom: 25.4 / 1012
  21626. }
  21627. },
  21628. back: {
  21629. height: math.unit(2.3, "m"),
  21630. weight: math.unit(304, "kg"),
  21631. name: "Back",
  21632. image: {
  21633. source: "./media/characters/icowom-lee/back.svg",
  21634. extra: 975 / 954,
  21635. bottom: 9.5 / 985
  21636. }
  21637. },
  21638. backtentacles: {
  21639. height: math.unit(2.3, "m"),
  21640. weight: math.unit(304, "kg"),
  21641. name: "Back-tentacles",
  21642. image: {
  21643. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21644. extra: 975 / 954,
  21645. bottom: 9.5 / 985
  21646. }
  21647. },
  21648. frontDressed: {
  21649. height: math.unit(2.3, "m"),
  21650. weight: math.unit(304, "kg"),
  21651. name: "Front (Dressed)",
  21652. image: {
  21653. source: "./media/characters/icowom-lee/front-dressed.svg",
  21654. extra: 3076 / 2933,
  21655. bottom: 51.4 / 3125.1889
  21656. }
  21657. },
  21658. rump: {
  21659. height: math.unit(0.776, "meters"),
  21660. name: "Rump",
  21661. image: {
  21662. source: "./media/characters/icowom-lee/rump.svg"
  21663. }
  21664. },
  21665. genitals: {
  21666. height: math.unit(0.78, "meters"),
  21667. name: "Genitals",
  21668. image: {
  21669. source: "./media/characters/icowom-lee/genitals.svg"
  21670. }
  21671. },
  21672. },
  21673. [
  21674. {
  21675. name: "Normal",
  21676. height: math.unit(2.3, "meters"),
  21677. default: true
  21678. },
  21679. {
  21680. name: "Macro",
  21681. height: math.unit(94, "meters"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(22, "meters"),
  21691. weight: math.unit(21000, "kg"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/shock-diamond/front.svg",
  21695. extra: 2204 / 2053,
  21696. bottom: 65 / 2239.47
  21697. }
  21698. },
  21699. frontNude: {
  21700. height: math.unit(22, "meters"),
  21701. weight: math.unit(21000, "kg"),
  21702. name: "Front (Nude)",
  21703. image: {
  21704. source: "./media/characters/shock-diamond/front-nude.svg",
  21705. extra: 2514 / 2285,
  21706. bottom: 13 / 2527.56
  21707. }
  21708. },
  21709. },
  21710. [
  21711. {
  21712. name: "Normal",
  21713. height: math.unit(3, "meters")
  21714. },
  21715. {
  21716. name: "Macro",
  21717. height: math.unit(22, "meters"),
  21718. default: true
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21724. {
  21725. front: {
  21726. height: math.unit(5 + 4 / 12, "feet"),
  21727. weight: math.unit(120, "lb"),
  21728. name: "Front",
  21729. image: {
  21730. source: "./media/characters/rory/front.svg",
  21731. extra: 589 / 556,
  21732. bottom: 45.7 / 635.76
  21733. }
  21734. },
  21735. frontNude: {
  21736. height: math.unit(5 + 4 / 12, "feet"),
  21737. weight: math.unit(120, "lb"),
  21738. name: "Front (Nude)",
  21739. image: {
  21740. source: "./media/characters/rory/front-nude.svg",
  21741. extra: 589 / 556,
  21742. bottom: 45.7 / 635.76
  21743. }
  21744. },
  21745. side: {
  21746. height: math.unit(5 + 4 / 12, "feet"),
  21747. weight: math.unit(120, "lb"),
  21748. name: "Side",
  21749. image: {
  21750. source: "./media/characters/rory/side.svg",
  21751. extra: 597 / 564,
  21752. bottom: 55 / 653
  21753. }
  21754. },
  21755. back: {
  21756. height: math.unit(5 + 4 / 12, "feet"),
  21757. weight: math.unit(120, "lb"),
  21758. name: "Back",
  21759. image: {
  21760. source: "./media/characters/rory/back.svg",
  21761. extra: 620 / 585,
  21762. bottom: 8.86 / 630.43
  21763. }
  21764. },
  21765. dick: {
  21766. height: math.unit(0.86, "feet"),
  21767. name: "Dick",
  21768. image: {
  21769. source: "./media/characters/rory/dick.svg"
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(5 + 4 / 12, "feet"),
  21777. default: true
  21778. },
  21779. {
  21780. name: "Macro",
  21781. height: math.unit(100, "feet")
  21782. },
  21783. {
  21784. name: "Macro+",
  21785. height: math.unit(140, "feet")
  21786. },
  21787. {
  21788. name: "Macro++",
  21789. height: math.unit(300, "feet")
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(5 + 9 / 12, "feet"),
  21798. weight: math.unit(190, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/sprisk/front.svg",
  21802. extra: 1225 / 1180,
  21803. bottom: 42.7 / 1266.4
  21804. }
  21805. },
  21806. frontNsfw: {
  21807. height: math.unit(5 + 9 / 12, "feet"),
  21808. weight: math.unit(190, "lb"),
  21809. name: "Front (NSFW)",
  21810. image: {
  21811. source: "./media/characters/sprisk/front-nsfw.svg",
  21812. extra: 1225 / 1180,
  21813. bottom: 42.7 / 1266.4
  21814. }
  21815. },
  21816. back: {
  21817. height: math.unit(5 + 9 / 12, "feet"),
  21818. weight: math.unit(190, "lb"),
  21819. name: "Back",
  21820. image: {
  21821. source: "./media/characters/sprisk/back.svg",
  21822. extra: 1247 / 1200,
  21823. bottom: 5.6 / 1253.04
  21824. }
  21825. },
  21826. },
  21827. [
  21828. {
  21829. name: "Tiny",
  21830. height: math.unit(2, "inches")
  21831. },
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(5 + 9 / 12, "feet"),
  21835. default: true
  21836. },
  21837. {
  21838. name: "Mini Macro",
  21839. height: math.unit(18, "feet")
  21840. },
  21841. {
  21842. name: "Macro",
  21843. height: math.unit(100, "feet")
  21844. },
  21845. {
  21846. name: "MACRO",
  21847. height: math.unit(50, "miles")
  21848. },
  21849. {
  21850. name: "M A C R O",
  21851. height: math.unit(300, "miles")
  21852. },
  21853. ]
  21854. ))
  21855. characterMakers.push(() => makeCharacter(
  21856. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21857. {
  21858. side: {
  21859. height: math.unit(15.6, "meters"),
  21860. weight: math.unit(700000, "kg"),
  21861. name: "Side",
  21862. image: {
  21863. source: "./media/characters/bunsen/side.svg",
  21864. extra: 1644 / 358
  21865. }
  21866. },
  21867. foot: {
  21868. height: math.unit(1.611 * 1644 / 358, "meter"),
  21869. name: "Foot",
  21870. image: {
  21871. source: "./media/characters/bunsen/foot.svg"
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Small",
  21878. height: math.unit(10, "feet")
  21879. },
  21880. {
  21881. name: "Normal",
  21882. height: math.unit(15.6, "meters"),
  21883. default: true
  21884. },
  21885. ]
  21886. ))
  21887. characterMakers.push(() => makeCharacter(
  21888. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21889. {
  21890. front: {
  21891. height: math.unit(4 + 11 / 12, "feet"),
  21892. weight: math.unit(140, "lb"),
  21893. name: "Front",
  21894. image: {
  21895. source: "./media/characters/sesh/front.svg",
  21896. extra: 3420 / 3231,
  21897. bottom: 72 / 3949.5
  21898. }
  21899. },
  21900. },
  21901. [
  21902. {
  21903. name: "Normal",
  21904. height: math.unit(4 + 11 / 12, "feet")
  21905. },
  21906. {
  21907. name: "Grown",
  21908. height: math.unit(15, "feet"),
  21909. default: true
  21910. },
  21911. {
  21912. name: "Macro",
  21913. height: math.unit(1500, "feet")
  21914. },
  21915. {
  21916. name: "Megamacro",
  21917. height: math.unit(30, "miles")
  21918. },
  21919. {
  21920. name: "Continental",
  21921. height: math.unit(3000, "miles")
  21922. },
  21923. {
  21924. name: "Gravity Mass",
  21925. height: math.unit(300000, "miles")
  21926. },
  21927. {
  21928. name: "Planet Buster",
  21929. height: math.unit(30000000, "miles")
  21930. },
  21931. {
  21932. name: "Big",
  21933. height: math.unit(3000000000, "miles")
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(9, "feet"),
  21942. weight: math.unit(350, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/pepper/front.svg",
  21946. extra: 1448 / 1312,
  21947. bottom: 9.4 / 1457.88
  21948. }
  21949. },
  21950. back: {
  21951. height: math.unit(9, "feet"),
  21952. weight: math.unit(350, "lb"),
  21953. name: "Back",
  21954. image: {
  21955. source: "./media/characters/pepper/back.svg",
  21956. extra: 1423 / 1300,
  21957. bottom: 4.6 / 1429
  21958. }
  21959. },
  21960. maw: {
  21961. height: math.unit(0.932, "feet"),
  21962. name: "Maw",
  21963. image: {
  21964. source: "./media/characters/pepper/maw.svg"
  21965. }
  21966. },
  21967. },
  21968. [
  21969. {
  21970. name: "Normal",
  21971. height: math.unit(9, "feet"),
  21972. default: true
  21973. },
  21974. ]
  21975. ))
  21976. characterMakers.push(() => makeCharacter(
  21977. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21978. {
  21979. front: {
  21980. height: math.unit(6, "feet"),
  21981. weight: math.unit(150, "lb"),
  21982. name: "Front",
  21983. image: {
  21984. source: "./media/characters/maelstrom/front.svg",
  21985. extra: 2100 / 1883,
  21986. bottom: 94 / 2196.7
  21987. }
  21988. },
  21989. },
  21990. [
  21991. {
  21992. name: "Less Kaiju",
  21993. height: math.unit(200, "feet")
  21994. },
  21995. {
  21996. name: "Kaiju",
  21997. height: math.unit(400, "feet"),
  21998. default: true
  21999. },
  22000. {
  22001. name: "Kaiju-er",
  22002. height: math.unit(600, "feet")
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22008. {
  22009. front: {
  22010. height: math.unit(6 + 5 / 12, "feet"),
  22011. weight: math.unit(180, "lb"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/lexir/front.svg",
  22015. extra: 180 / 172,
  22016. bottom: 12 / 192
  22017. }
  22018. },
  22019. back: {
  22020. height: math.unit(6 + 5 / 12, "feet"),
  22021. weight: math.unit(180, "lb"),
  22022. name: "Back",
  22023. image: {
  22024. source: "./media/characters/lexir/back.svg",
  22025. extra: 183.84 / 175.5,
  22026. bottom: 3.1 / 187
  22027. }
  22028. },
  22029. },
  22030. [
  22031. {
  22032. name: "Very Smal",
  22033. height: math.unit(1, "nm")
  22034. },
  22035. {
  22036. name: "Normal",
  22037. height: math.unit(6 + 5 / 12, "feet"),
  22038. default: true
  22039. },
  22040. {
  22041. name: "Macro",
  22042. height: math.unit(1, "mile")
  22043. },
  22044. {
  22045. name: "Megamacro",
  22046. height: math.unit(50, "miles")
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22052. {
  22053. front: {
  22054. height: math.unit(1.5, "meters"),
  22055. weight: math.unit(100, "lb"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/maksio/front.svg",
  22059. extra: 1549 / 1531,
  22060. bottom: 123.7 / 1674.5429
  22061. }
  22062. },
  22063. back: {
  22064. height: math.unit(1.5, "meters"),
  22065. weight: math.unit(100, "lb"),
  22066. name: "Back",
  22067. image: {
  22068. source: "./media/characters/maksio/back.svg",
  22069. extra: 1541 / 1509,
  22070. bottom: 97 / 1639
  22071. }
  22072. },
  22073. hand: {
  22074. height: math.unit(0.621, "feet"),
  22075. name: "Hand",
  22076. image: {
  22077. source: "./media/characters/maksio/hand.svg"
  22078. }
  22079. },
  22080. foot: {
  22081. height: math.unit(1.611, "feet"),
  22082. name: "Foot",
  22083. image: {
  22084. source: "./media/characters/maksio/foot.svg"
  22085. }
  22086. },
  22087. },
  22088. [
  22089. {
  22090. name: "Shrunken",
  22091. height: math.unit(10, "cm")
  22092. },
  22093. {
  22094. name: "Normal",
  22095. height: math.unit(150, "cm"),
  22096. default: true
  22097. },
  22098. ]
  22099. ))
  22100. characterMakers.push(() => makeCharacter(
  22101. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22102. {
  22103. front: {
  22104. height: math.unit(100, "feet"),
  22105. name: "Front",
  22106. image: {
  22107. source: "./media/characters/erza-bear/front.svg",
  22108. extra: 2449 / 2390,
  22109. bottom: 46 / 2494
  22110. }
  22111. },
  22112. back: {
  22113. height: math.unit(100, "feet"),
  22114. name: "Back",
  22115. image: {
  22116. source: "./media/characters/erza-bear/back.svg",
  22117. extra: 2489 / 2430,
  22118. bottom: 85.4 / 2480
  22119. }
  22120. },
  22121. tail: {
  22122. height: math.unit(42, "feet"),
  22123. name: "Tail",
  22124. image: {
  22125. source: "./media/characters/erza-bear/tail.svg"
  22126. }
  22127. },
  22128. tongue: {
  22129. height: math.unit(8, "feet"),
  22130. name: "Tongue",
  22131. image: {
  22132. source: "./media/characters/erza-bear/tongue.svg"
  22133. }
  22134. },
  22135. dick: {
  22136. height: math.unit(10.5, "feet"),
  22137. name: "Dick",
  22138. image: {
  22139. source: "./media/characters/erza-bear/dick.svg"
  22140. }
  22141. },
  22142. dickVertical: {
  22143. height: math.unit(16.9, "feet"),
  22144. name: "Dick (Vertical)",
  22145. image: {
  22146. source: "./media/characters/erza-bear/dick-vertical.svg"
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Macro",
  22153. height: math.unit(100, "feet"),
  22154. default: true
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(172, "cm"),
  22163. weight: math.unit(73, "kg"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/violet-flor/front.svg",
  22167. extra: 1530 / 1442,
  22168. bottom: 61.9 / 1588.8
  22169. }
  22170. },
  22171. back: {
  22172. height: math.unit(180, "cm"),
  22173. weight: math.unit(73, "kg"),
  22174. name: "Back",
  22175. image: {
  22176. source: "./media/characters/violet-flor/back.svg",
  22177. extra: 1692 / 1630,
  22178. bottom: 20 / 1712
  22179. }
  22180. },
  22181. },
  22182. [
  22183. {
  22184. name: "Normal",
  22185. height: math.unit(172, "cm"),
  22186. default: true
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(6, "feet"),
  22195. weight: math.unit(220, "lb"),
  22196. name: "Front",
  22197. image: {
  22198. source: "./media/characters/lynn-rhea/front.svg",
  22199. extra: 310 / 273
  22200. }
  22201. },
  22202. back: {
  22203. height: math.unit(6, "feet"),
  22204. weight: math.unit(220, "lb"),
  22205. name: "Back",
  22206. image: {
  22207. source: "./media/characters/lynn-rhea/back.svg",
  22208. extra: 310 / 273
  22209. }
  22210. },
  22211. dicks: {
  22212. height: math.unit(0.9, "feet"),
  22213. name: "Dicks",
  22214. image: {
  22215. source: "./media/characters/lynn-rhea/dicks.svg"
  22216. }
  22217. },
  22218. slit: {
  22219. height: math.unit(0.4, "feet"),
  22220. name: "Slit",
  22221. image: {
  22222. source: "./media/characters/lynn-rhea/slit.svg"
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Micro",
  22229. height: math.unit(1, "inch")
  22230. },
  22231. {
  22232. name: "Macro",
  22233. height: math.unit(60, "feet"),
  22234. default: true
  22235. },
  22236. {
  22237. name: "Megamacro",
  22238. height: math.unit(2, "miles")
  22239. },
  22240. {
  22241. name: "Gigamacro",
  22242. height: math.unit(3, "earths")
  22243. },
  22244. {
  22245. name: "Galactic",
  22246. height: math.unit(0.8, "galaxies")
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22252. {
  22253. front: {
  22254. height: math.unit(1600, "feet"),
  22255. weight: math.unit(85758785169, "kg"),
  22256. name: "Front",
  22257. image: {
  22258. source: "./media/characters/valathos/front.svg",
  22259. extra: 1451 / 1339
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Macro",
  22266. height: math.unit(1600, "feet"),
  22267. default: true
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22273. {
  22274. front: {
  22275. height: math.unit(7 + 5 / 12, "feet"),
  22276. weight: math.unit(300, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/azula/front.svg",
  22280. extra: 3208 / 2880,
  22281. bottom: 80.2 / 3277
  22282. }
  22283. },
  22284. back: {
  22285. height: math.unit(7 + 5 / 12, "feet"),
  22286. weight: math.unit(300, "lb"),
  22287. name: "Back",
  22288. image: {
  22289. source: "./media/characters/azula/back.svg",
  22290. extra: 3169 / 2822,
  22291. bottom: 150.6 / 3321
  22292. }
  22293. },
  22294. },
  22295. [
  22296. {
  22297. name: "Normal",
  22298. height: math.unit(7 + 5 / 12, "feet"),
  22299. default: true
  22300. },
  22301. {
  22302. name: "Big",
  22303. height: math.unit(20, "feet")
  22304. },
  22305. ]
  22306. ))
  22307. characterMakers.push(() => makeCharacter(
  22308. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22309. {
  22310. front: {
  22311. height: math.unit(5 + 1 / 12, "feet"),
  22312. weight: math.unit(110, "lb"),
  22313. name: "Front",
  22314. image: {
  22315. source: "./media/characters/rupert/front.svg",
  22316. extra: 1549 / 1495,
  22317. bottom: 54.2 / 1604.4
  22318. }
  22319. },
  22320. },
  22321. [
  22322. {
  22323. name: "Normal",
  22324. height: math.unit(5 + 1 / 12, "feet"),
  22325. default: true
  22326. },
  22327. ]
  22328. ))
  22329. characterMakers.push(() => makeCharacter(
  22330. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22331. {
  22332. front: {
  22333. height: math.unit(8 + 4 / 12, "feet"),
  22334. weight: math.unit(350, "lb"),
  22335. name: "Front",
  22336. image: {
  22337. source: "./media/characters/sheera-castellar/front.svg",
  22338. extra: 1957 / 1894,
  22339. bottom: 26.97 / 1975.017
  22340. }
  22341. },
  22342. side: {
  22343. height: math.unit(8 + 4 / 12, "feet"),
  22344. weight: math.unit(350, "lb"),
  22345. name: "Side",
  22346. image: {
  22347. source: "./media/characters/sheera-castellar/side.svg",
  22348. extra: 1957 / 1894
  22349. }
  22350. },
  22351. back: {
  22352. height: math.unit(8 + 4 / 12, "feet"),
  22353. weight: math.unit(350, "lb"),
  22354. name: "Back",
  22355. image: {
  22356. source: "./media/characters/sheera-castellar/back.svg",
  22357. extra: 1957 / 1894
  22358. }
  22359. },
  22360. angled: {
  22361. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22362. weight: math.unit(350, "lb"),
  22363. name: "Angled",
  22364. image: {
  22365. source: "./media/characters/sheera-castellar/angled.svg",
  22366. extra: 1807 / 1707,
  22367. bottom: 68 / 1875
  22368. }
  22369. },
  22370. genitals: {
  22371. height: math.unit(2.2, "feet"),
  22372. name: "Genitals",
  22373. image: {
  22374. source: "./media/characters/sheera-castellar/genitals.svg"
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(8 + 4 / 12, "feet")
  22382. },
  22383. {
  22384. name: "Macro",
  22385. height: math.unit(150, "feet"),
  22386. default: true
  22387. },
  22388. {
  22389. name: "Macro+",
  22390. height: math.unit(800, "feet")
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22396. {
  22397. front: {
  22398. height: math.unit(6, "feet"),
  22399. weight: math.unit(150, "lb"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/jaipur/front.svg",
  22403. extra: 3860 / 3731,
  22404. bottom: 287 / 4140
  22405. }
  22406. },
  22407. back: {
  22408. height: math.unit(6, "feet"),
  22409. weight: math.unit(150, "lb"),
  22410. name: "Back",
  22411. image: {
  22412. source: "./media/characters/jaipur/back.svg",
  22413. extra: 4060 / 3930,
  22414. bottom: 151 / 4200
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(1.85, "meters"),
  22422. default: true
  22423. },
  22424. {
  22425. name: "Macro",
  22426. height: math.unit(150, "meters")
  22427. },
  22428. {
  22429. name: "Macro+",
  22430. height: math.unit(0.5, "miles")
  22431. },
  22432. {
  22433. name: "Macro++",
  22434. height: math.unit(2.5, "miles")
  22435. },
  22436. {
  22437. name: "Macro+++",
  22438. height: math.unit(12, "miles")
  22439. },
  22440. {
  22441. name: "Macro++++",
  22442. height: math.unit(120, "miles")
  22443. },
  22444. {
  22445. name: "Macro+++++",
  22446. height: math.unit(1200, "miles")
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22452. {
  22453. front: {
  22454. height: math.unit(6, "feet"),
  22455. weight: math.unit(150, "lb"),
  22456. name: "Front",
  22457. image: {
  22458. source: "./media/characters/sheila-wolf/front.svg",
  22459. extra: 1931 / 1808,
  22460. bottom: 29.5 / 1960
  22461. }
  22462. },
  22463. dick: {
  22464. height: math.unit(1.464, "feet"),
  22465. name: "Dick",
  22466. image: {
  22467. source: "./media/characters/sheila-wolf/dick.svg"
  22468. }
  22469. },
  22470. muzzle: {
  22471. height: math.unit(0.513, "feet"),
  22472. name: "Muzzle",
  22473. image: {
  22474. source: "./media/characters/sheila-wolf/muzzle.svg"
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Macro",
  22481. height: math.unit(70, "feet"),
  22482. default: true
  22483. },
  22484. ]
  22485. ))
  22486. characterMakers.push(() => makeCharacter(
  22487. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22488. {
  22489. front: {
  22490. height: math.unit(32, "meters"),
  22491. weight: math.unit(300000, "kg"),
  22492. name: "Front",
  22493. image: {
  22494. source: "./media/characters/almor/front.svg",
  22495. extra: 1408 / 1322,
  22496. bottom: 94.6 / 1506.5
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Macro",
  22503. height: math.unit(32, "meters"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(7, "feet"),
  22513. weight: math.unit(200, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/silver/front.svg",
  22517. extra: 472.1 / 450.5,
  22518. bottom: 26.5 / 499.424
  22519. }
  22520. },
  22521. },
  22522. [
  22523. {
  22524. name: "Normal",
  22525. height: math.unit(7, "feet"),
  22526. default: true
  22527. },
  22528. {
  22529. name: "Macro",
  22530. height: math.unit(800, "feet")
  22531. },
  22532. {
  22533. name: "Megamacro",
  22534. height: math.unit(250, "miles")
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22540. {
  22541. front: {
  22542. height: math.unit(6, "feet"),
  22543. weight: math.unit(150, "lb"),
  22544. name: "Front",
  22545. image: {
  22546. source: "./media/characters/pliskin/front.svg",
  22547. extra: 1469 / 1359,
  22548. bottom: 70 / 1540
  22549. }
  22550. },
  22551. },
  22552. [
  22553. {
  22554. name: "Micro",
  22555. height: math.unit(3, "inches")
  22556. },
  22557. {
  22558. name: "Normal",
  22559. height: math.unit(5 + 11 / 12, "feet"),
  22560. default: true
  22561. },
  22562. {
  22563. name: "Macro",
  22564. height: math.unit(120, "feet")
  22565. },
  22566. ]
  22567. ))
  22568. characterMakers.push(() => makeCharacter(
  22569. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22570. {
  22571. front: {
  22572. height: math.unit(6, "feet"),
  22573. weight: math.unit(150, "lb"),
  22574. name: "Front",
  22575. image: {
  22576. source: "./media/characters/sammy/front.svg",
  22577. extra: 1193 / 1089,
  22578. bottom: 30.5 / 1226
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Macro",
  22585. height: math.unit(1700, "feet"),
  22586. default: true
  22587. },
  22588. {
  22589. name: "Examacro",
  22590. height: math.unit(2.5e9, "lightyears")
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22596. {
  22597. front: {
  22598. height: math.unit(21, "meters"),
  22599. weight: math.unit(12, "tonnes"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/kuru/front.svg",
  22603. extra: 4301 / 3785,
  22604. bottom: 371.3 / 4691
  22605. }
  22606. },
  22607. },
  22608. [
  22609. {
  22610. name: "Macro",
  22611. height: math.unit(21, "meters"),
  22612. default: true
  22613. },
  22614. ]
  22615. ))
  22616. characterMakers.push(() => makeCharacter(
  22617. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22618. {
  22619. front: {
  22620. height: math.unit(23, "meters"),
  22621. weight: math.unit(12.2, "tonnes"),
  22622. name: "Front",
  22623. image: {
  22624. source: "./media/characters/rakka/front.svg",
  22625. extra: 4670 / 4169,
  22626. bottom: 301 / 4968.7
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "Macro",
  22633. height: math.unit(23, "meters"),
  22634. default: true
  22635. },
  22636. ]
  22637. ))
  22638. characterMakers.push(() => makeCharacter(
  22639. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22640. {
  22641. front: {
  22642. height: math.unit(6, "feet"),
  22643. weight: math.unit(150, "lb"),
  22644. name: "Front",
  22645. image: {
  22646. source: "./media/characters/rhys-feline/front.svg",
  22647. extra: 2488 / 2308,
  22648. bottom: 35.67 / 2519.19
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Really Small",
  22655. height: math.unit(1, "nm")
  22656. },
  22657. {
  22658. name: "Micro",
  22659. height: math.unit(4, "inches")
  22660. },
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(4 + 10 / 12, "feet"),
  22664. default: true
  22665. },
  22666. {
  22667. name: "Macro",
  22668. height: math.unit(100, "feet")
  22669. },
  22670. {
  22671. name: "Megamacto",
  22672. height: math.unit(50, "miles")
  22673. },
  22674. ]
  22675. ))
  22676. characterMakers.push(() => makeCharacter(
  22677. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22678. {
  22679. side: {
  22680. height: math.unit(30, "feet"),
  22681. weight: math.unit(35000, "kg"),
  22682. name: "Side",
  22683. image: {
  22684. source: "./media/characters/alydar/side.svg",
  22685. extra: 234 / 222,
  22686. bottom: 6.5 / 241
  22687. }
  22688. },
  22689. front: {
  22690. height: math.unit(30, "feet"),
  22691. weight: math.unit(35000, "kg"),
  22692. name: "Front",
  22693. image: {
  22694. source: "./media/characters/alydar/front.svg",
  22695. extra: 223.37 / 210.2,
  22696. bottom: 22.3 / 246.76
  22697. }
  22698. },
  22699. top: {
  22700. height: math.unit(64.54, "feet"),
  22701. weight: math.unit(35000, "kg"),
  22702. name: "Top",
  22703. image: {
  22704. source: "./media/characters/alydar/top.svg"
  22705. }
  22706. },
  22707. anthro: {
  22708. height: math.unit(30, "feet"),
  22709. weight: math.unit(9000, "kg"),
  22710. name: "Anthro",
  22711. image: {
  22712. source: "./media/characters/alydar/anthro.svg",
  22713. extra: 432 / 421,
  22714. bottom: 7.18 / 440
  22715. }
  22716. },
  22717. maw: {
  22718. height: math.unit(11.693, "feet"),
  22719. name: "Maw",
  22720. image: {
  22721. source: "./media/characters/alydar/maw.svg"
  22722. }
  22723. },
  22724. head: {
  22725. height: math.unit(11.693, "feet"),
  22726. name: "Head",
  22727. image: {
  22728. source: "./media/characters/alydar/head.svg"
  22729. }
  22730. },
  22731. headAlt: {
  22732. height: math.unit(12.861, "feet"),
  22733. name: "Head (Alt)",
  22734. image: {
  22735. source: "./media/characters/alydar/head-alt.svg"
  22736. }
  22737. },
  22738. wing: {
  22739. height: math.unit(20.712, "feet"),
  22740. name: "Wing",
  22741. image: {
  22742. source: "./media/characters/alydar/wing.svg"
  22743. }
  22744. },
  22745. wingFeather: {
  22746. height: math.unit(9.662, "feet"),
  22747. name: "Wing Feather",
  22748. image: {
  22749. source: "./media/characters/alydar/wing-feather.svg"
  22750. }
  22751. },
  22752. countourFeather: {
  22753. height: math.unit(4.154, "feet"),
  22754. name: "Contour Feather",
  22755. image: {
  22756. source: "./media/characters/alydar/contour-feather.svg"
  22757. }
  22758. },
  22759. },
  22760. [
  22761. {
  22762. name: "Diplomatic",
  22763. height: math.unit(13, "feet"),
  22764. default: true
  22765. },
  22766. {
  22767. name: "Small",
  22768. height: math.unit(30, "feet")
  22769. },
  22770. {
  22771. name: "Normal",
  22772. height: math.unit(95, "feet"),
  22773. default: true
  22774. },
  22775. {
  22776. name: "Large",
  22777. height: math.unit(285, "feet")
  22778. },
  22779. {
  22780. name: "Incomprehensible",
  22781. height: math.unit(450, "megameters")
  22782. },
  22783. ]
  22784. ))
  22785. characterMakers.push(() => makeCharacter(
  22786. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22787. {
  22788. side: {
  22789. height: math.unit(11, "feet"),
  22790. weight: math.unit(1750, "kg"),
  22791. name: "Side",
  22792. image: {
  22793. source: "./media/characters/selicia/side.svg",
  22794. extra: 440 / 396,
  22795. bottom: 24.8 / 465.979
  22796. }
  22797. },
  22798. maw: {
  22799. height: math.unit(4.665, "feet"),
  22800. name: "Maw",
  22801. image: {
  22802. source: "./media/characters/selicia/maw.svg"
  22803. }
  22804. },
  22805. },
  22806. [
  22807. {
  22808. name: "Normal",
  22809. height: math.unit(11, "feet"),
  22810. default: true
  22811. },
  22812. ]
  22813. ))
  22814. characterMakers.push(() => makeCharacter(
  22815. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22816. {
  22817. side: {
  22818. height: math.unit(2 + 6 / 12, "feet"),
  22819. weight: math.unit(30, "lb"),
  22820. name: "Side",
  22821. image: {
  22822. source: "./media/characters/layla/side.svg",
  22823. extra: 244 / 188,
  22824. bottom: 18.2 / 262.1
  22825. }
  22826. },
  22827. back: {
  22828. height: math.unit(2 + 6 / 12, "feet"),
  22829. weight: math.unit(30, "lb"),
  22830. name: "Back",
  22831. image: {
  22832. source: "./media/characters/layla/back.svg",
  22833. extra: 308 / 241.5,
  22834. bottom: 8.9 / 316.8
  22835. }
  22836. },
  22837. cumming: {
  22838. height: math.unit(2 + 6 / 12, "feet"),
  22839. weight: math.unit(30, "lb"),
  22840. name: "Cumming",
  22841. image: {
  22842. source: "./media/characters/layla/cumming.svg",
  22843. extra: 342 / 279,
  22844. bottom: 595 / 938
  22845. }
  22846. },
  22847. dickFlaccid: {
  22848. height: math.unit(2.595, "feet"),
  22849. name: "Flaccid Genitals",
  22850. image: {
  22851. source: "./media/characters/layla/dick-flaccid.svg"
  22852. }
  22853. },
  22854. dickErect: {
  22855. height: math.unit(2.359, "feet"),
  22856. name: "Erect Genitals",
  22857. image: {
  22858. source: "./media/characters/layla/dick-erect.svg"
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Micro",
  22865. height: math.unit(1, "inch")
  22866. },
  22867. {
  22868. name: "Small",
  22869. height: math.unit(1, "foot")
  22870. },
  22871. {
  22872. name: "Normal",
  22873. height: math.unit(2 + 6 / 12, "feet"),
  22874. default: true
  22875. },
  22876. {
  22877. name: "Macro",
  22878. height: math.unit(200, "feet")
  22879. },
  22880. {
  22881. name: "Megamacro",
  22882. height: math.unit(1000, "miles")
  22883. },
  22884. {
  22885. name: "Planetary",
  22886. height: math.unit(8000, "miles")
  22887. },
  22888. {
  22889. name: "True Layla",
  22890. height: math.unit(200000 * 7, "multiverses")
  22891. },
  22892. ]
  22893. ))
  22894. characterMakers.push(() => makeCharacter(
  22895. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22896. {
  22897. back: {
  22898. height: math.unit(10.5, "feet"),
  22899. weight: math.unit(800, "lb"),
  22900. name: "Back",
  22901. image: {
  22902. source: "./media/characters/knox/back.svg",
  22903. extra: 1486 / 1089,
  22904. bottom: 107 / 1601.4
  22905. }
  22906. },
  22907. side: {
  22908. height: math.unit(10.5, "feet"),
  22909. weight: math.unit(800, "lb"),
  22910. name: "Side",
  22911. image: {
  22912. source: "./media/characters/knox/side.svg",
  22913. extra: 244 / 218,
  22914. bottom: 14 / 260
  22915. }
  22916. },
  22917. },
  22918. [
  22919. {
  22920. name: "Compact",
  22921. height: math.unit(10.5, "feet"),
  22922. default: true
  22923. },
  22924. {
  22925. name: "Dynamax",
  22926. height: math.unit(210, "feet")
  22927. },
  22928. {
  22929. name: "Full Macro",
  22930. height: math.unit(850, "feet")
  22931. },
  22932. ]
  22933. ))
  22934. characterMakers.push(() => makeCharacter(
  22935. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22936. {
  22937. front: {
  22938. height: math.unit(6, "feet"),
  22939. weight: math.unit(152, "lb"),
  22940. name: "Front",
  22941. image: {
  22942. source: "./media/characters/shin-pikachu/front.svg",
  22943. extra: 1574 / 1480,
  22944. bottom: 53.3 / 1626
  22945. }
  22946. },
  22947. hand: {
  22948. height: math.unit(1.055, "feet"),
  22949. name: "Hand",
  22950. image: {
  22951. source: "./media/characters/shin-pikachu/hand.svg"
  22952. }
  22953. },
  22954. foot: {
  22955. height: math.unit(1.1, "feet"),
  22956. name: "Foot",
  22957. image: {
  22958. source: "./media/characters/shin-pikachu/foot.svg"
  22959. }
  22960. },
  22961. collar: {
  22962. height: math.unit(0.386, "feet"),
  22963. name: "Collar",
  22964. image: {
  22965. source: "./media/characters/shin-pikachu/collar.svg"
  22966. }
  22967. },
  22968. },
  22969. [
  22970. {
  22971. name: "Smallest",
  22972. height: math.unit(0.5, "inches")
  22973. },
  22974. {
  22975. name: "Micro",
  22976. height: math.unit(6, "inches")
  22977. },
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(6, "feet"),
  22981. default: true
  22982. },
  22983. {
  22984. name: "Macro",
  22985. height: math.unit(150, "feet")
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22991. {
  22992. front: {
  22993. height: math.unit(28, "feet"),
  22994. weight: math.unit(10500, "lb"),
  22995. name: "Front",
  22996. image: {
  22997. source: "./media/characters/kayda/front.svg",
  22998. extra: 1536 / 1428,
  22999. bottom: 68.7 / 1603
  23000. }
  23001. },
  23002. back: {
  23003. height: math.unit(28, "feet"),
  23004. weight: math.unit(10500, "lb"),
  23005. name: "Back",
  23006. image: {
  23007. source: "./media/characters/kayda/back.svg",
  23008. extra: 1557 / 1464,
  23009. bottom: 39.5 / 1597.49
  23010. }
  23011. },
  23012. dick: {
  23013. height: math.unit(3.858, "feet"),
  23014. name: "Dick",
  23015. image: {
  23016. source: "./media/characters/kayda/dick.svg"
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Macro",
  23023. height: math.unit(28, "feet"),
  23024. default: true
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23030. {
  23031. front: {
  23032. height: math.unit(10 + 11 / 12, "feet"),
  23033. weight: math.unit(1400, "lb"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/brian/front.svg",
  23037. extra: 737 / 692,
  23038. bottom: 55.4 / 785
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Normal",
  23045. height: math.unit(10 + 11 / 12, "feet"),
  23046. default: true
  23047. },
  23048. ]
  23049. ))
  23050. characterMakers.push(() => makeCharacter(
  23051. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23052. {
  23053. front: {
  23054. height: math.unit(5 + 8 / 12, "feet"),
  23055. weight: math.unit(140, "lb"),
  23056. name: "Front",
  23057. image: {
  23058. source: "./media/characters/khemri/front.svg",
  23059. extra: 4780 / 4059,
  23060. bottom: 80.1 / 4859.25
  23061. }
  23062. },
  23063. },
  23064. [
  23065. {
  23066. name: "Micro",
  23067. height: math.unit(6, "inches")
  23068. },
  23069. {
  23070. name: "Normal",
  23071. height: math.unit(5 + 8 / 12, "feet"),
  23072. default: true
  23073. },
  23074. ]
  23075. ))
  23076. characterMakers.push(() => makeCharacter(
  23077. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23078. {
  23079. front: {
  23080. height: math.unit(13, "feet"),
  23081. weight: math.unit(1700, "lb"),
  23082. name: "Front",
  23083. image: {
  23084. source: "./media/characters/felix-braveheart/front.svg",
  23085. extra: 1222 / 1157,
  23086. bottom: 53.2 / 1280
  23087. }
  23088. },
  23089. back: {
  23090. height: math.unit(13, "feet"),
  23091. weight: math.unit(1700, "lb"),
  23092. name: "Back",
  23093. image: {
  23094. source: "./media/characters/felix-braveheart/back.svg",
  23095. extra: 1277 / 1203,
  23096. bottom: 50.2 / 1327
  23097. }
  23098. },
  23099. feral: {
  23100. height: math.unit(6, "feet"),
  23101. weight: math.unit(400, "lb"),
  23102. name: "Feral",
  23103. image: {
  23104. source: "./media/characters/felix-braveheart/feral.svg",
  23105. extra: 682 / 625,
  23106. bottom: 6.9 / 688
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Normal",
  23113. height: math.unit(13, "feet"),
  23114. default: true
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23120. {
  23121. side: {
  23122. height: math.unit(5 + 11 / 12, "feet"),
  23123. weight: math.unit(1400, "lb"),
  23124. name: "Side",
  23125. image: {
  23126. source: "./media/characters/shadow-blade/side.svg",
  23127. extra: 1726 / 1267,
  23128. bottom: 58.4 / 1785
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Normal",
  23135. height: math.unit(5 + 11 / 12, "feet"),
  23136. default: true
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(1 + 6 / 12, "feet"),
  23145. weight: math.unit(25, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/karla-halldor/front.svg",
  23149. extra: 1459 / 1383,
  23150. bottom: 12 / 1472
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(1 + 6 / 12, "feet"),
  23158. default: true
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23164. {
  23165. front: {
  23166. height: math.unit(6 + 2 / 12, "feet"),
  23167. weight: math.unit(160, "lb"),
  23168. name: "Front",
  23169. image: {
  23170. source: "./media/characters/ariam/front.svg",
  23171. extra: 714 / 617,
  23172. bottom: 23.4 / 737,
  23173. }
  23174. },
  23175. squatting: {
  23176. height: math.unit(4.1, "feet"),
  23177. weight: math.unit(160, "lb"),
  23178. name: "Squatting",
  23179. image: {
  23180. source: "./media/characters/ariam/squatting.svg",
  23181. extra: 2617 / 2112,
  23182. bottom: 61.2 / 2681,
  23183. }
  23184. },
  23185. },
  23186. [
  23187. {
  23188. name: "Normal",
  23189. height: math.unit(6 + 2 / 12, "feet"),
  23190. default: true
  23191. },
  23192. {
  23193. name: "Normal+",
  23194. height: math.unit(4, "meters")
  23195. },
  23196. {
  23197. name: "Macro",
  23198. height: math.unit(50, "meters")
  23199. },
  23200. {
  23201. name: "Macro+",
  23202. height: math.unit(100, "meters")
  23203. },
  23204. {
  23205. name: "Megamacro",
  23206. height: math.unit(20, "km")
  23207. },
  23208. ]
  23209. ))
  23210. characterMakers.push(() => makeCharacter(
  23211. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23212. {
  23213. front: {
  23214. height: math.unit(1.67, "meters"),
  23215. weight: math.unit(140, "lb"),
  23216. name: "Front",
  23217. image: {
  23218. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23219. extra: 438 / 410,
  23220. bottom: 0.75 / 439
  23221. }
  23222. },
  23223. },
  23224. [
  23225. {
  23226. name: "Shrunken",
  23227. height: math.unit(7.6, "cm")
  23228. },
  23229. {
  23230. name: "Human Scale",
  23231. height: math.unit(1.67, "meters")
  23232. },
  23233. {
  23234. name: "Wolxi Scale",
  23235. height: math.unit(36.7, "meters"),
  23236. default: true
  23237. },
  23238. ]
  23239. ))
  23240. characterMakers.push(() => makeCharacter(
  23241. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23242. {
  23243. front: {
  23244. height: math.unit(1.73, "meters"),
  23245. weight: math.unit(240, "lb"),
  23246. name: "Front",
  23247. image: {
  23248. source: "./media/characters/izue-two-mothers/front.svg",
  23249. extra: 469 / 437,
  23250. bottom: 1.24 / 470.6
  23251. }
  23252. },
  23253. },
  23254. [
  23255. {
  23256. name: "Shrunken",
  23257. height: math.unit(7.86, "cm")
  23258. },
  23259. {
  23260. name: "Human Scale",
  23261. height: math.unit(1.73, "meters")
  23262. },
  23263. {
  23264. name: "Wolxi Scale",
  23265. height: math.unit(38, "meters"),
  23266. default: true
  23267. },
  23268. ]
  23269. ))
  23270. characterMakers.push(() => makeCharacter(
  23271. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23272. {
  23273. front: {
  23274. height: math.unit(1.55, "meters"),
  23275. weight: math.unit(120, "lb"),
  23276. name: "Front",
  23277. image: {
  23278. source: "./media/characters/teeku-love-shack/front.svg",
  23279. extra: 387 / 362,
  23280. bottom: 1.51 / 388
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Shrunken",
  23287. height: math.unit(7, "cm")
  23288. },
  23289. {
  23290. name: "Human Scale",
  23291. height: math.unit(1.55, "meters")
  23292. },
  23293. {
  23294. name: "Wolxi Scale",
  23295. height: math.unit(34.1, "meters"),
  23296. default: true
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23302. {
  23303. front: {
  23304. height: math.unit(1.83, "meters"),
  23305. weight: math.unit(135, "lb"),
  23306. name: "Front",
  23307. image: {
  23308. source: "./media/characters/dejma-the-red/front.svg",
  23309. extra: 480 / 458,
  23310. bottom: 1.8 / 482
  23311. }
  23312. },
  23313. },
  23314. [
  23315. {
  23316. name: "Shrunken",
  23317. height: math.unit(8.3, "cm")
  23318. },
  23319. {
  23320. name: "Human Scale",
  23321. height: math.unit(1.83, "meters")
  23322. },
  23323. {
  23324. name: "Wolxi Scale",
  23325. height: math.unit(40, "meters"),
  23326. default: true
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23332. {
  23333. front: {
  23334. height: math.unit(1.78, "meters"),
  23335. weight: math.unit(65, "kg"),
  23336. name: "Front",
  23337. image: {
  23338. source: "./media/characters/aki/front.svg",
  23339. extra: 452 / 415
  23340. }
  23341. },
  23342. frontNsfw: {
  23343. height: math.unit(1.78, "meters"),
  23344. weight: math.unit(65, "kg"),
  23345. name: "Front (NSFW)",
  23346. image: {
  23347. source: "./media/characters/aki/front-nsfw.svg",
  23348. extra: 452 / 415
  23349. }
  23350. },
  23351. back: {
  23352. height: math.unit(1.78, "meters"),
  23353. weight: math.unit(65, "kg"),
  23354. name: "Back",
  23355. image: {
  23356. source: "./media/characters/aki/back.svg",
  23357. extra: 452 / 415
  23358. }
  23359. },
  23360. rump: {
  23361. height: math.unit(2.05, "feet"),
  23362. name: "Rump",
  23363. image: {
  23364. source: "./media/characters/aki/rump.svg"
  23365. }
  23366. },
  23367. dick: {
  23368. height: math.unit(0.95, "feet"),
  23369. name: "Dick",
  23370. image: {
  23371. source: "./media/characters/aki/dick.svg"
  23372. }
  23373. },
  23374. },
  23375. [
  23376. {
  23377. name: "Micro",
  23378. height: math.unit(15, "cm")
  23379. },
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(178, "cm"),
  23383. default: true
  23384. },
  23385. {
  23386. name: "Macro",
  23387. height: math.unit(214, "m")
  23388. },
  23389. {
  23390. name: "Macro+",
  23391. height: math.unit(534, "m")
  23392. },
  23393. ]
  23394. ))
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(5 + 5 / 12, "feet"),
  23400. weight: math.unit(120, "lb"),
  23401. name: "Front",
  23402. image: {
  23403. source: "./media/characters/ari/front.svg",
  23404. extra: 714.5 / 682,
  23405. bottom: 8 / 722.5
  23406. }
  23407. },
  23408. },
  23409. [
  23410. {
  23411. name: "Normal",
  23412. height: math.unit(5 + 5 / 12, "feet")
  23413. },
  23414. {
  23415. name: "Macro",
  23416. height: math.unit(100, "feet"),
  23417. default: true
  23418. },
  23419. {
  23420. name: "Megamacro",
  23421. height: math.unit(100, "miles")
  23422. },
  23423. {
  23424. name: "Gigamacro",
  23425. height: math.unit(80000, "miles")
  23426. },
  23427. ]
  23428. ))
  23429. characterMakers.push(() => makeCharacter(
  23430. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23431. {
  23432. side: {
  23433. height: math.unit(9, "feet"),
  23434. weight: math.unit(400, "kg"),
  23435. name: "Side",
  23436. image: {
  23437. source: "./media/characters/bolt/side.svg",
  23438. extra: 1126 / 896,
  23439. bottom: 60 / 1187.3,
  23440. }
  23441. },
  23442. },
  23443. [
  23444. {
  23445. name: "Micro",
  23446. height: math.unit(5, "inches")
  23447. },
  23448. {
  23449. name: "Normal",
  23450. height: math.unit(9, "feet"),
  23451. default: true
  23452. },
  23453. {
  23454. name: "Macro",
  23455. height: math.unit(700, "feet")
  23456. },
  23457. {
  23458. name: "Max Size",
  23459. height: math.unit(1.52e22, "yottameters")
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23465. {
  23466. front: {
  23467. height: math.unit(4.53, "meters"),
  23468. weight: math.unit(3, "tons"),
  23469. name: "Front",
  23470. image: {
  23471. source: "./media/characters/draekon-sylviar/front.svg",
  23472. extra: 1228 / 1068,
  23473. bottom: 41 / 1270
  23474. }
  23475. },
  23476. tail: {
  23477. height: math.unit(1.772, "meter"),
  23478. name: "Tail",
  23479. image: {
  23480. source: "./media/characters/draekon-sylviar/tail.svg"
  23481. }
  23482. },
  23483. head: {
  23484. height: math.unit(1.331, "meter"),
  23485. name: "Head",
  23486. image: {
  23487. source: "./media/characters/draekon-sylviar/head.svg"
  23488. }
  23489. },
  23490. hand: {
  23491. height: math.unit(0.564, "meter"),
  23492. name: "Hand",
  23493. image: {
  23494. source: "./media/characters/draekon-sylviar/hand.svg"
  23495. }
  23496. },
  23497. foot: {
  23498. height: math.unit(0.621, "meter"),
  23499. name: "Foot",
  23500. image: {
  23501. source: "./media/characters/draekon-sylviar/foot.svg",
  23502. bottom: 32 / 324
  23503. }
  23504. },
  23505. dick: {
  23506. height: math.unit(61, "cm"),
  23507. name: "Dick",
  23508. image: {
  23509. source: "./media/characters/draekon-sylviar/dick.svg"
  23510. }
  23511. },
  23512. dickseparated: {
  23513. height: math.unit(61, "cm"),
  23514. name: "Dick-separated",
  23515. image: {
  23516. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Small",
  23523. height: math.unit(4.53 / 2, "meters"),
  23524. default: true
  23525. },
  23526. {
  23527. name: "Normal",
  23528. height: math.unit(4.53, "meters"),
  23529. default: true
  23530. },
  23531. {
  23532. name: "Large",
  23533. height: math.unit(4.53 * 2, "meters"),
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23539. {
  23540. front: {
  23541. height: math.unit(6 + 2 / 12, "feet"),
  23542. weight: math.unit(180, "lb"),
  23543. name: "Front",
  23544. image: {
  23545. source: "./media/characters/brawler/front.svg",
  23546. extra: 3301 / 3027,
  23547. bottom: 138 / 3439
  23548. }
  23549. },
  23550. },
  23551. [
  23552. {
  23553. name: "Normal",
  23554. height: math.unit(6 + 2 / 12, "feet"),
  23555. default: true
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23561. {
  23562. front: {
  23563. height: math.unit(11, "feet"),
  23564. weight: math.unit(1000, "lb"),
  23565. name: "Front",
  23566. image: {
  23567. source: "./media/characters/alex/front.svg",
  23568. bottom: 44.5 / 620
  23569. }
  23570. },
  23571. },
  23572. [
  23573. {
  23574. name: "Micro",
  23575. height: math.unit(5, "inches")
  23576. },
  23577. {
  23578. name: "Normal",
  23579. height: math.unit(11, "feet"),
  23580. default: true
  23581. },
  23582. {
  23583. name: "Macro",
  23584. height: math.unit(9.5e9, "feet")
  23585. },
  23586. {
  23587. name: "Max Size",
  23588. height: math.unit(1.4e283, "yottameters")
  23589. },
  23590. ]
  23591. ))
  23592. characterMakers.push(() => makeCharacter(
  23593. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23594. {
  23595. female: {
  23596. height: math.unit(29.9, "m"),
  23597. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23598. name: "Female",
  23599. image: {
  23600. source: "./media/characters/zenari/female.svg",
  23601. extra: 3281.6 / 3217,
  23602. bottom: 72.2 / 3353
  23603. }
  23604. },
  23605. male: {
  23606. height: math.unit(27.7, "m"),
  23607. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23608. name: "Male",
  23609. image: {
  23610. source: "./media/characters/zenari/male.svg",
  23611. extra: 3008 / 2991,
  23612. bottom: 54.6 / 3069
  23613. }
  23614. },
  23615. },
  23616. [
  23617. {
  23618. name: "Macro",
  23619. height: math.unit(29.7, "meters"),
  23620. default: true
  23621. },
  23622. ]
  23623. ))
  23624. characterMakers.push(() => makeCharacter(
  23625. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23626. {
  23627. female: {
  23628. height: math.unit(23.8, "m"),
  23629. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23630. name: "Female",
  23631. image: {
  23632. source: "./media/characters/mactarian/female.svg",
  23633. extra: 2662 / 2569,
  23634. bottom: 73 / 2736
  23635. }
  23636. },
  23637. male: {
  23638. height: math.unit(23.8, "m"),
  23639. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23640. name: "Male",
  23641. image: {
  23642. source: "./media/characters/mactarian/male.svg",
  23643. extra: 2673 / 2600,
  23644. bottom: 76 / 2750
  23645. }
  23646. },
  23647. },
  23648. [
  23649. {
  23650. name: "Macro",
  23651. height: math.unit(23.8, "meters"),
  23652. default: true
  23653. },
  23654. ]
  23655. ))
  23656. characterMakers.push(() => makeCharacter(
  23657. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23658. {
  23659. female: {
  23660. height: math.unit(19.3, "m"),
  23661. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23662. name: "Female",
  23663. image: {
  23664. source: "./media/characters/umok/female.svg",
  23665. extra: 2186 / 2078,
  23666. bottom: 87 / 2277
  23667. }
  23668. },
  23669. male: {
  23670. height: math.unit(19.5, "m"),
  23671. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23672. name: "Male",
  23673. image: {
  23674. source: "./media/characters/umok/male.svg",
  23675. extra: 2233 / 2140,
  23676. bottom: 24.4 / 2258
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Macro",
  23683. height: math.unit(19.3, "meters"),
  23684. default: true
  23685. },
  23686. ]
  23687. ))
  23688. characterMakers.push(() => makeCharacter(
  23689. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23690. {
  23691. female: {
  23692. height: math.unit(26.15, "m"),
  23693. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23694. name: "Female",
  23695. image: {
  23696. source: "./media/characters/joraxian/female.svg",
  23697. extra: 2912 / 2824,
  23698. bottom: 36 / 2956
  23699. }
  23700. },
  23701. male: {
  23702. height: math.unit(25.4, "m"),
  23703. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23704. name: "Male",
  23705. image: {
  23706. source: "./media/characters/joraxian/male.svg",
  23707. extra: 2877 / 2721,
  23708. bottom: 82 / 2967
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Macro",
  23715. height: math.unit(26.15, "meters"),
  23716. default: true
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23722. {
  23723. female: {
  23724. height: math.unit(21.6, "m"),
  23725. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23726. name: "Female",
  23727. image: {
  23728. source: "./media/characters/sthara/female.svg",
  23729. extra: 2516 / 2347,
  23730. bottom: 21.5 / 2537
  23731. }
  23732. },
  23733. male: {
  23734. height: math.unit(24, "m"),
  23735. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23736. name: "Male",
  23737. image: {
  23738. source: "./media/characters/sthara/male.svg",
  23739. extra: 2732 / 2607,
  23740. bottom: 23 / 2732
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Macro",
  23747. height: math.unit(21.6, "meters"),
  23748. default: true
  23749. },
  23750. ]
  23751. ))
  23752. characterMakers.push(() => makeCharacter(
  23753. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23754. {
  23755. front: {
  23756. height: math.unit(6 + 4 / 12, "feet"),
  23757. weight: math.unit(175, "lb"),
  23758. name: "Front",
  23759. image: {
  23760. source: "./media/characters/luka-bryzant/front.svg",
  23761. extra: 311 / 289,
  23762. bottom: 4 / 315
  23763. }
  23764. },
  23765. back: {
  23766. height: math.unit(6 + 4 / 12, "feet"),
  23767. weight: math.unit(175, "lb"),
  23768. name: "Back",
  23769. image: {
  23770. source: "./media/characters/luka-bryzant/back.svg",
  23771. extra: 311 / 289,
  23772. bottom: 3.8 / 313.7
  23773. }
  23774. },
  23775. },
  23776. [
  23777. {
  23778. name: "Micro",
  23779. height: math.unit(10, "inches")
  23780. },
  23781. {
  23782. name: "Normal",
  23783. height: math.unit(6 + 4 / 12, "feet"),
  23784. default: true
  23785. },
  23786. {
  23787. name: "Large",
  23788. height: math.unit(12, "feet")
  23789. },
  23790. ]
  23791. ))
  23792. characterMakers.push(() => makeCharacter(
  23793. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23794. {
  23795. front: {
  23796. height: math.unit(5 + 7 / 12, "feet"),
  23797. weight: math.unit(185, "lb"),
  23798. name: "Front",
  23799. image: {
  23800. source: "./media/characters/aman-aquila/front.svg",
  23801. extra: 1013 / 976,
  23802. bottom: 45.6 / 1057
  23803. }
  23804. },
  23805. side: {
  23806. height: math.unit(5 + 7 / 12, "feet"),
  23807. weight: math.unit(185, "lb"),
  23808. name: "Side",
  23809. image: {
  23810. source: "./media/characters/aman-aquila/side.svg",
  23811. extra: 1054 / 1011,
  23812. bottom: 15 / 1070
  23813. }
  23814. },
  23815. back: {
  23816. height: math.unit(5 + 7 / 12, "feet"),
  23817. weight: math.unit(185, "lb"),
  23818. name: "Back",
  23819. image: {
  23820. source: "./media/characters/aman-aquila/back.svg",
  23821. extra: 1026 / 970,
  23822. bottom: 12 / 1039
  23823. }
  23824. },
  23825. head: {
  23826. height: math.unit(1.211, "feet"),
  23827. name: "Head",
  23828. image: {
  23829. source: "./media/characters/aman-aquila/head.svg",
  23830. }
  23831. },
  23832. },
  23833. [
  23834. {
  23835. name: "Minimicro",
  23836. height: math.unit(0.057, "inches")
  23837. },
  23838. {
  23839. name: "Micro",
  23840. height: math.unit(7, "inches")
  23841. },
  23842. {
  23843. name: "Mini",
  23844. height: math.unit(3 + 7 / 12, "feet")
  23845. },
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(5 + 7 / 12, "feet"),
  23849. default: true
  23850. },
  23851. {
  23852. name: "Macro",
  23853. height: math.unit(157 + 7 / 12, "feet")
  23854. },
  23855. {
  23856. name: "Megamacro",
  23857. height: math.unit(1557 + 7 / 12, "feet")
  23858. },
  23859. {
  23860. name: "Gigamacro",
  23861. height: math.unit(15557 + 7 / 12, "feet")
  23862. },
  23863. ]
  23864. ))
  23865. characterMakers.push(() => makeCharacter(
  23866. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23867. {
  23868. front: {
  23869. height: math.unit(3 + 2 / 12, "inches"),
  23870. weight: math.unit(0.3, "ounces"),
  23871. name: "Front",
  23872. image: {
  23873. source: "./media/characters/hiphae/front.svg",
  23874. extra: 1931 / 1683,
  23875. bottom: 24 / 1955
  23876. }
  23877. },
  23878. },
  23879. [
  23880. {
  23881. name: "Normal",
  23882. height: math.unit(3 + 1 / 2, "inches"),
  23883. default: true
  23884. },
  23885. ]
  23886. ))
  23887. characterMakers.push(() => makeCharacter(
  23888. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23889. {
  23890. front: {
  23891. height: math.unit(5 + 10 / 12, "feet"),
  23892. weight: math.unit(165, "lb"),
  23893. name: "Front",
  23894. image: {
  23895. source: "./media/characters/nicky/front.svg",
  23896. extra: 3144 / 2886,
  23897. bottom: 45.6 / 3192
  23898. }
  23899. },
  23900. back: {
  23901. height: math.unit(5 + 10 / 12, "feet"),
  23902. weight: math.unit(165, "lb"),
  23903. name: "Back",
  23904. image: {
  23905. source: "./media/characters/nicky/back.svg",
  23906. extra: 3055 / 2804,
  23907. bottom: 28.4 / 3087
  23908. }
  23909. },
  23910. frontclothed: {
  23911. height: math.unit(5 + 10 / 12, "feet"),
  23912. weight: math.unit(165, "lb"),
  23913. name: "Front-clothed",
  23914. image: {
  23915. source: "./media/characters/nicky/front-clothed.svg",
  23916. extra: 3184.9 / 2926.9,
  23917. bottom: 86.5 / 3239.9
  23918. }
  23919. },
  23920. foot: {
  23921. height: math.unit(1.16, "feet"),
  23922. name: "Foot",
  23923. image: {
  23924. source: "./media/characters/nicky/foot.svg"
  23925. }
  23926. },
  23927. feet: {
  23928. height: math.unit(1.34, "feet"),
  23929. name: "Feet",
  23930. image: {
  23931. source: "./media/characters/nicky/feet.svg"
  23932. }
  23933. },
  23934. maw: {
  23935. height: math.unit(0.9, "feet"),
  23936. name: "Maw",
  23937. image: {
  23938. source: "./media/characters/nicky/maw.svg"
  23939. }
  23940. },
  23941. },
  23942. [
  23943. {
  23944. name: "Normal",
  23945. height: math.unit(5 + 10 / 12, "feet"),
  23946. default: true
  23947. },
  23948. {
  23949. name: "Macro",
  23950. height: math.unit(60, "feet")
  23951. },
  23952. {
  23953. name: "Megamacro",
  23954. height: math.unit(1, "mile")
  23955. },
  23956. ]
  23957. ))
  23958. characterMakers.push(() => makeCharacter(
  23959. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23960. {
  23961. side: {
  23962. height: math.unit(10, "feet"),
  23963. weight: math.unit(600, "lb"),
  23964. name: "Side",
  23965. image: {
  23966. source: "./media/characters/blair/side.svg",
  23967. bottom: 16.6 / 475,
  23968. extra: 458 / 431
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Micro",
  23975. height: math.unit(8, "inches")
  23976. },
  23977. {
  23978. name: "Normal",
  23979. height: math.unit(10, "feet"),
  23980. default: true
  23981. },
  23982. {
  23983. name: "Macro",
  23984. height: math.unit(180, "feet")
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(5 + 4 / 12, "feet"),
  23993. weight: math.unit(125, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/fisher/front.svg",
  23997. extra: 444 / 390,
  23998. bottom: 2 / 444.8
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Micro",
  24005. height: math.unit(4, "inches")
  24006. },
  24007. {
  24008. name: "Normal",
  24009. height: math.unit(5 + 4 / 12, "feet"),
  24010. default: true
  24011. },
  24012. {
  24013. name: "Macro",
  24014. height: math.unit(100, "feet")
  24015. },
  24016. ]
  24017. ))
  24018. characterMakers.push(() => makeCharacter(
  24019. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24020. {
  24021. front: {
  24022. height: math.unit(6.71, "feet"),
  24023. weight: math.unit(200, "lb"),
  24024. capacity: math.unit(1000000, "people"),
  24025. name: "Front",
  24026. image: {
  24027. source: "./media/characters/gliss/front.svg",
  24028. extra: 2347 / 2231,
  24029. bottom: 113 / 2462
  24030. }
  24031. },
  24032. hammerspaceSize: {
  24033. height: math.unit(6.71 * 717, "feet"),
  24034. weight: math.unit(200, "lb"),
  24035. capacity: math.unit(1000000, "people"),
  24036. name: "Hammerspace Size",
  24037. image: {
  24038. source: "./media/characters/gliss/front.svg",
  24039. extra: 2347 / 2231,
  24040. bottom: 113 / 2462
  24041. }
  24042. },
  24043. },
  24044. [
  24045. {
  24046. name: "Normal",
  24047. height: math.unit(6.71, "feet"),
  24048. default: true
  24049. },
  24050. ]
  24051. ))
  24052. characterMakers.push(() => makeCharacter(
  24053. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24054. {
  24055. side: {
  24056. height: math.unit(1.44, "m"),
  24057. weight: math.unit(80, "kg"),
  24058. name: "Side",
  24059. image: {
  24060. source: "./media/characters/dune-anderson/side.svg",
  24061. bottom: 49 / 1426
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "Wolf-sized",
  24068. height: math.unit(1.44, "meters")
  24069. },
  24070. {
  24071. name: "Normal",
  24072. height: math.unit(5.05, "meters"),
  24073. default: true
  24074. },
  24075. {
  24076. name: "Big",
  24077. height: math.unit(14.4, "meters")
  24078. },
  24079. {
  24080. name: "Huge",
  24081. height: math.unit(144, "meters")
  24082. },
  24083. ]
  24084. ))
  24085. characterMakers.push(() => makeCharacter(
  24086. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24087. {
  24088. front: {
  24089. height: math.unit(7, "feet"),
  24090. weight: math.unit(425, "lb"),
  24091. name: "Front",
  24092. image: {
  24093. source: "./media/characters/hind/front.svg",
  24094. extra: 2091 / 1860,
  24095. bottom: 129 / 2220
  24096. }
  24097. },
  24098. back: {
  24099. height: math.unit(7, "feet"),
  24100. weight: math.unit(425, "lb"),
  24101. name: "Back",
  24102. image: {
  24103. source: "./media/characters/hind/back.svg",
  24104. extra: 2091 / 1860,
  24105. bottom: 24.6 / 2309
  24106. }
  24107. },
  24108. tail: {
  24109. height: math.unit(2.8, "feet"),
  24110. name: "Tail",
  24111. image: {
  24112. source: "./media/characters/hind/tail.svg"
  24113. }
  24114. },
  24115. head: {
  24116. height: math.unit(2.55, "feet"),
  24117. name: "Head",
  24118. image: {
  24119. source: "./media/characters/hind/head.svg"
  24120. }
  24121. },
  24122. },
  24123. [
  24124. {
  24125. name: "XS",
  24126. height: math.unit(0.7, "feet")
  24127. },
  24128. {
  24129. name: "Normal",
  24130. height: math.unit(7, "feet"),
  24131. default: true
  24132. },
  24133. {
  24134. name: "XL",
  24135. height: math.unit(70, "feet")
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(6, "feet"),
  24144. weight: math.unit(150, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/dylan-skaven/front.svg",
  24148. extra: 2318 / 2063,
  24149. bottom: 93.4 / 2410
  24150. }
  24151. },
  24152. },
  24153. [
  24154. {
  24155. name: "Nano",
  24156. height: math.unit(1, "mm")
  24157. },
  24158. {
  24159. name: "Micro",
  24160. height: math.unit(1, "cm")
  24161. },
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(2.1, "meters"),
  24165. default: true
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24171. {
  24172. front: {
  24173. height: math.unit(7 + 5 / 12, "feet"),
  24174. weight: math.unit(357, "lb"),
  24175. name: "Front",
  24176. image: {
  24177. source: "./media/characters/solex-draconov/front.svg",
  24178. extra: 1993 / 1865,
  24179. bottom: 117 / 2111
  24180. }
  24181. },
  24182. },
  24183. [
  24184. {
  24185. name: "Natural Height",
  24186. height: math.unit(7 + 5 / 12, "feet"),
  24187. default: true
  24188. },
  24189. {
  24190. name: "Macro",
  24191. height: math.unit(350, "feet")
  24192. },
  24193. {
  24194. name: "Macro+",
  24195. height: math.unit(1000, "feet")
  24196. },
  24197. {
  24198. name: "Megamacro",
  24199. height: math.unit(20, "km")
  24200. },
  24201. {
  24202. name: "Megamacro+",
  24203. height: math.unit(1000, "km")
  24204. },
  24205. {
  24206. name: "Gigamacro",
  24207. height: math.unit(2.5, "Gm")
  24208. },
  24209. {
  24210. name: "Teramacro",
  24211. height: math.unit(15, "Tm")
  24212. },
  24213. {
  24214. name: "Galactic",
  24215. height: math.unit(30, "Zm")
  24216. },
  24217. {
  24218. name: "Universal",
  24219. height: math.unit(21000, "Ym")
  24220. },
  24221. {
  24222. name: "Omniversal",
  24223. height: math.unit(9.861e50, "Ym")
  24224. },
  24225. {
  24226. name: "Existential",
  24227. height: math.unit(1e300, "meters")
  24228. },
  24229. ]
  24230. ))
  24231. characterMakers.push(() => makeCharacter(
  24232. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24233. {
  24234. side: {
  24235. height: math.unit(25, "feet"),
  24236. weight: math.unit(90000, "lb"),
  24237. name: "Side",
  24238. image: {
  24239. source: "./media/characters/mandarax/side.svg",
  24240. extra: 614 / 332,
  24241. bottom: 55 / 630
  24242. }
  24243. },
  24244. head: {
  24245. height: math.unit(11.4, "feet"),
  24246. name: "Head",
  24247. image: {
  24248. source: "./media/characters/mandarax/head.svg"
  24249. }
  24250. },
  24251. belly: {
  24252. height: math.unit(33, "feet"),
  24253. name: "Belly",
  24254. capacity: math.unit(500, "people"),
  24255. image: {
  24256. source: "./media/characters/mandarax/belly.svg"
  24257. }
  24258. },
  24259. dick: {
  24260. height: math.unit(8.46, "feet"),
  24261. name: "Dick",
  24262. image: {
  24263. source: "./media/characters/mandarax/dick.svg"
  24264. }
  24265. },
  24266. top: {
  24267. height: math.unit(28, "meters"),
  24268. name: "Top",
  24269. image: {
  24270. source: "./media/characters/mandarax/top.svg"
  24271. }
  24272. },
  24273. },
  24274. [
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(25, "feet"),
  24278. default: true
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24284. {
  24285. front: {
  24286. height: math.unit(5, "feet"),
  24287. weight: math.unit(90, "lb"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/pixil/front.svg",
  24291. extra: 2000 / 1618,
  24292. bottom: 12.3 / 2011
  24293. }
  24294. },
  24295. },
  24296. [
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(5, "feet"),
  24300. default: true
  24301. },
  24302. {
  24303. name: "Megamacro",
  24304. height: math.unit(10, "miles"),
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24310. {
  24311. front: {
  24312. height: math.unit(7 + 2 / 12, "feet"),
  24313. weight: math.unit(200, "lb"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/angel/front.svg",
  24317. extra: 1830 / 1737,
  24318. bottom: 22.6 / 1854,
  24319. }
  24320. },
  24321. },
  24322. [
  24323. {
  24324. name: "Normal",
  24325. height: math.unit(7 + 2 / 12, "feet"),
  24326. default: true
  24327. },
  24328. {
  24329. name: "Macro",
  24330. height: math.unit(1000, "feet")
  24331. },
  24332. {
  24333. name: "Megamacro",
  24334. height: math.unit(2, "miles")
  24335. },
  24336. {
  24337. name: "Gigamacro",
  24338. height: math.unit(20, "earths")
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24344. {
  24345. front: {
  24346. height: math.unit(5, "feet"),
  24347. weight: math.unit(180, "lb"),
  24348. name: "Front",
  24349. image: {
  24350. source: "./media/characters/mekana/front.svg",
  24351. extra: 1671 / 1605,
  24352. bottom: 3.5 / 1691
  24353. }
  24354. },
  24355. side: {
  24356. height: math.unit(5, "feet"),
  24357. weight: math.unit(180, "lb"),
  24358. name: "Side",
  24359. image: {
  24360. source: "./media/characters/mekana/side.svg",
  24361. extra: 1671 / 1605,
  24362. bottom: 3.5 / 1691
  24363. }
  24364. },
  24365. back: {
  24366. height: math.unit(5, "feet"),
  24367. weight: math.unit(180, "lb"),
  24368. name: "Back",
  24369. image: {
  24370. source: "./media/characters/mekana/back.svg",
  24371. extra: 1671 / 1605,
  24372. bottom: 3.5 / 1691
  24373. }
  24374. },
  24375. },
  24376. [
  24377. {
  24378. name: "Normal",
  24379. height: math.unit(5, "feet"),
  24380. default: true
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(4 + 6 / 12, "feet"),
  24389. weight: math.unit(80, "lb"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/pixie/front.svg",
  24393. extra: 1924 / 1825,
  24394. bottom: 22.4 / 1946
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Normal",
  24401. height: math.unit(4 + 6 / 12, "feet"),
  24402. default: true
  24403. },
  24404. {
  24405. name: "Macro",
  24406. height: math.unit(40, "feet")
  24407. },
  24408. ]
  24409. ))
  24410. characterMakers.push(() => makeCharacter(
  24411. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24412. {
  24413. front: {
  24414. height: math.unit(2.1, "meters"),
  24415. weight: math.unit(200, "lb"),
  24416. name: "Front",
  24417. image: {
  24418. source: "./media/characters/the-lascivious/front.svg",
  24419. extra: 1 / 0.893,
  24420. bottom: 3.5 / 573.7
  24421. }
  24422. },
  24423. },
  24424. [
  24425. {
  24426. name: "Human Scale",
  24427. height: math.unit(2.1, "meters")
  24428. },
  24429. {
  24430. name: "Wolxi Scale",
  24431. height: math.unit(46.2, "m"),
  24432. default: true
  24433. },
  24434. {
  24435. name: "Boinker of Buildings",
  24436. height: math.unit(10, "km")
  24437. },
  24438. {
  24439. name: "Shagger of Skyscrapers",
  24440. height: math.unit(40, "km")
  24441. },
  24442. {
  24443. name: "Banger of Boroughs",
  24444. height: math.unit(4000, "km")
  24445. },
  24446. {
  24447. name: "Screwer of States",
  24448. height: math.unit(100000, "km")
  24449. },
  24450. {
  24451. name: "Pounder of Planets",
  24452. height: math.unit(2000000, "km")
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24458. {
  24459. front: {
  24460. height: math.unit(6, "feet"),
  24461. weight: math.unit(150, "lb"),
  24462. name: "Front",
  24463. image: {
  24464. source: "./media/characters/aj/front.svg",
  24465. extra: 2039 / 1562,
  24466. bottom: 40 / 2079
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Normal",
  24473. height: math.unit(11 + 6 / 12, "feet"),
  24474. default: true
  24475. },
  24476. {
  24477. name: "Megamacro",
  24478. height: math.unit(60, "megameters")
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24484. {
  24485. side: {
  24486. height: math.unit(31 + 8 / 12, "feet"),
  24487. weight: math.unit(75000, "kg"),
  24488. name: "Side",
  24489. image: {
  24490. source: "./media/characters/koros/side.svg",
  24491. extra: 1442 / 1297,
  24492. bottom: 122.7 / 1562
  24493. }
  24494. },
  24495. dicksKingsCrown: {
  24496. height: math.unit(6, "feet"),
  24497. name: "Dicks (King's Crown)",
  24498. image: {
  24499. source: "./media/characters/koros/dicks-kings-crown.svg"
  24500. }
  24501. },
  24502. dicksTailSet: {
  24503. height: math.unit(3, "feet"),
  24504. name: "Dicks (Tail Set)",
  24505. image: {
  24506. source: "./media/characters/koros/dicks-tail-set.svg"
  24507. }
  24508. },
  24509. dickCumming: {
  24510. height: math.unit(7.98, "feet"),
  24511. name: "Dick (Cumming)",
  24512. image: {
  24513. source: "./media/characters/koros/dick-cumming.svg"
  24514. }
  24515. },
  24516. dicksBack: {
  24517. height: math.unit(5.9, "feet"),
  24518. name: "Dicks (Back)",
  24519. image: {
  24520. source: "./media/characters/koros/dicks-back.svg"
  24521. }
  24522. },
  24523. dicksFront: {
  24524. height: math.unit(3.72, "feet"),
  24525. name: "Dicks (Front)",
  24526. image: {
  24527. source: "./media/characters/koros/dicks-front.svg"
  24528. }
  24529. },
  24530. dicksPeeking: {
  24531. height: math.unit(3.0, "feet"),
  24532. name: "Dicks (Peeking)",
  24533. image: {
  24534. source: "./media/characters/koros/dicks-peeking.svg"
  24535. }
  24536. },
  24537. eye: {
  24538. height: math.unit(1.7, "feet"),
  24539. name: "Eye",
  24540. image: {
  24541. source: "./media/characters/koros/eye.svg"
  24542. }
  24543. },
  24544. headFront: {
  24545. height: math.unit(11.69, "feet"),
  24546. name: "Head (Front)",
  24547. image: {
  24548. source: "./media/characters/koros/head-front.svg"
  24549. }
  24550. },
  24551. headSide: {
  24552. height: math.unit(14, "feet"),
  24553. name: "Head (Side)",
  24554. image: {
  24555. source: "./media/characters/koros/head-side.svg"
  24556. }
  24557. },
  24558. leg: {
  24559. height: math.unit(17, "feet"),
  24560. name: "Leg",
  24561. image: {
  24562. source: "./media/characters/koros/leg.svg"
  24563. }
  24564. },
  24565. mawSide: {
  24566. height: math.unit(12.8, "feet"),
  24567. name: "Maw (Side)",
  24568. image: {
  24569. source: "./media/characters/koros/maw-side.svg"
  24570. }
  24571. },
  24572. mawSpitting: {
  24573. height: math.unit(17, "feet"),
  24574. name: "Maw (Spitting)",
  24575. image: {
  24576. source: "./media/characters/koros/maw-spitting.svg"
  24577. }
  24578. },
  24579. slit: {
  24580. height: math.unit(2.8, "feet"),
  24581. name: "Slit",
  24582. image: {
  24583. source: "./media/characters/koros/slit.svg"
  24584. }
  24585. },
  24586. stomach: {
  24587. height: math.unit(6.8, "feet"),
  24588. capacity: math.unit(20, "people"),
  24589. name: "Stomach",
  24590. image: {
  24591. source: "./media/characters/koros/stomach.svg"
  24592. }
  24593. },
  24594. wingspanBottom: {
  24595. height: math.unit(114, "feet"),
  24596. name: "Wingspan (Bottom)",
  24597. image: {
  24598. source: "./media/characters/koros/wingspan-bottom.svg"
  24599. }
  24600. },
  24601. wingspanTop: {
  24602. height: math.unit(104, "feet"),
  24603. name: "Wingspan (Top)",
  24604. image: {
  24605. source: "./media/characters/koros/wingspan-top.svg"
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(31 + 8 / 12, "feet"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(18 + 5 / 12, "feet"),
  24622. weight: math.unit(3750, "kg"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/vexx/front.svg",
  24626. extra: 426 / 396,
  24627. bottom: 31.5 / 458
  24628. }
  24629. },
  24630. maw: {
  24631. height: math.unit(6, "feet"),
  24632. name: "Maw",
  24633. image: {
  24634. source: "./media/characters/vexx/maw.svg"
  24635. }
  24636. },
  24637. },
  24638. [
  24639. {
  24640. name: "Normal",
  24641. height: math.unit(18 + 5 / 12, "feet"),
  24642. default: true
  24643. },
  24644. ]
  24645. ))
  24646. characterMakers.push(() => makeCharacter(
  24647. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24648. {
  24649. front: {
  24650. height: math.unit(17 + 6 / 12, "feet"),
  24651. weight: math.unit(150, "lb"),
  24652. name: "Front",
  24653. image: {
  24654. source: "./media/characters/baadra/front.svg",
  24655. extra: 3137 / 2890,
  24656. bottom: 168.4 / 3305
  24657. }
  24658. },
  24659. back: {
  24660. height: math.unit(17 + 6 / 12, "feet"),
  24661. weight: math.unit(150, "lb"),
  24662. name: "Back",
  24663. image: {
  24664. source: "./media/characters/baadra/back.svg",
  24665. extra: 3142 / 2890,
  24666. bottom: 220 / 3371
  24667. }
  24668. },
  24669. head: {
  24670. height: math.unit(5.45, "feet"),
  24671. name: "Head",
  24672. image: {
  24673. source: "./media/characters/baadra/head.svg"
  24674. }
  24675. },
  24676. headAngry: {
  24677. height: math.unit(4.95, "feet"),
  24678. name: "Head (Angry)",
  24679. image: {
  24680. source: "./media/characters/baadra/head-angry.svg"
  24681. }
  24682. },
  24683. headOpen: {
  24684. height: math.unit(6, "feet"),
  24685. name: "Head (Open)",
  24686. image: {
  24687. source: "./media/characters/baadra/head-open.svg"
  24688. }
  24689. },
  24690. },
  24691. [
  24692. {
  24693. name: "Normal",
  24694. height: math.unit(17 + 6 / 12, "feet"),
  24695. default: true
  24696. },
  24697. ]
  24698. ))
  24699. characterMakers.push(() => makeCharacter(
  24700. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24701. {
  24702. front: {
  24703. height: math.unit(7 + 3 / 12, "feet"),
  24704. weight: math.unit(180, "lb"),
  24705. name: "Front",
  24706. image: {
  24707. source: "./media/characters/juri/front.svg",
  24708. extra: 1401 / 1237,
  24709. bottom: 18.5 / 1418
  24710. }
  24711. },
  24712. side: {
  24713. height: math.unit(7 + 3 / 12, "feet"),
  24714. weight: math.unit(180, "lb"),
  24715. name: "Side",
  24716. image: {
  24717. source: "./media/characters/juri/side.svg",
  24718. extra: 1424 / 1242,
  24719. bottom: 18.5 / 1447
  24720. }
  24721. },
  24722. sitting: {
  24723. height: math.unit(6, "feet"),
  24724. weight: math.unit(180, "lb"),
  24725. name: "Sitting",
  24726. image: {
  24727. source: "./media/characters/juri/sitting.svg",
  24728. extra: 1270 / 1143,
  24729. bottom: 100 / 1343
  24730. }
  24731. },
  24732. back: {
  24733. height: math.unit(7 + 3 / 12, "feet"),
  24734. weight: math.unit(180, "lb"),
  24735. name: "Back",
  24736. image: {
  24737. source: "./media/characters/juri/back.svg",
  24738. extra: 1377 / 1240,
  24739. bottom: 23.7 / 1405
  24740. }
  24741. },
  24742. maw: {
  24743. height: math.unit(2.8, "feet"),
  24744. name: "Maw",
  24745. image: {
  24746. source: "./media/characters/juri/maw.svg"
  24747. }
  24748. },
  24749. stomach: {
  24750. height: math.unit(0.89, "feet"),
  24751. capacity: math.unit(4, "liters"),
  24752. name: "Stomach",
  24753. image: {
  24754. source: "./media/characters/juri/stomach.svg"
  24755. }
  24756. },
  24757. },
  24758. [
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(7 + 3 / 12, "feet"),
  24762. default: true
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24768. {
  24769. fox: {
  24770. height: math.unit(5 + 6 / 12, "feet"),
  24771. weight: math.unit(140, "lb"),
  24772. name: "Fox",
  24773. image: {
  24774. source: "./media/characters/maxene-sita/fox.svg",
  24775. extra: 146 / 138,
  24776. bottom: 2.1 / 148.19
  24777. }
  24778. },
  24779. foxLaying: {
  24780. height: math.unit(1.70, "feet"),
  24781. weight: math.unit(140, "lb"),
  24782. name: "Fox (Laying)",
  24783. image: {
  24784. source: "./media/characters/maxene-sita/fox-laying.svg",
  24785. extra: 910/572,
  24786. bottom: 71/981
  24787. }
  24788. },
  24789. kitsune: {
  24790. height: math.unit(10, "feet"),
  24791. weight: math.unit(800, "lb"),
  24792. name: "Kitsune",
  24793. image: {
  24794. source: "./media/characters/maxene-sita/kitsune.svg",
  24795. extra: 185 / 176,
  24796. bottom: 4.7 / 189.9
  24797. }
  24798. },
  24799. hellhound: {
  24800. height: math.unit(10, "feet"),
  24801. weight: math.unit(700, "lb"),
  24802. name: "Hellhound",
  24803. image: {
  24804. source: "./media/characters/maxene-sita/hellhound.svg",
  24805. extra: 1600/1545,
  24806. bottom: 81/1681
  24807. }
  24808. },
  24809. },
  24810. [
  24811. {
  24812. name: "Normal",
  24813. height: math.unit(5 + 6 / 12, "feet"),
  24814. default: true
  24815. },
  24816. ]
  24817. ))
  24818. characterMakers.push(() => makeCharacter(
  24819. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24820. {
  24821. front: {
  24822. height: math.unit(3 + 4 / 12, "feet"),
  24823. weight: math.unit(70, "lb"),
  24824. name: "Front",
  24825. image: {
  24826. source: "./media/characters/maia/front.svg",
  24827. extra: 227 / 219.5,
  24828. bottom: 40 / 267
  24829. }
  24830. },
  24831. back: {
  24832. height: math.unit(3 + 4 / 12, "feet"),
  24833. weight: math.unit(70, "lb"),
  24834. name: "Back",
  24835. image: {
  24836. source: "./media/characters/maia/back.svg",
  24837. extra: 237 / 225
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Normal",
  24844. height: math.unit(3 + 4 / 12, "feet"),
  24845. default: true
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(5 + 10 / 12, "feet"),
  24854. weight: math.unit(197, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/jabaro/front.svg",
  24858. extra: 225 / 216,
  24859. bottom: 5.06 / 230
  24860. }
  24861. },
  24862. back: {
  24863. height: math.unit(5 + 10 / 12, "feet"),
  24864. weight: math.unit(197, "lb"),
  24865. name: "Back",
  24866. image: {
  24867. source: "./media/characters/jabaro/back.svg",
  24868. extra: 225 / 219,
  24869. bottom: 1.9 / 227
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Normal",
  24876. height: math.unit(5 + 10 / 12, "feet"),
  24877. default: true
  24878. },
  24879. ]
  24880. ))
  24881. characterMakers.push(() => makeCharacter(
  24882. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24883. {
  24884. front: {
  24885. height: math.unit(5 + 8 / 12, "feet"),
  24886. weight: math.unit(139, "lb"),
  24887. name: "Front",
  24888. image: {
  24889. source: "./media/characters/risa/front.svg",
  24890. extra: 270 / 260,
  24891. bottom: 11.2 / 282
  24892. }
  24893. },
  24894. back: {
  24895. height: math.unit(5 + 8 / 12, "feet"),
  24896. weight: math.unit(139, "lb"),
  24897. name: "Back",
  24898. image: {
  24899. source: "./media/characters/risa/back.svg",
  24900. extra: 264 / 255,
  24901. bottom: 4 / 268
  24902. }
  24903. },
  24904. },
  24905. [
  24906. {
  24907. name: "Normal",
  24908. height: math.unit(5 + 8 / 12, "feet"),
  24909. default: true
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24915. {
  24916. front: {
  24917. height: math.unit(2 + 11 / 12, "feet"),
  24918. weight: math.unit(30, "lb"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/weatley/front.svg",
  24922. bottom: 10.7 / 414,
  24923. extra: 403.5 / 362
  24924. }
  24925. },
  24926. back: {
  24927. height: math.unit(2 + 11 / 12, "feet"),
  24928. weight: math.unit(30, "lb"),
  24929. name: "Back",
  24930. image: {
  24931. source: "./media/characters/weatley/back.svg",
  24932. bottom: 10.7 / 414,
  24933. extra: 403.5 / 362
  24934. }
  24935. },
  24936. },
  24937. [
  24938. {
  24939. name: "Normal",
  24940. height: math.unit(2 + 11 / 12, "feet"),
  24941. default: true
  24942. },
  24943. ]
  24944. ))
  24945. characterMakers.push(() => makeCharacter(
  24946. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24947. {
  24948. front: {
  24949. height: math.unit(5 + 2 / 12, "feet"),
  24950. weight: math.unit(50, "kg"),
  24951. name: "Front",
  24952. image: {
  24953. source: "./media/characters/mercury-crescent/front.svg",
  24954. extra: 1088 / 1033,
  24955. bottom: 18.9 / 1109
  24956. }
  24957. },
  24958. },
  24959. [
  24960. {
  24961. name: "Normal",
  24962. height: math.unit(5 + 2 / 12, "feet"),
  24963. default: true
  24964. },
  24965. ]
  24966. ))
  24967. characterMakers.push(() => makeCharacter(
  24968. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24969. {
  24970. front: {
  24971. height: math.unit(2, "feet"),
  24972. weight: math.unit(15, "kg"),
  24973. name: "Front",
  24974. image: {
  24975. source: "./media/characters/diamond-jones/front.svg",
  24976. bottom: 16 / 568
  24977. }
  24978. },
  24979. },
  24980. [
  24981. {
  24982. name: "Normal",
  24983. height: math.unit(2, "feet"),
  24984. default: true
  24985. },
  24986. ]
  24987. ))
  24988. characterMakers.push(() => makeCharacter(
  24989. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24990. {
  24991. front: {
  24992. height: math.unit(3, "feet"),
  24993. weight: math.unit(30, "kg"),
  24994. name: "Front",
  24995. image: {
  24996. source: "./media/characters/sweet-bit/front.svg",
  24997. extra: 675 / 567,
  24998. bottom: 27.7 / 703
  24999. }
  25000. },
  25001. },
  25002. [
  25003. {
  25004. name: "Normal",
  25005. height: math.unit(3, "feet"),
  25006. default: true
  25007. },
  25008. ]
  25009. ))
  25010. characterMakers.push(() => makeCharacter(
  25011. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25012. {
  25013. side: {
  25014. height: math.unit(9.178, "feet"),
  25015. weight: math.unit(500, "lb"),
  25016. name: "Side",
  25017. image: {
  25018. source: "./media/characters/umbrazen/side.svg",
  25019. extra: 1730 / 1473,
  25020. bottom: 34.6 / 1765
  25021. }
  25022. },
  25023. },
  25024. [
  25025. {
  25026. name: "Normal",
  25027. height: math.unit(9.178, "feet"),
  25028. default: true
  25029. },
  25030. ]
  25031. ))
  25032. characterMakers.push(() => makeCharacter(
  25033. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25034. {
  25035. front: {
  25036. height: math.unit(10, "feet"),
  25037. weight: math.unit(750, "lb"),
  25038. name: "Front",
  25039. image: {
  25040. source: "./media/characters/arlist/front.svg",
  25041. extra: 961 / 778,
  25042. bottom: 6.2 / 986
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Normal",
  25049. height: math.unit(10, "feet"),
  25050. default: true
  25051. },
  25052. ]
  25053. ))
  25054. characterMakers.push(() => makeCharacter(
  25055. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25056. {
  25057. front: {
  25058. height: math.unit(5 + 1 / 12, "feet"),
  25059. weight: math.unit(110, "lb"),
  25060. name: "Front",
  25061. image: {
  25062. source: "./media/characters/aradel/front.svg",
  25063. extra: 324 / 303,
  25064. bottom: 3.6 / 329.4
  25065. }
  25066. },
  25067. },
  25068. [
  25069. {
  25070. name: "Normal",
  25071. height: math.unit(5 + 1 / 12, "feet"),
  25072. default: true
  25073. },
  25074. ]
  25075. ))
  25076. characterMakers.push(() => makeCharacter(
  25077. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25078. {
  25079. front: {
  25080. height: math.unit(3 + 8 / 12, "feet"),
  25081. weight: math.unit(50, "lb"),
  25082. name: "Front",
  25083. image: {
  25084. source: "./media/characters/serryn/front.svg",
  25085. extra: 1792 / 1656,
  25086. bottom: 43.5 / 1840
  25087. }
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Normal",
  25093. height: math.unit(3 + 8 / 12, "feet"),
  25094. default: true
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Xavier Thyme" },
  25100. {
  25101. front: {
  25102. height: math.unit(7 + 10 / 12, "feet"),
  25103. weight: math.unit(255, "lb"),
  25104. name: "Front",
  25105. image: {
  25106. source: "./media/characters/xavier-thyme/front.svg",
  25107. extra: 3733 / 3642,
  25108. bottom: 131 / 3869
  25109. }
  25110. },
  25111. frontRaven: {
  25112. height: math.unit(7 + 10 / 12, "feet"),
  25113. weight: math.unit(255, "lb"),
  25114. name: "Front (Raven)",
  25115. image: {
  25116. source: "./media/characters/xavier-thyme/front-raven.svg",
  25117. extra: 4385 / 3642,
  25118. bottom: 131 / 4517
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Normal",
  25125. height: math.unit(7 + 10 / 12, "feet"),
  25126. default: true
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25132. {
  25133. front: {
  25134. height: math.unit(1.6, "m"),
  25135. weight: math.unit(50, "kg"),
  25136. name: "Front",
  25137. image: {
  25138. source: "./media/characters/kiki/front.svg",
  25139. extra: 4682 / 3610,
  25140. bottom: 115 / 4777
  25141. }
  25142. },
  25143. },
  25144. [
  25145. {
  25146. name: "Normal",
  25147. height: math.unit(1.6, "meters"),
  25148. default: true
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(50, "m"),
  25157. weight: math.unit(500, "tonnes"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/ryoko/front.svg",
  25161. extra: 4632 / 3926,
  25162. bottom: 193 / 4823
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Normal",
  25169. height: math.unit(50, "meters"),
  25170. default: true
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(30, "m"),
  25179. weight: math.unit(22, "tonnes"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/elio/front.svg",
  25183. extra: 4582 / 3720,
  25184. bottom: 236 / 4828
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Normal",
  25191. height: math.unit(30, "meters"),
  25192. default: true
  25193. },
  25194. ]
  25195. ))
  25196. characterMakers.push(() => makeCharacter(
  25197. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25198. {
  25199. front: {
  25200. height: math.unit(6 + 3 / 12, "feet"),
  25201. weight: math.unit(120, "lb"),
  25202. name: "Front",
  25203. image: {
  25204. source: "./media/characters/azura/front.svg",
  25205. extra: 1149 / 1135,
  25206. bottom: 45 / 1194
  25207. }
  25208. },
  25209. frontClothed: {
  25210. height: math.unit(6 + 3 / 12, "feet"),
  25211. weight: math.unit(120, "lb"),
  25212. name: "Front (Clothed)",
  25213. image: {
  25214. source: "./media/characters/azura/front-clothed.svg",
  25215. extra: 1149 / 1135,
  25216. bottom: 45 / 1194
  25217. }
  25218. },
  25219. },
  25220. [
  25221. {
  25222. name: "Normal",
  25223. height: math.unit(6 + 3 / 12, "feet"),
  25224. default: true
  25225. },
  25226. {
  25227. name: "Macro",
  25228. height: math.unit(20 + 6 / 12, "feet")
  25229. },
  25230. {
  25231. name: "Megamacro",
  25232. height: math.unit(12, "miles")
  25233. },
  25234. {
  25235. name: "Gigamacro",
  25236. height: math.unit(10000, "miles")
  25237. },
  25238. {
  25239. name: "Teramacro",
  25240. height: math.unit(900000, "miles")
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25246. {
  25247. front: {
  25248. height: math.unit(12, "feet"),
  25249. weight: math.unit(1, "ton"),
  25250. capacity: math.unit(660000, "gallons"),
  25251. name: "Front",
  25252. image: {
  25253. source: "./media/characters/zeus/front.svg",
  25254. extra: 5005 / 4717,
  25255. bottom: 363 / 5388
  25256. }
  25257. },
  25258. },
  25259. [
  25260. {
  25261. name: "Normal",
  25262. height: math.unit(12, "feet")
  25263. },
  25264. {
  25265. name: "Preferred Size",
  25266. height: math.unit(0.5, "miles"),
  25267. default: true
  25268. },
  25269. {
  25270. name: "Giga Horse",
  25271. height: math.unit(300, "miles")
  25272. },
  25273. {
  25274. name: "Riding Planets",
  25275. height: math.unit(30, "megameters")
  25276. },
  25277. {
  25278. name: "Cosmic Giant",
  25279. height: math.unit(3, "zettameters")
  25280. },
  25281. {
  25282. name: "Breeding God",
  25283. height: math.unit(9.92e22, "yottameters")
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25289. {
  25290. side: {
  25291. height: math.unit(9, "feet"),
  25292. weight: math.unit(1500, "kg"),
  25293. name: "Side",
  25294. image: {
  25295. source: "./media/characters/fang/side.svg",
  25296. extra: 924 / 866,
  25297. bottom: 47.5 / 972.3
  25298. }
  25299. },
  25300. },
  25301. [
  25302. {
  25303. name: "Normal",
  25304. height: math.unit(9, "feet"),
  25305. default: true
  25306. },
  25307. {
  25308. name: "Macro",
  25309. height: math.unit(75 + 6 / 12, "feet")
  25310. },
  25311. {
  25312. name: "Teramacro",
  25313. height: math.unit(50000, "miles")
  25314. },
  25315. ]
  25316. ))
  25317. characterMakers.push(() => makeCharacter(
  25318. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25319. {
  25320. front: {
  25321. height: math.unit(10, "feet"),
  25322. weight: math.unit(2, "tons"),
  25323. name: "Front",
  25324. image: {
  25325. source: "./media/characters/rekhit/front.svg",
  25326. extra: 2796 / 2590,
  25327. bottom: 225 / 3022
  25328. }
  25329. },
  25330. },
  25331. [
  25332. {
  25333. name: "Normal",
  25334. height: math.unit(10, "feet"),
  25335. default: true
  25336. },
  25337. {
  25338. name: "Macro",
  25339. height: math.unit(500, "feet")
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Dahlia Verrick" },
  25345. {
  25346. front: {
  25347. height: math.unit(7 + 6.451 / 12, "feet"),
  25348. weight: math.unit(310, "lb"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/dahlia-verrick/front.svg",
  25352. extra: 1488 / 1365,
  25353. bottom: 6.2 / 1495
  25354. }
  25355. },
  25356. back: {
  25357. height: math.unit(7 + 6.451 / 12, "feet"),
  25358. weight: math.unit(310, "lb"),
  25359. name: "Back",
  25360. image: {
  25361. source: "./media/characters/dahlia-verrick/back.svg",
  25362. extra: 1472 / 1351,
  25363. bottom: 5.28 / 1477
  25364. }
  25365. },
  25366. frontBusiness: {
  25367. height: math.unit(7 + 6.451 / 12, "feet"),
  25368. weight: math.unit(200, "lb"),
  25369. name: "Front (Business)",
  25370. image: {
  25371. source: "./media/characters/dahlia-verrick/front-business.svg",
  25372. extra: 1478 / 1381,
  25373. bottom: 5.5 / 1484
  25374. }
  25375. },
  25376. frontCasual: {
  25377. height: math.unit(7 + 6.451 / 12, "feet"),
  25378. weight: math.unit(200, "lb"),
  25379. name: "Front (Casual)",
  25380. image: {
  25381. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25382. extra: 1478 / 1381,
  25383. bottom: 5.5 / 1484
  25384. }
  25385. },
  25386. },
  25387. [
  25388. {
  25389. name: "Travel-Sized",
  25390. height: math.unit(7.45, "inches")
  25391. },
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(7 + 6.451 / 12, "feet"),
  25395. default: true
  25396. },
  25397. {
  25398. name: "Hitting the Town",
  25399. height: math.unit(37 + 8 / 12, "feet")
  25400. },
  25401. {
  25402. name: "Stomp in the Suburbs",
  25403. height: math.unit(964 + 9.728 / 12, "feet")
  25404. },
  25405. {
  25406. name: "Sit on the City",
  25407. height: math.unit(61747 + 10.592 / 12, "feet")
  25408. },
  25409. {
  25410. name: "Glomp the Globe",
  25411. height: math.unit(252919327 + 4.832 / 12, "feet")
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25417. {
  25418. front: {
  25419. height: math.unit(6 + 4 / 12, "feet"),
  25420. weight: math.unit(320, "lb"),
  25421. name: "Front",
  25422. image: {
  25423. source: "./media/characters/balina-mahigan/front.svg",
  25424. extra: 447 / 428,
  25425. bottom: 18 / 466
  25426. }
  25427. },
  25428. back: {
  25429. height: math.unit(6 + 4 / 12, "feet"),
  25430. weight: math.unit(320, "lb"),
  25431. name: "Back",
  25432. image: {
  25433. source: "./media/characters/balina-mahigan/back.svg",
  25434. extra: 445 / 428,
  25435. bottom: 4.07 / 448
  25436. }
  25437. },
  25438. arm: {
  25439. height: math.unit(1.88, "feet"),
  25440. name: "Arm",
  25441. image: {
  25442. source: "./media/characters/balina-mahigan/arm.svg"
  25443. }
  25444. },
  25445. backPort: {
  25446. height: math.unit(0.685, "feet"),
  25447. name: "Back Port",
  25448. image: {
  25449. source: "./media/characters/balina-mahigan/back-port.svg"
  25450. }
  25451. },
  25452. hoofpaw: {
  25453. height: math.unit(1.41, "feet"),
  25454. name: "Hoofpaw",
  25455. image: {
  25456. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25457. }
  25458. },
  25459. leftHandBack: {
  25460. height: math.unit(0.938, "feet"),
  25461. name: "Left Hand (Back)",
  25462. image: {
  25463. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25464. }
  25465. },
  25466. leftHandFront: {
  25467. height: math.unit(0.938, "feet"),
  25468. name: "Left Hand (Front)",
  25469. image: {
  25470. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25471. }
  25472. },
  25473. rightHandBack: {
  25474. height: math.unit(0.95, "feet"),
  25475. name: "Right Hand (Back)",
  25476. image: {
  25477. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25478. }
  25479. },
  25480. rightHandFront: {
  25481. height: math.unit(0.95, "feet"),
  25482. name: "Right Hand (Front)",
  25483. image: {
  25484. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Normal",
  25491. height: math.unit(6 + 4 / 12, "feet"),
  25492. default: true
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25498. {
  25499. front: {
  25500. height: math.unit(6, "feet"),
  25501. weight: math.unit(320, "lb"),
  25502. name: "Front",
  25503. image: {
  25504. source: "./media/characters/balina-mejeri/front.svg",
  25505. extra: 517 / 488,
  25506. bottom: 44.2 / 561
  25507. }
  25508. },
  25509. },
  25510. [
  25511. {
  25512. name: "Normal",
  25513. height: math.unit(6 + 4 / 12, "feet")
  25514. },
  25515. {
  25516. name: "Business",
  25517. height: math.unit(155, "feet"),
  25518. default: true
  25519. },
  25520. ]
  25521. ))
  25522. characterMakers.push(() => makeCharacter(
  25523. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25524. {
  25525. kneeling: {
  25526. height: math.unit(6 + 4 / 12, "feet"),
  25527. weight: math.unit(300 * 20, "lb"),
  25528. name: "Kneeling",
  25529. image: {
  25530. source: "./media/characters/balbarian/kneeling.svg",
  25531. extra: 922 / 862,
  25532. bottom: 42.4 / 965
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Normal",
  25539. height: math.unit(6 + 4 / 12, "feet")
  25540. },
  25541. {
  25542. name: "Treasured",
  25543. height: math.unit(18 + 9 / 12, "feet"),
  25544. default: true
  25545. },
  25546. {
  25547. name: "Macro",
  25548. height: math.unit(900, "feet")
  25549. },
  25550. ]
  25551. ))
  25552. characterMakers.push(() => makeCharacter(
  25553. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25554. {
  25555. front: {
  25556. height: math.unit(6 + 4 / 12, "feet"),
  25557. weight: math.unit(325, "lb"),
  25558. name: "Front",
  25559. image: {
  25560. source: "./media/characters/balina-amarini/front.svg",
  25561. extra: 415 / 403,
  25562. bottom: 19 / 433.4
  25563. }
  25564. },
  25565. back: {
  25566. height: math.unit(6 + 4 / 12, "feet"),
  25567. weight: math.unit(325, "lb"),
  25568. name: "Back",
  25569. image: {
  25570. source: "./media/characters/balina-amarini/back.svg",
  25571. extra: 415 / 403,
  25572. bottom: 13.5 / 432
  25573. }
  25574. },
  25575. overdrive: {
  25576. height: math.unit(6 + 4 / 12, "feet"),
  25577. weight: math.unit(400, "lb"),
  25578. name: "Overdrive",
  25579. image: {
  25580. source: "./media/characters/balina-amarini/overdrive.svg",
  25581. extra: 269 / 259,
  25582. bottom: 12 / 282
  25583. }
  25584. },
  25585. },
  25586. [
  25587. {
  25588. name: "Boom",
  25589. height: math.unit(9 + 10 / 12, "feet"),
  25590. default: true
  25591. },
  25592. {
  25593. name: "Macro",
  25594. height: math.unit(280, "feet")
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25600. {
  25601. goddess: {
  25602. height: math.unit(600, "feet"),
  25603. weight: math.unit(2000000, "tons"),
  25604. name: "Goddess",
  25605. image: {
  25606. source: "./media/characters/lady-kubwa/goddess.svg",
  25607. extra: 1240.5 / 1223,
  25608. bottom: 22 / 1263
  25609. }
  25610. },
  25611. goddesser: {
  25612. height: math.unit(900, "feet"),
  25613. weight: math.unit(20000000, "lb"),
  25614. name: "Goddess-er",
  25615. image: {
  25616. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25617. extra: 899 / 888,
  25618. bottom: 12.6 / 912
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Macro",
  25625. height: math.unit(600, "feet"),
  25626. default: true
  25627. },
  25628. {
  25629. name: "Megamacro",
  25630. height: math.unit(250, "miles")
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(7 + 7 / 12, "feet"),
  25639. weight: math.unit(250, "lb"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/tala-grovehorn/front.svg",
  25643. extra: 2636 / 2525,
  25644. bottom: 147 / 2781
  25645. }
  25646. },
  25647. back: {
  25648. height: math.unit(7 + 7 / 12, "feet"),
  25649. weight: math.unit(250, "lb"),
  25650. name: "Back",
  25651. image: {
  25652. source: "./media/characters/tala-grovehorn/back.svg",
  25653. extra: 2635 / 2539,
  25654. bottom: 100 / 2732.8
  25655. }
  25656. },
  25657. mouth: {
  25658. height: math.unit(1.15, "feet"),
  25659. name: "Mouth",
  25660. image: {
  25661. source: "./media/characters/tala-grovehorn/mouth.svg"
  25662. }
  25663. },
  25664. dick: {
  25665. height: math.unit(2.36, "feet"),
  25666. name: "Dick",
  25667. image: {
  25668. source: "./media/characters/tala-grovehorn/dick.svg"
  25669. }
  25670. },
  25671. slit: {
  25672. height: math.unit(0.61, "feet"),
  25673. name: "Slit",
  25674. image: {
  25675. source: "./media/characters/tala-grovehorn/slit.svg"
  25676. }
  25677. },
  25678. },
  25679. [
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25684. {
  25685. front: {
  25686. height: math.unit(7 + 7 / 12, "feet"),
  25687. weight: math.unit(225, "lb"),
  25688. name: "Front",
  25689. image: {
  25690. source: "./media/characters/epona/front.svg",
  25691. extra: 2445 / 2290,
  25692. bottom: 251 / 2696
  25693. }
  25694. },
  25695. back: {
  25696. height: math.unit(7 + 7 / 12, "feet"),
  25697. weight: math.unit(225, "lb"),
  25698. name: "Back",
  25699. image: {
  25700. source: "./media/characters/epona/back.svg",
  25701. extra: 2546 / 2408,
  25702. bottom: 44 / 2589
  25703. }
  25704. },
  25705. genitals: {
  25706. height: math.unit(1.5, "feet"),
  25707. name: "Genitals",
  25708. image: {
  25709. source: "./media/characters/epona/genitals.svg"
  25710. }
  25711. },
  25712. },
  25713. [
  25714. {
  25715. name: "Normal",
  25716. height: math.unit(7 + 7 / 12, "feet")
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25722. {
  25723. front: {
  25724. height: math.unit(7, "feet"),
  25725. weight: math.unit(518, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/avia-bloodbourn/front.svg",
  25729. extra: 1466 / 1350,
  25730. bottom: 65 / 1527
  25731. }
  25732. },
  25733. },
  25734. [
  25735. ]
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25739. {
  25740. front: {
  25741. height: math.unit(9.35, "feet"),
  25742. weight: math.unit(600, "lb"),
  25743. name: "Front",
  25744. image: {
  25745. source: "./media/characters/amera/front.svg",
  25746. extra: 891 / 818,
  25747. bottom: 30 / 922.7
  25748. }
  25749. },
  25750. back: {
  25751. height: math.unit(9.35, "feet"),
  25752. weight: math.unit(600, "lb"),
  25753. name: "Back",
  25754. image: {
  25755. source: "./media/characters/amera/back.svg",
  25756. extra: 876 / 824,
  25757. bottom: 6.8 / 884
  25758. }
  25759. },
  25760. dick: {
  25761. height: math.unit(2.14, "feet"),
  25762. name: "Dick",
  25763. image: {
  25764. source: "./media/characters/amera/dick.svg"
  25765. }
  25766. },
  25767. },
  25768. [
  25769. {
  25770. name: "Normal",
  25771. height: math.unit(9.35, "feet"),
  25772. default: true
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25778. {
  25779. kneeling: {
  25780. height: math.unit(3 + 4 / 12, "feet"),
  25781. weight: math.unit(90, "lb"),
  25782. name: "Kneeling",
  25783. image: {
  25784. source: "./media/characters/rosewen/kneeling.svg",
  25785. extra: 1835 / 1571,
  25786. bottom: 27.7 / 1862
  25787. }
  25788. },
  25789. },
  25790. [
  25791. {
  25792. name: "Normal",
  25793. height: math.unit(3 + 4 / 12, "feet"),
  25794. default: true
  25795. },
  25796. ]
  25797. ))
  25798. characterMakers.push(() => makeCharacter(
  25799. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25800. {
  25801. front: {
  25802. height: math.unit(5 + 10 / 12, "feet"),
  25803. weight: math.unit(200, "lb"),
  25804. name: "Front",
  25805. image: {
  25806. source: "./media/characters/sabah/front.svg",
  25807. extra: 849 / 763,
  25808. bottom: 33.9 / 881
  25809. }
  25810. },
  25811. },
  25812. [
  25813. {
  25814. name: "Normal",
  25815. height: math.unit(5 + 10 / 12, "feet"),
  25816. default: true
  25817. },
  25818. ]
  25819. ))
  25820. characterMakers.push(() => makeCharacter(
  25821. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25822. {
  25823. front: {
  25824. height: math.unit(3 + 5 / 12, "feet"),
  25825. weight: math.unit(40, "kg"),
  25826. name: "Front",
  25827. image: {
  25828. source: "./media/characters/purple-flame/front.svg",
  25829. extra: 1577 / 1412,
  25830. bottom: 97 / 1694
  25831. }
  25832. },
  25833. frontDressed: {
  25834. height: math.unit(3 + 5 / 12, "feet"),
  25835. weight: math.unit(40, "kg"),
  25836. name: "Front (Dressed)",
  25837. image: {
  25838. source: "./media/characters/purple-flame/front-dressed.svg",
  25839. extra: 1577 / 1412,
  25840. bottom: 97 / 1694
  25841. }
  25842. },
  25843. headphones: {
  25844. height: math.unit(0.85, "feet"),
  25845. name: "Headphones",
  25846. image: {
  25847. source: "./media/characters/purple-flame/headphones.svg"
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Really Small",
  25854. height: math.unit(5, "cm")
  25855. },
  25856. {
  25857. name: "Micro",
  25858. height: math.unit(1 + 5 / 12, "feet")
  25859. },
  25860. {
  25861. name: "Normal",
  25862. height: math.unit(3 + 5 / 12, "feet"),
  25863. default: true
  25864. },
  25865. {
  25866. name: "Minimacro",
  25867. height: math.unit(125, "feet")
  25868. },
  25869. {
  25870. name: "Macro",
  25871. height: math.unit(0.5, "miles")
  25872. },
  25873. {
  25874. name: "Megamacro",
  25875. height: math.unit(50, "miles")
  25876. },
  25877. {
  25878. name: "Gigantic",
  25879. height: math.unit(750, "miles")
  25880. },
  25881. {
  25882. name: "Planetary",
  25883. height: math.unit(15000, "miles")
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25889. {
  25890. front: {
  25891. height: math.unit(14, "feet"),
  25892. weight: math.unit(959, "lb"),
  25893. name: "Front",
  25894. image: {
  25895. source: "./media/characters/arsenal/front.svg",
  25896. extra: 2357 / 2157,
  25897. bottom: 93 / 2458
  25898. }
  25899. },
  25900. },
  25901. [
  25902. {
  25903. name: "Normal",
  25904. height: math.unit(14, "feet"),
  25905. default: true
  25906. },
  25907. ]
  25908. ))
  25909. characterMakers.push(() => makeCharacter(
  25910. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25911. {
  25912. front: {
  25913. height: math.unit(6, "feet"),
  25914. weight: math.unit(150, "lb"),
  25915. name: "Front",
  25916. image: {
  25917. source: "./media/characters/adira/front.svg",
  25918. extra: 1078 / 1029,
  25919. bottom: 87 / 1166
  25920. }
  25921. },
  25922. },
  25923. [
  25924. {
  25925. name: "Micro",
  25926. height: math.unit(4, "inches"),
  25927. default: true
  25928. },
  25929. {
  25930. name: "Macro",
  25931. height: math.unit(50, "feet")
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(16, "feet"),
  25940. weight: math.unit(1000, "lb"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/grim/front.svg",
  25944. extra: 622 / 614,
  25945. bottom: 18.1 / 642
  25946. }
  25947. },
  25948. back: {
  25949. height: math.unit(16, "feet"),
  25950. weight: math.unit(1000, "lb"),
  25951. name: "Back",
  25952. image: {
  25953. source: "./media/characters/grim/back.svg",
  25954. extra: 610.6 / 602,
  25955. bottom: 40.8 / 652
  25956. }
  25957. },
  25958. hunched: {
  25959. height: math.unit(9.75, "feet"),
  25960. weight: math.unit(1000, "lb"),
  25961. name: "Hunched",
  25962. image: {
  25963. source: "./media/characters/grim/hunched.svg",
  25964. extra: 304 / 297,
  25965. bottom: 35.4 / 394
  25966. }
  25967. },
  25968. },
  25969. [
  25970. {
  25971. name: "Normal",
  25972. height: math.unit(16, "feet"),
  25973. default: true
  25974. },
  25975. ]
  25976. ))
  25977. characterMakers.push(() => makeCharacter(
  25978. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25979. {
  25980. front: {
  25981. height: math.unit(2.3, "meters"),
  25982. weight: math.unit(300, "lb"),
  25983. name: "Front",
  25984. image: {
  25985. source: "./media/characters/sinja/front-sfw.svg",
  25986. extra: 1393 / 1294,
  25987. bottom: 70 / 1463
  25988. }
  25989. },
  25990. frontNsfw: {
  25991. height: math.unit(2.3, "meters"),
  25992. weight: math.unit(300, "lb"),
  25993. name: "Front (NSFW)",
  25994. image: {
  25995. source: "./media/characters/sinja/front-nsfw.svg",
  25996. extra: 1393 / 1294,
  25997. bottom: 70 / 1463
  25998. }
  25999. },
  26000. back: {
  26001. height: math.unit(2.3, "meters"),
  26002. weight: math.unit(300, "lb"),
  26003. name: "Back",
  26004. image: {
  26005. source: "./media/characters/sinja/back.svg",
  26006. extra: 1393 / 1294,
  26007. bottom: 70 / 1463
  26008. }
  26009. },
  26010. head: {
  26011. height: math.unit(1.771, "feet"),
  26012. name: "Head",
  26013. image: {
  26014. source: "./media/characters/sinja/head.svg"
  26015. }
  26016. },
  26017. slit: {
  26018. height: math.unit(0.8, "feet"),
  26019. name: "Slit",
  26020. image: {
  26021. source: "./media/characters/sinja/slit.svg"
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Normal",
  26028. height: math.unit(2.3, "meters")
  26029. },
  26030. {
  26031. name: "Macro",
  26032. height: math.unit(91, "meters"),
  26033. default: true
  26034. },
  26035. {
  26036. name: "Megamacro",
  26037. height: math.unit(91440, "meters")
  26038. },
  26039. {
  26040. name: "Gigamacro",
  26041. height: math.unit(60960000, "meters")
  26042. },
  26043. {
  26044. name: "Teramacro",
  26045. height: math.unit(9144000000, "meters")
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(1.7, "meters"),
  26054. weight: math.unit(130, "lb"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/kyu/front.svg",
  26058. extra: 415 / 395,
  26059. bottom: 5 / 420
  26060. }
  26061. },
  26062. head: {
  26063. height: math.unit(1.75, "feet"),
  26064. name: "Head",
  26065. image: {
  26066. source: "./media/characters/kyu/head.svg"
  26067. }
  26068. },
  26069. foot: {
  26070. height: math.unit(0.81, "feet"),
  26071. name: "Foot",
  26072. image: {
  26073. source: "./media/characters/kyu/foot.svg"
  26074. }
  26075. },
  26076. },
  26077. [
  26078. {
  26079. name: "Normal",
  26080. height: math.unit(1.7, "meters")
  26081. },
  26082. {
  26083. name: "Macro",
  26084. height: math.unit(131, "feet"),
  26085. default: true
  26086. },
  26087. {
  26088. name: "Megamacro",
  26089. height: math.unit(91440, "meters")
  26090. },
  26091. {
  26092. name: "Gigamacro",
  26093. height: math.unit(60960000, "meters")
  26094. },
  26095. {
  26096. name: "Teramacro",
  26097. height: math.unit(9144000000, "meters")
  26098. },
  26099. ]
  26100. ))
  26101. characterMakers.push(() => makeCharacter(
  26102. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26103. {
  26104. front: {
  26105. height: math.unit(7 + 1 / 12, "feet"),
  26106. weight: math.unit(250, "lb"),
  26107. name: "Front",
  26108. image: {
  26109. source: "./media/characters/joey/front.svg",
  26110. extra: 1791 / 1537,
  26111. bottom: 28 / 1816
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Micro",
  26118. height: math.unit(3, "inches")
  26119. },
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(7 + 1 / 12, "feet"),
  26123. default: true
  26124. },
  26125. ]
  26126. ))
  26127. characterMakers.push(() => makeCharacter(
  26128. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26129. {
  26130. front: {
  26131. height: math.unit(165, "cm"),
  26132. weight: math.unit(140, "lb"),
  26133. name: "Front",
  26134. image: {
  26135. source: "./media/characters/sam-evans/front.svg",
  26136. extra: 3417 / 3230,
  26137. bottom: 41.3 / 3417
  26138. }
  26139. },
  26140. frontSixTails: {
  26141. height: math.unit(165, "cm"),
  26142. weight: math.unit(140, "lb"),
  26143. name: "Front-six-tails",
  26144. image: {
  26145. source: "./media/characters/sam-evans/front-six-tails.svg",
  26146. extra: 3417 / 3230,
  26147. bottom: 41.3 / 3417
  26148. }
  26149. },
  26150. back: {
  26151. height: math.unit(165, "cm"),
  26152. weight: math.unit(140, "lb"),
  26153. name: "Back",
  26154. image: {
  26155. source: "./media/characters/sam-evans/back.svg",
  26156. extra: 3227 / 3032,
  26157. bottom: 6.8 / 3234
  26158. }
  26159. },
  26160. face: {
  26161. height: math.unit(0.68, "feet"),
  26162. name: "Face",
  26163. image: {
  26164. source: "./media/characters/sam-evans/face.svg"
  26165. }
  26166. },
  26167. },
  26168. [
  26169. {
  26170. name: "Normal",
  26171. height: math.unit(165, "cm"),
  26172. default: true
  26173. },
  26174. {
  26175. name: "Macro",
  26176. height: math.unit(100, "meters")
  26177. },
  26178. {
  26179. name: "Macro+",
  26180. height: math.unit(800, "meters")
  26181. },
  26182. {
  26183. name: "Macro++",
  26184. height: math.unit(3, "km")
  26185. },
  26186. {
  26187. name: "Macro+++",
  26188. height: math.unit(30, "km")
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(10, "feet"),
  26197. weight: math.unit(750, "lb"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/juliet-a/front.svg",
  26201. extra: 1766 / 1720,
  26202. bottom: 43 / 1809
  26203. }
  26204. },
  26205. back: {
  26206. height: math.unit(10, "feet"),
  26207. weight: math.unit(750, "lb"),
  26208. name: "Back",
  26209. image: {
  26210. source: "./media/characters/juliet-a/back.svg",
  26211. extra: 1781 / 1734,
  26212. bottom: 35 / 1810,
  26213. }
  26214. },
  26215. },
  26216. [
  26217. {
  26218. name: "Normal",
  26219. height: math.unit(10, "feet"),
  26220. default: true
  26221. },
  26222. {
  26223. name: "Dragon Form",
  26224. height: math.unit(250, "feet")
  26225. },
  26226. {
  26227. name: "Macro",
  26228. height: math.unit(1000, "feet")
  26229. },
  26230. {
  26231. name: "Megamacro",
  26232. height: math.unit(10000, "feet")
  26233. }
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26238. {
  26239. regular: {
  26240. height: math.unit(7 + 3 / 12, "feet"),
  26241. weight: math.unit(260, "lb"),
  26242. name: "Regular",
  26243. image: {
  26244. source: "./media/characters/wild/regular.svg",
  26245. extra: 97.45 / 92,
  26246. bottom: 6.8 / 104.3
  26247. }
  26248. },
  26249. biggums: {
  26250. height: math.unit(8 + 6 / 12, "feet"),
  26251. weight: math.unit(425, "lb"),
  26252. name: "Biggums",
  26253. image: {
  26254. source: "./media/characters/wild/biggums.svg",
  26255. extra: 97.45 / 92,
  26256. bottom: 7.5 / 132.34
  26257. }
  26258. },
  26259. mawRegular: {
  26260. height: math.unit(1.24, "feet"),
  26261. name: "Maw (Regular)",
  26262. image: {
  26263. source: "./media/characters/wild/maw.svg"
  26264. }
  26265. },
  26266. mawBiggums: {
  26267. height: math.unit(1.47, "feet"),
  26268. name: "Maw (Biggums)",
  26269. image: {
  26270. source: "./media/characters/wild/maw.svg"
  26271. }
  26272. },
  26273. },
  26274. [
  26275. {
  26276. name: "Normal",
  26277. height: math.unit(7 + 3 / 12, "feet"),
  26278. default: true
  26279. },
  26280. ]
  26281. ))
  26282. characterMakers.push(() => makeCharacter(
  26283. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26284. {
  26285. front: {
  26286. height: math.unit(2.5, "meters"),
  26287. weight: math.unit(200, "kg"),
  26288. name: "Front",
  26289. image: {
  26290. source: "./media/characters/vidar/front.svg",
  26291. extra: 2994 / 2795,
  26292. bottom: 56 / 3061
  26293. }
  26294. },
  26295. back: {
  26296. height: math.unit(2.5, "meters"),
  26297. weight: math.unit(200, "kg"),
  26298. name: "Back",
  26299. image: {
  26300. source: "./media/characters/vidar/back.svg",
  26301. extra: 3131 / 2928,
  26302. bottom: 13.5 / 3141.5
  26303. }
  26304. },
  26305. feral: {
  26306. height: math.unit(2.5, "meters"),
  26307. weight: math.unit(2000, "kg"),
  26308. name: "Feral",
  26309. image: {
  26310. source: "./media/characters/vidar/feral.svg",
  26311. extra: 2790 / 1765,
  26312. bottom: 6 / 2796
  26313. }
  26314. },
  26315. },
  26316. [
  26317. {
  26318. name: "Normal",
  26319. height: math.unit(2.5, "meters"),
  26320. default: true
  26321. },
  26322. {
  26323. name: "Macro",
  26324. height: math.unit(100, "meters")
  26325. },
  26326. ]
  26327. ))
  26328. characterMakers.push(() => makeCharacter(
  26329. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26330. {
  26331. front: {
  26332. height: math.unit(5 + 9 / 12, "feet"),
  26333. weight: math.unit(120, "lb"),
  26334. name: "Front",
  26335. image: {
  26336. source: "./media/characters/ash/front.svg",
  26337. extra: 2189 / 1961,
  26338. bottom: 5.2 / 2194
  26339. }
  26340. },
  26341. },
  26342. [
  26343. {
  26344. name: "Normal",
  26345. height: math.unit(5 + 9 / 12, "feet"),
  26346. default: true
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26352. {
  26353. front: {
  26354. height: math.unit(9, "feet"),
  26355. weight: math.unit(10000, "lb"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/gygabite/front.svg",
  26359. bottom: 31.7 / 537.8,
  26360. extra: 505 / 370
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(9, "feet"),
  26368. default: true
  26369. },
  26370. ]
  26371. ))
  26372. characterMakers.push(() => makeCharacter(
  26373. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26374. {
  26375. front: {
  26376. height: math.unit(12, "feet"),
  26377. weight: math.unit(35000, "lb"),
  26378. name: "Front",
  26379. image: {
  26380. source: "./media/characters/p0tat0/front.svg",
  26381. extra: 1065 / 921,
  26382. bottom: 55.7 / 1121.25
  26383. }
  26384. },
  26385. },
  26386. [
  26387. {
  26388. name: "Normal",
  26389. height: math.unit(12, "feet"),
  26390. default: true
  26391. },
  26392. ]
  26393. ))
  26394. characterMakers.push(() => makeCharacter(
  26395. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26396. {
  26397. side: {
  26398. height: math.unit(6.5, "feet"),
  26399. weight: math.unit(800, "lb"),
  26400. name: "Side",
  26401. image: {
  26402. source: "./media/characters/dusk/side.svg",
  26403. extra: 615 / 373,
  26404. bottom: 53 / 664
  26405. }
  26406. },
  26407. sitting: {
  26408. height: math.unit(7, "feet"),
  26409. weight: math.unit(800, "lb"),
  26410. name: "Sitting",
  26411. image: {
  26412. source: "./media/characters/dusk/sitting.svg",
  26413. extra: 753 / 425,
  26414. bottom: 33 / 774
  26415. }
  26416. },
  26417. head: {
  26418. height: math.unit(6.1, "feet"),
  26419. name: "Head",
  26420. image: {
  26421. source: "./media/characters/dusk/head.svg"
  26422. }
  26423. },
  26424. },
  26425. [
  26426. {
  26427. name: "Normal",
  26428. height: math.unit(7, "feet"),
  26429. default: true
  26430. },
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(15, "feet"),
  26438. weight: math.unit(7000, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/jay-direwolf/front.svg",
  26442. extra: 1810 / 1732,
  26443. bottom: 66 / 1892
  26444. }
  26445. },
  26446. },
  26447. [
  26448. {
  26449. name: "Normal",
  26450. height: math.unit(15, "feet"),
  26451. default: true
  26452. },
  26453. ]
  26454. ))
  26455. characterMakers.push(() => makeCharacter(
  26456. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26457. {
  26458. front: {
  26459. height: math.unit(4 + 9 / 12, "feet"),
  26460. weight: math.unit(130, "lb"),
  26461. name: "Front",
  26462. image: {
  26463. source: "./media/characters/anchovie/front.svg",
  26464. extra: 382 / 350,
  26465. bottom: 25 / 409
  26466. }
  26467. },
  26468. back: {
  26469. height: math.unit(4 + 9 / 12, "feet"),
  26470. weight: math.unit(130, "lb"),
  26471. name: "Back",
  26472. image: {
  26473. source: "./media/characters/anchovie/back.svg",
  26474. extra: 385 / 352,
  26475. bottom: 16.6 / 402
  26476. }
  26477. },
  26478. frontDressed: {
  26479. height: math.unit(4 + 9 / 12, "feet"),
  26480. weight: math.unit(130, "lb"),
  26481. name: "Front (Dressed)",
  26482. image: {
  26483. source: "./media/characters/anchovie/front-dressed.svg",
  26484. extra: 382 / 350,
  26485. bottom: 25 / 409
  26486. }
  26487. },
  26488. backDressed: {
  26489. height: math.unit(4 + 9 / 12, "feet"),
  26490. weight: math.unit(130, "lb"),
  26491. name: "Back (Dressed)",
  26492. image: {
  26493. source: "./media/characters/anchovie/back-dressed.svg",
  26494. extra: 385 / 352,
  26495. bottom: 16.6 / 402
  26496. }
  26497. },
  26498. },
  26499. [
  26500. {
  26501. name: "Micro",
  26502. height: math.unit(6.4, "inches")
  26503. },
  26504. {
  26505. name: "Normal",
  26506. height: math.unit(4 + 9 / 12, "feet"),
  26507. default: true
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26513. {
  26514. front: {
  26515. height: math.unit(2, "meters"),
  26516. weight: math.unit(180, "lb"),
  26517. name: "Front",
  26518. image: {
  26519. source: "./media/characters/acidrenamon/front.svg",
  26520. extra: 987 / 890,
  26521. bottom: 22.8 / 1009
  26522. }
  26523. },
  26524. back: {
  26525. height: math.unit(2, "meters"),
  26526. weight: math.unit(180, "lb"),
  26527. name: "Back",
  26528. image: {
  26529. source: "./media/characters/acidrenamon/back.svg",
  26530. extra: 983 / 891,
  26531. bottom: 8.4 / 992
  26532. }
  26533. },
  26534. head: {
  26535. height: math.unit(1.92, "feet"),
  26536. name: "Head",
  26537. image: {
  26538. source: "./media/characters/acidrenamon/head.svg"
  26539. }
  26540. },
  26541. rump: {
  26542. height: math.unit(1.72, "feet"),
  26543. name: "Rump",
  26544. image: {
  26545. source: "./media/characters/acidrenamon/rump.svg"
  26546. }
  26547. },
  26548. tail: {
  26549. height: math.unit(4.2, "feet"),
  26550. name: "Tail",
  26551. image: {
  26552. source: "./media/characters/acidrenamon/tail.svg"
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Normal",
  26559. height: math.unit(2, "meters"),
  26560. default: true
  26561. },
  26562. {
  26563. name: "Minimacro",
  26564. height: math.unit(7, "meters")
  26565. },
  26566. {
  26567. name: "Macro",
  26568. height: math.unit(200, "meters")
  26569. },
  26570. {
  26571. name: "Gigamacro",
  26572. height: math.unit(0.2, "earths")
  26573. },
  26574. ]
  26575. ))
  26576. characterMakers.push(() => makeCharacter(
  26577. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26578. {
  26579. front: {
  26580. height: math.unit(6, "feet"),
  26581. weight: math.unit(150, "lb"),
  26582. name: "Front",
  26583. image: {
  26584. source: "./media/characters/kenzie-lee/front.svg",
  26585. extra: 1525 / 1465,
  26586. bottom: 45 / 1570
  26587. }
  26588. },
  26589. side: {
  26590. height: math.unit(6, "feet"),
  26591. weight: math.unit(150, "lb"),
  26592. name: "Side",
  26593. image: {
  26594. source: "./media/characters/kenzie-lee/side.svg",
  26595. extra: 5505 / 5383,
  26596. bottom: 60 / 5573
  26597. }
  26598. },
  26599. },
  26600. [
  26601. {
  26602. name: "Normal",
  26603. height: math.unit(152, "feet"),
  26604. default: true
  26605. },
  26606. {
  26607. name: "Megamacro",
  26608. height: math.unit(7, "miles")
  26609. },
  26610. {
  26611. name: "Gigamacro",
  26612. height: math.unit(8000, "miles")
  26613. },
  26614. ]
  26615. ))
  26616. characterMakers.push(() => makeCharacter(
  26617. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26618. {
  26619. side: {
  26620. height: math.unit(6, "feet"),
  26621. weight: math.unit(150, "lb"),
  26622. name: "Side",
  26623. image: {
  26624. source: "./media/characters/withers/side.svg",
  26625. extra: 1830 / 1728,
  26626. bottom: 96 / 1927
  26627. }
  26628. },
  26629. front: {
  26630. height: math.unit(6, "feet"),
  26631. weight: math.unit(150, "lb"),
  26632. name: "Front",
  26633. image: {
  26634. source: "./media/characters/withers/front.svg",
  26635. extra: 1514 / 1438,
  26636. bottom: 118 / 1632
  26637. }
  26638. },
  26639. },
  26640. [
  26641. {
  26642. name: "Macro",
  26643. height: math.unit(168, "feet"),
  26644. default: true
  26645. },
  26646. {
  26647. name: "Megamacro",
  26648. height: math.unit(15, "miles")
  26649. }
  26650. ]
  26651. ))
  26652. characterMakers.push(() => makeCharacter(
  26653. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26654. {
  26655. front: {
  26656. height: math.unit(6 + 7 / 12, "feet"),
  26657. weight: math.unit(250, "lb"),
  26658. name: "Front",
  26659. image: {
  26660. source: "./media/characters/nemoskii/front.svg",
  26661. extra: 2270 / 1734,
  26662. bottom: 86 / 2354
  26663. }
  26664. },
  26665. back: {
  26666. height: math.unit(6 + 7 / 12, "feet"),
  26667. weight: math.unit(250, "lb"),
  26668. name: "Back",
  26669. image: {
  26670. source: "./media/characters/nemoskii/back.svg",
  26671. extra: 1845 / 1788,
  26672. bottom: 10.5 / 1852
  26673. }
  26674. },
  26675. head: {
  26676. height: math.unit(1.31, "feet"),
  26677. name: "Head",
  26678. image: {
  26679. source: "./media/characters/nemoskii/head.svg"
  26680. }
  26681. },
  26682. },
  26683. [
  26684. {
  26685. name: "Normal",
  26686. height: math.unit(6 + 7 / 12, "feet"),
  26687. default: true
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26693. {
  26694. front: {
  26695. height: math.unit(1, "mile"),
  26696. weight: math.unit(265261.9, "lb"),
  26697. name: "Front",
  26698. image: {
  26699. source: "./media/characters/shui/front.svg",
  26700. extra: 1633 / 1564,
  26701. bottom: 91.5 / 1726
  26702. }
  26703. },
  26704. },
  26705. [
  26706. {
  26707. name: "Macro",
  26708. height: math.unit(1, "mile"),
  26709. default: true
  26710. },
  26711. ]
  26712. ))
  26713. characterMakers.push(() => makeCharacter(
  26714. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26715. {
  26716. front: {
  26717. height: math.unit(12 + 6 / 12, "feet"),
  26718. weight: math.unit(1342, "lb"),
  26719. name: "Front",
  26720. image: {
  26721. source: "./media/characters/arokh-takakura/front.svg",
  26722. extra: 1089 / 1043,
  26723. bottom: 77.4 / 1176.7
  26724. }
  26725. },
  26726. back: {
  26727. height: math.unit(12 + 6 / 12, "feet"),
  26728. weight: math.unit(1342, "lb"),
  26729. name: "Back",
  26730. image: {
  26731. source: "./media/characters/arokh-takakura/back.svg",
  26732. extra: 1046 / 1019,
  26733. bottom: 102 / 1150
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Big",
  26740. height: math.unit(12 + 6 / 12, "feet"),
  26741. default: true
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26747. {
  26748. front: {
  26749. height: math.unit(5 + 6 / 12, "feet"),
  26750. weight: math.unit(150, "lb"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/theo/front.svg",
  26754. extra: 1184 / 1131,
  26755. bottom: 7.4 / 1191
  26756. }
  26757. },
  26758. },
  26759. [
  26760. {
  26761. name: "Micro",
  26762. height: math.unit(5, "inches")
  26763. },
  26764. {
  26765. name: "Normal",
  26766. height: math.unit(5 + 6 / 12, "feet"),
  26767. default: true
  26768. },
  26769. ]
  26770. ))
  26771. characterMakers.push(() => makeCharacter(
  26772. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26773. {
  26774. front: {
  26775. height: math.unit(5 + 9 / 12, "feet"),
  26776. weight: math.unit(130, "lb"),
  26777. name: "Front",
  26778. image: {
  26779. source: "./media/characters/cecelia-swift/front.svg",
  26780. extra: 502 / 484,
  26781. bottom: 23 / 523
  26782. }
  26783. },
  26784. back: {
  26785. height: math.unit(5 + 9 / 12, "feet"),
  26786. weight: math.unit(130, "lb"),
  26787. name: "Back",
  26788. image: {
  26789. source: "./media/characters/cecelia-swift/back.svg",
  26790. extra: 499 / 485,
  26791. bottom: 12 / 511
  26792. }
  26793. },
  26794. head: {
  26795. height: math.unit(0.90, "feet"),
  26796. name: "Head",
  26797. image: {
  26798. source: "./media/characters/cecelia-swift/head.svg"
  26799. }
  26800. },
  26801. rump: {
  26802. height: math.unit(1.75, "feet"),
  26803. name: "Rump",
  26804. image: {
  26805. source: "./media/characters/cecelia-swift/rump.svg"
  26806. }
  26807. },
  26808. },
  26809. [
  26810. {
  26811. name: "Normal",
  26812. height: math.unit(5 + 9 / 12, "feet"),
  26813. default: true
  26814. },
  26815. {
  26816. name: "Big",
  26817. height: math.unit(50, "feet")
  26818. },
  26819. {
  26820. name: "Macro",
  26821. height: math.unit(100, "feet")
  26822. },
  26823. {
  26824. name: "Macro+",
  26825. height: math.unit(500, "feet")
  26826. },
  26827. {
  26828. name: "Macro++",
  26829. height: math.unit(1000, "feet")
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(6, "feet"),
  26838. weight: math.unit(150, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/kaunan/front.svg",
  26842. extra: 2890 / 2523,
  26843. bottom: 49 / 2939
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Macro",
  26850. height: math.unit(150, "feet"),
  26851. default: true
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(175, "cm"),
  26860. weight: math.unit(60, "kg"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/fei/front.svg",
  26864. extra: 2581 / 2400,
  26865. bottom: 82.2 / 2663
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Mortal",
  26872. height: math.unit(175, "cm")
  26873. },
  26874. {
  26875. name: "Normal",
  26876. height: math.unit(3500, "m"),
  26877. default: true
  26878. },
  26879. {
  26880. name: "Stroll",
  26881. height: math.unit(17.5, "km")
  26882. },
  26883. {
  26884. name: "Showoff",
  26885. height: math.unit(175, "km")
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26891. {
  26892. front: {
  26893. height: math.unit(7, "feet"),
  26894. weight: math.unit(1000, "kg"),
  26895. name: "Front",
  26896. image: {
  26897. source: "./media/characters/edrax/front.svg",
  26898. extra: 2838 / 2550,
  26899. bottom: 130 / 2968
  26900. }
  26901. },
  26902. },
  26903. [
  26904. {
  26905. name: "Small",
  26906. height: math.unit(7, "feet")
  26907. },
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(1500, "meters")
  26911. },
  26912. {
  26913. name: "Mega",
  26914. height: math.unit(12000000, "km"),
  26915. default: true
  26916. },
  26917. {
  26918. name: "Megamacro",
  26919. height: math.unit(10600000, "lightyears")
  26920. },
  26921. {
  26922. name: "Hypermacro",
  26923. height: math.unit(256, "yottameters")
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26929. {
  26930. front: {
  26931. height: math.unit(10, "feet"),
  26932. weight: math.unit(750, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/clove/front.svg",
  26936. extra: 2031 / 1860,
  26937. bottom: 47.8 / 2080
  26938. }
  26939. },
  26940. back: {
  26941. height: math.unit(10, "feet"),
  26942. weight: math.unit(750, "lb"),
  26943. name: "Back",
  26944. image: {
  26945. source: "./media/characters/clove/back.svg",
  26946. extra: 2025 / 1859,
  26947. bottom: 46 / 2071
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Normal",
  26954. height: math.unit(10, "feet")
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(4, "feet"),
  26963. weight: math.unit(50, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/alex-rabbit/front.svg",
  26967. extra: 507 / 458,
  26968. bottom: 18.5 / 527
  26969. }
  26970. },
  26971. back: {
  26972. height: math.unit(4, "feet"),
  26973. weight: math.unit(50, "lb"),
  26974. name: "Back",
  26975. image: {
  26976. source: "./media/characters/alex-rabbit/back.svg",
  26977. extra: 502 / 460,
  26978. bottom: 18.9 / 521
  26979. }
  26980. },
  26981. },
  26982. [
  26983. {
  26984. name: "Normal",
  26985. height: math.unit(4, "feet"),
  26986. default: true
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(1 + 3 / 12, "feet"),
  26995. weight: math.unit(80, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/zander-rose/front.svg",
  26999. extra: 916 / 797,
  27000. bottom: 17 / 933
  27001. }
  27002. },
  27003. back: {
  27004. height: math.unit(1 + 3 / 12, "feet"),
  27005. weight: math.unit(80, "lb"),
  27006. name: "Back",
  27007. image: {
  27008. source: "./media/characters/zander-rose/back.svg",
  27009. extra: 903 / 779,
  27010. bottom: 31 / 934
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Normal",
  27017. height: math.unit(1 + 3 / 12, "feet"),
  27018. default: true
  27019. },
  27020. ]
  27021. ))
  27022. characterMakers.push(() => makeCharacter(
  27023. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27024. {
  27025. anthro: {
  27026. height: math.unit(6, "feet"),
  27027. weight: math.unit(150, "lb"),
  27028. name: "Anthro",
  27029. image: {
  27030. source: "./media/characters/razz/anthro.svg",
  27031. extra: 1437 / 1343,
  27032. bottom: 48 / 1485
  27033. }
  27034. },
  27035. feral: {
  27036. height: math.unit(6, "feet"),
  27037. weight: math.unit(150, "lb"),
  27038. name: "Feral",
  27039. image: {
  27040. source: "./media/characters/razz/feral.svg",
  27041. extra: 2569 / 1385,
  27042. bottom: 95 / 2664
  27043. }
  27044. },
  27045. },
  27046. [
  27047. {
  27048. name: "Normal",
  27049. height: math.unit(6, "feet"),
  27050. default: true
  27051. },
  27052. ]
  27053. ))
  27054. characterMakers.push(() => makeCharacter(
  27055. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27056. {
  27057. front: {
  27058. height: math.unit(9 + 4 / 12, "feet"),
  27059. weight: math.unit(500, "lb"),
  27060. name: "Front",
  27061. image: {
  27062. source: "./media/characters/morrigan/front.svg",
  27063. extra: 2707 / 2579,
  27064. bottom: 156 / 2863
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Normal",
  27071. height: math.unit(9 + 4 / 12, "feet"),
  27072. default: true
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27078. {
  27079. front: {
  27080. height: math.unit(5, "stories"),
  27081. weight: math.unit(4000, "lb"),
  27082. name: "Front",
  27083. image: {
  27084. source: "./media/characters/jenene/front.svg",
  27085. extra: 1780 / 1710,
  27086. bottom: 57 / 1837
  27087. }
  27088. },
  27089. },
  27090. [
  27091. {
  27092. name: "Normal",
  27093. height: math.unit(5, "stories"),
  27094. default: true
  27095. },
  27096. ]
  27097. ))
  27098. characterMakers.push(() => makeCharacter(
  27099. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27100. {
  27101. front: {
  27102. height: math.unit(6, "feet"),
  27103. weight: math.unit(150, "lb"),
  27104. name: "Front",
  27105. image: {
  27106. source: "./media/characters/vix-archaser/front.svg",
  27107. extra: 2767 / 2562,
  27108. bottom: 36 / 2803
  27109. }
  27110. },
  27111. },
  27112. [
  27113. {
  27114. name: "Micro",
  27115. height: math.unit(1, "foot")
  27116. },
  27117. {
  27118. name: "Normal",
  27119. height: math.unit(6 + 5 / 12, "feet")
  27120. },
  27121. {
  27122. name: "Minimacro",
  27123. height: math.unit(500, "feet")
  27124. },
  27125. {
  27126. name: "Macro",
  27127. height: math.unit(4, "miles")
  27128. },
  27129. {
  27130. name: "Megamacro",
  27131. height: math.unit(250, "miles"),
  27132. default: true
  27133. },
  27134. {
  27135. name: "Gigamacro",
  27136. height: math.unit(1, "universe")
  27137. },
  27138. {
  27139. name: "Endgame",
  27140. height: math.unit(100, "multiverses")
  27141. }
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27146. {
  27147. taurSfw: {
  27148. height: math.unit(10, "meters"),
  27149. weight: math.unit(17500, "kg"),
  27150. name: "Taur",
  27151. image: {
  27152. source: "./media/characters/faey/taur-sfw.svg",
  27153. extra: 1200 / 968,
  27154. bottom: 41 / 1241
  27155. }
  27156. },
  27157. chestmaw: {
  27158. height: math.unit(2.01, "meters"),
  27159. name: "Chestmaw",
  27160. image: {
  27161. source: "./media/characters/faey/chestmaw.svg"
  27162. }
  27163. },
  27164. foot: {
  27165. height: math.unit(2.43, "meters"),
  27166. name: "Foot",
  27167. image: {
  27168. source: "./media/characters/faey/foot.svg"
  27169. }
  27170. },
  27171. jaws: {
  27172. height: math.unit(1.66, "meters"),
  27173. name: "Jaws",
  27174. image: {
  27175. source: "./media/characters/faey/jaws.svg"
  27176. }
  27177. },
  27178. tongues: {
  27179. height: math.unit(2.01, "meters"),
  27180. name: "Tongues",
  27181. image: {
  27182. source: "./media/characters/faey/tongues.svg"
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Small",
  27189. height: math.unit(10, "meters"),
  27190. default: true
  27191. },
  27192. {
  27193. name: "Big",
  27194. height: math.unit(500000, "km")
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27200. {
  27201. front: {
  27202. height: math.unit(7, "feet"),
  27203. weight: math.unit(275, "lb"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/roku/front.svg",
  27207. extra: 903 / 878,
  27208. bottom: 37 / 940
  27209. }
  27210. },
  27211. },
  27212. [
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(7, "feet"),
  27216. default: true
  27217. },
  27218. {
  27219. name: "Macro",
  27220. height: math.unit(500, "feet")
  27221. },
  27222. {
  27223. name: "Megamacro",
  27224. height: math.unit(200, "miles")
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27230. {
  27231. front: {
  27232. height: math.unit(6 + 2 / 12, "feet"),
  27233. weight: math.unit(150, "lb"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/lira/front.svg",
  27237. extra: 1727 / 1605,
  27238. bottom: 26 / 1753
  27239. }
  27240. },
  27241. back: {
  27242. height: math.unit(6 + 2 / 12, "feet"),
  27243. weight: math.unit(150, "lb"),
  27244. name: "Back",
  27245. image: {
  27246. source: "./media/characters/lira/back.svg",
  27247. extra: 1713 / 159,
  27248. bottom: 20 / 1733
  27249. }
  27250. },
  27251. hand: {
  27252. height: math.unit(0.75, "feet"),
  27253. name: "Hand",
  27254. image: {
  27255. source: "./media/characters/lira/hand.svg"
  27256. }
  27257. },
  27258. maw: {
  27259. height: math.unit(0.65, "feet"),
  27260. name: "Maw",
  27261. image: {
  27262. source: "./media/characters/lira/maw.svg"
  27263. }
  27264. },
  27265. pawDigi: {
  27266. height: math.unit(1.6, "feet"),
  27267. name: "Paw Digi",
  27268. image: {
  27269. source: "./media/characters/lira/paw-digi.svg"
  27270. }
  27271. },
  27272. pawPlanti: {
  27273. height: math.unit(1.4, "feet"),
  27274. name: "Paw Planti",
  27275. image: {
  27276. source: "./media/characters/lira/paw-planti.svg"
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Normal",
  27283. height: math.unit(6 + 2 / 12, "feet"),
  27284. default: true
  27285. },
  27286. {
  27287. name: "Macro",
  27288. height: math.unit(100, "feet")
  27289. },
  27290. {
  27291. name: "Macro²",
  27292. height: math.unit(1600, "feet")
  27293. },
  27294. {
  27295. name: "Planetary",
  27296. height: math.unit(20, "earths")
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(6, "feet"),
  27305. weight: math.unit(150, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/hadjet/front.svg",
  27309. extra: 1480 / 1346,
  27310. bottom: 26 / 1506
  27311. }
  27312. },
  27313. frontNsfw: {
  27314. height: math.unit(6, "feet"),
  27315. weight: math.unit(150, "lb"),
  27316. name: "Front (NSFW)",
  27317. image: {
  27318. source: "./media/characters/hadjet/front-nsfw.svg",
  27319. extra: 1440 / 1358,
  27320. bottom: 52 / 1492
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Macro",
  27327. height: math.unit(10, "stories"),
  27328. default: true
  27329. },
  27330. {
  27331. name: "Megamacro",
  27332. height: math.unit(1.5, "miles")
  27333. },
  27334. {
  27335. name: "Megamacro+",
  27336. height: math.unit(5, "miles")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27342. {
  27343. side: {
  27344. height: math.unit(106, "feet"),
  27345. weight: math.unit(500, "tonnes"),
  27346. name: "Side",
  27347. image: {
  27348. source: "./media/characters/kodran/side.svg",
  27349. extra: 553 / 480,
  27350. bottom: 33 / 586
  27351. }
  27352. },
  27353. front: {
  27354. height: math.unit(132, "feet"),
  27355. weight: math.unit(500, "tonnes"),
  27356. name: "Front",
  27357. image: {
  27358. source: "./media/characters/kodran/front.svg",
  27359. extra: 667 / 643,
  27360. bottom: 42 / 709
  27361. }
  27362. },
  27363. flying: {
  27364. height: math.unit(350, "feet"),
  27365. weight: math.unit(500, "tonnes"),
  27366. name: "Flying",
  27367. image: {
  27368. source: "./media/characters/kodran/flying.svg"
  27369. }
  27370. },
  27371. foot: {
  27372. height: math.unit(33, "feet"),
  27373. name: "Foot",
  27374. image: {
  27375. source: "./media/characters/kodran/foot.svg"
  27376. }
  27377. },
  27378. footFront: {
  27379. height: math.unit(19, "feet"),
  27380. name: "Foot (Front)",
  27381. image: {
  27382. source: "./media/characters/kodran/foot-front.svg",
  27383. extra: 261 / 261,
  27384. bottom: 91 / 352
  27385. }
  27386. },
  27387. headFront: {
  27388. height: math.unit(53, "feet"),
  27389. name: "Head (Front)",
  27390. image: {
  27391. source: "./media/characters/kodran/head-front.svg"
  27392. }
  27393. },
  27394. headSide: {
  27395. height: math.unit(65, "feet"),
  27396. name: "Head (Side)",
  27397. image: {
  27398. source: "./media/characters/kodran/head-side.svg"
  27399. }
  27400. },
  27401. throat: {
  27402. height: math.unit(79, "feet"),
  27403. name: "Throat",
  27404. image: {
  27405. source: "./media/characters/kodran/throat.svg"
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Large",
  27412. height: math.unit(106, "feet"),
  27413. default: true
  27414. },
  27415. ]
  27416. ))
  27417. characterMakers.push(() => makeCharacter(
  27418. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27419. {
  27420. side: {
  27421. height: math.unit(11, "feet"),
  27422. weight: math.unit(150, "lb"),
  27423. name: "Side",
  27424. image: {
  27425. source: "./media/characters/pyxaron/side.svg",
  27426. extra: 305 / 195,
  27427. bottom: 17 / 322
  27428. }
  27429. },
  27430. },
  27431. [
  27432. {
  27433. name: "Normal",
  27434. height: math.unit(11, "feet")
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(6, "feet"),
  27443. weight: math.unit(150, "lb"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/meep/front.svg",
  27447. extra: 88 / 80,
  27448. bottom: 6 / 94
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Fun Sized",
  27455. height: math.unit(2, "inches"),
  27456. default: true
  27457. },
  27458. {
  27459. name: "Friend Sized",
  27460. height: math.unit(8, "inches")
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(15, "feet"),
  27469. weight: math.unit(2500, "lb"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/holly-rabbit/front.svg",
  27473. extra: 1433 / 1233,
  27474. bottom: 125 / 1558
  27475. }
  27476. },
  27477. dick: {
  27478. height: math.unit(4.6, "feet"),
  27479. name: "Dick",
  27480. image: {
  27481. source: "./media/characters/holly-rabbit/dick.svg"
  27482. }
  27483. },
  27484. },
  27485. [
  27486. {
  27487. name: "Normal",
  27488. height: math.unit(15, "feet"),
  27489. default: true
  27490. },
  27491. {
  27492. name: "Macro",
  27493. height: math.unit(250, "feet")
  27494. },
  27495. {
  27496. name: "Macro+",
  27497. height: math.unit(2500, "feet")
  27498. },
  27499. ]
  27500. ))
  27501. characterMakers.push(() => makeCharacter(
  27502. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27503. {
  27504. front: {
  27505. height: math.unit(3.02, "meters"),
  27506. weight: math.unit(500, "kg"),
  27507. name: "Front",
  27508. image: {
  27509. source: "./media/characters/drena/front.svg",
  27510. extra: 282 / 243,
  27511. bottom: 8 / 290
  27512. }
  27513. },
  27514. side: {
  27515. height: math.unit(3.02, "meters"),
  27516. weight: math.unit(500, "kg"),
  27517. name: "Side",
  27518. image: {
  27519. source: "./media/characters/drena/side.svg",
  27520. extra: 280 / 245,
  27521. bottom: 10 / 290
  27522. }
  27523. },
  27524. back: {
  27525. height: math.unit(3.02, "meters"),
  27526. weight: math.unit(500, "kg"),
  27527. name: "Back",
  27528. image: {
  27529. source: "./media/characters/drena/back.svg",
  27530. extra: 278 / 243,
  27531. bottom: 2 / 280
  27532. }
  27533. },
  27534. foot: {
  27535. height: math.unit(0.75, "meters"),
  27536. name: "Foot",
  27537. image: {
  27538. source: "./media/characters/drena/foot.svg"
  27539. }
  27540. },
  27541. maw: {
  27542. height: math.unit(0.82, "meters"),
  27543. name: "Maw",
  27544. image: {
  27545. source: "./media/characters/drena/maw.svg"
  27546. }
  27547. },
  27548. rump: {
  27549. height: math.unit(0.93, "meters"),
  27550. name: "Rump",
  27551. image: {
  27552. source: "./media/characters/drena/rump.svg"
  27553. }
  27554. },
  27555. },
  27556. [
  27557. {
  27558. name: "Normal",
  27559. height: math.unit(3.02, "meters"),
  27560. default: true
  27561. },
  27562. ]
  27563. ))
  27564. characterMakers.push(() => makeCharacter(
  27565. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27566. {
  27567. front: {
  27568. height: math.unit(6 + 4 / 12, "feet"),
  27569. weight: math.unit(250, "lb"),
  27570. name: "Front",
  27571. image: {
  27572. source: "./media/characters/remmyzilla/front.svg",
  27573. extra: 4033 / 3588,
  27574. bottom: 123 / 4156
  27575. }
  27576. },
  27577. back: {
  27578. height: math.unit(6 + 4 / 12, "feet"),
  27579. weight: math.unit(250, "lb"),
  27580. name: "Back",
  27581. image: {
  27582. source: "./media/characters/remmyzilla/back.svg",
  27583. extra: 2687 / 2555,
  27584. bottom: 48 / 2735
  27585. }
  27586. },
  27587. frontFancy: {
  27588. height: math.unit(6 + 4 / 12, "feet"),
  27589. weight: math.unit(250, "lb"),
  27590. name: "Front (Fancy)",
  27591. image: {
  27592. source: "./media/characters/remmyzilla/front-fancy.svg",
  27593. extra: 4119 / 3419,
  27594. bottom: 237 / 4356
  27595. }
  27596. },
  27597. paw: {
  27598. height: math.unit(1.73, "feet"),
  27599. name: "Paw",
  27600. image: {
  27601. source: "./media/characters/remmyzilla/paw.svg"
  27602. }
  27603. },
  27604. maw: {
  27605. height: math.unit(1.73, "feet"),
  27606. name: "Maw",
  27607. image: {
  27608. source: "./media/characters/remmyzilla/maw.svg"
  27609. }
  27610. },
  27611. },
  27612. [
  27613. {
  27614. name: "Normal",
  27615. height: math.unit(6 + 4 / 12, "feet")
  27616. },
  27617. {
  27618. name: "Minimacro",
  27619. height: math.unit(12 + 8 / 12, "feet")
  27620. },
  27621. {
  27622. name: "Normal",
  27623. height: math.unit(640, "feet"),
  27624. default: true
  27625. },
  27626. {
  27627. name: "Megamacro",
  27628. height: math.unit(6400, "feet")
  27629. },
  27630. {
  27631. name: "Gigamacro",
  27632. height: math.unit(64000, "miles")
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(2.5, "meters"),
  27641. weight: math.unit(300, "lb"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/lawrence/front.svg",
  27645. extra: 357 / 335,
  27646. bottom: 30 / 387
  27647. }
  27648. },
  27649. back: {
  27650. height: math.unit(2.5, "meters"),
  27651. weight: math.unit(300, "lb"),
  27652. name: "Back",
  27653. image: {
  27654. source: "./media/characters/lawrence/back.svg",
  27655. extra: 357 / 338,
  27656. bottom: 16 / 373
  27657. }
  27658. },
  27659. head: {
  27660. height: math.unit(0.9, "meter"),
  27661. name: "Head",
  27662. image: {
  27663. source: "./media/characters/lawrence/head.svg"
  27664. }
  27665. },
  27666. maw: {
  27667. height: math.unit(0.7, "meter"),
  27668. name: "Maw",
  27669. image: {
  27670. source: "./media/characters/lawrence/maw.svg"
  27671. }
  27672. },
  27673. footBottom: {
  27674. height: math.unit(0.5, "meter"),
  27675. name: "Foot (Bottom)",
  27676. image: {
  27677. source: "./media/characters/lawrence/foot-bottom.svg"
  27678. }
  27679. },
  27680. footTop: {
  27681. height: math.unit(0.5, "meter"),
  27682. name: "Foot (Top)",
  27683. image: {
  27684. source: "./media/characters/lawrence/foot-top.svg"
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Normal",
  27691. height: math.unit(2.5, "meters"),
  27692. default: true
  27693. },
  27694. {
  27695. name: "Macro",
  27696. height: math.unit(95, "meters")
  27697. },
  27698. {
  27699. name: "Megamacro",
  27700. height: math.unit(150, "km")
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27706. {
  27707. front: {
  27708. height: math.unit(4.2, "meters"),
  27709. name: "Front",
  27710. image: {
  27711. source: "./media/characters/sydney/front.svg",
  27712. extra: 1323 / 1277,
  27713. bottom: 111 / 1434
  27714. }
  27715. },
  27716. },
  27717. [
  27718. {
  27719. name: "Normal",
  27720. height: math.unit(4.2, "meters")
  27721. },
  27722. ]
  27723. ))
  27724. characterMakers.push(() => makeCharacter(
  27725. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27726. {
  27727. back: {
  27728. height: math.unit(201, "feet"),
  27729. name: "Back",
  27730. image: {
  27731. source: "./media/characters/jessica/back.svg",
  27732. extra: 273 / 259,
  27733. bottom: 7 / 280
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Normal",
  27740. height: math.unit(201, "feet"),
  27741. default: true
  27742. },
  27743. {
  27744. name: "Megamacro",
  27745. height: math.unit(8, "miles")
  27746. },
  27747. ]
  27748. ))
  27749. characterMakers.push(() => makeCharacter(
  27750. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27751. {
  27752. side: {
  27753. height: math.unit(320, "cm"),
  27754. name: "Side",
  27755. image: {
  27756. source: "./media/characters/victoria/side.svg",
  27757. extra: 778 / 346,
  27758. bottom: 56 / 834
  27759. }
  27760. },
  27761. maw: {
  27762. height: math.unit(5.9, "feet"),
  27763. name: "Maw",
  27764. image: {
  27765. source: "./media/characters/victoria/maw.svg"
  27766. }
  27767. },
  27768. },
  27769. [
  27770. {
  27771. name: "Normal",
  27772. height: math.unit(320, "cm"),
  27773. default: true
  27774. },
  27775. ]
  27776. ))
  27777. characterMakers.push(() => makeCharacter(
  27778. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27779. {
  27780. front: {
  27781. height: math.unit(5 + 6 / 12, "feet"),
  27782. name: "Front",
  27783. image: {
  27784. source: "./media/characters/cat/front.svg",
  27785. extra: 1374 / 1257,
  27786. bottom: 59 / 1433
  27787. }
  27788. },
  27789. back: {
  27790. height: math.unit(5 + 6 / 12, "feet"),
  27791. name: "Back",
  27792. image: {
  27793. source: "./media/characters/cat/back.svg",
  27794. extra: 1337 / 1226,
  27795. bottom: 34 / 1371
  27796. }
  27797. },
  27798. taur: {
  27799. height: math.unit(7, "feet"),
  27800. name: "Taur",
  27801. image: {
  27802. source: "./media/characters/cat/taur.svg",
  27803. extra: 1345 / 1231,
  27804. bottom: 66 / 1411
  27805. }
  27806. },
  27807. lucario: {
  27808. height: math.unit(4, "feet"),
  27809. name: "Lucario",
  27810. image: {
  27811. source: "./media/characters/cat/lucario.svg",
  27812. extra: 1470 / 1318,
  27813. bottom: 65 / 1535
  27814. }
  27815. },
  27816. megaLucario: {
  27817. height: math.unit(4, "feet"),
  27818. name: "Mega Lucario",
  27819. image: {
  27820. source: "./media/characters/cat/mega-lucario.svg",
  27821. extra: 1515 / 1319,
  27822. bottom: 63 / 1578
  27823. }
  27824. },
  27825. nickit: {
  27826. height: math.unit(2, "feet"),
  27827. name: "Nickit",
  27828. image: {
  27829. source: "./media/characters/cat/nickit.svg",
  27830. extra: 1980 / 1585,
  27831. bottom: 102 / 2082
  27832. }
  27833. },
  27834. lopunnyFront: {
  27835. height: math.unit(5, "feet"),
  27836. name: "Lopunny (Front)",
  27837. image: {
  27838. source: "./media/characters/cat/lopunny-front.svg",
  27839. extra: 1782 / 1469,
  27840. bottom: 38 / 1820
  27841. }
  27842. },
  27843. lopunnyBack: {
  27844. height: math.unit(5, "feet"),
  27845. name: "Lopunny (Back)",
  27846. image: {
  27847. source: "./media/characters/cat/lopunny-back.svg",
  27848. extra: 1660 / 1490,
  27849. bottom: 25 / 1685
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Really small",
  27856. height: math.unit(1, "nm")
  27857. },
  27858. {
  27859. name: "Micro",
  27860. height: math.unit(5, "inches")
  27861. },
  27862. {
  27863. name: "Normal",
  27864. height: math.unit(5 + 6 / 12, "feet"),
  27865. default: true
  27866. },
  27867. {
  27868. name: "Macro",
  27869. height: math.unit(50, "feet")
  27870. },
  27871. {
  27872. name: "Macro+",
  27873. height: math.unit(150, "feet")
  27874. },
  27875. {
  27876. name: "Megamacro",
  27877. height: math.unit(100, "miles")
  27878. },
  27879. ]
  27880. ))
  27881. characterMakers.push(() => makeCharacter(
  27882. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27883. {
  27884. front: {
  27885. height: math.unit(63.4, "meters"),
  27886. weight: math.unit(3.28349e+6, "kilograms"),
  27887. name: "Front",
  27888. image: {
  27889. source: "./media/characters/kirina-violet/front.svg",
  27890. extra: 2812/2725,
  27891. bottom: 0/2812
  27892. }
  27893. },
  27894. back: {
  27895. height: math.unit(63.4, "meters"),
  27896. weight: math.unit(3.28349e+6, "kilograms"),
  27897. name: "Back",
  27898. image: {
  27899. source: "./media/characters/kirina-violet/back.svg",
  27900. extra: 2812/2725,
  27901. bottom: 0/2812
  27902. }
  27903. },
  27904. mouth: {
  27905. height: math.unit(4.35, "meters"),
  27906. name: "Mouth",
  27907. image: {
  27908. source: "./media/characters/kirina-violet/mouth.svg"
  27909. }
  27910. },
  27911. paw: {
  27912. height: math.unit(5.6, "meters"),
  27913. name: "Paw",
  27914. image: {
  27915. source: "./media/characters/kirina-violet/paw.svg"
  27916. }
  27917. },
  27918. tail: {
  27919. height: math.unit(18, "meters"),
  27920. name: "Tail",
  27921. image: {
  27922. source: "./media/characters/kirina-violet/tail.svg"
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Macro",
  27929. height: math.unit(63.4, "meters"),
  27930. default: true
  27931. },
  27932. ]
  27933. ))
  27934. characterMakers.push(() => makeCharacter(
  27935. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27936. {
  27937. front: {
  27938. height: math.unit(60, "feet"),
  27939. name: "Front",
  27940. image: {
  27941. source: "./media/characters/cat-gigachu/front.svg",
  27942. extra: 1024/780,
  27943. bottom: 23/1047
  27944. }
  27945. },
  27946. back: {
  27947. height: math.unit(60, "feet"),
  27948. name: "Back",
  27949. image: {
  27950. source: "./media/characters/cat-gigachu/back.svg",
  27951. extra: 1024/780,
  27952. bottom: 23/1047
  27953. }
  27954. },
  27955. },
  27956. [
  27957. {
  27958. name: "Dynamax",
  27959. height: math.unit(60, "feet"),
  27960. default: true
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27966. {
  27967. front: {
  27968. height: math.unit(6, "feet"),
  27969. weight: math.unit(150, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/sfaiyan/front.svg",
  27973. extra: 999/978,
  27974. bottom: 5/1004
  27975. }
  27976. },
  27977. },
  27978. [
  27979. {
  27980. name: "Normal",
  27981. height: math.unit(1.82, "meters")
  27982. },
  27983. {
  27984. name: "Giant",
  27985. height: math.unit(2.27, "km"),
  27986. default: true
  27987. },
  27988. ]
  27989. ))
  27990. characterMakers.push(() => makeCharacter(
  27991. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  27992. {
  27993. front: {
  27994. height: math.unit(179, "cm"),
  27995. weight: math.unit(100, "kg"),
  27996. name: "Front",
  27997. image: {
  27998. source: "./media/characters/raunehkeli/front.svg",
  27999. extra: 1934/1926,
  28000. bottom: 0/1934
  28001. }
  28002. },
  28003. },
  28004. [
  28005. {
  28006. name: "Normal",
  28007. height: math.unit(179, "cm")
  28008. },
  28009. {
  28010. name: "Maximum",
  28011. height: math.unit(575, "meters"),
  28012. default: true
  28013. },
  28014. ]
  28015. ))
  28016. characterMakers.push(() => makeCharacter(
  28017. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28018. {
  28019. front: {
  28020. height: math.unit(6, "feet"),
  28021. weight: math.unit(150, "lb"),
  28022. name: "Front",
  28023. image: {
  28024. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28025. extra: 2625/2518,
  28026. bottom: 60/2685
  28027. }
  28028. },
  28029. },
  28030. [
  28031. {
  28032. name: "Normal",
  28033. height: math.unit(6 + 2/12, "feet"),
  28034. default: true
  28035. },
  28036. {
  28037. name: "Macro",
  28038. height: math.unit(1180, "feet")
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(5 + 6/12, "feet"),
  28047. weight: math.unit(108, "lb"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/lilith-zott/front.svg",
  28051. extra: 2510/2238,
  28052. bottom: 100/2610
  28053. }
  28054. },
  28055. frontDressed: {
  28056. height: math.unit(5 + 6/12, "feet"),
  28057. weight: math.unit(108, "lb"),
  28058. name: "Front (Dressed)",
  28059. image: {
  28060. source: "./media/characters/lilith-zott/front-dressed.svg",
  28061. extra: 2510/2238,
  28062. bottom: 100/2610
  28063. }
  28064. },
  28065. },
  28066. [
  28067. {
  28068. name: "Normal",
  28069. height: math.unit(5 + 6/12, "feet")
  28070. },
  28071. {
  28072. name: "Macro",
  28073. height: math.unit(200, "feet"),
  28074. default: true
  28075. },
  28076. {
  28077. name: "Macro+",
  28078. height: math.unit(1030, "feet")
  28079. },
  28080. ]
  28081. ))
  28082. characterMakers.push(() => makeCharacter(
  28083. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28084. {
  28085. front: {
  28086. height: math.unit(6, "feet"),
  28087. weight: math.unit(150, "lb"),
  28088. name: "Front",
  28089. image: {
  28090. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28091. extra: 2567/2435,
  28092. bottom: 39/2606
  28093. }
  28094. },
  28095. frontSuper: {
  28096. height: math.unit(6, "feet"),
  28097. name: "Front (Super)",
  28098. image: {
  28099. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28100. extra: 2567/2435,
  28101. bottom: 39/2606
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(5 + 10/12, "feet")
  28109. },
  28110. {
  28111. name: "Macro",
  28112. height: math.unit(220, "feet"),
  28113. default: true
  28114. },
  28115. {
  28116. name: "Macro+",
  28117. height: math.unit(1100, "feet")
  28118. },
  28119. ]
  28120. ))
  28121. characterMakers.push(() => makeCharacter(
  28122. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28123. {
  28124. front: {
  28125. height: math.unit(100, "miles"),
  28126. name: "Front",
  28127. image: {
  28128. source: "./media/characters/sona/front.svg",
  28129. extra: 2433/2201,
  28130. bottom: 53/2486
  28131. }
  28132. },
  28133. foot: {
  28134. height: math.unit(16.1, "miles"),
  28135. name: "Foot",
  28136. image: {
  28137. source: "./media/characters/sona/foot.svg"
  28138. }
  28139. },
  28140. },
  28141. [
  28142. {
  28143. name: "Macro",
  28144. height: math.unit(100, "miles"),
  28145. default: true
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(6, "feet"),
  28154. weight: math.unit(150, "lb"),
  28155. name: "Front",
  28156. image: {
  28157. source: "./media/characters/bailey/front.svg",
  28158. extra: 1778/1724,
  28159. bottom: 30/1808
  28160. }
  28161. },
  28162. },
  28163. [
  28164. {
  28165. name: "Micro",
  28166. height: math.unit(4, "inches")
  28167. },
  28168. {
  28169. name: "Normal",
  28170. height: math.unit(5 + 5/12, "feet"),
  28171. default: true
  28172. },
  28173. {
  28174. name: "Macro",
  28175. height: math.unit(250, "feet")
  28176. },
  28177. {
  28178. name: "Megamacro",
  28179. height: math.unit(100, "miles")
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(5 + 2/12, "feet"),
  28188. weight: math.unit(120, "lb"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/snaps/front.svg",
  28192. extra: 2370/2177,
  28193. bottom: 48/2418
  28194. }
  28195. },
  28196. back: {
  28197. height: math.unit(5 + 2/12, "feet"),
  28198. weight: math.unit(120, "lb"),
  28199. name: "Back",
  28200. image: {
  28201. source: "./media/characters/snaps/back.svg",
  28202. extra: 2408/2258,
  28203. bottom: 15/2423
  28204. }
  28205. },
  28206. },
  28207. [
  28208. {
  28209. name: "Micro",
  28210. height: math.unit(9, "inches")
  28211. },
  28212. {
  28213. name: "Normal",
  28214. height: math.unit(5 + 2/12, "feet"),
  28215. default: true
  28216. },
  28217. {
  28218. name: "Mini Macro",
  28219. height: math.unit(10, "feet")
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(1.8, "meters"),
  28228. weight: math.unit(85, "kg"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/azteck/front.svg",
  28232. extra: 2815/2625,
  28233. bottom: 89/2904
  28234. }
  28235. },
  28236. back: {
  28237. height: math.unit(1.8, "meters"),
  28238. weight: math.unit(85, "kg"),
  28239. name: "Back",
  28240. image: {
  28241. source: "./media/characters/azteck/back.svg",
  28242. extra: 2856/2648,
  28243. bottom: 85/2941
  28244. }
  28245. },
  28246. frontDressed: {
  28247. height: math.unit(1.8, "meters"),
  28248. weight: math.unit(85, "kg"),
  28249. name: "Front (Dressed)",
  28250. image: {
  28251. source: "./media/characters/azteck/front-dressed.svg",
  28252. extra: 2147/2003,
  28253. bottom: 68/2215
  28254. }
  28255. },
  28256. head: {
  28257. height: math.unit(0.47, "meters"),
  28258. weight: math.unit(85, "kg"),
  28259. name: "Head",
  28260. image: {
  28261. source: "./media/characters/azteck/head.svg"
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Bite sized",
  28268. height: math.unit(16, "cm")
  28269. },
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(1.8, "meters"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(6, "feet"),
  28282. weight: math.unit(150, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/pidge/front.svg",
  28286. extra: 620/588,
  28287. bottom: 9/629
  28288. }
  28289. },
  28290. back: {
  28291. height: math.unit(6, "feet"),
  28292. weight: math.unit(150, "lb"),
  28293. name: "Back",
  28294. image: {
  28295. source: "./media/characters/pidge/back.svg",
  28296. extra: 620/588,
  28297. bottom: 9/629
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Macro",
  28304. height: math.unit(1, "mile"),
  28305. default: true
  28306. },
  28307. ]
  28308. ))
  28309. characterMakers.push(() => makeCharacter(
  28310. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28311. {
  28312. front: {
  28313. height: math.unit(6, "feet"),
  28314. weight: math.unit(150, "lb"),
  28315. name: "Front",
  28316. image: {
  28317. source: "./media/characters/en/front.svg",
  28318. extra: 1697/1563,
  28319. bottom: 103/1800
  28320. }
  28321. },
  28322. back: {
  28323. height: math.unit(6, "feet"),
  28324. weight: math.unit(150, "lb"),
  28325. name: "Back",
  28326. image: {
  28327. source: "./media/characters/en/back.svg",
  28328. extra: 1700/1570,
  28329. bottom: 51/1751
  28330. }
  28331. },
  28332. frontDressed: {
  28333. height: math.unit(6, "feet"),
  28334. weight: math.unit(150, "lb"),
  28335. name: "Front (Dressed)",
  28336. image: {
  28337. source: "./media/characters/en/front-dressed.svg",
  28338. extra: 1697/1563,
  28339. bottom: 103/1800
  28340. }
  28341. },
  28342. backDressed: {
  28343. height: math.unit(6, "feet"),
  28344. weight: math.unit(150, "lb"),
  28345. name: "Back (Dressed)",
  28346. image: {
  28347. source: "./media/characters/en/back-dressed.svg",
  28348. extra: 1700/1570,
  28349. bottom: 51/1751
  28350. }
  28351. },
  28352. },
  28353. [
  28354. {
  28355. name: "Macro",
  28356. height: math.unit(210, "feet"),
  28357. default: true
  28358. },
  28359. ]
  28360. ))
  28361. characterMakers.push(() => makeCharacter(
  28362. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28363. {
  28364. front: {
  28365. height: math.unit(6, "feet"),
  28366. weight: math.unit(150, "lb"),
  28367. name: "Front",
  28368. image: {
  28369. source: "./media/characters/haze-orris/front.svg",
  28370. extra: 3975/3525,
  28371. bottom: 137/4112
  28372. }
  28373. },
  28374. },
  28375. [
  28376. {
  28377. name: "Micro",
  28378. height: math.unit(150, "mm"),
  28379. default: true
  28380. },
  28381. ]
  28382. ))
  28383. characterMakers.push(() => makeCharacter(
  28384. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28385. {
  28386. front: {
  28387. height: math.unit(6, "feet"),
  28388. weight: math.unit(150, "lb"),
  28389. name: "Front",
  28390. image: {
  28391. source: "./media/characters/casselene-yaro/front.svg",
  28392. extra: 4721/4541,
  28393. bottom: 82/4803
  28394. }
  28395. },
  28396. back: {
  28397. height: math.unit(6, "feet"),
  28398. weight: math.unit(150, "lb"),
  28399. name: "Back",
  28400. image: {
  28401. source: "./media/characters/casselene-yaro/back.svg",
  28402. extra: 4569/4377,
  28403. bottom: 69/4638
  28404. }
  28405. },
  28406. frontDressed: {
  28407. height: math.unit(6, "feet"),
  28408. weight: math.unit(150, "lb"),
  28409. name: "Front-dressed",
  28410. image: {
  28411. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28412. extra: 4721/4541,
  28413. bottom: 82/4803
  28414. }
  28415. },
  28416. },
  28417. [
  28418. {
  28419. name: "Macro",
  28420. height: math.unit(190, "feet")
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28426. {
  28427. front: {
  28428. height: math.unit(6, "feet"),
  28429. weight: math.unit(150, "lb"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/myra-rue-delore/front.svg",
  28433. extra: 1340/1308,
  28434. bottom: 67/1407
  28435. }
  28436. },
  28437. back: {
  28438. height: math.unit(6, "feet"),
  28439. weight: math.unit(150, "lb"),
  28440. name: "Back",
  28441. image: {
  28442. source: "./media/characters/myra-rue-delore/back.svg",
  28443. extra: 1341/1310,
  28444. bottom: 40/1381
  28445. }
  28446. },
  28447. frontDressed: {
  28448. height: math.unit(6, "feet"),
  28449. weight: math.unit(150, "lb"),
  28450. name: "Front (Dressed)",
  28451. image: {
  28452. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28453. extra: 1340/1308,
  28454. bottom: 67/1407
  28455. }
  28456. },
  28457. },
  28458. [
  28459. {
  28460. name: "Macro",
  28461. height: math.unit(150, "feet")
  28462. },
  28463. ]
  28464. ))
  28465. characterMakers.push(() => makeCharacter(
  28466. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28467. {
  28468. front: {
  28469. height: math.unit(10, "feet"),
  28470. weight: math.unit(15015, "lb"),
  28471. name: "Front",
  28472. image: {
  28473. source: "./media/characters/fem!plat/front.svg",
  28474. extra: 2799/2604,
  28475. bottom: 149/2948
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(10, "feet"),
  28483. default: true
  28484. },
  28485. {
  28486. name: "Macro",
  28487. height: math.unit(100, "feet")
  28488. },
  28489. {
  28490. name: "Megamacro",
  28491. height: math.unit(1000, "feet")
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28497. {
  28498. front: {
  28499. height: math.unit(15 + 5/12, "feet"),
  28500. weight: math.unit(4600, "lb"),
  28501. name: "Front",
  28502. image: {
  28503. source: "./media/characters/neapolitan-ananassa/front.svg",
  28504. extra: 2903/2736,
  28505. bottom: 0/2903
  28506. }
  28507. },
  28508. side: {
  28509. height: math.unit(15 + 5/12, "feet"),
  28510. weight: math.unit(4600, "lb"),
  28511. name: "Side",
  28512. image: {
  28513. source: "./media/characters/neapolitan-ananassa/side.svg",
  28514. extra: 2925/2719,
  28515. bottom: 0/2925
  28516. }
  28517. },
  28518. back: {
  28519. height: math.unit(15 + 5/12, "feet"),
  28520. weight: math.unit(4600, "lb"),
  28521. name: "Back",
  28522. image: {
  28523. source: "./media/characters/neapolitan-ananassa/back.svg",
  28524. extra: 2903/2736,
  28525. bottom: 0/2903
  28526. }
  28527. },
  28528. },
  28529. [
  28530. {
  28531. name: "Normal",
  28532. height: math.unit(15 + 5/12, "feet"),
  28533. default: true
  28534. },
  28535. {
  28536. name: "Post-Millenium",
  28537. height: math.unit(35 + 5/12, "feet")
  28538. },
  28539. {
  28540. name: "Post-Era",
  28541. height: math.unit(450 + 5/12, "feet")
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28547. {
  28548. front: {
  28549. height: math.unit(300, "meters"),
  28550. weight: math.unit(125000, "tonnes"),
  28551. name: "Front",
  28552. image: {
  28553. source: "./media/characters/pazuzu/front.svg",
  28554. extra: 877/794,
  28555. bottom: 47/924
  28556. }
  28557. },
  28558. },
  28559. [
  28560. {
  28561. name: "Macro",
  28562. height: math.unit(300, "meters"),
  28563. default: true
  28564. },
  28565. ]
  28566. ))
  28567. characterMakers.push(() => makeCharacter(
  28568. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28569. {
  28570. side: {
  28571. height: math.unit(10 + 7/12, "feet"),
  28572. weight: math.unit(2.5, "tons"),
  28573. name: "Side",
  28574. image: {
  28575. source: "./media/characters/aasha/side.svg",
  28576. extra: 1345/1245,
  28577. bottom: 111/1456
  28578. }
  28579. },
  28580. back: {
  28581. height: math.unit(10 + 7/12, "feet"),
  28582. weight: math.unit(2.5, "tons"),
  28583. name: "Back",
  28584. image: {
  28585. source: "./media/characters/aasha/back.svg",
  28586. extra: 1133/1057,
  28587. bottom: 257/1390
  28588. }
  28589. },
  28590. },
  28591. [
  28592. {
  28593. name: "Normal",
  28594. height: math.unit(10 + 7/12, "feet"),
  28595. default: true
  28596. },
  28597. ]
  28598. ))
  28599. characterMakers.push(() => makeCharacter(
  28600. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28601. {
  28602. front: {
  28603. height: math.unit(6 + 3/12, "feet"),
  28604. name: "Front",
  28605. image: {
  28606. source: "./media/characters/nevan/front.svg",
  28607. extra: 704/704,
  28608. bottom: 28/732
  28609. }
  28610. },
  28611. back: {
  28612. height: math.unit(6 + 3/12, "feet"),
  28613. name: "Back",
  28614. image: {
  28615. source: "./media/characters/nevan/back.svg",
  28616. extra: 714/714,
  28617. bottom: 21/735
  28618. }
  28619. },
  28620. frontFlaccid: {
  28621. height: math.unit(6 + 3/12, "feet"),
  28622. name: "Front (Flaccid)",
  28623. image: {
  28624. source: "./media/characters/nevan/front-flaccid.svg",
  28625. extra: 704/704,
  28626. bottom: 28/732
  28627. }
  28628. },
  28629. frontErect: {
  28630. height: math.unit(6 + 3/12, "feet"),
  28631. name: "Front (Erect)",
  28632. image: {
  28633. source: "./media/characters/nevan/front-erect.svg",
  28634. extra: 704/704,
  28635. bottom: 28/732
  28636. }
  28637. },
  28638. backFlaccid: {
  28639. height: math.unit(6 + 3/12, "feet"),
  28640. name: "Back (Flaccid)",
  28641. image: {
  28642. source: "./media/characters/nevan/back-flaccid.svg",
  28643. extra: 714/714,
  28644. bottom: 21/735
  28645. }
  28646. },
  28647. },
  28648. [
  28649. {
  28650. name: "Normal",
  28651. height: math.unit(6 + 3/12, "feet"),
  28652. default: true
  28653. },
  28654. ]
  28655. ))
  28656. characterMakers.push(() => makeCharacter(
  28657. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28658. {
  28659. front: {
  28660. height: math.unit(4, "feet"),
  28661. name: "Front",
  28662. image: {
  28663. source: "./media/characters/arhan/front.svg",
  28664. extra: 3368/3133,
  28665. bottom: 0/3368
  28666. }
  28667. },
  28668. side: {
  28669. height: math.unit(4, "feet"),
  28670. name: "Side",
  28671. image: {
  28672. source: "./media/characters/arhan/side.svg",
  28673. extra: 3347/3105,
  28674. bottom: 0/3347
  28675. }
  28676. },
  28677. tongue: {
  28678. height: math.unit(1.42, "feet"),
  28679. name: "Tongue",
  28680. image: {
  28681. source: "./media/characters/arhan/tongue.svg"
  28682. }
  28683. },
  28684. head: {
  28685. height: math.unit(0.85, "feet"),
  28686. name: "Head",
  28687. image: {
  28688. source: "./media/characters/arhan/head.svg"
  28689. }
  28690. },
  28691. },
  28692. [
  28693. {
  28694. name: "Normal",
  28695. height: math.unit(4, "feet"),
  28696. default: true
  28697. },
  28698. ]
  28699. ))
  28700. characterMakers.push(() => makeCharacter(
  28701. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28702. {
  28703. front: {
  28704. height: math.unit(5 + 7.5/12, "feet"),
  28705. weight: math.unit(120, "lb"),
  28706. name: "Front",
  28707. image: {
  28708. source: "./media/characters/digi-duncan/front.svg",
  28709. extra: 330/326,
  28710. bottom: 16/346
  28711. }
  28712. },
  28713. side: {
  28714. height: math.unit(5 + 7.5/12, "feet"),
  28715. weight: math.unit(120, "lb"),
  28716. name: "Side",
  28717. image: {
  28718. source: "./media/characters/digi-duncan/side.svg",
  28719. extra: 341/337,
  28720. bottom: 1/342
  28721. }
  28722. },
  28723. back: {
  28724. height: math.unit(5 + 7.5/12, "feet"),
  28725. weight: math.unit(120, "lb"),
  28726. name: "Back",
  28727. image: {
  28728. source: "./media/characters/digi-duncan/back.svg",
  28729. extra: 330/326,
  28730. bottom: 12/342
  28731. }
  28732. },
  28733. },
  28734. [
  28735. {
  28736. name: "Speck",
  28737. height: math.unit(0.25, "mm")
  28738. },
  28739. {
  28740. name: "Micro",
  28741. height: math.unit(5, "mm")
  28742. },
  28743. {
  28744. name: "Tiny",
  28745. height: math.unit(0.5, "inches"),
  28746. default: true
  28747. },
  28748. {
  28749. name: "Human",
  28750. height: math.unit(5 + 7.5/12, "feet")
  28751. },
  28752. {
  28753. name: "Minigiant",
  28754. height: math.unit(8 + 5.25, "feet")
  28755. },
  28756. {
  28757. name: "Giant",
  28758. height: math.unit(2000, "feet")
  28759. },
  28760. {
  28761. name: "Mega",
  28762. height: math.unit(371.1, "miles")
  28763. },
  28764. ]
  28765. ))
  28766. characterMakers.push(() => makeCharacter(
  28767. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28768. {
  28769. front: {
  28770. height: math.unit(2, "meters"),
  28771. weight: math.unit(350, "kg"),
  28772. name: "Front",
  28773. image: {
  28774. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28775. extra: 898/838,
  28776. bottom: 9/907
  28777. }
  28778. },
  28779. },
  28780. [
  28781. {
  28782. name: "Micro",
  28783. height: math.unit(8, "meters")
  28784. },
  28785. {
  28786. name: "Normal",
  28787. height: math.unit(50, "meters"),
  28788. default: true
  28789. },
  28790. {
  28791. name: "Macro",
  28792. height: math.unit(500, "meters")
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(6 + 6/12, "feet"),
  28801. name: "Front",
  28802. image: {
  28803. source: "./media/characters/khardesh/front.svg",
  28804. extra: 888/797,
  28805. bottom: 25/913
  28806. }
  28807. },
  28808. },
  28809. [
  28810. {
  28811. name: "Normal",
  28812. height: math.unit(6 + 6/12, "feet"),
  28813. default: true
  28814. },
  28815. {
  28816. name: "Normal+",
  28817. height: math.unit(4, "meters")
  28818. },
  28819. {
  28820. name: "Macro",
  28821. height: math.unit(50, "meters")
  28822. },
  28823. {
  28824. name: "Macro+",
  28825. height: math.unit(100, "meters")
  28826. },
  28827. {
  28828. name: "Megamacro",
  28829. height: math.unit(20, "km")
  28830. },
  28831. ]
  28832. ))
  28833. characterMakers.push(() => makeCharacter(
  28834. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28835. {
  28836. front: {
  28837. height: math.unit(6, "feet"),
  28838. weight: math.unit(150, "lb"),
  28839. name: "Front",
  28840. image: {
  28841. source: "./media/characters/kosho/front.svg",
  28842. extra: 1847/1847,
  28843. bottom: 86/1933
  28844. }
  28845. },
  28846. },
  28847. [
  28848. {
  28849. name: "Second-stage micro",
  28850. height: math.unit(0.5, "inches")
  28851. },
  28852. {
  28853. name: "First-stage micro",
  28854. height: math.unit(6, "inches")
  28855. },
  28856. {
  28857. name: "Normal",
  28858. height: math.unit(6, "feet"),
  28859. default: true
  28860. },
  28861. {
  28862. name: "First-stage macro",
  28863. height: math.unit(72, "feet")
  28864. },
  28865. {
  28866. name: "Second-stage macro",
  28867. height: math.unit(864, "feet")
  28868. },
  28869. ]
  28870. ))
  28871. characterMakers.push(() => makeCharacter(
  28872. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28873. {
  28874. normal: {
  28875. height: math.unit(4 + 6/12, "feet"),
  28876. name: "Normal",
  28877. image: {
  28878. source: "./media/characters/hydra/normal.svg",
  28879. extra: 2833/2634,
  28880. bottom: 68/2901
  28881. }
  28882. },
  28883. smol: {
  28884. height: math.unit(0.705, "inches"),
  28885. name: "Smol",
  28886. image: {
  28887. source: "./media/characters/hydra/smol.svg",
  28888. extra: 2715/2540,
  28889. bottom: 0/2715
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(4 + 6/12, "feet"),
  28897. default: true
  28898. }
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(0.6, "cm"),
  28906. name: "Front",
  28907. image: {
  28908. source: "./media/characters/daz/front.svg",
  28909. extra: 1682/1164,
  28910. bottom: 42/1724
  28911. }
  28912. },
  28913. },
  28914. [
  28915. {
  28916. name: "Normal",
  28917. height: math.unit(0.6, "cm"),
  28918. default: true
  28919. },
  28920. ]
  28921. ))
  28922. characterMakers.push(() => makeCharacter(
  28923. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  28924. {
  28925. front: {
  28926. height: math.unit(6, "feet"),
  28927. weight: math.unit(235, "lb"),
  28928. name: "Front",
  28929. image: {
  28930. source: "./media/characters/theo-pangolin/front.svg",
  28931. extra: 1996/1969,
  28932. bottom: 115/2111
  28933. }
  28934. },
  28935. back: {
  28936. height: math.unit(6, "feet"),
  28937. weight: math.unit(235, "lb"),
  28938. name: "Back",
  28939. image: {
  28940. source: "./media/characters/theo-pangolin/back.svg",
  28941. extra: 1979/1979,
  28942. bottom: 40/2019
  28943. }
  28944. },
  28945. feral: {
  28946. height: math.unit(2, "feet"),
  28947. weight: math.unit(30, "lb"),
  28948. name: "Feral",
  28949. image: {
  28950. source: "./media/characters/theo-pangolin/feral.svg",
  28951. extra: 803/791,
  28952. bottom: 181/984
  28953. }
  28954. },
  28955. footFive: {
  28956. height: math.unit(1.43, "feet"),
  28957. name: "Foot (Five Toes)",
  28958. image: {
  28959. source: "./media/characters/theo-pangolin/foot-five.svg"
  28960. }
  28961. },
  28962. footFour: {
  28963. height: math.unit(1.43, "feet"),
  28964. name: "Foot (Four Toes)",
  28965. image: {
  28966. source: "./media/characters/theo-pangolin/foot-four.svg"
  28967. }
  28968. },
  28969. handFour: {
  28970. height: math.unit(0.81, "feet"),
  28971. name: "Hand (Four Fingers)",
  28972. image: {
  28973. source: "./media/characters/theo-pangolin/hand-four.svg"
  28974. }
  28975. },
  28976. handThree: {
  28977. height: math.unit(0.81, "feet"),
  28978. name: "Hand (Three Fingers)",
  28979. image: {
  28980. source: "./media/characters/theo-pangolin/hand-three.svg"
  28981. }
  28982. },
  28983. headFront: {
  28984. height: math.unit(1.37, "feet"),
  28985. name: "Head (Front)",
  28986. image: {
  28987. source: "./media/characters/theo-pangolin/head-front.svg"
  28988. }
  28989. },
  28990. headSide: {
  28991. height: math.unit(1.43, "feet"),
  28992. name: "Head (Side)",
  28993. image: {
  28994. source: "./media/characters/theo-pangolin/head-side.svg"
  28995. }
  28996. },
  28997. tongue: {
  28998. height: math.unit(2.29, "feet"),
  28999. name: "Tongue",
  29000. image: {
  29001. source: "./media/characters/theo-pangolin/tongue.svg"
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(6, "feet")
  29009. },
  29010. {
  29011. name: "Macro",
  29012. height: math.unit(400, "feet"),
  29013. default: true
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29019. {
  29020. front: {
  29021. height: math.unit(6, "inches"),
  29022. weight: math.unit(0.036, "kg"),
  29023. name: "Front",
  29024. image: {
  29025. source: "./media/characters/renée/front.svg",
  29026. extra: 900/886,
  29027. bottom: 8/908
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Nano",
  29034. height: math.unit(1, "nm")
  29035. },
  29036. {
  29037. name: "Micro",
  29038. height: math.unit(1, "mm")
  29039. },
  29040. {
  29041. name: "Normal",
  29042. height: math.unit(6, "inches")
  29043. },
  29044. {
  29045. name: "Macro",
  29046. height: math.unit(2000, "feet"),
  29047. default: true
  29048. },
  29049. {
  29050. name: "Megamacro",
  29051. height: math.unit(2, "km")
  29052. },
  29053. {
  29054. name: "Gigamacro",
  29055. height: math.unit(2000, "km")
  29056. },
  29057. {
  29058. name: "Teramacro",
  29059. height: math.unit(250000, "km")
  29060. },
  29061. ]
  29062. ))
  29063. characterMakers.push(() => makeCharacter(
  29064. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29065. {
  29066. front: {
  29067. height: math.unit(4, "meters"),
  29068. weight: math.unit(150, "kg"),
  29069. name: "Front",
  29070. image: {
  29071. source: "./media/characters/caledvwlch/front.svg",
  29072. extra: 1760/1551,
  29073. bottom: 28/1788
  29074. }
  29075. },
  29076. side: {
  29077. height: math.unit(4, "meters"),
  29078. weight: math.unit(150, "kg"),
  29079. name: "Side",
  29080. image: {
  29081. source: "./media/characters/caledvwlch/side.svg",
  29082. extra: 1605/1536,
  29083. bottom: 31/1636
  29084. }
  29085. },
  29086. back: {
  29087. height: math.unit(4, "meters"),
  29088. weight: math.unit(150, "kg"),
  29089. name: "Back",
  29090. image: {
  29091. source: "./media/characters/caledvwlch/back.svg",
  29092. extra: 1635/1565,
  29093. bottom: 27/1662
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "\"Incognito\"",
  29100. height: math.unit(4, "meters")
  29101. },
  29102. {
  29103. name: "Small rampage",
  29104. height: math.unit(600, "meters")
  29105. },
  29106. {
  29107. name: "Mega",
  29108. height: math.unit(30, "km")
  29109. },
  29110. {
  29111. name: "Home-size",
  29112. height: math.unit(50, "km"),
  29113. default: true
  29114. },
  29115. {
  29116. name: "Giga",
  29117. height: math.unit(300, "km")
  29118. },
  29119. {
  29120. name: "Lounging",
  29121. height: math.unit(11000, "km")
  29122. },
  29123. {
  29124. name: "Planet snacking",
  29125. height: math.unit(2000000, "km")
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(6, "feet"),
  29134. weight: math.unit(215, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/sapphire-svell/front.svg",
  29138. extra: 495/455,
  29139. bottom: 20/515
  29140. }
  29141. },
  29142. back: {
  29143. height: math.unit(6, "feet"),
  29144. weight: math.unit(216, "lb"),
  29145. name: "Back",
  29146. image: {
  29147. source: "./media/characters/sapphire-svell/back.svg",
  29148. extra: 497/477,
  29149. bottom: 7/504
  29150. }
  29151. },
  29152. maw: {
  29153. height: math.unit(1.57, "feet"),
  29154. name: "Maw",
  29155. image: {
  29156. source: "./media/characters/sapphire-svell/maw.svg"
  29157. }
  29158. },
  29159. foot: {
  29160. height: math.unit(1.07, "feet"),
  29161. name: "Foot",
  29162. image: {
  29163. source: "./media/characters/sapphire-svell/foot.svg"
  29164. }
  29165. },
  29166. toering: {
  29167. height: math.unit(1.7, "inch"),
  29168. name: "Toering",
  29169. image: {
  29170. source: "./media/characters/sapphire-svell/toering.svg"
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "Normal",
  29177. height: math.unit(300, "feet"),
  29178. default: true
  29179. },
  29180. {
  29181. name: "Augmented",
  29182. height: math.unit(1250, "feet")
  29183. },
  29184. {
  29185. name: "Unleashed",
  29186. height: math.unit(3000, "feet")
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29192. {
  29193. side: {
  29194. height: math.unit(2 + 3/12, "feet"),
  29195. weight: math.unit(110, "lb"),
  29196. name: "Side",
  29197. image: {
  29198. source: "./media/characters/glitch-flux/side.svg",
  29199. extra: 997/805,
  29200. bottom: 20/1017
  29201. }
  29202. },
  29203. },
  29204. [
  29205. {
  29206. name: "Normal",
  29207. height: math.unit(2 + 3/12, "feet"),
  29208. default: true
  29209. },
  29210. ]
  29211. ))
  29212. characterMakers.push(() => makeCharacter(
  29213. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29214. {
  29215. front: {
  29216. height: math.unit(4, "meters"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/mid/front.svg",
  29220. extra: 507/476,
  29221. bottom: 17/524
  29222. }
  29223. },
  29224. back: {
  29225. height: math.unit(4, "meters"),
  29226. name: "Back",
  29227. image: {
  29228. source: "./media/characters/mid/back.svg",
  29229. extra: 519/487,
  29230. bottom: 7/526
  29231. }
  29232. },
  29233. stuck: {
  29234. height: math.unit(2.2, "meters"),
  29235. name: "Stuck",
  29236. image: {
  29237. source: "./media/characters/mid/stuck.svg",
  29238. extra: 1951/1869,
  29239. bottom: 88/2039
  29240. }
  29241. }
  29242. },
  29243. [
  29244. {
  29245. name: "Normal",
  29246. height: math.unit(4, "meters"),
  29247. default: true
  29248. },
  29249. {
  29250. name: "Big",
  29251. height: math.unit(10, "meters")
  29252. },
  29253. {
  29254. name: "Macro",
  29255. height: math.unit(800, "meters")
  29256. },
  29257. {
  29258. name: "Megamacro",
  29259. height: math.unit(100, "km")
  29260. },
  29261. {
  29262. name: "Overgrown",
  29263. height: math.unit(1, "parsec")
  29264. },
  29265. ]
  29266. ))
  29267. //characters
  29268. function makeCharacters() {
  29269. const results = [];
  29270. characterMakers.forEach(character => {
  29271. results.push(character());
  29272. });
  29273. return results;
  29274. }