less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

30105 строки
753 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(2.75, "meters"),
  6690. weight: math.unit(150, "lb"),
  6691. name: "Front",
  6692. image: {
  6693. source: "./media/characters/teal/front.svg",
  6694. extra: 2463/2320,
  6695. bottom: 166/2629
  6696. }
  6697. },
  6698. back: {
  6699. height: math.unit(2.75, "meters"),
  6700. weight: math.unit(150, "lb"),
  6701. name: "Back",
  6702. image: {
  6703. source: "./media/characters/teal/back.svg",
  6704. extra: 2580/2489,
  6705. bottom: 151/2731
  6706. }
  6707. },
  6708. sitting: {
  6709. height: math.unit(1.9, "meters"),
  6710. weight: math.unit(150, "lb"),
  6711. name: "Sitting",
  6712. image: {
  6713. source: "./media/characters/teal/sitting.svg",
  6714. extra: 623/590,
  6715. bottom: 121/744
  6716. }
  6717. },
  6718. standing: {
  6719. height: math.unit(2.75, "meters"),
  6720. weight: math.unit(150, "lb"),
  6721. name: "Standing",
  6722. image: {
  6723. source: "./media/characters/teal/standing.svg",
  6724. extra: 923/893,
  6725. bottom: 60/983
  6726. }
  6727. },
  6728. stretching: {
  6729. height: math.unit(3.65, "meters"),
  6730. weight: math.unit(150, "lb"),
  6731. name: "Stretching",
  6732. image: {
  6733. source: "./media/characters/teal/stretching.svg",
  6734. extra: 1276/1244,
  6735. bottom: 0/1276
  6736. }
  6737. },
  6738. legged: {
  6739. height: math.unit(1.3, "meters"),
  6740. weight: math.unit(150, "lb"),
  6741. name: "Legged",
  6742. image: {
  6743. source: "./media/characters/teal/legged.svg",
  6744. extra: 462/437,
  6745. bottom: 24/486
  6746. }
  6747. },
  6748. naga: {
  6749. height: math.unit(5.4, "meters"),
  6750. weight: math.unit(150, "lb"),
  6751. name: "Naga",
  6752. image: {
  6753. source: "./media/characters/teal/naga.svg",
  6754. extra: 1902/1858,
  6755. bottom: 0/1902
  6756. }
  6757. },
  6758. hand: {
  6759. height: math.unit(0.52, "meters"),
  6760. name: "Hand",
  6761. image: {
  6762. source: "./media/characters/teal/hand.svg"
  6763. }
  6764. },
  6765. maw: {
  6766. height: math.unit(0.43, "meters"),
  6767. name: "Maw",
  6768. image: {
  6769. source: "./media/characters/teal/maw.svg"
  6770. }
  6771. },
  6772. slit: {
  6773. height: math.unit(0.25, "meters"),
  6774. name: "Slit",
  6775. image: {
  6776. source: "./media/characters/teal/slit.svg"
  6777. }
  6778. },
  6779. },
  6780. [
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(2.75, "meters"),
  6784. default: true
  6785. },
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(300, "feet")
  6789. },
  6790. ]
  6791. ))
  6792. characterMakers.push(() => makeCharacter(
  6793. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6794. {
  6795. frontCat: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(180, "lbs"),
  6798. name: "Front (Cat)",
  6799. image: {
  6800. source: "./media/characters/ravin-amulet/front-cat.svg"
  6801. }
  6802. },
  6803. frontCatAlt: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(180, "lbs"),
  6806. name: "Front (Alt, Cat)",
  6807. image: {
  6808. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6809. }
  6810. },
  6811. frontWerewolf: {
  6812. height: math.unit(6 * 1.2, "feet"),
  6813. weight: math.unit(225, "lbs"),
  6814. name: "Front (Werewolf)",
  6815. image: {
  6816. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6817. }
  6818. },
  6819. backWerewolf: {
  6820. height: math.unit(6 * 1.2, "feet"),
  6821. weight: math.unit(225, "lbs"),
  6822. name: "Back (Werewolf)",
  6823. image: {
  6824. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6825. }
  6826. },
  6827. },
  6828. [
  6829. {
  6830. name: "Nano",
  6831. height: math.unit(1, "micrometer")
  6832. },
  6833. {
  6834. name: "Micro",
  6835. height: math.unit(1, "inch")
  6836. },
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(6, "feet"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Macro",
  6844. height: math.unit(60, "feet")
  6845. }
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(6, "feet"),
  6853. weight: math.unit(165, "lbs"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/fluoresce/front.svg"
  6857. }
  6858. }
  6859. },
  6860. [
  6861. {
  6862. name: "Micro",
  6863. height: math.unit(6, "cm")
  6864. },
  6865. {
  6866. name: "Normal",
  6867. height: math.unit(5 + 7 / 12, "feet"),
  6868. default: true
  6869. },
  6870. {
  6871. name: "Macro",
  6872. height: math.unit(56, "feet")
  6873. },
  6874. {
  6875. name: "Megamacro",
  6876. height: math.unit(1.9, "miles")
  6877. },
  6878. ]
  6879. ))
  6880. characterMakers.push(() => makeCharacter(
  6881. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6882. {
  6883. front: {
  6884. height: math.unit(9 + 6 / 12, "feet"),
  6885. weight: math.unit(523, "lbs"),
  6886. name: "Side",
  6887. image: {
  6888. source: "./media/characters/aurora/side.svg"
  6889. }
  6890. }
  6891. },
  6892. [
  6893. {
  6894. name: "Normal",
  6895. height: math.unit(9 + 6 / 12, "feet")
  6896. },
  6897. {
  6898. name: "Macro",
  6899. height: math.unit(96, "feet"),
  6900. default: true
  6901. },
  6902. {
  6903. name: "Macro+",
  6904. height: math.unit(243, "feet")
  6905. },
  6906. ]
  6907. ))
  6908. characterMakers.push(() => makeCharacter(
  6909. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6910. {
  6911. front: {
  6912. height: math.unit(194, "cm"),
  6913. weight: math.unit(90, "kg"),
  6914. name: "Front",
  6915. image: {
  6916. source: "./media/characters/ranek/front.svg"
  6917. }
  6918. },
  6919. side: {
  6920. height: math.unit(194, "cm"),
  6921. weight: math.unit(90, "kg"),
  6922. name: "Side",
  6923. image: {
  6924. source: "./media/characters/ranek/side.svg"
  6925. }
  6926. },
  6927. back: {
  6928. height: math.unit(194, "cm"),
  6929. weight: math.unit(90, "kg"),
  6930. name: "Back",
  6931. image: {
  6932. source: "./media/characters/ranek/back.svg"
  6933. }
  6934. },
  6935. feral: {
  6936. height: math.unit(30, "cm"),
  6937. weight: math.unit(1.6, "lbs"),
  6938. name: "Feral",
  6939. image: {
  6940. source: "./media/characters/ranek/feral.svg"
  6941. }
  6942. },
  6943. },
  6944. [
  6945. {
  6946. name: "Normal",
  6947. height: math.unit(194, "cm"),
  6948. default: true
  6949. },
  6950. {
  6951. name: "Macro",
  6952. height: math.unit(100, "meters")
  6953. },
  6954. ]
  6955. ))
  6956. characterMakers.push(() => makeCharacter(
  6957. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6958. {
  6959. front: {
  6960. height: math.unit(5 + 6 / 12, "feet"),
  6961. weight: math.unit(153, "lbs"),
  6962. name: "Front",
  6963. image: {
  6964. source: "./media/characters/andrew-cooper/front.svg"
  6965. }
  6966. },
  6967. },
  6968. [
  6969. {
  6970. name: "Nano",
  6971. height: math.unit(1, "mm")
  6972. },
  6973. {
  6974. name: "Micro",
  6975. height: math.unit(2, "inches")
  6976. },
  6977. {
  6978. name: "Normal",
  6979. height: math.unit(5 + 6 / 12, "feet"),
  6980. default: true
  6981. }
  6982. ]
  6983. ))
  6984. characterMakers.push(() => makeCharacter(
  6985. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6986. {
  6987. front: {
  6988. height: math.unit(6, "feet"),
  6989. weight: math.unit(180, "lbs"),
  6990. name: "Front",
  6991. image: {
  6992. source: "./media/characters/akane-sato/front.svg",
  6993. extra: 1219 / 1140
  6994. }
  6995. },
  6996. back: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(180, "lbs"),
  6999. name: "Back",
  7000. image: {
  7001. source: "./media/characters/akane-sato/back.svg",
  7002. extra: 1219 / 1170
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(2.5, "meters")
  7010. },
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(250, "meters"),
  7014. default: true
  7015. },
  7016. {
  7017. name: "Megamacro",
  7018. height: math.unit(25, "km")
  7019. },
  7020. ]
  7021. ))
  7022. characterMakers.push(() => makeCharacter(
  7023. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7024. {
  7025. front: {
  7026. height: math.unit(6, "feet"),
  7027. weight: math.unit(65, "kg"),
  7028. name: "Front",
  7029. image: {
  7030. source: "./media/characters/rook/front.svg",
  7031. extra: 960 / 950
  7032. }
  7033. }
  7034. },
  7035. [
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(8.8, "feet")
  7039. },
  7040. {
  7041. name: "Macro",
  7042. height: math.unit(88, "feet"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Megamacro",
  7047. height: math.unit(8, "miles")
  7048. },
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(12 + 2 / 12, "feet"),
  7056. weight: math.unit(808, "lbs"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/prodigy/front.svg"
  7060. }
  7061. }
  7062. },
  7063. [
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(12 + 2 / 12, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(143, "feet")
  7072. },
  7073. {
  7074. name: "Macro+",
  7075. height: math.unit(400, "feet")
  7076. },
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7081. {
  7082. front: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(225, "lbs"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/daniel/front.svg"
  7088. }
  7089. },
  7090. leaning: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(225, "lbs"),
  7093. name: "Leaning",
  7094. image: {
  7095. source: "./media/characters/daniel/leaning.svg"
  7096. }
  7097. },
  7098. },
  7099. [
  7100. {
  7101. name: "Macro",
  7102. height: math.unit(1000, "feet"),
  7103. default: true
  7104. },
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7109. {
  7110. front: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(88, "lbs"),
  7113. name: "Front",
  7114. image: {
  7115. source: "./media/characters/chiros/front.svg",
  7116. extra: 306 / 226
  7117. }
  7118. },
  7119. side: {
  7120. height: math.unit(6, "feet"),
  7121. weight: math.unit(88, "lbs"),
  7122. name: "Side",
  7123. image: {
  7124. source: "./media/characters/chiros/side.svg",
  7125. extra: 306 / 226
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(6, "cm"),
  7133. default: true
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7139. {
  7140. front: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(100, "lbs"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/selka/front.svg",
  7146. extra: 947 / 887
  7147. }
  7148. }
  7149. },
  7150. [
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(5, "cm"),
  7154. default: true
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(8 + 3 / 12, "feet"),
  7163. weight: math.unit(424, "lbs"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/verin/front.svg",
  7167. extra: 1845 / 1550
  7168. }
  7169. },
  7170. frontArmored: {
  7171. height: math.unit(8 + 3 / 12, "feet"),
  7172. weight: math.unit(424, "lbs"),
  7173. name: "Front (Armored)",
  7174. image: {
  7175. source: "./media/characters/verin/front-armor.svg",
  7176. extra: 1845 / 1550,
  7177. bottom: 0.01
  7178. }
  7179. },
  7180. back: {
  7181. height: math.unit(8 + 3 / 12, "feet"),
  7182. weight: math.unit(424, "lbs"),
  7183. name: "Back",
  7184. image: {
  7185. source: "./media/characters/verin/back.svg",
  7186. bottom: 0.1,
  7187. extra: 1
  7188. }
  7189. },
  7190. foot: {
  7191. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7192. name: "Foot",
  7193. image: {
  7194. source: "./media/characters/verin/foot.svg"
  7195. }
  7196. },
  7197. },
  7198. [
  7199. {
  7200. name: "Normal",
  7201. height: math.unit(8 + 3 / 12, "feet")
  7202. },
  7203. {
  7204. name: "Minimacro",
  7205. height: math.unit(21, "feet"),
  7206. default: true
  7207. },
  7208. {
  7209. name: "Macro",
  7210. height: math.unit(626, "feet")
  7211. },
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7216. {
  7217. front: {
  7218. height: math.unit(2.718, "meters"),
  7219. weight: math.unit(150, "lbs"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/sovrim-terraquian/front.svg"
  7223. }
  7224. },
  7225. back: {
  7226. height: math.unit(2.718, "meters"),
  7227. weight: math.unit(150, "lbs"),
  7228. name: "Back",
  7229. image: {
  7230. source: "./media/characters/sovrim-terraquian/back.svg"
  7231. }
  7232. }
  7233. },
  7234. [
  7235. {
  7236. name: "Micro",
  7237. height: math.unit(2, "inches")
  7238. },
  7239. {
  7240. name: "Small",
  7241. height: math.unit(1, "meter")
  7242. },
  7243. {
  7244. name: "Normal",
  7245. height: math.unit(Math.E, "meters"),
  7246. default: true
  7247. },
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(20, "meters")
  7251. },
  7252. {
  7253. name: "Macro+",
  7254. height: math.unit(400, "meters")
  7255. },
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(7, "feet"),
  7263. weight: math.unit(489, "lbs"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/reece-silvermane/front.svg",
  7267. bottom: 0.02,
  7268. extra: 1
  7269. }
  7270. },
  7271. },
  7272. [
  7273. {
  7274. name: "Macro",
  7275. height: math.unit(1.5, "miles"),
  7276. default: true
  7277. },
  7278. ]
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7282. {
  7283. front: {
  7284. height: math.unit(6, "feet"),
  7285. weight: math.unit(78, "kg"),
  7286. name: "Front",
  7287. image: {
  7288. source: "./media/characters/kane/front.svg",
  7289. extra: 978 / 899
  7290. }
  7291. },
  7292. },
  7293. [
  7294. {
  7295. name: "Normal",
  7296. height: math.unit(2.1, "m"),
  7297. },
  7298. {
  7299. name: "Macro",
  7300. height: math.unit(1, "km"),
  7301. default: true
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7307. {
  7308. front: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(200, "kg"),
  7311. name: "Front",
  7312. image: {
  7313. source: "./media/characters/tegon/front.svg",
  7314. bottom: 0.01,
  7315. extra: 1
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Micro",
  7322. height: math.unit(1, "inch")
  7323. },
  7324. {
  7325. name: "Normal",
  7326. height: math.unit(6 + 3 / 12, "feet"),
  7327. default: true
  7328. },
  7329. {
  7330. name: "Macro",
  7331. height: math.unit(300, "feet")
  7332. },
  7333. {
  7334. name: "Megamacro",
  7335. height: math.unit(69, "miles")
  7336. },
  7337. ]
  7338. ))
  7339. characterMakers.push(() => makeCharacter(
  7340. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7341. {
  7342. side: {
  7343. height: math.unit(6, "feet"),
  7344. weight: math.unit(2304, "lbs"),
  7345. name: "Side",
  7346. image: {
  7347. source: "./media/characters/arcturax/side.svg",
  7348. extra: 790 / 376,
  7349. bottom: 0.01
  7350. }
  7351. },
  7352. },
  7353. [
  7354. {
  7355. name: "Micro",
  7356. height: math.unit(2, "inch")
  7357. },
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(6, "feet")
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(39, "feet"),
  7365. default: true
  7366. },
  7367. {
  7368. name: "Megamacro",
  7369. height: math.unit(7, "miles")
  7370. },
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(6, "feet"),
  7378. weight: math.unit(50, "lbs"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/sentri/front.svg",
  7382. extra: 1750 / 1570,
  7383. bottom: 0.025
  7384. }
  7385. },
  7386. frontAlt: {
  7387. height: math.unit(6, "feet"),
  7388. weight: math.unit(50, "lbs"),
  7389. name: "Front (Alt)",
  7390. image: {
  7391. source: "./media/characters/sentri/front-alt.svg",
  7392. extra: 1750 / 1570,
  7393. bottom: 0.025
  7394. }
  7395. },
  7396. },
  7397. [
  7398. {
  7399. name: "Normal",
  7400. height: math.unit(15, "feet"),
  7401. default: true
  7402. },
  7403. {
  7404. name: "Macro",
  7405. height: math.unit(2500, "feet")
  7406. }
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7411. {
  7412. front: {
  7413. height: math.unit(5 + 8 / 12, "feet"),
  7414. weight: math.unit(130, "lbs"),
  7415. name: "Front",
  7416. image: {
  7417. source: "./media/characters/corvin/front.svg",
  7418. extra: 1803 / 1629
  7419. }
  7420. },
  7421. frontShirt: {
  7422. height: math.unit(5 + 8 / 12, "feet"),
  7423. weight: math.unit(130, "lbs"),
  7424. name: "Front (Shirt)",
  7425. image: {
  7426. source: "./media/characters/corvin/front-shirt.svg",
  7427. extra: 1803 / 1629
  7428. }
  7429. },
  7430. frontPoncho: {
  7431. height: math.unit(5 + 8 / 12, "feet"),
  7432. weight: math.unit(130, "lbs"),
  7433. name: "Front (Poncho)",
  7434. image: {
  7435. source: "./media/characters/corvin/front-poncho.svg",
  7436. extra: 1803 / 1629
  7437. }
  7438. },
  7439. side: {
  7440. height: math.unit(5 + 8 / 12, "feet"),
  7441. weight: math.unit(130, "lbs"),
  7442. name: "Side",
  7443. image: {
  7444. source: "./media/characters/corvin/side.svg",
  7445. extra: 1012 / 945
  7446. }
  7447. },
  7448. back: {
  7449. height: math.unit(5 + 8 / 12, "feet"),
  7450. weight: math.unit(130, "lbs"),
  7451. name: "Back",
  7452. image: {
  7453. source: "./media/characters/corvin/back.svg",
  7454. extra: 1803 / 1629
  7455. }
  7456. },
  7457. },
  7458. [
  7459. {
  7460. name: "Micro",
  7461. height: math.unit(3, "inches")
  7462. },
  7463. {
  7464. name: "Normal",
  7465. height: math.unit(5 + 8 / 12, "feet")
  7466. },
  7467. {
  7468. name: "Macro",
  7469. height: math.unit(300, "feet"),
  7470. default: true
  7471. },
  7472. {
  7473. name: "Megamacro",
  7474. height: math.unit(500, "miles")
  7475. }
  7476. ]
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7480. {
  7481. front: {
  7482. height: math.unit(6, "feet"),
  7483. weight: math.unit(135, "lbs"),
  7484. name: "Front",
  7485. image: {
  7486. source: "./media/characters/q/front.svg",
  7487. extra: 854 / 752,
  7488. bottom: 0.005
  7489. }
  7490. },
  7491. back: {
  7492. height: math.unit(6, "feet"),
  7493. weight: math.unit(130, "lbs"),
  7494. name: "Back",
  7495. image: {
  7496. source: "./media/characters/q/back.svg",
  7497. extra: 854 / 752
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Macro",
  7504. height: math.unit(90, "feet"),
  7505. default: true
  7506. },
  7507. {
  7508. name: "Extra Macro",
  7509. height: math.unit(300, "feet"),
  7510. },
  7511. {
  7512. name: "BIG WALF",
  7513. height: math.unit(750, "feet"),
  7514. },
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7519. {
  7520. front: {
  7521. height: math.unit(6, "feet"),
  7522. weight: math.unit(150, "lbs"),
  7523. name: "Front",
  7524. image: {
  7525. source: "./media/characters/carley/front.svg",
  7526. extra: 3927 / 3540,
  7527. bottom: 29.2 / 735
  7528. }
  7529. }
  7530. },
  7531. [
  7532. {
  7533. name: "Normal",
  7534. height: math.unit(6 + 3 / 12, "feet")
  7535. },
  7536. {
  7537. name: "Macro",
  7538. height: math.unit(185, "feet"),
  7539. default: true
  7540. },
  7541. {
  7542. name: "Megamacro",
  7543. height: math.unit(8, "miles"),
  7544. },
  7545. ]
  7546. ))
  7547. characterMakers.push(() => makeCharacter(
  7548. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7549. {
  7550. front: {
  7551. height: math.unit(3, "feet"),
  7552. weight: math.unit(28, "lbs"),
  7553. name: "Front",
  7554. image: {
  7555. source: "./media/characters/citrine/front.svg"
  7556. }
  7557. }
  7558. },
  7559. [
  7560. {
  7561. name: "Normal",
  7562. height: math.unit(3, "feet"),
  7563. default: true
  7564. }
  7565. ]
  7566. ))
  7567. characterMakers.push(() => makeCharacter(
  7568. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7569. {
  7570. front: {
  7571. height: math.unit(14, "feet"),
  7572. weight: math.unit(1450, "kg"),
  7573. capacity: math.unit(15, "people"),
  7574. name: "Front",
  7575. image: {
  7576. source: "./media/characters/aura-starwind/front.svg",
  7577. extra: 1455 / 1335
  7578. }
  7579. },
  7580. side: {
  7581. height: math.unit(14, "feet"),
  7582. weight: math.unit(1450, "kg"),
  7583. capacity: math.unit(15, "people"),
  7584. name: "Side",
  7585. image: {
  7586. source: "./media/characters/aura-starwind/side.svg",
  7587. extra: 1654 / 1497
  7588. }
  7589. },
  7590. taur: {
  7591. height: math.unit(18, "feet"),
  7592. weight: math.unit(5500, "kg"),
  7593. capacity: math.unit(50, "people"),
  7594. name: "Taur",
  7595. image: {
  7596. source: "./media/characters/aura-starwind/taur.svg",
  7597. extra: 1760 / 1650
  7598. }
  7599. },
  7600. feral: {
  7601. height: math.unit(46, "feet"),
  7602. weight: math.unit(25000, "kg"),
  7603. capacity: math.unit(120, "people"),
  7604. name: "Feral",
  7605. image: {
  7606. source: "./media/characters/aura-starwind/feral.svg"
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(14, "feet"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Macro",
  7618. height: math.unit(50, "meters")
  7619. },
  7620. {
  7621. name: "Megamacro",
  7622. height: math.unit(5000, "meters")
  7623. },
  7624. {
  7625. name: "Gigamacro",
  7626. height: math.unit(100000, "kilometers")
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7632. {
  7633. front: {
  7634. height: math.unit(2 + 7 / 12, "feet"),
  7635. weight: math.unit(32, "lbs"),
  7636. name: "Front",
  7637. image: {
  7638. source: "./media/characters/rivet/front.svg",
  7639. extra: 1716 / 1658,
  7640. bottom: 0.03
  7641. }
  7642. },
  7643. foot: {
  7644. height: math.unit(0.551, "feet"),
  7645. name: "Rivet's Foot",
  7646. image: {
  7647. source: "./media/characters/rivet/foot.svg"
  7648. },
  7649. rename: true
  7650. }
  7651. },
  7652. [
  7653. {
  7654. name: "Micro",
  7655. height: math.unit(1.5, "inches"),
  7656. },
  7657. {
  7658. name: "Normal",
  7659. height: math.unit(2 + 7 / 12, "feet"),
  7660. default: true
  7661. },
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(85, "feet")
  7665. },
  7666. {
  7667. name: "Megamacro",
  7668. height: math.unit(2.2, "km")
  7669. }
  7670. ]
  7671. ))
  7672. characterMakers.push(() => makeCharacter(
  7673. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7674. {
  7675. front: {
  7676. height: math.unit(5 + 9 / 12, "feet"),
  7677. weight: math.unit(150, "lbs"),
  7678. name: "Front",
  7679. image: {
  7680. source: "./media/characters/coffee/front.svg",
  7681. extra: 3666 / 3032,
  7682. bottom: 0.04
  7683. }
  7684. },
  7685. foot: {
  7686. height: math.unit(1.29, "feet"),
  7687. name: "Foot",
  7688. image: {
  7689. source: "./media/characters/coffee/foot.svg"
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Micro",
  7696. height: math.unit(2, "inches"),
  7697. },
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(5 + 9 / 12, "feet"),
  7701. default: true
  7702. },
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(800, "feet")
  7706. },
  7707. {
  7708. name: "Megamacro",
  7709. height: math.unit(25, "miles")
  7710. }
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(6, "feet"),
  7718. weight: math.unit(200, "lbs"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/chari-gal/front.svg",
  7722. extra: 1568 / 1385,
  7723. bottom: 0.047
  7724. }
  7725. },
  7726. gigantamax: {
  7727. height: math.unit(6 * 16, "feet"),
  7728. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7729. name: "Gigantamax",
  7730. image: {
  7731. source: "./media/characters/chari-gal/gigantamax.svg",
  7732. extra: 1124 / 888,
  7733. bottom: 0.03
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Normal",
  7740. height: math.unit(5 + 7 / 12, "feet")
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(200, "feet"),
  7745. default: true
  7746. }
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(6, "feet"),
  7754. weight: math.unit(150, "lbs"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/nova/front.svg",
  7758. extra: 5000 / 4722,
  7759. bottom: 0.02
  7760. }
  7761. }
  7762. },
  7763. [
  7764. {
  7765. name: "Micro-",
  7766. height: math.unit(0.8, "inches")
  7767. },
  7768. {
  7769. name: "Micro",
  7770. height: math.unit(2, "inches"),
  7771. default: true
  7772. },
  7773. ]
  7774. ))
  7775. characterMakers.push(() => makeCharacter(
  7776. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7777. {
  7778. front: {
  7779. height: math.unit(3 + 1 / 12, "feet"),
  7780. weight: math.unit(21.7, "lbs"),
  7781. name: "Front",
  7782. image: {
  7783. source: "./media/characters/argent/front.svg",
  7784. extra: 1471 / 1331,
  7785. bottom: 100.8 / 1575.5
  7786. }
  7787. }
  7788. },
  7789. [
  7790. {
  7791. name: "Micro",
  7792. height: math.unit(2, "inches")
  7793. },
  7794. {
  7795. name: "Normal",
  7796. height: math.unit(3 + 1 / 12, "feet"),
  7797. default: true
  7798. },
  7799. {
  7800. name: "Macro",
  7801. height: math.unit(120, "feet")
  7802. },
  7803. ]
  7804. ))
  7805. characterMakers.push(() => makeCharacter(
  7806. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7807. {
  7808. lamp: {
  7809. height: math.unit(7 * 1559 / 989, "feet"),
  7810. name: "Magic Lamp",
  7811. image: {
  7812. source: "./media/characters/mira-al-cul/lamp.svg",
  7813. extra: 1617 / 1559
  7814. }
  7815. },
  7816. front: {
  7817. height: math.unit(7, "feet"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/mira-al-cul/front.svg",
  7821. extra: 1044 / 990
  7822. }
  7823. },
  7824. },
  7825. [
  7826. {
  7827. name: "Heavily Restricted",
  7828. height: math.unit(7 * 1559 / 989, "feet")
  7829. },
  7830. {
  7831. name: "Freshly Freed",
  7832. height: math.unit(50 * 1559 / 989, "feet")
  7833. },
  7834. {
  7835. name: "World Encompassing",
  7836. height: math.unit(10000 * 1559 / 989, "miles")
  7837. },
  7838. {
  7839. name: "Galactic",
  7840. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7841. },
  7842. {
  7843. name: "Palmed Universe",
  7844. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7845. default: true
  7846. },
  7847. {
  7848. name: "Multiversal Matriarch",
  7849. height: math.unit(8.87e10, "yottameters")
  7850. },
  7851. {
  7852. name: "Void Mother",
  7853. height: math.unit(3.14e110, "yottaparsecs")
  7854. },
  7855. {
  7856. name: "Toying with Transcendence",
  7857. height: math.unit(1e307, "meters")
  7858. },
  7859. ]
  7860. ))
  7861. characterMakers.push(() => makeCharacter(
  7862. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7863. {
  7864. front: {
  7865. height: math.unit(17 + 1 / 12, "feet"),
  7866. weight: math.unit(476.2 * 5, "lbs"),
  7867. name: "Front",
  7868. image: {
  7869. source: "./media/characters/kuro-shi-uchū/front.svg",
  7870. extra: 2329 / 1835,
  7871. bottom: 0.02
  7872. }
  7873. },
  7874. },
  7875. [
  7876. {
  7877. name: "Micro",
  7878. height: math.unit(2, "inches")
  7879. },
  7880. {
  7881. name: "Normal",
  7882. height: math.unit(12, "meters")
  7883. },
  7884. {
  7885. name: "Planetary",
  7886. height: math.unit(0.00929, "AU"),
  7887. default: true
  7888. },
  7889. {
  7890. name: "Universal",
  7891. height: math.unit(20, "gigaparsecs")
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(5 + 2 / 12, "feet"),
  7900. weight: math.unit(120, "lbs"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/katherine/front.svg",
  7904. extra: 2075 / 1969
  7905. }
  7906. },
  7907. dress: {
  7908. height: math.unit(5 + 2 / 12, "feet"),
  7909. weight: math.unit(120, "lbs"),
  7910. name: "Dress",
  7911. image: {
  7912. source: "./media/characters/katherine/dress.svg",
  7913. extra: 2258 / 2064
  7914. }
  7915. },
  7916. },
  7917. [
  7918. {
  7919. name: "Micro",
  7920. height: math.unit(1, "inches"),
  7921. default: true
  7922. },
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(5 + 2 / 12, "feet")
  7926. },
  7927. {
  7928. name: "Macro",
  7929. height: math.unit(100, "meters")
  7930. },
  7931. {
  7932. name: "Megamacro",
  7933. height: math.unit(80, "miles")
  7934. },
  7935. ]
  7936. ))
  7937. characterMakers.push(() => makeCharacter(
  7938. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7939. {
  7940. front: {
  7941. height: math.unit(7 + 8 / 12, "feet"),
  7942. weight: math.unit(250, "lbs"),
  7943. name: "Front",
  7944. image: {
  7945. source: "./media/characters/yevis/front.svg",
  7946. extra: 1938 / 1755
  7947. }
  7948. }
  7949. },
  7950. [
  7951. {
  7952. name: "Mortal",
  7953. height: math.unit(7 + 8 / 12, "feet")
  7954. },
  7955. {
  7956. name: "Battle",
  7957. height: math.unit(25 + 11 / 12, "feet")
  7958. },
  7959. {
  7960. name: "Wrath",
  7961. height: math.unit(1654 + 11 / 12, "feet")
  7962. },
  7963. {
  7964. name: "Planet Destroyer",
  7965. height: math.unit(12000, "miles")
  7966. },
  7967. {
  7968. name: "Galaxy Conqueror",
  7969. height: math.unit(1.45, "zettameters"),
  7970. default: true
  7971. },
  7972. {
  7973. name: "Universal War",
  7974. height: math.unit(184, "gigaparsecs")
  7975. },
  7976. {
  7977. name: "Eternity War",
  7978. height: math.unit(1.98e55, "yottaparsecs")
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7984. {
  7985. front: {
  7986. height: math.unit(5 + 8 / 12, "feet"),
  7987. weight: math.unit(63, "kg"),
  7988. name: "Front",
  7989. image: {
  7990. source: "./media/characters/xavier/front.svg",
  7991. extra: 944 / 883
  7992. }
  7993. },
  7994. frontStretch: {
  7995. height: math.unit(5 + 8 / 12, "feet"),
  7996. weight: math.unit(63, "kg"),
  7997. name: "Stretching",
  7998. image: {
  7999. source: "./media/characters/xavier/front-stretch.svg",
  8000. extra: 962 / 820
  8001. }
  8002. },
  8003. },
  8004. [
  8005. {
  8006. name: "Normal",
  8007. height: math.unit(5 + 8 / 12, "feet")
  8008. },
  8009. {
  8010. name: "Macro",
  8011. height: math.unit(100, "meters"),
  8012. default: true
  8013. },
  8014. {
  8015. name: "McLargeHuge",
  8016. height: math.unit(10, "miles")
  8017. },
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8022. {
  8023. front: {
  8024. height: math.unit(5 + 5 / 12, "feet"),
  8025. weight: math.unit(150, "lb"),
  8026. name: "Front",
  8027. image: {
  8028. source: "./media/characters/joshii/front.svg",
  8029. extra: 765 / 653,
  8030. bottom: 51 / 816
  8031. }
  8032. },
  8033. foot: {
  8034. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8035. name: "Foot",
  8036. image: {
  8037. source: "./media/characters/joshii/foot.svg"
  8038. }
  8039. },
  8040. },
  8041. [
  8042. {
  8043. name: "Micro",
  8044. height: math.unit(2, "inches"),
  8045. default: true
  8046. },
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(5 + 5 / 12, "feet")
  8050. },
  8051. {
  8052. name: "Macro",
  8053. height: math.unit(785, "feet")
  8054. },
  8055. {
  8056. name: "Megamacro",
  8057. height: math.unit(24.5, "miles")
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8063. {
  8064. front: {
  8065. height: math.unit(6, "feet"),
  8066. weight: math.unit(150, "lb"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/goddess-elizabeth/front.svg",
  8070. extra: 1800 / 1525,
  8071. bottom: 0.005
  8072. }
  8073. },
  8074. foot: {
  8075. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8076. name: "Foot",
  8077. image: {
  8078. source: "./media/characters/goddess-elizabeth/foot.svg"
  8079. }
  8080. },
  8081. mouth: {
  8082. height: math.unit(6, "feet"),
  8083. name: "Mouth",
  8084. image: {
  8085. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Micro",
  8092. height: math.unit(12, "feet")
  8093. },
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(80, "miles"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(15000, "parsecs")
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(5 + 9 / 12, "feet"),
  8110. weight: math.unit(144, "lb"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/kara/front.svg"
  8114. }
  8115. },
  8116. feet: {
  8117. height: math.unit(6 / 6.765, "feet"),
  8118. name: "Kara's Feet",
  8119. rename: true,
  8120. image: {
  8121. source: "./media/characters/kara/feet.svg"
  8122. }
  8123. },
  8124. },
  8125. [
  8126. {
  8127. name: "Normal",
  8128. height: math.unit(5 + 9 / 12, "feet")
  8129. },
  8130. {
  8131. name: "Macro",
  8132. height: math.unit(174, "feet"),
  8133. default: true
  8134. },
  8135. ]
  8136. ))
  8137. characterMakers.push(() => makeCharacter(
  8138. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8139. {
  8140. front: {
  8141. height: math.unit(18, "feet"),
  8142. weight: math.unit(4050, "lb"),
  8143. name: "Front",
  8144. image: {
  8145. source: "./media/characters/tyrone/front.svg",
  8146. extra: 2405 / 2270,
  8147. bottom: 182 / 2587
  8148. }
  8149. },
  8150. },
  8151. [
  8152. {
  8153. name: "Normal",
  8154. height: math.unit(18, "feet"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Macro",
  8159. height: math.unit(300, "feet")
  8160. },
  8161. {
  8162. name: "Megamacro",
  8163. height: math.unit(15, "km")
  8164. },
  8165. {
  8166. name: "Gigamacro",
  8167. height: math.unit(500, "km")
  8168. },
  8169. {
  8170. name: "Teramacro",
  8171. height: math.unit(0.5, "gigameters")
  8172. },
  8173. {
  8174. name: "Omnimacro",
  8175. height: math.unit(1e252, "yottauniverse")
  8176. },
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8181. {
  8182. front: {
  8183. height: math.unit(7 + 8 / 12, "feet"),
  8184. weight: math.unit(120, "lb"),
  8185. name: "Front",
  8186. image: {
  8187. source: "./media/characters/danny/front.svg",
  8188. extra: 1490 / 1350
  8189. }
  8190. },
  8191. back: {
  8192. height: math.unit(7 + 8 / 12, "feet"),
  8193. weight: math.unit(120, "lb"),
  8194. name: "Back",
  8195. image: {
  8196. source: "./media/characters/danny/back.svg",
  8197. extra: 1490 / 1350
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(7 + 8 / 12, "feet"),
  8205. default: true
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(3.5, "inches"),
  8214. weight: math.unit(19, "grams"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/mallow/front.svg",
  8218. extra: 471 / 431
  8219. }
  8220. },
  8221. back: {
  8222. height: math.unit(3.5, "inches"),
  8223. weight: math.unit(19, "grams"),
  8224. name: "Back",
  8225. image: {
  8226. source: "./media/characters/mallow/back.svg",
  8227. extra: 471 / 431
  8228. }
  8229. },
  8230. },
  8231. [
  8232. {
  8233. name: "Normal",
  8234. height: math.unit(3.5, "inches"),
  8235. default: true
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8241. {
  8242. front: {
  8243. height: math.unit(9, "feet"),
  8244. weight: math.unit(230, "kg"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/starry-aqua/front.svg"
  8248. }
  8249. },
  8250. back: {
  8251. height: math.unit(9, "feet"),
  8252. weight: math.unit(230, "kg"),
  8253. name: "Back",
  8254. image: {
  8255. source: "./media/characters/starry-aqua/back.svg"
  8256. }
  8257. },
  8258. hand: {
  8259. height: math.unit(9 * 0.1168, "feet"),
  8260. name: "Hand",
  8261. image: {
  8262. source: "./media/characters/starry-aqua/hand.svg"
  8263. }
  8264. },
  8265. foot: {
  8266. height: math.unit(9 * 0.18, "feet"),
  8267. name: "Foot",
  8268. image: {
  8269. source: "./media/characters/starry-aqua/foot.svg"
  8270. }
  8271. }
  8272. },
  8273. [
  8274. {
  8275. name: "Micro",
  8276. height: math.unit(3, "inches")
  8277. },
  8278. {
  8279. name: "Normal",
  8280. height: math.unit(9, "feet")
  8281. },
  8282. {
  8283. name: "Macro",
  8284. height: math.unit(300, "feet"),
  8285. default: true
  8286. },
  8287. {
  8288. name: "Megamacro",
  8289. height: math.unit(3200, "feet")
  8290. }
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8295. {
  8296. front: {
  8297. height: math.unit(6, "feet"),
  8298. weight: math.unit(230, "lb"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/luka/front.svg",
  8302. extra: 1,
  8303. bottom: 0.025
  8304. }
  8305. },
  8306. },
  8307. [
  8308. {
  8309. name: "Normal",
  8310. height: math.unit(12 + 8 / 12, "feet"),
  8311. default: true
  8312. },
  8313. {
  8314. name: "Minimacro",
  8315. height: math.unit(20, "feet")
  8316. },
  8317. {
  8318. name: "Macro",
  8319. height: math.unit(250, "feet")
  8320. },
  8321. {
  8322. name: "Megamacro",
  8323. height: math.unit(5, "miles")
  8324. },
  8325. {
  8326. name: "Gigamacro",
  8327. height: math.unit(8000, "miles")
  8328. },
  8329. ]
  8330. ))
  8331. characterMakers.push(() => makeCharacter(
  8332. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8333. {
  8334. front: {
  8335. height: math.unit(6, "feet"),
  8336. weight: math.unit(150, "lb"),
  8337. name: "Front",
  8338. image: {
  8339. source: "./media/characters/natalie-nightring/front.svg",
  8340. extra: 1,
  8341. bottom: 0.06
  8342. }
  8343. },
  8344. },
  8345. [
  8346. {
  8347. name: "Uh Oh",
  8348. height: math.unit(0.1, "mm")
  8349. },
  8350. {
  8351. name: "Small",
  8352. height: math.unit(3, "inches")
  8353. },
  8354. {
  8355. name: "Human Scale",
  8356. height: math.unit(6, "feet")
  8357. },
  8358. {
  8359. name: "Librarian",
  8360. height: math.unit(50, "feet"),
  8361. default: true
  8362. },
  8363. {
  8364. name: "Immense",
  8365. height: math.unit(200, "miles")
  8366. },
  8367. ]
  8368. ))
  8369. characterMakers.push(() => makeCharacter(
  8370. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8371. {
  8372. front: {
  8373. height: math.unit(6, "feet"),
  8374. weight: math.unit(180, "lbs"),
  8375. name: "Front",
  8376. image: {
  8377. source: "./media/characters/danni-rosie/front.svg",
  8378. extra: 1260 / 1128,
  8379. bottom: 0.022
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Micro",
  8386. height: math.unit(2, "inches"),
  8387. default: true
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(5 + 9 / 12, "feet"),
  8396. weight: math.unit(220, "lb"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/samantha-kruse/front.svg",
  8400. extra: (985 / 935),
  8401. bottom: 0.03
  8402. }
  8403. },
  8404. frontUndressed: {
  8405. height: math.unit(5 + 9 / 12, "feet"),
  8406. weight: math.unit(220, "lb"),
  8407. name: "Front (Undressed)",
  8408. image: {
  8409. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8410. extra: (973 / 923),
  8411. bottom: 0.025
  8412. }
  8413. },
  8414. fat: {
  8415. height: math.unit(5 + 9 / 12, "feet"),
  8416. weight: math.unit(900, "lb"),
  8417. name: "Front (Fat)",
  8418. image: {
  8419. source: "./media/characters/samantha-kruse/fat.svg",
  8420. extra: 2688 / 2561
  8421. }
  8422. },
  8423. },
  8424. [
  8425. {
  8426. name: "Normal",
  8427. height: math.unit(5 + 9 / 12, "feet"),
  8428. default: true
  8429. }
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8434. {
  8435. back: {
  8436. height: math.unit(5 + 4 / 12, "feet"),
  8437. weight: math.unit(4963, "lb"),
  8438. name: "Back",
  8439. image: {
  8440. source: "./media/characters/amelia-rosie/back.svg",
  8441. extra: 1113 / 963,
  8442. bottom: 0.01
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Level 0",
  8449. height: math.unit(5 + 4 / 12, "feet")
  8450. },
  8451. {
  8452. name: "Level 1",
  8453. height: math.unit(164597, "feet"),
  8454. default: true
  8455. },
  8456. {
  8457. name: "Level 2",
  8458. height: math.unit(956243, "miles")
  8459. },
  8460. {
  8461. name: "Level 3",
  8462. height: math.unit(29421709423, "miles")
  8463. },
  8464. {
  8465. name: "Level 4",
  8466. height: math.unit(154, "lightyears")
  8467. },
  8468. {
  8469. name: "Level 5",
  8470. height: math.unit(4738272, "lightyears")
  8471. },
  8472. {
  8473. name: "Level 6",
  8474. height: math.unit(145787152896, "lightyears")
  8475. },
  8476. ]
  8477. ))
  8478. characterMakers.push(() => makeCharacter(
  8479. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8480. {
  8481. front: {
  8482. height: math.unit(5 + 11 / 12, "feet"),
  8483. weight: math.unit(65, "kg"),
  8484. name: "Front",
  8485. image: {
  8486. source: "./media/characters/rook-kitara/front.svg",
  8487. extra: 1347 / 1274,
  8488. bottom: 0.005
  8489. }
  8490. },
  8491. },
  8492. [
  8493. {
  8494. name: "Totally Unfair",
  8495. height: math.unit(1.8, "mm")
  8496. },
  8497. {
  8498. name: "Lap Rookie",
  8499. height: math.unit(1.4, "feet")
  8500. },
  8501. {
  8502. name: "Normal",
  8503. height: math.unit(5 + 11 / 12, "feet"),
  8504. default: true
  8505. },
  8506. {
  8507. name: "How Did This Happen",
  8508. height: math.unit(80, "miles")
  8509. }
  8510. ]
  8511. ))
  8512. characterMakers.push(() => makeCharacter(
  8513. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8514. {
  8515. front: {
  8516. height: math.unit(7, "feet"),
  8517. weight: math.unit(300, "lb"),
  8518. name: "Front",
  8519. image: {
  8520. source: "./media/characters/pisces/front.svg",
  8521. extra: 2255 / 2115,
  8522. bottom: 0.03
  8523. }
  8524. },
  8525. back: {
  8526. height: math.unit(7, "feet"),
  8527. weight: math.unit(300, "lb"),
  8528. name: "Back",
  8529. image: {
  8530. source: "./media/characters/pisces/back.svg",
  8531. extra: 2146 / 2055,
  8532. bottom: 0.04
  8533. }
  8534. },
  8535. },
  8536. [
  8537. {
  8538. name: "Normal",
  8539. height: math.unit(7, "feet"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Swimming Pool",
  8544. height: math.unit(12.2, "meters")
  8545. },
  8546. {
  8547. name: "Olympic Swimming Pool",
  8548. height: math.unit(56.3, "meters")
  8549. },
  8550. {
  8551. name: "Lake Superior",
  8552. height: math.unit(93900, "meters")
  8553. },
  8554. {
  8555. name: "Mediterranean Sea",
  8556. height: math.unit(644457, "meters")
  8557. },
  8558. {
  8559. name: "World's Oceans",
  8560. height: math.unit(4567491, "meters")
  8561. },
  8562. ]
  8563. ))
  8564. characterMakers.push(() => makeCharacter(
  8565. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8566. {
  8567. front: {
  8568. height: math.unit(2.3, "meters"),
  8569. weight: math.unit(120, "kg"),
  8570. name: "Front",
  8571. image: {
  8572. source: "./media/characters/zelas/front.svg"
  8573. }
  8574. },
  8575. side: {
  8576. height: math.unit(2.3, "meters"),
  8577. weight: math.unit(120, "kg"),
  8578. name: "Side",
  8579. image: {
  8580. source: "./media/characters/zelas/side.svg"
  8581. }
  8582. },
  8583. back: {
  8584. height: math.unit(2.3, "meters"),
  8585. weight: math.unit(120, "kg"),
  8586. name: "Back",
  8587. image: {
  8588. source: "./media/characters/zelas/back.svg"
  8589. }
  8590. },
  8591. foot: {
  8592. height: math.unit(1.116, "feet"),
  8593. name: "Foot",
  8594. image: {
  8595. source: "./media/characters/zelas/foot.svg"
  8596. }
  8597. },
  8598. },
  8599. [
  8600. {
  8601. name: "Normal",
  8602. height: math.unit(2.3, "meters")
  8603. },
  8604. {
  8605. name: "Macro",
  8606. height: math.unit(30, "meters"),
  8607. default: true
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8613. {
  8614. front: {
  8615. height: math.unit(1, "inch"),
  8616. weight: math.unit(0.21, "grams"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/talbot/front.svg",
  8620. extra: 594 / 544
  8621. }
  8622. },
  8623. },
  8624. [
  8625. {
  8626. name: "Micro",
  8627. height: math.unit(1, "inch"),
  8628. default: true
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8634. {
  8635. front: {
  8636. height: math.unit(3 + 3 / 12, "feet"),
  8637. weight: math.unit(51.8, "lb"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/fliss/front.svg",
  8641. extra: 840 / 640
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Teeny Tiny",
  8648. height: math.unit(1, "mm")
  8649. },
  8650. {
  8651. name: "Small",
  8652. height: math.unit(1, "inch"),
  8653. default: true
  8654. },
  8655. {
  8656. name: "Standard Sylveon",
  8657. height: math.unit(3 + 3 / 12, "feet")
  8658. },
  8659. {
  8660. name: "Large Nuisance",
  8661. height: math.unit(33, "feet")
  8662. },
  8663. {
  8664. name: "City Filler",
  8665. height: math.unit(3000, "feet")
  8666. },
  8667. {
  8668. name: "New Horizon",
  8669. height: math.unit(6000, "miles")
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(5, "cm"),
  8678. weight: math.unit(1.94, "g"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/fleta/front.svg",
  8682. extra: 835 / 803
  8683. }
  8684. },
  8685. back: {
  8686. height: math.unit(5, "cm"),
  8687. weight: math.unit(1.94, "g"),
  8688. name: "Back",
  8689. image: {
  8690. source: "./media/characters/fleta/back.svg",
  8691. extra: 835 / 803
  8692. }
  8693. },
  8694. },
  8695. [
  8696. {
  8697. name: "Micro",
  8698. height: math.unit(5, "cm"),
  8699. default: true
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8705. {
  8706. front: {
  8707. height: math.unit(6, "feet"),
  8708. weight: math.unit(225, "lb"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/dominic/front.svg",
  8712. extra: 1770 / 1620,
  8713. bottom: 0.025
  8714. }
  8715. },
  8716. back: {
  8717. height: math.unit(6, "feet"),
  8718. weight: math.unit(225, "lb"),
  8719. name: "Back",
  8720. image: {
  8721. source: "./media/characters/dominic/back.svg",
  8722. extra: 1745 / 1620,
  8723. bottom: 0.065
  8724. }
  8725. },
  8726. },
  8727. [
  8728. {
  8729. name: "Nano",
  8730. height: math.unit(0.1, "mm")
  8731. },
  8732. {
  8733. name: "Micro-",
  8734. height: math.unit(1, "mm")
  8735. },
  8736. {
  8737. name: "Micro",
  8738. height: math.unit(4, "inches")
  8739. },
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(6 + 4 / 12, "feet"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(115, "feet")
  8748. },
  8749. {
  8750. name: "Macro+",
  8751. height: math.unit(955, "feet")
  8752. },
  8753. {
  8754. name: "Megamacro",
  8755. height: math.unit(8990, "feet")
  8756. },
  8757. {
  8758. name: "Gigmacro",
  8759. height: math.unit(9310, "miles")
  8760. },
  8761. {
  8762. name: "Teramacro",
  8763. height: math.unit(1567005010, "miles")
  8764. },
  8765. {
  8766. name: "Examacro",
  8767. height: math.unit(1425, "parsecs")
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(400, "feet"),
  8776. weight: math.unit(44444444, "lb"),
  8777. name: "Front",
  8778. image: {
  8779. source: "./media/characters/major-colonel/front.svg"
  8780. }
  8781. },
  8782. back: {
  8783. height: math.unit(400, "feet"),
  8784. weight: math.unit(44444444, "lb"),
  8785. name: "Back",
  8786. image: {
  8787. source: "./media/characters/major-colonel/back.svg"
  8788. }
  8789. },
  8790. },
  8791. [
  8792. {
  8793. name: "Macro",
  8794. height: math.unit(400, "feet"),
  8795. default: true
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8801. {
  8802. catFront: {
  8803. height: math.unit(6, "feet"),
  8804. weight: math.unit(120, "lb"),
  8805. name: "Front (Cat Side)",
  8806. image: {
  8807. source: "./media/characters/axel-lycan/cat-front.svg",
  8808. extra: 430 / 402,
  8809. bottom: 43 / 472.35
  8810. }
  8811. },
  8812. catBack: {
  8813. height: math.unit(6, "feet"),
  8814. weight: math.unit(120, "lb"),
  8815. name: "Back (Cat Side)",
  8816. image: {
  8817. source: "./media/characters/axel-lycan/cat-back.svg",
  8818. extra: 447 / 419,
  8819. bottom: 23.3 / 469
  8820. }
  8821. },
  8822. wolfFront: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(120, "lb"),
  8825. name: "Front (Wolf Side)",
  8826. image: {
  8827. source: "./media/characters/axel-lycan/wolf-front.svg",
  8828. extra: 485 / 456,
  8829. bottom: 19 / 504
  8830. }
  8831. },
  8832. wolfBack: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(120, "lb"),
  8835. name: "Back (Wolf Side)",
  8836. image: {
  8837. source: "./media/characters/axel-lycan/wolf-back.svg",
  8838. extra: 475 / 438,
  8839. bottom: 39.2 / 514
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Macro",
  8846. height: math.unit(1, "km"),
  8847. default: true
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8853. {
  8854. front: {
  8855. height: math.unit(5 + 9 / 12, "feet"),
  8856. weight: math.unit(175, "lb"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/vanrel-hyena/front.svg",
  8860. extra: 1086 / 1010,
  8861. bottom: 0.04
  8862. }
  8863. },
  8864. },
  8865. [
  8866. {
  8867. name: "Normal",
  8868. height: math.unit(5 + 9 / 12, "feet"),
  8869. default: true
  8870. },
  8871. ]
  8872. ))
  8873. characterMakers.push(() => makeCharacter(
  8874. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8875. {
  8876. front: {
  8877. height: math.unit(6, "feet"),
  8878. weight: math.unit(103, "lb"),
  8879. name: "Front",
  8880. image: {
  8881. source: "./media/characters/abbott-absol/front.svg",
  8882. extra: 2010 / 1842
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Megamicro",
  8889. height: math.unit(0.1, "mm")
  8890. },
  8891. {
  8892. name: "Micro",
  8893. height: math.unit(1, "inch")
  8894. },
  8895. {
  8896. name: "Normal",
  8897. height: math.unit(6, "feet"),
  8898. default: true
  8899. },
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(6, "feet"),
  8907. weight: math.unit(264, "lb"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/hector/front.svg",
  8911. extra: 2280 / 2130,
  8912. bottom: 0.07
  8913. }
  8914. },
  8915. },
  8916. [
  8917. {
  8918. name: "Normal",
  8919. height: math.unit(12.25, "foot"),
  8920. default: true
  8921. },
  8922. {
  8923. name: "Macro",
  8924. height: math.unit(160, "feet")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(6, "feet"),
  8933. weight: math.unit(150, "lb"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/sal/front.svg",
  8937. extra: 1846 / 1699,
  8938. bottom: 0.04
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Megamacro",
  8945. height: math.unit(10, "miles"),
  8946. default: true
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8952. {
  8953. front: {
  8954. height: math.unit(3, "meters"),
  8955. weight: math.unit(450, "kg"),
  8956. name: "front",
  8957. image: {
  8958. source: "./media/characters/ranger/front.svg",
  8959. extra: 2401 / 2243,
  8960. bottom: 0.05
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(3, "meters"),
  8968. default: true
  8969. },
  8970. ]
  8971. ))
  8972. characterMakers.push(() => makeCharacter(
  8973. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8974. {
  8975. front: {
  8976. height: math.unit(14, "feet"),
  8977. weight: math.unit(800, "kg"),
  8978. name: "Front",
  8979. image: {
  8980. source: "./media/characters/theresa/front.svg",
  8981. extra: 3575 / 3346,
  8982. bottom: 0.03
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(14, "feet"),
  8990. default: true
  8991. },
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8996. {
  8997. front: {
  8998. height: math.unit(6, "feet"),
  8999. weight: math.unit(3, "kg"),
  9000. name: "Front",
  9001. image: {
  9002. source: "./media/characters/ine/front.svg",
  9003. extra: 678 / 539,
  9004. bottom: 0.023
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Normal",
  9011. height: math.unit(2.265, "feet"),
  9012. default: true
  9013. },
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9018. {
  9019. front: {
  9020. height: math.unit(5, "feet"),
  9021. weight: math.unit(30, "kg"),
  9022. name: "Front",
  9023. image: {
  9024. source: "./media/characters/vial/front.svg",
  9025. extra: 1365 / 1277,
  9026. bottom: 0.04
  9027. }
  9028. },
  9029. },
  9030. [
  9031. {
  9032. name: "Normal",
  9033. height: math.unit(5, "feet"),
  9034. default: true
  9035. },
  9036. ]
  9037. ))
  9038. characterMakers.push(() => makeCharacter(
  9039. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9040. {
  9041. side: {
  9042. height: math.unit(3.4, "meters"),
  9043. weight: math.unit(1000, "lb"),
  9044. name: "Side",
  9045. image: {
  9046. source: "./media/characters/rovoska/side.svg",
  9047. extra: 4403 / 1515
  9048. }
  9049. },
  9050. },
  9051. [
  9052. {
  9053. name: "Normal",
  9054. height: math.unit(3.4, "meters"),
  9055. default: true
  9056. },
  9057. ]
  9058. ))
  9059. characterMakers.push(() => makeCharacter(
  9060. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9061. {
  9062. front: {
  9063. height: math.unit(8, "feet"),
  9064. weight: math.unit(315, "lb"),
  9065. name: "Front",
  9066. image: {
  9067. source: "./media/characters/gunner-rotthbauer/front.svg"
  9068. }
  9069. },
  9070. back: {
  9071. height: math.unit(8, "feet"),
  9072. weight: math.unit(315, "lb"),
  9073. name: "Back",
  9074. image: {
  9075. source: "./media/characters/gunner-rotthbauer/back.svg"
  9076. }
  9077. },
  9078. },
  9079. [
  9080. {
  9081. name: "Micro",
  9082. height: math.unit(3.5, "inches")
  9083. },
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(8, "feet"),
  9087. default: true
  9088. },
  9089. {
  9090. name: "Macro",
  9091. height: math.unit(250, "feet")
  9092. },
  9093. {
  9094. name: "Megamacro",
  9095. height: math.unit(1, "AU")
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(5 + 5 / 12, "feet"),
  9104. weight: math.unit(140, "lb"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/allatia/front.svg",
  9108. extra: 1227 / 1180,
  9109. bottom: 0.027
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(5 + 5 / 12, "feet")
  9117. },
  9118. {
  9119. name: "Macro",
  9120. height: math.unit(250, "feet"),
  9121. default: true
  9122. },
  9123. {
  9124. name: "Megamacro",
  9125. height: math.unit(8, "miles")
  9126. }
  9127. ]
  9128. ))
  9129. characterMakers.push(() => makeCharacter(
  9130. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9131. {
  9132. front: {
  9133. height: math.unit(6, "feet"),
  9134. weight: math.unit(120, "lb"),
  9135. name: "Front",
  9136. image: {
  9137. source: "./media/characters/tene/front.svg",
  9138. extra: 1728 / 1578,
  9139. bottom: 0.022
  9140. }
  9141. },
  9142. stomping: {
  9143. height: math.unit(2.025, "meters"),
  9144. weight: math.unit(120, "lb"),
  9145. name: "Stomping",
  9146. image: {
  9147. source: "./media/characters/tene/stomping.svg",
  9148. extra: 938 / 873,
  9149. bottom: 0.01
  9150. }
  9151. },
  9152. sitting: {
  9153. height: math.unit(1, "meter"),
  9154. weight: math.unit(120, "lb"),
  9155. name: "Sitting",
  9156. image: {
  9157. source: "./media/characters/tene/sitting.svg",
  9158. extra: 437 / 415,
  9159. bottom: 0.1
  9160. }
  9161. },
  9162. feral: {
  9163. height: math.unit(3.9, "feet"),
  9164. weight: math.unit(250, "lb"),
  9165. name: "Feral",
  9166. image: {
  9167. source: "./media/characters/tene/feral.svg",
  9168. extra: 717 / 458,
  9169. bottom: 0.179
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(6, "feet")
  9177. },
  9178. {
  9179. name: "Macro",
  9180. height: math.unit(300, "feet"),
  9181. default: true
  9182. },
  9183. {
  9184. name: "Megamacro",
  9185. height: math.unit(5, "miles")
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9191. {
  9192. side: {
  9193. height: math.unit(6, "feet"),
  9194. name: "Side",
  9195. image: {
  9196. source: "./media/characters/evander/side.svg",
  9197. extra: 877 / 477
  9198. }
  9199. },
  9200. },
  9201. [
  9202. {
  9203. name: "Normal",
  9204. height: math.unit(0.83, "meters"),
  9205. default: true
  9206. },
  9207. ]
  9208. ))
  9209. characterMakers.push(() => makeCharacter(
  9210. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9211. {
  9212. front: {
  9213. height: math.unit(12, "feet"),
  9214. weight: math.unit(1000, "lb"),
  9215. name: "Front",
  9216. image: {
  9217. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9218. extra: 1762 / 1611
  9219. }
  9220. },
  9221. back: {
  9222. height: math.unit(12, "feet"),
  9223. weight: math.unit(1000, "lb"),
  9224. name: "Back",
  9225. image: {
  9226. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9227. extra: 1762 / 1611
  9228. }
  9229. },
  9230. },
  9231. [
  9232. {
  9233. name: "Normal",
  9234. height: math.unit(12, "feet"),
  9235. default: true
  9236. },
  9237. {
  9238. name: "Kaiju",
  9239. height: math.unit(150, "feet")
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9245. {
  9246. front: {
  9247. height: math.unit(6, "feet"),
  9248. weight: math.unit(150, "lb"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/zero-alurus/front.svg"
  9252. }
  9253. },
  9254. back: {
  9255. height: math.unit(6, "feet"),
  9256. weight: math.unit(150, "lb"),
  9257. name: "Back",
  9258. image: {
  9259. source: "./media/characters/zero-alurus/back.svg"
  9260. }
  9261. },
  9262. },
  9263. [
  9264. {
  9265. name: "Normal",
  9266. height: math.unit(5 + 10 / 12, "feet")
  9267. },
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(60, "feet"),
  9271. default: true
  9272. },
  9273. {
  9274. name: "Macro+",
  9275. height: math.unit(450, "feet")
  9276. },
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9281. {
  9282. front: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(200, "lb"),
  9285. name: "Front",
  9286. image: {
  9287. source: "./media/characters/mega-shi/front.svg",
  9288. extra: 1279 / 1250,
  9289. bottom: 0.02
  9290. }
  9291. },
  9292. back: {
  9293. height: math.unit(6, "feet"),
  9294. weight: math.unit(200, "lb"),
  9295. name: "Back",
  9296. image: {
  9297. source: "./media/characters/mega-shi/back.svg",
  9298. extra: 1279 / 1250,
  9299. bottom: 0.02
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Micro",
  9306. height: math.unit(16 + 6 / 12, "feet")
  9307. },
  9308. {
  9309. name: "Third Dimension",
  9310. height: math.unit(40, "meters")
  9311. },
  9312. {
  9313. name: "Normal",
  9314. height: math.unit(660, "feet"),
  9315. default: true
  9316. },
  9317. {
  9318. name: "Megamacro",
  9319. height: math.unit(10, "miles")
  9320. },
  9321. {
  9322. name: "Planetary Launch",
  9323. height: math.unit(500, "miles")
  9324. },
  9325. {
  9326. name: "Interstellar",
  9327. height: math.unit(1e9, "miles")
  9328. },
  9329. {
  9330. name: "Leaving the Universe",
  9331. height: math.unit(1, "gigaparsec")
  9332. },
  9333. {
  9334. name: "Travelling Universes",
  9335. height: math.unit(30e15, "parsecs")
  9336. },
  9337. ]
  9338. ))
  9339. characterMakers.push(() => makeCharacter(
  9340. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9341. {
  9342. front: {
  9343. height: math.unit(6, "feet"),
  9344. weight: math.unit(150, "lb"),
  9345. name: "Front",
  9346. image: {
  9347. source: "./media/characters/odyssey/front.svg",
  9348. extra: 1782 / 1582,
  9349. bottom: 0.01
  9350. }
  9351. },
  9352. side: {
  9353. height: math.unit(5.7, "feet"),
  9354. weight: math.unit(140, "lb"),
  9355. name: "Side",
  9356. image: {
  9357. source: "./media/characters/odyssey/side.svg",
  9358. extra: 6462 / 5700
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(5 + 4 / 12, "feet")
  9366. },
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(1, "km")
  9370. },
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(3000, "km")
  9374. },
  9375. {
  9376. name: "Gigamacro",
  9377. height: math.unit(1, "AU"),
  9378. default: true
  9379. },
  9380. {
  9381. name: "Omniversal",
  9382. height: math.unit(100e14, "lightyears")
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(6, "feet"),
  9391. weight: math.unit(300, "lb"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/mekuto/front.svg",
  9395. extra: 921 / 832,
  9396. bottom: 0.03
  9397. }
  9398. },
  9399. hand: {
  9400. height: math.unit(6 / 10.24, "feet"),
  9401. name: "Hand",
  9402. image: {
  9403. source: "./media/characters/mekuto/hand.svg"
  9404. }
  9405. },
  9406. foot: {
  9407. height: math.unit(6 / 5.05, "feet"),
  9408. name: "Foot",
  9409. image: {
  9410. source: "./media/characters/mekuto/foot.svg"
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Minimicro",
  9417. height: math.unit(0.2, "inches")
  9418. },
  9419. {
  9420. name: "Micro",
  9421. height: math.unit(1.5, "inches")
  9422. },
  9423. {
  9424. name: "Normal",
  9425. height: math.unit(5 + 11 / 12, "feet"),
  9426. default: true
  9427. },
  9428. {
  9429. name: "Minimacro",
  9430. height: math.unit(17 + 9 / 12, "feet")
  9431. },
  9432. {
  9433. name: "Macro",
  9434. height: math.unit(177.5, "feet")
  9435. },
  9436. {
  9437. name: "Megamacro",
  9438. height: math.unit(152, "miles")
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(6.5, "inches"),
  9447. weight: math.unit(13, "oz"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/dafydd-tomos/front.svg",
  9451. extra: 2990 / 2603,
  9452. bottom: 0.03
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Micro",
  9459. height: math.unit(6.5, "inches"),
  9460. default: true
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(6, "feet"),
  9469. weight: math.unit(150, "lb"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/splinter/front.svg",
  9473. extra: 2990 / 2882,
  9474. bottom: 0.04
  9475. }
  9476. },
  9477. back: {
  9478. height: math.unit(6, "feet"),
  9479. weight: math.unit(150, "lb"),
  9480. name: "Back",
  9481. image: {
  9482. source: "./media/characters/splinter/back.svg",
  9483. extra: 2990 / 2882,
  9484. bottom: 0.04
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(6, "feet")
  9492. },
  9493. {
  9494. name: "Macro",
  9495. height: math.unit(230, "meters"),
  9496. default: true
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9502. {
  9503. front: {
  9504. height: math.unit(4 + 10 / 12, "feet"),
  9505. weight: math.unit(480, "lb"),
  9506. name: "Front",
  9507. image: {
  9508. source: "./media/characters/snow-gabumon/front.svg",
  9509. extra: 1140 / 963,
  9510. bottom: 0.058
  9511. }
  9512. },
  9513. back: {
  9514. height: math.unit(4 + 10 / 12, "feet"),
  9515. weight: math.unit(480, "lb"),
  9516. name: "Back",
  9517. image: {
  9518. source: "./media/characters/snow-gabumon/back.svg",
  9519. extra: 1115 / 962,
  9520. bottom: 0.041
  9521. }
  9522. },
  9523. frontUndresed: {
  9524. height: math.unit(4 + 10 / 12, "feet"),
  9525. weight: math.unit(480, "lb"),
  9526. name: "Front (Undressed)",
  9527. image: {
  9528. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9529. extra: 1061 / 960,
  9530. bottom: 0.045
  9531. }
  9532. },
  9533. },
  9534. [
  9535. {
  9536. name: "Micro",
  9537. height: math.unit(1, "inch")
  9538. },
  9539. {
  9540. name: "Normal",
  9541. height: math.unit(4 + 10 / 12, "feet"),
  9542. default: true
  9543. },
  9544. {
  9545. name: "Macro",
  9546. height: math.unit(200, "feet")
  9547. },
  9548. {
  9549. name: "Megamacro",
  9550. height: math.unit(120, "miles")
  9551. },
  9552. {
  9553. name: "Gigamacro",
  9554. height: math.unit(9800, "miles")
  9555. },
  9556. ]
  9557. ))
  9558. characterMakers.push(() => makeCharacter(
  9559. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9560. {
  9561. front: {
  9562. height: math.unit(1.7, "meters"),
  9563. weight: math.unit(140, "lb"),
  9564. name: "Front",
  9565. image: {
  9566. source: "./media/characters/moody/front.svg",
  9567. extra: 3226 / 3007,
  9568. bottom: 0.087
  9569. }
  9570. },
  9571. },
  9572. [
  9573. {
  9574. name: "Micro",
  9575. height: math.unit(1, "mm")
  9576. },
  9577. {
  9578. name: "Normal",
  9579. height: math.unit(1.7, "meters"),
  9580. default: true
  9581. },
  9582. {
  9583. name: "Macro",
  9584. height: math.unit(80, "meters")
  9585. },
  9586. {
  9587. name: "Macro+",
  9588. height: math.unit(500, "meters")
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9594. {
  9595. front: {
  9596. height: math.unit(6, "feet"),
  9597. weight: math.unit(150, "lb"),
  9598. name: "Front",
  9599. image: {
  9600. source: "./media/characters/zyas/front.svg",
  9601. extra: 1180 / 1120,
  9602. bottom: 0.045
  9603. }
  9604. },
  9605. },
  9606. [
  9607. {
  9608. name: "Normal",
  9609. height: math.unit(10, "feet"),
  9610. default: true
  9611. },
  9612. {
  9613. name: "Macro",
  9614. height: math.unit(500, "feet")
  9615. },
  9616. {
  9617. name: "Megamacro",
  9618. height: math.unit(5, "miles")
  9619. },
  9620. {
  9621. name: "Teramacro",
  9622. height: math.unit(150000, "miles")
  9623. },
  9624. ]
  9625. ))
  9626. characterMakers.push(() => makeCharacter(
  9627. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9628. {
  9629. front: {
  9630. height: math.unit(6, "feet"),
  9631. weight: math.unit(150, "lb"),
  9632. name: "Front",
  9633. image: {
  9634. source: "./media/characters/cuon/front.svg",
  9635. extra: 1390 / 1320,
  9636. bottom: 0.008
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Micro",
  9643. height: math.unit(3, "inches")
  9644. },
  9645. {
  9646. name: "Normal",
  9647. height: math.unit(18 + 9 / 12, "feet"),
  9648. default: true
  9649. },
  9650. {
  9651. name: "Macro",
  9652. height: math.unit(360, "feet")
  9653. },
  9654. {
  9655. name: "Megamacro",
  9656. height: math.unit(360, "miles")
  9657. },
  9658. ]
  9659. ))
  9660. characterMakers.push(() => makeCharacter(
  9661. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9662. {
  9663. front: {
  9664. height: math.unit(2.4, "meters"),
  9665. weight: math.unit(70, "kg"),
  9666. name: "Front",
  9667. image: {
  9668. source: "./media/characters/nyanuxk/front.svg",
  9669. extra: 1172 / 1084,
  9670. bottom: 0.065
  9671. }
  9672. },
  9673. side: {
  9674. height: math.unit(2.4, "meters"),
  9675. weight: math.unit(70, "kg"),
  9676. name: "Side",
  9677. image: {
  9678. source: "./media/characters/nyanuxk/side.svg",
  9679. extra: 1190 / 1132,
  9680. bottom: 0.007
  9681. }
  9682. },
  9683. back: {
  9684. height: math.unit(2.4, "meters"),
  9685. weight: math.unit(70, "kg"),
  9686. name: "Back",
  9687. image: {
  9688. source: "./media/characters/nyanuxk/back.svg",
  9689. extra: 1200 / 1141,
  9690. bottom: 0.015
  9691. }
  9692. },
  9693. foot: {
  9694. height: math.unit(0.52, "meters"),
  9695. name: "Foot",
  9696. image: {
  9697. source: "./media/characters/nyanuxk/foot.svg"
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Micro",
  9704. height: math.unit(2, "cm")
  9705. },
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(2.4, "meters"),
  9709. default: true
  9710. },
  9711. {
  9712. name: "Smaller Macro",
  9713. height: math.unit(120, "meters")
  9714. },
  9715. {
  9716. name: "Bigger Macro",
  9717. height: math.unit(1.2, "km")
  9718. },
  9719. {
  9720. name: "Megamacro",
  9721. height: math.unit(15, "kilometers")
  9722. },
  9723. {
  9724. name: "Gigamacro",
  9725. height: math.unit(2000, "km")
  9726. },
  9727. {
  9728. name: "Teramacro",
  9729. height: math.unit(500000, "km")
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9735. {
  9736. side: {
  9737. height: math.unit(6, "feet"),
  9738. name: "Side",
  9739. image: {
  9740. source: "./media/characters/ailbhe/side.svg",
  9741. extra: 757 / 464,
  9742. bottom: 0.041
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(1.07, "meters"),
  9750. default: true
  9751. },
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(6, "feet"),
  9759. weight: math.unit(120, "kg"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/zevulfius/front.svg",
  9763. extra: 965 / 903
  9764. }
  9765. },
  9766. side: {
  9767. height: math.unit(6, "feet"),
  9768. weight: math.unit(120, "kg"),
  9769. name: "Side",
  9770. image: {
  9771. source: "./media/characters/zevulfius/side.svg",
  9772. extra: 939 / 900
  9773. }
  9774. },
  9775. back: {
  9776. height: math.unit(6, "feet"),
  9777. weight: math.unit(120, "kg"),
  9778. name: "Back",
  9779. image: {
  9780. source: "./media/characters/zevulfius/back.svg",
  9781. extra: 918 / 854,
  9782. bottom: 0.005
  9783. }
  9784. },
  9785. foot: {
  9786. height: math.unit(6 / 3.72, "feet"),
  9787. name: "Foot",
  9788. image: {
  9789. source: "./media/characters/zevulfius/foot.svg"
  9790. }
  9791. },
  9792. },
  9793. [
  9794. {
  9795. name: "Macro",
  9796. height: math.unit(750, "meters")
  9797. },
  9798. {
  9799. name: "Megamacro",
  9800. height: math.unit(20, "km"),
  9801. default: true
  9802. },
  9803. {
  9804. name: "Gigamacro",
  9805. height: math.unit(2000, "km")
  9806. },
  9807. {
  9808. name: "Teramacro",
  9809. height: math.unit(250000, "km")
  9810. },
  9811. ]
  9812. ))
  9813. characterMakers.push(() => makeCharacter(
  9814. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9815. {
  9816. front: {
  9817. height: math.unit(100, "feet"),
  9818. weight: math.unit(350, "kg"),
  9819. name: "Front",
  9820. image: {
  9821. source: "./media/characters/rikes/front.svg",
  9822. extra: 1565 / 1483,
  9823. bottom: 0.017
  9824. }
  9825. },
  9826. },
  9827. [
  9828. {
  9829. name: "Macro",
  9830. height: math.unit(100, "feet"),
  9831. default: true
  9832. },
  9833. ]
  9834. ))
  9835. characterMakers.push(() => makeCharacter(
  9836. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9837. {
  9838. anthro: {
  9839. height: math.unit(8, "feet"),
  9840. weight: math.unit(120, "kg"),
  9841. name: "Anthro",
  9842. image: {
  9843. source: "./media/characters/adam-silver-mane/anthro.svg",
  9844. extra: 5743 / 5339,
  9845. bottom: 0.07
  9846. }
  9847. },
  9848. taur: {
  9849. height: math.unit(16, "feet"),
  9850. weight: math.unit(1500, "kg"),
  9851. name: "Taur",
  9852. image: {
  9853. source: "./media/characters/adam-silver-mane/taur.svg",
  9854. extra: 1713 / 1571,
  9855. bottom: 0.01
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Normal",
  9862. height: math.unit(8, "feet")
  9863. },
  9864. {
  9865. name: "Minimacro",
  9866. height: math.unit(80, "feet")
  9867. },
  9868. {
  9869. name: "Macro",
  9870. height: math.unit(800, "feet"),
  9871. default: true
  9872. },
  9873. {
  9874. name: "Megamacro",
  9875. height: math.unit(8000, "feet")
  9876. },
  9877. {
  9878. name: "Gigamacro",
  9879. height: math.unit(800, "miles")
  9880. },
  9881. {
  9882. name: "Teramacro",
  9883. height: math.unit(80000, "miles")
  9884. },
  9885. {
  9886. name: "Celestial",
  9887. height: math.unit(8e6, "miles")
  9888. },
  9889. {
  9890. name: "Star Dragon",
  9891. height: math.unit(800000, "parsecs")
  9892. },
  9893. {
  9894. name: "Godly",
  9895. height: math.unit(800, "teraparsecs")
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9901. {
  9902. front: {
  9903. height: math.unit(6, "feet"),
  9904. weight: math.unit(150, "lb"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/ky'owin/front.svg",
  9908. extra: 3888 / 3068,
  9909. bottom: 0.015
  9910. }
  9911. },
  9912. },
  9913. [
  9914. {
  9915. name: "Normal",
  9916. height: math.unit(6 + 8 / 12, "feet")
  9917. },
  9918. {
  9919. name: "Large",
  9920. height: math.unit(68, "feet")
  9921. },
  9922. {
  9923. name: "Macro",
  9924. height: math.unit(132, "feet")
  9925. },
  9926. {
  9927. name: "Macro+",
  9928. height: math.unit(340, "feet")
  9929. },
  9930. {
  9931. name: "Macro++",
  9932. height: math.unit(680, "feet"),
  9933. default: true
  9934. },
  9935. {
  9936. name: "Megamacro",
  9937. height: math.unit(1, "mile")
  9938. },
  9939. {
  9940. name: "Megamacro+",
  9941. height: math.unit(10, "miles")
  9942. },
  9943. ]
  9944. ))
  9945. characterMakers.push(() => makeCharacter(
  9946. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9947. {
  9948. front: {
  9949. height: math.unit(4, "feet"),
  9950. weight: math.unit(50, "lb"),
  9951. name: "Front",
  9952. image: {
  9953. source: "./media/characters/mal/front.svg",
  9954. extra: 785 / 724,
  9955. bottom: 0.07
  9956. }
  9957. },
  9958. },
  9959. [
  9960. {
  9961. name: "Micro",
  9962. height: math.unit(4, "inches")
  9963. },
  9964. {
  9965. name: "Normal",
  9966. height: math.unit(4, "feet"),
  9967. default: true
  9968. },
  9969. {
  9970. name: "Macro",
  9971. height: math.unit(200, "feet")
  9972. },
  9973. ]
  9974. ))
  9975. characterMakers.push(() => makeCharacter(
  9976. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9977. {
  9978. front: {
  9979. height: math.unit(6, "feet"),
  9980. weight: math.unit(150, "lb"),
  9981. name: "Front",
  9982. image: {
  9983. source: "./media/characters/jordan-deware/front.svg",
  9984. extra: 1191 / 1012
  9985. }
  9986. },
  9987. },
  9988. [
  9989. {
  9990. name: "Nano",
  9991. height: math.unit(0.01, "mm")
  9992. },
  9993. {
  9994. name: "Minimicro",
  9995. height: math.unit(1, "mm")
  9996. },
  9997. {
  9998. name: "Micro",
  9999. height: math.unit(0.5, "inches")
  10000. },
  10001. {
  10002. name: "Normal",
  10003. height: math.unit(4, "feet"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Minimacro",
  10008. height: math.unit(40, "meters")
  10009. },
  10010. {
  10011. name: "Small Macro",
  10012. height: math.unit(400, "meters")
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(4, "miles")
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(40, "miles")
  10021. },
  10022. {
  10023. name: "Megamacro+",
  10024. height: math.unit(400, "miles")
  10025. },
  10026. {
  10027. name: "Gigamacro",
  10028. height: math.unit(400000, "miles")
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10034. {
  10035. side: {
  10036. height: math.unit(6, "feet"),
  10037. weight: math.unit(150, "lb"),
  10038. name: "Side",
  10039. image: {
  10040. source: "./media/characters/kimiko/side.svg",
  10041. extra: 600 / 358
  10042. }
  10043. },
  10044. },
  10045. [
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(15, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "Macro",
  10053. height: math.unit(220, "feet")
  10054. },
  10055. {
  10056. name: "Macro+",
  10057. height: math.unit(1450, "feet")
  10058. },
  10059. {
  10060. name: "Megamacro",
  10061. height: math.unit(11500, "feet")
  10062. },
  10063. {
  10064. name: "Gigamacro",
  10065. height: math.unit(9500, "miles")
  10066. },
  10067. {
  10068. name: "Teramacro",
  10069. height: math.unit(2208005005, "miles")
  10070. },
  10071. {
  10072. name: "Examacro",
  10073. height: math.unit(2750, "parsecs")
  10074. },
  10075. {
  10076. name: "Zettamacro",
  10077. height: math.unit(101500, "parsecs")
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10083. {
  10084. front: {
  10085. height: math.unit(6, "feet"),
  10086. weight: math.unit(70, "kg"),
  10087. name: "Front",
  10088. image: {
  10089. source: "./media/characters/andrew-sleepy/front.svg"
  10090. }
  10091. },
  10092. side: {
  10093. height: math.unit(6, "feet"),
  10094. weight: math.unit(70, "kg"),
  10095. name: "Side",
  10096. image: {
  10097. source: "./media/characters/andrew-sleepy/side.svg"
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Micro",
  10104. height: math.unit(1, "mm"),
  10105. default: true
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10111. {
  10112. front: {
  10113. height: math.unit(6, "feet"),
  10114. weight: math.unit(150, "lb"),
  10115. name: "Front",
  10116. image: {
  10117. source: "./media/characters/judio/front.svg",
  10118. extra: 1258 / 1110
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Normal",
  10125. height: math.unit(5 + 6 / 12, "feet")
  10126. },
  10127. {
  10128. name: "Macro",
  10129. height: math.unit(1000, "feet"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Megamacro",
  10134. height: math.unit(10, "miles")
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(6, "feet"),
  10143. weight: math.unit(68, "kg"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/nomaxice/front.svg",
  10147. extra: 1498 / 1073,
  10148. bottom: 0.075
  10149. }
  10150. },
  10151. foot: {
  10152. height: math.unit(1.1, "feet"),
  10153. name: "Foot",
  10154. image: {
  10155. source: "./media/characters/nomaxice/foot.svg"
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Micro",
  10162. height: math.unit(8, "cm")
  10163. },
  10164. {
  10165. name: "Norm",
  10166. height: math.unit(1.82, "m")
  10167. },
  10168. {
  10169. name: "Norm+",
  10170. height: math.unit(8.8, "feet")
  10171. },
  10172. {
  10173. name: "Big",
  10174. height: math.unit(8, "meters"),
  10175. default: true
  10176. },
  10177. {
  10178. name: "Macro",
  10179. height: math.unit(18, "meters")
  10180. },
  10181. {
  10182. name: "Macro+",
  10183. height: math.unit(88, "meters")
  10184. },
  10185. ]
  10186. ))
  10187. characterMakers.push(() => makeCharacter(
  10188. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10189. {
  10190. front: {
  10191. height: math.unit(12, "feet"),
  10192. weight: math.unit(1.5, "tons"),
  10193. name: "Front",
  10194. image: {
  10195. source: "./media/characters/dydros/front.svg",
  10196. extra: 863 / 800,
  10197. bottom: 0.015
  10198. }
  10199. },
  10200. back: {
  10201. height: math.unit(12, "feet"),
  10202. weight: math.unit(1.5, "tons"),
  10203. name: "Back",
  10204. image: {
  10205. source: "./media/characters/dydros/back.svg",
  10206. extra: 900 / 843,
  10207. bottom: 0.005
  10208. }
  10209. },
  10210. },
  10211. [
  10212. {
  10213. name: "Normal",
  10214. height: math.unit(12, "feet"),
  10215. default: true
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10221. {
  10222. front: {
  10223. height: math.unit(6, "feet"),
  10224. weight: math.unit(100, "kg"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/riggi/front.svg",
  10228. extra: 5787 / 5303
  10229. }
  10230. },
  10231. hyper: {
  10232. height: math.unit(6 * 5 / 3, "feet"),
  10233. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10234. name: "Hyper",
  10235. image: {
  10236. source: "./media/characters/riggi/hyper.svg",
  10237. extra: 3595 / 3485
  10238. }
  10239. },
  10240. },
  10241. [
  10242. {
  10243. name: "Small Macro",
  10244. height: math.unit(50, "feet")
  10245. },
  10246. {
  10247. name: "Default",
  10248. height: math.unit(200, "feet"),
  10249. default: true
  10250. },
  10251. {
  10252. name: "Loom",
  10253. height: math.unit(10000, "feet")
  10254. },
  10255. {
  10256. name: "Cruising Altitude",
  10257. height: math.unit(30000, "feet")
  10258. },
  10259. {
  10260. name: "Megamacro",
  10261. height: math.unit(100, "miles")
  10262. },
  10263. {
  10264. name: "Continent Sized",
  10265. height: math.unit(2800, "miles")
  10266. },
  10267. {
  10268. name: "Earth Sized",
  10269. height: math.unit(8000, "miles")
  10270. },
  10271. ]
  10272. ))
  10273. characterMakers.push(() => makeCharacter(
  10274. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10275. {
  10276. front: {
  10277. height: math.unit(6, "feet"),
  10278. weight: math.unit(250, "lb"),
  10279. name: "Front",
  10280. image: {
  10281. source: "./media/characters/alexi/front.svg",
  10282. extra: 3483 / 3291,
  10283. bottom: 0.04
  10284. }
  10285. },
  10286. back: {
  10287. height: math.unit(6, "feet"),
  10288. weight: math.unit(250, "lb"),
  10289. name: "Back",
  10290. image: {
  10291. source: "./media/characters/alexi/back.svg",
  10292. extra: 3533 / 3356,
  10293. bottom: 0.021
  10294. }
  10295. },
  10296. frontTransforming: {
  10297. height: math.unit(8.58, "feet"),
  10298. weight: math.unit(1300, "lb"),
  10299. name: "Transforming",
  10300. image: {
  10301. source: "./media/characters/alexi/front-transforming.svg",
  10302. extra: 437 / 409,
  10303. bottom: 19 / 458.66
  10304. }
  10305. },
  10306. frontTransformed: {
  10307. height: math.unit(12.5, "feet"),
  10308. weight: math.unit(4000, "lb"),
  10309. name: "Transformed",
  10310. image: {
  10311. source: "./media/characters/alexi/front-transformed.svg",
  10312. extra: 639 / 614,
  10313. bottom: 30.55 / 671
  10314. }
  10315. },
  10316. },
  10317. [
  10318. {
  10319. name: "Normal",
  10320. height: math.unit(14, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Minimacro",
  10325. height: math.unit(30, "meters")
  10326. },
  10327. {
  10328. name: "Macro",
  10329. height: math.unit(500, "meters")
  10330. },
  10331. {
  10332. name: "Megamacro",
  10333. height: math.unit(9000, "km")
  10334. },
  10335. {
  10336. name: "Teramacro",
  10337. height: math.unit(384000, "km")
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10343. {
  10344. front: {
  10345. height: math.unit(6, "feet"),
  10346. weight: math.unit(150, "lb"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/kayroo/front.svg",
  10350. extra: 1153 / 1038,
  10351. bottom: 0.06
  10352. }
  10353. },
  10354. foot: {
  10355. height: math.unit(6, "feet"),
  10356. weight: math.unit(150, "lb"),
  10357. name: "Foot",
  10358. image: {
  10359. source: "./media/characters/kayroo/foot.svg"
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Normal",
  10366. height: math.unit(8, "feet"),
  10367. default: true
  10368. },
  10369. {
  10370. name: "Minimacro",
  10371. height: math.unit(250, "feet")
  10372. },
  10373. {
  10374. name: "Macro",
  10375. height: math.unit(2800, "feet")
  10376. },
  10377. {
  10378. name: "Megamacro",
  10379. height: math.unit(5200, "feet")
  10380. },
  10381. {
  10382. name: "Gigamacro",
  10383. height: math.unit(27000, "feet")
  10384. },
  10385. {
  10386. name: "Omega",
  10387. height: math.unit(45000, "feet")
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10393. {
  10394. front: {
  10395. height: math.unit(18, "feet"),
  10396. weight: math.unit(5800, "lb"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/rhys/front.svg",
  10400. extra: 3386 / 3090,
  10401. bottom: 0.07
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(18, "feet"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Working Size",
  10413. height: math.unit(200, "feet")
  10414. },
  10415. {
  10416. name: "Demolition Size",
  10417. height: math.unit(2000, "feet")
  10418. },
  10419. {
  10420. name: "Maximum Licensed Size",
  10421. height: math.unit(5, "miles")
  10422. },
  10423. {
  10424. name: "Maximum Observed Size",
  10425. height: math.unit(10, "yottameters")
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10431. {
  10432. front: {
  10433. height: math.unit(6, "feet"),
  10434. weight: math.unit(250, "lb"),
  10435. name: "Front",
  10436. image: {
  10437. source: "./media/characters/toto/front.svg",
  10438. extra: 527 / 479,
  10439. bottom: 0.05
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Micro",
  10446. height: math.unit(3, "feet")
  10447. },
  10448. {
  10449. name: "Normal",
  10450. height: math.unit(10, "feet")
  10451. },
  10452. {
  10453. name: "Macro",
  10454. height: math.unit(150, "feet"),
  10455. default: true
  10456. },
  10457. {
  10458. name: "Megamacro",
  10459. height: math.unit(1200, "feet")
  10460. },
  10461. ]
  10462. ))
  10463. characterMakers.push(() => makeCharacter(
  10464. { name: "King", species: ["lion"], tags: ["anthro"] },
  10465. {
  10466. back: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(150, "lb"),
  10469. name: "Back",
  10470. image: {
  10471. source: "./media/characters/king/back.svg"
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Micro",
  10478. height: math.unit(2, "inches")
  10479. },
  10480. {
  10481. name: "Normal",
  10482. height: math.unit(8, "feet")
  10483. },
  10484. {
  10485. name: "Macro",
  10486. height: math.unit(200, "feet"),
  10487. default: true
  10488. },
  10489. {
  10490. name: "Megamacro",
  10491. height: math.unit(50, "miles")
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10497. {
  10498. anthro: {
  10499. height: math.unit(6 + 5 / 12, "feet"),
  10500. weight: math.unit(280, "lb"),
  10501. name: "Anthro",
  10502. image: {
  10503. source: "./media/characters/cordite/anthro.svg",
  10504. extra: 1986 / 1905,
  10505. bottom: 0.025
  10506. }
  10507. },
  10508. feral: {
  10509. height: math.unit(2, "feet"),
  10510. weight: math.unit(90, "lb"),
  10511. name: "Feral",
  10512. image: {
  10513. source: "./media/characters/cordite/feral.svg",
  10514. extra: 1260 / 755,
  10515. bottom: 0.05
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Normal",
  10522. height: math.unit(6 + 5 / 12, "feet"),
  10523. default: true
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10529. {
  10530. front: {
  10531. height: math.unit(6, "feet"),
  10532. weight: math.unit(150, "lb"),
  10533. name: "Front",
  10534. image: {
  10535. source: "./media/characters/pianostrong/front.svg",
  10536. extra: 6577 / 6254,
  10537. bottom: 0.02
  10538. }
  10539. },
  10540. side: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(150, "lb"),
  10543. name: "Side",
  10544. image: {
  10545. source: "./media/characters/pianostrong/side.svg",
  10546. extra: 6106 / 5730
  10547. }
  10548. },
  10549. back: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(150, "lb"),
  10552. name: "Back",
  10553. image: {
  10554. source: "./media/characters/pianostrong/back.svg",
  10555. extra: 6085 / 5733,
  10556. bottom: 0.01
  10557. }
  10558. },
  10559. },
  10560. [
  10561. {
  10562. name: "Macro",
  10563. height: math.unit(100, "feet")
  10564. },
  10565. {
  10566. name: "Macro+",
  10567. height: math.unit(300, "feet"),
  10568. default: true
  10569. },
  10570. {
  10571. name: "Macro++",
  10572. height: math.unit(1000, "feet")
  10573. },
  10574. ]
  10575. ))
  10576. characterMakers.push(() => makeCharacter(
  10577. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10578. {
  10579. front: {
  10580. height: math.unit(6, "feet"),
  10581. weight: math.unit(150, "lb"),
  10582. name: "Front",
  10583. image: {
  10584. source: "./media/characters/kona/front.svg",
  10585. extra: 2960 / 2629,
  10586. bottom: 0.005
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Normal",
  10593. height: math.unit(11 + 8 / 12, "feet")
  10594. },
  10595. {
  10596. name: "Macro",
  10597. height: math.unit(850, "feet"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Macro+",
  10602. height: math.unit(1.5, "km"),
  10603. default: true
  10604. },
  10605. {
  10606. name: "Megamacro",
  10607. height: math.unit(80, "miles")
  10608. },
  10609. {
  10610. name: "Gigamacro",
  10611. height: math.unit(3500, "miles")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10617. {
  10618. side: {
  10619. height: math.unit(1.9, "meters"),
  10620. weight: math.unit(326, "kg"),
  10621. name: "Side",
  10622. image: {
  10623. source: "./media/characters/levi/side.svg",
  10624. extra: 1704 / 1334,
  10625. bottom: 0.02
  10626. }
  10627. },
  10628. },
  10629. [
  10630. {
  10631. name: "Normal",
  10632. height: math.unit(1.9, "meters"),
  10633. default: true
  10634. },
  10635. {
  10636. name: "Macro",
  10637. height: math.unit(20, "meters")
  10638. },
  10639. {
  10640. name: "Macro+",
  10641. height: math.unit(200, "meters")
  10642. },
  10643. {
  10644. name: "Megamacro",
  10645. height: math.unit(2, "km")
  10646. },
  10647. {
  10648. name: "Megamacro+",
  10649. height: math.unit(20, "km")
  10650. },
  10651. {
  10652. name: "Gigamacro",
  10653. height: math.unit(2500, "km")
  10654. },
  10655. {
  10656. name: "Gigamacro+",
  10657. height: math.unit(120000, "km")
  10658. },
  10659. {
  10660. name: "Teramacro",
  10661. height: math.unit(7.77e6, "km")
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(6 + 4 / 12, "feet"),
  10670. weight: math.unit(188, "lb"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/bmc/front.svg",
  10674. extra: 1067 / 1022,
  10675. bottom: 0.047
  10676. }
  10677. },
  10678. },
  10679. [
  10680. {
  10681. name: "Human-sized",
  10682. height: math.unit(6 + 4 / 12, "feet")
  10683. },
  10684. {
  10685. name: "Small",
  10686. height: math.unit(250, "feet")
  10687. },
  10688. {
  10689. name: "Normal",
  10690. height: math.unit(1250, "feet"),
  10691. default: true
  10692. },
  10693. {
  10694. name: "Good Day",
  10695. height: math.unit(88, "miles")
  10696. },
  10697. {
  10698. name: "Largest Measured Size",
  10699. height: math.unit(11.2e6, "lightyears")
  10700. },
  10701. ]
  10702. ))
  10703. characterMakers.push(() => makeCharacter(
  10704. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10705. {
  10706. front: {
  10707. height: math.unit(20, "feet"),
  10708. weight: math.unit(2016, "kg"),
  10709. name: "Front",
  10710. image: {
  10711. source: "./media/characters/sven-the-kaiju/front.svg",
  10712. extra: 1479 / 1449,
  10713. bottom: 0.05
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Fairy",
  10720. height: math.unit(6, "inches")
  10721. },
  10722. {
  10723. name: "Normal",
  10724. height: math.unit(20, "feet"),
  10725. default: true
  10726. },
  10727. {
  10728. name: "Rampage",
  10729. height: math.unit(200, "feet")
  10730. },
  10731. {
  10732. name: "Archfey Forest Guardian",
  10733. height: math.unit(1, "mile")
  10734. },
  10735. ]
  10736. ))
  10737. characterMakers.push(() => makeCharacter(
  10738. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10739. {
  10740. front: {
  10741. height: math.unit(4, "meters"),
  10742. weight: math.unit(2, "tons"),
  10743. name: "Front",
  10744. image: {
  10745. source: "./media/characters/marik/front.svg",
  10746. extra: 1057 / 1003,
  10747. bottom: 0.08
  10748. }
  10749. },
  10750. },
  10751. [
  10752. {
  10753. name: "Normal",
  10754. height: math.unit(4, "meters"),
  10755. default: true
  10756. },
  10757. {
  10758. name: "Macro",
  10759. height: math.unit(20, "meters")
  10760. },
  10761. {
  10762. name: "Megamacro",
  10763. height: math.unit(50, "km")
  10764. },
  10765. {
  10766. name: "Gigamacro",
  10767. height: math.unit(100, "km")
  10768. },
  10769. {
  10770. name: "Alpha Macro",
  10771. height: math.unit(7.88e7, "yottameters")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(110, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/mel/front.svg",
  10784. extra: 736 / 617,
  10785. bottom: 0.017
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Pico",
  10792. height: math.unit(3, "pm")
  10793. },
  10794. {
  10795. name: "Nano",
  10796. height: math.unit(3, "nm")
  10797. },
  10798. {
  10799. name: "Micro",
  10800. height: math.unit(0.3, "mm"),
  10801. default: true
  10802. },
  10803. {
  10804. name: "Micro+",
  10805. height: math.unit(3, "mm")
  10806. },
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(5 + 10.5 / 12, "feet")
  10810. },
  10811. ]
  10812. ))
  10813. characterMakers.push(() => makeCharacter(
  10814. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10815. {
  10816. kaiju: {
  10817. height: math.unit(1.75, "meters"),
  10818. weight: math.unit(55, "kg"),
  10819. name: "Kaiju",
  10820. image: {
  10821. source: "./media/characters/lykonous/kaiju.svg",
  10822. extra: 1055 / 946,
  10823. bottom: 0.135
  10824. }
  10825. },
  10826. },
  10827. [
  10828. {
  10829. name: "Normal",
  10830. height: math.unit(2.5, "meters"),
  10831. default: true
  10832. },
  10833. {
  10834. name: "Kaiju Dragon",
  10835. height: math.unit(60, "meters")
  10836. },
  10837. {
  10838. name: "Mega Kaiju",
  10839. height: math.unit(120, "km")
  10840. },
  10841. {
  10842. name: "Giga Kaiju",
  10843. height: math.unit(200, "megameters")
  10844. },
  10845. {
  10846. name: "Terra Kaiju",
  10847. height: math.unit(400, "gigameters")
  10848. },
  10849. {
  10850. name: "Kaiju Dragon God",
  10851. height: math.unit(13000, "exaparsecs")
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10857. {
  10858. front: {
  10859. height: math.unit(6, "feet"),
  10860. weight: math.unit(150, "lb"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/blü/front.svg",
  10864. extra: 1883 / 1564,
  10865. bottom: 0.031
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(13, "feet"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Big Boi",
  10877. height: math.unit(150, "meters")
  10878. },
  10879. {
  10880. name: "Mini Stomper",
  10881. height: math.unit(300, "meters")
  10882. },
  10883. {
  10884. name: "Macro",
  10885. height: math.unit(1000, "meters")
  10886. },
  10887. {
  10888. name: "Megamacro",
  10889. height: math.unit(11000, "meters")
  10890. },
  10891. {
  10892. name: "Gigamacro",
  10893. height: math.unit(11000, "km")
  10894. },
  10895. {
  10896. name: "Teramacro",
  10897. height: math.unit(420000, "km")
  10898. },
  10899. {
  10900. name: "Examacro",
  10901. height: math.unit(120, "parsecs")
  10902. },
  10903. {
  10904. name: "God Tho",
  10905. height: math.unit(98000000000, "parsecs")
  10906. },
  10907. ]
  10908. ))
  10909. characterMakers.push(() => makeCharacter(
  10910. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10911. {
  10912. taurFront: {
  10913. height: math.unit(6, "feet"),
  10914. weight: math.unit(200, "lb"),
  10915. name: "Taur (Front)",
  10916. image: {
  10917. source: "./media/characters/scales/taur-front.svg",
  10918. extra: 1,
  10919. bottom: 0.05
  10920. }
  10921. },
  10922. taurBack: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(200, "lb"),
  10925. name: "Taur (Back)",
  10926. image: {
  10927. source: "./media/characters/scales/taur-back.svg",
  10928. extra: 1,
  10929. bottom: 0.08
  10930. }
  10931. },
  10932. anthro: {
  10933. height: math.unit(6 * 7 / 12, "feet"),
  10934. weight: math.unit(100, "lb"),
  10935. name: "Anthro",
  10936. image: {
  10937. source: "./media/characters/scales/anthro.svg",
  10938. extra: 1,
  10939. bottom: 0.06
  10940. }
  10941. },
  10942. },
  10943. [
  10944. {
  10945. name: "Normal",
  10946. height: math.unit(12, "feet"),
  10947. default: true
  10948. },
  10949. ]
  10950. ))
  10951. characterMakers.push(() => makeCharacter(
  10952. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10953. {
  10954. front: {
  10955. height: math.unit(6, "feet"),
  10956. weight: math.unit(150, "lb"),
  10957. name: "Front",
  10958. image: {
  10959. source: "./media/characters/koragos/front.svg",
  10960. extra: 841 / 794,
  10961. bottom: 0.035
  10962. }
  10963. },
  10964. back: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(150, "lb"),
  10967. name: "Back",
  10968. image: {
  10969. source: "./media/characters/koragos/back.svg",
  10970. extra: 841 / 810,
  10971. bottom: 0.022
  10972. }
  10973. },
  10974. },
  10975. [
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(6 + 11 / 12, "feet"),
  10979. default: true
  10980. },
  10981. {
  10982. name: "Macro",
  10983. height: math.unit(490, "feet")
  10984. },
  10985. {
  10986. name: "Megamacro",
  10987. height: math.unit(10, "miles")
  10988. },
  10989. {
  10990. name: "Gigamacro",
  10991. height: math.unit(50, "miles")
  10992. },
  10993. ]
  10994. ))
  10995. characterMakers.push(() => makeCharacter(
  10996. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10997. {
  10998. front: {
  10999. height: math.unit(6, "feet"),
  11000. weight: math.unit(250, "lb"),
  11001. name: "Front",
  11002. image: {
  11003. source: "./media/characters/xylrem/front.svg",
  11004. extra: 3323 / 3050,
  11005. bottom: 0.065
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Micro",
  11012. height: math.unit(4, "feet")
  11013. },
  11014. {
  11015. name: "Normal",
  11016. height: math.unit(16, "feet"),
  11017. default: true
  11018. },
  11019. {
  11020. name: "Macro",
  11021. height: math.unit(2720, "feet")
  11022. },
  11023. {
  11024. name: "Megamacro",
  11025. height: math.unit(25000, "miles")
  11026. },
  11027. ]
  11028. ))
  11029. characterMakers.push(() => makeCharacter(
  11030. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11031. {
  11032. front: {
  11033. height: math.unit(8, "feet"),
  11034. weight: math.unit(250, "kg"),
  11035. name: "Front",
  11036. image: {
  11037. source: "./media/characters/ikideru/front.svg",
  11038. extra: 930 / 870,
  11039. bottom: 0.087
  11040. }
  11041. },
  11042. back: {
  11043. height: math.unit(8, "feet"),
  11044. weight: math.unit(250, "kg"),
  11045. name: "Back",
  11046. image: {
  11047. source: "./media/characters/ikideru/back.svg",
  11048. extra: 919 / 852,
  11049. bottom: 0.055
  11050. }
  11051. },
  11052. },
  11053. [
  11054. {
  11055. name: "Rare",
  11056. height: math.unit(8, "feet"),
  11057. default: true
  11058. },
  11059. {
  11060. name: "Playful Loom",
  11061. height: math.unit(80, "feet")
  11062. },
  11063. {
  11064. name: "City Leaner",
  11065. height: math.unit(230, "feet")
  11066. },
  11067. {
  11068. name: "Megamacro",
  11069. height: math.unit(2500, "feet")
  11070. },
  11071. {
  11072. name: "Gigamacro",
  11073. height: math.unit(26400, "feet")
  11074. },
  11075. {
  11076. name: "Tectonic Shifter",
  11077. height: math.unit(1.7, "megameters")
  11078. },
  11079. {
  11080. name: "Planet Carer",
  11081. height: math.unit(21, "megameters")
  11082. },
  11083. {
  11084. name: "God",
  11085. height: math.unit(11157.22, "parsecs")
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(120, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/neo/front.svg"
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Micro",
  11104. height: math.unit(2, "inches"),
  11105. default: true
  11106. },
  11107. {
  11108. name: "Human Size",
  11109. height: math.unit(5 + 8 / 12, "feet")
  11110. },
  11111. ]
  11112. ))
  11113. characterMakers.push(() => makeCharacter(
  11114. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11115. {
  11116. front: {
  11117. height: math.unit(13 + 10 / 12, "feet"),
  11118. weight: math.unit(5320, "lb"),
  11119. name: "Front",
  11120. image: {
  11121. source: "./media/characters/chauncey-chantz/front.svg",
  11122. extra: 1587 / 1435,
  11123. bottom: 0.02
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Normal",
  11130. height: math.unit(13 + 10 / 12, "feet"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Macro",
  11135. height: math.unit(45, "feet")
  11136. },
  11137. {
  11138. name: "Megamacro",
  11139. height: math.unit(250, "miles")
  11140. },
  11141. {
  11142. name: "Planetary",
  11143. height: math.unit(10000, "miles")
  11144. },
  11145. {
  11146. name: "Galactic",
  11147. height: math.unit(40000, "parsecs")
  11148. },
  11149. {
  11150. name: "Universal",
  11151. height: math.unit(1, "yottameter")
  11152. },
  11153. ]
  11154. ))
  11155. characterMakers.push(() => makeCharacter(
  11156. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11157. {
  11158. front: {
  11159. height: math.unit(6, "feet"),
  11160. weight: math.unit(150, "lb"),
  11161. name: "Front",
  11162. image: {
  11163. source: "./media/characters/epifox/front.svg",
  11164. extra: 1,
  11165. bottom: 0.075
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Micro",
  11172. height: math.unit(6, "inches")
  11173. },
  11174. {
  11175. name: "Normal",
  11176. height: math.unit(12, "feet"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Macro",
  11181. height: math.unit(3810, "feet")
  11182. },
  11183. {
  11184. name: "Megamacro",
  11185. height: math.unit(500, "miles")
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11191. {
  11192. front: {
  11193. height: math.unit(1.8796, "m"),
  11194. weight: math.unit(230, "lb"),
  11195. name: "Front",
  11196. image: {
  11197. source: "./media/characters/colin-t/front.svg",
  11198. extra: 1272 / 1193,
  11199. bottom: 0.07
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Micro",
  11206. height: math.unit(0.571, "meters")
  11207. },
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(1.8796, "meters"),
  11211. default: true
  11212. },
  11213. {
  11214. name: "Tall",
  11215. height: math.unit(4, "meters")
  11216. },
  11217. {
  11218. name: "Macro",
  11219. height: math.unit(67.241, "meters")
  11220. },
  11221. {
  11222. name: "Megamacro",
  11223. height: math.unit(371.856, "meters")
  11224. },
  11225. {
  11226. name: "Planetary",
  11227. height: math.unit(12631.5689, "km")
  11228. },
  11229. ]
  11230. ))
  11231. characterMakers.push(() => makeCharacter(
  11232. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11233. {
  11234. front: {
  11235. height: math.unit(1.85, "meters"),
  11236. weight: math.unit(80, "kg"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/matvei/front.svg",
  11240. extra: 614 / 594,
  11241. bottom: 0.01
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Normal",
  11248. height: math.unit(1.85, "meters"),
  11249. default: true
  11250. },
  11251. ]
  11252. ))
  11253. characterMakers.push(() => makeCharacter(
  11254. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11255. {
  11256. front: {
  11257. height: math.unit(5 + 9 / 12, "feet"),
  11258. weight: math.unit(70, "lb"),
  11259. name: "Front",
  11260. image: {
  11261. source: "./media/characters/quincy/front.svg",
  11262. extra: 3041 / 2751
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(5 + 9 / 12, "feet"),
  11267. weight: math.unit(70, "lb"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/quincy/back.svg",
  11271. extra: 3041 / 2751
  11272. }
  11273. },
  11274. flying: {
  11275. height: math.unit(5 + 4 / 12, "feet"),
  11276. weight: math.unit(70, "lb"),
  11277. name: "Flying",
  11278. image: {
  11279. source: "./media/characters/quincy/flying.svg",
  11280. extra: 1044 / 930
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Micro",
  11287. height: math.unit(3, "cm")
  11288. },
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(5 + 9 / 12, "feet")
  11292. },
  11293. {
  11294. name: "Macro",
  11295. height: math.unit(200, "meters"),
  11296. default: true
  11297. },
  11298. {
  11299. name: "Megamacro",
  11300. height: math.unit(1000, "meters")
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(4 + 7 / 12, "feet"),
  11309. weight: math.unit(50, "lb"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/vanrel/front.svg",
  11313. extra: 1,
  11314. bottom: 0.02
  11315. }
  11316. },
  11317. frontAlt: {
  11318. height: math.unit(4 + 7 / 12, "feet"),
  11319. weight: math.unit(50, "lb"),
  11320. name: "Front-alt",
  11321. image: {
  11322. source: "./media/characters/vanrel/front-alt.svg",
  11323. extra: 1,
  11324. bottom: 15 / 1511
  11325. }
  11326. },
  11327. elemental: {
  11328. height: math.unit(3, "feet"),
  11329. weight: math.unit(50, "lb"),
  11330. name: "Elemental",
  11331. image: {
  11332. source: "./media/characters/vanrel/elemental.svg",
  11333. extra: 192.3 / 162.8,
  11334. bottom: 1.79 / 194.17
  11335. }
  11336. },
  11337. side: {
  11338. height: math.unit(4 + 7 / 12, "feet"),
  11339. weight: math.unit(50, "lb"),
  11340. name: "Side",
  11341. image: {
  11342. source: "./media/characters/vanrel/side.svg",
  11343. extra: 1,
  11344. bottom: 0.025
  11345. }
  11346. },
  11347. tome: {
  11348. height: math.unit(1.35, "feet"),
  11349. weight: math.unit(10, "lb"),
  11350. name: "Vanrel's Tome",
  11351. rename: true,
  11352. image: {
  11353. source: "./media/characters/vanrel/tome.svg"
  11354. }
  11355. },
  11356. beans: {
  11357. height: math.unit(0.89, "feet"),
  11358. name: "Beans",
  11359. image: {
  11360. source: "./media/characters/vanrel/beans.svg"
  11361. }
  11362. },
  11363. },
  11364. [
  11365. {
  11366. name: "Normal",
  11367. height: math.unit(4 + 7 / 12, "feet"),
  11368. default: true
  11369. },
  11370. ]
  11371. ))
  11372. characterMakers.push(() => makeCharacter(
  11373. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11374. {
  11375. front: {
  11376. height: math.unit(7 + 5 / 12, "feet"),
  11377. weight: math.unit(150, "lb"),
  11378. name: "Front",
  11379. image: {
  11380. source: "./media/characters/kuiper-vanrel/front.svg",
  11381. extra: 1118 / 1068,
  11382. bottom: 0.09
  11383. }
  11384. },
  11385. foot: {
  11386. height: math.unit(0.55, "meters"),
  11387. name: "Foot",
  11388. image: {
  11389. source: "./media/characters/kuiper-vanrel/foot.svg",
  11390. }
  11391. },
  11392. battle: {
  11393. height: math.unit(6.824, "feet"),
  11394. weight: math.unit(150, "lb"),
  11395. name: "Battle",
  11396. image: {
  11397. source: "./media/characters/kuiper-vanrel/battle.svg",
  11398. extra: 1466 / 1327,
  11399. bottom: 29 / 1492.5
  11400. }
  11401. },
  11402. battleAlt: {
  11403. height: math.unit(6.824, "feet"),
  11404. weight: math.unit(150, "lb"),
  11405. name: "Battle (Alt)",
  11406. image: {
  11407. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11408. extra: 2081 / 1965,
  11409. bottom: 40 / 2121
  11410. }
  11411. },
  11412. },
  11413. [
  11414. {
  11415. name: "Normal",
  11416. height: math.unit(7 + 5 / 12, "feet"),
  11417. default: true
  11418. },
  11419. ]
  11420. ))
  11421. characterMakers.push(() => makeCharacter(
  11422. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11423. {
  11424. front: {
  11425. height: math.unit(8 + 5 / 12, "feet"),
  11426. weight: math.unit(150, "lb"),
  11427. name: "Front",
  11428. image: {
  11429. source: "./media/characters/keset-vanrel/front.svg",
  11430. extra: 1150 / 1084,
  11431. bottom: 0.05
  11432. }
  11433. },
  11434. hand: {
  11435. height: math.unit(0.6, "meters"),
  11436. name: "Hand",
  11437. image: {
  11438. source: "./media/characters/keset-vanrel/hand.svg"
  11439. }
  11440. },
  11441. foot: {
  11442. height: math.unit(0.94978, "meters"),
  11443. name: "Foot",
  11444. image: {
  11445. source: "./media/characters/keset-vanrel/foot.svg"
  11446. }
  11447. },
  11448. battle: {
  11449. height: math.unit(7.408, "feet"),
  11450. weight: math.unit(150, "lb"),
  11451. name: "Battle",
  11452. image: {
  11453. source: "./media/characters/keset-vanrel/battle.svg",
  11454. extra: 1890 / 1386,
  11455. bottom: 73.28 / 1970
  11456. }
  11457. },
  11458. },
  11459. [
  11460. {
  11461. name: "Normal",
  11462. height: math.unit(8 + 5 / 12, "feet"),
  11463. default: true
  11464. },
  11465. ]
  11466. ))
  11467. characterMakers.push(() => makeCharacter(
  11468. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11469. {
  11470. front: {
  11471. height: math.unit(6, "feet"),
  11472. weight: math.unit(150, "lb"),
  11473. name: "Front",
  11474. image: {
  11475. source: "./media/characters/neos/front.svg",
  11476. extra: 1696 / 992,
  11477. bottom: 0.14
  11478. }
  11479. },
  11480. },
  11481. [
  11482. {
  11483. name: "Normal",
  11484. height: math.unit(54, "cm"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(100, "m")
  11490. },
  11491. {
  11492. name: "Megamacro",
  11493. height: math.unit(10, "km")
  11494. },
  11495. {
  11496. name: "Megamacro+",
  11497. height: math.unit(100, "km")
  11498. },
  11499. {
  11500. name: "Gigamacro",
  11501. height: math.unit(100, "Mm")
  11502. },
  11503. {
  11504. name: "Teramacro",
  11505. height: math.unit(100, "Gm")
  11506. },
  11507. {
  11508. name: "Examacro",
  11509. height: math.unit(100, "Em")
  11510. },
  11511. {
  11512. name: "Godly",
  11513. height: math.unit(10000, "Ym")
  11514. },
  11515. {
  11516. name: "Beyond Godly",
  11517. height: math.unit(25, "multiverses")
  11518. },
  11519. ]
  11520. ))
  11521. characterMakers.push(() => makeCharacter(
  11522. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11523. {
  11524. feminine: {
  11525. height: math.unit(5, "feet"),
  11526. weight: math.unit(100, "lb"),
  11527. name: "Feminine",
  11528. image: {
  11529. source: "./media/characters/sammy-mouse/feminine.svg",
  11530. extra: 2526 / 2425,
  11531. bottom: 0.123
  11532. }
  11533. },
  11534. masculine: {
  11535. height: math.unit(5, "feet"),
  11536. weight: math.unit(100, "lb"),
  11537. name: "Masculine",
  11538. image: {
  11539. source: "./media/characters/sammy-mouse/masculine.svg",
  11540. extra: 2526 / 2425,
  11541. bottom: 0.123
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(5, "inches")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(5, "feet"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Macro",
  11557. height: math.unit(60, "feet")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(4, "feet"),
  11566. weight: math.unit(50, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/kole/front.svg",
  11570. extra: 1423 / 1303,
  11571. bottom: 0.025
  11572. }
  11573. },
  11574. back: {
  11575. height: math.unit(4, "feet"),
  11576. weight: math.unit(50, "lb"),
  11577. name: "Back",
  11578. image: {
  11579. source: "./media/characters/kole/back.svg",
  11580. extra: 1426 / 1280,
  11581. bottom: 0.02
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Normal",
  11588. height: math.unit(4, "feet"),
  11589. default: true
  11590. },
  11591. ]
  11592. ))
  11593. characterMakers.push(() => makeCharacter(
  11594. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11595. {
  11596. front: {
  11597. height: math.unit(2 + 6 / 12, "feet"),
  11598. weight: math.unit(20, "lb"),
  11599. name: "Front",
  11600. image: {
  11601. source: "./media/characters/rufran/front.svg",
  11602. extra: 2041 / 1839,
  11603. bottom: 0.055
  11604. }
  11605. },
  11606. back: {
  11607. height: math.unit(2 + 6 / 12, "feet"),
  11608. weight: math.unit(20, "lb"),
  11609. name: "Back",
  11610. image: {
  11611. source: "./media/characters/rufran/back.svg",
  11612. extra: 2054 / 1839,
  11613. bottom: 0.01
  11614. }
  11615. },
  11616. hand: {
  11617. height: math.unit(0.2166, "meters"),
  11618. name: "Hand",
  11619. image: {
  11620. source: "./media/characters/rufran/hand.svg"
  11621. }
  11622. },
  11623. foot: {
  11624. height: math.unit(0.185, "meters"),
  11625. name: "Foot",
  11626. image: {
  11627. source: "./media/characters/rufran/foot.svg"
  11628. }
  11629. },
  11630. },
  11631. [
  11632. {
  11633. name: "Micro",
  11634. height: math.unit(1, "inch")
  11635. },
  11636. {
  11637. name: "Normal",
  11638. height: math.unit(2 + 6 / 12, "feet"),
  11639. default: true
  11640. },
  11641. {
  11642. name: "Big",
  11643. height: math.unit(60, "feet")
  11644. },
  11645. {
  11646. name: "Macro",
  11647. height: math.unit(325, "feet")
  11648. },
  11649. ]
  11650. ))
  11651. characterMakers.push(() => makeCharacter(
  11652. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11653. {
  11654. front: {
  11655. height: math.unit(0.3, "meters"),
  11656. weight: math.unit(3.5, "kg"),
  11657. name: "Front",
  11658. image: {
  11659. source: "./media/characters/chip/front.svg",
  11660. extra: 748 / 674
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Micro",
  11667. height: math.unit(1, "inch"),
  11668. default: true
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11674. {
  11675. side: {
  11676. height: math.unit(2.3, "meters"),
  11677. weight: math.unit(3500, "lb"),
  11678. name: "Side",
  11679. image: {
  11680. source: "./media/characters/torvid/side.svg",
  11681. extra: 1972 / 722,
  11682. bottom: 0.035
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Normal",
  11689. height: math.unit(2.3, "meters"),
  11690. default: true
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(2, "meters"),
  11699. weight: math.unit(150.5, "kg"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/susan/front.svg",
  11703. extra: 693 / 635,
  11704. bottom: 0.05
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Megamacro",
  11711. height: math.unit(505, "miles"),
  11712. default: true
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11718. {
  11719. front: {
  11720. height: math.unit(6, "feet"),
  11721. weight: math.unit(150, "lb"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/raindrops/front.svg",
  11725. extra: 2655 / 2461,
  11726. bottom: 49 / 2705
  11727. }
  11728. },
  11729. back: {
  11730. height: math.unit(6, "feet"),
  11731. weight: math.unit(150, "lb"),
  11732. name: "Back",
  11733. image: {
  11734. source: "./media/characters/raindrops/back.svg",
  11735. extra: 2574 / 2400,
  11736. bottom: 65 / 2634
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Micro",
  11743. height: math.unit(6, "inches")
  11744. },
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(6 + 2 / 12, "feet")
  11748. },
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(131, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(15, "miles")
  11757. },
  11758. {
  11759. name: "Gigamacro",
  11760. height: math.unit(4000, "miles")
  11761. },
  11762. {
  11763. name: "Teramacro",
  11764. height: math.unit(315000, "miles")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(2.794, "meters"),
  11773. weight: math.unit(325, "kg"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/tezwa/front.svg",
  11777. extra: 2083 / 1906,
  11778. bottom: 0.031
  11779. }
  11780. },
  11781. foot: {
  11782. height: math.unit(0.687, "meters"),
  11783. name: "Foot",
  11784. image: {
  11785. source: "./media/characters/tezwa/foot.svg"
  11786. }
  11787. },
  11788. },
  11789. [
  11790. {
  11791. name: "Normal",
  11792. height: math.unit(9 + 2 / 12, "feet"),
  11793. default: true
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11799. {
  11800. front: {
  11801. height: math.unit(58, "feet"),
  11802. weight: math.unit(89000, "lb"),
  11803. name: "Front",
  11804. image: {
  11805. source: "./media/characters/typhus/front.svg",
  11806. extra: 816 / 800,
  11807. bottom: 0.065
  11808. }
  11809. },
  11810. },
  11811. [
  11812. {
  11813. name: "Macro",
  11814. height: math.unit(58, "feet"),
  11815. default: true
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(12, "feet"),
  11824. weight: math.unit(6, "tonnes"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/lyra-von-wulf/front.svg",
  11828. extra: 1,
  11829. bottom: 0.10
  11830. }
  11831. },
  11832. frontMecha: {
  11833. height: math.unit(12, "feet"),
  11834. weight: math.unit(12, "tonnes"),
  11835. name: "Front (Mecha)",
  11836. image: {
  11837. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11838. extra: 1,
  11839. bottom: 0.042
  11840. }
  11841. },
  11842. maw: {
  11843. height: math.unit(2.2, "feet"),
  11844. name: "Maw",
  11845. image: {
  11846. source: "./media/characters/lyra-von-wulf/maw.svg"
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(12, "feet"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Classic",
  11858. height: math.unit(50, "feet")
  11859. },
  11860. {
  11861. name: "Macro",
  11862. height: math.unit(500, "feet")
  11863. },
  11864. {
  11865. name: "Megamacro",
  11866. height: math.unit(1, "mile")
  11867. },
  11868. {
  11869. name: "Gigamacro",
  11870. height: math.unit(400, "miles")
  11871. },
  11872. {
  11873. name: "Teramacro",
  11874. height: math.unit(22000, "miles")
  11875. },
  11876. {
  11877. name: "Solarmacro",
  11878. height: math.unit(8600000, "miles")
  11879. },
  11880. {
  11881. name: "Galactic",
  11882. height: math.unit(1057000, "lightyears")
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(6 + 10 / 12, "feet"),
  11891. weight: math.unit(150, "lb"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/dixon/front.svg",
  11895. extra: 3361 / 3209,
  11896. bottom: 0.01
  11897. }
  11898. },
  11899. },
  11900. [
  11901. {
  11902. name: "Normal",
  11903. height: math.unit(6 + 10 / 12, "feet"),
  11904. default: true
  11905. },
  11906. {
  11907. name: "Big",
  11908. height: math.unit(12, "meters")
  11909. },
  11910. {
  11911. name: "Macro",
  11912. height: math.unit(500, "meters")
  11913. },
  11914. {
  11915. name: "Megamacro",
  11916. height: math.unit(2, "km")
  11917. },
  11918. ]
  11919. ))
  11920. characterMakers.push(() => makeCharacter(
  11921. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11922. {
  11923. front: {
  11924. height: math.unit(185, "cm"),
  11925. weight: math.unit(68, "kg"),
  11926. name: "Front",
  11927. image: {
  11928. source: "./media/characters/kauko/front.svg",
  11929. extra: 1455 / 1421,
  11930. bottom: 0.03
  11931. }
  11932. },
  11933. back: {
  11934. height: math.unit(185, "cm"),
  11935. weight: math.unit(68, "kg"),
  11936. name: "Back",
  11937. image: {
  11938. source: "./media/characters/kauko/back.svg",
  11939. extra: 1455 / 1421,
  11940. bottom: 0.004
  11941. }
  11942. },
  11943. },
  11944. [
  11945. {
  11946. name: "Normal",
  11947. height: math.unit(185, "cm"),
  11948. default: true
  11949. },
  11950. ]
  11951. ))
  11952. characterMakers.push(() => makeCharacter(
  11953. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11954. {
  11955. front: {
  11956. height: math.unit(6, "feet"),
  11957. weight: math.unit(150, "kg"),
  11958. name: "Front",
  11959. image: {
  11960. source: "./media/characters/varg/front.svg",
  11961. extra: 1108 / 1018,
  11962. bottom: 0.0375
  11963. }
  11964. },
  11965. },
  11966. [
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(5, "meters")
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(200, "meters")
  11974. },
  11975. {
  11976. name: "Megamacro",
  11977. height: math.unit(20, "kilometers")
  11978. },
  11979. {
  11980. name: "True Size",
  11981. height: math.unit(211, "km"),
  11982. default: true
  11983. },
  11984. {
  11985. name: "Gigamacro",
  11986. height: math.unit(1000, "km")
  11987. },
  11988. {
  11989. name: "Gigamacro+",
  11990. height: math.unit(8000, "km")
  11991. },
  11992. {
  11993. name: "Teramacro",
  11994. height: math.unit(1000000, "km")
  11995. },
  11996. ]
  11997. ))
  11998. characterMakers.push(() => makeCharacter(
  11999. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12000. {
  12001. front: {
  12002. height: math.unit(7 + 7 / 12, "feet"),
  12003. weight: math.unit(267, "lb"),
  12004. name: "Front",
  12005. image: {
  12006. source: "./media/characters/dayza/front.svg",
  12007. extra: 1262 / 1200,
  12008. bottom: 0.035
  12009. }
  12010. },
  12011. side: {
  12012. height: math.unit(7 + 7 / 12, "feet"),
  12013. weight: math.unit(267, "lb"),
  12014. name: "Side",
  12015. image: {
  12016. source: "./media/characters/dayza/side.svg",
  12017. extra: 1295 / 1245,
  12018. bottom: 0.05
  12019. }
  12020. },
  12021. back: {
  12022. height: math.unit(7 + 7 / 12, "feet"),
  12023. weight: math.unit(267, "lb"),
  12024. name: "Back",
  12025. image: {
  12026. source: "./media/characters/dayza/back.svg",
  12027. extra: 1241 / 1170
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Normal",
  12034. height: math.unit(7 + 7 / 12, "feet"),
  12035. default: true
  12036. },
  12037. {
  12038. name: "Macro",
  12039. height: math.unit(155, "feet")
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(6 + 5 / 12, "feet"),
  12048. weight: math.unit(160, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/xanthos/front.svg",
  12052. extra: 1,
  12053. bottom: 0.04
  12054. }
  12055. },
  12056. back: {
  12057. height: math.unit(6 + 5 / 12, "feet"),
  12058. weight: math.unit(160, "lb"),
  12059. name: "Back",
  12060. image: {
  12061. source: "./media/characters/xanthos/back.svg",
  12062. extra: 1,
  12063. bottom: 0.03
  12064. }
  12065. },
  12066. hand: {
  12067. height: math.unit(0.928, "feet"),
  12068. name: "Hand",
  12069. image: {
  12070. source: "./media/characters/xanthos/hand.svg"
  12071. }
  12072. },
  12073. foot: {
  12074. height: math.unit(1.286, "feet"),
  12075. name: "Foot",
  12076. image: {
  12077. source: "./media/characters/xanthos/foot.svg"
  12078. }
  12079. },
  12080. },
  12081. [
  12082. {
  12083. name: "Normal",
  12084. height: math.unit(6 + 5 / 12, "feet"),
  12085. default: true
  12086. },
  12087. {
  12088. name: "Normal+",
  12089. height: math.unit(6, "meters")
  12090. },
  12091. {
  12092. name: "Macro",
  12093. height: math.unit(40, "feet")
  12094. },
  12095. {
  12096. name: "Macro+",
  12097. height: math.unit(200, "meters")
  12098. },
  12099. {
  12100. name: "Megamacro",
  12101. height: math.unit(20, "km")
  12102. },
  12103. {
  12104. name: "Megamacro+",
  12105. height: math.unit(100, "km")
  12106. },
  12107. ]
  12108. ))
  12109. characterMakers.push(() => makeCharacter(
  12110. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12111. {
  12112. front: {
  12113. height: math.unit(6 + 3 / 12, "feet"),
  12114. weight: math.unit(215, "lb"),
  12115. name: "Front",
  12116. image: {
  12117. source: "./media/characters/grynn/front.svg",
  12118. extra: 4627 / 4209,
  12119. bottom: 0.047
  12120. }
  12121. },
  12122. },
  12123. [
  12124. {
  12125. name: "Micro",
  12126. height: math.unit(6, "inches")
  12127. },
  12128. {
  12129. name: "Normal",
  12130. height: math.unit(6 + 3 / 12, "feet"),
  12131. default: true
  12132. },
  12133. {
  12134. name: "Big",
  12135. height: math.unit(104, "feet")
  12136. },
  12137. {
  12138. name: "Macro",
  12139. height: math.unit(944, "feet")
  12140. },
  12141. {
  12142. name: "Macro+",
  12143. height: math.unit(9480, "feet")
  12144. },
  12145. {
  12146. name: "Megamacro",
  12147. height: math.unit(78752, "feet")
  12148. },
  12149. {
  12150. name: "Megamacro+",
  12151. height: math.unit(630128, "feet")
  12152. },
  12153. {
  12154. name: "Megamacro++",
  12155. height: math.unit(3150695, "feet")
  12156. },
  12157. ]
  12158. ))
  12159. characterMakers.push(() => makeCharacter(
  12160. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12161. {
  12162. front: {
  12163. height: math.unit(7 + 5 / 12, "feet"),
  12164. weight: math.unit(450, "lb"),
  12165. name: "Front",
  12166. image: {
  12167. source: "./media/characters/mocha-aura/front.svg",
  12168. extra: 1907 / 1817,
  12169. bottom: 0.04
  12170. }
  12171. },
  12172. back: {
  12173. height: math.unit(7 + 5 / 12, "feet"),
  12174. weight: math.unit(450, "lb"),
  12175. name: "Back",
  12176. image: {
  12177. source: "./media/characters/mocha-aura/back.svg",
  12178. extra: 1900 / 1825,
  12179. bottom: 0.045
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Nano",
  12186. height: math.unit(1, "nm")
  12187. },
  12188. {
  12189. name: "Megamicro",
  12190. height: math.unit(1, "mm")
  12191. },
  12192. {
  12193. name: "Micro",
  12194. height: math.unit(3, "inches")
  12195. },
  12196. {
  12197. name: "Normal",
  12198. height: math.unit(7 + 5 / 12, "feet"),
  12199. default: true
  12200. },
  12201. {
  12202. name: "Macro",
  12203. height: math.unit(30, "feet")
  12204. },
  12205. {
  12206. name: "Megamacro",
  12207. height: math.unit(3500, "feet")
  12208. },
  12209. {
  12210. name: "Teramacro",
  12211. height: math.unit(500000, "miles")
  12212. },
  12213. {
  12214. name: "Petamacro",
  12215. height: math.unit(50000000000000000, "parsecs")
  12216. },
  12217. ]
  12218. ))
  12219. characterMakers.push(() => makeCharacter(
  12220. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12221. {
  12222. front: {
  12223. height: math.unit(6, "feet"),
  12224. weight: math.unit(150, "lb"),
  12225. name: "Front",
  12226. image: {
  12227. source: "./media/characters/ilisha-devya/front.svg",
  12228. extra: 1,
  12229. bottom: 0.175
  12230. }
  12231. },
  12232. back: {
  12233. height: math.unit(6, "feet"),
  12234. weight: math.unit(150, "lb"),
  12235. name: "Back",
  12236. image: {
  12237. source: "./media/characters/ilisha-devya/back.svg",
  12238. extra: 1,
  12239. bottom: 0.015
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Macro",
  12246. height: math.unit(500, "feet"),
  12247. default: true
  12248. },
  12249. {
  12250. name: "Megamacro",
  12251. height: math.unit(10, "miles")
  12252. },
  12253. {
  12254. name: "Gigamacro",
  12255. height: math.unit(100000, "miles")
  12256. },
  12257. {
  12258. name: "Examacro",
  12259. height: math.unit(1e9, "lightyears")
  12260. },
  12261. {
  12262. name: "Omniversal",
  12263. height: math.unit(1e33, "lightyears")
  12264. },
  12265. {
  12266. name: "Beyond Infinite",
  12267. height: math.unit(1e100, "lightyears")
  12268. },
  12269. ]
  12270. ))
  12271. characterMakers.push(() => makeCharacter(
  12272. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12273. {
  12274. Side: {
  12275. height: math.unit(6, "feet"),
  12276. weight: math.unit(150, "lb"),
  12277. name: "Side",
  12278. image: {
  12279. source: "./media/characters/mira/side.svg",
  12280. extra: 900 / 799,
  12281. bottom: 0.02
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Human Size",
  12288. height: math.unit(6, "feet")
  12289. },
  12290. {
  12291. name: "Macro",
  12292. height: math.unit(100, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Megamacro",
  12297. height: math.unit(10, "miles")
  12298. },
  12299. {
  12300. name: "Gigamacro",
  12301. height: math.unit(25000, "miles")
  12302. },
  12303. {
  12304. name: "Teramacro",
  12305. height: math.unit(300, "AU")
  12306. },
  12307. {
  12308. name: "Full Size",
  12309. height: math.unit(4.5e10, "lightyears")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(6, "feet"),
  12318. weight: math.unit(150, "lb"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/holly/front.svg",
  12322. extra: 639 / 606
  12323. }
  12324. },
  12325. back: {
  12326. height: math.unit(6, "feet"),
  12327. weight: math.unit(150, "lb"),
  12328. name: "Back",
  12329. image: {
  12330. source: "./media/characters/holly/back.svg",
  12331. extra: 623 / 598
  12332. }
  12333. },
  12334. frontWorking: {
  12335. height: math.unit(6, "feet"),
  12336. weight: math.unit(150, "lb"),
  12337. name: "Front (Working)",
  12338. image: {
  12339. source: "./media/characters/holly/front-working.svg",
  12340. extra: 607 / 577,
  12341. bottom: 0.048
  12342. }
  12343. },
  12344. },
  12345. [
  12346. {
  12347. name: "Normal",
  12348. height: math.unit(12 + 3 / 12, "feet"),
  12349. default: true
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(6, "feet"),
  12358. weight: math.unit(150, "lb"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/porter/front.svg",
  12362. extra: 1,
  12363. bottom: 0.01
  12364. }
  12365. },
  12366. frontRobes: {
  12367. height: math.unit(6, "feet"),
  12368. weight: math.unit(150, "lb"),
  12369. name: "Front (Robes)",
  12370. image: {
  12371. source: "./media/characters/porter/front-robes.svg",
  12372. extra: 1.01,
  12373. bottom: 0.01
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(11 + 9 / 12, "feet"),
  12381. default: true
  12382. },
  12383. ]
  12384. ))
  12385. characterMakers.push(() => makeCharacter(
  12386. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12387. {
  12388. legendary: {
  12389. height: math.unit(6, "feet"),
  12390. weight: math.unit(150, "lb"),
  12391. name: "Legendary",
  12392. image: {
  12393. source: "./media/characters/lucy/legendary.svg",
  12394. extra: 1355 / 1100,
  12395. bottom: 0.045
  12396. }
  12397. },
  12398. },
  12399. [
  12400. {
  12401. name: "Legendary",
  12402. height: math.unit(86882 * 2, "miles"),
  12403. default: true
  12404. },
  12405. ]
  12406. ))
  12407. characterMakers.push(() => makeCharacter(
  12408. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12409. {
  12410. front: {
  12411. height: math.unit(6, "feet"),
  12412. weight: math.unit(150, "lb"),
  12413. name: "Front",
  12414. image: {
  12415. source: "./media/characters/drusilla/front.svg",
  12416. extra: 678 / 635,
  12417. bottom: 0.03
  12418. }
  12419. },
  12420. back: {
  12421. height: math.unit(6, "feet"),
  12422. weight: math.unit(150, "lb"),
  12423. name: "Back",
  12424. image: {
  12425. source: "./media/characters/drusilla/back.svg",
  12426. extra: 678 / 635,
  12427. bottom: 0.005
  12428. }
  12429. },
  12430. },
  12431. [
  12432. {
  12433. name: "Macro",
  12434. height: math.unit(100, "feet")
  12435. },
  12436. {
  12437. name: "Canon Height",
  12438. height: math.unit(2000, "feet"),
  12439. default: true
  12440. },
  12441. ]
  12442. ))
  12443. characterMakers.push(() => makeCharacter(
  12444. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12445. {
  12446. front: {
  12447. height: math.unit(6, "feet"),
  12448. weight: math.unit(180, "lb"),
  12449. name: "Front",
  12450. image: {
  12451. source: "./media/characters/renard-thatch/front.svg",
  12452. extra: 2411 / 2275,
  12453. bottom: 0.01
  12454. }
  12455. },
  12456. frontPosing: {
  12457. height: math.unit(6, "feet"),
  12458. weight: math.unit(180, "lb"),
  12459. name: "Front (Posing)",
  12460. image: {
  12461. source: "./media/characters/renard-thatch/front-posing.svg",
  12462. extra: 2381 / 2261,
  12463. bottom: 0.01
  12464. }
  12465. },
  12466. back: {
  12467. height: math.unit(6, "feet"),
  12468. weight: math.unit(180, "lb"),
  12469. name: "Back",
  12470. image: {
  12471. source: "./media/characters/renard-thatch/back.svg",
  12472. extra: 2428 / 2288
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Micro",
  12479. height: math.unit(3, "inches")
  12480. },
  12481. {
  12482. name: "Default",
  12483. height: math.unit(6, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Macro",
  12488. height: math.unit(75, "feet")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(1450, "feet"),
  12497. weight: math.unit(1.21e6, "tons"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/sekvra/front.svg",
  12501. extra: 1,
  12502. bottom: 0.03
  12503. }
  12504. },
  12505. frontClothed: {
  12506. height: math.unit(1450, "feet"),
  12507. weight: math.unit(1.21e6, "tons"),
  12508. name: "Front (Clothed)",
  12509. image: {
  12510. source: "./media/characters/sekvra/front-clothed.svg",
  12511. extra: 1,
  12512. bottom: 0.03
  12513. }
  12514. },
  12515. side: {
  12516. height: math.unit(1450, "feet"),
  12517. weight: math.unit(1.21e6, "tons"),
  12518. name: "Side",
  12519. image: {
  12520. source: "./media/characters/sekvra/side.svg",
  12521. extra: 1,
  12522. bottom: 0.025
  12523. }
  12524. },
  12525. back: {
  12526. height: math.unit(1450, "feet"),
  12527. weight: math.unit(1.21e6, "tons"),
  12528. name: "Back",
  12529. image: {
  12530. source: "./media/characters/sekvra/back.svg",
  12531. extra: 1,
  12532. bottom: 0.005
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Macro",
  12539. height: math.unit(1450, "feet"),
  12540. default: true
  12541. },
  12542. {
  12543. name: "Megamacro",
  12544. height: math.unit(15000, "feet")
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(150, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/carmine/front.svg",
  12557. extra: 1,
  12558. bottom: 0.035
  12559. }
  12560. },
  12561. frontArmor: {
  12562. height: math.unit(6, "feet"),
  12563. weight: math.unit(150, "lb"),
  12564. name: "Front (Armor)",
  12565. image: {
  12566. source: "./media/characters/carmine/front-armor.svg",
  12567. extra: 1,
  12568. bottom: 0.035
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Large",
  12575. height: math.unit(1, "mile")
  12576. },
  12577. {
  12578. name: "Huge",
  12579. height: math.unit(40, "miles"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Colossal",
  12584. height: math.unit(2500, "miles")
  12585. },
  12586. ]
  12587. ))
  12588. characterMakers.push(() => makeCharacter(
  12589. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12590. {
  12591. front: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(150, "lb"),
  12594. name: "Front",
  12595. image: {
  12596. source: "./media/characters/elyssia/front.svg",
  12597. extra: 2201 / 2035,
  12598. bottom: 0.05
  12599. }
  12600. },
  12601. frontClothed: {
  12602. height: math.unit(6, "feet"),
  12603. weight: math.unit(150, "lb"),
  12604. name: "Front (Clothed)",
  12605. image: {
  12606. source: "./media/characters/elyssia/front-clothed.svg",
  12607. extra: 2201 / 2035,
  12608. bottom: 0.05
  12609. }
  12610. },
  12611. back: {
  12612. height: math.unit(6, "feet"),
  12613. weight: math.unit(150, "lb"),
  12614. name: "Back",
  12615. image: {
  12616. source: "./media/characters/elyssia/back.svg",
  12617. extra: 2201 / 2035,
  12618. bottom: 0.013
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Smaller",
  12625. height: math.unit(150, "feet")
  12626. },
  12627. {
  12628. name: "Standard",
  12629. height: math.unit(1400, "feet"),
  12630. default: true
  12631. },
  12632. {
  12633. name: "Distracted",
  12634. height: math.unit(15000, "feet")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(7 + 4 / 12, "feet"),
  12643. weight: math.unit(500, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/geno-maxwell/front.svg",
  12647. extra: 2207 / 2040,
  12648. bottom: 0.015
  12649. }
  12650. },
  12651. },
  12652. [
  12653. {
  12654. name: "Micro",
  12655. height: math.unit(3, "inches")
  12656. },
  12657. {
  12658. name: "Normal",
  12659. height: math.unit(7 + 4 / 12, "feet"),
  12660. default: true
  12661. },
  12662. {
  12663. name: "Macro",
  12664. height: math.unit(220, "feet")
  12665. },
  12666. {
  12667. name: "Megamacro",
  12668. height: math.unit(11, "miles")
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(7 + 4 / 12, "feet"),
  12677. weight: math.unit(500, "lb"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/regena-maxwell/front.svg",
  12681. extra: 3115 / 2770,
  12682. bottom: 0.02
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Normal",
  12689. height: math.unit(7 + 4 / 12, "feet"),
  12690. default: true
  12691. },
  12692. {
  12693. name: "Macro",
  12694. height: math.unit(220, "feet")
  12695. },
  12696. {
  12697. name: "Megamacro",
  12698. height: math.unit(11, "miles")
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(150, "lb"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12711. extra: 860 / 690,
  12712. bottom: 0.03
  12713. }
  12714. },
  12715. },
  12716. [
  12717. {
  12718. name: "Normal",
  12719. height: math.unit(1.7, "meters"),
  12720. default: true
  12721. },
  12722. ]
  12723. ))
  12724. characterMakers.push(() => makeCharacter(
  12725. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12726. {
  12727. front: {
  12728. height: math.unit(6, "feet"),
  12729. weight: math.unit(150, "lb"),
  12730. name: "Front",
  12731. image: {
  12732. source: "./media/characters/quilly/front.svg",
  12733. extra: 890 / 776
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Gigamacro",
  12740. height: math.unit(404090, "miles"),
  12741. default: true
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12747. {
  12748. front: {
  12749. height: math.unit(7 + 8 / 12, "feet"),
  12750. weight: math.unit(350, "lb"),
  12751. name: "Front",
  12752. image: {
  12753. source: "./media/characters/tempest/front.svg",
  12754. extra: 1175 / 1086,
  12755. bottom: 0.02
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(7 + 8 / 12, "feet"),
  12763. default: true
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12769. {
  12770. side: {
  12771. height: math.unit(4 + 5 / 12, "feet"),
  12772. weight: math.unit(80, "lb"),
  12773. name: "Side",
  12774. image: {
  12775. source: "./media/characters/rodger/side.svg",
  12776. extra: 1235 / 1118
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Micro",
  12783. height: math.unit(1, "inch")
  12784. },
  12785. {
  12786. name: "Normal",
  12787. height: math.unit(4 + 5 / 12, "feet"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Macro",
  12792. height: math.unit(120, "feet")
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12798. {
  12799. front: {
  12800. height: math.unit(6, "feet"),
  12801. weight: math.unit(150, "lb"),
  12802. name: "Front",
  12803. image: {
  12804. source: "./media/characters/danyel/front.svg",
  12805. extra: 1185 / 1123,
  12806. bottom: 0.05
  12807. }
  12808. },
  12809. },
  12810. [
  12811. {
  12812. name: "Shrunken",
  12813. height: math.unit(0.5, "mm")
  12814. },
  12815. {
  12816. name: "Micro",
  12817. height: math.unit(1, "mm"),
  12818. default: true
  12819. },
  12820. {
  12821. name: "Upsized",
  12822. height: math.unit(5 + 5 / 12, "feet")
  12823. },
  12824. ]
  12825. ))
  12826. characterMakers.push(() => makeCharacter(
  12827. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12828. {
  12829. front: {
  12830. height: math.unit(5 + 6 / 12, "feet"),
  12831. weight: math.unit(200, "lb"),
  12832. name: "Front",
  12833. image: {
  12834. source: "./media/characters/vivian-bijoux/front.svg",
  12835. extra: 1,
  12836. bottom: 0.072
  12837. }
  12838. },
  12839. },
  12840. [
  12841. {
  12842. name: "Normal",
  12843. height: math.unit(5 + 6 / 12, "feet"),
  12844. default: true
  12845. },
  12846. {
  12847. name: "Bad Dream",
  12848. height: math.unit(500, "feet")
  12849. },
  12850. {
  12851. name: "Nightmare",
  12852. height: math.unit(500, "miles")
  12853. },
  12854. ]
  12855. ))
  12856. characterMakers.push(() => makeCharacter(
  12857. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12858. {
  12859. front: {
  12860. height: math.unit(6 + 1 / 12, "feet"),
  12861. weight: math.unit(260, "lb"),
  12862. name: "Front",
  12863. image: {
  12864. source: "./media/characters/zeta/front.svg",
  12865. extra: 1968 / 1889,
  12866. bottom: 0.06
  12867. }
  12868. },
  12869. back: {
  12870. height: math.unit(6 + 1 / 12, "feet"),
  12871. weight: math.unit(260, "lb"),
  12872. name: "Back",
  12873. image: {
  12874. source: "./media/characters/zeta/back.svg",
  12875. extra: 1944 / 1858,
  12876. bottom: 0.03
  12877. }
  12878. },
  12879. hand: {
  12880. height: math.unit(1.112, "feet"),
  12881. name: "Hand",
  12882. image: {
  12883. source: "./media/characters/zeta/hand.svg"
  12884. }
  12885. },
  12886. foot: {
  12887. height: math.unit(1.48, "feet"),
  12888. name: "Foot",
  12889. image: {
  12890. source: "./media/characters/zeta/foot.svg"
  12891. }
  12892. },
  12893. },
  12894. [
  12895. {
  12896. name: "Micro",
  12897. height: math.unit(6, "inches")
  12898. },
  12899. {
  12900. name: "Normal",
  12901. height: math.unit(6 + 1 / 12, "feet"),
  12902. default: true
  12903. },
  12904. {
  12905. name: "Macro",
  12906. height: math.unit(20, "feet")
  12907. },
  12908. ]
  12909. ))
  12910. characterMakers.push(() => makeCharacter(
  12911. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12912. {
  12913. front: {
  12914. height: math.unit(6, "feet"),
  12915. weight: math.unit(150, "lb"),
  12916. name: "Front",
  12917. image: {
  12918. source: "./media/characters/jamie-larsen/front.svg",
  12919. extra: 962 / 933,
  12920. bottom: 0.02
  12921. }
  12922. },
  12923. back: {
  12924. height: math.unit(6, "feet"),
  12925. weight: math.unit(150, "lb"),
  12926. name: "Back",
  12927. image: {
  12928. source: "./media/characters/jamie-larsen/back.svg",
  12929. extra: 997 / 946
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Macro",
  12936. height: math.unit(28 + 7 / 12, "feet"),
  12937. default: true
  12938. },
  12939. {
  12940. name: "Macro+",
  12941. height: math.unit(180, "feet")
  12942. },
  12943. {
  12944. name: "Megamacro",
  12945. height: math.unit(10, "miles")
  12946. },
  12947. {
  12948. name: "Gigamacro",
  12949. height: math.unit(200000, "miles")
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12955. {
  12956. front: {
  12957. height: math.unit(6, "feet"),
  12958. weight: math.unit(120, "lb"),
  12959. name: "Front",
  12960. image: {
  12961. source: "./media/characters/vance/front.svg",
  12962. extra: 1980 / 1890,
  12963. bottom: 0.09
  12964. }
  12965. },
  12966. back: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(120, "lb"),
  12969. name: "Back",
  12970. image: {
  12971. source: "./media/characters/vance/back.svg",
  12972. extra: 2081 / 1994,
  12973. bottom: 0.014
  12974. }
  12975. },
  12976. hand: {
  12977. height: math.unit(0.88, "feet"),
  12978. name: "Hand",
  12979. image: {
  12980. source: "./media/characters/vance/hand.svg"
  12981. }
  12982. },
  12983. foot: {
  12984. height: math.unit(0.64, "feet"),
  12985. name: "Foot",
  12986. image: {
  12987. source: "./media/characters/vance/foot.svg"
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Small",
  12994. height: math.unit(90, "feet"),
  12995. default: true
  12996. },
  12997. {
  12998. name: "Macro",
  12999. height: math.unit(100, "meters")
  13000. },
  13001. {
  13002. name: "Megamacro",
  13003. height: math.unit(15, "miles")
  13004. },
  13005. ]
  13006. ))
  13007. characterMakers.push(() => makeCharacter(
  13008. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13009. {
  13010. front: {
  13011. height: math.unit(6, "feet"),
  13012. weight: math.unit(180, "lb"),
  13013. name: "Front",
  13014. image: {
  13015. source: "./media/characters/xochitl/front.svg",
  13016. extra: 2297 / 2261,
  13017. bottom: 0.065
  13018. }
  13019. },
  13020. back: {
  13021. height: math.unit(6, "feet"),
  13022. weight: math.unit(180, "lb"),
  13023. name: "Back",
  13024. image: {
  13025. source: "./media/characters/xochitl/back.svg",
  13026. extra: 2386 / 2354,
  13027. bottom: 0.01
  13028. }
  13029. },
  13030. foot: {
  13031. height: math.unit(6 / 5 * 1.15, "feet"),
  13032. weight: math.unit(150, "lb"),
  13033. name: "Foot",
  13034. image: {
  13035. source: "./media/characters/xochitl/foot.svg"
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Macro",
  13042. height: math.unit(80, "feet")
  13043. },
  13044. {
  13045. name: "Macro+",
  13046. height: math.unit(400, "feet"),
  13047. default: true
  13048. },
  13049. {
  13050. name: "Gigamacro",
  13051. height: math.unit(80000, "miles")
  13052. },
  13053. {
  13054. name: "Gigamacro+",
  13055. height: math.unit(400000, "miles")
  13056. },
  13057. {
  13058. name: "Teramacro",
  13059. height: math.unit(300, "AU")
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/vincent/front.svg",
  13072. extra: 1130 / 1080,
  13073. bottom: 0.055
  13074. }
  13075. },
  13076. beak: {
  13077. height: math.unit(6 * 0.1, "feet"),
  13078. name: "Beak",
  13079. image: {
  13080. source: "./media/characters/vincent/beak.svg"
  13081. }
  13082. },
  13083. hand: {
  13084. height: math.unit(6 * 0.85, "feet"),
  13085. weight: math.unit(150, "lb"),
  13086. name: "Hand",
  13087. image: {
  13088. source: "./media/characters/vincent/hand.svg"
  13089. }
  13090. },
  13091. foot: {
  13092. height: math.unit(6 * 0.19, "feet"),
  13093. weight: math.unit(150, "lb"),
  13094. name: "Foot",
  13095. image: {
  13096. source: "./media/characters/vincent/foot.svg"
  13097. }
  13098. },
  13099. },
  13100. [
  13101. {
  13102. name: "Base",
  13103. height: math.unit(6 + 5 / 12, "feet"),
  13104. default: true
  13105. },
  13106. {
  13107. name: "Macro",
  13108. height: math.unit(300, "feet")
  13109. },
  13110. {
  13111. name: "Megamacro",
  13112. height: math.unit(2, "miles")
  13113. },
  13114. {
  13115. name: "Gigamacro",
  13116. height: math.unit(1000, "miles")
  13117. },
  13118. ]
  13119. ))
  13120. characterMakers.push(() => makeCharacter(
  13121. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13122. {
  13123. front: {
  13124. height: math.unit(6 + 2 / 12, "feet"),
  13125. weight: math.unit(265, "lb"),
  13126. name: "Front",
  13127. image: {
  13128. source: "./media/characters/jay/front.svg",
  13129. extra: 1510 / 1430,
  13130. bottom: 0.042
  13131. }
  13132. },
  13133. back: {
  13134. height: math.unit(6 + 2 / 12, "feet"),
  13135. weight: math.unit(265, "lb"),
  13136. name: "Back",
  13137. image: {
  13138. source: "./media/characters/jay/back.svg",
  13139. extra: 1510 / 1430,
  13140. bottom: 0.025
  13141. }
  13142. },
  13143. clothed: {
  13144. height: math.unit(6 + 2 / 12, "feet"),
  13145. weight: math.unit(265, "lb"),
  13146. name: "Front (Clothed)",
  13147. image: {
  13148. source: "./media/characters/jay/clothed.svg",
  13149. extra: 744 / 699,
  13150. bottom: 0.043
  13151. }
  13152. },
  13153. head: {
  13154. height: math.unit(1.772, "feet"),
  13155. name: "Head",
  13156. image: {
  13157. source: "./media/characters/jay/head.svg"
  13158. }
  13159. },
  13160. sizeRay: {
  13161. height: math.unit(1.331, "feet"),
  13162. name: "Size Ray",
  13163. image: {
  13164. source: "./media/characters/jay/size-ray.svg"
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Micro",
  13171. height: math.unit(1, "inch")
  13172. },
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(6 + 2 / 12, "feet"),
  13176. default: true
  13177. },
  13178. {
  13179. name: "Macro",
  13180. height: math.unit(1, "mile")
  13181. },
  13182. {
  13183. name: "Megamacro",
  13184. height: math.unit(100, "miles")
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13190. {
  13191. front: {
  13192. height: math.unit(2, "meters"),
  13193. weight: math.unit(500, "kg"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/coatl/front.svg",
  13197. extra: 3948 / 3500,
  13198. bottom: 0.082
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Normal",
  13205. height: math.unit(4, "meters")
  13206. },
  13207. {
  13208. name: "Macro",
  13209. height: math.unit(100, "meters"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Macro+",
  13214. height: math.unit(300, "meters")
  13215. },
  13216. {
  13217. name: "Megamacro",
  13218. height: math.unit(3, "gigameters")
  13219. },
  13220. {
  13221. name: "Megamacro+",
  13222. height: math.unit(300, "terameters")
  13223. },
  13224. {
  13225. name: "Megamacro++",
  13226. height: math.unit(3, "lightyears")
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(6, "feet"),
  13235. weight: math.unit(50, "kg"),
  13236. name: "front",
  13237. image: {
  13238. source: "./media/characters/shiroryu/front.svg",
  13239. extra: 1990 / 1935
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Mortal Mingling",
  13246. height: math.unit(3, "meters")
  13247. },
  13248. {
  13249. name: "Kaiju-ish",
  13250. height: math.unit(250, "meters")
  13251. },
  13252. {
  13253. name: "Somewhat Godly",
  13254. height: math.unit(400, "km"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Planetary",
  13259. height: math.unit(300, "megameters")
  13260. },
  13261. {
  13262. name: "Galaxy-dwarfing",
  13263. height: math.unit(450, "kiloparsecs")
  13264. },
  13265. {
  13266. name: "Universe Eater",
  13267. height: math.unit(150, "gigaparsecs")
  13268. },
  13269. {
  13270. name: "Almost Immeasurable",
  13271. height: math.unit(1.3e266, "yottaparsecs")
  13272. },
  13273. ]
  13274. ))
  13275. characterMakers.push(() => makeCharacter(
  13276. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13277. {
  13278. front: {
  13279. height: math.unit(6, "feet"),
  13280. weight: math.unit(150, "lb"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/umeko/front.svg",
  13284. extra: 1,
  13285. bottom: 0.019
  13286. }
  13287. },
  13288. frontArmored: {
  13289. height: math.unit(6, "feet"),
  13290. weight: math.unit(150, "lb"),
  13291. name: "Front (Armored)",
  13292. image: {
  13293. source: "./media/characters/umeko/front-armored.svg",
  13294. extra: 1,
  13295. bottom: 0.021
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Macro",
  13302. height: math.unit(220, "feet"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Guardian Dragon",
  13307. height: math.unit(50, "miles")
  13308. },
  13309. {
  13310. name: "Cosmic",
  13311. height: math.unit(800000, "miles")
  13312. },
  13313. ]
  13314. ))
  13315. characterMakers.push(() => makeCharacter(
  13316. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13317. {
  13318. front: {
  13319. height: math.unit(6, "feet"),
  13320. weight: math.unit(150, "lb"),
  13321. name: "Front",
  13322. image: {
  13323. source: "./media/characters/cassidy/front.svg",
  13324. extra: 1,
  13325. bottom: 0.043
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Canon Height",
  13332. height: math.unit(120, "feet"),
  13333. default: true
  13334. },
  13335. {
  13336. name: "Macro+",
  13337. height: math.unit(400, "feet")
  13338. },
  13339. {
  13340. name: "Macro++",
  13341. height: math.unit(4000, "feet")
  13342. },
  13343. {
  13344. name: "Megamacro",
  13345. height: math.unit(3, "miles")
  13346. },
  13347. ]
  13348. ))
  13349. characterMakers.push(() => makeCharacter(
  13350. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13351. {
  13352. front: {
  13353. height: math.unit(6, "feet"),
  13354. weight: math.unit(150, "lb"),
  13355. name: "Front",
  13356. image: {
  13357. source: "./media/characters/isaac/front.svg",
  13358. extra: 896 / 815,
  13359. bottom: 0.11
  13360. }
  13361. },
  13362. },
  13363. [
  13364. {
  13365. name: "Human Size",
  13366. height: math.unit(8, "feet"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(400, "feet")
  13372. },
  13373. {
  13374. name: "Megamacro",
  13375. height: math.unit(50, "miles")
  13376. },
  13377. {
  13378. name: "Canon Height",
  13379. height: math.unit(200, "AU")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(6, "feet"),
  13388. weight: math.unit(72, "kg"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/sleekit/front.svg",
  13392. extra: 4693 / 4487,
  13393. bottom: 0.012
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Minimum Height",
  13400. height: math.unit(10, "meters")
  13401. },
  13402. {
  13403. name: "Smaller",
  13404. height: math.unit(25, "meters")
  13405. },
  13406. {
  13407. name: "Larger",
  13408. height: math.unit(38, "meters"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Maximum height",
  13413. height: math.unit(100, "meters")
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(150, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/nillia/front.svg",
  13426. extra: 2195 / 2037,
  13427. bottom: 0.005
  13428. }
  13429. },
  13430. back: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Back",
  13434. image: {
  13435. source: "./media/characters/nillia/back.svg",
  13436. extra: 2195 / 2037,
  13437. bottom: 0.005
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Canon Height",
  13444. height: math.unit(489, "feet"),
  13445. default: true
  13446. }
  13447. ]
  13448. ))
  13449. characterMakers.push(() => makeCharacter(
  13450. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13451. {
  13452. front: {
  13453. height: math.unit(6, "feet"),
  13454. weight: math.unit(150, "lb"),
  13455. name: "Front",
  13456. image: {
  13457. source: "./media/characters/mesmyriza/front.svg",
  13458. extra: 2067 / 1784,
  13459. bottom: 0.035
  13460. }
  13461. },
  13462. foot: {
  13463. height: math.unit(6 / (250 / 35), "feet"),
  13464. name: "Foot",
  13465. image: {
  13466. source: "./media/characters/mesmyriza/foot.svg"
  13467. }
  13468. },
  13469. },
  13470. [
  13471. {
  13472. name: "Macro",
  13473. height: math.unit(457, "meters"),
  13474. default: true
  13475. },
  13476. {
  13477. name: "Megamacro",
  13478. height: math.unit(8, "megameters")
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13484. {
  13485. front: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(250, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/saudade/front.svg",
  13491. extra: 1172 / 1139,
  13492. bottom: 0.035
  13493. }
  13494. },
  13495. },
  13496. [
  13497. {
  13498. name: "Micro",
  13499. height: math.unit(3, "inches")
  13500. },
  13501. {
  13502. name: "Normal",
  13503. height: math.unit(6, "feet"),
  13504. default: true
  13505. },
  13506. {
  13507. name: "Macro",
  13508. height: math.unit(50, "feet")
  13509. },
  13510. {
  13511. name: "Megamacro",
  13512. height: math.unit(2800, "feet")
  13513. },
  13514. ]
  13515. ))
  13516. characterMakers.push(() => makeCharacter(
  13517. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13518. {
  13519. front: {
  13520. height: math.unit(5 + 4 / 12, "feet"),
  13521. weight: math.unit(100, "lb"),
  13522. name: "Front",
  13523. image: {
  13524. source: "./media/characters/keireer/front.svg",
  13525. extra: 716 / 666,
  13526. bottom: 0.05
  13527. }
  13528. },
  13529. },
  13530. [
  13531. {
  13532. name: "Normal",
  13533. height: math.unit(5 + 4 / 12, "feet"),
  13534. default: true
  13535. },
  13536. ]
  13537. ))
  13538. characterMakers.push(() => makeCharacter(
  13539. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13540. {
  13541. front: {
  13542. height: math.unit(6, "feet"),
  13543. weight: math.unit(90, "kg"),
  13544. name: "Front",
  13545. image: {
  13546. source: "./media/characters/mirja/front.svg",
  13547. extra: 1789 / 1683,
  13548. bottom: 0.05
  13549. }
  13550. },
  13551. frontDressed: {
  13552. height: math.unit(6, "feet"),
  13553. weight: math.unit(90, "lb"),
  13554. name: "Front (Dressed)",
  13555. image: {
  13556. source: "./media/characters/mirja/front-dressed.svg",
  13557. extra: 1789 / 1683,
  13558. bottom: 0.05
  13559. }
  13560. },
  13561. back: {
  13562. height: math.unit(6, "feet"),
  13563. weight: math.unit(90, "lb"),
  13564. name: "Back",
  13565. image: {
  13566. source: "./media/characters/mirja/back.svg",
  13567. extra: 953 / 917,
  13568. bottom: 0.017
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "\"Incognito\"",
  13575. height: math.unit(3, "meters")
  13576. },
  13577. {
  13578. name: "Strolling Size",
  13579. height: math.unit(15, "km")
  13580. },
  13581. {
  13582. name: "Larger Strolling Size",
  13583. height: math.unit(400, "km")
  13584. },
  13585. {
  13586. name: "Preferred Size",
  13587. height: math.unit(5000, "km")
  13588. },
  13589. {
  13590. name: "True Size",
  13591. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13592. default: true
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(15, "feet"),
  13601. weight: math.unit(880, "kg"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/nightraver/front.svg",
  13605. extra: 2444 / 2160,
  13606. bottom: 0.027
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(15, "feet"),
  13611. weight: math.unit(880, "kg"),
  13612. name: "Back",
  13613. image: {
  13614. source: "./media/characters/nightraver/back.svg",
  13615. extra: 2309 / 2180,
  13616. bottom: 0.005
  13617. }
  13618. },
  13619. sole: {
  13620. height: math.unit(2.878, "feet"),
  13621. name: "Sole",
  13622. image: {
  13623. source: "./media/characters/nightraver/sole.svg"
  13624. }
  13625. },
  13626. foot: {
  13627. height: math.unit(2.285, "feet"),
  13628. name: "Foot",
  13629. image: {
  13630. source: "./media/characters/nightraver/foot.svg"
  13631. }
  13632. },
  13633. maw: {
  13634. height: math.unit(2.67, "feet"),
  13635. name: "Maw",
  13636. image: {
  13637. source: "./media/characters/nightraver/maw.svg"
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Micro",
  13644. height: math.unit(1, "cm")
  13645. },
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(15, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(300, "feet")
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(300, "miles")
  13658. },
  13659. {
  13660. name: "Gigamacro",
  13661. height: math.unit(10000, "miles")
  13662. },
  13663. ]
  13664. ))
  13665. characterMakers.push(() => makeCharacter(
  13666. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13667. {
  13668. side: {
  13669. height: math.unit(2, "inches"),
  13670. weight: math.unit(5, "grams"),
  13671. name: "Side",
  13672. image: {
  13673. source: "./media/characters/arc/side.svg"
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Micro",
  13680. height: math.unit(2, "inches"),
  13681. default: true
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(1.1938, "meters"),
  13690. weight: math.unit(54, "kg"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/nebula-shahar/front.svg",
  13694. extra: 1642 / 1436,
  13695. bottom: 0.06
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Megamicro",
  13702. height: math.unit(0.3, "mm")
  13703. },
  13704. {
  13705. name: "Micro",
  13706. height: math.unit(3, "cm")
  13707. },
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(138, "cm"),
  13711. default: true
  13712. },
  13713. {
  13714. name: "Macro",
  13715. height: math.unit(30, "m")
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13721. {
  13722. front: {
  13723. height: math.unit(5.24, "feet"),
  13724. weight: math.unit(150, "lb"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/shayla/front.svg",
  13728. extra: 1512 / 1414,
  13729. bottom: 0.01
  13730. }
  13731. },
  13732. back: {
  13733. height: math.unit(5.24, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Back",
  13736. image: {
  13737. source: "./media/characters/shayla/back.svg",
  13738. extra: 1512 / 1414
  13739. }
  13740. },
  13741. hand: {
  13742. height: math.unit(0.7781496062992126, "feet"),
  13743. name: "Hand",
  13744. image: {
  13745. source: "./media/characters/shayla/hand.svg"
  13746. }
  13747. },
  13748. foot: {
  13749. height: math.unit(1.4206036745406823, "feet"),
  13750. name: "Foot",
  13751. image: {
  13752. source: "./media/characters/shayla/foot.svg"
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Micro",
  13759. height: math.unit(0.32, "feet")
  13760. },
  13761. {
  13762. name: "Normal",
  13763. height: math.unit(5.24, "feet"),
  13764. default: true
  13765. },
  13766. {
  13767. name: "Macro",
  13768. height: math.unit(492.12, "feet")
  13769. },
  13770. {
  13771. name: "Megamacro",
  13772. height: math.unit(186.41, "miles")
  13773. },
  13774. ]
  13775. ))
  13776. characterMakers.push(() => makeCharacter(
  13777. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13778. {
  13779. front: {
  13780. height: math.unit(2.2, "m"),
  13781. weight: math.unit(120, "kg"),
  13782. name: "Front",
  13783. image: {
  13784. source: "./media/characters/pia-jr/front.svg",
  13785. extra: 1000 / 970,
  13786. bottom: 0.035
  13787. }
  13788. },
  13789. hand: {
  13790. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13791. name: "Hand",
  13792. image: {
  13793. source: "./media/characters/pia-jr/hand.svg"
  13794. }
  13795. },
  13796. paw: {
  13797. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13798. name: "Paw",
  13799. image: {
  13800. source: "./media/characters/pia-jr/paw.svg"
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Micro",
  13807. height: math.unit(1.2, "cm")
  13808. },
  13809. {
  13810. name: "Normal",
  13811. height: math.unit(2.2, "m"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Macro",
  13816. height: math.unit(180, "m")
  13817. },
  13818. {
  13819. name: "Megamacro",
  13820. height: math.unit(420, "km")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(2, "m"),
  13829. weight: math.unit(115, "kg"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/pia-sr/front.svg",
  13833. extra: 760 / 730,
  13834. bottom: 0.015
  13835. }
  13836. },
  13837. back: {
  13838. height: math.unit(2, "m"),
  13839. weight: math.unit(115, "kg"),
  13840. name: "Back",
  13841. image: {
  13842. source: "./media/characters/pia-sr/back.svg",
  13843. extra: 760 / 730,
  13844. bottom: 0.01
  13845. }
  13846. },
  13847. hand: {
  13848. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13849. name: "Hand",
  13850. image: {
  13851. source: "./media/characters/pia-sr/hand.svg"
  13852. }
  13853. },
  13854. foot: {
  13855. height: math.unit(1.83, "feet"),
  13856. name: "Foot",
  13857. image: {
  13858. source: "./media/characters/pia-sr/foot.svg"
  13859. }
  13860. },
  13861. },
  13862. [
  13863. {
  13864. name: "Micro",
  13865. height: math.unit(88, "mm")
  13866. },
  13867. {
  13868. name: "Normal",
  13869. height: math.unit(2, "m"),
  13870. default: true
  13871. },
  13872. {
  13873. name: "Macro",
  13874. height: math.unit(200, "m")
  13875. },
  13876. {
  13877. name: "Megamacro",
  13878. height: math.unit(420, "km")
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13884. {
  13885. front: {
  13886. height: math.unit(8 + 2 / 12, "feet"),
  13887. weight: math.unit(300, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/kibibyte/front.svg",
  13891. extra: 2221 / 2098,
  13892. bottom: 0.04
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Normal",
  13899. height: math.unit(8 + 2 / 12, "feet"),
  13900. default: true
  13901. },
  13902. {
  13903. name: "Socialable Macro",
  13904. height: math.unit(50, "feet")
  13905. },
  13906. {
  13907. name: "Macro",
  13908. height: math.unit(300, "feet")
  13909. },
  13910. {
  13911. name: "Megamacro",
  13912. height: math.unit(500, "miles")
  13913. },
  13914. ]
  13915. ))
  13916. characterMakers.push(() => makeCharacter(
  13917. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13918. {
  13919. front: {
  13920. height: math.unit(6, "feet"),
  13921. weight: math.unit(150, "lb"),
  13922. name: "Front",
  13923. image: {
  13924. source: "./media/characters/felix/front.svg",
  13925. extra: 762 / 722,
  13926. bottom: 0.02
  13927. }
  13928. },
  13929. frontClothed: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(150, "lb"),
  13932. name: "Front (Clothed)",
  13933. image: {
  13934. source: "./media/characters/felix/front-clothed.svg",
  13935. extra: 762 / 722,
  13936. bottom: 0.02
  13937. }
  13938. },
  13939. },
  13940. [
  13941. {
  13942. name: "Normal",
  13943. height: math.unit(6 + 8 / 12, "feet"),
  13944. default: true
  13945. },
  13946. {
  13947. name: "Macro",
  13948. height: math.unit(2600, "feet")
  13949. },
  13950. {
  13951. name: "Megamacro",
  13952. height: math.unit(450, "miles")
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(6 + 1 / 12, "feet"),
  13961. weight: math.unit(250, "lb"),
  13962. name: "Front",
  13963. image: {
  13964. source: "./media/characters/tobo/front.svg",
  13965. extra: 608 / 586,
  13966. bottom: 0.023
  13967. }
  13968. },
  13969. back: {
  13970. height: math.unit(6 + 1 / 12, "feet"),
  13971. weight: math.unit(250, "lb"),
  13972. name: "Back",
  13973. image: {
  13974. source: "./media/characters/tobo/back.svg",
  13975. extra: 608 / 586
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "Nano",
  13982. height: math.unit(2, "nm")
  13983. },
  13984. {
  13985. name: "Megamicro",
  13986. height: math.unit(0.1, "mm")
  13987. },
  13988. {
  13989. name: "Micro",
  13990. height: math.unit(1, "inch"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Human-sized",
  13995. height: math.unit(6 + 1 / 12, "feet")
  13996. },
  13997. {
  13998. name: "Macro",
  13999. height: math.unit(250, "feet")
  14000. },
  14001. {
  14002. name: "Megamacro",
  14003. height: math.unit(75, "miles")
  14004. },
  14005. {
  14006. name: "Texas-sized",
  14007. height: math.unit(750, "miles")
  14008. },
  14009. {
  14010. name: "Teramacro",
  14011. height: math.unit(50000, "miles")
  14012. },
  14013. ]
  14014. ))
  14015. characterMakers.push(() => makeCharacter(
  14016. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14017. {
  14018. front: {
  14019. height: math.unit(6, "feet"),
  14020. weight: math.unit(269, "lb"),
  14021. name: "Front",
  14022. image: {
  14023. source: "./media/characters/danny-kapowsky/front.svg",
  14024. extra: 766 / 736,
  14025. bottom: 0.044
  14026. }
  14027. },
  14028. back: {
  14029. height: math.unit(6, "feet"),
  14030. weight: math.unit(269, "lb"),
  14031. name: "Back",
  14032. image: {
  14033. source: "./media/characters/danny-kapowsky/back.svg",
  14034. extra: 797 / 760,
  14035. bottom: 0.025
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Macro",
  14042. height: math.unit(150, "feet"),
  14043. default: true
  14044. },
  14045. {
  14046. name: "Macro+",
  14047. height: math.unit(200, "feet")
  14048. },
  14049. {
  14050. name: "Macro++",
  14051. height: math.unit(300, "feet")
  14052. },
  14053. {
  14054. name: "Macro+++",
  14055. height: math.unit(400, "feet")
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14061. {
  14062. side: {
  14063. height: math.unit(6, "feet"),
  14064. weight: math.unit(170, "lb"),
  14065. name: "Side",
  14066. image: {
  14067. source: "./media/characters/finn/side.svg",
  14068. extra: 1953 / 1807,
  14069. bottom: 0.057
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Megamacro",
  14076. height: math.unit(14445, "feet"),
  14077. default: true
  14078. },
  14079. ]
  14080. ))
  14081. characterMakers.push(() => makeCharacter(
  14082. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14083. {
  14084. front: {
  14085. height: math.unit(5 + 6 / 12, "feet"),
  14086. weight: math.unit(125, "lb"),
  14087. name: "Front",
  14088. image: {
  14089. source: "./media/characters/roy/front.svg",
  14090. extra: 1,
  14091. bottom: 0.11
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Micro",
  14098. height: math.unit(3, "inches"),
  14099. default: true
  14100. },
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(5 + 6 / 12, "feet")
  14104. },
  14105. {
  14106. name: "Lesser Macro",
  14107. height: math.unit(60, "feet")
  14108. },
  14109. {
  14110. name: "Greater Macro",
  14111. height: math.unit(120, "feet")
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(6, "feet"),
  14120. weight: math.unit(100, "lb"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/aevsivs/front.svg",
  14124. extra: 1,
  14125. bottom: 0.03
  14126. }
  14127. },
  14128. back: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(100, "lb"),
  14131. name: "Back",
  14132. image: {
  14133. source: "./media/characters/aevsivs/back.svg"
  14134. }
  14135. },
  14136. },
  14137. [
  14138. {
  14139. name: "Micro",
  14140. height: math.unit(2, "inches"),
  14141. default: true
  14142. },
  14143. {
  14144. name: "Normal",
  14145. height: math.unit(5, "feet")
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14151. {
  14152. front: {
  14153. height: math.unit(5 + 7 / 12, "feet"),
  14154. weight: math.unit(159, "lb"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/hildegard/front.svg",
  14158. extra: 289 / 269,
  14159. bottom: 7.63 / 297.8
  14160. }
  14161. },
  14162. back: {
  14163. height: math.unit(5 + 7 / 12, "feet"),
  14164. weight: math.unit(159, "lb"),
  14165. name: "Back",
  14166. image: {
  14167. source: "./media/characters/hildegard/back.svg",
  14168. extra: 280 / 260,
  14169. bottom: 2.3 / 282
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Normal",
  14176. height: math.unit(5 + 7 / 12, "feet"),
  14177. default: true
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14183. {
  14184. bernard: {
  14185. height: math.unit(2 + 7 / 12, "feet"),
  14186. weight: math.unit(66, "lb"),
  14187. name: "Bernard",
  14188. rename: true,
  14189. image: {
  14190. source: "./media/characters/bernard-wilder/bernard.svg",
  14191. extra: 192 / 128,
  14192. bottom: 0.05
  14193. }
  14194. },
  14195. wilder: {
  14196. height: math.unit(5 + 8 / 12, "feet"),
  14197. weight: math.unit(143, "lb"),
  14198. name: "Wilder",
  14199. rename: true,
  14200. image: {
  14201. source: "./media/characters/bernard-wilder/wilder.svg",
  14202. extra: 361 / 312,
  14203. bottom: 0.02
  14204. }
  14205. },
  14206. },
  14207. [
  14208. {
  14209. name: "Normal",
  14210. height: math.unit(2 + 7 / 12, "feet"),
  14211. default: true
  14212. },
  14213. ]
  14214. ))
  14215. characterMakers.push(() => makeCharacter(
  14216. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14217. {
  14218. anthro: {
  14219. height: math.unit(6 + 1 / 12, "feet"),
  14220. weight: math.unit(155, "lb"),
  14221. name: "Anthro",
  14222. image: {
  14223. source: "./media/characters/hearth/anthro.svg",
  14224. extra: 260 / 250,
  14225. bottom: 0.02
  14226. }
  14227. },
  14228. feral: {
  14229. height: math.unit(3.78, "feet"),
  14230. weight: math.unit(35, "kg"),
  14231. name: "Feral",
  14232. image: {
  14233. source: "./media/characters/hearth/feral.svg",
  14234. extra: 153 / 135,
  14235. bottom: 0.03
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(6 + 1 / 12, "feet"),
  14243. default: true
  14244. },
  14245. ]
  14246. ))
  14247. characterMakers.push(() => makeCharacter(
  14248. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14249. {
  14250. front: {
  14251. height: math.unit(6, "feet"),
  14252. weight: math.unit(182, "lb"),
  14253. name: "Front",
  14254. image: {
  14255. source: "./media/characters/ingrid/front.svg",
  14256. extra: 294 / 268,
  14257. bottom: 0.027
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Normal",
  14264. height: math.unit(6, "feet"),
  14265. default: true
  14266. },
  14267. ]
  14268. ))
  14269. characterMakers.push(() => makeCharacter(
  14270. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14271. {
  14272. eevee: {
  14273. height: math.unit(2 + 10 / 12, "feet"),
  14274. weight: math.unit(86, "lb"),
  14275. name: "Malgam",
  14276. image: {
  14277. source: "./media/characters/malgam/eevee.svg",
  14278. extra: 218 / 180,
  14279. bottom: 0.2
  14280. }
  14281. },
  14282. sylveon: {
  14283. height: math.unit(4, "feet"),
  14284. weight: math.unit(101, "lb"),
  14285. name: "Future Malgam",
  14286. rename: true,
  14287. image: {
  14288. source: "./media/characters/malgam/sylveon.svg",
  14289. extra: 371 / 325,
  14290. bottom: 0.015
  14291. }
  14292. },
  14293. gigantamax: {
  14294. height: math.unit(50, "feet"),
  14295. name: "Gigantamax Malgam",
  14296. rename: true,
  14297. image: {
  14298. source: "./media/characters/malgam/gigantamax.svg"
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Normal",
  14305. height: math.unit(2 + 10 / 12, "feet"),
  14306. default: true
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(5 + 11 / 12, "feet"),
  14315. weight: math.unit(188, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/fleur/front.svg",
  14319. extra: 309 / 283,
  14320. bottom: 0.007
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Normal",
  14327. height: math.unit(5 + 11 / 12, "feet"),
  14328. default: true
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14334. {
  14335. front: {
  14336. height: math.unit(5 + 4 / 12, "feet"),
  14337. weight: math.unit(122, "lb"),
  14338. name: "Front",
  14339. image: {
  14340. source: "./media/characters/jude/front.svg",
  14341. extra: 288 / 273,
  14342. bottom: 0.03
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Normal",
  14349. height: math.unit(5 + 4 / 12, "feet"),
  14350. default: true
  14351. },
  14352. ]
  14353. ))
  14354. characterMakers.push(() => makeCharacter(
  14355. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14356. {
  14357. front: {
  14358. height: math.unit(5 + 11 / 12, "feet"),
  14359. weight: math.unit(190, "lb"),
  14360. name: "Front",
  14361. image: {
  14362. source: "./media/characters/seara/front.svg",
  14363. extra: 1,
  14364. bottom: 0.05
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Normal",
  14371. height: math.unit(5 + 11 / 12, "feet"),
  14372. default: true
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(16 + 5 / 12, "feet"),
  14381. weight: math.unit(524, "lb"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/caspian/front.svg",
  14385. extra: 1,
  14386. bottom: 0.04
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Normal",
  14393. height: math.unit(16 + 5 / 12, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14400. {
  14401. front: {
  14402. height: math.unit(5 + 7 / 12, "feet"),
  14403. weight: math.unit(170, "lb"),
  14404. name: "Front",
  14405. image: {
  14406. source: "./media/characters/mika/front.svg",
  14407. extra: 1,
  14408. bottom: 0.016
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(5 + 7 / 12, "feet"),
  14416. default: true
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14422. {
  14423. front: {
  14424. height: math.unit(6 + 2 / 12, "feet"),
  14425. weight: math.unit(268, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/sol/front.svg",
  14429. extra: 247 / 231,
  14430. bottom: 0.05
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(6 + 2 / 12, "feet"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14444. {
  14445. buizel: {
  14446. height: math.unit(2 + 5 / 12, "feet"),
  14447. weight: math.unit(87, "lb"),
  14448. name: "Buizel",
  14449. image: {
  14450. source: "./media/characters/umiko/buizel.svg",
  14451. extra: 172 / 157,
  14452. bottom: 0.01
  14453. }
  14454. },
  14455. floatzel: {
  14456. height: math.unit(5 + 9 / 12, "feet"),
  14457. weight: math.unit(250, "lb"),
  14458. name: "Floatzel",
  14459. image: {
  14460. source: "./media/characters/umiko/floatzel.svg",
  14461. extra: 262 / 248
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(2 + 5 / 12, "feet"),
  14469. default: true
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(6 + 2 / 12, "feet"),
  14478. weight: math.unit(146, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/iliac/front.svg",
  14482. extra: 389 / 365,
  14483. bottom: 0.035
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(6 + 2 / 12, "feet"),
  14491. default: true
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(6, "feet"),
  14500. weight: math.unit(170, "lb"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/topaz/front.svg",
  14504. extra: 317 / 303,
  14505. bottom: 0.055
  14506. }
  14507. },
  14508. },
  14509. [
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(6, "feet"),
  14513. default: true
  14514. },
  14515. ]
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14519. {
  14520. front: {
  14521. height: math.unit(5 + 11 / 12, "feet"),
  14522. weight: math.unit(144, "lb"),
  14523. name: "Front",
  14524. image: {
  14525. source: "./media/characters/gabriel/front.svg",
  14526. extra: 285 / 262,
  14527. bottom: 0.004
  14528. }
  14529. },
  14530. },
  14531. [
  14532. {
  14533. name: "Normal",
  14534. height: math.unit(5 + 11 / 12, "feet"),
  14535. default: true
  14536. },
  14537. ]
  14538. ))
  14539. characterMakers.push(() => makeCharacter(
  14540. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14541. {
  14542. side: {
  14543. height: math.unit(6 + 5 / 12, "feet"),
  14544. weight: math.unit(300, "lb"),
  14545. name: "Side",
  14546. image: {
  14547. source: "./media/characters/tempest-suicune/side.svg",
  14548. extra: 195 / 154,
  14549. bottom: 0.04
  14550. }
  14551. },
  14552. },
  14553. [
  14554. {
  14555. name: "Normal",
  14556. height: math.unit(6 + 5 / 12, "feet"),
  14557. default: true
  14558. },
  14559. ]
  14560. ))
  14561. characterMakers.push(() => makeCharacter(
  14562. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14563. {
  14564. front: {
  14565. height: math.unit(7 + 2 / 12, "feet"),
  14566. weight: math.unit(322, "lb"),
  14567. name: "Front",
  14568. image: {
  14569. source: "./media/characters/vulcan/front.svg",
  14570. extra: 154 / 147,
  14571. bottom: 0.04
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(7 + 2 / 12, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14585. {
  14586. front: {
  14587. height: math.unit(5 + 10 / 12, "feet"),
  14588. weight: math.unit(264, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/gault/front.svg",
  14592. extra: 161 / 140,
  14593. bottom: 0.028
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(5 + 10 / 12, "feet"),
  14601. default: true
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14607. {
  14608. front: {
  14609. height: math.unit(6, "feet"),
  14610. weight: math.unit(150, "lb"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/shard/front.svg",
  14614. extra: 273 / 238,
  14615. bottom: 0.02
  14616. }
  14617. },
  14618. },
  14619. [
  14620. {
  14621. name: "Normal",
  14622. height: math.unit(3 + 6 / 12, "feet"),
  14623. default: true
  14624. },
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14629. {
  14630. front: {
  14631. height: math.unit(5 + 11 / 12, "feet"),
  14632. weight: math.unit(146, "lb"),
  14633. name: "Front",
  14634. image: {
  14635. source: "./media/characters/ashe/front.svg",
  14636. extra: 400 / 373,
  14637. bottom: 0.01
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Normal",
  14644. height: math.unit(5 + 11 / 12, "feet"),
  14645. default: true
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14651. {
  14652. front: {
  14653. height: math.unit(5 + 5 / 12, "feet"),
  14654. weight: math.unit(135, "lb"),
  14655. name: "Front",
  14656. image: {
  14657. source: "./media/characters/beatrix/front.svg",
  14658. extra: 392 / 379,
  14659. bottom: 0.01
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Normal",
  14666. height: math.unit(6, "feet"),
  14667. default: true
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14673. {
  14674. front: {
  14675. height: math.unit(6, "feet"),
  14676. weight: math.unit(150, "lb"),
  14677. name: "Front",
  14678. image: {
  14679. source: "./media/characters/ignatius/front.svg",
  14680. extra: 245 / 222,
  14681. bottom: 0.01
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Normal",
  14688. height: math.unit(5 + 5 / 12, "feet"),
  14689. default: true
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(6 + 2 / 12, "feet"),
  14698. weight: math.unit(138, "lb"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/mei-li/front.svg",
  14702. extra: 237 / 229,
  14703. bottom: 0.03
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Normal",
  14710. height: math.unit(6 + 2 / 12, "feet"),
  14711. default: true
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14717. {
  14718. front: {
  14719. height: math.unit(2 + 4 / 12, "feet"),
  14720. weight: math.unit(62, "lb"),
  14721. name: "Front",
  14722. image: {
  14723. source: "./media/characters/puru/front.svg",
  14724. extra: 206 / 149,
  14725. bottom: 0.06
  14726. }
  14727. },
  14728. },
  14729. [
  14730. {
  14731. name: "Normal",
  14732. height: math.unit(2 + 4 / 12, "feet"),
  14733. default: true
  14734. },
  14735. ]
  14736. ))
  14737. characterMakers.push(() => makeCharacter(
  14738. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14739. {
  14740. taur: {
  14741. height: math.unit(11, "feet"),
  14742. weight: math.unit(500, "lb"),
  14743. name: "Taur",
  14744. image: {
  14745. source: "./media/characters/kee/taur.svg",
  14746. extra: 1,
  14747. bottom: 0.04
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(11, "feet"),
  14755. default: true
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14761. {
  14762. anthro: {
  14763. height: math.unit(7, "feet"),
  14764. weight: math.unit(190, "lb"),
  14765. name: "Anthro",
  14766. image: {
  14767. source: "./media/characters/cobalt-dracha/anthro.svg",
  14768. extra: 231 / 225,
  14769. bottom: 0.04
  14770. }
  14771. },
  14772. feral: {
  14773. height: math.unit(9 + 7 / 12, "feet"),
  14774. weight: math.unit(294, "lb"),
  14775. name: "Feral",
  14776. image: {
  14777. source: "./media/characters/cobalt-dracha/feral.svg",
  14778. extra: 692 / 633,
  14779. bottom: 0.05
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Normal",
  14786. height: math.unit(7, "feet"),
  14787. default: true
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14793. {
  14794. fallen: {
  14795. height: math.unit(11 + 8 / 12, "feet"),
  14796. weight: math.unit(485, "lb"),
  14797. name: "Java (Fallen)",
  14798. rename: true,
  14799. image: {
  14800. source: "./media/characters/java/fallen.svg",
  14801. extra: 226 / 208,
  14802. bottom: 0.005
  14803. }
  14804. },
  14805. godkin: {
  14806. height: math.unit(10 + 6 / 12, "feet"),
  14807. weight: math.unit(328, "lb"),
  14808. name: "Java (Godkin)",
  14809. rename: true,
  14810. image: {
  14811. source: "./media/characters/java/godkin.svg",
  14812. extra: 270 / 262,
  14813. bottom: 0.02
  14814. }
  14815. },
  14816. },
  14817. [
  14818. {
  14819. name: "Normal",
  14820. height: math.unit(11 + 8 / 12, "feet"),
  14821. default: true
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(7 + 8 / 12, "feet"),
  14830. weight: math.unit(320, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/skoll/front.svg",
  14834. extra: 232 / 220,
  14835. bottom: 0.02
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(7 + 8 / 12, "feet"),
  14843. default: true
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14849. {
  14850. front: {
  14851. height: math.unit(5 + 9 / 12, "feet"),
  14852. weight: math.unit(170, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/purna/front.svg",
  14856. extra: 239 / 229,
  14857. bottom: 0.01
  14858. }
  14859. },
  14860. },
  14861. [
  14862. {
  14863. name: "Normal",
  14864. height: math.unit(5 + 9 / 12, "feet"),
  14865. default: true
  14866. },
  14867. ]
  14868. ))
  14869. characterMakers.push(() => makeCharacter(
  14870. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14871. {
  14872. front: {
  14873. height: math.unit(5 + 9 / 12, "feet"),
  14874. weight: math.unit(142, "lb"),
  14875. name: "Front",
  14876. image: {
  14877. source: "./media/characters/kuva/front.svg",
  14878. extra: 281 / 271,
  14879. bottom: 0.006
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Normal",
  14886. height: math.unit(5 + 9 / 12, "feet"),
  14887. default: true
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14893. {
  14894. anthro: {
  14895. height: math.unit(9 + 2 / 12, "feet"),
  14896. weight: math.unit(270, "lb"),
  14897. name: "Anthro",
  14898. image: {
  14899. source: "./media/characters/embra/anthro.svg",
  14900. extra: 200 / 187,
  14901. bottom: 0.02
  14902. }
  14903. },
  14904. feral: {
  14905. height: math.unit(18 + 8 / 12, "feet"),
  14906. weight: math.unit(576, "lb"),
  14907. name: "Feral",
  14908. image: {
  14909. source: "./media/characters/embra/feral.svg",
  14910. extra: 152 / 137,
  14911. bottom: 0.037
  14912. }
  14913. },
  14914. },
  14915. [
  14916. {
  14917. name: "Normal",
  14918. height: math.unit(9 + 2 / 12, "feet"),
  14919. default: true
  14920. },
  14921. ]
  14922. ))
  14923. characterMakers.push(() => makeCharacter(
  14924. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14925. {
  14926. anthro: {
  14927. height: math.unit(10 + 9 / 12, "feet"),
  14928. weight: math.unit(224, "lb"),
  14929. name: "Anthro",
  14930. image: {
  14931. source: "./media/characters/grottos/anthro.svg",
  14932. extra: 350 / 332,
  14933. bottom: 0.045
  14934. }
  14935. },
  14936. feral: {
  14937. height: math.unit(20 + 7 / 12, "feet"),
  14938. weight: math.unit(629, "lb"),
  14939. name: "Feral",
  14940. image: {
  14941. source: "./media/characters/grottos/feral.svg",
  14942. extra: 207 / 190,
  14943. bottom: 0.05
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(10 + 9 / 12, "feet"),
  14951. default: true
  14952. },
  14953. ]
  14954. ))
  14955. characterMakers.push(() => makeCharacter(
  14956. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14957. {
  14958. anthro: {
  14959. height: math.unit(9 + 6 / 12, "feet"),
  14960. weight: math.unit(298, "lb"),
  14961. name: "Anthro",
  14962. image: {
  14963. source: "./media/characters/frifna/anthro.svg",
  14964. extra: 282 / 269,
  14965. bottom: 0.015
  14966. }
  14967. },
  14968. feral: {
  14969. height: math.unit(16 + 2 / 12, "feet"),
  14970. weight: math.unit(624, "lb"),
  14971. name: "Feral",
  14972. image: {
  14973. source: "./media/characters/frifna/feral.svg"
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Normal",
  14980. height: math.unit(9 + 6 / 12, "feet"),
  14981. default: true
  14982. },
  14983. ]
  14984. ))
  14985. characterMakers.push(() => makeCharacter(
  14986. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14987. {
  14988. front: {
  14989. height: math.unit(6 + 2 / 12, "feet"),
  14990. weight: math.unit(168, "lb"),
  14991. name: "Front",
  14992. image: {
  14993. source: "./media/characters/elise/front.svg",
  14994. extra: 276 / 271
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(6 + 2 / 12, "feet"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(5 + 10 / 12, "feet"),
  15011. weight: math.unit(210, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/glade/front.svg",
  15015. extra: 258 / 247,
  15016. bottom: 0.008
  15017. }
  15018. },
  15019. },
  15020. [
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(5 + 10 / 12, "feet"),
  15024. default: true
  15025. },
  15026. ]
  15027. ))
  15028. characterMakers.push(() => makeCharacter(
  15029. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15030. {
  15031. front: {
  15032. height: math.unit(5 + 10 / 12, "feet"),
  15033. weight: math.unit(129, "lb"),
  15034. name: "Front",
  15035. image: {
  15036. source: "./media/characters/rina/front.svg",
  15037. extra: 266 / 255,
  15038. bottom: 0.005
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Normal",
  15045. height: math.unit(5 + 10 / 12, "feet"),
  15046. default: true
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15052. {
  15053. front: {
  15054. height: math.unit(6 + 1 / 12, "feet"),
  15055. weight: math.unit(192, "lb"),
  15056. name: "Front",
  15057. image: {
  15058. source: "./media/characters/veronica/front.svg",
  15059. extra: 319 / 309,
  15060. bottom: 0.005
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(6 + 1 / 12, "feet"),
  15068. default: true
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15074. {
  15075. front: {
  15076. height: math.unit(9 + 3 / 12, "feet"),
  15077. weight: math.unit(1100, "lb"),
  15078. name: "Front",
  15079. image: {
  15080. source: "./media/characters/braxton/front.svg",
  15081. extra: 1057 / 984,
  15082. bottom: 0.05
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Normal",
  15089. height: math.unit(9 + 3 / 12, "feet")
  15090. },
  15091. {
  15092. name: "Giant",
  15093. height: math.unit(300, "feet"),
  15094. default: true
  15095. },
  15096. {
  15097. name: "Macro",
  15098. height: math.unit(700, "feet")
  15099. },
  15100. {
  15101. name: "Megamacro",
  15102. height: math.unit(6000, "feet")
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(6 + 7 / 12, "feet"),
  15111. weight: math.unit(150, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/blue-feyonics/front.svg",
  15115. extra: 1403 / 1306,
  15116. bottom: 0.047
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(6 + 7 / 12, "feet"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15130. {
  15131. front: {
  15132. height: math.unit(1.8, "meters"),
  15133. weight: math.unit(60, "kg"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/maxwell/front.svg",
  15137. extra: 2060 / 1873
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Micro",
  15144. height: math.unit(1, "mm")
  15145. },
  15146. {
  15147. name: "Normal",
  15148. height: math.unit(1.8, "meter"),
  15149. default: true
  15150. },
  15151. {
  15152. name: "Macro",
  15153. height: math.unit(30, "meters")
  15154. },
  15155. {
  15156. name: "Megamacro",
  15157. height: math.unit(10, "km")
  15158. },
  15159. ]
  15160. ))
  15161. characterMakers.push(() => makeCharacter(
  15162. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15163. {
  15164. front: {
  15165. height: math.unit(6, "feet"),
  15166. weight: math.unit(150, "lb"),
  15167. name: "Front",
  15168. image: {
  15169. source: "./media/characters/jack/front.svg",
  15170. extra: 1754 / 1640,
  15171. bottom: 0.01
  15172. }
  15173. },
  15174. },
  15175. [
  15176. {
  15177. name: "Normal",
  15178. height: math.unit(80000, "feet"),
  15179. default: true
  15180. },
  15181. {
  15182. name: "Max size",
  15183. height: math.unit(10, "lightyears")
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15189. {
  15190. upright: {
  15191. height: math.unit(7, "feet"),
  15192. weight: math.unit(170, "lb"),
  15193. name: "Upright",
  15194. image: {
  15195. source: "./media/characters/cafat/upright.svg",
  15196. bottom: 0.01
  15197. }
  15198. },
  15199. uprightFull: {
  15200. height: math.unit(7, "feet"),
  15201. weight: math.unit(170, "lb"),
  15202. name: "Upright (Full)",
  15203. image: {
  15204. source: "./media/characters/cafat/upright-full.svg",
  15205. bottom: 0.01
  15206. }
  15207. },
  15208. side: {
  15209. height: math.unit(5, "feet"),
  15210. weight: math.unit(150, "lb"),
  15211. name: "Side",
  15212. image: {
  15213. source: "./media/characters/cafat/side.svg"
  15214. }
  15215. },
  15216. },
  15217. [
  15218. {
  15219. name: "Small",
  15220. height: math.unit(7, "feet"),
  15221. default: true
  15222. },
  15223. {
  15224. name: "Large",
  15225. height: math.unit(15.5, "feet")
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(6, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/verin-raharra/front.svg",
  15238. extra: 5019 / 4835,
  15239. bottom: 0.023
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(7 + 5 / 12, "feet"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Upsized",
  15251. height: math.unit(20, "feet")
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(7, "feet"),
  15260. weight: math.unit(230, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/nakata/front.svg",
  15264. extra: 1.005,
  15265. bottom: 0.01
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Normal",
  15272. height: math.unit(7, "feet"),
  15273. default: true
  15274. },
  15275. {
  15276. name: "Big",
  15277. height: math.unit(14, "feet")
  15278. },
  15279. {
  15280. name: "Macro",
  15281. height: math.unit(400, "feet")
  15282. },
  15283. ]
  15284. ))
  15285. characterMakers.push(() => makeCharacter(
  15286. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15287. {
  15288. front: {
  15289. height: math.unit(4.91, "feet"),
  15290. weight: math.unit(100, "lb"),
  15291. name: "Front",
  15292. image: {
  15293. source: "./media/characters/lily/front.svg",
  15294. extra: 1585 / 1415,
  15295. bottom: 0.02
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Normal",
  15302. height: math.unit(4.91, "feet"),
  15303. default: true
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15309. {
  15310. laying: {
  15311. height: math.unit(4 + 4 / 12, "feet"),
  15312. weight: math.unit(600, "lb"),
  15313. name: "Laying",
  15314. image: {
  15315. source: "./media/characters/sheila/laying.svg",
  15316. extra: 1333 / 1265,
  15317. bottom: 0.16
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Normal",
  15324. height: math.unit(4 + 4 / 12, "feet"),
  15325. default: true
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15331. {
  15332. front: {
  15333. height: math.unit(6, "feet"),
  15334. weight: math.unit(190, "lb"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/sax/front.svg",
  15338. extra: 1187 / 973,
  15339. bottom: 0.042
  15340. }
  15341. },
  15342. },
  15343. [
  15344. {
  15345. name: "Micro",
  15346. height: math.unit(4, "inches"),
  15347. default: true
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15353. {
  15354. front: {
  15355. height: math.unit(6, "feet"),
  15356. weight: math.unit(150, "lb"),
  15357. name: "Front",
  15358. image: {
  15359. source: "./media/characters/pandora/front.svg",
  15360. extra: 2720 / 2556,
  15361. bottom: 0.015
  15362. }
  15363. },
  15364. back: {
  15365. height: math.unit(6, "feet"),
  15366. weight: math.unit(150, "lb"),
  15367. name: "Back",
  15368. image: {
  15369. source: "./media/characters/pandora/back.svg",
  15370. extra: 2720 / 2556,
  15371. bottom: 0.01
  15372. }
  15373. },
  15374. beans: {
  15375. height: math.unit(6 / 8, "feet"),
  15376. name: "Beans",
  15377. image: {
  15378. source: "./media/characters/pandora/beans.svg"
  15379. }
  15380. },
  15381. skirt: {
  15382. height: math.unit(6, "feet"),
  15383. weight: math.unit(150, "lb"),
  15384. name: "Skirt",
  15385. image: {
  15386. source: "./media/characters/pandora/skirt.svg",
  15387. extra: 1622 / 1525,
  15388. bottom: 0.015
  15389. }
  15390. },
  15391. hoodie: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Hoodie",
  15395. image: {
  15396. source: "./media/characters/pandora/hoodie.svg",
  15397. extra: 1622 / 1525,
  15398. bottom: 0.015
  15399. }
  15400. },
  15401. casual: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(150, "lb"),
  15404. name: "Casual",
  15405. image: {
  15406. source: "./media/characters/pandora/casual.svg",
  15407. extra: 1622 / 1525,
  15408. bottom: 0.015
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(6, "feet")
  15416. },
  15417. {
  15418. name: "Big Steppy",
  15419. height: math.unit(1, "km"),
  15420. default: true
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15426. {
  15427. side: {
  15428. height: math.unit(10, "feet"),
  15429. weight: math.unit(800, "kg"),
  15430. name: "Side",
  15431. image: {
  15432. source: "./media/characters/venio-darcony/side.svg",
  15433. extra: 1373 / 1003,
  15434. bottom: 0.037
  15435. }
  15436. },
  15437. front: {
  15438. height: math.unit(19, "feet"),
  15439. weight: math.unit(800, "kg"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/venio-darcony/front.svg"
  15443. }
  15444. },
  15445. back: {
  15446. height: math.unit(19, "feet"),
  15447. weight: math.unit(800, "kg"),
  15448. name: "Back",
  15449. image: {
  15450. source: "./media/characters/venio-darcony/back.svg"
  15451. }
  15452. },
  15453. sideNsfw: {
  15454. height: math.unit(10, "feet"),
  15455. weight: math.unit(800, "kg"),
  15456. name: "Side (NSFW)",
  15457. image: {
  15458. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15459. extra: 1373 / 1003,
  15460. bottom: 0.037
  15461. }
  15462. },
  15463. frontNsfw: {
  15464. height: math.unit(19, "feet"),
  15465. weight: math.unit(800, "kg"),
  15466. name: "Front (NSFW)",
  15467. image: {
  15468. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15469. }
  15470. },
  15471. backNsfw: {
  15472. height: math.unit(19, "feet"),
  15473. weight: math.unit(800, "kg"),
  15474. name: "Back (NSFW)",
  15475. image: {
  15476. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15477. }
  15478. },
  15479. sideArmored: {
  15480. height: math.unit(10, "feet"),
  15481. weight: math.unit(800, "kg"),
  15482. name: "Side (Armored)",
  15483. image: {
  15484. source: "./media/characters/venio-darcony/side-armored.svg",
  15485. extra: 1373 / 1003,
  15486. bottom: 0.037
  15487. }
  15488. },
  15489. frontArmored: {
  15490. height: math.unit(19, "feet"),
  15491. weight: math.unit(900, "kg"),
  15492. name: "Front (Armored)",
  15493. image: {
  15494. source: "./media/characters/venio-darcony/front-armored.svg"
  15495. }
  15496. },
  15497. backArmored: {
  15498. height: math.unit(19, "feet"),
  15499. weight: math.unit(900, "kg"),
  15500. name: "Back (Armored)",
  15501. image: {
  15502. source: "./media/characters/venio-darcony/back-armored.svg"
  15503. }
  15504. },
  15505. sword: {
  15506. height: math.unit(10, "feet"),
  15507. weight: math.unit(50, "lb"),
  15508. name: "Sword",
  15509. image: {
  15510. source: "./media/characters/venio-darcony/sword.svg"
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(10, "feet")
  15518. },
  15519. {
  15520. name: "Macro",
  15521. height: math.unit(130, "feet"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Macro+",
  15526. height: math.unit(240, "feet")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(150, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/veski/front.svg",
  15539. extra: 1299 / 1225,
  15540. bottom: 0.04
  15541. }
  15542. },
  15543. back: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(150, "lb"),
  15546. name: "Back",
  15547. image: {
  15548. source: "./media/characters/veski/back.svg",
  15549. extra: 1299 / 1225,
  15550. bottom: 0.008
  15551. }
  15552. },
  15553. maw: {
  15554. height: math.unit(1.5 * 1.21, "feet"),
  15555. name: "Maw",
  15556. image: {
  15557. source: "./media/characters/veski/maw.svg"
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Macro",
  15564. height: math.unit(2, "km"),
  15565. default: true
  15566. },
  15567. ]
  15568. ))
  15569. characterMakers.push(() => makeCharacter(
  15570. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15571. {
  15572. front: {
  15573. height: math.unit(5 + 7 / 12, "feet"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/isabelle/front.svg",
  15577. extra: 2130 / 1976,
  15578. bottom: 0.05
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Supermicro",
  15585. height: math.unit(10, "micrometers")
  15586. },
  15587. {
  15588. name: "Micro",
  15589. height: math.unit(1, "inch")
  15590. },
  15591. {
  15592. name: "Tiny",
  15593. height: math.unit(5, "inches")
  15594. },
  15595. {
  15596. name: "Standard",
  15597. height: math.unit(5 + 7 / 12, "inches")
  15598. },
  15599. {
  15600. name: "Macro",
  15601. height: math.unit(80, "meters"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Megamacro",
  15606. height: math.unit(250, "meters")
  15607. },
  15608. {
  15609. name: "Gigamacro",
  15610. height: math.unit(5, "km")
  15611. },
  15612. {
  15613. name: "Cosmic",
  15614. height: math.unit(2.5e6, "miles")
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(150, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/hanzo/front.svg",
  15627. extra: 374 / 344,
  15628. bottom: 0.02
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(8, "feet"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(7, "feet"),
  15645. weight: math.unit(130, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/anna/front.svg",
  15649. extra: 169 / 145,
  15650. bottom: 0.06
  15651. }
  15652. },
  15653. full: {
  15654. height: math.unit(4.96, "feet"),
  15655. weight: math.unit(220, "lb"),
  15656. name: "Full",
  15657. image: {
  15658. source: "./media/characters/anna/full.svg",
  15659. extra: 138 / 114,
  15660. bottom: 0.15
  15661. }
  15662. },
  15663. tongue: {
  15664. height: math.unit(2.53, "feet"),
  15665. name: "Tongue",
  15666. image: {
  15667. source: "./media/characters/anna/tongue.svg"
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Normal",
  15674. height: math.unit(7, "feet"),
  15675. default: true
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(7, "feet"),
  15684. weight: math.unit(150, "lb"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/ian-corvid/front.svg",
  15688. extra: 150 / 142,
  15689. bottom: 0.02
  15690. }
  15691. },
  15692. back: {
  15693. height: math.unit(7, "feet"),
  15694. weight: math.unit(150, "lb"),
  15695. name: "Back",
  15696. image: {
  15697. source: "./media/characters/ian-corvid/back.svg",
  15698. extra: 150 / 143,
  15699. bottom: 0.01
  15700. }
  15701. },
  15702. stomping: {
  15703. height: math.unit(7, "feet"),
  15704. weight: math.unit(150, "lb"),
  15705. name: "Stomping",
  15706. image: {
  15707. source: "./media/characters/ian-corvid/stomping.svg",
  15708. extra: 76 / 72
  15709. }
  15710. },
  15711. sitting: {
  15712. height: math.unit(7 / 1.8, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Sitting",
  15715. image: {
  15716. source: "./media/characters/ian-corvid/sitting.svg",
  15717. extra: 1400 / 1269,
  15718. bottom: 0.15
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Tiny Microw",
  15725. height: math.unit(1, "inch")
  15726. },
  15727. {
  15728. name: "Microw",
  15729. height: math.unit(6, "inches")
  15730. },
  15731. {
  15732. name: "Crow",
  15733. height: math.unit(7 + 1 / 12, "feet"),
  15734. default: true
  15735. },
  15736. {
  15737. name: "Macrow",
  15738. height: math.unit(176, "feet")
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(5 + 7 / 12, "feet"),
  15747. weight: math.unit(147, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/natalie-kellon/front.svg",
  15751. extra: 1214 / 1141,
  15752. bottom: 0.02
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Micro",
  15759. height: math.unit(1 / 16, "inch")
  15760. },
  15761. {
  15762. name: "Tiny",
  15763. height: math.unit(4, "inches")
  15764. },
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(5 + 7 / 12, "feet"),
  15768. default: true
  15769. },
  15770. {
  15771. name: "Amazon",
  15772. height: math.unit(12, "feet")
  15773. },
  15774. {
  15775. name: "Giantess",
  15776. height: math.unit(160, "meters")
  15777. },
  15778. {
  15779. name: "Titaness",
  15780. height: math.unit(800, "meters")
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(6, "feet"),
  15789. weight: math.unit(150, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/alluria/front.svg",
  15793. extra: 806 / 738,
  15794. bottom: 0.01
  15795. }
  15796. },
  15797. side: {
  15798. height: math.unit(6, "feet"),
  15799. weight: math.unit(150, "lb"),
  15800. name: "Side",
  15801. image: {
  15802. source: "./media/characters/alluria/side.svg",
  15803. extra: 800 / 750,
  15804. }
  15805. },
  15806. back: {
  15807. height: math.unit(6, "feet"),
  15808. weight: math.unit(150, "lb"),
  15809. name: "Back",
  15810. image: {
  15811. source: "./media/characters/alluria/back.svg",
  15812. extra: 806 / 738,
  15813. }
  15814. },
  15815. frontMaid: {
  15816. height: math.unit(6, "feet"),
  15817. weight: math.unit(150, "lb"),
  15818. name: "Front (Maid)",
  15819. image: {
  15820. source: "./media/characters/alluria/front-maid.svg",
  15821. extra: 806 / 738,
  15822. bottom: 0.01
  15823. }
  15824. },
  15825. sideMaid: {
  15826. height: math.unit(6, "feet"),
  15827. weight: math.unit(150, "lb"),
  15828. name: "Side (Maid)",
  15829. image: {
  15830. source: "./media/characters/alluria/side-maid.svg",
  15831. extra: 800 / 750,
  15832. bottom: 0.005
  15833. }
  15834. },
  15835. backMaid: {
  15836. height: math.unit(6, "feet"),
  15837. weight: math.unit(150, "lb"),
  15838. name: "Back (Maid)",
  15839. image: {
  15840. source: "./media/characters/alluria/back-maid.svg",
  15841. extra: 806 / 738,
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Micro",
  15848. height: math.unit(6, "inches"),
  15849. default: true
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15855. {
  15856. front: {
  15857. height: math.unit(6, "feet"),
  15858. weight: math.unit(150, "lb"),
  15859. name: "Front",
  15860. image: {
  15861. source: "./media/characters/kyle/front.svg",
  15862. extra: 1069 / 962,
  15863. bottom: 77.228 / 1727.45
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Macro",
  15870. height: math.unit(150, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(6, "feet"),
  15880. weight: math.unit(300, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/duncan/front.svg",
  15884. extra: 1650 / 1482,
  15885. bottom: 0.05
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Macro",
  15892. height: math.unit(100, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(5 + 4 / 12, "feet"),
  15902. weight: math.unit(220, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/memory/front.svg",
  15906. extra: 3641 / 3545,
  15907. bottom: 0.03
  15908. }
  15909. },
  15910. back: {
  15911. height: math.unit(5 + 4 / 12, "feet"),
  15912. weight: math.unit(220, "lb"),
  15913. name: "Back",
  15914. image: {
  15915. source: "./media/characters/memory/back.svg",
  15916. extra: 3641 / 3545,
  15917. bottom: 0.025
  15918. }
  15919. },
  15920. frontSkirt: {
  15921. height: math.unit(5 + 4 / 12, "feet"),
  15922. weight: math.unit(220, "lb"),
  15923. name: "Front (Skirt)",
  15924. image: {
  15925. source: "./media/characters/memory/front-skirt.svg",
  15926. extra: 3641 / 3545,
  15927. bottom: 0.03
  15928. }
  15929. },
  15930. frontDress: {
  15931. height: math.unit(5 + 4 / 12, "feet"),
  15932. weight: math.unit(220, "lb"),
  15933. name: "Front (Dress)",
  15934. image: {
  15935. source: "./media/characters/memory/front-dress.svg",
  15936. extra: 3641 / 3545,
  15937. bottom: 0.03
  15938. }
  15939. },
  15940. },
  15941. [
  15942. {
  15943. name: "Micro",
  15944. height: math.unit(6, "inches"),
  15945. default: true
  15946. },
  15947. {
  15948. name: "Normal",
  15949. height: math.unit(5 + 4 / 12, "feet")
  15950. },
  15951. ]
  15952. ))
  15953. characterMakers.push(() => makeCharacter(
  15954. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15955. {
  15956. front: {
  15957. height: math.unit(4 + 11 / 12, "feet"),
  15958. weight: math.unit(100, "lb"),
  15959. name: "Front",
  15960. image: {
  15961. source: "./media/characters/luno/front.svg",
  15962. extra: 1535 / 1487,
  15963. bottom: 0.03
  15964. }
  15965. },
  15966. },
  15967. [
  15968. {
  15969. name: "Micro",
  15970. height: math.unit(3, "inches")
  15971. },
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(4 + 11 / 12, "feet"),
  15975. default: true
  15976. },
  15977. {
  15978. name: "Macro",
  15979. height: math.unit(300, "feet")
  15980. },
  15981. {
  15982. name: "Megamacro",
  15983. height: math.unit(700, "miles")
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(6 + 2 / 12, "feet"),
  15992. weight: math.unit(170, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/jamesy/front.svg",
  15996. extra: 440 / 382,
  15997. bottom: 0.005
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Micro",
  16004. height: math.unit(3, "inches")
  16005. },
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(6 + 2 / 12, "feet"),
  16009. default: true
  16010. },
  16011. {
  16012. name: "Macro",
  16013. height: math.unit(300, "feet")
  16014. },
  16015. {
  16016. name: "Megamacro",
  16017. height: math.unit(700, "miles")
  16018. },
  16019. ]
  16020. ))
  16021. characterMakers.push(() => makeCharacter(
  16022. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16023. {
  16024. front: {
  16025. height: math.unit(6, "feet"),
  16026. weight: math.unit(160, "lb"),
  16027. name: "Front",
  16028. image: {
  16029. source: "./media/characters/mark/front.svg",
  16030. extra: 3300 / 3100,
  16031. bottom: 136.42 / 3440.47
  16032. }
  16033. },
  16034. },
  16035. [
  16036. {
  16037. name: "Macro",
  16038. height: math.unit(120, "meters")
  16039. },
  16040. {
  16041. name: "Bigger Macro",
  16042. height: math.unit(350, "meters")
  16043. },
  16044. {
  16045. name: "Megamacro",
  16046. height: math.unit(8, "km"),
  16047. default: true
  16048. },
  16049. {
  16050. name: "Continental",
  16051. height: math.unit(4550, "km")
  16052. },
  16053. {
  16054. name: "Planetary",
  16055. height: math.unit(65000, "km")
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(6, "feet"),
  16064. weight: math.unit(400, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/mac/front.svg",
  16068. extra: 1048 / 987.7,
  16069. bottom: 60 / 1107.6,
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Macro",
  16076. height: math.unit(500, "feet"),
  16077. default: true
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16083. {
  16084. front: {
  16085. height: math.unit(5 + 2 / 12, "feet"),
  16086. weight: math.unit(190, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/bari/front.svg",
  16090. extra: 3156 / 2880,
  16091. bottom: 0.03
  16092. }
  16093. },
  16094. back: {
  16095. height: math.unit(5 + 2 / 12, "feet"),
  16096. weight: math.unit(190, "lb"),
  16097. name: "Back",
  16098. image: {
  16099. source: "./media/characters/bari/back.svg",
  16100. extra: 3260 / 2834,
  16101. bottom: 0.025
  16102. }
  16103. },
  16104. frontPlush: {
  16105. height: math.unit(5 + 2 / 12, "feet"),
  16106. weight: math.unit(190, "lb"),
  16107. name: "Front (Plush)",
  16108. image: {
  16109. source: "./media/characters/bari/front-plush.svg",
  16110. extra: 1112 / 1061,
  16111. bottom: 0.002
  16112. }
  16113. },
  16114. },
  16115. [
  16116. {
  16117. name: "Micro",
  16118. height: math.unit(3, "inches")
  16119. },
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(5 + 2 / 12, "feet"),
  16123. default: true
  16124. },
  16125. {
  16126. name: "Macro",
  16127. height: math.unit(20, "feet")
  16128. },
  16129. ]
  16130. ))
  16131. characterMakers.push(() => makeCharacter(
  16132. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16133. {
  16134. front: {
  16135. height: math.unit(6 + 1 / 12, "feet"),
  16136. weight: math.unit(275, "lb"),
  16137. name: "Front",
  16138. image: {
  16139. source: "./media/characters/hunter-misha-raven/front.svg"
  16140. }
  16141. },
  16142. },
  16143. [
  16144. {
  16145. name: "Mortal",
  16146. height: math.unit(6 + 1 / 12, "feet")
  16147. },
  16148. {
  16149. name: "Divine",
  16150. height: math.unit(1.12134e34, "parsecs"),
  16151. default: true
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16157. {
  16158. front: {
  16159. height: math.unit(6 + 3 / 12, "feet"),
  16160. weight: math.unit(220, "lb"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/max-calore/front.svg",
  16164. extra: 1700 / 1648,
  16165. bottom: 0.01
  16166. }
  16167. },
  16168. back: {
  16169. height: math.unit(6 + 3 / 12, "feet"),
  16170. weight: math.unit(220, "lb"),
  16171. name: "Back",
  16172. image: {
  16173. source: "./media/characters/max-calore/back.svg",
  16174. extra: 1700 / 1648,
  16175. bottom: 0.01
  16176. }
  16177. },
  16178. },
  16179. [
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(6 + 3 / 12, "feet"),
  16183. default: true
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16189. {
  16190. side: {
  16191. height: math.unit(2 + 8 / 12, "feet"),
  16192. weight: math.unit(99, "lb"),
  16193. name: "Side",
  16194. image: {
  16195. source: "./media/characters/aspen/side.svg",
  16196. extra: 152 / 138,
  16197. bottom: 0.032
  16198. }
  16199. },
  16200. },
  16201. [
  16202. {
  16203. name: "Normal",
  16204. height: math.unit(2 + 8 / 12, "feet"),
  16205. default: true
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16211. {
  16212. side: {
  16213. height: math.unit(3 + 2 / 12, "feet"),
  16214. weight: math.unit(224, "lb"),
  16215. name: "Side",
  16216. image: {
  16217. source: "./media/characters/sheila-feral-wolf/side.svg",
  16218. extra: 179 / 166,
  16219. bottom: 0.03
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(3 + 2 / 12, "feet"),
  16227. default: true
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16233. {
  16234. side: {
  16235. height: math.unit(1 + 9 / 12, "feet"),
  16236. weight: math.unit(38, "lb"),
  16237. name: "Side",
  16238. image: {
  16239. source: "./media/characters/michelle/side.svg",
  16240. extra: 147 / 136.7,
  16241. bottom: 0.03
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Normal",
  16248. height: math.unit(1 + 9 / 12, "feet"),
  16249. default: true
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16255. {
  16256. front: {
  16257. height: math.unit(1 + 1 / 12, "feet"),
  16258. weight: math.unit(18, "lb"),
  16259. name: "Front",
  16260. image: {
  16261. source: "./media/characters/nino/front.svg"
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(1 + 1 / 12, "feet"),
  16269. default: true
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16275. {
  16276. front: {
  16277. height: math.unit(1, "feet"),
  16278. weight: math.unit(16, "lb"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/viola/front.svg"
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(1, "feet"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(6 + 5 / 12, "feet"),
  16298. weight: math.unit(580, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/atlas/front.svg",
  16302. extra: 298.5 / 290,
  16303. bottom: 0.015
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(6 + 5 / 12, "feet"),
  16311. default: true
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16317. {
  16318. side: {
  16319. height: math.unit(1 + 10 / 12, "feet"),
  16320. weight: math.unit(25, "lb"),
  16321. name: "Side",
  16322. image: {
  16323. source: "./media/characters/davy/side.svg",
  16324. extra: 200 / 170,
  16325. bottom: 0.01
  16326. }
  16327. },
  16328. },
  16329. [
  16330. {
  16331. name: "Normal",
  16332. height: math.unit(1 + 10 / 12, "feet"),
  16333. default: true
  16334. },
  16335. ]
  16336. ))
  16337. characterMakers.push(() => makeCharacter(
  16338. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16339. {
  16340. side: {
  16341. height: math.unit(4 + 8 / 12, "feet"),
  16342. weight: math.unit(166, "lb"),
  16343. name: "Side",
  16344. image: {
  16345. source: "./media/characters/fiona/side.svg",
  16346. extra: 232 / 220,
  16347. bottom: 0.03
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Normal",
  16354. height: math.unit(4 + 8 / 12, "feet"),
  16355. default: true
  16356. },
  16357. ]
  16358. ))
  16359. characterMakers.push(() => makeCharacter(
  16360. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16361. {
  16362. front: {
  16363. height: math.unit(2, "feet"),
  16364. weight: math.unit(62, "lb"),
  16365. name: "Front",
  16366. image: {
  16367. source: "./media/characters/lyla/front.svg",
  16368. bottom: 0.1
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(2, "feet"),
  16376. default: true
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16382. {
  16383. side: {
  16384. height: math.unit(1.8, "feet"),
  16385. weight: math.unit(44, "lb"),
  16386. name: "Side",
  16387. image: {
  16388. source: "./media/characters/perseus/side.svg",
  16389. bottom: 0.21
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Normal",
  16396. height: math.unit(1.8, "feet"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16403. {
  16404. side: {
  16405. height: math.unit(4 + 2 / 12, "feet"),
  16406. weight: math.unit(20, "lb"),
  16407. name: "Side",
  16408. image: {
  16409. source: "./media/characters/remus/side.svg"
  16410. }
  16411. },
  16412. },
  16413. [
  16414. {
  16415. name: "Normal",
  16416. height: math.unit(4 + 2 / 12, "feet"),
  16417. default: true
  16418. },
  16419. ]
  16420. ))
  16421. characterMakers.push(() => makeCharacter(
  16422. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16423. {
  16424. front: {
  16425. height: math.unit(4 + 11 / 12, "feet"),
  16426. weight: math.unit(114, "lb"),
  16427. name: "Front",
  16428. image: {
  16429. source: "./media/characters/raf/front.svg",
  16430. bottom: 20.5 / 1863
  16431. }
  16432. },
  16433. side: {
  16434. height: math.unit(4 + 11 / 12, "feet"),
  16435. weight: math.unit(114, "lb"),
  16436. name: "Side",
  16437. image: {
  16438. source: "./media/characters/raf/side.svg",
  16439. bottom: 22 / 1822
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Micro",
  16446. height: math.unit(2, "inches")
  16447. },
  16448. {
  16449. name: "Normal",
  16450. height: math.unit(4 + 11 / 12, "feet"),
  16451. default: true
  16452. },
  16453. {
  16454. name: "Macro",
  16455. height: math.unit(70, "feet")
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(1.5, "meters"),
  16464. weight: math.unit(68, "kg"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/liam-einarr/front.svg",
  16468. extra: 2822 / 2666
  16469. }
  16470. },
  16471. back: {
  16472. height: math.unit(1.5, "meters"),
  16473. weight: math.unit(68, "kg"),
  16474. name: "Back",
  16475. image: {
  16476. source: "./media/characters/liam-einarr/back.svg",
  16477. extra: 2822 / 2666,
  16478. bottom: 0.015
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Normal",
  16485. height: math.unit(1.5, "meters"),
  16486. default: true
  16487. },
  16488. {
  16489. name: "Macro",
  16490. height: math.unit(150, "meters")
  16491. },
  16492. {
  16493. name: "Megamacro",
  16494. height: math.unit(35, "km")
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16500. {
  16501. front: {
  16502. height: math.unit(6, "feet"),
  16503. weight: math.unit(75, "kg"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/linda/front.svg",
  16507. extra: 930 / 874,
  16508. bottom: 0.004
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(6, "feet"),
  16516. default: true
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(6 + 8 / 12, "feet"),
  16525. weight: math.unit(220, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/caylex/front.svg",
  16529. extra: 821 / 772,
  16530. bottom: 0.07
  16531. }
  16532. },
  16533. back: {
  16534. height: math.unit(6 + 8 / 12, "feet"),
  16535. weight: math.unit(220, "lb"),
  16536. name: "Back",
  16537. image: {
  16538. source: "./media/characters/caylex/back.svg",
  16539. extra: 821 / 772,
  16540. bottom: 0.022
  16541. }
  16542. },
  16543. hand: {
  16544. height: math.unit(1.25, "feet"),
  16545. name: "Hand",
  16546. image: {
  16547. source: "./media/characters/caylex/hand.svg"
  16548. }
  16549. },
  16550. foot: {
  16551. height: math.unit(1.6, "feet"),
  16552. name: "Foot",
  16553. image: {
  16554. source: "./media/characters/caylex/foot.svg"
  16555. }
  16556. },
  16557. armored: {
  16558. height: math.unit(6 + 8 / 12, "feet"),
  16559. weight: math.unit(250, "lb"),
  16560. name: "Armored",
  16561. image: {
  16562. source: "./media/characters/caylex/armored.svg",
  16563. extra: 1420 / 1310,
  16564. bottom: 0.045
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(6 + 8 / 12, "feet"),
  16572. default: true
  16573. },
  16574. {
  16575. name: "Normal+",
  16576. height: math.unit(12, "feet")
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16582. {
  16583. front: {
  16584. height: math.unit(7 + 6 / 12, "feet"),
  16585. weight: math.unit(288, "lb"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/alana/front.svg",
  16589. extra: 679 / 653,
  16590. bottom: 22.5 / 701
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(7 + 6 / 12, "feet")
  16598. },
  16599. {
  16600. name: "Large",
  16601. height: math.unit(50, "feet")
  16602. },
  16603. {
  16604. name: "Macro",
  16605. height: math.unit(100, "feet"),
  16606. default: true
  16607. },
  16608. {
  16609. name: "Macro+",
  16610. height: math.unit(200, "feet")
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16616. {
  16617. front: {
  16618. height: math.unit(6 + 1 / 12, "feet"),
  16619. weight: math.unit(210, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/hasani/front.svg",
  16623. extra: 244 / 232,
  16624. bottom: 0.01
  16625. }
  16626. },
  16627. back: {
  16628. height: math.unit(6 + 1 / 12, "feet"),
  16629. weight: math.unit(210, "lb"),
  16630. name: "Back",
  16631. image: {
  16632. source: "./media/characters/hasani/back.svg",
  16633. extra: 244 / 232,
  16634. bottom: 0.01
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Normal",
  16641. height: math.unit(6 + 1 / 12, "feet")
  16642. },
  16643. {
  16644. name: "Macro",
  16645. height: math.unit(175, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(1.82, "meters"),
  16655. weight: math.unit(140, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/nita/front.svg",
  16659. extra: 2473 / 2363,
  16660. bottom: 0.01
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(1.82, "m")
  16668. },
  16669. {
  16670. name: "Macro",
  16671. height: math.unit(300, "m")
  16672. },
  16673. {
  16674. name: "Mistake Canon",
  16675. height: math.unit(0.5, "miles"),
  16676. default: true
  16677. },
  16678. {
  16679. name: "Big Mistake",
  16680. height: math.unit(13, "miles")
  16681. },
  16682. {
  16683. name: "Playing God",
  16684. height: math.unit(2450, "miles")
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16690. {
  16691. front: {
  16692. height: math.unit(4, "feet"),
  16693. weight: math.unit(120, "lb"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/shiriko/front.svg",
  16697. extra: 195 / 188
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(4, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16711. {
  16712. front: {
  16713. height: math.unit(6, "feet"),
  16714. name: "front",
  16715. image: {
  16716. source: "./media/characters/deja/front.svg",
  16717. extra: 926 / 840,
  16718. bottom: 0.07
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Planck Length",
  16725. height: math.unit(1.6e-35, "meters")
  16726. },
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(30.48, "meters"),
  16730. default: true
  16731. },
  16732. {
  16733. name: "Universal",
  16734. height: math.unit(8.8e26, "meters")
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16740. {
  16741. side: {
  16742. height: math.unit(8, "feet"),
  16743. weight: math.unit(6300, "lb"),
  16744. name: "Side",
  16745. image: {
  16746. source: "./media/characters/anima/side.svg",
  16747. bottom: 0.035
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(8, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(8, "feet"),
  16764. weight: math.unit(350, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/bianca/front.svg",
  16768. extra: 234 / 225,
  16769. bottom: 0.03
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(8, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(150, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/adinia/front.svg",
  16790. extra: 1845 / 1672,
  16791. bottom: 0.02
  16792. }
  16793. },
  16794. back: {
  16795. height: math.unit(6, "feet"),
  16796. weight: math.unit(150, "lb"),
  16797. name: "Back",
  16798. image: {
  16799. source: "./media/characters/adinia/back.svg",
  16800. extra: 1845 / 1672,
  16801. bottom: 0.002
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(11 + 5 / 12, "feet"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(3, "meters"),
  16818. weight: math.unit(200, "kg"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/lykasa/front.svg",
  16822. extra: 1076 / 976,
  16823. bottom: 0.06
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(3, "meters")
  16831. },
  16832. {
  16833. name: "Kaiju",
  16834. height: math.unit(120, "meters"),
  16835. default: true
  16836. },
  16837. {
  16838. name: "Mega Kaiju",
  16839. height: math.unit(240, "km")
  16840. },
  16841. {
  16842. name: "Giga Kaiju",
  16843. height: math.unit(400, "megameters")
  16844. },
  16845. {
  16846. name: "Tera Kaiju",
  16847. height: math.unit(800, "gigameters")
  16848. },
  16849. {
  16850. name: "Kaiju Dragon Goddess",
  16851. height: math.unit(26, "zettaparsecs")
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16857. {
  16858. side: {
  16859. height: math.unit(283 / 124 * 6, "feet"),
  16860. weight: math.unit(35000, "lb"),
  16861. name: "Side",
  16862. image: {
  16863. source: "./media/characters/malfaren/side.svg",
  16864. extra: 2500 / 1010,
  16865. bottom: 0.01
  16866. }
  16867. },
  16868. front: {
  16869. height: math.unit(22.36, "feet"),
  16870. weight: math.unit(35000, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/malfaren/front.svg",
  16874. extra: 1631 / 1476,
  16875. bottom: 0.01
  16876. }
  16877. },
  16878. maw: {
  16879. height: math.unit(6.9, "feet"),
  16880. name: "Maw",
  16881. image: {
  16882. source: "./media/characters/malfaren/maw.svg"
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Big",
  16889. height: math.unit(283 / 162 * 6, "feet"),
  16890. },
  16891. {
  16892. name: "Bigger",
  16893. height: math.unit(283 / 124 * 6, "feet")
  16894. },
  16895. {
  16896. name: "Massive",
  16897. height: math.unit(283 / 92 * 6, "feet"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "👀💦",
  16902. height: math.unit(283 / 73 * 6, "feet"),
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(1.7, "m"),
  16911. weight: math.unit(70, "kg"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/kernel/front.svg",
  16915. extra: 222 / 210,
  16916. bottom: 0.007
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Nano",
  16923. height: math.unit(17, "micrometers")
  16924. },
  16925. {
  16926. name: "Micro",
  16927. height: math.unit(1.7, "mm")
  16928. },
  16929. {
  16930. name: "Small",
  16931. height: math.unit(1.7, "cm")
  16932. },
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(1.7, "m"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16942. {
  16943. front: {
  16944. height: math.unit(1.75, "meters"),
  16945. weight: math.unit(65, "kg"),
  16946. name: "Front",
  16947. image: {
  16948. source: "./media/characters/jayne-folest/front.svg",
  16949. extra: 2115 / 2007,
  16950. bottom: 0.02
  16951. }
  16952. },
  16953. back: {
  16954. height: math.unit(1.75, "meters"),
  16955. weight: math.unit(65, "kg"),
  16956. name: "Back",
  16957. image: {
  16958. source: "./media/characters/jayne-folest/back.svg",
  16959. extra: 2115 / 2007,
  16960. bottom: 0.005
  16961. }
  16962. },
  16963. frontClothed: {
  16964. height: math.unit(1.75, "meters"),
  16965. weight: math.unit(65, "kg"),
  16966. name: "Front (Clothed)",
  16967. image: {
  16968. source: "./media/characters/jayne-folest/front-clothed.svg",
  16969. extra: 2115 / 2007,
  16970. bottom: 0.035
  16971. }
  16972. },
  16973. hand: {
  16974. height: math.unit(1 / 1.260, "feet"),
  16975. name: "Hand",
  16976. image: {
  16977. source: "./media/characters/jayne-folest/hand.svg"
  16978. }
  16979. },
  16980. foot: {
  16981. height: math.unit(1 / 0.918, "feet"),
  16982. name: "Foot",
  16983. image: {
  16984. source: "./media/characters/jayne-folest/foot.svg"
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Micro",
  16991. height: math.unit(4, "cm")
  16992. },
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(1.75, "meters")
  16996. },
  16997. {
  16998. name: "Macro",
  16999. height: math.unit(47.5, "meters"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(180, "cm"),
  17009. weight: math.unit(70, "kg"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/algier/front.svg",
  17013. extra: 596 / 572,
  17014. bottom: 0.04
  17015. }
  17016. },
  17017. back: {
  17018. height: math.unit(180, "cm"),
  17019. weight: math.unit(70, "kg"),
  17020. name: "Back",
  17021. image: {
  17022. source: "./media/characters/algier/back.svg",
  17023. extra: 596 / 572,
  17024. bottom: 0.025
  17025. }
  17026. },
  17027. frontdressed: {
  17028. height: math.unit(180, "cm"),
  17029. weight: math.unit(150, "kg"),
  17030. name: "Front-dressed",
  17031. image: {
  17032. source: "./media/characters/algier/front-dressed.svg",
  17033. extra: 596 / 572,
  17034. bottom: 0.038
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Micro",
  17041. height: math.unit(5, "cm")
  17042. },
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(180, "cm"),
  17046. default: true
  17047. },
  17048. {
  17049. name: "Macro",
  17050. height: math.unit(64, "m")
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17056. {
  17057. upright: {
  17058. height: math.unit(7, "feet"),
  17059. weight: math.unit(300, "lb"),
  17060. name: "Upright",
  17061. image: {
  17062. source: "./media/characters/pretzel/upright.svg",
  17063. extra: 534 / 522,
  17064. bottom: 0.065
  17065. }
  17066. },
  17067. sprawling: {
  17068. height: math.unit(3.75, "feet"),
  17069. weight: math.unit(300, "lb"),
  17070. name: "Sprawling",
  17071. image: {
  17072. source: "./media/characters/pretzel/sprawling.svg",
  17073. extra: 314 / 281,
  17074. bottom: 0.1
  17075. }
  17076. },
  17077. tongue: {
  17078. height: math.unit(2, "feet"),
  17079. name: "Tongue",
  17080. image: {
  17081. source: "./media/characters/pretzel/tongue.svg"
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(7, "feet"),
  17089. default: true
  17090. },
  17091. {
  17092. name: "Oversized",
  17093. height: math.unit(15, "feet")
  17094. },
  17095. {
  17096. name: "Huge",
  17097. height: math.unit(30, "feet")
  17098. },
  17099. {
  17100. name: "Macro",
  17101. height: math.unit(250, "feet")
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17107. {
  17108. sideFront: {
  17109. height: math.unit(5 + 2 / 12, "feet"),
  17110. weight: math.unit(120, "lb"),
  17111. name: "Front Side",
  17112. image: {
  17113. source: "./media/characters/roxi/side-front.svg",
  17114. extra: 2924 / 2717,
  17115. bottom: 0.08
  17116. }
  17117. },
  17118. sideBack: {
  17119. height: math.unit(5 + 2 / 12, "feet"),
  17120. weight: math.unit(120, "lb"),
  17121. name: "Back Side",
  17122. image: {
  17123. source: "./media/characters/roxi/side-back.svg",
  17124. extra: 2904 / 2693,
  17125. bottom: 0.06
  17126. }
  17127. },
  17128. front: {
  17129. height: math.unit(5 + 2 / 12, "feet"),
  17130. weight: math.unit(120, "lb"),
  17131. name: "Front",
  17132. image: {
  17133. source: "./media/characters/roxi/front.svg",
  17134. extra: 2028 / 1907,
  17135. bottom: 0.01
  17136. }
  17137. },
  17138. frontAlt: {
  17139. height: math.unit(5 + 2 / 12, "feet"),
  17140. weight: math.unit(120, "lb"),
  17141. name: "Front (Alt)",
  17142. image: {
  17143. source: "./media/characters/roxi/front-alt.svg",
  17144. extra: 1828 / 1798,
  17145. bottom: 0.01
  17146. }
  17147. },
  17148. sitting: {
  17149. height: math.unit(2.8, "feet"),
  17150. weight: math.unit(120, "lb"),
  17151. name: "Sitting",
  17152. image: {
  17153. source: "./media/characters/roxi/sitting.svg",
  17154. extra: 2660 / 2462,
  17155. bottom: 0.1
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Normal",
  17162. height: math.unit(5 + 2 / 12, "feet"),
  17163. default: true
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17169. {
  17170. side: {
  17171. height: math.unit(55, "feet"),
  17172. weight: math.unit(153, "tons"),
  17173. name: "Side",
  17174. image: {
  17175. source: "./media/characters/shadow/side.svg",
  17176. extra: 701 / 628,
  17177. bottom: 0.02
  17178. }
  17179. },
  17180. flying: {
  17181. height: math.unit(145, "feet"),
  17182. weight: math.unit(153, "tons"),
  17183. name: "Flying",
  17184. image: {
  17185. source: "./media/characters/shadow/flying.svg"
  17186. }
  17187. },
  17188. },
  17189. [
  17190. {
  17191. name: "Normal",
  17192. height: math.unit(55, "feet"),
  17193. default: true
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17199. {
  17200. front: {
  17201. height: math.unit(6, "feet"),
  17202. weight: math.unit(200, "lb"),
  17203. name: "Front",
  17204. image: {
  17205. source: "./media/characters/marcie/front.svg",
  17206. extra: 960 / 876,
  17207. bottom: 58 / 1017.87
  17208. }
  17209. },
  17210. },
  17211. [
  17212. {
  17213. name: "Macro",
  17214. height: math.unit(1, "mile"),
  17215. default: true
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(7, "feet"),
  17224. weight: math.unit(200, "lb"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/kachina/front.svg",
  17228. extra: 1290.68 / 1119,
  17229. bottom: 36.5 / 1327.18
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(7, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17243. {
  17244. looking: {
  17245. height: math.unit(2, "meters"),
  17246. weight: math.unit(300, "kg"),
  17247. name: "Looking",
  17248. image: {
  17249. source: "./media/characters/kash/looking.svg",
  17250. extra: 474 / 344,
  17251. bottom: 0.03
  17252. }
  17253. },
  17254. side: {
  17255. height: math.unit(2, "meters"),
  17256. weight: math.unit(300, "kg"),
  17257. name: "Side",
  17258. image: {
  17259. source: "./media/characters/kash/side.svg",
  17260. extra: 302 / 251,
  17261. bottom: 0.03
  17262. }
  17263. },
  17264. front: {
  17265. height: math.unit(2, "meters"),
  17266. weight: math.unit(300, "kg"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/kash/front.svg",
  17270. extra: 495 / 360,
  17271. bottom: 0.015
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(2, "meters"),
  17279. default: true
  17280. },
  17281. {
  17282. name: "Big",
  17283. height: math.unit(3, "meters")
  17284. },
  17285. {
  17286. name: "Large",
  17287. height: math.unit(5, "meters")
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17293. {
  17294. feeding: {
  17295. height: math.unit(6.7, "feet"),
  17296. weight: math.unit(350, "lb"),
  17297. name: "Feeding",
  17298. image: {
  17299. source: "./media/characters/lalim/feeding.svg",
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Normal",
  17306. height: math.unit(6.7, "feet"),
  17307. default: true
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17313. {
  17314. front: {
  17315. height: math.unit(9.5, "feet"),
  17316. weight: math.unit(600, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/de'vout/front.svg",
  17320. extra: 1443 / 1328,
  17321. bottom: 0.025
  17322. }
  17323. },
  17324. back: {
  17325. height: math.unit(9.5, "feet"),
  17326. weight: math.unit(600, "lb"),
  17327. name: "Back",
  17328. image: {
  17329. source: "./media/characters/de'vout/back.svg",
  17330. extra: 1443 / 1328
  17331. }
  17332. },
  17333. frontDressed: {
  17334. height: math.unit(9.5, "feet"),
  17335. weight: math.unit(600, "lb"),
  17336. name: "Front (Dressed",
  17337. image: {
  17338. source: "./media/characters/de'vout/front-dressed.svg",
  17339. extra: 1443 / 1328,
  17340. bottom: 0.025
  17341. }
  17342. },
  17343. backDressed: {
  17344. height: math.unit(9.5, "feet"),
  17345. weight: math.unit(600, "lb"),
  17346. name: "Back (Dressed",
  17347. image: {
  17348. source: "./media/characters/de'vout/back-dressed.svg",
  17349. extra: 1443 / 1328
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(9.5, "feet"),
  17357. default: true
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17363. {
  17364. front: {
  17365. height: math.unit(8, "feet"),
  17366. weight: math.unit(225, "lb"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/talana/front.svg",
  17370. extra: 1410 / 1300,
  17371. bottom: 0.015
  17372. }
  17373. },
  17374. frontDressed: {
  17375. height: math.unit(8, "feet"),
  17376. weight: math.unit(225, "lb"),
  17377. name: "Front (Dressed",
  17378. image: {
  17379. source: "./media/characters/talana/front-dressed.svg",
  17380. extra: 1410 / 1300,
  17381. bottom: 0.015
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(8, "feet"),
  17389. default: true
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17395. {
  17396. side: {
  17397. height: math.unit(7.2, "feet"),
  17398. weight: math.unit(150, "lb"),
  17399. name: "Side",
  17400. image: {
  17401. source: "./media/characters/xeauvok/side.svg",
  17402. extra: 1975 / 1523,
  17403. bottom: 0.07
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(7.2, "feet"),
  17411. default: true
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17417. {
  17418. side: {
  17419. height: math.unit(10, "feet"),
  17420. weight: math.unit(900, "kg"),
  17421. name: "Side",
  17422. image: {
  17423. source: "./media/characters/zara/side.svg",
  17424. extra: 504 / 498
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(10, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17438. {
  17439. side: {
  17440. height: math.unit(6, "feet"),
  17441. weight: math.unit(150, "lb"),
  17442. name: "Side",
  17443. image: {
  17444. source: "./media/characters/richard-dragon/side.svg",
  17445. extra: 845 / 340,
  17446. bottom: 0.017
  17447. }
  17448. },
  17449. maw: {
  17450. height: math.unit(2.97, "feet"),
  17451. name: "Maw",
  17452. image: {
  17453. source: "./media/characters/richard-dragon/maw.svg"
  17454. }
  17455. },
  17456. },
  17457. [
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17462. {
  17463. front: {
  17464. height: math.unit(4, "feet"),
  17465. weight: math.unit(100, "lb"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/richard-smeargle/front.svg",
  17469. extra: 2952 / 2820,
  17470. bottom: 0.028
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(4, "feet"),
  17478. default: true
  17479. },
  17480. {
  17481. name: "Dynamax",
  17482. height: math.unit(20, "meters")
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17488. {
  17489. front: {
  17490. height: math.unit(6, "feet"),
  17491. weight: math.unit(110, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/klay/front.svg",
  17495. extra: 962 / 883,
  17496. bottom: 0.04
  17497. }
  17498. },
  17499. back: {
  17500. height: math.unit(6, "feet"),
  17501. weight: math.unit(110, "lb"),
  17502. name: "Back",
  17503. image: {
  17504. source: "./media/characters/klay/back.svg",
  17505. extra: 962 / 883
  17506. }
  17507. },
  17508. beans: {
  17509. height: math.unit(1.15, "feet"),
  17510. name: "Beans",
  17511. image: {
  17512. source: "./media/characters/klay/beans.svg"
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Micro",
  17519. height: math.unit(6, "inches")
  17520. },
  17521. {
  17522. name: "Mini",
  17523. height: math.unit(3, "feet")
  17524. },
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(6, "feet"),
  17528. default: true
  17529. },
  17530. {
  17531. name: "Big",
  17532. height: math.unit(25, "feet")
  17533. },
  17534. {
  17535. name: "Macro",
  17536. height: math.unit(100, "feet")
  17537. },
  17538. {
  17539. name: "Megamacro",
  17540. height: math.unit(400, "feet")
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(6, "feet"),
  17549. weight: math.unit(160, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/marcus/front.svg",
  17553. extra: 734 / 676,
  17554. bottom: 0.03
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Little",
  17561. height: math.unit(6, "feet")
  17562. },
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(110, "feet"),
  17566. default: true
  17567. },
  17568. {
  17569. name: "Macro",
  17570. height: math.unit(250, "feet")
  17571. },
  17572. {
  17573. name: "Megamacro",
  17574. height: math.unit(1000, "feet")
  17575. },
  17576. ]
  17577. ))
  17578. characterMakers.push(() => makeCharacter(
  17579. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17580. {
  17581. front: {
  17582. height: math.unit(7, "feet"),
  17583. weight: math.unit(275, "lb"),
  17584. name: "Front",
  17585. image: {
  17586. source: "./media/characters/claude-delroute/front.svg",
  17587. extra: 230 / 214,
  17588. bottom: 0.007
  17589. }
  17590. },
  17591. side: {
  17592. height: math.unit(7, "feet"),
  17593. weight: math.unit(275, "lb"),
  17594. name: "Side",
  17595. image: {
  17596. source: "./media/characters/claude-delroute/side.svg",
  17597. extra: 222 / 214,
  17598. bottom: 0.01
  17599. }
  17600. },
  17601. back: {
  17602. height: math.unit(7, "feet"),
  17603. weight: math.unit(275, "lb"),
  17604. name: "Back",
  17605. image: {
  17606. source: "./media/characters/claude-delroute/back.svg",
  17607. extra: 230 / 214,
  17608. bottom: 0.015
  17609. }
  17610. },
  17611. maw: {
  17612. height: math.unit(0.6407, "meters"),
  17613. name: "Maw",
  17614. image: {
  17615. source: "./media/characters/claude-delroute/maw.svg"
  17616. }
  17617. },
  17618. },
  17619. [
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(7, "feet"),
  17623. default: true
  17624. },
  17625. {
  17626. name: "Lorge",
  17627. height: math.unit(20, "feet")
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(8 + 4 / 12, "feet"),
  17636. weight: math.unit(600, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/dragonien/front.svg",
  17640. extra: 100 / 94,
  17641. bottom: 3.3 / 103.3445
  17642. }
  17643. },
  17644. back: {
  17645. height: math.unit(8 + 4 / 12, "feet"),
  17646. weight: math.unit(600, "lb"),
  17647. name: "Back",
  17648. image: {
  17649. source: "./media/characters/dragonien/back.svg",
  17650. extra: 776 / 746,
  17651. bottom: 6.4 / 782.0616
  17652. }
  17653. },
  17654. foot: {
  17655. height: math.unit(1.54, "feet"),
  17656. name: "Foot",
  17657. image: {
  17658. source: "./media/characters/dragonien/foot.svg",
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(8 + 4 / 12, "feet"),
  17666. default: true
  17667. },
  17668. {
  17669. name: "Macro",
  17670. height: math.unit(200, "feet")
  17671. },
  17672. {
  17673. name: "Megamacro",
  17674. height: math.unit(1, "mile")
  17675. },
  17676. {
  17677. name: "Gigamacro",
  17678. height: math.unit(1000, "miles")
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17684. {
  17685. front: {
  17686. height: math.unit(5 + 2 / 12, "feet"),
  17687. weight: math.unit(110, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/desta/front.svg",
  17691. extra: 767 / 726,
  17692. bottom: 11.7 / 779
  17693. }
  17694. },
  17695. back: {
  17696. height: math.unit(5 + 2 / 12, "feet"),
  17697. weight: math.unit(110, "lb"),
  17698. name: "Back",
  17699. image: {
  17700. source: "./media/characters/desta/back.svg",
  17701. extra: 777 / 728,
  17702. bottom: 6 / 784
  17703. }
  17704. },
  17705. frontAlt: {
  17706. height: math.unit(5 + 2 / 12, "feet"),
  17707. weight: math.unit(110, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/desta/front-alt.svg",
  17711. extra: 1482 / 1417
  17712. }
  17713. },
  17714. side: {
  17715. height: math.unit(5 + 2 / 12, "feet"),
  17716. weight: math.unit(110, "lb"),
  17717. name: "Side",
  17718. image: {
  17719. source: "./media/characters/desta/side.svg",
  17720. extra: 2579 / 2491,
  17721. bottom: 0.053
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Micro",
  17728. height: math.unit(6, "inches")
  17729. },
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(5 + 2 / 12, "feet"),
  17733. default: true
  17734. },
  17735. {
  17736. name: "Macro",
  17737. height: math.unit(62, "feet")
  17738. },
  17739. {
  17740. name: "Megamacro",
  17741. height: math.unit(1800, "feet")
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17747. {
  17748. front: {
  17749. height: math.unit(10, "feet"),
  17750. weight: math.unit(700, "lb"),
  17751. name: "Front",
  17752. image: {
  17753. source: "./media/characters/storm-alystar/front.svg",
  17754. extra: 2112 / 1898,
  17755. bottom: 0.034
  17756. }
  17757. },
  17758. },
  17759. [
  17760. {
  17761. name: "Micro",
  17762. height: math.unit(3.5, "inches")
  17763. },
  17764. {
  17765. name: "Normal",
  17766. height: math.unit(10, "feet"),
  17767. default: true
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(400, "feet")
  17772. },
  17773. {
  17774. name: "Deific",
  17775. height: math.unit(60, "miles")
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17781. {
  17782. front: {
  17783. height: math.unit(2.35, "meters"),
  17784. weight: math.unit(119, "kg"),
  17785. name: "Front",
  17786. image: {
  17787. source: "./media/characters/ilia/front.svg",
  17788. extra: 1285 / 1255,
  17789. bottom: 0.06
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(2.35, "meters")
  17797. },
  17798. {
  17799. name: "Macro",
  17800. height: math.unit(140, "meters"),
  17801. default: true
  17802. },
  17803. {
  17804. name: "Megamacro",
  17805. height: math.unit(100, "miles")
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17811. {
  17812. front: {
  17813. height: math.unit(6 + 5 / 12, "feet"),
  17814. weight: math.unit(190, "lb"),
  17815. name: "Front",
  17816. image: {
  17817. source: "./media/characters/kingdead/front.svg",
  17818. extra: 1228 / 1177
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Micro",
  17825. height: math.unit(7, "inches")
  17826. },
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(6 + 5 / 12, "feet")
  17830. },
  17831. {
  17832. name: "Macro",
  17833. height: math.unit(150, "feet"),
  17834. default: true
  17835. },
  17836. {
  17837. name: "Megamacro",
  17838. height: math.unit(200, "miles")
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17844. {
  17845. front: {
  17846. height: math.unit(8, "feet"),
  17847. weight: math.unit(600, "lb"),
  17848. name: "Front",
  17849. image: {
  17850. source: "./media/characters/kyrehx/front.svg",
  17851. extra: 1195 / 1095,
  17852. bottom: 0.034
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Micro",
  17859. height: math.unit(2, "inches")
  17860. },
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(8, "feet"),
  17864. default: true
  17865. },
  17866. {
  17867. name: "Macro",
  17868. height: math.unit(255, "feet")
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17877. weight: math.unit(184, "lb"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/xang/front.svg",
  17881. extra: 845 / 755
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17889. default: true
  17890. },
  17891. {
  17892. name: "Macro",
  17893. height: math.unit(0.935 * 146, "feet")
  17894. },
  17895. {
  17896. name: "Megamacro",
  17897. height: math.unit(0.935 * 3, "miles")
  17898. },
  17899. ]
  17900. ))
  17901. characterMakers.push(() => makeCharacter(
  17902. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17903. {
  17904. frontDressed: {
  17905. height: math.unit(5 + 7 / 12, "feet"),
  17906. weight: math.unit(140, "lb"),
  17907. name: "Front (Dressed)",
  17908. image: {
  17909. source: "./media/characters/doc-weardno/front-dressed.svg",
  17910. extra: 263 / 234
  17911. }
  17912. },
  17913. backDressed: {
  17914. height: math.unit(5 + 7 / 12, "feet"),
  17915. weight: math.unit(140, "lb"),
  17916. name: "Back (Dressed)",
  17917. image: {
  17918. source: "./media/characters/doc-weardno/back-dressed.svg",
  17919. extra: 266 / 238
  17920. }
  17921. },
  17922. front: {
  17923. height: math.unit(5 + 7 / 12, "feet"),
  17924. weight: math.unit(140, "lb"),
  17925. name: "Front",
  17926. image: {
  17927. source: "./media/characters/doc-weardno/front.svg",
  17928. extra: 254 / 233
  17929. }
  17930. },
  17931. },
  17932. [
  17933. {
  17934. name: "Micro",
  17935. height: math.unit(3, "inches")
  17936. },
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(5 + 7 / 12, "feet"),
  17940. default: true
  17941. },
  17942. {
  17943. name: "Macro",
  17944. height: math.unit(25, "feet")
  17945. },
  17946. {
  17947. name: "Megamacro",
  17948. height: math.unit(2, "miles")
  17949. },
  17950. ]
  17951. ))
  17952. characterMakers.push(() => makeCharacter(
  17953. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17954. {
  17955. front: {
  17956. height: math.unit(6 + 2 / 12, "feet"),
  17957. weight: math.unit(153, "lb"),
  17958. name: "Front",
  17959. image: {
  17960. source: "./media/characters/seth-whilst/front.svg",
  17961. bottom: 0.07
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Micro",
  17968. height: math.unit(5, "inches")
  17969. },
  17970. {
  17971. name: "Normal",
  17972. height: math.unit(6 + 2 / 12, "feet"),
  17973. default: true
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17979. {
  17980. front: {
  17981. height: math.unit(3, "inches"),
  17982. weight: math.unit(8, "grams"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/pocket-jabari/front.svg",
  17986. extra: 1024 / 974,
  17987. bottom: 0.039
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Minimicro",
  17994. height: math.unit(8, "mm")
  17995. },
  17996. {
  17997. name: "Micro",
  17998. height: math.unit(3, "inches"),
  17999. default: true
  18000. },
  18001. {
  18002. name: "Normal",
  18003. height: math.unit(3, "feet")
  18004. },
  18005. ]
  18006. ))
  18007. characterMakers.push(() => makeCharacter(
  18008. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18009. {
  18010. front: {
  18011. height: math.unit(15, "feet"),
  18012. weight: math.unit(3280, "lb"),
  18013. name: "Front",
  18014. image: {
  18015. source: "./media/characters/sapphy/front.svg",
  18016. extra: 671 / 577,
  18017. bottom: 0.085
  18018. }
  18019. },
  18020. back: {
  18021. height: math.unit(15, "feet"),
  18022. weight: math.unit(3280, "lb"),
  18023. name: "Back",
  18024. image: {
  18025. source: "./media/characters/sapphy/back.svg",
  18026. extra: 631 / 607,
  18027. bottom: 0.045
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Normal",
  18034. height: math.unit(15, "feet")
  18035. },
  18036. {
  18037. name: "Casual Macro",
  18038. height: math.unit(120, "feet")
  18039. },
  18040. {
  18041. name: "Macro",
  18042. height: math.unit(2150, "feet"),
  18043. default: true
  18044. },
  18045. {
  18046. name: "Megamacro",
  18047. height: math.unit(8, "miles")
  18048. },
  18049. {
  18050. name: "Galaxy Mom",
  18051. height: math.unit(6, "megalightyears")
  18052. },
  18053. ]
  18054. ))
  18055. characterMakers.push(() => makeCharacter(
  18056. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18057. {
  18058. front: {
  18059. height: math.unit(6, "feet"),
  18060. weight: math.unit(170, "lb"),
  18061. name: "Front",
  18062. image: {
  18063. source: "./media/characters/kiro/front.svg",
  18064. extra: 1064 / 1012,
  18065. bottom: 0.052
  18066. }
  18067. },
  18068. },
  18069. [
  18070. {
  18071. name: "Micro",
  18072. height: math.unit(6, "inches")
  18073. },
  18074. {
  18075. name: "Normal",
  18076. height: math.unit(6, "feet"),
  18077. default: true
  18078. },
  18079. {
  18080. name: "Macro",
  18081. height: math.unit(72, "feet")
  18082. },
  18083. ]
  18084. ))
  18085. characterMakers.push(() => makeCharacter(
  18086. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18087. {
  18088. front: {
  18089. height: math.unit(5 + 9 / 12, "feet"),
  18090. weight: math.unit(175, "lb"),
  18091. name: "Front",
  18092. image: {
  18093. source: "./media/characters/irishfox/front.svg",
  18094. extra: 1912 / 1680,
  18095. bottom: 0.02
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Nano",
  18102. height: math.unit(1, "mm")
  18103. },
  18104. {
  18105. name: "Micro",
  18106. height: math.unit(2, "inches")
  18107. },
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(5 + 9 / 12, "feet"),
  18111. default: true
  18112. },
  18113. {
  18114. name: "Macro",
  18115. height: math.unit(45, "feet")
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18121. {
  18122. front: {
  18123. height: math.unit(6 + 1 / 12, "feet"),
  18124. weight: math.unit(150, "lb"),
  18125. name: "Front",
  18126. image: {
  18127. source: "./media/characters/aronai-sieyes/front.svg",
  18128. extra: 1556 / 1480,
  18129. bottom: 0.015
  18130. }
  18131. },
  18132. side: {
  18133. height: math.unit(6 + 1 / 12, "feet"),
  18134. weight: math.unit(150, "lb"),
  18135. name: "Side",
  18136. image: {
  18137. source: "./media/characters/aronai-sieyes/side.svg",
  18138. extra: 1433 / 1390,
  18139. bottom: 0.0393
  18140. }
  18141. },
  18142. back: {
  18143. height: math.unit(6 + 1 / 12, "feet"),
  18144. weight: math.unit(150, "lb"),
  18145. name: "Back",
  18146. image: {
  18147. source: "./media/characters/aronai-sieyes/back.svg",
  18148. extra: 1544 / 1494,
  18149. bottom: 0.02
  18150. }
  18151. },
  18152. frontClothed: {
  18153. height: math.unit(6 + 1 / 12, "feet"),
  18154. weight: math.unit(150, "lb"),
  18155. name: "Front (Clothed)",
  18156. image: {
  18157. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18158. extra: 1582 / 1527
  18159. }
  18160. },
  18161. feral: {
  18162. height: math.unit(18, "feet"),
  18163. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18164. name: "Feral",
  18165. image: {
  18166. source: "./media/characters/aronai-sieyes/feral.svg",
  18167. extra: 1530 / 1240,
  18168. bottom: 0.035
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Micro",
  18175. height: math.unit(2, "inches")
  18176. },
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(6 + 1 / 12, "feet"),
  18180. default: true
  18181. }
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18186. {
  18187. front: {
  18188. height: math.unit(12, "feet"),
  18189. weight: math.unit(410, "kg"),
  18190. name: "Front",
  18191. image: {
  18192. source: "./media/characters/xuna/front.svg",
  18193. extra: 2184 / 1980
  18194. }
  18195. },
  18196. side: {
  18197. height: math.unit(12, "feet"),
  18198. weight: math.unit(410, "kg"),
  18199. name: "Side",
  18200. image: {
  18201. source: "./media/characters/xuna/side.svg",
  18202. extra: 2184 / 1980
  18203. }
  18204. },
  18205. back: {
  18206. height: math.unit(12, "feet"),
  18207. weight: math.unit(410, "kg"),
  18208. name: "Back",
  18209. image: {
  18210. source: "./media/characters/xuna/back.svg",
  18211. extra: 2184 / 1980
  18212. }
  18213. },
  18214. },
  18215. [
  18216. {
  18217. name: "Nano glow",
  18218. height: math.unit(10, "nm")
  18219. },
  18220. {
  18221. name: "Micro floof",
  18222. height: math.unit(0.3, "m")
  18223. },
  18224. {
  18225. name: "Huggable softy boi",
  18226. height: math.unit(3.6576, "m"),
  18227. default: true
  18228. },
  18229. {
  18230. name: "Admirable floof",
  18231. height: math.unit(80, "meters")
  18232. },
  18233. {
  18234. name: "Gentle macro",
  18235. height: math.unit(300, "meters")
  18236. },
  18237. {
  18238. name: "Very careful floof",
  18239. height: math.unit(3200, "meters")
  18240. },
  18241. {
  18242. name: "The mega floof",
  18243. height: math.unit(36000, "meters")
  18244. },
  18245. {
  18246. name: "Giga-fur-Wicker",
  18247. height: math.unit(4800000, "meters")
  18248. },
  18249. {
  18250. name: "Licky world",
  18251. height: math.unit(20000000, "meters")
  18252. },
  18253. {
  18254. name: "Floofy cyan sun",
  18255. height: math.unit(1500000000, "meters")
  18256. },
  18257. {
  18258. name: "Milky Wicker",
  18259. height: math.unit(1000000000000000000000, "meters")
  18260. },
  18261. {
  18262. name: "The observing Wicker",
  18263. height: math.unit(999999999999999999999999999, "meters")
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18269. {
  18270. front: {
  18271. height: math.unit(5 + 9 / 12, "feet"),
  18272. weight: math.unit(150, "lb"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/arokha-sieyes/front.svg",
  18276. extra: 1425 / 1284,
  18277. bottom: 0.05
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Normal",
  18284. height: math.unit(5 + 9 / 12, "feet")
  18285. },
  18286. {
  18287. name: "Macro",
  18288. height: math.unit(30, "meters"),
  18289. default: true
  18290. },
  18291. ]
  18292. ))
  18293. characterMakers.push(() => makeCharacter(
  18294. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18295. {
  18296. front: {
  18297. height: math.unit(6, "feet"),
  18298. weight: math.unit(180, "lb"),
  18299. name: "Front",
  18300. image: {
  18301. source: "./media/characters/arokh-sieyes/front.svg",
  18302. extra: 1830 / 1769,
  18303. bottom: 0.01
  18304. }
  18305. },
  18306. },
  18307. [
  18308. {
  18309. name: "Normal",
  18310. height: math.unit(6, "feet")
  18311. },
  18312. {
  18313. name: "Macro",
  18314. height: math.unit(30, "meters"),
  18315. default: true
  18316. },
  18317. ]
  18318. ))
  18319. characterMakers.push(() => makeCharacter(
  18320. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18321. {
  18322. side: {
  18323. height: math.unit(13 + 1 / 12, "feet"),
  18324. weight: math.unit(8.5, "tonnes"),
  18325. name: "Side",
  18326. image: {
  18327. source: "./media/characters/goldeneye/side.svg",
  18328. extra: 1182 / 778,
  18329. bottom: 0.067
  18330. }
  18331. },
  18332. paw: {
  18333. height: math.unit(3.4, "feet"),
  18334. name: "Paw",
  18335. image: {
  18336. source: "./media/characters/goldeneye/paw.svg"
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(13 + 1 / 12, "feet"),
  18344. default: true
  18345. },
  18346. ]
  18347. ))
  18348. characterMakers.push(() => makeCharacter(
  18349. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18350. {
  18351. front: {
  18352. height: math.unit(6 + 1 / 12, "feet"),
  18353. weight: math.unit(210, "lb"),
  18354. name: "Front",
  18355. image: {
  18356. source: "./media/characters/leonardo-lycheborne/front.svg",
  18357. extra: 390 / 365,
  18358. bottom: 0.032
  18359. }
  18360. },
  18361. side: {
  18362. height: math.unit(6 + 1 / 12, "feet"),
  18363. weight: math.unit(210, "lb"),
  18364. name: "Side",
  18365. image: {
  18366. source: "./media/characters/leonardo-lycheborne/side.svg",
  18367. extra: 390 / 365,
  18368. bottom: 0.005
  18369. }
  18370. },
  18371. back: {
  18372. height: math.unit(6 + 1 / 12, "feet"),
  18373. weight: math.unit(210, "lb"),
  18374. name: "Back",
  18375. image: {
  18376. source: "./media/characters/leonardo-lycheborne/back.svg",
  18377. extra: 392 / 366,
  18378. bottom: 0.01
  18379. }
  18380. },
  18381. hand: {
  18382. height: math.unit(1.08, "feet"),
  18383. name: "Hand",
  18384. image: {
  18385. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18386. }
  18387. },
  18388. foot: {
  18389. height: math.unit(1.32, "feet"),
  18390. name: "Foot",
  18391. image: {
  18392. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18393. }
  18394. },
  18395. were: {
  18396. height: math.unit(20, "feet"),
  18397. weight: math.unit(7800, "lb"),
  18398. name: "Were",
  18399. image: {
  18400. source: "./media/characters/leonardo-lycheborne/were.svg",
  18401. extra: 308 / 294,
  18402. bottom: 0.048
  18403. }
  18404. },
  18405. feral: {
  18406. height: math.unit(7.5, "feet"),
  18407. weight: math.unit(600, "lb"),
  18408. name: "Feral",
  18409. image: {
  18410. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18411. extra: 210 / 186,
  18412. bottom: 0.108
  18413. }
  18414. },
  18415. taur: {
  18416. height: math.unit(11, "feet"),
  18417. weight: math.unit(3300, "lb"),
  18418. name: "Taur",
  18419. image: {
  18420. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18421. extra: 320 / 303,
  18422. bottom: 0.025
  18423. }
  18424. },
  18425. barghest: {
  18426. height: math.unit(11, "feet"),
  18427. weight: math.unit(1300, "lb"),
  18428. name: "Barghest",
  18429. image: {
  18430. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18431. extra: 323 / 302,
  18432. bottom: 0.027
  18433. }
  18434. },
  18435. dick: {
  18436. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18437. name: "Dick",
  18438. image: {
  18439. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18440. }
  18441. },
  18442. dickWere: {
  18443. height: math.unit((20) / 3.8, "feet"),
  18444. name: "Dick (Were)",
  18445. image: {
  18446. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(6 + 1 / 12, "feet"),
  18454. default: true
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(10, "feet"),
  18463. weight: math.unit(350, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/jet/front.svg",
  18467. extra: 2050 / 1980,
  18468. bottom: 0.013
  18469. }
  18470. },
  18471. back: {
  18472. height: math.unit(10, "feet"),
  18473. weight: math.unit(350, "lb"),
  18474. name: "Back",
  18475. image: {
  18476. source: "./media/characters/jet/back.svg",
  18477. extra: 2050 / 1980,
  18478. bottom: 0.013
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Micro",
  18485. height: math.unit(6, "inches")
  18486. },
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(10, "feet"),
  18490. default: true
  18491. },
  18492. {
  18493. name: "Macro",
  18494. height: math.unit(100, "feet")
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18500. {
  18501. front: {
  18502. height: math.unit(15, "feet"),
  18503. weight: math.unit(2800, "lb"),
  18504. name: "Front",
  18505. image: {
  18506. source: "./media/characters/tanarath/front.svg",
  18507. extra: 2392 / 2220,
  18508. bottom: 0.03
  18509. }
  18510. },
  18511. back: {
  18512. height: math.unit(15, "feet"),
  18513. weight: math.unit(2800, "lb"),
  18514. name: "Back",
  18515. image: {
  18516. source: "./media/characters/tanarath/back.svg",
  18517. extra: 2392 / 2220,
  18518. bottom: 0.03
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Normal",
  18525. height: math.unit(15, "feet"),
  18526. default: true
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(7 + 1 / 12, "feet"),
  18535. weight: math.unit(175, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/patty-cattybatty/front.svg",
  18539. extra: 908 / 874,
  18540. bottom: 0.025
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Micro",
  18547. height: math.unit(1, "inch")
  18548. },
  18549. {
  18550. name: "Normal",
  18551. height: math.unit(7 + 1 / 12, "feet")
  18552. },
  18553. {
  18554. name: "Mini Macro",
  18555. height: math.unit(155, "feet")
  18556. },
  18557. {
  18558. name: "Macro",
  18559. height: math.unit(1077, "feet")
  18560. },
  18561. {
  18562. name: "Mega Macro",
  18563. height: math.unit(47650, "feet"),
  18564. default: true
  18565. },
  18566. {
  18567. name: "Giga Macro",
  18568. height: math.unit(440, "miles")
  18569. },
  18570. {
  18571. name: "Tera Macro",
  18572. height: math.unit(8700, "miles")
  18573. },
  18574. {
  18575. name: "Planetary Macro",
  18576. height: math.unit(32700, "miles")
  18577. },
  18578. {
  18579. name: "Solar Macro",
  18580. height: math.unit(550000, "miles")
  18581. },
  18582. {
  18583. name: "Celestial Macro",
  18584. height: math.unit(2.5, "AU")
  18585. },
  18586. ]
  18587. ))
  18588. characterMakers.push(() => makeCharacter(
  18589. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18590. {
  18591. front: {
  18592. height: math.unit(4 + 5 / 12, "feet"),
  18593. weight: math.unit(90, "lb"),
  18594. name: "Front",
  18595. image: {
  18596. source: "./media/characters/cappu/front.svg",
  18597. extra: 1247 / 1152,
  18598. bottom: 0.012
  18599. }
  18600. },
  18601. },
  18602. [
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(4 + 5 / 12, "feet"),
  18606. default: true
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18612. {
  18613. frontDressed: {
  18614. height: math.unit(70, "cm"),
  18615. weight: math.unit(6, "kg"),
  18616. name: "Front (Dressed)",
  18617. image: {
  18618. source: "./media/characters/sebi/front-dressed.svg",
  18619. extra: 713.5 / 686.5,
  18620. bottom: 0.003
  18621. }
  18622. },
  18623. front: {
  18624. height: math.unit(70, "cm"),
  18625. weight: math.unit(5, "kg"),
  18626. name: "Front",
  18627. image: {
  18628. source: "./media/characters/sebi/front.svg",
  18629. extra: 713.5 / 686.5,
  18630. bottom: 0.003
  18631. }
  18632. }
  18633. },
  18634. [
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(70, "cm"),
  18638. default: true
  18639. },
  18640. {
  18641. name: "Macro",
  18642. height: math.unit(8, "meters")
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18648. {
  18649. front: {
  18650. height: math.unit(6, "feet"),
  18651. weight: math.unit(150, "lb"),
  18652. name: "Front",
  18653. image: {
  18654. source: "./media/characters/typhek/front.svg",
  18655. extra: 1948 / 1929,
  18656. bottom: 0.025
  18657. }
  18658. },
  18659. side: {
  18660. height: math.unit(6, "feet"),
  18661. weight: math.unit(150, "lb"),
  18662. name: "Side",
  18663. image: {
  18664. source: "./media/characters/typhek/side.svg",
  18665. extra: 2034 / 2010,
  18666. bottom: 0.003
  18667. }
  18668. },
  18669. back: {
  18670. height: math.unit(6, "feet"),
  18671. weight: math.unit(150, "lb"),
  18672. name: "Back",
  18673. image: {
  18674. source: "./media/characters/typhek/back.svg",
  18675. extra: 2005 / 1978,
  18676. bottom: 0.004
  18677. }
  18678. },
  18679. palm: {
  18680. height: math.unit(1.2, "feet"),
  18681. name: "Palm",
  18682. image: {
  18683. source: "./media/characters/typhek/palm.svg"
  18684. }
  18685. },
  18686. fist: {
  18687. height: math.unit(1.1, "feet"),
  18688. name: "Fist",
  18689. image: {
  18690. source: "./media/characters/typhek/fist.svg"
  18691. }
  18692. },
  18693. foot: {
  18694. height: math.unit(1.57, "feet"),
  18695. name: "Foot",
  18696. image: {
  18697. source: "./media/characters/typhek/foot.svg"
  18698. }
  18699. },
  18700. sole: {
  18701. height: math.unit(2.05, "feet"),
  18702. name: "Sole",
  18703. image: {
  18704. source: "./media/characters/typhek/sole.svg"
  18705. }
  18706. },
  18707. },
  18708. [
  18709. {
  18710. name: "Macro",
  18711. height: math.unit(40, "stories"),
  18712. default: true
  18713. },
  18714. {
  18715. name: "Megamacro",
  18716. height: math.unit(1, "mile")
  18717. },
  18718. {
  18719. name: "Gigamacro",
  18720. height: math.unit(4000, "solarradii")
  18721. },
  18722. {
  18723. name: "Universal",
  18724. height: math.unit(1.1, "universes")
  18725. }
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18730. {
  18731. side: {
  18732. height: math.unit(5 + 7 / 12, "feet"),
  18733. weight: math.unit(150, "lb"),
  18734. name: "Side",
  18735. image: {
  18736. source: "./media/characters/kassy/side.svg",
  18737. extra: 1280 / 1225,
  18738. bottom: 0.002
  18739. }
  18740. },
  18741. front: {
  18742. height: math.unit(5 + 7 / 12, "feet"),
  18743. weight: math.unit(150, "lb"),
  18744. name: "Front",
  18745. image: {
  18746. source: "./media/characters/kassy/front.svg",
  18747. extra: 1280 / 1225,
  18748. bottom: 0.025
  18749. }
  18750. },
  18751. back: {
  18752. height: math.unit(5 + 7 / 12, "feet"),
  18753. weight: math.unit(150, "lb"),
  18754. name: "Back",
  18755. image: {
  18756. source: "./media/characters/kassy/back.svg",
  18757. extra: 1280 / 1225,
  18758. bottom: 0.002
  18759. }
  18760. },
  18761. foot: {
  18762. height: math.unit(1.266, "feet"),
  18763. name: "Foot",
  18764. image: {
  18765. source: "./media/characters/kassy/foot.svg"
  18766. }
  18767. },
  18768. },
  18769. [
  18770. {
  18771. name: "Normal",
  18772. height: math.unit(5 + 7 / 12, "feet")
  18773. },
  18774. {
  18775. name: "Macro",
  18776. height: math.unit(137, "feet"),
  18777. default: true
  18778. },
  18779. {
  18780. name: "Megamacro",
  18781. height: math.unit(1, "mile")
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(6 + 1 / 12, "feet"),
  18790. weight: math.unit(200, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/neil/front.svg",
  18794. extra: 1326 / 1250,
  18795. bottom: 0.023
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(6 + 1 / 12, "feet"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Macro",
  18807. height: math.unit(200, "feet")
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(5 + 9 / 12, "feet"),
  18816. weight: math.unit(190, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/atticus/front.svg",
  18820. extra: 2934 / 2785,
  18821. bottom: 0.025
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(5 + 9 / 12, "feet"),
  18829. default: true
  18830. },
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(180, "feet")
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18839. {
  18840. side: {
  18841. height: math.unit(9, "feet"),
  18842. weight: math.unit(650, "lb"),
  18843. name: "Side",
  18844. image: {
  18845. source: "./media/characters/milo/side.svg",
  18846. extra: 2644 / 2310,
  18847. bottom: 0.032
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(9, "feet"),
  18855. default: true
  18856. },
  18857. {
  18858. name: "Macro",
  18859. height: math.unit(300, "feet")
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18865. {
  18866. side: {
  18867. height: math.unit(8, "meters"),
  18868. weight: math.unit(90000, "kg"),
  18869. name: "Side",
  18870. image: {
  18871. source: "./media/characters/ijzer/side.svg",
  18872. extra: 2756 / 1600,
  18873. bottom: 0.01
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Small",
  18880. height: math.unit(3, "meters")
  18881. },
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(8, "meters"),
  18885. default: true
  18886. },
  18887. {
  18888. name: "Normal+",
  18889. height: math.unit(10, "meters")
  18890. },
  18891. {
  18892. name: "Bigger",
  18893. height: math.unit(24, "meters")
  18894. },
  18895. {
  18896. name: "Huge",
  18897. height: math.unit(80, "meters")
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18903. {
  18904. front: {
  18905. height: math.unit(6 + 2 / 12, "feet"),
  18906. weight: math.unit(153, "lb"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/luca-cervicum/front.svg",
  18910. extra: 370 / 327,
  18911. bottom: 0.015
  18912. }
  18913. },
  18914. back: {
  18915. height: math.unit(6 + 2 / 12, "feet"),
  18916. weight: math.unit(153, "lb"),
  18917. name: "Back",
  18918. image: {
  18919. source: "./media/characters/luca-cervicum/back.svg",
  18920. extra: 367 / 333,
  18921. bottom: 0.005
  18922. }
  18923. },
  18924. frontGear: {
  18925. height: math.unit(6 + 2 / 12, "feet"),
  18926. weight: math.unit(173, "lb"),
  18927. name: "Front (Gear)",
  18928. image: {
  18929. source: "./media/characters/luca-cervicum/front-gear.svg",
  18930. extra: 377 / 333,
  18931. bottom: 0.006
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(6 + 2 / 12, "feet"),
  18939. default: true
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18945. {
  18946. front: {
  18947. height: math.unit(6 + 1 / 12, "feet"),
  18948. weight: math.unit(304, "lb"),
  18949. name: "Front",
  18950. image: {
  18951. source: "./media/characters/oliver/front.svg",
  18952. extra: 157 / 143,
  18953. bottom: 0.08
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(6 + 1 / 12, "feet"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18967. {
  18968. front: {
  18969. height: math.unit(5 + 7 / 12, "feet"),
  18970. weight: math.unit(140, "lb"),
  18971. name: "Front",
  18972. image: {
  18973. source: "./media/characters/shane/front.svg",
  18974. extra: 304 / 289,
  18975. bottom: 0.005
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Normal",
  18982. height: math.unit(5 + 7 / 12, "feet"),
  18983. default: true
  18984. },
  18985. ]
  18986. ))
  18987. characterMakers.push(() => makeCharacter(
  18988. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18989. {
  18990. front: {
  18991. height: math.unit(5 + 9 / 12, "feet"),
  18992. weight: math.unit(178, "lb"),
  18993. name: "Front",
  18994. image: {
  18995. source: "./media/characters/shin/front.svg",
  18996. extra: 159 / 151,
  18997. bottom: 0.015
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Normal",
  19004. height: math.unit(5 + 9 / 12, "feet"),
  19005. default: true
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(5 + 10 / 12, "feet"),
  19014. weight: math.unit(168, "lb"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/xerxes/front.svg",
  19018. extra: 282 / 260,
  19019. bottom: 0.045
  19020. }
  19021. },
  19022. },
  19023. [
  19024. {
  19025. name: "Normal",
  19026. height: math.unit(5 + 10 / 12, "feet"),
  19027. default: true
  19028. },
  19029. ]
  19030. ))
  19031. characterMakers.push(() => makeCharacter(
  19032. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19033. {
  19034. front: {
  19035. height: math.unit(6 + 7 / 12, "feet"),
  19036. weight: math.unit(208, "lb"),
  19037. name: "Front",
  19038. image: {
  19039. source: "./media/characters/chaska/front.svg",
  19040. extra: 332 / 319,
  19041. bottom: 0.015
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(6 + 7 / 12, "feet"),
  19049. default: true
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(5 + 8 / 12, "feet"),
  19058. weight: math.unit(208, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/enuk/front.svg",
  19062. extra: 437 / 406,
  19063. bottom: 0.02
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(5 + 8 / 12, "feet"),
  19071. default: true
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19077. {
  19078. front: {
  19079. height: math.unit(5 + 10 / 12, "feet"),
  19080. weight: math.unit(252, "lb"),
  19081. name: "Front",
  19082. image: {
  19083. source: "./media/characters/bruun/front.svg",
  19084. extra: 197 / 187,
  19085. bottom: 0.012
  19086. }
  19087. },
  19088. },
  19089. [
  19090. {
  19091. name: "Normal",
  19092. height: math.unit(5 + 10 / 12, "feet"),
  19093. default: true
  19094. },
  19095. ]
  19096. ))
  19097. characterMakers.push(() => makeCharacter(
  19098. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19099. {
  19100. front: {
  19101. height: math.unit(6 + 10 / 12, "feet"),
  19102. weight: math.unit(255, "lb"),
  19103. name: "Front",
  19104. image: {
  19105. source: "./media/characters/alexeev/front.svg",
  19106. extra: 213 / 200,
  19107. bottom: 0.05
  19108. }
  19109. },
  19110. },
  19111. [
  19112. {
  19113. name: "Normal",
  19114. height: math.unit(6 + 10 / 12, "feet"),
  19115. default: true
  19116. },
  19117. ]
  19118. ))
  19119. characterMakers.push(() => makeCharacter(
  19120. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19121. {
  19122. front: {
  19123. height: math.unit(2 + 8 / 12, "feet"),
  19124. weight: math.unit(22, "lb"),
  19125. name: "Front",
  19126. image: {
  19127. source: "./media/characters/evelyn/front.svg",
  19128. extra: 208 / 180
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(2 + 8 / 12, "feet"),
  19136. default: true
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(5 + 9 / 12, "feet"),
  19145. weight: math.unit(139, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/inca/front.svg",
  19149. extra: 294 / 291,
  19150. bottom: 0.03
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(5 + 9 / 12, "feet"),
  19158. default: true
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(5 + 1 / 12, "feet"),
  19167. weight: math.unit(84, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/magdalene/front.svg",
  19171. extra: 293 / 273
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Normal",
  19178. height: math.unit(5 + 1 / 12, "feet"),
  19179. default: true
  19180. },
  19181. ]
  19182. ))
  19183. characterMakers.push(() => makeCharacter(
  19184. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19185. {
  19186. front: {
  19187. height: math.unit(6 + 3 / 12, "feet"),
  19188. weight: math.unit(185, "lb"),
  19189. name: "Front",
  19190. image: {
  19191. source: "./media/characters/mera/front.svg",
  19192. extra: 291 / 277,
  19193. bottom: 0.03
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(6 + 3 / 12, "feet"),
  19201. default: true
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19207. {
  19208. front: {
  19209. height: math.unit(6 + 7 / 12, "feet"),
  19210. weight: math.unit(160, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/ceres/front.svg",
  19214. extra: 1023 / 950,
  19215. bottom: 0.027
  19216. }
  19217. },
  19218. back: {
  19219. height: math.unit(6 + 7 / 12, "feet"),
  19220. weight: math.unit(160, "lb"),
  19221. name: "Back",
  19222. image: {
  19223. source: "./media/characters/ceres/back.svg",
  19224. extra: 1023 / 950
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(6 + 7 / 12, "feet"),
  19232. default: true
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19238. {
  19239. front: {
  19240. height: math.unit(5 + 10 / 12, "feet"),
  19241. weight: math.unit(150, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/kris/front.svg",
  19245. extra: 885 / 803,
  19246. bottom: 0.03
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(5 + 10 / 12, "feet"),
  19254. default: true
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(7, "feet"),
  19263. weight: math.unit(120, "kg"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/taluthus/front.svg",
  19267. extra: 903 / 833,
  19268. bottom: 0.015
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(7, "feet"),
  19276. default: true
  19277. },
  19278. {
  19279. name: "Macro",
  19280. height: math.unit(300, "feet")
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19286. {
  19287. front: {
  19288. height: math.unit(5 + 9 / 12, "feet"),
  19289. weight: math.unit(145, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/dawn/front.svg",
  19293. extra: 2094 / 2016,
  19294. bottom: 0.025
  19295. }
  19296. },
  19297. back: {
  19298. height: math.unit(5 + 9 / 12, "feet"),
  19299. weight: math.unit(160, "lb"),
  19300. name: "Back",
  19301. image: {
  19302. source: "./media/characters/dawn/back.svg",
  19303. extra: 2112 / 2080,
  19304. bottom: 0.005
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(6 + 7 / 12, "feet"),
  19312. default: true
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19318. {
  19319. anthro: {
  19320. height: math.unit(8 + 3 / 12, "feet"),
  19321. weight: math.unit(450, "lb"),
  19322. name: "Anthro",
  19323. image: {
  19324. source: "./media/characters/arador/anthro.svg",
  19325. extra: 1835 / 1718,
  19326. bottom: 0.025
  19327. }
  19328. },
  19329. feral: {
  19330. height: math.unit(4, "feet"),
  19331. weight: math.unit(200, "lb"),
  19332. name: "Feral",
  19333. image: {
  19334. source: "./media/characters/arador/feral.svg",
  19335. extra: 1683 / 1514,
  19336. bottom: 0.07
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(8 + 3 / 12, "feet")
  19344. },
  19345. {
  19346. name: "Macro",
  19347. height: math.unit(82.5, "feet"),
  19348. default: true
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19354. {
  19355. front: {
  19356. height: math.unit(5 + 10 / 12, "feet"),
  19357. weight: math.unit(125, "lb"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/dharsi/front.svg",
  19361. extra: 716 / 630,
  19362. bottom: 0.035
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Nano",
  19369. height: math.unit(100, "nm")
  19370. },
  19371. {
  19372. name: "Micro",
  19373. height: math.unit(2, "inches")
  19374. },
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(5 + 10 / 12, "feet"),
  19378. default: true
  19379. },
  19380. {
  19381. name: "Macro",
  19382. height: math.unit(1000, "feet")
  19383. },
  19384. {
  19385. name: "Megamacro",
  19386. height: math.unit(10, "miles")
  19387. },
  19388. {
  19389. name: "Gigamacro",
  19390. height: math.unit(3000, "miles")
  19391. },
  19392. {
  19393. name: "Teramacro",
  19394. height: math.unit(500000, "miles")
  19395. },
  19396. {
  19397. name: "Teramacro+",
  19398. height: math.unit(30, "galaxies")
  19399. },
  19400. ]
  19401. ))
  19402. characterMakers.push(() => makeCharacter(
  19403. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19404. {
  19405. front: {
  19406. height: math.unit(6, "feet"),
  19407. weight: math.unit(150, "lb"),
  19408. name: "Front",
  19409. image: {
  19410. source: "./media/characters/deathy/front.svg",
  19411. extra: 1552 / 1463,
  19412. bottom: 0.025
  19413. }
  19414. },
  19415. side: {
  19416. height: math.unit(6, "feet"),
  19417. weight: math.unit(150, "lb"),
  19418. name: "Side",
  19419. image: {
  19420. source: "./media/characters/deathy/side.svg",
  19421. extra: 1604 / 1455,
  19422. bottom: 0.025
  19423. }
  19424. },
  19425. back: {
  19426. height: math.unit(6, "feet"),
  19427. weight: math.unit(150, "lb"),
  19428. name: "Back",
  19429. image: {
  19430. source: "./media/characters/deathy/back.svg",
  19431. extra: 1580 / 1463,
  19432. bottom: 0.005
  19433. }
  19434. },
  19435. },
  19436. [
  19437. {
  19438. name: "Micro",
  19439. height: math.unit(5, "millimeters")
  19440. },
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(6 + 5 / 12, "feet"),
  19444. default: true
  19445. },
  19446. ]
  19447. ))
  19448. characterMakers.push(() => makeCharacter(
  19449. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19450. {
  19451. front: {
  19452. height: math.unit(16, "feet"),
  19453. weight: math.unit(4000, "lb"),
  19454. name: "Front",
  19455. image: {
  19456. source: "./media/characters/juniper/front.svg",
  19457. bottom: 0.04
  19458. }
  19459. },
  19460. },
  19461. [
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(16, "feet"),
  19465. default: true
  19466. },
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19471. {
  19472. front: {
  19473. height: math.unit(6, "feet"),
  19474. weight: math.unit(150, "lb"),
  19475. name: "Front",
  19476. image: {
  19477. source: "./media/characters/hipster/front.svg",
  19478. extra: 1312 / 1209,
  19479. bottom: 0.025
  19480. }
  19481. },
  19482. back: {
  19483. height: math.unit(6, "feet"),
  19484. weight: math.unit(150, "lb"),
  19485. name: "Back",
  19486. image: {
  19487. source: "./media/characters/hipster/back.svg",
  19488. extra: 1281 / 1196,
  19489. bottom: 0.01
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Micro",
  19496. height: math.unit(1, "mm")
  19497. },
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(4, "inches"),
  19501. default: true
  19502. },
  19503. {
  19504. name: "Macro",
  19505. height: math.unit(500, "feet")
  19506. },
  19507. {
  19508. name: "Megamacro",
  19509. height: math.unit(1000, "miles")
  19510. },
  19511. ]
  19512. ))
  19513. characterMakers.push(() => makeCharacter(
  19514. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19515. {
  19516. front: {
  19517. height: math.unit(6, "feet"),
  19518. weight: math.unit(150, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/tendirmuldr/front.svg",
  19522. extra: 1878 / 1772,
  19523. bottom: 0.015
  19524. }
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Megamacro",
  19530. height: math.unit(1500, "miles"),
  19531. default: true
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19537. {
  19538. front: {
  19539. height: math.unit(14, "feet"),
  19540. weight: math.unit(12000, "lb"),
  19541. name: "Front",
  19542. image: {
  19543. source: "./media/characters/mort/front.svg",
  19544. extra: 365 / 318,
  19545. bottom: 0.01
  19546. }
  19547. },
  19548. side: {
  19549. height: math.unit(14, "feet"),
  19550. weight: math.unit(12000, "lb"),
  19551. name: "Side",
  19552. image: {
  19553. source: "./media/characters/mort/side.svg",
  19554. extra: 365 / 318,
  19555. bottom: 0.052
  19556. },
  19557. default: true
  19558. },
  19559. back: {
  19560. height: math.unit(14, "feet"),
  19561. weight: math.unit(12000, "lb"),
  19562. name: "Back",
  19563. image: {
  19564. source: "./media/characters/mort/back.svg",
  19565. extra: 371 / 332,
  19566. bottom: 0.18
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(14, "feet"),
  19574. default: true
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19580. {
  19581. front: {
  19582. height: math.unit(8, "feet"),
  19583. weight: math.unit(1, "ton"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/lycoa/front.svg",
  19587. extra: 1875 / 1789,
  19588. bottom: 0.022
  19589. }
  19590. },
  19591. back: {
  19592. height: math.unit(8, "feet"),
  19593. weight: math.unit(1, "ton"),
  19594. name: "Back",
  19595. image: {
  19596. source: "./media/characters/lycoa/back.svg",
  19597. extra: 1835 / 1781,
  19598. bottom: 0.03
  19599. }
  19600. },
  19601. head: {
  19602. height: math.unit(2.1, "feet"),
  19603. name: "Head",
  19604. image: {
  19605. source: "./media/characters/lycoa/head.svg"
  19606. }
  19607. },
  19608. tailmaw: {
  19609. height: math.unit(1.9, "feet"),
  19610. name: "Tailmaw",
  19611. image: {
  19612. source: "./media/characters/lycoa/tailmaw.svg"
  19613. }
  19614. },
  19615. tentacles: {
  19616. height: math.unit(2.1, "feet"),
  19617. name: "Tentacles",
  19618. image: {
  19619. source: "./media/characters/lycoa/tentacles.svg"
  19620. }
  19621. },
  19622. dick: {
  19623. height: math.unit(1.73, "feet"),
  19624. name: "Dick",
  19625. image: {
  19626. source: "./media/characters/lycoa/dick.svg"
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(8, "feet"),
  19634. default: true
  19635. },
  19636. {
  19637. name: "Macro",
  19638. height: math.unit(30, "feet")
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19644. {
  19645. front: {
  19646. height: math.unit(4 + 2 / 12, "feet"),
  19647. weight: math.unit(70, "lb"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/naldara/front.svg",
  19651. extra: 841 / 720,
  19652. bottom: 0.04
  19653. }
  19654. },
  19655. naga: {
  19656. height: math.unit(23, "feet"),
  19657. weight: math.unit(15000, "kg"),
  19658. name: "Naga",
  19659. image: {
  19660. source: "./media/characters/naldara/naga.svg",
  19661. extra: 3290 / 2959,
  19662. bottom: 124 / 3432
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(4 + 2 / 12, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(13 + 7 / 12, "feet"),
  19679. weight: math.unit(1500, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/briar/front.svg",
  19683. extra: 626 / 596,
  19684. bottom: 0.08
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(13 + 7 / 12, "feet"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19698. {
  19699. side: {
  19700. height: math.unit(10, "feet"),
  19701. weight: math.unit(500, "lb"),
  19702. name: "Side",
  19703. image: {
  19704. source: "./media/characters/vanguard/side.svg",
  19705. extra: 502 / 425,
  19706. bottom: 0.087
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(10, "feet"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19720. {
  19721. front: {
  19722. height: math.unit(7.5, "feet"),
  19723. weight: math.unit(2, "lb"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/artemis/front.svg",
  19727. extra: 1192 / 1075,
  19728. bottom: 0.07
  19729. }
  19730. },
  19731. frontNsfw: {
  19732. height: math.unit(7.5, "feet"),
  19733. weight: math.unit(2, "lb"),
  19734. name: "Front (NSFW)",
  19735. image: {
  19736. source: "./media/characters/artemis/front-nsfw.svg",
  19737. extra: 1192 / 1075,
  19738. bottom: 0.07
  19739. }
  19740. },
  19741. frontNsfwer: {
  19742. height: math.unit(7.5, "feet"),
  19743. weight: math.unit(2, "lb"),
  19744. name: "Front (NSFW-er)",
  19745. image: {
  19746. source: "./media/characters/artemis/front-nsfwer.svg",
  19747. extra: 1192 / 1075,
  19748. bottom: 0.07
  19749. }
  19750. },
  19751. side: {
  19752. height: math.unit(7.5, "feet"),
  19753. weight: math.unit(2, "lb"),
  19754. name: "Side",
  19755. image: {
  19756. source: "./media/characters/artemis/side.svg",
  19757. extra: 1192 / 1075,
  19758. bottom: 0.07
  19759. }
  19760. },
  19761. sideNsfw: {
  19762. height: math.unit(7.5, "feet"),
  19763. weight: math.unit(2, "lb"),
  19764. name: "Side (NSFW)",
  19765. image: {
  19766. source: "./media/characters/artemis/side-nsfw.svg",
  19767. extra: 1192 / 1075,
  19768. bottom: 0.07
  19769. }
  19770. },
  19771. sideNsfwer: {
  19772. height: math.unit(7.5, "feet"),
  19773. weight: math.unit(2, "lb"),
  19774. name: "Side (NSFW-er)",
  19775. image: {
  19776. source: "./media/characters/artemis/side-nsfwer.svg",
  19777. extra: 1192 / 1075,
  19778. bottom: 0.07
  19779. }
  19780. },
  19781. maw: {
  19782. height: math.unit(1.1, "feet"),
  19783. name: "Maw",
  19784. image: {
  19785. source: "./media/characters/artemis/maw.svg"
  19786. }
  19787. },
  19788. stomach: {
  19789. height: math.unit(0.95, "feet"),
  19790. name: "Stomach",
  19791. image: {
  19792. source: "./media/characters/artemis/stomach.svg"
  19793. }
  19794. },
  19795. dickCanine: {
  19796. height: math.unit(1, "feet"),
  19797. name: "Dick (Canine)",
  19798. image: {
  19799. source: "./media/characters/artemis/dick-canine.svg"
  19800. }
  19801. },
  19802. dickEquine: {
  19803. height: math.unit(0.85, "feet"),
  19804. name: "Dick (Equine)",
  19805. image: {
  19806. source: "./media/characters/artemis/dick-equine.svg"
  19807. }
  19808. },
  19809. dickExotic: {
  19810. height: math.unit(0.85, "feet"),
  19811. name: "Dick (Exotic)",
  19812. image: {
  19813. source: "./media/characters/artemis/dick-exotic.svg"
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(7.5, "feet"),
  19821. default: true
  19822. },
  19823. {
  19824. name: "Enlarged",
  19825. height: math.unit(12, "feet")
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(5 + 3 / 12, "feet"),
  19834. weight: math.unit(160, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/kira/front.svg",
  19838. extra: 906 / 786,
  19839. bottom: 0.01
  19840. }
  19841. },
  19842. back: {
  19843. height: math.unit(5 + 3 / 12, "feet"),
  19844. weight: math.unit(160, "lb"),
  19845. name: "Back",
  19846. image: {
  19847. source: "./media/characters/kira/back.svg",
  19848. extra: 882 / 757,
  19849. bottom: 0.005
  19850. }
  19851. },
  19852. frontDressed: {
  19853. height: math.unit(5 + 3 / 12, "feet"),
  19854. weight: math.unit(160, "lb"),
  19855. name: "Front (Dressed)",
  19856. image: {
  19857. source: "./media/characters/kira/front-dressed.svg",
  19858. extra: 906 / 786,
  19859. bottom: 0.01
  19860. }
  19861. },
  19862. beans: {
  19863. height: math.unit(0.92, "feet"),
  19864. name: "Beans",
  19865. image: {
  19866. source: "./media/characters/kira/beans.svg"
  19867. }
  19868. },
  19869. },
  19870. [
  19871. {
  19872. name: "Normal",
  19873. height: math.unit(5 + 3 / 12, "feet"),
  19874. default: true
  19875. },
  19876. ]
  19877. ))
  19878. characterMakers.push(() => makeCharacter(
  19879. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19880. {
  19881. front: {
  19882. height: math.unit(5 + 4 / 12, "feet"),
  19883. weight: math.unit(145, "lb"),
  19884. name: "Front",
  19885. image: {
  19886. source: "./media/characters/scramble/front.svg",
  19887. extra: 763 / 727,
  19888. bottom: 0.05
  19889. }
  19890. },
  19891. back: {
  19892. height: math.unit(5 + 4 / 12, "feet"),
  19893. weight: math.unit(145, "lb"),
  19894. name: "Back",
  19895. image: {
  19896. source: "./media/characters/scramble/back.svg",
  19897. extra: 826 / 737,
  19898. bottom: 0.002
  19899. }
  19900. },
  19901. },
  19902. [
  19903. {
  19904. name: "Normal",
  19905. height: math.unit(5 + 4 / 12, "feet"),
  19906. default: true
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19912. {
  19913. side: {
  19914. height: math.unit(6 + 2 / 12, "feet"),
  19915. weight: math.unit(190, "lb"),
  19916. name: "Side",
  19917. image: {
  19918. source: "./media/characters/biscuit/side.svg",
  19919. extra: 858 / 791,
  19920. bottom: 0.044
  19921. }
  19922. },
  19923. },
  19924. [
  19925. {
  19926. name: "Normal",
  19927. height: math.unit(6 + 2 / 12, "feet"),
  19928. default: true
  19929. },
  19930. ]
  19931. ))
  19932. characterMakers.push(() => makeCharacter(
  19933. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19934. {
  19935. front: {
  19936. height: math.unit(5 + 2 / 12, "feet"),
  19937. weight: math.unit(120, "lb"),
  19938. name: "Front",
  19939. image: {
  19940. source: "./media/characters/poffin/front.svg",
  19941. extra: 786 / 680,
  19942. bottom: 0.005
  19943. }
  19944. },
  19945. },
  19946. [
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(5 + 2 / 12, "feet"),
  19950. default: true
  19951. },
  19952. ]
  19953. ))
  19954. characterMakers.push(() => makeCharacter(
  19955. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19956. {
  19957. front: {
  19958. height: math.unit(6 + 3 / 12, "feet"),
  19959. weight: math.unit(519, "lb"),
  19960. name: "Front",
  19961. image: {
  19962. source: "./media/characters/dhari/front.svg",
  19963. extra: 1048 / 946,
  19964. bottom: 0.015
  19965. }
  19966. },
  19967. back: {
  19968. height: math.unit(6 + 3 / 12, "feet"),
  19969. weight: math.unit(519, "lb"),
  19970. name: "Back",
  19971. image: {
  19972. source: "./media/characters/dhari/back.svg",
  19973. extra: 1048 / 931,
  19974. bottom: 0.005
  19975. }
  19976. },
  19977. frontDressed: {
  19978. height: math.unit(6 + 3 / 12, "feet"),
  19979. weight: math.unit(519, "lb"),
  19980. name: "Front (Dressed)",
  19981. image: {
  19982. source: "./media/characters/dhari/front-dressed.svg",
  19983. extra: 1713 / 1546,
  19984. bottom: 0.02
  19985. }
  19986. },
  19987. backDressed: {
  19988. height: math.unit(6 + 3 / 12, "feet"),
  19989. weight: math.unit(519, "lb"),
  19990. name: "Back (Dressed)",
  19991. image: {
  19992. source: "./media/characters/dhari/back-dressed.svg",
  19993. extra: 1699 / 1537,
  19994. bottom: 0.01
  19995. }
  19996. },
  19997. maw: {
  19998. height: math.unit(0.95, "feet"),
  19999. name: "Maw",
  20000. image: {
  20001. source: "./media/characters/dhari/maw.svg"
  20002. }
  20003. },
  20004. wereFront: {
  20005. height: math.unit(12 + 8 / 12, "feet"),
  20006. weight: math.unit(4000, "lb"),
  20007. name: "Front (Were)",
  20008. image: {
  20009. source: "./media/characters/dhari/were-front.svg",
  20010. extra: 1065 / 969,
  20011. bottom: 0.015
  20012. }
  20013. },
  20014. wereBack: {
  20015. height: math.unit(12 + 8 / 12, "feet"),
  20016. weight: math.unit(4000, "lb"),
  20017. name: "Back (Were)",
  20018. image: {
  20019. source: "./media/characters/dhari/were-back.svg",
  20020. extra: 1065 / 969,
  20021. bottom: 0.012
  20022. }
  20023. },
  20024. wereMaw: {
  20025. height: math.unit(0.625, "meters"),
  20026. name: "Maw (Were)",
  20027. image: {
  20028. source: "./media/characters/dhari/were-maw.svg"
  20029. }
  20030. },
  20031. },
  20032. [
  20033. {
  20034. name: "Normal",
  20035. height: math.unit(6 + 3 / 12, "feet"),
  20036. default: true
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20042. {
  20043. anthro: {
  20044. height: math.unit(5 + 7 / 12, "feet"),
  20045. weight: math.unit(175, "lb"),
  20046. name: "Anthro",
  20047. image: {
  20048. source: "./media/characters/rena-dyne/anthro.svg",
  20049. extra: 1849 / 1785,
  20050. bottom: 0.005
  20051. }
  20052. },
  20053. taur: {
  20054. height: math.unit(15 + 6 / 12, "feet"),
  20055. weight: math.unit(8000, "lb"),
  20056. name: "Taur",
  20057. image: {
  20058. source: "./media/characters/rena-dyne/taur.svg",
  20059. extra: 2315 / 2234,
  20060. bottom: 0.033
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(5 + 7 / 12, "feet"),
  20068. default: true
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(8, "feet"),
  20077. weight: math.unit(600, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/weremeep/front.svg",
  20081. extra: 967 / 862,
  20082. bottom: 0.01
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(8, "feet"),
  20090. default: true
  20091. },
  20092. {
  20093. name: "Lorg",
  20094. height: math.unit(12, "feet")
  20095. },
  20096. {
  20097. name: "Oh Lawd She Comin'",
  20098. height: math.unit(20, "feet")
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20104. {
  20105. front: {
  20106. height: math.unit(4, "feet"),
  20107. weight: math.unit(90, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/reza/front.svg",
  20111. extra: 1183 / 1111,
  20112. bottom: 0.017
  20113. }
  20114. },
  20115. back: {
  20116. height: math.unit(4, "feet"),
  20117. weight: math.unit(90, "lb"),
  20118. name: "Back",
  20119. image: {
  20120. source: "./media/characters/reza/back.svg",
  20121. extra: 1183 / 1111,
  20122. bottom: 0.01
  20123. }
  20124. },
  20125. drake: {
  20126. height: math.unit(30, "feet"),
  20127. weight: math.unit(246960, "lb"),
  20128. name: "Drake",
  20129. image: {
  20130. source: "./media/characters/reza/drake.svg",
  20131. extra: 2350 / 2024,
  20132. bottom: 60.7 / 2403
  20133. }
  20134. },
  20135. },
  20136. [
  20137. {
  20138. name: "Normal",
  20139. height: math.unit(4, "feet"),
  20140. default: true
  20141. },
  20142. ]
  20143. ))
  20144. characterMakers.push(() => makeCharacter(
  20145. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20146. {
  20147. side: {
  20148. height: math.unit(15, "feet"),
  20149. weight: math.unit(14, "tons"),
  20150. name: "Side",
  20151. image: {
  20152. source: "./media/characters/athea/side.svg",
  20153. extra: 960 / 540,
  20154. bottom: 0.003
  20155. }
  20156. },
  20157. sitting: {
  20158. height: math.unit(6 * 2.85, "feet"),
  20159. weight: math.unit(14, "tons"),
  20160. name: "Sitting",
  20161. image: {
  20162. source: "./media/characters/athea/sitting.svg",
  20163. extra: 621 / 581,
  20164. bottom: 0.075
  20165. }
  20166. },
  20167. maw: {
  20168. height: math.unit(7.59498031496063, "feet"),
  20169. name: "Maw",
  20170. image: {
  20171. source: "./media/characters/athea/maw.svg"
  20172. }
  20173. },
  20174. },
  20175. [
  20176. {
  20177. name: "Lap Cat",
  20178. height: math.unit(2.5, "feet")
  20179. },
  20180. {
  20181. name: "Minimacro",
  20182. height: math.unit(15, "feet"),
  20183. default: true
  20184. },
  20185. {
  20186. name: "Macro",
  20187. height: math.unit(120, "feet")
  20188. },
  20189. {
  20190. name: "Macro+",
  20191. height: math.unit(640, "feet")
  20192. },
  20193. {
  20194. name: "Colossus",
  20195. height: math.unit(2.2, "miles")
  20196. },
  20197. ]
  20198. ))
  20199. characterMakers.push(() => makeCharacter(
  20200. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20201. {
  20202. front: {
  20203. height: math.unit(8 + 8 / 12, "feet"),
  20204. weight: math.unit(130, "kg"),
  20205. name: "Front",
  20206. image: {
  20207. source: "./media/characters/seroko/front.svg",
  20208. extra: 1385 / 1280,
  20209. bottom: 0.025
  20210. }
  20211. },
  20212. back: {
  20213. height: math.unit(8 + 8 / 12, "feet"),
  20214. weight: math.unit(130, "kg"),
  20215. name: "Back",
  20216. image: {
  20217. source: "./media/characters/seroko/back.svg",
  20218. extra: 1369 / 1238,
  20219. bottom: 0.018
  20220. }
  20221. },
  20222. frontDressed: {
  20223. height: math.unit(8 + 8 / 12, "feet"),
  20224. weight: math.unit(130, "kg"),
  20225. name: "Front (Dressed)",
  20226. image: {
  20227. source: "./media/characters/seroko/front-dressed.svg",
  20228. extra: 1366 / 1275,
  20229. bottom: 0.03
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(8 + 8 / 12, "feet"),
  20237. default: true
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(5.5, "feet"),
  20246. weight: math.unit(160, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/quatzi/front.svg",
  20250. extra: 2346 / 2242,
  20251. bottom: 0.015
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Normal",
  20258. height: math.unit(5.5, "feet"),
  20259. default: true
  20260. },
  20261. {
  20262. name: "Big",
  20263. height: math.unit(7.7, "feet")
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20269. {
  20270. front: {
  20271. height: math.unit(5 + 11 / 12, "feet"),
  20272. weight: math.unit(180, "lb"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/sen/front.svg",
  20276. extra: 1321 / 1254,
  20277. bottom: 0.015
  20278. }
  20279. },
  20280. side: {
  20281. height: math.unit(5 + 11 / 12, "feet"),
  20282. weight: math.unit(180, "lb"),
  20283. name: "Side",
  20284. image: {
  20285. source: "./media/characters/sen/side.svg",
  20286. extra: 1321 / 1254,
  20287. bottom: 0.007
  20288. }
  20289. },
  20290. back: {
  20291. height: math.unit(5 + 11 / 12, "feet"),
  20292. weight: math.unit(180, "lb"),
  20293. name: "Back",
  20294. image: {
  20295. source: "./media/characters/sen/back.svg",
  20296. extra: 1321 / 1254
  20297. }
  20298. },
  20299. },
  20300. [
  20301. {
  20302. name: "Normal",
  20303. height: math.unit(5 + 11 / 12, "feet"),
  20304. default: true
  20305. },
  20306. ]
  20307. ))
  20308. characterMakers.push(() => makeCharacter(
  20309. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20310. {
  20311. front: {
  20312. height: math.unit(166.6, "cm"),
  20313. weight: math.unit(66.6, "kg"),
  20314. name: "Front",
  20315. image: {
  20316. source: "./media/characters/fruity/front.svg",
  20317. extra: 1510 / 1386,
  20318. bottom: 0.04
  20319. }
  20320. },
  20321. back: {
  20322. height: math.unit(166.6, "cm"),
  20323. weight: math.unit(66.6, "lb"),
  20324. name: "Back",
  20325. image: {
  20326. source: "./media/characters/fruity/back.svg",
  20327. extra: 1563 / 1435,
  20328. bottom: 0.005
  20329. }
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(166.6, "cm"),
  20336. default: true
  20337. },
  20338. {
  20339. name: "Demonic",
  20340. height: math.unit(166.6, "feet")
  20341. },
  20342. ]
  20343. ))
  20344. characterMakers.push(() => makeCharacter(
  20345. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20346. {
  20347. side: {
  20348. height: math.unit(10, "feet"),
  20349. weight: math.unit(500, "lb"),
  20350. name: "Side",
  20351. image: {
  20352. source: "./media/characters/zost/side.svg",
  20353. extra: 966 / 880,
  20354. bottom: 0.075
  20355. }
  20356. },
  20357. mawFront: {
  20358. height: math.unit(1.08, "meters"),
  20359. name: "Maw (Front)",
  20360. image: {
  20361. source: "./media/characters/zost/maw-front.svg"
  20362. }
  20363. },
  20364. mawSide: {
  20365. height: math.unit(2.66, "feet"),
  20366. name: "Maw (Side)",
  20367. image: {
  20368. source: "./media/characters/zost/maw-side.svg"
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(10, "feet"),
  20376. default: true
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20382. {
  20383. front: {
  20384. height: math.unit(5 + 4 / 12, "feet"),
  20385. weight: math.unit(120, "lb"),
  20386. name: "Front",
  20387. image: {
  20388. source: "./media/characters/luci/front.svg",
  20389. extra: 1985 / 1884,
  20390. bottom: 0.04
  20391. }
  20392. },
  20393. back: {
  20394. height: math.unit(5 + 4 / 12, "feet"),
  20395. weight: math.unit(120, "lb"),
  20396. name: "Back",
  20397. image: {
  20398. source: "./media/characters/luci/back.svg",
  20399. extra: 1892 / 1791,
  20400. bottom: 0.002
  20401. }
  20402. },
  20403. },
  20404. [
  20405. {
  20406. name: "Normal",
  20407. height: math.unit(5 + 4 / 12, "feet"),
  20408. default: true
  20409. },
  20410. ]
  20411. ))
  20412. characterMakers.push(() => makeCharacter(
  20413. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20414. {
  20415. front: {
  20416. height: math.unit(1500, "feet"),
  20417. weight: math.unit(3.8e6, "tons"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/2th/front.svg",
  20421. extra: 3489 / 3350,
  20422. bottom: 0.1
  20423. }
  20424. },
  20425. foot: {
  20426. height: math.unit(461, "feet"),
  20427. name: "Foot",
  20428. image: {
  20429. source: "./media/characters/2th/foot.svg"
  20430. }
  20431. },
  20432. },
  20433. [
  20434. {
  20435. name: "\"Micro\"",
  20436. height: math.unit(15 + 7 / 12, "feet")
  20437. },
  20438. {
  20439. name: "Normal",
  20440. height: math.unit(1500, "feet"),
  20441. default: true
  20442. },
  20443. {
  20444. name: "Macro",
  20445. height: math.unit(5000, "feet")
  20446. },
  20447. {
  20448. name: "Megamacro",
  20449. height: math.unit(15, "miles")
  20450. },
  20451. {
  20452. name: "Gigamacro",
  20453. height: math.unit(4000, "miles")
  20454. },
  20455. {
  20456. name: "Galactic",
  20457. height: math.unit(50, "AU")
  20458. },
  20459. ]
  20460. ))
  20461. characterMakers.push(() => makeCharacter(
  20462. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20463. {
  20464. front: {
  20465. height: math.unit(5 + 6 / 12, "feet"),
  20466. weight: math.unit(220, "lb"),
  20467. name: "Front",
  20468. image: {
  20469. source: "./media/characters/amethyst/front.svg",
  20470. extra: 2078 / 2040,
  20471. bottom: 0.045
  20472. }
  20473. },
  20474. back: {
  20475. height: math.unit(5 + 6 / 12, "feet"),
  20476. weight: math.unit(220, "lb"),
  20477. name: "Back",
  20478. image: {
  20479. source: "./media/characters/amethyst/back.svg",
  20480. extra: 2021 / 1989,
  20481. bottom: 0.02
  20482. }
  20483. },
  20484. },
  20485. [
  20486. {
  20487. name: "Normal",
  20488. height: math.unit(5 + 6 / 12, "feet"),
  20489. default: true
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20495. {
  20496. front: {
  20497. height: math.unit(4 + 11 / 12, "feet"),
  20498. weight: math.unit(120, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/yumi-akiyama/front.svg",
  20502. extra: 1327 / 1235,
  20503. bottom: 0.02
  20504. }
  20505. },
  20506. back: {
  20507. height: math.unit(4 + 11 / 12, "feet"),
  20508. weight: math.unit(120, "lb"),
  20509. name: "Back",
  20510. image: {
  20511. source: "./media/characters/yumi-akiyama/back.svg",
  20512. extra: 1287 / 1245,
  20513. bottom: 0.002
  20514. }
  20515. },
  20516. },
  20517. [
  20518. {
  20519. name: "Galactic",
  20520. height: math.unit(50, "galaxies"),
  20521. default: true
  20522. },
  20523. {
  20524. name: "Universal",
  20525. height: math.unit(100, "universes")
  20526. },
  20527. ]
  20528. ))
  20529. characterMakers.push(() => makeCharacter(
  20530. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20531. {
  20532. front: {
  20533. height: math.unit(8, "feet"),
  20534. weight: math.unit(500, "lb"),
  20535. name: "Front",
  20536. image: {
  20537. source: "./media/characters/rifter-yrmori/front.svg",
  20538. extra: 1180 / 1125,
  20539. bottom: 0.02
  20540. }
  20541. },
  20542. back: {
  20543. height: math.unit(8, "feet"),
  20544. weight: math.unit(500, "lb"),
  20545. name: "Back",
  20546. image: {
  20547. source: "./media/characters/rifter-yrmori/back.svg",
  20548. extra: 1190 / 1145,
  20549. bottom: 0.001
  20550. }
  20551. },
  20552. wings: {
  20553. height: math.unit(7.75, "feet"),
  20554. weight: math.unit(500, "lb"),
  20555. name: "Wings",
  20556. image: {
  20557. source: "./media/characters/rifter-yrmori/wings.svg",
  20558. extra: 1357 / 1285
  20559. }
  20560. },
  20561. maw: {
  20562. height: math.unit(0.8, "feet"),
  20563. name: "Maw",
  20564. image: {
  20565. source: "./media/characters/rifter-yrmori/maw.svg"
  20566. }
  20567. },
  20568. mawfront: {
  20569. height: math.unit(1.45, "feet"),
  20570. name: "Maw (Front)",
  20571. image: {
  20572. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(8, "feet"),
  20580. default: true
  20581. },
  20582. {
  20583. name: "Macro",
  20584. height: math.unit(42, "meters")
  20585. },
  20586. ]
  20587. ))
  20588. characterMakers.push(() => makeCharacter(
  20589. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20590. {
  20591. were: {
  20592. height: math.unit(25 + 6 / 12, "feet"),
  20593. weight: math.unit(10000, "lb"),
  20594. name: "Were",
  20595. image: {
  20596. source: "./media/characters/tahajin/were.svg",
  20597. extra: 801 / 770,
  20598. bottom: 0.042
  20599. }
  20600. },
  20601. aquatic: {
  20602. height: math.unit(6 + 4 / 12, "feet"),
  20603. weight: math.unit(160, "lb"),
  20604. name: "Aquatic",
  20605. image: {
  20606. source: "./media/characters/tahajin/aquatic.svg",
  20607. extra: 572 / 542,
  20608. bottom: 0.04
  20609. }
  20610. },
  20611. chow: {
  20612. height: math.unit(8 + 11 / 12, "feet"),
  20613. weight: math.unit(450, "lb"),
  20614. name: "Chow",
  20615. image: {
  20616. source: "./media/characters/tahajin/chow.svg",
  20617. extra: 660 / 640,
  20618. bottom: 0.015
  20619. }
  20620. },
  20621. demiNaga: {
  20622. height: math.unit(6 + 8 / 12, "feet"),
  20623. weight: math.unit(300, "lb"),
  20624. name: "Demi Naga",
  20625. image: {
  20626. source: "./media/characters/tahajin/demi-naga.svg",
  20627. extra: 643 / 615,
  20628. bottom: 0.1
  20629. }
  20630. },
  20631. data: {
  20632. height: math.unit(5, "inches"),
  20633. weight: math.unit(0.1, "lb"),
  20634. name: "Data",
  20635. image: {
  20636. source: "./media/characters/tahajin/data.svg"
  20637. }
  20638. },
  20639. fluu: {
  20640. height: math.unit(5 + 7 / 12, "feet"),
  20641. weight: math.unit(140, "lb"),
  20642. name: "Fluu",
  20643. image: {
  20644. source: "./media/characters/tahajin/fluu.svg",
  20645. extra: 628 / 592,
  20646. bottom: 0.02
  20647. }
  20648. },
  20649. starWarrior: {
  20650. height: math.unit(4 + 5 / 12, "feet"),
  20651. weight: math.unit(50, "lb"),
  20652. name: "Star Warrior",
  20653. image: {
  20654. source: "./media/characters/tahajin/star-warrior.svg"
  20655. }
  20656. },
  20657. },
  20658. [
  20659. {
  20660. name: "Normal",
  20661. height: math.unit(25 + 6 / 12, "feet"),
  20662. default: true
  20663. },
  20664. ]
  20665. ))
  20666. characterMakers.push(() => makeCharacter(
  20667. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20668. {
  20669. front: {
  20670. height: math.unit(8, "feet"),
  20671. weight: math.unit(350, "lb"),
  20672. name: "Front",
  20673. image: {
  20674. source: "./media/characters/gabira/front.svg",
  20675. extra: 608 / 580,
  20676. bottom: 0.03
  20677. }
  20678. },
  20679. back: {
  20680. height: math.unit(8, "feet"),
  20681. weight: math.unit(350, "lb"),
  20682. name: "Back",
  20683. image: {
  20684. source: "./media/characters/gabira/back.svg",
  20685. extra: 608 / 580,
  20686. bottom: 0.03
  20687. }
  20688. },
  20689. },
  20690. [
  20691. {
  20692. name: "Normal",
  20693. height: math.unit(8, "feet"),
  20694. default: true
  20695. },
  20696. ]
  20697. ))
  20698. characterMakers.push(() => makeCharacter(
  20699. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20700. {
  20701. front: {
  20702. height: math.unit(5 + 3 / 12, "feet"),
  20703. weight: math.unit(137, "lb"),
  20704. name: "Front",
  20705. image: {
  20706. source: "./media/characters/sasha-katraine/front.svg",
  20707. bottom: 0.045
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Micro",
  20714. height: math.unit(5, "inches")
  20715. },
  20716. {
  20717. name: "Normal",
  20718. height: math.unit(5 + 3 / 12, "feet"),
  20719. default: true
  20720. },
  20721. ]
  20722. ))
  20723. characterMakers.push(() => makeCharacter(
  20724. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20725. {
  20726. side: {
  20727. height: math.unit(4, "inches"),
  20728. weight: math.unit(200, "grams"),
  20729. name: "Side",
  20730. image: {
  20731. source: "./media/characters/der/side.svg",
  20732. extra: 719 / 400,
  20733. bottom: 30.6 / 749.9187
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Micro",
  20740. height: math.unit(4, "inches"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20747. {
  20748. side: {
  20749. height: math.unit(30, "meters"),
  20750. weight: math.unit(700, "tonnes"),
  20751. name: "Side",
  20752. image: {
  20753. source: "./media/characters/fixerdragon/side.svg",
  20754. extra: (1293.0514 - 116.03) / 1106.86,
  20755. bottom: 116.03 / 1293.0514
  20756. }
  20757. },
  20758. },
  20759. [
  20760. {
  20761. name: "Planck",
  20762. height: math.unit(1.6e-35, "meters")
  20763. },
  20764. {
  20765. name: "Micro",
  20766. height: math.unit(0.4, "meters")
  20767. },
  20768. {
  20769. name: "Normal",
  20770. height: math.unit(30, "meters"),
  20771. default: true
  20772. },
  20773. {
  20774. name: "Megamacro",
  20775. height: math.unit(1.2, "megameters")
  20776. },
  20777. {
  20778. name: "Teramacro",
  20779. height: math.unit(130, "terameters")
  20780. },
  20781. {
  20782. name: "Yottamacro",
  20783. height: math.unit(6200, "yottameters")
  20784. },
  20785. ]
  20786. ));
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20789. {
  20790. front: {
  20791. height: math.unit(8, "feet"),
  20792. weight: math.unit(250, "lb"),
  20793. name: "Front",
  20794. image: {
  20795. source: "./media/characters/kite/front.svg",
  20796. extra: 2796 / 2659,
  20797. bottom: 0.002
  20798. }
  20799. },
  20800. },
  20801. [
  20802. {
  20803. name: "Normal",
  20804. height: math.unit(8, "feet"),
  20805. default: true
  20806. },
  20807. {
  20808. name: "Macro",
  20809. height: math.unit(360, "feet")
  20810. },
  20811. {
  20812. name: "Megamacro",
  20813. height: math.unit(1500, "feet")
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20819. {
  20820. front: {
  20821. height: math.unit(5 + 10 / 12, "feet"),
  20822. weight: math.unit(150, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/poojawa-vynar/front.svg",
  20826. extra: (1506.1547 - 55) / 1356.6,
  20827. bottom: 55 / 1506.1547
  20828. }
  20829. },
  20830. frontTailless: {
  20831. height: math.unit(5 + 10 / 12, "feet"),
  20832. weight: math.unit(150, "lb"),
  20833. name: "Front (Tailless)",
  20834. image: {
  20835. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20836. extra: (1506.1547 - 55) / 1356.6,
  20837. bottom: 55 / 1506.1547
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Normal",
  20844. height: math.unit(5 + 10 / 12, "feet"),
  20845. default: true
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(293, "meters"),
  20854. weight: math.unit(70400, "tons"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/violette/front.svg",
  20858. extra: 1227 / 1180,
  20859. bottom: 0.005
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(293, "meters"),
  20864. weight: math.unit(70400, "tons"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/violette/back.svg",
  20868. extra: 1227 / 1180,
  20869. bottom: 0.005
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Macro",
  20876. height: math.unit(293, "meters"),
  20877. default: true
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(1050, "feet"),
  20886. weight: math.unit(200000, "tons"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/alessandra/front.svg",
  20890. extra: 960 / 912,
  20891. bottom: 0.06
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Macro",
  20898. height: math.unit(1050, "feet")
  20899. },
  20900. {
  20901. name: "Macro+",
  20902. height: math.unit(900, "meters"),
  20903. default: true
  20904. },
  20905. ]
  20906. ))
  20907. characterMakers.push(() => makeCharacter(
  20908. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20909. {
  20910. front: {
  20911. height: math.unit(5, "feet"),
  20912. weight: math.unit(187, "lb"),
  20913. name: "Front",
  20914. image: {
  20915. source: "./media/characters/person/front.svg",
  20916. extra: 3087 / 2945,
  20917. bottom: 91 / 3181
  20918. }
  20919. },
  20920. },
  20921. [
  20922. {
  20923. name: "Micro",
  20924. height: math.unit(3, "inches")
  20925. },
  20926. {
  20927. name: "Normal",
  20928. height: math.unit(5, "feet"),
  20929. default: true
  20930. },
  20931. {
  20932. name: "Macro",
  20933. height: math.unit(90, "feet")
  20934. },
  20935. {
  20936. name: "Max Size",
  20937. height: math.unit(280, "feet")
  20938. },
  20939. ]
  20940. ))
  20941. characterMakers.push(() => makeCharacter(
  20942. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20943. {
  20944. front: {
  20945. height: math.unit(4.5, "meters"),
  20946. weight: math.unit(3200, "lb"),
  20947. name: "Front",
  20948. image: {
  20949. source: "./media/characters/ty/front.svg",
  20950. extra: 1038 / 960,
  20951. bottom: 31.156 / 1068
  20952. }
  20953. },
  20954. back: {
  20955. height: math.unit(4.5, "meters"),
  20956. weight: math.unit(3200, "lb"),
  20957. name: "Back",
  20958. image: {
  20959. source: "./media/characters/ty/back.svg",
  20960. extra: 1044 / 966,
  20961. bottom: 7.48 / 1049
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Normal",
  20968. height: math.unit(4.5, "meters"),
  20969. default: true
  20970. },
  20971. ]
  20972. ))
  20973. characterMakers.push(() => makeCharacter(
  20974. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20975. {
  20976. front: {
  20977. height: math.unit(5 + 4 / 12, "feet"),
  20978. weight: math.unit(115, "lb"),
  20979. name: "Front",
  20980. image: {
  20981. source: "./media/characters/rocky/front.svg",
  20982. extra: 1012 / 975,
  20983. bottom: 54 / 1066
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Normal",
  20990. height: math.unit(5 + 4 / 12, "feet"),
  20991. default: true
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20997. {
  20998. upright: {
  20999. height: math.unit(6, "meters"),
  21000. weight: math.unit(4000, "kg"),
  21001. name: "Upright",
  21002. image: {
  21003. source: "./media/characters/ruin/upright.svg",
  21004. extra: 668 / 661,
  21005. bottom: 42 / 799.8396
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(6, "meters"),
  21013. default: true
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(5, "feet"),
  21022. weight: math.unit(106, "lb"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/robin/front.svg",
  21026. extra: 862 / 799,
  21027. bottom: 42.4 / 914.8856
  21028. }
  21029. },
  21030. },
  21031. [
  21032. {
  21033. name: "Normal",
  21034. height: math.unit(5, "feet"),
  21035. default: true
  21036. },
  21037. ]
  21038. ))
  21039. characterMakers.push(() => makeCharacter(
  21040. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21041. {
  21042. side: {
  21043. height: math.unit(3, "feet"),
  21044. weight: math.unit(225, "lb"),
  21045. name: "Side",
  21046. image: {
  21047. source: "./media/characters/saian/side.svg",
  21048. extra: 566 / 356,
  21049. bottom: 79.7 / 643
  21050. }
  21051. },
  21052. maw: {
  21053. height: math.unit(2.85, "feet"),
  21054. name: "Maw",
  21055. image: {
  21056. source: "./media/characters/saian/maw.svg"
  21057. }
  21058. },
  21059. },
  21060. [
  21061. {
  21062. name: "Normal",
  21063. height: math.unit(3, "feet"),
  21064. default: true
  21065. },
  21066. ]
  21067. ))
  21068. characterMakers.push(() => makeCharacter(
  21069. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21070. {
  21071. side: {
  21072. height: math.unit(8, "feet"),
  21073. weight: math.unit(300, "lb"),
  21074. name: "Side",
  21075. image: {
  21076. source: "./media/characters/equus-silvermane/side.svg",
  21077. extra: 2176 / 2050,
  21078. bottom: 65.7 / 2245
  21079. }
  21080. },
  21081. front: {
  21082. height: math.unit(8, "feet"),
  21083. weight: math.unit(300, "lb"),
  21084. name: "Front",
  21085. image: {
  21086. source: "./media/characters/equus-silvermane/front.svg",
  21087. extra: 4633 / 4400,
  21088. bottom: 71.3 / 4706.915
  21089. }
  21090. },
  21091. sideStepping: {
  21092. height: math.unit(8, "feet"),
  21093. weight: math.unit(300, "lb"),
  21094. name: "Side (Stepping)",
  21095. image: {
  21096. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21097. extra: 1968 / 1860,
  21098. bottom: 16.4 / 1989
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(8, "feet")
  21106. },
  21107. {
  21108. name: "Minimacro",
  21109. height: math.unit(75, "feet"),
  21110. default: true
  21111. },
  21112. {
  21113. name: "Macro",
  21114. height: math.unit(150, "feet")
  21115. },
  21116. {
  21117. name: "Macro+",
  21118. height: math.unit(1000, "feet")
  21119. },
  21120. {
  21121. name: "Megamacro",
  21122. height: math.unit(1, "mile")
  21123. },
  21124. ]
  21125. ))
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21128. {
  21129. side: {
  21130. height: math.unit(20, "feet"),
  21131. weight: math.unit(30000, "kg"),
  21132. name: "Side",
  21133. image: {
  21134. source: "./media/characters/windar/side.svg",
  21135. extra: 1491 / 1248,
  21136. bottom: 82.56 / 1568
  21137. }
  21138. },
  21139. },
  21140. [
  21141. {
  21142. name: "Normal",
  21143. height: math.unit(20, "feet"),
  21144. default: true
  21145. },
  21146. ]
  21147. ))
  21148. characterMakers.push(() => makeCharacter(
  21149. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21150. {
  21151. side: {
  21152. height: math.unit(15.66, "feet"),
  21153. weight: math.unit(150, "lb"),
  21154. name: "Side",
  21155. image: {
  21156. source: "./media/characters/melody/side.svg",
  21157. extra: 1097 / 944,
  21158. bottom: 11.8 / 1109
  21159. }
  21160. },
  21161. sideOutfit: {
  21162. height: math.unit(15.66, "feet"),
  21163. weight: math.unit(150, "lb"),
  21164. name: "Side (Outfit)",
  21165. image: {
  21166. source: "./media/characters/melody/side-outfit.svg",
  21167. extra: 1097 / 944,
  21168. bottom: 11.8 / 1109
  21169. }
  21170. },
  21171. },
  21172. [
  21173. {
  21174. name: "Normal",
  21175. height: math.unit(15.66, "feet"),
  21176. default: true
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(8, "feet"),
  21185. weight: math.unit(325, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/windera/front.svg",
  21189. extra: 3180 / 2845,
  21190. bottom: 178 / 3365
  21191. }
  21192. },
  21193. },
  21194. [
  21195. {
  21196. name: "Normal",
  21197. height: math.unit(8, "feet"),
  21198. default: true
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21204. {
  21205. front: {
  21206. height: math.unit(28.75, "feet"),
  21207. weight: math.unit(2000, "kg"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/sonear/front.svg",
  21211. extra: 1041.1 / 964.9,
  21212. bottom: 53.7 / 1096.6
  21213. }
  21214. },
  21215. },
  21216. [
  21217. {
  21218. name: "Normal",
  21219. height: math.unit(28.75, "feet"),
  21220. default: true
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21226. {
  21227. side: {
  21228. height: math.unit(25.5, "feet"),
  21229. weight: math.unit(23000, "kg"),
  21230. name: "Side",
  21231. image: {
  21232. source: "./media/characters/kanara/side.svg"
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(25.5, "feet"),
  21240. default: true
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21246. {
  21247. side: {
  21248. height: math.unit(10, "feet"),
  21249. weight: math.unit(1000, "kg"),
  21250. name: "Side",
  21251. image: {
  21252. source: "./media/characters/ereus/side.svg",
  21253. extra: 1157 / 959,
  21254. bottom: 153 / 1312.5
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(10, "feet"),
  21262. default: true
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21268. {
  21269. side: {
  21270. height: math.unit(4.5, "feet"),
  21271. weight: math.unit(500, "lb"),
  21272. name: "Side",
  21273. image: {
  21274. source: "./media/characters/e-ter/side.svg",
  21275. extra: 1550 / 1248,
  21276. bottom: 146 / 1694
  21277. }
  21278. },
  21279. },
  21280. [
  21281. {
  21282. name: "Normal",
  21283. height: math.unit(4.5, "feet"),
  21284. default: true
  21285. },
  21286. ]
  21287. ))
  21288. characterMakers.push(() => makeCharacter(
  21289. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21290. {
  21291. side: {
  21292. height: math.unit(9.7, "feet"),
  21293. weight: math.unit(4000, "kg"),
  21294. name: "Side",
  21295. image: {
  21296. source: "./media/characters/yamie/side.svg"
  21297. }
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(9.7, "feet"),
  21304. default: true
  21305. },
  21306. ]
  21307. ))
  21308. characterMakers.push(() => makeCharacter(
  21309. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21310. {
  21311. front: {
  21312. height: math.unit(50, "feet"),
  21313. weight: math.unit(50000, "kg"),
  21314. name: "Front",
  21315. image: {
  21316. source: "./media/characters/anders/front.svg",
  21317. extra: 570 / 539,
  21318. bottom: 14.7 / 586.7
  21319. }
  21320. },
  21321. },
  21322. [
  21323. {
  21324. name: "Large",
  21325. height: math.unit(50, "feet")
  21326. },
  21327. {
  21328. name: "Macro",
  21329. height: math.unit(2000, "feet"),
  21330. default: true
  21331. },
  21332. {
  21333. name: "Megamacro",
  21334. height: math.unit(12, "miles")
  21335. },
  21336. ]
  21337. ))
  21338. characterMakers.push(() => makeCharacter(
  21339. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21340. {
  21341. front: {
  21342. height: math.unit(7 + 2 / 12, "feet"),
  21343. weight: math.unit(300, "lb"),
  21344. name: "Front",
  21345. image: {
  21346. source: "./media/characters/reban/front.svg",
  21347. extra: 516 / 487,
  21348. bottom: 42.82 / 558.356
  21349. }
  21350. },
  21351. dick: {
  21352. height: math.unit(7 / 5, "feet"),
  21353. name: "Dick",
  21354. image: {
  21355. source: "./media/characters/reban/dick.svg"
  21356. }
  21357. },
  21358. },
  21359. [
  21360. {
  21361. name: "Natural Height",
  21362. height: math.unit(7 + 2 / 12, "feet")
  21363. },
  21364. {
  21365. name: "Macro",
  21366. height: math.unit(500, "feet"),
  21367. default: true
  21368. },
  21369. {
  21370. name: "Canon Height",
  21371. height: math.unit(50, "AU")
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21377. {
  21378. front: {
  21379. height: math.unit(6, "feet"),
  21380. weight: math.unit(150, "lb"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/terrance-keayes/front.svg",
  21384. extra: 1.005,
  21385. bottom: 151 / 1615
  21386. }
  21387. },
  21388. side: {
  21389. height: math.unit(6, "feet"),
  21390. weight: math.unit(150, "lb"),
  21391. name: "Side",
  21392. image: {
  21393. source: "./media/characters/terrance-keayes/side.svg",
  21394. extra: 1.005,
  21395. bottom: 129.4 / 1544
  21396. }
  21397. },
  21398. back: {
  21399. height: math.unit(6, "feet"),
  21400. weight: math.unit(150, "lb"),
  21401. name: "Back",
  21402. image: {
  21403. source: "./media/characters/terrance-keayes/back.svg",
  21404. extra: 1.005,
  21405. bottom: 58.4 / 1557.3
  21406. }
  21407. },
  21408. dick: {
  21409. height: math.unit(6 * 0.208, "feet"),
  21410. name: "Dick",
  21411. image: {
  21412. source: "./media/characters/terrance-keayes/dick.svg"
  21413. }
  21414. },
  21415. },
  21416. [
  21417. {
  21418. name: "Canon Height",
  21419. height: math.unit(35, "miles"),
  21420. default: true
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21426. {
  21427. front: {
  21428. height: math.unit(6, "feet"),
  21429. weight: math.unit(150, "lb"),
  21430. name: "Front",
  21431. image: {
  21432. source: "./media/characters/ofelia/front.svg",
  21433. extra: 546 / 541,
  21434. bottom: 39 / 583
  21435. }
  21436. },
  21437. back: {
  21438. height: math.unit(6, "feet"),
  21439. weight: math.unit(150, "lb"),
  21440. name: "Back",
  21441. image: {
  21442. source: "./media/characters/ofelia/back.svg",
  21443. extra: 564 / 559.5,
  21444. bottom: 8.69 / 573.02
  21445. }
  21446. },
  21447. maw: {
  21448. height: math.unit(1, "feet"),
  21449. name: "Maw",
  21450. image: {
  21451. source: "./media/characters/ofelia/maw.svg"
  21452. }
  21453. },
  21454. foot: {
  21455. height: math.unit(1.949, "feet"),
  21456. name: "Foot",
  21457. image: {
  21458. source: "./media/characters/ofelia/foot.svg"
  21459. }
  21460. },
  21461. },
  21462. [
  21463. {
  21464. name: "Canon Height",
  21465. height: math.unit(2000, "miles"),
  21466. default: true
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21472. {
  21473. front: {
  21474. height: math.unit(6, "feet"),
  21475. weight: math.unit(150, "lb"),
  21476. name: "Front",
  21477. image: {
  21478. source: "./media/characters/samuel/front.svg",
  21479. extra: 265 / 258,
  21480. bottom: 2 / 266.1566
  21481. }
  21482. },
  21483. },
  21484. [
  21485. {
  21486. name: "Macro",
  21487. height: math.unit(100, "feet"),
  21488. default: true
  21489. },
  21490. {
  21491. name: "Full Size",
  21492. height: math.unit(1000, "miles")
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21498. {
  21499. front: {
  21500. height: math.unit(6, "feet"),
  21501. weight: math.unit(300, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/beishir-kiel/front.svg",
  21505. extra: 569 / 547,
  21506. bottom: 41.9 / 609
  21507. }
  21508. },
  21509. maw: {
  21510. height: math.unit(6 * 0.202, "feet"),
  21511. name: "Maw",
  21512. image: {
  21513. source: "./media/characters/beishir-kiel/maw.svg"
  21514. }
  21515. },
  21516. },
  21517. [
  21518. {
  21519. name: "Macro",
  21520. height: math.unit(300, "feet"),
  21521. default: true
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(5 + 8 / 12, "feet"),
  21530. weight: math.unit(120, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/logan-grey/front.svg",
  21534. extra: 2539 / 2393,
  21535. bottom: 97.6 / 2636.37
  21536. }
  21537. },
  21538. frontAlt: {
  21539. height: math.unit(5 + 8 / 12, "feet"),
  21540. weight: math.unit(120, "lb"),
  21541. name: "Front (Alt)",
  21542. image: {
  21543. source: "./media/characters/logan-grey/front-alt.svg",
  21544. extra: 958 / 893,
  21545. bottom: 15 / 970.768
  21546. }
  21547. },
  21548. back: {
  21549. height: math.unit(5 + 8 / 12, "feet"),
  21550. weight: math.unit(120, "lb"),
  21551. name: "Back",
  21552. image: {
  21553. source: "./media/characters/logan-grey/back.svg",
  21554. extra: 958 / 893,
  21555. bottom: 2.1881 / 970.9788
  21556. }
  21557. },
  21558. dick: {
  21559. height: math.unit(1.437, "feet"),
  21560. name: "Dick",
  21561. image: {
  21562. source: "./media/characters/logan-grey/dick.svg"
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(5 + 8 / 12, "feet")
  21570. },
  21571. {
  21572. name: "The 500 Foot Femboy",
  21573. height: math.unit(500, "feet"),
  21574. default: true
  21575. },
  21576. {
  21577. name: "Megmacro",
  21578. height: math.unit(20, "miles")
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21584. {
  21585. front: {
  21586. height: math.unit(8 + 2 / 12, "feet"),
  21587. weight: math.unit(275, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/draganta/front.svg",
  21591. extra: 1177 / 1135,
  21592. bottom: 33.46 / 1212.1
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(8 + 6 / 12, "feet"),
  21600. default: true
  21601. },
  21602. {
  21603. name: "Macro",
  21604. height: math.unit(150, "feet")
  21605. },
  21606. {
  21607. name: "Megamacro",
  21608. height: math.unit(1000, "miles")
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21614. {
  21615. front: {
  21616. height: math.unit(1.72, "m"),
  21617. weight: math.unit(80, "lb"),
  21618. name: "Front",
  21619. image: {
  21620. source: "./media/characters/voski/front.svg",
  21621. extra: 2076.22 / 2022.4,
  21622. bottom: 102.7 / 2177.3866
  21623. }
  21624. },
  21625. frontNsfw: {
  21626. height: math.unit(1.72, "m"),
  21627. weight: math.unit(80, "lb"),
  21628. name: "Front (NSFW)",
  21629. image: {
  21630. source: "./media/characters/voski/front-nsfw.svg",
  21631. extra: 2076.22 / 2022.4,
  21632. bottom: 102.7 / 2177.3866
  21633. }
  21634. },
  21635. back: {
  21636. height: math.unit(1.72, "m"),
  21637. weight: math.unit(80, "lb"),
  21638. name: "Back",
  21639. image: {
  21640. source: "./media/characters/voski/back.svg",
  21641. extra: 2104 / 2051,
  21642. bottom: 10.45 / 2113.63
  21643. }
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(1.72, "m")
  21650. },
  21651. {
  21652. name: "Macro",
  21653. height: math.unit(55, "m"),
  21654. default: true
  21655. },
  21656. {
  21657. name: "Macro+",
  21658. height: math.unit(300, "m")
  21659. },
  21660. {
  21661. name: "Macro++",
  21662. height: math.unit(700, "m")
  21663. },
  21664. {
  21665. name: "Macro+++",
  21666. height: math.unit(4500, "m")
  21667. },
  21668. {
  21669. name: "Macro++++",
  21670. height: math.unit(45, "km")
  21671. },
  21672. {
  21673. name: "Macro+++++",
  21674. height: math.unit(1220, "km")
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21680. {
  21681. front: {
  21682. height: math.unit(2.3, "m"),
  21683. weight: math.unit(304, "kg"),
  21684. name: "Front",
  21685. image: {
  21686. source: "./media/characters/icowom-lee/front.svg",
  21687. extra: 985 / 955,
  21688. bottom: 25.4 / 1012
  21689. }
  21690. },
  21691. fronttentacles: {
  21692. height: math.unit(2.3, "m"),
  21693. weight: math.unit(304, "kg"),
  21694. name: "Front-tentacles",
  21695. image: {
  21696. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21697. extra: 985 / 955,
  21698. bottom: 25.4 / 1012
  21699. }
  21700. },
  21701. back: {
  21702. height: math.unit(2.3, "m"),
  21703. weight: math.unit(304, "kg"),
  21704. name: "Back",
  21705. image: {
  21706. source: "./media/characters/icowom-lee/back.svg",
  21707. extra: 975 / 954,
  21708. bottom: 9.5 / 985
  21709. }
  21710. },
  21711. backtentacles: {
  21712. height: math.unit(2.3, "m"),
  21713. weight: math.unit(304, "kg"),
  21714. name: "Back-tentacles",
  21715. image: {
  21716. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21717. extra: 975 / 954,
  21718. bottom: 9.5 / 985
  21719. }
  21720. },
  21721. frontDressed: {
  21722. height: math.unit(2.3, "m"),
  21723. weight: math.unit(304, "kg"),
  21724. name: "Front (Dressed)",
  21725. image: {
  21726. source: "./media/characters/icowom-lee/front-dressed.svg",
  21727. extra: 3076 / 2933,
  21728. bottom: 51.4 / 3125.1889
  21729. }
  21730. },
  21731. rump: {
  21732. height: math.unit(0.776, "meters"),
  21733. name: "Rump",
  21734. image: {
  21735. source: "./media/characters/icowom-lee/rump.svg"
  21736. }
  21737. },
  21738. genitals: {
  21739. height: math.unit(0.78, "meters"),
  21740. name: "Genitals",
  21741. image: {
  21742. source: "./media/characters/icowom-lee/genitals.svg"
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(2.3, "meters"),
  21750. default: true
  21751. },
  21752. {
  21753. name: "Macro",
  21754. height: math.unit(94, "meters"),
  21755. default: true
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(22, "meters"),
  21764. weight: math.unit(21000, "kg"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/shock-diamond/front.svg",
  21768. extra: 2204 / 2053,
  21769. bottom: 65 / 2239.47
  21770. }
  21771. },
  21772. frontNude: {
  21773. height: math.unit(22, "meters"),
  21774. weight: math.unit(21000, "kg"),
  21775. name: "Front (Nude)",
  21776. image: {
  21777. source: "./media/characters/shock-diamond/front-nude.svg",
  21778. extra: 2514 / 2285,
  21779. bottom: 13 / 2527.56
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(3, "meters")
  21787. },
  21788. {
  21789. name: "Macro",
  21790. height: math.unit(22, "meters"),
  21791. default: true
  21792. },
  21793. ]
  21794. ))
  21795. characterMakers.push(() => makeCharacter(
  21796. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21797. {
  21798. front: {
  21799. height: math.unit(5 + 4 / 12, "feet"),
  21800. weight: math.unit(120, "lb"),
  21801. name: "Front",
  21802. image: {
  21803. source: "./media/characters/rory/front.svg",
  21804. extra: 589 / 556,
  21805. bottom: 45.7 / 635.76
  21806. }
  21807. },
  21808. frontNude: {
  21809. height: math.unit(5 + 4 / 12, "feet"),
  21810. weight: math.unit(120, "lb"),
  21811. name: "Front (Nude)",
  21812. image: {
  21813. source: "./media/characters/rory/front-nude.svg",
  21814. extra: 589 / 556,
  21815. bottom: 45.7 / 635.76
  21816. }
  21817. },
  21818. side: {
  21819. height: math.unit(5 + 4 / 12, "feet"),
  21820. weight: math.unit(120, "lb"),
  21821. name: "Side",
  21822. image: {
  21823. source: "./media/characters/rory/side.svg",
  21824. extra: 597 / 564,
  21825. bottom: 55 / 653
  21826. }
  21827. },
  21828. back: {
  21829. height: math.unit(5 + 4 / 12, "feet"),
  21830. weight: math.unit(120, "lb"),
  21831. name: "Back",
  21832. image: {
  21833. source: "./media/characters/rory/back.svg",
  21834. extra: 620 / 585,
  21835. bottom: 8.86 / 630.43
  21836. }
  21837. },
  21838. dick: {
  21839. height: math.unit(0.86, "feet"),
  21840. name: "Dick",
  21841. image: {
  21842. source: "./media/characters/rory/dick.svg"
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Normal",
  21849. height: math.unit(5 + 4 / 12, "feet"),
  21850. default: true
  21851. },
  21852. {
  21853. name: "Macro",
  21854. height: math.unit(100, "feet")
  21855. },
  21856. {
  21857. name: "Macro+",
  21858. height: math.unit(140, "feet")
  21859. },
  21860. {
  21861. name: "Macro++",
  21862. height: math.unit(300, "feet")
  21863. },
  21864. ]
  21865. ))
  21866. characterMakers.push(() => makeCharacter(
  21867. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21868. {
  21869. front: {
  21870. height: math.unit(5 + 9 / 12, "feet"),
  21871. weight: math.unit(190, "lb"),
  21872. name: "Front",
  21873. image: {
  21874. source: "./media/characters/sprisk/front.svg",
  21875. extra: 1225 / 1180,
  21876. bottom: 42.7 / 1266.4
  21877. }
  21878. },
  21879. frontNsfw: {
  21880. height: math.unit(5 + 9 / 12, "feet"),
  21881. weight: math.unit(190, "lb"),
  21882. name: "Front (NSFW)",
  21883. image: {
  21884. source: "./media/characters/sprisk/front-nsfw.svg",
  21885. extra: 1225 / 1180,
  21886. bottom: 42.7 / 1266.4
  21887. }
  21888. },
  21889. back: {
  21890. height: math.unit(5 + 9 / 12, "feet"),
  21891. weight: math.unit(190, "lb"),
  21892. name: "Back",
  21893. image: {
  21894. source: "./media/characters/sprisk/back.svg",
  21895. extra: 1247 / 1200,
  21896. bottom: 5.6 / 1253.04
  21897. }
  21898. },
  21899. },
  21900. [
  21901. {
  21902. name: "Tiny",
  21903. height: math.unit(2, "inches")
  21904. },
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(5 + 9 / 12, "feet"),
  21908. default: true
  21909. },
  21910. {
  21911. name: "Mini Macro",
  21912. height: math.unit(18, "feet")
  21913. },
  21914. {
  21915. name: "Macro",
  21916. height: math.unit(100, "feet")
  21917. },
  21918. {
  21919. name: "MACRO",
  21920. height: math.unit(50, "miles")
  21921. },
  21922. {
  21923. name: "M A C R O",
  21924. height: math.unit(300, "miles")
  21925. },
  21926. ]
  21927. ))
  21928. characterMakers.push(() => makeCharacter(
  21929. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21930. {
  21931. side: {
  21932. height: math.unit(15.6, "meters"),
  21933. weight: math.unit(700000, "kg"),
  21934. name: "Side",
  21935. image: {
  21936. source: "./media/characters/bunsen/side.svg",
  21937. extra: 1644 / 358
  21938. }
  21939. },
  21940. foot: {
  21941. height: math.unit(1.611 * 1644 / 358, "meter"),
  21942. name: "Foot",
  21943. image: {
  21944. source: "./media/characters/bunsen/foot.svg"
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Small",
  21951. height: math.unit(10, "feet")
  21952. },
  21953. {
  21954. name: "Normal",
  21955. height: math.unit(15.6, "meters"),
  21956. default: true
  21957. },
  21958. ]
  21959. ))
  21960. characterMakers.push(() => makeCharacter(
  21961. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21962. {
  21963. front: {
  21964. height: math.unit(4 + 11 / 12, "feet"),
  21965. weight: math.unit(140, "lb"),
  21966. name: "Front",
  21967. image: {
  21968. source: "./media/characters/sesh/front.svg",
  21969. extra: 3420 / 3231,
  21970. bottom: 72 / 3949.5
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "Normal",
  21977. height: math.unit(4 + 11 / 12, "feet")
  21978. },
  21979. {
  21980. name: "Grown",
  21981. height: math.unit(15, "feet"),
  21982. default: true
  21983. },
  21984. {
  21985. name: "Macro",
  21986. height: math.unit(1500, "feet")
  21987. },
  21988. {
  21989. name: "Megamacro",
  21990. height: math.unit(30, "miles")
  21991. },
  21992. {
  21993. name: "Continental",
  21994. height: math.unit(3000, "miles")
  21995. },
  21996. {
  21997. name: "Gravity Mass",
  21998. height: math.unit(300000, "miles")
  21999. },
  22000. {
  22001. name: "Planet Buster",
  22002. height: math.unit(30000000, "miles")
  22003. },
  22004. {
  22005. name: "Big",
  22006. height: math.unit(3000000000, "miles")
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22012. {
  22013. front: {
  22014. height: math.unit(9, "feet"),
  22015. weight: math.unit(350, "lb"),
  22016. name: "Front",
  22017. image: {
  22018. source: "./media/characters/pepper/front.svg",
  22019. extra: 1448 / 1312,
  22020. bottom: 9.4 / 1457.88
  22021. }
  22022. },
  22023. back: {
  22024. height: math.unit(9, "feet"),
  22025. weight: math.unit(350, "lb"),
  22026. name: "Back",
  22027. image: {
  22028. source: "./media/characters/pepper/back.svg",
  22029. extra: 1423 / 1300,
  22030. bottom: 4.6 / 1429
  22031. }
  22032. },
  22033. maw: {
  22034. height: math.unit(0.932, "feet"),
  22035. name: "Maw",
  22036. image: {
  22037. source: "./media/characters/pepper/maw.svg"
  22038. }
  22039. },
  22040. },
  22041. [
  22042. {
  22043. name: "Normal",
  22044. height: math.unit(9, "feet"),
  22045. default: true
  22046. },
  22047. ]
  22048. ))
  22049. characterMakers.push(() => makeCharacter(
  22050. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22051. {
  22052. front: {
  22053. height: math.unit(6, "feet"),
  22054. weight: math.unit(150, "lb"),
  22055. name: "Front",
  22056. image: {
  22057. source: "./media/characters/maelstrom/front.svg",
  22058. extra: 2100 / 1883,
  22059. bottom: 94 / 2196.7
  22060. }
  22061. },
  22062. },
  22063. [
  22064. {
  22065. name: "Less Kaiju",
  22066. height: math.unit(200, "feet")
  22067. },
  22068. {
  22069. name: "Kaiju",
  22070. height: math.unit(400, "feet"),
  22071. default: true
  22072. },
  22073. {
  22074. name: "Kaiju-er",
  22075. height: math.unit(600, "feet")
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(6 + 5 / 12, "feet"),
  22084. weight: math.unit(180, "lb"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/lexir/front.svg",
  22088. extra: 180 / 172,
  22089. bottom: 12 / 192
  22090. }
  22091. },
  22092. back: {
  22093. height: math.unit(6 + 5 / 12, "feet"),
  22094. weight: math.unit(180, "lb"),
  22095. name: "Back",
  22096. image: {
  22097. source: "./media/characters/lexir/back.svg",
  22098. extra: 183.84 / 175.5,
  22099. bottom: 3.1 / 187
  22100. }
  22101. },
  22102. },
  22103. [
  22104. {
  22105. name: "Very Smal",
  22106. height: math.unit(1, "nm")
  22107. },
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(6 + 5 / 12, "feet"),
  22111. default: true
  22112. },
  22113. {
  22114. name: "Macro",
  22115. height: math.unit(1, "mile")
  22116. },
  22117. {
  22118. name: "Megamacro",
  22119. height: math.unit(50, "miles")
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22125. {
  22126. front: {
  22127. height: math.unit(1.5, "meters"),
  22128. weight: math.unit(100, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/maksio/front.svg",
  22132. extra: 1549 / 1531,
  22133. bottom: 123.7 / 1674.5429
  22134. }
  22135. },
  22136. back: {
  22137. height: math.unit(1.5, "meters"),
  22138. weight: math.unit(100, "lb"),
  22139. name: "Back",
  22140. image: {
  22141. source: "./media/characters/maksio/back.svg",
  22142. extra: 1541 / 1509,
  22143. bottom: 97 / 1639
  22144. }
  22145. },
  22146. hand: {
  22147. height: math.unit(0.621, "feet"),
  22148. name: "Hand",
  22149. image: {
  22150. source: "./media/characters/maksio/hand.svg"
  22151. }
  22152. },
  22153. foot: {
  22154. height: math.unit(1.611, "feet"),
  22155. name: "Foot",
  22156. image: {
  22157. source: "./media/characters/maksio/foot.svg"
  22158. }
  22159. },
  22160. },
  22161. [
  22162. {
  22163. name: "Shrunken",
  22164. height: math.unit(10, "cm")
  22165. },
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(150, "cm"),
  22169. default: true
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(100, "feet"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/erza-bear/front.svg",
  22181. extra: 2449 / 2390,
  22182. bottom: 46 / 2494
  22183. }
  22184. },
  22185. back: {
  22186. height: math.unit(100, "feet"),
  22187. name: "Back",
  22188. image: {
  22189. source: "./media/characters/erza-bear/back.svg",
  22190. extra: 2489 / 2430,
  22191. bottom: 85.4 / 2480
  22192. }
  22193. },
  22194. tail: {
  22195. height: math.unit(42, "feet"),
  22196. name: "Tail",
  22197. image: {
  22198. source: "./media/characters/erza-bear/tail.svg"
  22199. }
  22200. },
  22201. tongue: {
  22202. height: math.unit(8, "feet"),
  22203. name: "Tongue",
  22204. image: {
  22205. source: "./media/characters/erza-bear/tongue.svg"
  22206. }
  22207. },
  22208. dick: {
  22209. height: math.unit(10.5, "feet"),
  22210. name: "Dick",
  22211. image: {
  22212. source: "./media/characters/erza-bear/dick.svg"
  22213. }
  22214. },
  22215. dickVertical: {
  22216. height: math.unit(16.9, "feet"),
  22217. name: "Dick (Vertical)",
  22218. image: {
  22219. source: "./media/characters/erza-bear/dick-vertical.svg"
  22220. }
  22221. },
  22222. },
  22223. [
  22224. {
  22225. name: "Macro",
  22226. height: math.unit(100, "feet"),
  22227. default: true
  22228. },
  22229. ]
  22230. ))
  22231. characterMakers.push(() => makeCharacter(
  22232. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22233. {
  22234. front: {
  22235. height: math.unit(172, "cm"),
  22236. weight: math.unit(73, "kg"),
  22237. name: "Front",
  22238. image: {
  22239. source: "./media/characters/violet-flor/front.svg",
  22240. extra: 1530 / 1442,
  22241. bottom: 61.9 / 1588.8
  22242. }
  22243. },
  22244. back: {
  22245. height: math.unit(180, "cm"),
  22246. weight: math.unit(73, "kg"),
  22247. name: "Back",
  22248. image: {
  22249. source: "./media/characters/violet-flor/back.svg",
  22250. extra: 1692 / 1630,
  22251. bottom: 20 / 1712
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(172, "cm"),
  22259. default: true
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(6, "feet"),
  22268. weight: math.unit(220, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/lynn-rhea/front.svg",
  22272. extra: 310 / 273
  22273. }
  22274. },
  22275. back: {
  22276. height: math.unit(6, "feet"),
  22277. weight: math.unit(220, "lb"),
  22278. name: "Back",
  22279. image: {
  22280. source: "./media/characters/lynn-rhea/back.svg",
  22281. extra: 310 / 273
  22282. }
  22283. },
  22284. dicks: {
  22285. height: math.unit(0.9, "feet"),
  22286. name: "Dicks",
  22287. image: {
  22288. source: "./media/characters/lynn-rhea/dicks.svg"
  22289. }
  22290. },
  22291. slit: {
  22292. height: math.unit(0.4, "feet"),
  22293. name: "Slit",
  22294. image: {
  22295. source: "./media/characters/lynn-rhea/slit.svg"
  22296. }
  22297. },
  22298. },
  22299. [
  22300. {
  22301. name: "Micro",
  22302. height: math.unit(1, "inch")
  22303. },
  22304. {
  22305. name: "Macro",
  22306. height: math.unit(60, "feet"),
  22307. default: true
  22308. },
  22309. {
  22310. name: "Megamacro",
  22311. height: math.unit(2, "miles")
  22312. },
  22313. {
  22314. name: "Gigamacro",
  22315. height: math.unit(3, "earths")
  22316. },
  22317. {
  22318. name: "Galactic",
  22319. height: math.unit(0.8, "galaxies")
  22320. },
  22321. ]
  22322. ))
  22323. characterMakers.push(() => makeCharacter(
  22324. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22325. {
  22326. front: {
  22327. height: math.unit(1600, "feet"),
  22328. weight: math.unit(85758785169, "kg"),
  22329. name: "Front",
  22330. image: {
  22331. source: "./media/characters/valathos/front.svg",
  22332. extra: 1451 / 1339
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Macro",
  22339. height: math.unit(1600, "feet"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(7 + 5 / 12, "feet"),
  22349. weight: math.unit(300, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/azula/front.svg",
  22353. extra: 3208 / 2880,
  22354. bottom: 80.2 / 3277
  22355. }
  22356. },
  22357. back: {
  22358. height: math.unit(7 + 5 / 12, "feet"),
  22359. weight: math.unit(300, "lb"),
  22360. name: "Back",
  22361. image: {
  22362. source: "./media/characters/azula/back.svg",
  22363. extra: 3169 / 2822,
  22364. bottom: 150.6 / 3321
  22365. }
  22366. },
  22367. },
  22368. [
  22369. {
  22370. name: "Normal",
  22371. height: math.unit(7 + 5 / 12, "feet"),
  22372. default: true
  22373. },
  22374. {
  22375. name: "Big",
  22376. height: math.unit(20, "feet")
  22377. },
  22378. ]
  22379. ))
  22380. characterMakers.push(() => makeCharacter(
  22381. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22382. {
  22383. front: {
  22384. height: math.unit(5 + 1 / 12, "feet"),
  22385. weight: math.unit(110, "lb"),
  22386. name: "Front",
  22387. image: {
  22388. source: "./media/characters/rupert/front.svg",
  22389. extra: 1549 / 1495,
  22390. bottom: 54.2 / 1604.4
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Normal",
  22397. height: math.unit(5 + 1 / 12, "feet"),
  22398. default: true
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22404. {
  22405. front: {
  22406. height: math.unit(8 + 4 / 12, "feet"),
  22407. weight: math.unit(350, "lb"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/sheera-castellar/front.svg",
  22411. extra: 1957 / 1894,
  22412. bottom: 26.97 / 1975.017
  22413. }
  22414. },
  22415. side: {
  22416. height: math.unit(8 + 4 / 12, "feet"),
  22417. weight: math.unit(350, "lb"),
  22418. name: "Side",
  22419. image: {
  22420. source: "./media/characters/sheera-castellar/side.svg",
  22421. extra: 1957 / 1894
  22422. }
  22423. },
  22424. back: {
  22425. height: math.unit(8 + 4 / 12, "feet"),
  22426. weight: math.unit(350, "lb"),
  22427. name: "Back",
  22428. image: {
  22429. source: "./media/characters/sheera-castellar/back.svg",
  22430. extra: 1957 / 1894
  22431. }
  22432. },
  22433. angled: {
  22434. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22435. weight: math.unit(350, "lb"),
  22436. name: "Angled",
  22437. image: {
  22438. source: "./media/characters/sheera-castellar/angled.svg",
  22439. extra: 1807 / 1707,
  22440. bottom: 68 / 1875
  22441. }
  22442. },
  22443. genitals: {
  22444. height: math.unit(2.2, "feet"),
  22445. name: "Genitals",
  22446. image: {
  22447. source: "./media/characters/sheera-castellar/genitals.svg"
  22448. }
  22449. },
  22450. },
  22451. [
  22452. {
  22453. name: "Normal",
  22454. height: math.unit(8 + 4 / 12, "feet")
  22455. },
  22456. {
  22457. name: "Macro",
  22458. height: math.unit(150, "feet"),
  22459. default: true
  22460. },
  22461. {
  22462. name: "Macro+",
  22463. height: math.unit(800, "feet")
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22469. {
  22470. front: {
  22471. height: math.unit(6, "feet"),
  22472. weight: math.unit(150, "lb"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/jaipur/front.svg",
  22476. extra: 3860 / 3731,
  22477. bottom: 287 / 4140
  22478. }
  22479. },
  22480. back: {
  22481. height: math.unit(6, "feet"),
  22482. weight: math.unit(150, "lb"),
  22483. name: "Back",
  22484. image: {
  22485. source: "./media/characters/jaipur/back.svg",
  22486. extra: 4060 / 3930,
  22487. bottom: 151 / 4200
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(1.85, "meters"),
  22495. default: true
  22496. },
  22497. {
  22498. name: "Macro",
  22499. height: math.unit(150, "meters")
  22500. },
  22501. {
  22502. name: "Macro+",
  22503. height: math.unit(0.5, "miles")
  22504. },
  22505. {
  22506. name: "Macro++",
  22507. height: math.unit(2.5, "miles")
  22508. },
  22509. {
  22510. name: "Macro+++",
  22511. height: math.unit(12, "miles")
  22512. },
  22513. {
  22514. name: "Macro++++",
  22515. height: math.unit(120, "miles")
  22516. },
  22517. {
  22518. name: "Macro+++++",
  22519. height: math.unit(1200, "miles")
  22520. },
  22521. ]
  22522. ))
  22523. characterMakers.push(() => makeCharacter(
  22524. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22525. {
  22526. front: {
  22527. height: math.unit(6, "feet"),
  22528. weight: math.unit(150, "lb"),
  22529. name: "Front",
  22530. image: {
  22531. source: "./media/characters/sheila-wolf/front.svg",
  22532. extra: 1931 / 1808,
  22533. bottom: 29.5 / 1960
  22534. }
  22535. },
  22536. dick: {
  22537. height: math.unit(1.464, "feet"),
  22538. name: "Dick",
  22539. image: {
  22540. source: "./media/characters/sheila-wolf/dick.svg"
  22541. }
  22542. },
  22543. muzzle: {
  22544. height: math.unit(0.513, "feet"),
  22545. name: "Muzzle",
  22546. image: {
  22547. source: "./media/characters/sheila-wolf/muzzle.svg"
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Macro",
  22554. height: math.unit(70, "feet"),
  22555. default: true
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22561. {
  22562. front: {
  22563. height: math.unit(32, "meters"),
  22564. weight: math.unit(300000, "kg"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/almor/front.svg",
  22568. extra: 1408 / 1322,
  22569. bottom: 94.6 / 1506.5
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Macro",
  22576. height: math.unit(32, "meters"),
  22577. default: true
  22578. },
  22579. ]
  22580. ))
  22581. characterMakers.push(() => makeCharacter(
  22582. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22583. {
  22584. front: {
  22585. height: math.unit(7, "feet"),
  22586. weight: math.unit(200, "lb"),
  22587. name: "Front",
  22588. image: {
  22589. source: "./media/characters/silver/front.svg",
  22590. extra: 472.1 / 450.5,
  22591. bottom: 26.5 / 499.424
  22592. }
  22593. },
  22594. },
  22595. [
  22596. {
  22597. name: "Normal",
  22598. height: math.unit(7, "feet"),
  22599. default: true
  22600. },
  22601. {
  22602. name: "Macro",
  22603. height: math.unit(800, "feet")
  22604. },
  22605. {
  22606. name: "Megamacro",
  22607. height: math.unit(250, "miles")
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22613. {
  22614. front: {
  22615. height: math.unit(6, "feet"),
  22616. weight: math.unit(150, "lb"),
  22617. name: "Front",
  22618. image: {
  22619. source: "./media/characters/pliskin/front.svg",
  22620. extra: 1469 / 1359,
  22621. bottom: 70 / 1540
  22622. }
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Micro",
  22628. height: math.unit(3, "inches")
  22629. },
  22630. {
  22631. name: "Normal",
  22632. height: math.unit(5 + 11 / 12, "feet"),
  22633. default: true
  22634. },
  22635. {
  22636. name: "Macro",
  22637. height: math.unit(120, "feet")
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22643. {
  22644. front: {
  22645. height: math.unit(6, "feet"),
  22646. weight: math.unit(150, "lb"),
  22647. name: "Front",
  22648. image: {
  22649. source: "./media/characters/sammy/front.svg",
  22650. extra: 1193 / 1089,
  22651. bottom: 30.5 / 1226
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Macro",
  22658. height: math.unit(1700, "feet"),
  22659. default: true
  22660. },
  22661. {
  22662. name: "Examacro",
  22663. height: math.unit(2.5e9, "lightyears")
  22664. },
  22665. ]
  22666. ))
  22667. characterMakers.push(() => makeCharacter(
  22668. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22669. {
  22670. front: {
  22671. height: math.unit(21, "meters"),
  22672. weight: math.unit(12, "tonnes"),
  22673. name: "Front",
  22674. image: {
  22675. source: "./media/characters/kuru/front.svg",
  22676. extra: 4301 / 3785,
  22677. bottom: 371.3 / 4691
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Macro",
  22684. height: math.unit(21, "meters"),
  22685. default: true
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22691. {
  22692. front: {
  22693. height: math.unit(23, "meters"),
  22694. weight: math.unit(12.2, "tonnes"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/rakka/front.svg",
  22698. extra: 4670 / 4169,
  22699. bottom: 301 / 4968.7
  22700. }
  22701. },
  22702. },
  22703. [
  22704. {
  22705. name: "Macro",
  22706. height: math.unit(23, "meters"),
  22707. default: true
  22708. },
  22709. ]
  22710. ))
  22711. characterMakers.push(() => makeCharacter(
  22712. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22713. {
  22714. front: {
  22715. height: math.unit(6, "feet"),
  22716. weight: math.unit(150, "lb"),
  22717. name: "Front",
  22718. image: {
  22719. source: "./media/characters/rhys-feline/front.svg",
  22720. extra: 2488 / 2308,
  22721. bottom: 35.67 / 2519.19
  22722. }
  22723. },
  22724. },
  22725. [
  22726. {
  22727. name: "Really Small",
  22728. height: math.unit(1, "nm")
  22729. },
  22730. {
  22731. name: "Micro",
  22732. height: math.unit(4, "inches")
  22733. },
  22734. {
  22735. name: "Normal",
  22736. height: math.unit(4 + 10 / 12, "feet"),
  22737. default: true
  22738. },
  22739. {
  22740. name: "Macro",
  22741. height: math.unit(100, "feet")
  22742. },
  22743. {
  22744. name: "Megamacto",
  22745. height: math.unit(50, "miles")
  22746. },
  22747. ]
  22748. ))
  22749. characterMakers.push(() => makeCharacter(
  22750. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22751. {
  22752. side: {
  22753. height: math.unit(30, "feet"),
  22754. weight: math.unit(35000, "kg"),
  22755. name: "Side",
  22756. image: {
  22757. source: "./media/characters/alydar/side.svg",
  22758. extra: 234 / 222,
  22759. bottom: 6.5 / 241
  22760. }
  22761. },
  22762. front: {
  22763. height: math.unit(30, "feet"),
  22764. weight: math.unit(35000, "kg"),
  22765. name: "Front",
  22766. image: {
  22767. source: "./media/characters/alydar/front.svg",
  22768. extra: 223.37 / 210.2,
  22769. bottom: 22.3 / 246.76
  22770. }
  22771. },
  22772. top: {
  22773. height: math.unit(64.54, "feet"),
  22774. weight: math.unit(35000, "kg"),
  22775. name: "Top",
  22776. image: {
  22777. source: "./media/characters/alydar/top.svg"
  22778. }
  22779. },
  22780. anthro: {
  22781. height: math.unit(30, "feet"),
  22782. weight: math.unit(9000, "kg"),
  22783. name: "Anthro",
  22784. image: {
  22785. source: "./media/characters/alydar/anthro.svg",
  22786. extra: 432 / 421,
  22787. bottom: 7.18 / 440
  22788. }
  22789. },
  22790. maw: {
  22791. height: math.unit(11.693, "feet"),
  22792. name: "Maw",
  22793. image: {
  22794. source: "./media/characters/alydar/maw.svg"
  22795. }
  22796. },
  22797. head: {
  22798. height: math.unit(11.693, "feet"),
  22799. name: "Head",
  22800. image: {
  22801. source: "./media/characters/alydar/head.svg"
  22802. }
  22803. },
  22804. headAlt: {
  22805. height: math.unit(12.861, "feet"),
  22806. name: "Head (Alt)",
  22807. image: {
  22808. source: "./media/characters/alydar/head-alt.svg"
  22809. }
  22810. },
  22811. wing: {
  22812. height: math.unit(20.712, "feet"),
  22813. name: "Wing",
  22814. image: {
  22815. source: "./media/characters/alydar/wing.svg"
  22816. }
  22817. },
  22818. wingFeather: {
  22819. height: math.unit(9.662, "feet"),
  22820. name: "Wing Feather",
  22821. image: {
  22822. source: "./media/characters/alydar/wing-feather.svg"
  22823. }
  22824. },
  22825. countourFeather: {
  22826. height: math.unit(4.154, "feet"),
  22827. name: "Contour Feather",
  22828. image: {
  22829. source: "./media/characters/alydar/contour-feather.svg"
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Diplomatic",
  22836. height: math.unit(13, "feet"),
  22837. default: true
  22838. },
  22839. {
  22840. name: "Small",
  22841. height: math.unit(30, "feet")
  22842. },
  22843. {
  22844. name: "Normal",
  22845. height: math.unit(95, "feet"),
  22846. default: true
  22847. },
  22848. {
  22849. name: "Large",
  22850. height: math.unit(285, "feet")
  22851. },
  22852. {
  22853. name: "Incomprehensible",
  22854. height: math.unit(450, "megameters")
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22860. {
  22861. side: {
  22862. height: math.unit(11, "feet"),
  22863. weight: math.unit(1750, "kg"),
  22864. name: "Side",
  22865. image: {
  22866. source: "./media/characters/selicia/side.svg",
  22867. extra: 440 / 396,
  22868. bottom: 24.8 / 465.979
  22869. }
  22870. },
  22871. maw: {
  22872. height: math.unit(4.665, "feet"),
  22873. name: "Maw",
  22874. image: {
  22875. source: "./media/characters/selicia/maw.svg"
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Normal",
  22882. height: math.unit(11, "feet"),
  22883. default: true
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22889. {
  22890. side: {
  22891. height: math.unit(2 + 6 / 12, "feet"),
  22892. weight: math.unit(30, "lb"),
  22893. name: "Side",
  22894. image: {
  22895. source: "./media/characters/layla/side.svg",
  22896. extra: 244 / 188,
  22897. bottom: 18.2 / 262.1
  22898. }
  22899. },
  22900. back: {
  22901. height: math.unit(2 + 6 / 12, "feet"),
  22902. weight: math.unit(30, "lb"),
  22903. name: "Back",
  22904. image: {
  22905. source: "./media/characters/layla/back.svg",
  22906. extra: 308 / 241.5,
  22907. bottom: 8.9 / 316.8
  22908. }
  22909. },
  22910. cumming: {
  22911. height: math.unit(2 + 6 / 12, "feet"),
  22912. weight: math.unit(30, "lb"),
  22913. name: "Cumming",
  22914. image: {
  22915. source: "./media/characters/layla/cumming.svg",
  22916. extra: 342 / 279,
  22917. bottom: 595 / 938
  22918. }
  22919. },
  22920. dickFlaccid: {
  22921. height: math.unit(2.595, "feet"),
  22922. name: "Flaccid Genitals",
  22923. image: {
  22924. source: "./media/characters/layla/dick-flaccid.svg"
  22925. }
  22926. },
  22927. dickErect: {
  22928. height: math.unit(2.359, "feet"),
  22929. name: "Erect Genitals",
  22930. image: {
  22931. source: "./media/characters/layla/dick-erect.svg"
  22932. }
  22933. },
  22934. },
  22935. [
  22936. {
  22937. name: "Micro",
  22938. height: math.unit(1, "inch")
  22939. },
  22940. {
  22941. name: "Small",
  22942. height: math.unit(1, "foot")
  22943. },
  22944. {
  22945. name: "Normal",
  22946. height: math.unit(2 + 6 / 12, "feet"),
  22947. default: true
  22948. },
  22949. {
  22950. name: "Macro",
  22951. height: math.unit(200, "feet")
  22952. },
  22953. {
  22954. name: "Megamacro",
  22955. height: math.unit(1000, "miles")
  22956. },
  22957. {
  22958. name: "Planetary",
  22959. height: math.unit(8000, "miles")
  22960. },
  22961. {
  22962. name: "True Layla",
  22963. height: math.unit(200000 * 7, "multiverses")
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22969. {
  22970. back: {
  22971. height: math.unit(10.5, "feet"),
  22972. weight: math.unit(800, "lb"),
  22973. name: "Back",
  22974. image: {
  22975. source: "./media/characters/knox/back.svg",
  22976. extra: 1486 / 1089,
  22977. bottom: 107 / 1601.4
  22978. }
  22979. },
  22980. side: {
  22981. height: math.unit(10.5, "feet"),
  22982. weight: math.unit(800, "lb"),
  22983. name: "Side",
  22984. image: {
  22985. source: "./media/characters/knox/side.svg",
  22986. extra: 244 / 218,
  22987. bottom: 14 / 260
  22988. }
  22989. },
  22990. },
  22991. [
  22992. {
  22993. name: "Compact",
  22994. height: math.unit(10.5, "feet"),
  22995. default: true
  22996. },
  22997. {
  22998. name: "Dynamax",
  22999. height: math.unit(210, "feet")
  23000. },
  23001. {
  23002. name: "Full Macro",
  23003. height: math.unit(850, "feet")
  23004. },
  23005. ]
  23006. ))
  23007. characterMakers.push(() => makeCharacter(
  23008. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23009. {
  23010. front: {
  23011. height: math.unit(6, "feet"),
  23012. weight: math.unit(152, "lb"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/shin-pikachu/front.svg",
  23016. extra: 1574 / 1480,
  23017. bottom: 53.3 / 1626
  23018. }
  23019. },
  23020. hand: {
  23021. height: math.unit(1.055, "feet"),
  23022. name: "Hand",
  23023. image: {
  23024. source: "./media/characters/shin-pikachu/hand.svg"
  23025. }
  23026. },
  23027. foot: {
  23028. height: math.unit(1.1, "feet"),
  23029. name: "Foot",
  23030. image: {
  23031. source: "./media/characters/shin-pikachu/foot.svg"
  23032. }
  23033. },
  23034. collar: {
  23035. height: math.unit(0.386, "feet"),
  23036. name: "Collar",
  23037. image: {
  23038. source: "./media/characters/shin-pikachu/collar.svg"
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Smallest",
  23045. height: math.unit(0.5, "inches")
  23046. },
  23047. {
  23048. name: "Micro",
  23049. height: math.unit(6, "inches")
  23050. },
  23051. {
  23052. name: "Normal",
  23053. height: math.unit(6, "feet"),
  23054. default: true
  23055. },
  23056. {
  23057. name: "Macro",
  23058. height: math.unit(150, "feet")
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23064. {
  23065. front: {
  23066. height: math.unit(28, "feet"),
  23067. weight: math.unit(10500, "lb"),
  23068. name: "Front",
  23069. image: {
  23070. source: "./media/characters/kayda/front.svg",
  23071. extra: 1536 / 1428,
  23072. bottom: 68.7 / 1603
  23073. }
  23074. },
  23075. back: {
  23076. height: math.unit(28, "feet"),
  23077. weight: math.unit(10500, "lb"),
  23078. name: "Back",
  23079. image: {
  23080. source: "./media/characters/kayda/back.svg",
  23081. extra: 1557 / 1464,
  23082. bottom: 39.5 / 1597.49
  23083. }
  23084. },
  23085. dick: {
  23086. height: math.unit(3.858, "feet"),
  23087. name: "Dick",
  23088. image: {
  23089. source: "./media/characters/kayda/dick.svg"
  23090. }
  23091. },
  23092. },
  23093. [
  23094. {
  23095. name: "Macro",
  23096. height: math.unit(28, "feet"),
  23097. default: true
  23098. },
  23099. ]
  23100. ))
  23101. characterMakers.push(() => makeCharacter(
  23102. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23103. {
  23104. front: {
  23105. height: math.unit(10 + 11 / 12, "feet"),
  23106. weight: math.unit(1400, "lb"),
  23107. name: "Front",
  23108. image: {
  23109. source: "./media/characters/brian/front.svg",
  23110. extra: 737 / 692,
  23111. bottom: 55.4 / 785
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Normal",
  23118. height: math.unit(10 + 11 / 12, "feet"),
  23119. default: true
  23120. },
  23121. ]
  23122. ))
  23123. characterMakers.push(() => makeCharacter(
  23124. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23125. {
  23126. front: {
  23127. height: math.unit(5 + 8 / 12, "feet"),
  23128. weight: math.unit(140, "lb"),
  23129. name: "Front",
  23130. image: {
  23131. source: "./media/characters/khemri/front.svg",
  23132. extra: 4780 / 4059,
  23133. bottom: 80.1 / 4859.25
  23134. }
  23135. },
  23136. },
  23137. [
  23138. {
  23139. name: "Micro",
  23140. height: math.unit(6, "inches")
  23141. },
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(5 + 8 / 12, "feet"),
  23145. default: true
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23151. {
  23152. front: {
  23153. height: math.unit(13, "feet"),
  23154. weight: math.unit(1700, "lb"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/felix-braveheart/front.svg",
  23158. extra: 1222 / 1157,
  23159. bottom: 53.2 / 1280
  23160. }
  23161. },
  23162. back: {
  23163. height: math.unit(13, "feet"),
  23164. weight: math.unit(1700, "lb"),
  23165. name: "Back",
  23166. image: {
  23167. source: "./media/characters/felix-braveheart/back.svg",
  23168. extra: 1277 / 1203,
  23169. bottom: 50.2 / 1327
  23170. }
  23171. },
  23172. feral: {
  23173. height: math.unit(6, "feet"),
  23174. weight: math.unit(400, "lb"),
  23175. name: "Feral",
  23176. image: {
  23177. source: "./media/characters/felix-braveheart/feral.svg",
  23178. extra: 682 / 625,
  23179. bottom: 6.9 / 688
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(13, "feet"),
  23187. default: true
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23193. {
  23194. side: {
  23195. height: math.unit(5 + 11 / 12, "feet"),
  23196. weight: math.unit(1400, "lb"),
  23197. name: "Side",
  23198. image: {
  23199. source: "./media/characters/shadow-blade/side.svg",
  23200. extra: 1726 / 1267,
  23201. bottom: 58.4 / 1785
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(5 + 11 / 12, "feet"),
  23209. default: true
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23215. {
  23216. front: {
  23217. height: math.unit(1 + 6 / 12, "feet"),
  23218. weight: math.unit(25, "lb"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/karla-halldor/front.svg",
  23222. extra: 1459 / 1383,
  23223. bottom: 12 / 1472
  23224. }
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(1 + 6 / 12, "feet"),
  23231. default: true
  23232. },
  23233. ]
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23237. {
  23238. front: {
  23239. height: math.unit(6 + 2 / 12, "feet"),
  23240. weight: math.unit(160, "lb"),
  23241. name: "Front",
  23242. image: {
  23243. source: "./media/characters/ariam/front.svg",
  23244. extra: 714 / 617,
  23245. bottom: 23.4 / 737,
  23246. }
  23247. },
  23248. squatting: {
  23249. height: math.unit(4.1, "feet"),
  23250. weight: math.unit(160, "lb"),
  23251. name: "Squatting",
  23252. image: {
  23253. source: "./media/characters/ariam/squatting.svg",
  23254. extra: 2617 / 2112,
  23255. bottom: 61.2 / 2681,
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(6 + 2 / 12, "feet"),
  23263. default: true
  23264. },
  23265. {
  23266. name: "Normal+",
  23267. height: math.unit(4, "meters")
  23268. },
  23269. {
  23270. name: "Macro",
  23271. height: math.unit(50, "meters")
  23272. },
  23273. {
  23274. name: "Macro+",
  23275. height: math.unit(100, "meters")
  23276. },
  23277. {
  23278. name: "Megamacro",
  23279. height: math.unit(20, "km")
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(1.67, "meters"),
  23288. weight: math.unit(140, "lb"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23292. extra: 438 / 410,
  23293. bottom: 0.75 / 439
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Shrunken",
  23300. height: math.unit(7.6, "cm")
  23301. },
  23302. {
  23303. name: "Human Scale",
  23304. height: math.unit(1.67, "meters")
  23305. },
  23306. {
  23307. name: "Wolxi Scale",
  23308. height: math.unit(36.7, "meters"),
  23309. default: true
  23310. },
  23311. ]
  23312. ))
  23313. characterMakers.push(() => makeCharacter(
  23314. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23315. {
  23316. front: {
  23317. height: math.unit(1.73, "meters"),
  23318. weight: math.unit(240, "lb"),
  23319. name: "Front",
  23320. image: {
  23321. source: "./media/characters/izue-two-mothers/front.svg",
  23322. extra: 469 / 437,
  23323. bottom: 1.24 / 470.6
  23324. }
  23325. },
  23326. },
  23327. [
  23328. {
  23329. name: "Shrunken",
  23330. height: math.unit(7.86, "cm")
  23331. },
  23332. {
  23333. name: "Human Scale",
  23334. height: math.unit(1.73, "meters")
  23335. },
  23336. {
  23337. name: "Wolxi Scale",
  23338. height: math.unit(38, "meters"),
  23339. default: true
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23345. {
  23346. front: {
  23347. height: math.unit(1.55, "meters"),
  23348. weight: math.unit(120, "lb"),
  23349. name: "Front",
  23350. image: {
  23351. source: "./media/characters/teeku-love-shack/front.svg",
  23352. extra: 387 / 362,
  23353. bottom: 1.51 / 388
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Shrunken",
  23360. height: math.unit(7, "cm")
  23361. },
  23362. {
  23363. name: "Human Scale",
  23364. height: math.unit(1.55, "meters")
  23365. },
  23366. {
  23367. name: "Wolxi Scale",
  23368. height: math.unit(34.1, "meters"),
  23369. default: true
  23370. },
  23371. ]
  23372. ))
  23373. characterMakers.push(() => makeCharacter(
  23374. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23375. {
  23376. front: {
  23377. height: math.unit(1.83, "meters"),
  23378. weight: math.unit(135, "lb"),
  23379. name: "Front",
  23380. image: {
  23381. source: "./media/characters/dejma-the-red/front.svg",
  23382. extra: 480 / 458,
  23383. bottom: 1.8 / 482
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Shrunken",
  23390. height: math.unit(8.3, "cm")
  23391. },
  23392. {
  23393. name: "Human Scale",
  23394. height: math.unit(1.83, "meters")
  23395. },
  23396. {
  23397. name: "Wolxi Scale",
  23398. height: math.unit(40, "meters"),
  23399. default: true
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(1.78, "meters"),
  23408. weight: math.unit(65, "kg"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/aki/front.svg",
  23412. extra: 452 / 415
  23413. }
  23414. },
  23415. frontNsfw: {
  23416. height: math.unit(1.78, "meters"),
  23417. weight: math.unit(65, "kg"),
  23418. name: "Front (NSFW)",
  23419. image: {
  23420. source: "./media/characters/aki/front-nsfw.svg",
  23421. extra: 452 / 415
  23422. }
  23423. },
  23424. back: {
  23425. height: math.unit(1.78, "meters"),
  23426. weight: math.unit(65, "kg"),
  23427. name: "Back",
  23428. image: {
  23429. source: "./media/characters/aki/back.svg",
  23430. extra: 452 / 415
  23431. }
  23432. },
  23433. rump: {
  23434. height: math.unit(2.05, "feet"),
  23435. name: "Rump",
  23436. image: {
  23437. source: "./media/characters/aki/rump.svg"
  23438. }
  23439. },
  23440. dick: {
  23441. height: math.unit(0.95, "feet"),
  23442. name: "Dick",
  23443. image: {
  23444. source: "./media/characters/aki/dick.svg"
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Micro",
  23451. height: math.unit(15, "cm")
  23452. },
  23453. {
  23454. name: "Normal",
  23455. height: math.unit(178, "cm"),
  23456. default: true
  23457. },
  23458. {
  23459. name: "Macro",
  23460. height: math.unit(214, "m")
  23461. },
  23462. {
  23463. name: "Macro+",
  23464. height: math.unit(534, "m")
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23470. {
  23471. front: {
  23472. height: math.unit(5 + 5 / 12, "feet"),
  23473. weight: math.unit(120, "lb"),
  23474. name: "Front",
  23475. image: {
  23476. source: "./media/characters/ari/front.svg",
  23477. extra: 714.5 / 682,
  23478. bottom: 8 / 722.5
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Normal",
  23485. height: math.unit(5 + 5 / 12, "feet")
  23486. },
  23487. {
  23488. name: "Macro",
  23489. height: math.unit(100, "feet"),
  23490. default: true
  23491. },
  23492. {
  23493. name: "Megamacro",
  23494. height: math.unit(100, "miles")
  23495. },
  23496. {
  23497. name: "Gigamacro",
  23498. height: math.unit(80000, "miles")
  23499. },
  23500. ]
  23501. ))
  23502. characterMakers.push(() => makeCharacter(
  23503. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23504. {
  23505. side: {
  23506. height: math.unit(9, "feet"),
  23507. weight: math.unit(400, "kg"),
  23508. name: "Side",
  23509. image: {
  23510. source: "./media/characters/bolt/side.svg",
  23511. extra: 1126 / 896,
  23512. bottom: 60 / 1187.3,
  23513. }
  23514. },
  23515. },
  23516. [
  23517. {
  23518. name: "Micro",
  23519. height: math.unit(5, "inches")
  23520. },
  23521. {
  23522. name: "Normal",
  23523. height: math.unit(9, "feet"),
  23524. default: true
  23525. },
  23526. {
  23527. name: "Macro",
  23528. height: math.unit(700, "feet")
  23529. },
  23530. {
  23531. name: "Max Size",
  23532. height: math.unit(1.52e22, "yottameters")
  23533. },
  23534. ]
  23535. ))
  23536. characterMakers.push(() => makeCharacter(
  23537. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23538. {
  23539. front: {
  23540. height: math.unit(4.53, "meters"),
  23541. weight: math.unit(3, "tons"),
  23542. name: "Front",
  23543. image: {
  23544. source: "./media/characters/draekon-sylviar/front.svg",
  23545. extra: 1228 / 1068,
  23546. bottom: 41 / 1270
  23547. }
  23548. },
  23549. tail: {
  23550. height: math.unit(1.772, "meter"),
  23551. name: "Tail",
  23552. image: {
  23553. source: "./media/characters/draekon-sylviar/tail.svg"
  23554. }
  23555. },
  23556. head: {
  23557. height: math.unit(1.331, "meter"),
  23558. name: "Head",
  23559. image: {
  23560. source: "./media/characters/draekon-sylviar/head.svg"
  23561. }
  23562. },
  23563. hand: {
  23564. height: math.unit(0.564, "meter"),
  23565. name: "Hand",
  23566. image: {
  23567. source: "./media/characters/draekon-sylviar/hand.svg"
  23568. }
  23569. },
  23570. foot: {
  23571. height: math.unit(0.621, "meter"),
  23572. name: "Foot",
  23573. image: {
  23574. source: "./media/characters/draekon-sylviar/foot.svg",
  23575. bottom: 32 / 324
  23576. }
  23577. },
  23578. dick: {
  23579. height: math.unit(61, "cm"),
  23580. name: "Dick",
  23581. image: {
  23582. source: "./media/characters/draekon-sylviar/dick.svg"
  23583. }
  23584. },
  23585. dickseparated: {
  23586. height: math.unit(61, "cm"),
  23587. name: "Dick-separated",
  23588. image: {
  23589. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Small",
  23596. height: math.unit(4.53 / 2, "meters"),
  23597. default: true
  23598. },
  23599. {
  23600. name: "Normal",
  23601. height: math.unit(4.53, "meters"),
  23602. default: true
  23603. },
  23604. {
  23605. name: "Large",
  23606. height: math.unit(4.53 * 2, "meters"),
  23607. },
  23608. ]
  23609. ))
  23610. characterMakers.push(() => makeCharacter(
  23611. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23612. {
  23613. front: {
  23614. height: math.unit(6 + 2 / 12, "feet"),
  23615. weight: math.unit(180, "lb"),
  23616. name: "Front",
  23617. image: {
  23618. source: "./media/characters/brawler/front.svg",
  23619. extra: 3301 / 3027,
  23620. bottom: 138 / 3439
  23621. }
  23622. },
  23623. },
  23624. [
  23625. {
  23626. name: "Normal",
  23627. height: math.unit(6 + 2 / 12, "feet"),
  23628. default: true
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23634. {
  23635. front: {
  23636. height: math.unit(11, "feet"),
  23637. weight: math.unit(1000, "lb"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/alex/front.svg",
  23641. bottom: 44.5 / 620
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Micro",
  23648. height: math.unit(5, "inches")
  23649. },
  23650. {
  23651. name: "Normal",
  23652. height: math.unit(11, "feet"),
  23653. default: true
  23654. },
  23655. {
  23656. name: "Macro",
  23657. height: math.unit(9.5e9, "feet")
  23658. },
  23659. {
  23660. name: "Max Size",
  23661. height: math.unit(1.4e283, "yottameters")
  23662. },
  23663. ]
  23664. ))
  23665. characterMakers.push(() => makeCharacter(
  23666. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23667. {
  23668. female: {
  23669. height: math.unit(29.9, "m"),
  23670. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23671. name: "Female",
  23672. image: {
  23673. source: "./media/characters/zenari/female.svg",
  23674. extra: 3281.6 / 3217,
  23675. bottom: 72.2 / 3353
  23676. }
  23677. },
  23678. male: {
  23679. height: math.unit(27.7, "m"),
  23680. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23681. name: "Male",
  23682. image: {
  23683. source: "./media/characters/zenari/male.svg",
  23684. extra: 3008 / 2991,
  23685. bottom: 54.6 / 3069
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(29.7, "meters"),
  23693. default: true
  23694. },
  23695. ]
  23696. ))
  23697. characterMakers.push(() => makeCharacter(
  23698. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23699. {
  23700. female: {
  23701. height: math.unit(23.8, "m"),
  23702. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23703. name: "Female",
  23704. image: {
  23705. source: "./media/characters/mactarian/female.svg",
  23706. extra: 2662 / 2569,
  23707. bottom: 73 / 2736
  23708. }
  23709. },
  23710. male: {
  23711. height: math.unit(23.8, "m"),
  23712. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23713. name: "Male",
  23714. image: {
  23715. source: "./media/characters/mactarian/male.svg",
  23716. extra: 2673 / 2600,
  23717. bottom: 76 / 2750
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Macro",
  23724. height: math.unit(23.8, "meters"),
  23725. default: true
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23731. {
  23732. female: {
  23733. height: math.unit(19.3, "m"),
  23734. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23735. name: "Female",
  23736. image: {
  23737. source: "./media/characters/umok/female.svg",
  23738. extra: 2186 / 2078,
  23739. bottom: 87 / 2277
  23740. }
  23741. },
  23742. male: {
  23743. height: math.unit(19.5, "m"),
  23744. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23745. name: "Male",
  23746. image: {
  23747. source: "./media/characters/umok/male.svg",
  23748. extra: 2233 / 2140,
  23749. bottom: 24.4 / 2258
  23750. }
  23751. },
  23752. },
  23753. [
  23754. {
  23755. name: "Macro",
  23756. height: math.unit(19.3, "meters"),
  23757. default: true
  23758. },
  23759. ]
  23760. ))
  23761. characterMakers.push(() => makeCharacter(
  23762. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23763. {
  23764. female: {
  23765. height: math.unit(26.15, "m"),
  23766. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23767. name: "Female",
  23768. image: {
  23769. source: "./media/characters/joraxian/female.svg",
  23770. extra: 2912 / 2824,
  23771. bottom: 36 / 2956
  23772. }
  23773. },
  23774. male: {
  23775. height: math.unit(25.4, "m"),
  23776. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23777. name: "Male",
  23778. image: {
  23779. source: "./media/characters/joraxian/male.svg",
  23780. extra: 2877 / 2721,
  23781. bottom: 82 / 2967
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Macro",
  23788. height: math.unit(26.15, "meters"),
  23789. default: true
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23795. {
  23796. female: {
  23797. height: math.unit(21.6, "m"),
  23798. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23799. name: "Female",
  23800. image: {
  23801. source: "./media/characters/sthara/female.svg",
  23802. extra: 2516 / 2347,
  23803. bottom: 21.5 / 2537
  23804. }
  23805. },
  23806. male: {
  23807. height: math.unit(24, "m"),
  23808. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23809. name: "Male",
  23810. image: {
  23811. source: "./media/characters/sthara/male.svg",
  23812. extra: 2732 / 2607,
  23813. bottom: 23 / 2732
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Macro",
  23820. height: math.unit(21.6, "meters"),
  23821. default: true
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23827. {
  23828. front: {
  23829. height: math.unit(6 + 4 / 12, "feet"),
  23830. weight: math.unit(175, "lb"),
  23831. name: "Front",
  23832. image: {
  23833. source: "./media/characters/luka-bryzant/front.svg",
  23834. extra: 311 / 289,
  23835. bottom: 4 / 315
  23836. }
  23837. },
  23838. back: {
  23839. height: math.unit(6 + 4 / 12, "feet"),
  23840. weight: math.unit(175, "lb"),
  23841. name: "Back",
  23842. image: {
  23843. source: "./media/characters/luka-bryzant/back.svg",
  23844. extra: 311 / 289,
  23845. bottom: 3.8 / 313.7
  23846. }
  23847. },
  23848. },
  23849. [
  23850. {
  23851. name: "Micro",
  23852. height: math.unit(10, "inches")
  23853. },
  23854. {
  23855. name: "Normal",
  23856. height: math.unit(6 + 4 / 12, "feet"),
  23857. default: true
  23858. },
  23859. {
  23860. name: "Large",
  23861. height: math.unit(12, "feet")
  23862. },
  23863. ]
  23864. ))
  23865. characterMakers.push(() => makeCharacter(
  23866. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23867. {
  23868. front: {
  23869. height: math.unit(5 + 7 / 12, "feet"),
  23870. weight: math.unit(185, "lb"),
  23871. name: "Front",
  23872. image: {
  23873. source: "./media/characters/aman-aquila/front.svg",
  23874. extra: 1013 / 976,
  23875. bottom: 45.6 / 1057
  23876. }
  23877. },
  23878. side: {
  23879. height: math.unit(5 + 7 / 12, "feet"),
  23880. weight: math.unit(185, "lb"),
  23881. name: "Side",
  23882. image: {
  23883. source: "./media/characters/aman-aquila/side.svg",
  23884. extra: 1054 / 1011,
  23885. bottom: 15 / 1070
  23886. }
  23887. },
  23888. back: {
  23889. height: math.unit(5 + 7 / 12, "feet"),
  23890. weight: math.unit(185, "lb"),
  23891. name: "Back",
  23892. image: {
  23893. source: "./media/characters/aman-aquila/back.svg",
  23894. extra: 1026 / 970,
  23895. bottom: 12 / 1039
  23896. }
  23897. },
  23898. head: {
  23899. height: math.unit(1.211, "feet"),
  23900. name: "Head",
  23901. image: {
  23902. source: "./media/characters/aman-aquila/head.svg",
  23903. }
  23904. },
  23905. },
  23906. [
  23907. {
  23908. name: "Minimicro",
  23909. height: math.unit(0.057, "inches")
  23910. },
  23911. {
  23912. name: "Micro",
  23913. height: math.unit(7, "inches")
  23914. },
  23915. {
  23916. name: "Mini",
  23917. height: math.unit(3 + 7 / 12, "feet")
  23918. },
  23919. {
  23920. name: "Normal",
  23921. height: math.unit(5 + 7 / 12, "feet"),
  23922. default: true
  23923. },
  23924. {
  23925. name: "Macro",
  23926. height: math.unit(157 + 7 / 12, "feet")
  23927. },
  23928. {
  23929. name: "Megamacro",
  23930. height: math.unit(1557 + 7 / 12, "feet")
  23931. },
  23932. {
  23933. name: "Gigamacro",
  23934. height: math.unit(15557 + 7 / 12, "feet")
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(3 + 2 / 12, "inches"),
  23943. weight: math.unit(0.3, "ounces"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/hiphae/front.svg",
  23947. extra: 1931 / 1683,
  23948. bottom: 24 / 1955
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Normal",
  23955. height: math.unit(3 + 1 / 2, "inches"),
  23956. default: true
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23962. {
  23963. front: {
  23964. height: math.unit(5 + 10 / 12, "feet"),
  23965. weight: math.unit(165, "lb"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/nicky/front.svg",
  23969. extra: 3144 / 2886,
  23970. bottom: 45.6 / 3192
  23971. }
  23972. },
  23973. back: {
  23974. height: math.unit(5 + 10 / 12, "feet"),
  23975. weight: math.unit(165, "lb"),
  23976. name: "Back",
  23977. image: {
  23978. source: "./media/characters/nicky/back.svg",
  23979. extra: 3055 / 2804,
  23980. bottom: 28.4 / 3087
  23981. }
  23982. },
  23983. frontclothed: {
  23984. height: math.unit(5 + 10 / 12, "feet"),
  23985. weight: math.unit(165, "lb"),
  23986. name: "Front-clothed",
  23987. image: {
  23988. source: "./media/characters/nicky/front-clothed.svg",
  23989. extra: 3184.9 / 2926.9,
  23990. bottom: 86.5 / 3239.9
  23991. }
  23992. },
  23993. foot: {
  23994. height: math.unit(1.16, "feet"),
  23995. name: "Foot",
  23996. image: {
  23997. source: "./media/characters/nicky/foot.svg"
  23998. }
  23999. },
  24000. feet: {
  24001. height: math.unit(1.34, "feet"),
  24002. name: "Feet",
  24003. image: {
  24004. source: "./media/characters/nicky/feet.svg"
  24005. }
  24006. },
  24007. maw: {
  24008. height: math.unit(0.9, "feet"),
  24009. name: "Maw",
  24010. image: {
  24011. source: "./media/characters/nicky/maw.svg"
  24012. }
  24013. },
  24014. },
  24015. [
  24016. {
  24017. name: "Normal",
  24018. height: math.unit(5 + 10 / 12, "feet"),
  24019. default: true
  24020. },
  24021. {
  24022. name: "Macro",
  24023. height: math.unit(60, "feet")
  24024. },
  24025. {
  24026. name: "Megamacro",
  24027. height: math.unit(1, "mile")
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24033. {
  24034. side: {
  24035. height: math.unit(10, "feet"),
  24036. weight: math.unit(600, "lb"),
  24037. name: "Side",
  24038. image: {
  24039. source: "./media/characters/blair/side.svg",
  24040. bottom: 16.6 / 475,
  24041. extra: 458 / 431
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Micro",
  24048. height: math.unit(8, "inches")
  24049. },
  24050. {
  24051. name: "Normal",
  24052. height: math.unit(10, "feet"),
  24053. default: true
  24054. },
  24055. {
  24056. name: "Macro",
  24057. height: math.unit(180, "feet")
  24058. },
  24059. ]
  24060. ))
  24061. characterMakers.push(() => makeCharacter(
  24062. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24063. {
  24064. front: {
  24065. height: math.unit(5 + 4 / 12, "feet"),
  24066. weight: math.unit(125, "lb"),
  24067. name: "Front",
  24068. image: {
  24069. source: "./media/characters/fisher/front.svg",
  24070. extra: 444 / 390,
  24071. bottom: 2 / 444.8
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Micro",
  24078. height: math.unit(4, "inches")
  24079. },
  24080. {
  24081. name: "Normal",
  24082. height: math.unit(5 + 4 / 12, "feet"),
  24083. default: true
  24084. },
  24085. {
  24086. name: "Macro",
  24087. height: math.unit(100, "feet")
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24093. {
  24094. front: {
  24095. height: math.unit(6.71, "feet"),
  24096. weight: math.unit(200, "lb"),
  24097. capacity: math.unit(1000000, "people"),
  24098. name: "Front",
  24099. image: {
  24100. source: "./media/characters/gliss/front.svg",
  24101. extra: 2347 / 2231,
  24102. bottom: 113 / 2462
  24103. }
  24104. },
  24105. hammerspaceSize: {
  24106. height: math.unit(6.71 * 717, "feet"),
  24107. weight: math.unit(200, "lb"),
  24108. capacity: math.unit(1000000, "people"),
  24109. name: "Hammerspace Size",
  24110. image: {
  24111. source: "./media/characters/gliss/front.svg",
  24112. extra: 2347 / 2231,
  24113. bottom: 113 / 2462
  24114. }
  24115. },
  24116. },
  24117. [
  24118. {
  24119. name: "Normal",
  24120. height: math.unit(6.71, "feet"),
  24121. default: true
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24127. {
  24128. side: {
  24129. height: math.unit(1.44, "m"),
  24130. weight: math.unit(80, "kg"),
  24131. name: "Side",
  24132. image: {
  24133. source: "./media/characters/dune-anderson/side.svg",
  24134. bottom: 49 / 1426
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Wolf-sized",
  24141. height: math.unit(1.44, "meters")
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(5.05, "meters"),
  24146. default: true
  24147. },
  24148. {
  24149. name: "Big",
  24150. height: math.unit(14.4, "meters")
  24151. },
  24152. {
  24153. name: "Huge",
  24154. height: math.unit(144, "meters")
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(7, "feet"),
  24163. weight: math.unit(425, "lb"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/hind/front.svg",
  24167. extra: 2091 / 1860,
  24168. bottom: 129 / 2220
  24169. }
  24170. },
  24171. back: {
  24172. height: math.unit(7, "feet"),
  24173. weight: math.unit(425, "lb"),
  24174. name: "Back",
  24175. image: {
  24176. source: "./media/characters/hind/back.svg",
  24177. extra: 2091 / 1860,
  24178. bottom: 24.6 / 2309
  24179. }
  24180. },
  24181. tail: {
  24182. height: math.unit(2.8, "feet"),
  24183. name: "Tail",
  24184. image: {
  24185. source: "./media/characters/hind/tail.svg"
  24186. }
  24187. },
  24188. head: {
  24189. height: math.unit(2.55, "feet"),
  24190. name: "Head",
  24191. image: {
  24192. source: "./media/characters/hind/head.svg"
  24193. }
  24194. },
  24195. },
  24196. [
  24197. {
  24198. name: "XS",
  24199. height: math.unit(0.7, "feet")
  24200. },
  24201. {
  24202. name: "Normal",
  24203. height: math.unit(7, "feet"),
  24204. default: true
  24205. },
  24206. {
  24207. name: "XL",
  24208. height: math.unit(70, "feet")
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24214. {
  24215. front: {
  24216. height: math.unit(6, "feet"),
  24217. weight: math.unit(150, "lb"),
  24218. name: "Front",
  24219. image: {
  24220. source: "./media/characters/dylan-skaven/front.svg",
  24221. extra: 2318 / 2063,
  24222. bottom: 93.4 / 2410
  24223. }
  24224. },
  24225. },
  24226. [
  24227. {
  24228. name: "Nano",
  24229. height: math.unit(1, "mm")
  24230. },
  24231. {
  24232. name: "Micro",
  24233. height: math.unit(1, "cm")
  24234. },
  24235. {
  24236. name: "Normal",
  24237. height: math.unit(2.1, "meters"),
  24238. default: true
  24239. },
  24240. ]
  24241. ))
  24242. characterMakers.push(() => makeCharacter(
  24243. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24244. {
  24245. front: {
  24246. height: math.unit(7 + 5 / 12, "feet"),
  24247. weight: math.unit(357, "lb"),
  24248. name: "Front",
  24249. image: {
  24250. source: "./media/characters/solex-draconov/front.svg",
  24251. extra: 1993 / 1865,
  24252. bottom: 117 / 2111
  24253. }
  24254. },
  24255. },
  24256. [
  24257. {
  24258. name: "Natural Height",
  24259. height: math.unit(7 + 5 / 12, "feet"),
  24260. default: true
  24261. },
  24262. {
  24263. name: "Macro",
  24264. height: math.unit(350, "feet")
  24265. },
  24266. {
  24267. name: "Macro+",
  24268. height: math.unit(1000, "feet")
  24269. },
  24270. {
  24271. name: "Megamacro",
  24272. height: math.unit(20, "km")
  24273. },
  24274. {
  24275. name: "Megamacro+",
  24276. height: math.unit(1000, "km")
  24277. },
  24278. {
  24279. name: "Gigamacro",
  24280. height: math.unit(2.5, "Gm")
  24281. },
  24282. {
  24283. name: "Teramacro",
  24284. height: math.unit(15, "Tm")
  24285. },
  24286. {
  24287. name: "Galactic",
  24288. height: math.unit(30, "Zm")
  24289. },
  24290. {
  24291. name: "Universal",
  24292. height: math.unit(21000, "Ym")
  24293. },
  24294. {
  24295. name: "Omniversal",
  24296. height: math.unit(9.861e50, "Ym")
  24297. },
  24298. {
  24299. name: "Existential",
  24300. height: math.unit(1e300, "meters")
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24306. {
  24307. side: {
  24308. height: math.unit(25, "feet"),
  24309. weight: math.unit(90000, "lb"),
  24310. name: "Side",
  24311. image: {
  24312. source: "./media/characters/mandarax/side.svg",
  24313. extra: 614 / 332,
  24314. bottom: 55 / 630
  24315. }
  24316. },
  24317. head: {
  24318. height: math.unit(11.4, "feet"),
  24319. name: "Head",
  24320. image: {
  24321. source: "./media/characters/mandarax/head.svg"
  24322. }
  24323. },
  24324. belly: {
  24325. height: math.unit(33, "feet"),
  24326. name: "Belly",
  24327. capacity: math.unit(500, "people"),
  24328. image: {
  24329. source: "./media/characters/mandarax/belly.svg"
  24330. }
  24331. },
  24332. dick: {
  24333. height: math.unit(8.46, "feet"),
  24334. name: "Dick",
  24335. image: {
  24336. source: "./media/characters/mandarax/dick.svg"
  24337. }
  24338. },
  24339. top: {
  24340. height: math.unit(28, "meters"),
  24341. name: "Top",
  24342. image: {
  24343. source: "./media/characters/mandarax/top.svg"
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Normal",
  24350. height: math.unit(25, "feet"),
  24351. default: true
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24357. {
  24358. front: {
  24359. height: math.unit(5, "feet"),
  24360. weight: math.unit(90, "lb"),
  24361. name: "Front",
  24362. image: {
  24363. source: "./media/characters/pixil/front.svg",
  24364. extra: 2000 / 1618,
  24365. bottom: 12.3 / 2011
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Normal",
  24372. height: math.unit(5, "feet"),
  24373. default: true
  24374. },
  24375. {
  24376. name: "Megamacro",
  24377. height: math.unit(10, "miles"),
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24383. {
  24384. front: {
  24385. height: math.unit(7 + 2 / 12, "feet"),
  24386. weight: math.unit(200, "lb"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/angel/front.svg",
  24390. extra: 1830 / 1737,
  24391. bottom: 22.6 / 1854,
  24392. }
  24393. },
  24394. },
  24395. [
  24396. {
  24397. name: "Normal",
  24398. height: math.unit(7 + 2 / 12, "feet"),
  24399. default: true
  24400. },
  24401. {
  24402. name: "Macro",
  24403. height: math.unit(1000, "feet")
  24404. },
  24405. {
  24406. name: "Megamacro",
  24407. height: math.unit(2, "miles")
  24408. },
  24409. {
  24410. name: "Gigamacro",
  24411. height: math.unit(20, "earths")
  24412. },
  24413. ]
  24414. ))
  24415. characterMakers.push(() => makeCharacter(
  24416. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24417. {
  24418. front: {
  24419. height: math.unit(5, "feet"),
  24420. weight: math.unit(180, "lb"),
  24421. name: "Front",
  24422. image: {
  24423. source: "./media/characters/mekana/front.svg",
  24424. extra: 1671 / 1605,
  24425. bottom: 3.5 / 1691
  24426. }
  24427. },
  24428. side: {
  24429. height: math.unit(5, "feet"),
  24430. weight: math.unit(180, "lb"),
  24431. name: "Side",
  24432. image: {
  24433. source: "./media/characters/mekana/side.svg",
  24434. extra: 1671 / 1605,
  24435. bottom: 3.5 / 1691
  24436. }
  24437. },
  24438. back: {
  24439. height: math.unit(5, "feet"),
  24440. weight: math.unit(180, "lb"),
  24441. name: "Back",
  24442. image: {
  24443. source: "./media/characters/mekana/back.svg",
  24444. extra: 1671 / 1605,
  24445. bottom: 3.5 / 1691
  24446. }
  24447. },
  24448. },
  24449. [
  24450. {
  24451. name: "Normal",
  24452. height: math.unit(5, "feet"),
  24453. default: true
  24454. },
  24455. ]
  24456. ))
  24457. characterMakers.push(() => makeCharacter(
  24458. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24459. {
  24460. front: {
  24461. height: math.unit(4 + 6 / 12, "feet"),
  24462. weight: math.unit(80, "lb"),
  24463. name: "Front",
  24464. image: {
  24465. source: "./media/characters/pixie/front.svg",
  24466. extra: 1924 / 1825,
  24467. bottom: 22.4 / 1946
  24468. }
  24469. },
  24470. },
  24471. [
  24472. {
  24473. name: "Normal",
  24474. height: math.unit(4 + 6 / 12, "feet"),
  24475. default: true
  24476. },
  24477. {
  24478. name: "Macro",
  24479. height: math.unit(40, "feet")
  24480. },
  24481. ]
  24482. ))
  24483. characterMakers.push(() => makeCharacter(
  24484. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24485. {
  24486. front: {
  24487. height: math.unit(2.1, "meters"),
  24488. weight: math.unit(200, "lb"),
  24489. name: "Front",
  24490. image: {
  24491. source: "./media/characters/the-lascivious/front.svg",
  24492. extra: 1 / 0.893,
  24493. bottom: 3.5 / 573.7
  24494. }
  24495. },
  24496. },
  24497. [
  24498. {
  24499. name: "Human Scale",
  24500. height: math.unit(2.1, "meters")
  24501. },
  24502. {
  24503. name: "Wolxi Scale",
  24504. height: math.unit(46.2, "m"),
  24505. default: true
  24506. },
  24507. {
  24508. name: "Boinker of Buildings",
  24509. height: math.unit(10, "km")
  24510. },
  24511. {
  24512. name: "Shagger of Skyscrapers",
  24513. height: math.unit(40, "km")
  24514. },
  24515. {
  24516. name: "Banger of Boroughs",
  24517. height: math.unit(4000, "km")
  24518. },
  24519. {
  24520. name: "Screwer of States",
  24521. height: math.unit(100000, "km")
  24522. },
  24523. {
  24524. name: "Pounder of Planets",
  24525. height: math.unit(2000000, "km")
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24531. {
  24532. front: {
  24533. height: math.unit(6, "feet"),
  24534. weight: math.unit(150, "lb"),
  24535. name: "Front",
  24536. image: {
  24537. source: "./media/characters/aj/front.svg",
  24538. extra: 2039 / 1562,
  24539. bottom: 40 / 2079
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Normal",
  24546. height: math.unit(11 + 6 / 12, "feet"),
  24547. default: true
  24548. },
  24549. {
  24550. name: "Megamacro",
  24551. height: math.unit(60, "megameters")
  24552. },
  24553. ]
  24554. ))
  24555. characterMakers.push(() => makeCharacter(
  24556. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24557. {
  24558. side: {
  24559. height: math.unit(31 + 8 / 12, "feet"),
  24560. weight: math.unit(75000, "kg"),
  24561. name: "Side",
  24562. image: {
  24563. source: "./media/characters/koros/side.svg",
  24564. extra: 1442 / 1297,
  24565. bottom: 122.7 / 1562
  24566. }
  24567. },
  24568. dicksKingsCrown: {
  24569. height: math.unit(6, "feet"),
  24570. name: "Dicks (King's Crown)",
  24571. image: {
  24572. source: "./media/characters/koros/dicks-kings-crown.svg"
  24573. }
  24574. },
  24575. dicksTailSet: {
  24576. height: math.unit(3, "feet"),
  24577. name: "Dicks (Tail Set)",
  24578. image: {
  24579. source: "./media/characters/koros/dicks-tail-set.svg"
  24580. }
  24581. },
  24582. dickCumming: {
  24583. height: math.unit(7.98, "feet"),
  24584. name: "Dick (Cumming)",
  24585. image: {
  24586. source: "./media/characters/koros/dick-cumming.svg"
  24587. }
  24588. },
  24589. dicksBack: {
  24590. height: math.unit(5.9, "feet"),
  24591. name: "Dicks (Back)",
  24592. image: {
  24593. source: "./media/characters/koros/dicks-back.svg"
  24594. }
  24595. },
  24596. dicksFront: {
  24597. height: math.unit(3.72, "feet"),
  24598. name: "Dicks (Front)",
  24599. image: {
  24600. source: "./media/characters/koros/dicks-front.svg"
  24601. }
  24602. },
  24603. dicksPeeking: {
  24604. height: math.unit(3.0, "feet"),
  24605. name: "Dicks (Peeking)",
  24606. image: {
  24607. source: "./media/characters/koros/dicks-peeking.svg"
  24608. }
  24609. },
  24610. eye: {
  24611. height: math.unit(1.7, "feet"),
  24612. name: "Eye",
  24613. image: {
  24614. source: "./media/characters/koros/eye.svg"
  24615. }
  24616. },
  24617. headFront: {
  24618. height: math.unit(11.69, "feet"),
  24619. name: "Head (Front)",
  24620. image: {
  24621. source: "./media/characters/koros/head-front.svg"
  24622. }
  24623. },
  24624. headSide: {
  24625. height: math.unit(14, "feet"),
  24626. name: "Head (Side)",
  24627. image: {
  24628. source: "./media/characters/koros/head-side.svg"
  24629. }
  24630. },
  24631. leg: {
  24632. height: math.unit(17, "feet"),
  24633. name: "Leg",
  24634. image: {
  24635. source: "./media/characters/koros/leg.svg"
  24636. }
  24637. },
  24638. mawSide: {
  24639. height: math.unit(12.8, "feet"),
  24640. name: "Maw (Side)",
  24641. image: {
  24642. source: "./media/characters/koros/maw-side.svg"
  24643. }
  24644. },
  24645. mawSpitting: {
  24646. height: math.unit(17, "feet"),
  24647. name: "Maw (Spitting)",
  24648. image: {
  24649. source: "./media/characters/koros/maw-spitting.svg"
  24650. }
  24651. },
  24652. slit: {
  24653. height: math.unit(2.8, "feet"),
  24654. name: "Slit",
  24655. image: {
  24656. source: "./media/characters/koros/slit.svg"
  24657. }
  24658. },
  24659. stomach: {
  24660. height: math.unit(6.8, "feet"),
  24661. capacity: math.unit(20, "people"),
  24662. name: "Stomach",
  24663. image: {
  24664. source: "./media/characters/koros/stomach.svg"
  24665. }
  24666. },
  24667. wingspanBottom: {
  24668. height: math.unit(114, "feet"),
  24669. name: "Wingspan (Bottom)",
  24670. image: {
  24671. source: "./media/characters/koros/wingspan-bottom.svg"
  24672. }
  24673. },
  24674. wingspanTop: {
  24675. height: math.unit(104, "feet"),
  24676. name: "Wingspan (Top)",
  24677. image: {
  24678. source: "./media/characters/koros/wingspan-top.svg"
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Normal",
  24685. height: math.unit(31 + 8 / 12, "feet"),
  24686. default: true
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24692. {
  24693. front: {
  24694. height: math.unit(18 + 5 / 12, "feet"),
  24695. weight: math.unit(3750, "kg"),
  24696. name: "Front",
  24697. image: {
  24698. source: "./media/characters/vexx/front.svg",
  24699. extra: 426 / 396,
  24700. bottom: 31.5 / 458
  24701. }
  24702. },
  24703. maw: {
  24704. height: math.unit(6, "feet"),
  24705. name: "Maw",
  24706. image: {
  24707. source: "./media/characters/vexx/maw.svg"
  24708. }
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Normal",
  24714. height: math.unit(18 + 5 / 12, "feet"),
  24715. default: true
  24716. },
  24717. ]
  24718. ))
  24719. characterMakers.push(() => makeCharacter(
  24720. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24721. {
  24722. front: {
  24723. height: math.unit(17 + 6 / 12, "feet"),
  24724. weight: math.unit(150, "lb"),
  24725. name: "Front",
  24726. image: {
  24727. source: "./media/characters/baadra/front.svg",
  24728. extra: 3137 / 2890,
  24729. bottom: 168.4 / 3305
  24730. }
  24731. },
  24732. back: {
  24733. height: math.unit(17 + 6 / 12, "feet"),
  24734. weight: math.unit(150, "lb"),
  24735. name: "Back",
  24736. image: {
  24737. source: "./media/characters/baadra/back.svg",
  24738. extra: 3142 / 2890,
  24739. bottom: 220 / 3371
  24740. }
  24741. },
  24742. head: {
  24743. height: math.unit(5.45, "feet"),
  24744. name: "Head",
  24745. image: {
  24746. source: "./media/characters/baadra/head.svg"
  24747. }
  24748. },
  24749. headAngry: {
  24750. height: math.unit(4.95, "feet"),
  24751. name: "Head (Angry)",
  24752. image: {
  24753. source: "./media/characters/baadra/head-angry.svg"
  24754. }
  24755. },
  24756. headOpen: {
  24757. height: math.unit(6, "feet"),
  24758. name: "Head (Open)",
  24759. image: {
  24760. source: "./media/characters/baadra/head-open.svg"
  24761. }
  24762. },
  24763. },
  24764. [
  24765. {
  24766. name: "Normal",
  24767. height: math.unit(17 + 6 / 12, "feet"),
  24768. default: true
  24769. },
  24770. ]
  24771. ))
  24772. characterMakers.push(() => makeCharacter(
  24773. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24774. {
  24775. front: {
  24776. height: math.unit(7 + 3 / 12, "feet"),
  24777. weight: math.unit(180, "lb"),
  24778. name: "Front",
  24779. image: {
  24780. source: "./media/characters/juri/front.svg",
  24781. extra: 1401 / 1237,
  24782. bottom: 18.5 / 1418
  24783. }
  24784. },
  24785. side: {
  24786. height: math.unit(7 + 3 / 12, "feet"),
  24787. weight: math.unit(180, "lb"),
  24788. name: "Side",
  24789. image: {
  24790. source: "./media/characters/juri/side.svg",
  24791. extra: 1424 / 1242,
  24792. bottom: 18.5 / 1447
  24793. }
  24794. },
  24795. sitting: {
  24796. height: math.unit(6, "feet"),
  24797. weight: math.unit(180, "lb"),
  24798. name: "Sitting",
  24799. image: {
  24800. source: "./media/characters/juri/sitting.svg",
  24801. extra: 1270 / 1143,
  24802. bottom: 100 / 1343
  24803. }
  24804. },
  24805. back: {
  24806. height: math.unit(7 + 3 / 12, "feet"),
  24807. weight: math.unit(180, "lb"),
  24808. name: "Back",
  24809. image: {
  24810. source: "./media/characters/juri/back.svg",
  24811. extra: 1377 / 1240,
  24812. bottom: 23.7 / 1405
  24813. }
  24814. },
  24815. maw: {
  24816. height: math.unit(2.8, "feet"),
  24817. name: "Maw",
  24818. image: {
  24819. source: "./media/characters/juri/maw.svg"
  24820. }
  24821. },
  24822. stomach: {
  24823. height: math.unit(0.89, "feet"),
  24824. capacity: math.unit(4, "liters"),
  24825. name: "Stomach",
  24826. image: {
  24827. source: "./media/characters/juri/stomach.svg"
  24828. }
  24829. },
  24830. },
  24831. [
  24832. {
  24833. name: "Normal",
  24834. height: math.unit(7 + 3 / 12, "feet"),
  24835. default: true
  24836. },
  24837. ]
  24838. ))
  24839. characterMakers.push(() => makeCharacter(
  24840. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24841. {
  24842. fox: {
  24843. height: math.unit(5 + 6 / 12, "feet"),
  24844. weight: math.unit(140, "lb"),
  24845. name: "Fox",
  24846. image: {
  24847. source: "./media/characters/maxene-sita/fox.svg",
  24848. extra: 146 / 138,
  24849. bottom: 2.1 / 148.19
  24850. }
  24851. },
  24852. foxLaying: {
  24853. height: math.unit(1.70, "feet"),
  24854. weight: math.unit(140, "lb"),
  24855. name: "Fox (Laying)",
  24856. image: {
  24857. source: "./media/characters/maxene-sita/fox-laying.svg",
  24858. extra: 910 / 572,
  24859. bottom: 71 / 981
  24860. }
  24861. },
  24862. kitsune: {
  24863. height: math.unit(10, "feet"),
  24864. weight: math.unit(800, "lb"),
  24865. name: "Kitsune",
  24866. image: {
  24867. source: "./media/characters/maxene-sita/kitsune.svg",
  24868. extra: 185 / 176,
  24869. bottom: 4.7 / 189.9
  24870. }
  24871. },
  24872. hellhound: {
  24873. height: math.unit(10, "feet"),
  24874. weight: math.unit(700, "lb"),
  24875. name: "Hellhound",
  24876. image: {
  24877. source: "./media/characters/maxene-sita/hellhound.svg",
  24878. extra: 1600 / 1545,
  24879. bottom: 81 / 1681
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Normal",
  24886. height: math.unit(5 + 6 / 12, "feet"),
  24887. default: true
  24888. },
  24889. ]
  24890. ))
  24891. characterMakers.push(() => makeCharacter(
  24892. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24893. {
  24894. front: {
  24895. height: math.unit(3 + 4 / 12, "feet"),
  24896. weight: math.unit(70, "lb"),
  24897. name: "Front",
  24898. image: {
  24899. source: "./media/characters/maia/front.svg",
  24900. extra: 227 / 219.5,
  24901. bottom: 40 / 267
  24902. }
  24903. },
  24904. back: {
  24905. height: math.unit(3 + 4 / 12, "feet"),
  24906. weight: math.unit(70, "lb"),
  24907. name: "Back",
  24908. image: {
  24909. source: "./media/characters/maia/back.svg",
  24910. extra: 237 / 225
  24911. }
  24912. },
  24913. },
  24914. [
  24915. {
  24916. name: "Normal",
  24917. height: math.unit(3 + 4 / 12, "feet"),
  24918. default: true
  24919. },
  24920. ]
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24924. {
  24925. front: {
  24926. height: math.unit(5 + 10 / 12, "feet"),
  24927. weight: math.unit(197, "lb"),
  24928. name: "Front",
  24929. image: {
  24930. source: "./media/characters/jabaro/front.svg",
  24931. extra: 225 / 216,
  24932. bottom: 5.06 / 230
  24933. }
  24934. },
  24935. back: {
  24936. height: math.unit(5 + 10 / 12, "feet"),
  24937. weight: math.unit(197, "lb"),
  24938. name: "Back",
  24939. image: {
  24940. source: "./media/characters/jabaro/back.svg",
  24941. extra: 225 / 219,
  24942. bottom: 1.9 / 227
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(5 + 10 / 12, "feet"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(5 + 8 / 12, "feet"),
  24959. weight: math.unit(139, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/risa/front.svg",
  24963. extra: 270 / 260,
  24964. bottom: 11.2 / 282
  24965. }
  24966. },
  24967. back: {
  24968. height: math.unit(5 + 8 / 12, "feet"),
  24969. weight: math.unit(139, "lb"),
  24970. name: "Back",
  24971. image: {
  24972. source: "./media/characters/risa/back.svg",
  24973. extra: 264 / 255,
  24974. bottom: 4 / 268
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Normal",
  24981. height: math.unit(5 + 8 / 12, "feet"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24988. {
  24989. front: {
  24990. height: math.unit(2 + 11 / 12, "feet"),
  24991. weight: math.unit(30, "lb"),
  24992. name: "Front",
  24993. image: {
  24994. source: "./media/characters/weatley/front.svg",
  24995. bottom: 10.7 / 414,
  24996. extra: 403.5 / 362
  24997. }
  24998. },
  24999. back: {
  25000. height: math.unit(2 + 11 / 12, "feet"),
  25001. weight: math.unit(30, "lb"),
  25002. name: "Back",
  25003. image: {
  25004. source: "./media/characters/weatley/back.svg",
  25005. bottom: 10.7 / 414,
  25006. extra: 403.5 / 362
  25007. }
  25008. },
  25009. },
  25010. [
  25011. {
  25012. name: "Normal",
  25013. height: math.unit(2 + 11 / 12, "feet"),
  25014. default: true
  25015. },
  25016. ]
  25017. ))
  25018. characterMakers.push(() => makeCharacter(
  25019. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25020. {
  25021. front: {
  25022. height: math.unit(5 + 2 / 12, "feet"),
  25023. weight: math.unit(50, "kg"),
  25024. name: "Front",
  25025. image: {
  25026. source: "./media/characters/mercury-crescent/front.svg",
  25027. extra: 1088 / 1033,
  25028. bottom: 18.9 / 1109
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Normal",
  25035. height: math.unit(5 + 2 / 12, "feet"),
  25036. default: true
  25037. },
  25038. ]
  25039. ))
  25040. characterMakers.push(() => makeCharacter(
  25041. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25042. {
  25043. front: {
  25044. height: math.unit(2, "feet"),
  25045. weight: math.unit(15, "kg"),
  25046. name: "Front",
  25047. image: {
  25048. source: "./media/characters/diamond-jones/front.svg",
  25049. bottom: 16 / 568
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(2, "feet"),
  25057. default: true
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(3, "feet"),
  25066. weight: math.unit(30, "kg"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/sweet-bit/front.svg",
  25070. extra: 675 / 567,
  25071. bottom: 27.7 / 703
  25072. }
  25073. },
  25074. },
  25075. [
  25076. {
  25077. name: "Normal",
  25078. height: math.unit(3, "feet"),
  25079. default: true
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25085. {
  25086. side: {
  25087. height: math.unit(9.178, "feet"),
  25088. weight: math.unit(500, "lb"),
  25089. name: "Side",
  25090. image: {
  25091. source: "./media/characters/umbrazen/side.svg",
  25092. extra: 1730 / 1473,
  25093. bottom: 34.6 / 1765
  25094. }
  25095. },
  25096. },
  25097. [
  25098. {
  25099. name: "Normal",
  25100. height: math.unit(9.178, "feet"),
  25101. default: true
  25102. },
  25103. ]
  25104. ))
  25105. characterMakers.push(() => makeCharacter(
  25106. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25107. {
  25108. front: {
  25109. height: math.unit(10, "feet"),
  25110. weight: math.unit(750, "lb"),
  25111. name: "Front",
  25112. image: {
  25113. source: "./media/characters/arlist/front.svg",
  25114. extra: 961 / 778,
  25115. bottom: 6.2 / 986
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Normal",
  25122. height: math.unit(10, "feet"),
  25123. default: true
  25124. },
  25125. ]
  25126. ))
  25127. characterMakers.push(() => makeCharacter(
  25128. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25129. {
  25130. front: {
  25131. height: math.unit(5 + 1 / 12, "feet"),
  25132. weight: math.unit(110, "lb"),
  25133. name: "Front",
  25134. image: {
  25135. source: "./media/characters/aradel/front.svg",
  25136. extra: 324 / 303,
  25137. bottom: 3.6 / 329.4
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Normal",
  25144. height: math.unit(5 + 1 / 12, "feet"),
  25145. default: true
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25151. {
  25152. front: {
  25153. height: math.unit(3 + 8 / 12, "feet"),
  25154. weight: math.unit(50, "lb"),
  25155. name: "Front",
  25156. image: {
  25157. source: "./media/characters/serryn/front.svg",
  25158. extra: 1792 / 1656,
  25159. bottom: 43.5 / 1840
  25160. }
  25161. },
  25162. },
  25163. [
  25164. {
  25165. name: "Normal",
  25166. height: math.unit(3 + 8 / 12, "feet"),
  25167. default: true
  25168. },
  25169. ]
  25170. ))
  25171. characterMakers.push(() => makeCharacter(
  25172. { name: "Xavier Thyme" },
  25173. {
  25174. front: {
  25175. height: math.unit(7 + 10 / 12, "feet"),
  25176. weight: math.unit(255, "lb"),
  25177. name: "Front",
  25178. image: {
  25179. source: "./media/characters/xavier-thyme/front.svg",
  25180. extra: 3733 / 3642,
  25181. bottom: 131 / 3869
  25182. }
  25183. },
  25184. frontRaven: {
  25185. height: math.unit(7 + 10 / 12, "feet"),
  25186. weight: math.unit(255, "lb"),
  25187. name: "Front (Raven)",
  25188. image: {
  25189. source: "./media/characters/xavier-thyme/front-raven.svg",
  25190. extra: 4385 / 3642,
  25191. bottom: 131 / 4517
  25192. }
  25193. },
  25194. },
  25195. [
  25196. {
  25197. name: "Normal",
  25198. height: math.unit(7 + 10 / 12, "feet"),
  25199. default: true
  25200. },
  25201. ]
  25202. ))
  25203. characterMakers.push(() => makeCharacter(
  25204. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25205. {
  25206. front: {
  25207. height: math.unit(1.6, "m"),
  25208. weight: math.unit(50, "kg"),
  25209. name: "Front",
  25210. image: {
  25211. source: "./media/characters/kiki/front.svg",
  25212. extra: 4682 / 3610,
  25213. bottom: 115 / 4777
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Normal",
  25220. height: math.unit(1.6, "meters"),
  25221. default: true
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(50, "m"),
  25230. weight: math.unit(500, "tonnes"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/ryoko/front.svg",
  25234. extra: 4632 / 3926,
  25235. bottom: 193 / 4823
  25236. }
  25237. },
  25238. },
  25239. [
  25240. {
  25241. name: "Normal",
  25242. height: math.unit(50, "meters"),
  25243. default: true
  25244. },
  25245. ]
  25246. ))
  25247. characterMakers.push(() => makeCharacter(
  25248. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25249. {
  25250. front: {
  25251. height: math.unit(30, "m"),
  25252. weight: math.unit(22, "tonnes"),
  25253. name: "Front",
  25254. image: {
  25255. source: "./media/characters/elio/front.svg",
  25256. extra: 4582 / 3720,
  25257. bottom: 236 / 4828
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Normal",
  25264. height: math.unit(30, "meters"),
  25265. default: true
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25271. {
  25272. front: {
  25273. height: math.unit(6 + 3 / 12, "feet"),
  25274. weight: math.unit(120, "lb"),
  25275. name: "Front",
  25276. image: {
  25277. source: "./media/characters/azura/front.svg",
  25278. extra: 1149 / 1135,
  25279. bottom: 45 / 1194
  25280. }
  25281. },
  25282. frontClothed: {
  25283. height: math.unit(6 + 3 / 12, "feet"),
  25284. weight: math.unit(120, "lb"),
  25285. name: "Front (Clothed)",
  25286. image: {
  25287. source: "./media/characters/azura/front-clothed.svg",
  25288. extra: 1149 / 1135,
  25289. bottom: 45 / 1194
  25290. }
  25291. },
  25292. },
  25293. [
  25294. {
  25295. name: "Normal",
  25296. height: math.unit(6 + 3 / 12, "feet"),
  25297. default: true
  25298. },
  25299. {
  25300. name: "Macro",
  25301. height: math.unit(20 + 6 / 12, "feet")
  25302. },
  25303. {
  25304. name: "Megamacro",
  25305. height: math.unit(12, "miles")
  25306. },
  25307. {
  25308. name: "Gigamacro",
  25309. height: math.unit(10000, "miles")
  25310. },
  25311. {
  25312. name: "Teramacro",
  25313. height: math.unit(900000, "miles")
  25314. },
  25315. ]
  25316. ))
  25317. characterMakers.push(() => makeCharacter(
  25318. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25319. {
  25320. front: {
  25321. height: math.unit(12, "feet"),
  25322. weight: math.unit(1, "ton"),
  25323. capacity: math.unit(660000, "gallons"),
  25324. name: "Front",
  25325. image: {
  25326. source: "./media/characters/zeus/front.svg",
  25327. extra: 5005 / 4717,
  25328. bottom: 363 / 5388
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(12, "feet")
  25336. },
  25337. {
  25338. name: "Preferred Size",
  25339. height: math.unit(0.5, "miles"),
  25340. default: true
  25341. },
  25342. {
  25343. name: "Giga Horse",
  25344. height: math.unit(300, "miles")
  25345. },
  25346. {
  25347. name: "Riding Planets",
  25348. height: math.unit(30, "megameters")
  25349. },
  25350. {
  25351. name: "Cosmic Giant",
  25352. height: math.unit(3, "zettameters")
  25353. },
  25354. {
  25355. name: "Breeding God",
  25356. height: math.unit(9.92e22, "yottameters")
  25357. },
  25358. ]
  25359. ))
  25360. characterMakers.push(() => makeCharacter(
  25361. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25362. {
  25363. side: {
  25364. height: math.unit(9, "feet"),
  25365. weight: math.unit(1500, "kg"),
  25366. name: "Side",
  25367. image: {
  25368. source: "./media/characters/fang/side.svg",
  25369. extra: 924 / 866,
  25370. bottom: 47.5 / 972.3
  25371. }
  25372. },
  25373. },
  25374. [
  25375. {
  25376. name: "Normal",
  25377. height: math.unit(9, "feet"),
  25378. default: true
  25379. },
  25380. {
  25381. name: "Macro",
  25382. height: math.unit(75 + 6 / 12, "feet")
  25383. },
  25384. {
  25385. name: "Teramacro",
  25386. height: math.unit(50000, "miles")
  25387. },
  25388. ]
  25389. ))
  25390. characterMakers.push(() => makeCharacter(
  25391. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25392. {
  25393. front: {
  25394. height: math.unit(10, "feet"),
  25395. weight: math.unit(2, "tons"),
  25396. name: "Front",
  25397. image: {
  25398. source: "./media/characters/rekhit/front.svg",
  25399. extra: 2796 / 2590,
  25400. bottom: 225 / 3022
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Normal",
  25407. height: math.unit(10, "feet"),
  25408. default: true
  25409. },
  25410. {
  25411. name: "Macro",
  25412. height: math.unit(500, "feet")
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Dahlia Verrick" },
  25418. {
  25419. front: {
  25420. height: math.unit(7 + 6.451 / 12, "feet"),
  25421. weight: math.unit(310, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/dahlia-verrick/front.svg",
  25425. extra: 1488 / 1365,
  25426. bottom: 6.2 / 1495
  25427. }
  25428. },
  25429. back: {
  25430. height: math.unit(7 + 6.451 / 12, "feet"),
  25431. weight: math.unit(310, "lb"),
  25432. name: "Back",
  25433. image: {
  25434. source: "./media/characters/dahlia-verrick/back.svg",
  25435. extra: 1472 / 1351,
  25436. bottom: 5.28 / 1477
  25437. }
  25438. },
  25439. frontBusiness: {
  25440. height: math.unit(7 + 6.451 / 12, "feet"),
  25441. weight: math.unit(200, "lb"),
  25442. name: "Front (Business)",
  25443. image: {
  25444. source: "./media/characters/dahlia-verrick/front-business.svg",
  25445. extra: 1478 / 1381,
  25446. bottom: 5.5 / 1484
  25447. }
  25448. },
  25449. frontCasual: {
  25450. height: math.unit(7 + 6.451 / 12, "feet"),
  25451. weight: math.unit(200, "lb"),
  25452. name: "Front (Casual)",
  25453. image: {
  25454. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25455. extra: 1478 / 1381,
  25456. bottom: 5.5 / 1484
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Travel-Sized",
  25463. height: math.unit(7.45, "inches")
  25464. },
  25465. {
  25466. name: "Normal",
  25467. height: math.unit(7 + 6.451 / 12, "feet"),
  25468. default: true
  25469. },
  25470. {
  25471. name: "Hitting the Town",
  25472. height: math.unit(37 + 8 / 12, "feet")
  25473. },
  25474. {
  25475. name: "Stomp in the Suburbs",
  25476. height: math.unit(964 + 9.728 / 12, "feet")
  25477. },
  25478. {
  25479. name: "Sit on the City",
  25480. height: math.unit(61747 + 10.592 / 12, "feet")
  25481. },
  25482. {
  25483. name: "Glomp the Globe",
  25484. height: math.unit(252919327 + 4.832 / 12, "feet")
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(6 + 4 / 12, "feet"),
  25493. weight: math.unit(320, "lb"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/balina-mahigan/front.svg",
  25497. extra: 447 / 428,
  25498. bottom: 18 / 466
  25499. }
  25500. },
  25501. back: {
  25502. height: math.unit(6 + 4 / 12, "feet"),
  25503. weight: math.unit(320, "lb"),
  25504. name: "Back",
  25505. image: {
  25506. source: "./media/characters/balina-mahigan/back.svg",
  25507. extra: 445 / 428,
  25508. bottom: 4.07 / 448
  25509. }
  25510. },
  25511. arm: {
  25512. height: math.unit(1.88, "feet"),
  25513. name: "Arm",
  25514. image: {
  25515. source: "./media/characters/balina-mahigan/arm.svg"
  25516. }
  25517. },
  25518. backPort: {
  25519. height: math.unit(0.685, "feet"),
  25520. name: "Back Port",
  25521. image: {
  25522. source: "./media/characters/balina-mahigan/back-port.svg"
  25523. }
  25524. },
  25525. hoofpaw: {
  25526. height: math.unit(1.41, "feet"),
  25527. name: "Hoofpaw",
  25528. image: {
  25529. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25530. }
  25531. },
  25532. leftHandBack: {
  25533. height: math.unit(0.938, "feet"),
  25534. name: "Left Hand (Back)",
  25535. image: {
  25536. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25537. }
  25538. },
  25539. leftHandFront: {
  25540. height: math.unit(0.938, "feet"),
  25541. name: "Left Hand (Front)",
  25542. image: {
  25543. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25544. }
  25545. },
  25546. rightHandBack: {
  25547. height: math.unit(0.95, "feet"),
  25548. name: "Right Hand (Back)",
  25549. image: {
  25550. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25551. }
  25552. },
  25553. rightHandFront: {
  25554. height: math.unit(0.95, "feet"),
  25555. name: "Right Hand (Front)",
  25556. image: {
  25557. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25558. }
  25559. },
  25560. },
  25561. [
  25562. {
  25563. name: "Normal",
  25564. height: math.unit(6 + 4 / 12, "feet"),
  25565. default: true
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25571. {
  25572. front: {
  25573. height: math.unit(6, "feet"),
  25574. weight: math.unit(320, "lb"),
  25575. name: "Front",
  25576. image: {
  25577. source: "./media/characters/balina-mejeri/front.svg",
  25578. extra: 517 / 488,
  25579. bottom: 44.2 / 561
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(6 + 4 / 12, "feet")
  25587. },
  25588. {
  25589. name: "Business",
  25590. height: math.unit(155, "feet"),
  25591. default: true
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25597. {
  25598. kneeling: {
  25599. height: math.unit(6 + 4 / 12, "feet"),
  25600. weight: math.unit(300 * 20, "lb"),
  25601. name: "Kneeling",
  25602. image: {
  25603. source: "./media/characters/balbarian/kneeling.svg",
  25604. extra: 922 / 862,
  25605. bottom: 42.4 / 965
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Normal",
  25612. height: math.unit(6 + 4 / 12, "feet")
  25613. },
  25614. {
  25615. name: "Treasured",
  25616. height: math.unit(18 + 9 / 12, "feet"),
  25617. default: true
  25618. },
  25619. {
  25620. name: "Macro",
  25621. height: math.unit(900, "feet")
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25627. {
  25628. front: {
  25629. height: math.unit(6 + 4 / 12, "feet"),
  25630. weight: math.unit(325, "lb"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/balina-amarini/front.svg",
  25634. extra: 415 / 403,
  25635. bottom: 19 / 433.4
  25636. }
  25637. },
  25638. back: {
  25639. height: math.unit(6 + 4 / 12, "feet"),
  25640. weight: math.unit(325, "lb"),
  25641. name: "Back",
  25642. image: {
  25643. source: "./media/characters/balina-amarini/back.svg",
  25644. extra: 415 / 403,
  25645. bottom: 13.5 / 432
  25646. }
  25647. },
  25648. overdrive: {
  25649. height: math.unit(6 + 4 / 12, "feet"),
  25650. weight: math.unit(400, "lb"),
  25651. name: "Overdrive",
  25652. image: {
  25653. source: "./media/characters/balina-amarini/overdrive.svg",
  25654. extra: 269 / 259,
  25655. bottom: 12 / 282
  25656. }
  25657. },
  25658. },
  25659. [
  25660. {
  25661. name: "Boom",
  25662. height: math.unit(9 + 10 / 12, "feet"),
  25663. default: true
  25664. },
  25665. {
  25666. name: "Macro",
  25667. height: math.unit(280, "feet")
  25668. },
  25669. ]
  25670. ))
  25671. characterMakers.push(() => makeCharacter(
  25672. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25673. {
  25674. goddess: {
  25675. height: math.unit(600, "feet"),
  25676. weight: math.unit(2000000, "tons"),
  25677. name: "Goddess",
  25678. image: {
  25679. source: "./media/characters/lady-kubwa/goddess.svg",
  25680. extra: 1240.5 / 1223,
  25681. bottom: 22 / 1263
  25682. }
  25683. },
  25684. goddesser: {
  25685. height: math.unit(900, "feet"),
  25686. weight: math.unit(20000000, "lb"),
  25687. name: "Goddess-er",
  25688. image: {
  25689. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25690. extra: 899 / 888,
  25691. bottom: 12.6 / 912
  25692. }
  25693. },
  25694. },
  25695. [
  25696. {
  25697. name: "Macro",
  25698. height: math.unit(600, "feet"),
  25699. default: true
  25700. },
  25701. {
  25702. name: "Megamacro",
  25703. height: math.unit(250, "miles")
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25709. {
  25710. front: {
  25711. height: math.unit(7 + 7 / 12, "feet"),
  25712. weight: math.unit(250, "lb"),
  25713. name: "Front",
  25714. image: {
  25715. source: "./media/characters/tala-grovehorn/front.svg",
  25716. extra: 2636 / 2525,
  25717. bottom: 147 / 2781
  25718. }
  25719. },
  25720. back: {
  25721. height: math.unit(7 + 7 / 12, "feet"),
  25722. weight: math.unit(250, "lb"),
  25723. name: "Back",
  25724. image: {
  25725. source: "./media/characters/tala-grovehorn/back.svg",
  25726. extra: 2635 / 2539,
  25727. bottom: 100 / 2732.8
  25728. }
  25729. },
  25730. mouth: {
  25731. height: math.unit(1.15, "feet"),
  25732. name: "Mouth",
  25733. image: {
  25734. source: "./media/characters/tala-grovehorn/mouth.svg"
  25735. }
  25736. },
  25737. dick: {
  25738. height: math.unit(2.36, "feet"),
  25739. name: "Dick",
  25740. image: {
  25741. source: "./media/characters/tala-grovehorn/dick.svg"
  25742. }
  25743. },
  25744. slit: {
  25745. height: math.unit(0.61, "feet"),
  25746. name: "Slit",
  25747. image: {
  25748. source: "./media/characters/tala-grovehorn/slit.svg"
  25749. }
  25750. },
  25751. },
  25752. [
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25757. {
  25758. front: {
  25759. height: math.unit(7 + 7 / 12, "feet"),
  25760. weight: math.unit(225, "lb"),
  25761. name: "Front",
  25762. image: {
  25763. source: "./media/characters/epona/front.svg",
  25764. extra: 2445 / 2290,
  25765. bottom: 251 / 2696
  25766. }
  25767. },
  25768. back: {
  25769. height: math.unit(7 + 7 / 12, "feet"),
  25770. weight: math.unit(225, "lb"),
  25771. name: "Back",
  25772. image: {
  25773. source: "./media/characters/epona/back.svg",
  25774. extra: 2546 / 2408,
  25775. bottom: 44 / 2589
  25776. }
  25777. },
  25778. genitals: {
  25779. height: math.unit(1.5, "feet"),
  25780. name: "Genitals",
  25781. image: {
  25782. source: "./media/characters/epona/genitals.svg"
  25783. }
  25784. },
  25785. },
  25786. [
  25787. {
  25788. name: "Normal",
  25789. height: math.unit(7 + 7 / 12, "feet")
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(7, "feet"),
  25798. weight: math.unit(518, "lb"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/avia-bloodbourn/front.svg",
  25802. extra: 1466 / 1350,
  25803. bottom: 65 / 1527
  25804. }
  25805. },
  25806. },
  25807. [
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(9.35, "feet"),
  25815. weight: math.unit(600, "lb"),
  25816. name: "Front",
  25817. image: {
  25818. source: "./media/characters/amera/front.svg",
  25819. extra: 891 / 818,
  25820. bottom: 30 / 922.7
  25821. }
  25822. },
  25823. back: {
  25824. height: math.unit(9.35, "feet"),
  25825. weight: math.unit(600, "lb"),
  25826. name: "Back",
  25827. image: {
  25828. source: "./media/characters/amera/back.svg",
  25829. extra: 876 / 824,
  25830. bottom: 6.8 / 884
  25831. }
  25832. },
  25833. dick: {
  25834. height: math.unit(2.14, "feet"),
  25835. name: "Dick",
  25836. image: {
  25837. source: "./media/characters/amera/dick.svg"
  25838. }
  25839. },
  25840. },
  25841. [
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(9.35, "feet"),
  25845. default: true
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25851. {
  25852. kneeling: {
  25853. height: math.unit(3 + 4 / 12, "feet"),
  25854. weight: math.unit(90, "lb"),
  25855. name: "Kneeling",
  25856. image: {
  25857. source: "./media/characters/rosewen/kneeling.svg",
  25858. extra: 1835 / 1571,
  25859. bottom: 27.7 / 1862
  25860. }
  25861. },
  25862. },
  25863. [
  25864. {
  25865. name: "Normal",
  25866. height: math.unit(3 + 4 / 12, "feet"),
  25867. default: true
  25868. },
  25869. ]
  25870. ))
  25871. characterMakers.push(() => makeCharacter(
  25872. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25873. {
  25874. front: {
  25875. height: math.unit(5 + 10 / 12, "feet"),
  25876. weight: math.unit(200, "lb"),
  25877. name: "Front",
  25878. image: {
  25879. source: "./media/characters/sabah/front.svg",
  25880. extra: 849 / 763,
  25881. bottom: 33.9 / 881
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(5 + 10 / 12, "feet"),
  25889. default: true
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25895. {
  25896. front: {
  25897. height: math.unit(3 + 5 / 12, "feet"),
  25898. weight: math.unit(40, "kg"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/purple-flame/front.svg",
  25902. extra: 1577 / 1412,
  25903. bottom: 97 / 1694
  25904. }
  25905. },
  25906. frontDressed: {
  25907. height: math.unit(3 + 5 / 12, "feet"),
  25908. weight: math.unit(40, "kg"),
  25909. name: "Front (Dressed)",
  25910. image: {
  25911. source: "./media/characters/purple-flame/front-dressed.svg",
  25912. extra: 1577 / 1412,
  25913. bottom: 97 / 1694
  25914. }
  25915. },
  25916. headphones: {
  25917. height: math.unit(0.85, "feet"),
  25918. name: "Headphones",
  25919. image: {
  25920. source: "./media/characters/purple-flame/headphones.svg"
  25921. }
  25922. },
  25923. },
  25924. [
  25925. {
  25926. name: "Really Small",
  25927. height: math.unit(5, "cm")
  25928. },
  25929. {
  25930. name: "Micro",
  25931. height: math.unit(1 + 5 / 12, "feet")
  25932. },
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(3 + 5 / 12, "feet"),
  25936. default: true
  25937. },
  25938. {
  25939. name: "Minimacro",
  25940. height: math.unit(125, "feet")
  25941. },
  25942. {
  25943. name: "Macro",
  25944. height: math.unit(0.5, "miles")
  25945. },
  25946. {
  25947. name: "Megamacro",
  25948. height: math.unit(50, "miles")
  25949. },
  25950. {
  25951. name: "Gigantic",
  25952. height: math.unit(750, "miles")
  25953. },
  25954. {
  25955. name: "Planetary",
  25956. height: math.unit(15000, "miles")
  25957. },
  25958. ]
  25959. ))
  25960. characterMakers.push(() => makeCharacter(
  25961. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25962. {
  25963. front: {
  25964. height: math.unit(14, "feet"),
  25965. weight: math.unit(959, "lb"),
  25966. name: "Front",
  25967. image: {
  25968. source: "./media/characters/arsenal/front.svg",
  25969. extra: 2357 / 2157,
  25970. bottom: 93 / 2458
  25971. }
  25972. },
  25973. },
  25974. [
  25975. {
  25976. name: "Normal",
  25977. height: math.unit(14, "feet"),
  25978. default: true
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(6, "feet"),
  25987. weight: math.unit(150, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/adira/front.svg",
  25991. extra: 1078 / 1029,
  25992. bottom: 87 / 1166
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Micro",
  25999. height: math.unit(4, "inches"),
  26000. default: true
  26001. },
  26002. {
  26003. name: "Macro",
  26004. height: math.unit(50, "feet")
  26005. },
  26006. ]
  26007. ))
  26008. characterMakers.push(() => makeCharacter(
  26009. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26010. {
  26011. front: {
  26012. height: math.unit(16, "feet"),
  26013. weight: math.unit(1000, "lb"),
  26014. name: "Front",
  26015. image: {
  26016. source: "./media/characters/grim/front.svg",
  26017. extra: 622 / 614,
  26018. bottom: 18.1 / 642
  26019. }
  26020. },
  26021. back: {
  26022. height: math.unit(16, "feet"),
  26023. weight: math.unit(1000, "lb"),
  26024. name: "Back",
  26025. image: {
  26026. source: "./media/characters/grim/back.svg",
  26027. extra: 610.6 / 602,
  26028. bottom: 40.8 / 652
  26029. }
  26030. },
  26031. hunched: {
  26032. height: math.unit(9.75, "feet"),
  26033. weight: math.unit(1000, "lb"),
  26034. name: "Hunched",
  26035. image: {
  26036. source: "./media/characters/grim/hunched.svg",
  26037. extra: 304 / 297,
  26038. bottom: 35.4 / 394
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(16, "feet"),
  26046. default: true
  26047. },
  26048. ]
  26049. ))
  26050. characterMakers.push(() => makeCharacter(
  26051. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26052. {
  26053. front: {
  26054. height: math.unit(2.3, "meters"),
  26055. weight: math.unit(300, "lb"),
  26056. name: "Front",
  26057. image: {
  26058. source: "./media/characters/sinja/front-sfw.svg",
  26059. extra: 1393 / 1294,
  26060. bottom: 70 / 1463
  26061. }
  26062. },
  26063. frontNsfw: {
  26064. height: math.unit(2.3, "meters"),
  26065. weight: math.unit(300, "lb"),
  26066. name: "Front (NSFW)",
  26067. image: {
  26068. source: "./media/characters/sinja/front-nsfw.svg",
  26069. extra: 1393 / 1294,
  26070. bottom: 70 / 1463
  26071. }
  26072. },
  26073. back: {
  26074. height: math.unit(2.3, "meters"),
  26075. weight: math.unit(300, "lb"),
  26076. name: "Back",
  26077. image: {
  26078. source: "./media/characters/sinja/back.svg",
  26079. extra: 1393 / 1294,
  26080. bottom: 70 / 1463
  26081. }
  26082. },
  26083. head: {
  26084. height: math.unit(1.771, "feet"),
  26085. name: "Head",
  26086. image: {
  26087. source: "./media/characters/sinja/head.svg"
  26088. }
  26089. },
  26090. slit: {
  26091. height: math.unit(0.8, "feet"),
  26092. name: "Slit",
  26093. image: {
  26094. source: "./media/characters/sinja/slit.svg"
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(2.3, "meters")
  26102. },
  26103. {
  26104. name: "Macro",
  26105. height: math.unit(91, "meters"),
  26106. default: true
  26107. },
  26108. {
  26109. name: "Megamacro",
  26110. height: math.unit(91440, "meters")
  26111. },
  26112. {
  26113. name: "Gigamacro",
  26114. height: math.unit(60960000, "meters")
  26115. },
  26116. {
  26117. name: "Teramacro",
  26118. height: math.unit(9144000000, "meters")
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26124. {
  26125. front: {
  26126. height: math.unit(1.7, "meters"),
  26127. weight: math.unit(130, "lb"),
  26128. name: "Front",
  26129. image: {
  26130. source: "./media/characters/kyu/front.svg",
  26131. extra: 415 / 395,
  26132. bottom: 5 / 420
  26133. }
  26134. },
  26135. head: {
  26136. height: math.unit(1.75, "feet"),
  26137. name: "Head",
  26138. image: {
  26139. source: "./media/characters/kyu/head.svg"
  26140. }
  26141. },
  26142. foot: {
  26143. height: math.unit(0.81, "feet"),
  26144. name: "Foot",
  26145. image: {
  26146. source: "./media/characters/kyu/foot.svg"
  26147. }
  26148. },
  26149. },
  26150. [
  26151. {
  26152. name: "Normal",
  26153. height: math.unit(1.7, "meters")
  26154. },
  26155. {
  26156. name: "Macro",
  26157. height: math.unit(131, "feet"),
  26158. default: true
  26159. },
  26160. {
  26161. name: "Megamacro",
  26162. height: math.unit(91440, "meters")
  26163. },
  26164. {
  26165. name: "Gigamacro",
  26166. height: math.unit(60960000, "meters")
  26167. },
  26168. {
  26169. name: "Teramacro",
  26170. height: math.unit(9144000000, "meters")
  26171. },
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26176. {
  26177. front: {
  26178. height: math.unit(7 + 1 / 12, "feet"),
  26179. weight: math.unit(250, "lb"),
  26180. name: "Front",
  26181. image: {
  26182. source: "./media/characters/joey/front.svg",
  26183. extra: 1791 / 1537,
  26184. bottom: 28 / 1816
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Micro",
  26191. height: math.unit(3, "inches")
  26192. },
  26193. {
  26194. name: "Normal",
  26195. height: math.unit(7 + 1 / 12, "feet"),
  26196. default: true
  26197. },
  26198. ]
  26199. ))
  26200. characterMakers.push(() => makeCharacter(
  26201. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26202. {
  26203. front: {
  26204. height: math.unit(165, "cm"),
  26205. weight: math.unit(140, "lb"),
  26206. name: "Front",
  26207. image: {
  26208. source: "./media/characters/sam-evans/front.svg",
  26209. extra: 3417 / 3230,
  26210. bottom: 41.3 / 3417
  26211. }
  26212. },
  26213. frontSixTails: {
  26214. height: math.unit(165, "cm"),
  26215. weight: math.unit(140, "lb"),
  26216. name: "Front-six-tails",
  26217. image: {
  26218. source: "./media/characters/sam-evans/front-six-tails.svg",
  26219. extra: 3417 / 3230,
  26220. bottom: 41.3 / 3417
  26221. }
  26222. },
  26223. back: {
  26224. height: math.unit(165, "cm"),
  26225. weight: math.unit(140, "lb"),
  26226. name: "Back",
  26227. image: {
  26228. source: "./media/characters/sam-evans/back.svg",
  26229. extra: 3227 / 3032,
  26230. bottom: 6.8 / 3234
  26231. }
  26232. },
  26233. face: {
  26234. height: math.unit(0.68, "feet"),
  26235. name: "Face",
  26236. image: {
  26237. source: "./media/characters/sam-evans/face.svg"
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(165, "cm"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "Macro",
  26249. height: math.unit(100, "meters")
  26250. },
  26251. {
  26252. name: "Macro+",
  26253. height: math.unit(800, "meters")
  26254. },
  26255. {
  26256. name: "Macro++",
  26257. height: math.unit(3, "km")
  26258. },
  26259. {
  26260. name: "Macro+++",
  26261. height: math.unit(30, "km")
  26262. },
  26263. ]
  26264. ))
  26265. characterMakers.push(() => makeCharacter(
  26266. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26267. {
  26268. front: {
  26269. height: math.unit(10, "feet"),
  26270. weight: math.unit(750, "lb"),
  26271. name: "Front",
  26272. image: {
  26273. source: "./media/characters/juliet-a/front.svg",
  26274. extra: 1766 / 1720,
  26275. bottom: 43 / 1809
  26276. }
  26277. },
  26278. back: {
  26279. height: math.unit(10, "feet"),
  26280. weight: math.unit(750, "lb"),
  26281. name: "Back",
  26282. image: {
  26283. source: "./media/characters/juliet-a/back.svg",
  26284. extra: 1781 / 1734,
  26285. bottom: 35 / 1810,
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Normal",
  26292. height: math.unit(10, "feet"),
  26293. default: true
  26294. },
  26295. {
  26296. name: "Dragon Form",
  26297. height: math.unit(250, "feet")
  26298. },
  26299. {
  26300. name: "Macro",
  26301. height: math.unit(1000, "feet")
  26302. },
  26303. {
  26304. name: "Megamacro",
  26305. height: math.unit(10000, "feet")
  26306. }
  26307. ]
  26308. ))
  26309. characterMakers.push(() => makeCharacter(
  26310. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26311. {
  26312. regular: {
  26313. height: math.unit(7 + 3 / 12, "feet"),
  26314. weight: math.unit(260, "lb"),
  26315. name: "Regular",
  26316. image: {
  26317. source: "./media/characters/wild/regular.svg",
  26318. extra: 97.45 / 92,
  26319. bottom: 6.8 / 104.3
  26320. }
  26321. },
  26322. biggums: {
  26323. height: math.unit(8 + 6 / 12, "feet"),
  26324. weight: math.unit(425, "lb"),
  26325. name: "Biggums",
  26326. image: {
  26327. source: "./media/characters/wild/biggums.svg",
  26328. extra: 97.45 / 92,
  26329. bottom: 7.5 / 132.34
  26330. }
  26331. },
  26332. mawRegular: {
  26333. height: math.unit(1.24, "feet"),
  26334. name: "Maw (Regular)",
  26335. image: {
  26336. source: "./media/characters/wild/maw.svg"
  26337. }
  26338. },
  26339. mawBiggums: {
  26340. height: math.unit(1.47, "feet"),
  26341. name: "Maw (Biggums)",
  26342. image: {
  26343. source: "./media/characters/wild/maw.svg"
  26344. }
  26345. },
  26346. },
  26347. [
  26348. {
  26349. name: "Normal",
  26350. height: math.unit(7 + 3 / 12, "feet"),
  26351. default: true
  26352. },
  26353. ]
  26354. ))
  26355. characterMakers.push(() => makeCharacter(
  26356. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26357. {
  26358. front: {
  26359. height: math.unit(2.5, "meters"),
  26360. weight: math.unit(200, "kg"),
  26361. name: "Front",
  26362. image: {
  26363. source: "./media/characters/vidar/front.svg",
  26364. extra: 2994 / 2795,
  26365. bottom: 56 / 3061
  26366. }
  26367. },
  26368. back: {
  26369. height: math.unit(2.5, "meters"),
  26370. weight: math.unit(200, "kg"),
  26371. name: "Back",
  26372. image: {
  26373. source: "./media/characters/vidar/back.svg",
  26374. extra: 3131 / 2928,
  26375. bottom: 13.5 / 3141.5
  26376. }
  26377. },
  26378. feral: {
  26379. height: math.unit(2.5, "meters"),
  26380. weight: math.unit(2000, "kg"),
  26381. name: "Feral",
  26382. image: {
  26383. source: "./media/characters/vidar/feral.svg",
  26384. extra: 2790 / 1765,
  26385. bottom: 6 / 2796
  26386. }
  26387. },
  26388. },
  26389. [
  26390. {
  26391. name: "Normal",
  26392. height: math.unit(2.5, "meters"),
  26393. default: true
  26394. },
  26395. {
  26396. name: "Macro",
  26397. height: math.unit(100, "meters")
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(5 + 9 / 12, "feet"),
  26406. weight: math.unit(120, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/ash/front.svg",
  26410. extra: 2189 / 1961,
  26411. bottom: 5.2 / 2194
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(5 + 9 / 12, "feet"),
  26419. default: true
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(9, "feet"),
  26428. weight: math.unit(10000, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/gygabite/front.svg",
  26432. bottom: 31.7 / 537.8,
  26433. extra: 505 / 370
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(9, "feet"),
  26441. default: true
  26442. },
  26443. ]
  26444. ))
  26445. characterMakers.push(() => makeCharacter(
  26446. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26447. {
  26448. front: {
  26449. height: math.unit(12, "feet"),
  26450. weight: math.unit(35000, "lb"),
  26451. name: "Front",
  26452. image: {
  26453. source: "./media/characters/p0tat0/front.svg",
  26454. extra: 1065 / 921,
  26455. bottom: 55.7 / 1121.25
  26456. }
  26457. },
  26458. },
  26459. [
  26460. {
  26461. name: "Normal",
  26462. height: math.unit(12, "feet"),
  26463. default: true
  26464. },
  26465. ]
  26466. ))
  26467. characterMakers.push(() => makeCharacter(
  26468. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26469. {
  26470. side: {
  26471. height: math.unit(6.5, "feet"),
  26472. weight: math.unit(800, "lb"),
  26473. name: "Side",
  26474. image: {
  26475. source: "./media/characters/dusk/side.svg",
  26476. extra: 615 / 373,
  26477. bottom: 53 / 664
  26478. }
  26479. },
  26480. sitting: {
  26481. height: math.unit(7, "feet"),
  26482. weight: math.unit(800, "lb"),
  26483. name: "Sitting",
  26484. image: {
  26485. source: "./media/characters/dusk/sitting.svg",
  26486. extra: 753 / 425,
  26487. bottom: 33 / 774
  26488. }
  26489. },
  26490. head: {
  26491. height: math.unit(6.1, "feet"),
  26492. name: "Head",
  26493. image: {
  26494. source: "./media/characters/dusk/head.svg"
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(7, "feet"),
  26502. default: true
  26503. },
  26504. ]
  26505. ))
  26506. characterMakers.push(() => makeCharacter(
  26507. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26508. {
  26509. front: {
  26510. height: math.unit(15, "feet"),
  26511. weight: math.unit(7000, "lb"),
  26512. name: "Front",
  26513. image: {
  26514. source: "./media/characters/jay-direwolf/front.svg",
  26515. extra: 1810 / 1732,
  26516. bottom: 66 / 1892
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Normal",
  26523. height: math.unit(15, "feet"),
  26524. default: true
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(4 + 9 / 12, "feet"),
  26533. weight: math.unit(130, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/anchovie/front.svg",
  26537. extra: 382 / 350,
  26538. bottom: 25 / 409
  26539. }
  26540. },
  26541. back: {
  26542. height: math.unit(4 + 9 / 12, "feet"),
  26543. weight: math.unit(130, "lb"),
  26544. name: "Back",
  26545. image: {
  26546. source: "./media/characters/anchovie/back.svg",
  26547. extra: 385 / 352,
  26548. bottom: 16.6 / 402
  26549. }
  26550. },
  26551. frontDressed: {
  26552. height: math.unit(4 + 9 / 12, "feet"),
  26553. weight: math.unit(130, "lb"),
  26554. name: "Front (Dressed)",
  26555. image: {
  26556. source: "./media/characters/anchovie/front-dressed.svg",
  26557. extra: 382 / 350,
  26558. bottom: 25 / 409
  26559. }
  26560. },
  26561. backDressed: {
  26562. height: math.unit(4 + 9 / 12, "feet"),
  26563. weight: math.unit(130, "lb"),
  26564. name: "Back (Dressed)",
  26565. image: {
  26566. source: "./media/characters/anchovie/back-dressed.svg",
  26567. extra: 385 / 352,
  26568. bottom: 16.6 / 402
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Micro",
  26575. height: math.unit(6.4, "inches")
  26576. },
  26577. {
  26578. name: "Normal",
  26579. height: math.unit(4 + 9 / 12, "feet"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26586. {
  26587. front: {
  26588. height: math.unit(2, "meters"),
  26589. weight: math.unit(180, "lb"),
  26590. name: "Front",
  26591. image: {
  26592. source: "./media/characters/acidrenamon/front.svg",
  26593. extra: 987 / 890,
  26594. bottom: 22.8 / 1009
  26595. }
  26596. },
  26597. back: {
  26598. height: math.unit(2, "meters"),
  26599. weight: math.unit(180, "lb"),
  26600. name: "Back",
  26601. image: {
  26602. source: "./media/characters/acidrenamon/back.svg",
  26603. extra: 983 / 891,
  26604. bottom: 8.4 / 992
  26605. }
  26606. },
  26607. head: {
  26608. height: math.unit(1.92, "feet"),
  26609. name: "Head",
  26610. image: {
  26611. source: "./media/characters/acidrenamon/head.svg"
  26612. }
  26613. },
  26614. rump: {
  26615. height: math.unit(1.72, "feet"),
  26616. name: "Rump",
  26617. image: {
  26618. source: "./media/characters/acidrenamon/rump.svg"
  26619. }
  26620. },
  26621. tail: {
  26622. height: math.unit(4.2, "feet"),
  26623. name: "Tail",
  26624. image: {
  26625. source: "./media/characters/acidrenamon/tail.svg"
  26626. }
  26627. },
  26628. },
  26629. [
  26630. {
  26631. name: "Normal",
  26632. height: math.unit(2, "meters"),
  26633. default: true
  26634. },
  26635. {
  26636. name: "Minimacro",
  26637. height: math.unit(7, "meters")
  26638. },
  26639. {
  26640. name: "Macro",
  26641. height: math.unit(200, "meters")
  26642. },
  26643. {
  26644. name: "Gigamacro",
  26645. height: math.unit(0.2, "earths")
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(6, "feet"),
  26654. weight: math.unit(150, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/kenzie-lee/front.svg",
  26658. extra: 1525 / 1465,
  26659. bottom: 45 / 1570
  26660. }
  26661. },
  26662. side: {
  26663. height: math.unit(6, "feet"),
  26664. weight: math.unit(150, "lb"),
  26665. name: "Side",
  26666. image: {
  26667. source: "./media/characters/kenzie-lee/side.svg",
  26668. extra: 5505 / 5383,
  26669. bottom: 60 / 5573
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Normal",
  26676. height: math.unit(152, "feet"),
  26677. default: true
  26678. },
  26679. {
  26680. name: "Megamacro",
  26681. height: math.unit(7, "miles")
  26682. },
  26683. {
  26684. name: "Gigamacro",
  26685. height: math.unit(8000, "miles")
  26686. },
  26687. ]
  26688. ))
  26689. characterMakers.push(() => makeCharacter(
  26690. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26691. {
  26692. side: {
  26693. height: math.unit(6, "feet"),
  26694. weight: math.unit(150, "lb"),
  26695. name: "Side",
  26696. image: {
  26697. source: "./media/characters/withers/side.svg",
  26698. extra: 1830 / 1728,
  26699. bottom: 96 / 1927
  26700. }
  26701. },
  26702. front: {
  26703. height: math.unit(6, "feet"),
  26704. weight: math.unit(150, "lb"),
  26705. name: "Front",
  26706. image: {
  26707. source: "./media/characters/withers/front.svg",
  26708. extra: 1514 / 1438,
  26709. bottom: 118 / 1632
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Macro",
  26716. height: math.unit(168, "feet"),
  26717. default: true
  26718. },
  26719. {
  26720. name: "Megamacro",
  26721. height: math.unit(15, "miles")
  26722. }
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(6 + 7 / 12, "feet"),
  26730. weight: math.unit(250, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/nemoskii/front.svg",
  26734. extra: 2270 / 1734,
  26735. bottom: 86 / 2354
  26736. }
  26737. },
  26738. back: {
  26739. height: math.unit(6 + 7 / 12, "feet"),
  26740. weight: math.unit(250, "lb"),
  26741. name: "Back",
  26742. image: {
  26743. source: "./media/characters/nemoskii/back.svg",
  26744. extra: 1845 / 1788,
  26745. bottom: 10.5 / 1852
  26746. }
  26747. },
  26748. head: {
  26749. height: math.unit(1.31, "feet"),
  26750. name: "Head",
  26751. image: {
  26752. source: "./media/characters/nemoskii/head.svg"
  26753. }
  26754. },
  26755. },
  26756. [
  26757. {
  26758. name: "Normal",
  26759. height: math.unit(6 + 7 / 12, "feet"),
  26760. default: true
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(1, "mile"),
  26769. weight: math.unit(265261.9, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/shui/front.svg",
  26773. extra: 1633 / 1564,
  26774. bottom: 91.5 / 1726
  26775. }
  26776. },
  26777. },
  26778. [
  26779. {
  26780. name: "Macro",
  26781. height: math.unit(1, "mile"),
  26782. default: true
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26788. {
  26789. front: {
  26790. height: math.unit(12 + 6 / 12, "feet"),
  26791. weight: math.unit(1342, "lb"),
  26792. name: "Front",
  26793. image: {
  26794. source: "./media/characters/arokh-takakura/front.svg",
  26795. extra: 1089 / 1043,
  26796. bottom: 77.4 / 1176.7
  26797. }
  26798. },
  26799. back: {
  26800. height: math.unit(12 + 6 / 12, "feet"),
  26801. weight: math.unit(1342, "lb"),
  26802. name: "Back",
  26803. image: {
  26804. source: "./media/characters/arokh-takakura/back.svg",
  26805. extra: 1046 / 1019,
  26806. bottom: 102 / 1150
  26807. }
  26808. },
  26809. },
  26810. [
  26811. {
  26812. name: "Big",
  26813. height: math.unit(12 + 6 / 12, "feet"),
  26814. default: true
  26815. },
  26816. ]
  26817. ))
  26818. characterMakers.push(() => makeCharacter(
  26819. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26820. {
  26821. front: {
  26822. height: math.unit(5 + 6 / 12, "feet"),
  26823. weight: math.unit(150, "lb"),
  26824. name: "Front",
  26825. image: {
  26826. source: "./media/characters/theo/front.svg",
  26827. extra: 1184 / 1131,
  26828. bottom: 7.4 / 1191
  26829. }
  26830. },
  26831. },
  26832. [
  26833. {
  26834. name: "Micro",
  26835. height: math.unit(5, "inches")
  26836. },
  26837. {
  26838. name: "Normal",
  26839. height: math.unit(5 + 6 / 12, "feet"),
  26840. default: true
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26846. {
  26847. front: {
  26848. height: math.unit(5 + 9 / 12, "feet"),
  26849. weight: math.unit(130, "lb"),
  26850. name: "Front",
  26851. image: {
  26852. source: "./media/characters/cecelia-swift/front.svg",
  26853. extra: 502 / 484,
  26854. bottom: 23 / 523
  26855. }
  26856. },
  26857. back: {
  26858. height: math.unit(5 + 9 / 12, "feet"),
  26859. weight: math.unit(130, "lb"),
  26860. name: "Back",
  26861. image: {
  26862. source: "./media/characters/cecelia-swift/back.svg",
  26863. extra: 499 / 485,
  26864. bottom: 12 / 511
  26865. }
  26866. },
  26867. head: {
  26868. height: math.unit(0.90, "feet"),
  26869. name: "Head",
  26870. image: {
  26871. source: "./media/characters/cecelia-swift/head.svg"
  26872. }
  26873. },
  26874. rump: {
  26875. height: math.unit(1.75, "feet"),
  26876. name: "Rump",
  26877. image: {
  26878. source: "./media/characters/cecelia-swift/rump.svg"
  26879. }
  26880. },
  26881. },
  26882. [
  26883. {
  26884. name: "Normal",
  26885. height: math.unit(5 + 9 / 12, "feet"),
  26886. default: true
  26887. },
  26888. {
  26889. name: "Big",
  26890. height: math.unit(50, "feet")
  26891. },
  26892. {
  26893. name: "Macro",
  26894. height: math.unit(100, "feet")
  26895. },
  26896. {
  26897. name: "Macro+",
  26898. height: math.unit(500, "feet")
  26899. },
  26900. {
  26901. name: "Macro++",
  26902. height: math.unit(1000, "feet")
  26903. },
  26904. ]
  26905. ))
  26906. characterMakers.push(() => makeCharacter(
  26907. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26908. {
  26909. front: {
  26910. height: math.unit(6, "feet"),
  26911. weight: math.unit(150, "lb"),
  26912. name: "Front",
  26913. image: {
  26914. source: "./media/characters/kaunan/front.svg",
  26915. extra: 2890 / 2523,
  26916. bottom: 49 / 2939
  26917. }
  26918. },
  26919. },
  26920. [
  26921. {
  26922. name: "Macro",
  26923. height: math.unit(150, "feet"),
  26924. default: true
  26925. },
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26930. {
  26931. front: {
  26932. height: math.unit(175, "cm"),
  26933. weight: math.unit(60, "kg"),
  26934. name: "Front",
  26935. image: {
  26936. source: "./media/characters/fei/front.svg",
  26937. extra: 2581 / 2400,
  26938. bottom: 82.2 / 2663
  26939. }
  26940. },
  26941. },
  26942. [
  26943. {
  26944. name: "Mortal",
  26945. height: math.unit(175, "cm")
  26946. },
  26947. {
  26948. name: "Normal",
  26949. height: math.unit(3500, "m"),
  26950. default: true
  26951. },
  26952. {
  26953. name: "Stroll",
  26954. height: math.unit(17.5, "km")
  26955. },
  26956. {
  26957. name: "Showoff",
  26958. height: math.unit(175, "km")
  26959. },
  26960. ]
  26961. ))
  26962. characterMakers.push(() => makeCharacter(
  26963. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26964. {
  26965. front: {
  26966. height: math.unit(7, "feet"),
  26967. weight: math.unit(1000, "kg"),
  26968. name: "Front",
  26969. image: {
  26970. source: "./media/characters/edrax/front.svg",
  26971. extra: 2838 / 2550,
  26972. bottom: 130 / 2968
  26973. }
  26974. },
  26975. },
  26976. [
  26977. {
  26978. name: "Small",
  26979. height: math.unit(7, "feet")
  26980. },
  26981. {
  26982. name: "Normal",
  26983. height: math.unit(1500, "meters")
  26984. },
  26985. {
  26986. name: "Mega",
  26987. height: math.unit(12000000, "km"),
  26988. default: true
  26989. },
  26990. {
  26991. name: "Megamacro",
  26992. height: math.unit(10600000, "lightyears")
  26993. },
  26994. {
  26995. name: "Hypermacro",
  26996. height: math.unit(256, "yottameters")
  26997. },
  26998. ]
  26999. ))
  27000. characterMakers.push(() => makeCharacter(
  27001. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27002. {
  27003. front: {
  27004. height: math.unit(10, "feet"),
  27005. weight: math.unit(750, "lb"),
  27006. name: "Front",
  27007. image: {
  27008. source: "./media/characters/clove/front.svg",
  27009. extra: 2031 / 1860,
  27010. bottom: 47.8 / 2080
  27011. }
  27012. },
  27013. back: {
  27014. height: math.unit(10, "feet"),
  27015. weight: math.unit(750, "lb"),
  27016. name: "Back",
  27017. image: {
  27018. source: "./media/characters/clove/back.svg",
  27019. extra: 2025 / 1859,
  27020. bottom: 46 / 2071
  27021. }
  27022. },
  27023. },
  27024. [
  27025. {
  27026. name: "Normal",
  27027. height: math.unit(10, "feet")
  27028. },
  27029. ]
  27030. ))
  27031. characterMakers.push(() => makeCharacter(
  27032. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27033. {
  27034. front: {
  27035. height: math.unit(4, "feet"),
  27036. weight: math.unit(50, "lb"),
  27037. name: "Front",
  27038. image: {
  27039. source: "./media/characters/alex-rabbit/front.svg",
  27040. extra: 507 / 458,
  27041. bottom: 18.5 / 527
  27042. }
  27043. },
  27044. back: {
  27045. height: math.unit(4, "feet"),
  27046. weight: math.unit(50, "lb"),
  27047. name: "Back",
  27048. image: {
  27049. source: "./media/characters/alex-rabbit/back.svg",
  27050. extra: 502 / 460,
  27051. bottom: 18.9 / 521
  27052. }
  27053. },
  27054. },
  27055. [
  27056. {
  27057. name: "Normal",
  27058. height: math.unit(4, "feet"),
  27059. default: true
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27065. {
  27066. front: {
  27067. height: math.unit(1 + 3 / 12, "feet"),
  27068. weight: math.unit(80, "lb"),
  27069. name: "Front",
  27070. image: {
  27071. source: "./media/characters/zander-rose/front.svg",
  27072. extra: 916 / 797,
  27073. bottom: 17 / 933
  27074. }
  27075. },
  27076. back: {
  27077. height: math.unit(1 + 3 / 12, "feet"),
  27078. weight: math.unit(80, "lb"),
  27079. name: "Back",
  27080. image: {
  27081. source: "./media/characters/zander-rose/back.svg",
  27082. extra: 903 / 779,
  27083. bottom: 31 / 934
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Normal",
  27090. height: math.unit(1 + 3 / 12, "feet"),
  27091. default: true
  27092. },
  27093. ]
  27094. ))
  27095. characterMakers.push(() => makeCharacter(
  27096. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27097. {
  27098. anthro: {
  27099. height: math.unit(6, "feet"),
  27100. weight: math.unit(150, "lb"),
  27101. name: "Anthro",
  27102. image: {
  27103. source: "./media/characters/razz/anthro.svg",
  27104. extra: 1437 / 1343,
  27105. bottom: 48 / 1485
  27106. }
  27107. },
  27108. feral: {
  27109. height: math.unit(6, "feet"),
  27110. weight: math.unit(150, "lb"),
  27111. name: "Feral",
  27112. image: {
  27113. source: "./media/characters/razz/feral.svg",
  27114. extra: 2569 / 1385,
  27115. bottom: 95 / 2664
  27116. }
  27117. },
  27118. },
  27119. [
  27120. {
  27121. name: "Normal",
  27122. height: math.unit(6, "feet"),
  27123. default: true
  27124. },
  27125. ]
  27126. ))
  27127. characterMakers.push(() => makeCharacter(
  27128. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27129. {
  27130. front: {
  27131. height: math.unit(9 + 4 / 12, "feet"),
  27132. weight: math.unit(500, "lb"),
  27133. name: "Front",
  27134. image: {
  27135. source: "./media/characters/morrigan/front.svg",
  27136. extra: 2707 / 2579,
  27137. bottom: 156 / 2863
  27138. }
  27139. },
  27140. },
  27141. [
  27142. {
  27143. name: "Normal",
  27144. height: math.unit(9 + 4 / 12, "feet"),
  27145. default: true
  27146. },
  27147. ]
  27148. ))
  27149. characterMakers.push(() => makeCharacter(
  27150. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27151. {
  27152. front: {
  27153. height: math.unit(5, "stories"),
  27154. weight: math.unit(4000, "lb"),
  27155. name: "Front",
  27156. image: {
  27157. source: "./media/characters/jenene/front.svg",
  27158. extra: 1780 / 1710,
  27159. bottom: 57 / 1837
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Normal",
  27166. height: math.unit(5, "stories"),
  27167. default: true
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27173. {
  27174. front: {
  27175. height: math.unit(6, "feet"),
  27176. weight: math.unit(150, "lb"),
  27177. name: "Front",
  27178. image: {
  27179. source: "./media/characters/vix-archaser/front.svg",
  27180. extra: 2767 / 2562,
  27181. bottom: 36 / 2803
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Micro",
  27188. height: math.unit(1, "foot")
  27189. },
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(6 + 5 / 12, "feet")
  27193. },
  27194. {
  27195. name: "Minimacro",
  27196. height: math.unit(500, "feet")
  27197. },
  27198. {
  27199. name: "Macro",
  27200. height: math.unit(4, "miles")
  27201. },
  27202. {
  27203. name: "Megamacro",
  27204. height: math.unit(250, "miles"),
  27205. default: true
  27206. },
  27207. {
  27208. name: "Gigamacro",
  27209. height: math.unit(1, "universe")
  27210. },
  27211. {
  27212. name: "Endgame",
  27213. height: math.unit(100, "multiverses")
  27214. }
  27215. ]
  27216. ))
  27217. characterMakers.push(() => makeCharacter(
  27218. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27219. {
  27220. taurSfw: {
  27221. height: math.unit(10, "meters"),
  27222. weight: math.unit(17500, "kg"),
  27223. name: "Taur",
  27224. image: {
  27225. source: "./media/characters/faey/taur-sfw.svg",
  27226. extra: 1200 / 968,
  27227. bottom: 41 / 1241
  27228. }
  27229. },
  27230. chestmaw: {
  27231. height: math.unit(2.01, "meters"),
  27232. name: "Chestmaw",
  27233. image: {
  27234. source: "./media/characters/faey/chestmaw.svg"
  27235. }
  27236. },
  27237. foot: {
  27238. height: math.unit(2.43, "meters"),
  27239. name: "Foot",
  27240. image: {
  27241. source: "./media/characters/faey/foot.svg"
  27242. }
  27243. },
  27244. jaws: {
  27245. height: math.unit(1.66, "meters"),
  27246. name: "Jaws",
  27247. image: {
  27248. source: "./media/characters/faey/jaws.svg"
  27249. }
  27250. },
  27251. tongues: {
  27252. height: math.unit(2.01, "meters"),
  27253. name: "Tongues",
  27254. image: {
  27255. source: "./media/characters/faey/tongues.svg"
  27256. }
  27257. },
  27258. },
  27259. [
  27260. {
  27261. name: "Small",
  27262. height: math.unit(10, "meters"),
  27263. default: true
  27264. },
  27265. {
  27266. name: "Big",
  27267. height: math.unit(500000, "km")
  27268. },
  27269. ]
  27270. ))
  27271. characterMakers.push(() => makeCharacter(
  27272. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27273. {
  27274. front: {
  27275. height: math.unit(7, "feet"),
  27276. weight: math.unit(275, "lb"),
  27277. name: "Front",
  27278. image: {
  27279. source: "./media/characters/roku/front.svg",
  27280. extra: 903 / 878,
  27281. bottom: 37 / 940
  27282. }
  27283. },
  27284. },
  27285. [
  27286. {
  27287. name: "Normal",
  27288. height: math.unit(7, "feet"),
  27289. default: true
  27290. },
  27291. {
  27292. name: "Macro",
  27293. height: math.unit(500, "feet")
  27294. },
  27295. {
  27296. name: "Megamacro",
  27297. height: math.unit(200, "miles")
  27298. },
  27299. ]
  27300. ))
  27301. characterMakers.push(() => makeCharacter(
  27302. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27303. {
  27304. front: {
  27305. height: math.unit(6 + 2 / 12, "feet"),
  27306. weight: math.unit(150, "lb"),
  27307. name: "Front",
  27308. image: {
  27309. source: "./media/characters/lira/front.svg",
  27310. extra: 1727 / 1605,
  27311. bottom: 26 / 1753
  27312. }
  27313. },
  27314. back: {
  27315. height: math.unit(6 + 2 / 12, "feet"),
  27316. weight: math.unit(150, "lb"),
  27317. name: "Back",
  27318. image: {
  27319. source: "./media/characters/lira/back.svg",
  27320. extra: 1713 / 159,
  27321. bottom: 20 / 1733
  27322. }
  27323. },
  27324. hand: {
  27325. height: math.unit(0.75, "feet"),
  27326. name: "Hand",
  27327. image: {
  27328. source: "./media/characters/lira/hand.svg"
  27329. }
  27330. },
  27331. maw: {
  27332. height: math.unit(0.65, "feet"),
  27333. name: "Maw",
  27334. image: {
  27335. source: "./media/characters/lira/maw.svg"
  27336. }
  27337. },
  27338. pawDigi: {
  27339. height: math.unit(1.6, "feet"),
  27340. name: "Paw Digi",
  27341. image: {
  27342. source: "./media/characters/lira/paw-digi.svg"
  27343. }
  27344. },
  27345. pawPlanti: {
  27346. height: math.unit(1.4, "feet"),
  27347. name: "Paw Planti",
  27348. image: {
  27349. source: "./media/characters/lira/paw-planti.svg"
  27350. }
  27351. },
  27352. },
  27353. [
  27354. {
  27355. name: "Normal",
  27356. height: math.unit(6 + 2 / 12, "feet"),
  27357. default: true
  27358. },
  27359. {
  27360. name: "Macro",
  27361. height: math.unit(100, "feet")
  27362. },
  27363. {
  27364. name: "Macro²",
  27365. height: math.unit(1600, "feet")
  27366. },
  27367. {
  27368. name: "Planetary",
  27369. height: math.unit(20, "earths")
  27370. },
  27371. ]
  27372. ))
  27373. characterMakers.push(() => makeCharacter(
  27374. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27375. {
  27376. front: {
  27377. height: math.unit(6, "feet"),
  27378. weight: math.unit(150, "lb"),
  27379. name: "Front",
  27380. image: {
  27381. source: "./media/characters/hadjet/front.svg",
  27382. extra: 1480 / 1346,
  27383. bottom: 26 / 1506
  27384. }
  27385. },
  27386. frontNsfw: {
  27387. height: math.unit(6, "feet"),
  27388. weight: math.unit(150, "lb"),
  27389. name: "Front (NSFW)",
  27390. image: {
  27391. source: "./media/characters/hadjet/front-nsfw.svg",
  27392. extra: 1440 / 1358,
  27393. bottom: 52 / 1492
  27394. }
  27395. },
  27396. },
  27397. [
  27398. {
  27399. name: "Macro",
  27400. height: math.unit(10, "stories"),
  27401. default: true
  27402. },
  27403. {
  27404. name: "Megamacro",
  27405. height: math.unit(1.5, "miles")
  27406. },
  27407. {
  27408. name: "Megamacro+",
  27409. height: math.unit(5, "miles")
  27410. },
  27411. ]
  27412. ))
  27413. characterMakers.push(() => makeCharacter(
  27414. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27415. {
  27416. side: {
  27417. height: math.unit(106, "feet"),
  27418. weight: math.unit(500, "tonnes"),
  27419. name: "Side",
  27420. image: {
  27421. source: "./media/characters/kodran/side.svg",
  27422. extra: 553 / 480,
  27423. bottom: 33 / 586
  27424. }
  27425. },
  27426. front: {
  27427. height: math.unit(132, "feet"),
  27428. weight: math.unit(500, "tonnes"),
  27429. name: "Front",
  27430. image: {
  27431. source: "./media/characters/kodran/front.svg",
  27432. extra: 667 / 643,
  27433. bottom: 42 / 709
  27434. }
  27435. },
  27436. flying: {
  27437. height: math.unit(350, "feet"),
  27438. weight: math.unit(500, "tonnes"),
  27439. name: "Flying",
  27440. image: {
  27441. source: "./media/characters/kodran/flying.svg"
  27442. }
  27443. },
  27444. foot: {
  27445. height: math.unit(33, "feet"),
  27446. name: "Foot",
  27447. image: {
  27448. source: "./media/characters/kodran/foot.svg"
  27449. }
  27450. },
  27451. footFront: {
  27452. height: math.unit(19, "feet"),
  27453. name: "Foot (Front)",
  27454. image: {
  27455. source: "./media/characters/kodran/foot-front.svg",
  27456. extra: 261 / 261,
  27457. bottom: 91 / 352
  27458. }
  27459. },
  27460. headFront: {
  27461. height: math.unit(53, "feet"),
  27462. name: "Head (Front)",
  27463. image: {
  27464. source: "./media/characters/kodran/head-front.svg"
  27465. }
  27466. },
  27467. headSide: {
  27468. height: math.unit(65, "feet"),
  27469. name: "Head (Side)",
  27470. image: {
  27471. source: "./media/characters/kodran/head-side.svg"
  27472. }
  27473. },
  27474. throat: {
  27475. height: math.unit(79, "feet"),
  27476. name: "Throat",
  27477. image: {
  27478. source: "./media/characters/kodran/throat.svg"
  27479. }
  27480. },
  27481. },
  27482. [
  27483. {
  27484. name: "Large",
  27485. height: math.unit(106, "feet"),
  27486. default: true
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27492. {
  27493. side: {
  27494. height: math.unit(11, "feet"),
  27495. weight: math.unit(150, "lb"),
  27496. name: "Side",
  27497. image: {
  27498. source: "./media/characters/pyxaron/side.svg",
  27499. extra: 305 / 195,
  27500. bottom: 17 / 322
  27501. }
  27502. },
  27503. },
  27504. [
  27505. {
  27506. name: "Normal",
  27507. height: math.unit(11, "feet")
  27508. },
  27509. ]
  27510. ))
  27511. characterMakers.push(() => makeCharacter(
  27512. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27513. {
  27514. front: {
  27515. height: math.unit(6, "feet"),
  27516. weight: math.unit(150, "lb"),
  27517. name: "Front",
  27518. image: {
  27519. source: "./media/characters/meep/front.svg",
  27520. extra: 88 / 80,
  27521. bottom: 6 / 94
  27522. }
  27523. },
  27524. },
  27525. [
  27526. {
  27527. name: "Fun Sized",
  27528. height: math.unit(2, "inches"),
  27529. default: true
  27530. },
  27531. {
  27532. name: "Friend Sized",
  27533. height: math.unit(8, "inches")
  27534. },
  27535. ]
  27536. ))
  27537. characterMakers.push(() => makeCharacter(
  27538. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27539. {
  27540. front: {
  27541. height: math.unit(15, "feet"),
  27542. weight: math.unit(2500, "lb"),
  27543. name: "Front",
  27544. image: {
  27545. source: "./media/characters/holly-rabbit/front.svg",
  27546. extra: 1433 / 1233,
  27547. bottom: 125 / 1558
  27548. }
  27549. },
  27550. dick: {
  27551. height: math.unit(4.6, "feet"),
  27552. name: "Dick",
  27553. image: {
  27554. source: "./media/characters/holly-rabbit/dick.svg"
  27555. }
  27556. },
  27557. },
  27558. [
  27559. {
  27560. name: "Normal",
  27561. height: math.unit(15, "feet"),
  27562. default: true
  27563. },
  27564. {
  27565. name: "Macro",
  27566. height: math.unit(250, "feet")
  27567. },
  27568. {
  27569. name: "Macro+",
  27570. height: math.unit(2500, "feet")
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(3.02, "meters"),
  27579. weight: math.unit(500, "kg"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/drena/front.svg",
  27583. extra: 282 / 243,
  27584. bottom: 8 / 290
  27585. }
  27586. },
  27587. side: {
  27588. height: math.unit(3.02, "meters"),
  27589. weight: math.unit(500, "kg"),
  27590. name: "Side",
  27591. image: {
  27592. source: "./media/characters/drena/side.svg",
  27593. extra: 280 / 245,
  27594. bottom: 10 / 290
  27595. }
  27596. },
  27597. back: {
  27598. height: math.unit(3.02, "meters"),
  27599. weight: math.unit(500, "kg"),
  27600. name: "Back",
  27601. image: {
  27602. source: "./media/characters/drena/back.svg",
  27603. extra: 278 / 243,
  27604. bottom: 2 / 280
  27605. }
  27606. },
  27607. foot: {
  27608. height: math.unit(0.75, "meters"),
  27609. name: "Foot",
  27610. image: {
  27611. source: "./media/characters/drena/foot.svg"
  27612. }
  27613. },
  27614. maw: {
  27615. height: math.unit(0.82, "meters"),
  27616. name: "Maw",
  27617. image: {
  27618. source: "./media/characters/drena/maw.svg"
  27619. }
  27620. },
  27621. rump: {
  27622. height: math.unit(0.93, "meters"),
  27623. name: "Rump",
  27624. image: {
  27625. source: "./media/characters/drena/rump.svg"
  27626. }
  27627. },
  27628. },
  27629. [
  27630. {
  27631. name: "Normal",
  27632. height: math.unit(3.02, "meters"),
  27633. default: true
  27634. },
  27635. ]
  27636. ))
  27637. characterMakers.push(() => makeCharacter(
  27638. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27639. {
  27640. front: {
  27641. height: math.unit(6 + 4 / 12, "feet"),
  27642. weight: math.unit(250, "lb"),
  27643. name: "Front",
  27644. image: {
  27645. source: "./media/characters/remmyzilla/front.svg",
  27646. extra: 4033 / 3588,
  27647. bottom: 123 / 4156
  27648. }
  27649. },
  27650. back: {
  27651. height: math.unit(6 + 4 / 12, "feet"),
  27652. weight: math.unit(250, "lb"),
  27653. name: "Back",
  27654. image: {
  27655. source: "./media/characters/remmyzilla/back.svg",
  27656. extra: 2687 / 2555,
  27657. bottom: 48 / 2735
  27658. }
  27659. },
  27660. frontFancy: {
  27661. height: math.unit(6 + 4 / 12, "feet"),
  27662. weight: math.unit(250, "lb"),
  27663. name: "Front (Fancy)",
  27664. image: {
  27665. source: "./media/characters/remmyzilla/front-fancy.svg",
  27666. extra: 4119 / 3419,
  27667. bottom: 237 / 4356
  27668. }
  27669. },
  27670. paw: {
  27671. height: math.unit(1.73, "feet"),
  27672. name: "Paw",
  27673. image: {
  27674. source: "./media/characters/remmyzilla/paw.svg"
  27675. }
  27676. },
  27677. maw: {
  27678. height: math.unit(1.73, "feet"),
  27679. name: "Maw",
  27680. image: {
  27681. source: "./media/characters/remmyzilla/maw.svg"
  27682. }
  27683. },
  27684. },
  27685. [
  27686. {
  27687. name: "Normal",
  27688. height: math.unit(6 + 4 / 12, "feet")
  27689. },
  27690. {
  27691. name: "Minimacro",
  27692. height: math.unit(12 + 8 / 12, "feet")
  27693. },
  27694. {
  27695. name: "Normal",
  27696. height: math.unit(640, "feet"),
  27697. default: true
  27698. },
  27699. {
  27700. name: "Megamacro",
  27701. height: math.unit(6400, "feet")
  27702. },
  27703. {
  27704. name: "Gigamacro",
  27705. height: math.unit(64000, "miles")
  27706. },
  27707. ]
  27708. ))
  27709. characterMakers.push(() => makeCharacter(
  27710. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27711. {
  27712. front: {
  27713. height: math.unit(2.5, "meters"),
  27714. weight: math.unit(300, "lb"),
  27715. name: "Front",
  27716. image: {
  27717. source: "./media/characters/lawrence/front.svg",
  27718. extra: 357 / 335,
  27719. bottom: 30 / 387
  27720. }
  27721. },
  27722. back: {
  27723. height: math.unit(2.5, "meters"),
  27724. weight: math.unit(300, "lb"),
  27725. name: "Back",
  27726. image: {
  27727. source: "./media/characters/lawrence/back.svg",
  27728. extra: 357 / 338,
  27729. bottom: 16 / 373
  27730. }
  27731. },
  27732. head: {
  27733. height: math.unit(0.9, "meter"),
  27734. name: "Head",
  27735. image: {
  27736. source: "./media/characters/lawrence/head.svg"
  27737. }
  27738. },
  27739. maw: {
  27740. height: math.unit(0.7, "meter"),
  27741. name: "Maw",
  27742. image: {
  27743. source: "./media/characters/lawrence/maw.svg"
  27744. }
  27745. },
  27746. footBottom: {
  27747. height: math.unit(0.5, "meter"),
  27748. name: "Foot (Bottom)",
  27749. image: {
  27750. source: "./media/characters/lawrence/foot-bottom.svg"
  27751. }
  27752. },
  27753. footTop: {
  27754. height: math.unit(0.5, "meter"),
  27755. name: "Foot (Top)",
  27756. image: {
  27757. source: "./media/characters/lawrence/foot-top.svg"
  27758. }
  27759. },
  27760. },
  27761. [
  27762. {
  27763. name: "Normal",
  27764. height: math.unit(2.5, "meters"),
  27765. default: true
  27766. },
  27767. {
  27768. name: "Macro",
  27769. height: math.unit(95, "meters")
  27770. },
  27771. {
  27772. name: "Megamacro",
  27773. height: math.unit(150, "km")
  27774. },
  27775. ]
  27776. ))
  27777. characterMakers.push(() => makeCharacter(
  27778. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27779. {
  27780. front: {
  27781. height: math.unit(4.2, "meters"),
  27782. name: "Front",
  27783. image: {
  27784. source: "./media/characters/sydney/front.svg",
  27785. extra: 1323 / 1277,
  27786. bottom: 111 / 1434
  27787. }
  27788. },
  27789. },
  27790. [
  27791. {
  27792. name: "Normal",
  27793. height: math.unit(4.2, "meters")
  27794. },
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27799. {
  27800. back: {
  27801. height: math.unit(201, "feet"),
  27802. name: "Back",
  27803. image: {
  27804. source: "./media/characters/jessica/back.svg",
  27805. extra: 273 / 259,
  27806. bottom: 7 / 280
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(201, "feet"),
  27814. default: true
  27815. },
  27816. {
  27817. name: "Megamacro",
  27818. height: math.unit(8, "miles")
  27819. },
  27820. ]
  27821. ))
  27822. characterMakers.push(() => makeCharacter(
  27823. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27824. {
  27825. side: {
  27826. height: math.unit(320, "cm"),
  27827. name: "Side",
  27828. image: {
  27829. source: "./media/characters/victoria/side.svg",
  27830. extra: 778 / 346,
  27831. bottom: 56 / 834
  27832. }
  27833. },
  27834. maw: {
  27835. height: math.unit(5.9, "feet"),
  27836. name: "Maw",
  27837. image: {
  27838. source: "./media/characters/victoria/maw.svg"
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Normal",
  27845. height: math.unit(320, "cm"),
  27846. default: true
  27847. },
  27848. ]
  27849. ))
  27850. characterMakers.push(() => makeCharacter(
  27851. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27852. {
  27853. front: {
  27854. height: math.unit(5 + 6 / 12, "feet"),
  27855. name: "Front",
  27856. image: {
  27857. source: "./media/characters/cat/front.svg",
  27858. extra: 1374 / 1257,
  27859. bottom: 59 / 1433
  27860. }
  27861. },
  27862. back: {
  27863. height: math.unit(5 + 6 / 12, "feet"),
  27864. name: "Back",
  27865. image: {
  27866. source: "./media/characters/cat/back.svg",
  27867. extra: 1337 / 1226,
  27868. bottom: 34 / 1371
  27869. }
  27870. },
  27871. taur: {
  27872. height: math.unit(7, "feet"),
  27873. name: "Taur",
  27874. image: {
  27875. source: "./media/characters/cat/taur.svg",
  27876. extra: 1345 / 1231,
  27877. bottom: 66 / 1411
  27878. }
  27879. },
  27880. lucario: {
  27881. height: math.unit(4, "feet"),
  27882. name: "Lucario",
  27883. image: {
  27884. source: "./media/characters/cat/lucario.svg",
  27885. extra: 1470 / 1318,
  27886. bottom: 65 / 1535
  27887. }
  27888. },
  27889. megaLucario: {
  27890. height: math.unit(4, "feet"),
  27891. name: "Mega Lucario",
  27892. image: {
  27893. source: "./media/characters/cat/mega-lucario.svg",
  27894. extra: 1515 / 1319,
  27895. bottom: 63 / 1578
  27896. }
  27897. },
  27898. nickit: {
  27899. height: math.unit(2, "feet"),
  27900. name: "Nickit",
  27901. image: {
  27902. source: "./media/characters/cat/nickit.svg",
  27903. extra: 1980 / 1585,
  27904. bottom: 102 / 2082
  27905. }
  27906. },
  27907. lopunnyFront: {
  27908. height: math.unit(5, "feet"),
  27909. name: "Lopunny (Front)",
  27910. image: {
  27911. source: "./media/characters/cat/lopunny-front.svg",
  27912. extra: 1782 / 1469,
  27913. bottom: 38 / 1820
  27914. }
  27915. },
  27916. lopunnyBack: {
  27917. height: math.unit(5, "feet"),
  27918. name: "Lopunny (Back)",
  27919. image: {
  27920. source: "./media/characters/cat/lopunny-back.svg",
  27921. extra: 1660 / 1490,
  27922. bottom: 25 / 1685
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Really small",
  27929. height: math.unit(1, "nm")
  27930. },
  27931. {
  27932. name: "Micro",
  27933. height: math.unit(5, "inches")
  27934. },
  27935. {
  27936. name: "Normal",
  27937. height: math.unit(5 + 6 / 12, "feet"),
  27938. default: true
  27939. },
  27940. {
  27941. name: "Macro",
  27942. height: math.unit(50, "feet")
  27943. },
  27944. {
  27945. name: "Macro+",
  27946. height: math.unit(150, "feet")
  27947. },
  27948. {
  27949. name: "Megamacro",
  27950. height: math.unit(100, "miles")
  27951. },
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27956. {
  27957. front: {
  27958. height: math.unit(63.4, "meters"),
  27959. weight: math.unit(3.28349e+6, "kilograms"),
  27960. name: "Front",
  27961. image: {
  27962. source: "./media/characters/kirina-violet/front.svg",
  27963. extra: 2812 / 2725,
  27964. bottom: 0 / 2812
  27965. }
  27966. },
  27967. back: {
  27968. height: math.unit(63.4, "meters"),
  27969. weight: math.unit(3.28349e+6, "kilograms"),
  27970. name: "Back",
  27971. image: {
  27972. source: "./media/characters/kirina-violet/back.svg",
  27973. extra: 2812 / 2725,
  27974. bottom: 0 / 2812
  27975. }
  27976. },
  27977. mouth: {
  27978. height: math.unit(4.35, "meters"),
  27979. name: "Mouth",
  27980. image: {
  27981. source: "./media/characters/kirina-violet/mouth.svg"
  27982. }
  27983. },
  27984. paw: {
  27985. height: math.unit(5.6, "meters"),
  27986. name: "Paw",
  27987. image: {
  27988. source: "./media/characters/kirina-violet/paw.svg"
  27989. }
  27990. },
  27991. tail: {
  27992. height: math.unit(18, "meters"),
  27993. name: "Tail",
  27994. image: {
  27995. source: "./media/characters/kirina-violet/tail.svg"
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Macro",
  28002. height: math.unit(63.4, "meters"),
  28003. default: true
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28009. {
  28010. front: {
  28011. height: math.unit(60, "feet"),
  28012. name: "Front",
  28013. image: {
  28014. source: "./media/characters/cat-gigachu/front.svg",
  28015. extra: 1024 / 780,
  28016. bottom: 23 / 1047
  28017. }
  28018. },
  28019. back: {
  28020. height: math.unit(60, "feet"),
  28021. name: "Back",
  28022. image: {
  28023. source: "./media/characters/cat-gigachu/back.svg",
  28024. extra: 1024 / 780,
  28025. bottom: 23 / 1047
  28026. }
  28027. },
  28028. },
  28029. [
  28030. {
  28031. name: "Dynamax",
  28032. height: math.unit(60, "feet"),
  28033. default: true
  28034. },
  28035. ]
  28036. ))
  28037. characterMakers.push(() => makeCharacter(
  28038. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28039. {
  28040. front: {
  28041. height: math.unit(6, "feet"),
  28042. weight: math.unit(150, "lb"),
  28043. name: "Front",
  28044. image: {
  28045. source: "./media/characters/sfaiyan/front.svg",
  28046. extra: 999 / 978,
  28047. bottom: 5 / 1004
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(1.82, "meters")
  28055. },
  28056. {
  28057. name: "Giant",
  28058. height: math.unit(2.27, "km"),
  28059. default: true
  28060. },
  28061. ]
  28062. ))
  28063. characterMakers.push(() => makeCharacter(
  28064. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28065. {
  28066. front: {
  28067. height: math.unit(179, "cm"),
  28068. weight: math.unit(100, "kg"),
  28069. name: "Front",
  28070. image: {
  28071. source: "./media/characters/raunehkeli/front.svg",
  28072. extra: 1934 / 1926,
  28073. bottom: 0 / 1934
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(179, "cm")
  28081. },
  28082. {
  28083. name: "Maximum",
  28084. height: math.unit(575, "meters"),
  28085. default: true
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28091. {
  28092. front: {
  28093. height: math.unit(6, "feet"),
  28094. weight: math.unit(150, "lb"),
  28095. name: "Front",
  28096. image: {
  28097. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28098. extra: 2625 / 2518,
  28099. bottom: 60 / 2685
  28100. }
  28101. },
  28102. },
  28103. [
  28104. {
  28105. name: "Normal",
  28106. height: math.unit(6 + 2 / 12, "feet"),
  28107. default: true
  28108. },
  28109. {
  28110. name: "Macro",
  28111. height: math.unit(1180, "feet")
  28112. },
  28113. ]
  28114. ))
  28115. characterMakers.push(() => makeCharacter(
  28116. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28117. {
  28118. front: {
  28119. height: math.unit(5 + 6 / 12, "feet"),
  28120. weight: math.unit(108, "lb"),
  28121. name: "Front",
  28122. image: {
  28123. source: "./media/characters/lilith-zott/front.svg",
  28124. extra: 2510 / 2238,
  28125. bottom: 100 / 2610
  28126. }
  28127. },
  28128. frontDressed: {
  28129. height: math.unit(5 + 6 / 12, "feet"),
  28130. weight: math.unit(108, "lb"),
  28131. name: "Front (Dressed)",
  28132. image: {
  28133. source: "./media/characters/lilith-zott/front-dressed.svg",
  28134. extra: 2510 / 2238,
  28135. bottom: 100 / 2610
  28136. }
  28137. },
  28138. },
  28139. [
  28140. {
  28141. name: "Normal",
  28142. height: math.unit(5 + 6 / 12, "feet")
  28143. },
  28144. {
  28145. name: "Macro",
  28146. height: math.unit(200, "feet"),
  28147. default: true
  28148. },
  28149. {
  28150. name: "Macro+",
  28151. height: math.unit(1030, "feet")
  28152. },
  28153. ]
  28154. ))
  28155. characterMakers.push(() => makeCharacter(
  28156. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28157. {
  28158. front: {
  28159. height: math.unit(6, "feet"),
  28160. weight: math.unit(150, "lb"),
  28161. name: "Front",
  28162. image: {
  28163. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28164. extra: 2567 / 2435,
  28165. bottom: 39 / 2606
  28166. }
  28167. },
  28168. frontSuper: {
  28169. height: math.unit(6, "feet"),
  28170. name: "Front (Super)",
  28171. image: {
  28172. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28173. extra: 2567 / 2435,
  28174. bottom: 39 / 2606
  28175. }
  28176. },
  28177. },
  28178. [
  28179. {
  28180. name: "Normal",
  28181. height: math.unit(5 + 10 / 12, "feet")
  28182. },
  28183. {
  28184. name: "Macro",
  28185. height: math.unit(220, "feet"),
  28186. default: true
  28187. },
  28188. {
  28189. name: "Macro+",
  28190. height: math.unit(1100, "feet")
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28196. {
  28197. front: {
  28198. height: math.unit(100, "miles"),
  28199. name: "Front",
  28200. image: {
  28201. source: "./media/characters/sona/front.svg",
  28202. extra: 2433 / 2201,
  28203. bottom: 53 / 2486
  28204. }
  28205. },
  28206. foot: {
  28207. height: math.unit(16.1, "miles"),
  28208. name: "Foot",
  28209. image: {
  28210. source: "./media/characters/sona/foot.svg"
  28211. }
  28212. },
  28213. },
  28214. [
  28215. {
  28216. name: "Macro",
  28217. height: math.unit(100, "miles"),
  28218. default: true
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(6, "feet"),
  28227. weight: math.unit(150, "lb"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/bailey/front.svg",
  28231. extra: 1778 / 1724,
  28232. bottom: 30 / 1808
  28233. }
  28234. },
  28235. },
  28236. [
  28237. {
  28238. name: "Micro",
  28239. height: math.unit(4, "inches")
  28240. },
  28241. {
  28242. name: "Normal",
  28243. height: math.unit(5 + 5 / 12, "feet"),
  28244. default: true
  28245. },
  28246. {
  28247. name: "Macro",
  28248. height: math.unit(250, "feet")
  28249. },
  28250. {
  28251. name: "Megamacro",
  28252. height: math.unit(100, "miles")
  28253. },
  28254. ]
  28255. ))
  28256. characterMakers.push(() => makeCharacter(
  28257. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28258. {
  28259. front: {
  28260. height: math.unit(5 + 2 / 12, "feet"),
  28261. weight: math.unit(120, "lb"),
  28262. name: "Front",
  28263. image: {
  28264. source: "./media/characters/snaps/front.svg",
  28265. extra: 2370 / 2177,
  28266. bottom: 48 / 2418
  28267. }
  28268. },
  28269. back: {
  28270. height: math.unit(5 + 2 / 12, "feet"),
  28271. weight: math.unit(120, "lb"),
  28272. name: "Back",
  28273. image: {
  28274. source: "./media/characters/snaps/back.svg",
  28275. extra: 2408 / 2258,
  28276. bottom: 15 / 2423
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Micro",
  28283. height: math.unit(9, "inches")
  28284. },
  28285. {
  28286. name: "Normal",
  28287. height: math.unit(5 + 2 / 12, "feet"),
  28288. default: true
  28289. },
  28290. {
  28291. name: "Mini Macro",
  28292. height: math.unit(10, "feet")
  28293. },
  28294. ]
  28295. ))
  28296. characterMakers.push(() => makeCharacter(
  28297. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28298. {
  28299. front: {
  28300. height: math.unit(1.8, "meters"),
  28301. weight: math.unit(85, "kg"),
  28302. name: "Front",
  28303. image: {
  28304. source: "./media/characters/azteck/front.svg",
  28305. extra: 2815 / 2625,
  28306. bottom: 89 / 2904
  28307. }
  28308. },
  28309. back: {
  28310. height: math.unit(1.8, "meters"),
  28311. weight: math.unit(85, "kg"),
  28312. name: "Back",
  28313. image: {
  28314. source: "./media/characters/azteck/back.svg",
  28315. extra: 2856 / 2648,
  28316. bottom: 85 / 2941
  28317. }
  28318. },
  28319. frontDressed: {
  28320. height: math.unit(1.8, "meters"),
  28321. weight: math.unit(85, "kg"),
  28322. name: "Front (Dressed)",
  28323. image: {
  28324. source: "./media/characters/azteck/front-dressed.svg",
  28325. extra: 2147 / 2003,
  28326. bottom: 68 / 2215
  28327. }
  28328. },
  28329. head: {
  28330. height: math.unit(0.47, "meters"),
  28331. weight: math.unit(85, "kg"),
  28332. name: "Head",
  28333. image: {
  28334. source: "./media/characters/azteck/head.svg"
  28335. }
  28336. },
  28337. },
  28338. [
  28339. {
  28340. name: "Bite sized",
  28341. height: math.unit(16, "cm")
  28342. },
  28343. {
  28344. name: "Normal",
  28345. height: math.unit(1.8, "meters"),
  28346. default: true
  28347. },
  28348. ]
  28349. ))
  28350. characterMakers.push(() => makeCharacter(
  28351. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28352. {
  28353. front: {
  28354. height: math.unit(6, "feet"),
  28355. weight: math.unit(150, "lb"),
  28356. name: "Front",
  28357. image: {
  28358. source: "./media/characters/pidge/front.svg",
  28359. extra: 620 / 588,
  28360. bottom: 9 / 629
  28361. }
  28362. },
  28363. back: {
  28364. height: math.unit(6, "feet"),
  28365. weight: math.unit(150, "lb"),
  28366. name: "Back",
  28367. image: {
  28368. source: "./media/characters/pidge/back.svg",
  28369. extra: 620 / 588,
  28370. bottom: 9 / 629
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Macro",
  28377. height: math.unit(1, "mile"),
  28378. default: true
  28379. },
  28380. ]
  28381. ))
  28382. characterMakers.push(() => makeCharacter(
  28383. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28384. {
  28385. front: {
  28386. height: math.unit(6, "feet"),
  28387. weight: math.unit(150, "lb"),
  28388. name: "Front",
  28389. image: {
  28390. source: "./media/characters/en/front.svg",
  28391. extra: 1697 / 1563,
  28392. bottom: 103 / 1800
  28393. }
  28394. },
  28395. back: {
  28396. height: math.unit(6, "feet"),
  28397. weight: math.unit(150, "lb"),
  28398. name: "Back",
  28399. image: {
  28400. source: "./media/characters/en/back.svg",
  28401. extra: 1700 / 1570,
  28402. bottom: 51 / 1751
  28403. }
  28404. },
  28405. frontDressed: {
  28406. height: math.unit(6, "feet"),
  28407. weight: math.unit(150, "lb"),
  28408. name: "Front (Dressed)",
  28409. image: {
  28410. source: "./media/characters/en/front-dressed.svg",
  28411. extra: 1697 / 1563,
  28412. bottom: 103 / 1800
  28413. }
  28414. },
  28415. backDressed: {
  28416. height: math.unit(6, "feet"),
  28417. weight: math.unit(150, "lb"),
  28418. name: "Back (Dressed)",
  28419. image: {
  28420. source: "./media/characters/en/back-dressed.svg",
  28421. extra: 1700 / 1570,
  28422. bottom: 51 / 1751
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Macro",
  28429. height: math.unit(210, "feet"),
  28430. default: true
  28431. },
  28432. ]
  28433. ))
  28434. characterMakers.push(() => makeCharacter(
  28435. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28436. {
  28437. front: {
  28438. height: math.unit(6, "feet"),
  28439. weight: math.unit(150, "lb"),
  28440. name: "Front",
  28441. image: {
  28442. source: "./media/characters/haze-orris/front.svg",
  28443. extra: 3975 / 3525,
  28444. bottom: 137 / 4112
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Micro",
  28451. height: math.unit(150, "mm"),
  28452. default: true
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28458. {
  28459. front: {
  28460. height: math.unit(6, "feet"),
  28461. weight: math.unit(150, "lb"),
  28462. name: "Front",
  28463. image: {
  28464. source: "./media/characters/casselene-yaro/front.svg",
  28465. extra: 4721 / 4541,
  28466. bottom: 82 / 4803
  28467. }
  28468. },
  28469. back: {
  28470. height: math.unit(6, "feet"),
  28471. weight: math.unit(150, "lb"),
  28472. name: "Back",
  28473. image: {
  28474. source: "./media/characters/casselene-yaro/back.svg",
  28475. extra: 4569 / 4377,
  28476. bottom: 69 / 4638
  28477. }
  28478. },
  28479. frontDressed: {
  28480. height: math.unit(6, "feet"),
  28481. weight: math.unit(150, "lb"),
  28482. name: "Front-dressed",
  28483. image: {
  28484. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28485. extra: 4721 / 4541,
  28486. bottom: 82 / 4803
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Macro",
  28493. height: math.unit(190, "feet")
  28494. },
  28495. ]
  28496. ))
  28497. characterMakers.push(() => makeCharacter(
  28498. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28499. {
  28500. front: {
  28501. height: math.unit(6, "feet"),
  28502. weight: math.unit(150, "lb"),
  28503. name: "Front",
  28504. image: {
  28505. source: "./media/characters/myra-rue-delore/front.svg",
  28506. extra: 1340 / 1308,
  28507. bottom: 67 / 1407
  28508. }
  28509. },
  28510. back: {
  28511. height: math.unit(6, "feet"),
  28512. weight: math.unit(150, "lb"),
  28513. name: "Back",
  28514. image: {
  28515. source: "./media/characters/myra-rue-delore/back.svg",
  28516. extra: 1341 / 1310,
  28517. bottom: 40 / 1381
  28518. }
  28519. },
  28520. frontDressed: {
  28521. height: math.unit(6, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Front (Dressed)",
  28524. image: {
  28525. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28526. extra: 1340 / 1308,
  28527. bottom: 67 / 1407
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Macro",
  28534. height: math.unit(150, "feet")
  28535. },
  28536. ]
  28537. ))
  28538. characterMakers.push(() => makeCharacter(
  28539. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28540. {
  28541. front: {
  28542. height: math.unit(10, "feet"),
  28543. weight: math.unit(15015, "lb"),
  28544. name: "Front",
  28545. image: {
  28546. source: "./media/characters/fem!plat/front.svg",
  28547. extra: 2799 / 2604,
  28548. bottom: 149 / 2948
  28549. }
  28550. },
  28551. },
  28552. [
  28553. {
  28554. name: "Normal",
  28555. height: math.unit(10, "feet"),
  28556. default: true
  28557. },
  28558. {
  28559. name: "Macro",
  28560. height: math.unit(100, "feet")
  28561. },
  28562. {
  28563. name: "Megamacro",
  28564. height: math.unit(1000, "feet")
  28565. },
  28566. ]
  28567. ))
  28568. characterMakers.push(() => makeCharacter(
  28569. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28570. {
  28571. front: {
  28572. height: math.unit(15 + 5 / 12, "feet"),
  28573. weight: math.unit(4600, "lb"),
  28574. name: "Front",
  28575. image: {
  28576. source: "./media/characters/neapolitan-ananassa/front.svg",
  28577. extra: 2903 / 2736,
  28578. bottom: 0 / 2903
  28579. }
  28580. },
  28581. side: {
  28582. height: math.unit(15 + 5 / 12, "feet"),
  28583. weight: math.unit(4600, "lb"),
  28584. name: "Side",
  28585. image: {
  28586. source: "./media/characters/neapolitan-ananassa/side.svg",
  28587. extra: 2925 / 2719,
  28588. bottom: 0 / 2925
  28589. }
  28590. },
  28591. back: {
  28592. height: math.unit(15 + 5 / 12, "feet"),
  28593. weight: math.unit(4600, "lb"),
  28594. name: "Back",
  28595. image: {
  28596. source: "./media/characters/neapolitan-ananassa/back.svg",
  28597. extra: 2903 / 2736,
  28598. bottom: 0 / 2903
  28599. }
  28600. },
  28601. },
  28602. [
  28603. {
  28604. name: "Normal",
  28605. height: math.unit(15 + 5 / 12, "feet"),
  28606. default: true
  28607. },
  28608. {
  28609. name: "Post-Millenium",
  28610. height: math.unit(35 + 5 / 12, "feet")
  28611. },
  28612. {
  28613. name: "Post-Era",
  28614. height: math.unit(450 + 5 / 12, "feet")
  28615. },
  28616. ]
  28617. ))
  28618. characterMakers.push(() => makeCharacter(
  28619. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28620. {
  28621. front: {
  28622. height: math.unit(300, "meters"),
  28623. weight: math.unit(125000, "tonnes"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/pazuzu/front.svg",
  28627. extra: 877 / 794,
  28628. bottom: 47 / 924
  28629. }
  28630. },
  28631. },
  28632. [
  28633. {
  28634. name: "Macro",
  28635. height: math.unit(300, "meters"),
  28636. default: true
  28637. },
  28638. ]
  28639. ))
  28640. characterMakers.push(() => makeCharacter(
  28641. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28642. {
  28643. side: {
  28644. height: math.unit(10 + 7 / 12, "feet"),
  28645. weight: math.unit(2.5, "tons"),
  28646. name: "Side",
  28647. image: {
  28648. source: "./media/characters/aasha/side.svg",
  28649. extra: 1345 / 1245,
  28650. bottom: 111 / 1456
  28651. }
  28652. },
  28653. back: {
  28654. height: math.unit(10 + 7 / 12, "feet"),
  28655. weight: math.unit(2.5, "tons"),
  28656. name: "Back",
  28657. image: {
  28658. source: "./media/characters/aasha/back.svg",
  28659. extra: 1133 / 1057,
  28660. bottom: 257 / 1390
  28661. }
  28662. },
  28663. },
  28664. [
  28665. {
  28666. name: "Normal",
  28667. height: math.unit(10 + 7 / 12, "feet"),
  28668. default: true
  28669. },
  28670. ]
  28671. ))
  28672. characterMakers.push(() => makeCharacter(
  28673. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28674. {
  28675. front: {
  28676. height: math.unit(6 + 3 / 12, "feet"),
  28677. name: "Front",
  28678. image: {
  28679. source: "./media/characters/nevan/front.svg",
  28680. extra: 704 / 704,
  28681. bottom: 28 / 732
  28682. }
  28683. },
  28684. back: {
  28685. height: math.unit(6 + 3 / 12, "feet"),
  28686. name: "Back",
  28687. image: {
  28688. source: "./media/characters/nevan/back.svg",
  28689. extra: 714 / 714,
  28690. bottom: 21 / 735
  28691. }
  28692. },
  28693. frontFlaccid: {
  28694. height: math.unit(6 + 3 / 12, "feet"),
  28695. name: "Front (Flaccid)",
  28696. image: {
  28697. source: "./media/characters/nevan/front-flaccid.svg",
  28698. extra: 704 / 704,
  28699. bottom: 28 / 732
  28700. }
  28701. },
  28702. frontErect: {
  28703. height: math.unit(6 + 3 / 12, "feet"),
  28704. name: "Front (Erect)",
  28705. image: {
  28706. source: "./media/characters/nevan/front-erect.svg",
  28707. extra: 704 / 704,
  28708. bottom: 28 / 732
  28709. }
  28710. },
  28711. backFlaccid: {
  28712. height: math.unit(6 + 3 / 12, "feet"),
  28713. name: "Back (Flaccid)",
  28714. image: {
  28715. source: "./media/characters/nevan/back-flaccid.svg",
  28716. extra: 714 / 714,
  28717. bottom: 21 / 735
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Normal",
  28724. height: math.unit(6 + 3 / 12, "feet"),
  28725. default: true
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(4, "feet"),
  28734. name: "Front",
  28735. image: {
  28736. source: "./media/characters/arhan/front.svg",
  28737. extra: 3368 / 3133,
  28738. bottom: 0 / 3368
  28739. }
  28740. },
  28741. side: {
  28742. height: math.unit(4, "feet"),
  28743. name: "Side",
  28744. image: {
  28745. source: "./media/characters/arhan/side.svg",
  28746. extra: 3347 / 3105,
  28747. bottom: 0 / 3347
  28748. }
  28749. },
  28750. tongue: {
  28751. height: math.unit(1.42, "feet"),
  28752. name: "Tongue",
  28753. image: {
  28754. source: "./media/characters/arhan/tongue.svg"
  28755. }
  28756. },
  28757. head: {
  28758. height: math.unit(0.85, "feet"),
  28759. name: "Head",
  28760. image: {
  28761. source: "./media/characters/arhan/head.svg"
  28762. }
  28763. },
  28764. },
  28765. [
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(4, "feet"),
  28769. default: true
  28770. },
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(5 + 7.5 / 12, "feet"),
  28778. weight: math.unit(120, "lb"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/digi-duncan/front.svg",
  28782. extra: 330 / 326,
  28783. bottom: 16 / 346
  28784. }
  28785. },
  28786. side: {
  28787. height: math.unit(5 + 7.5 / 12, "feet"),
  28788. weight: math.unit(120, "lb"),
  28789. name: "Side",
  28790. image: {
  28791. source: "./media/characters/digi-duncan/side.svg",
  28792. extra: 341 / 337,
  28793. bottom: 1 / 342
  28794. }
  28795. },
  28796. back: {
  28797. height: math.unit(5 + 7.5 / 12, "feet"),
  28798. weight: math.unit(120, "lb"),
  28799. name: "Back",
  28800. image: {
  28801. source: "./media/characters/digi-duncan/back.svg",
  28802. extra: 330 / 326,
  28803. bottom: 12 / 342
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Speck",
  28810. height: math.unit(0.25, "mm")
  28811. },
  28812. {
  28813. name: "Micro",
  28814. height: math.unit(5, "mm")
  28815. },
  28816. {
  28817. name: "Tiny",
  28818. height: math.unit(0.5, "inches"),
  28819. default: true
  28820. },
  28821. {
  28822. name: "Human",
  28823. height: math.unit(5 + 7.5 / 12, "feet")
  28824. },
  28825. {
  28826. name: "Minigiant",
  28827. height: math.unit(8 + 5.25, "feet")
  28828. },
  28829. {
  28830. name: "Giant",
  28831. height: math.unit(2000, "feet")
  28832. },
  28833. {
  28834. name: "Mega",
  28835. height: math.unit(371.1, "miles")
  28836. },
  28837. ]
  28838. ))
  28839. characterMakers.push(() => makeCharacter(
  28840. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28841. {
  28842. front: {
  28843. height: math.unit(2, "meters"),
  28844. weight: math.unit(350, "kg"),
  28845. name: "Front",
  28846. image: {
  28847. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28848. extra: 898 / 838,
  28849. bottom: 9 / 907
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Micro",
  28856. height: math.unit(8, "meters")
  28857. },
  28858. {
  28859. name: "Normal",
  28860. height: math.unit(50, "meters"),
  28861. default: true
  28862. },
  28863. {
  28864. name: "Macro",
  28865. height: math.unit(500, "meters")
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(6 + 6 / 12, "feet"),
  28874. name: "Front",
  28875. image: {
  28876. source: "./media/characters/khardesh/front.svg",
  28877. extra: 888 / 797,
  28878. bottom: 25 / 913
  28879. }
  28880. },
  28881. },
  28882. [
  28883. {
  28884. name: "Normal",
  28885. height: math.unit(6 + 6 / 12, "feet"),
  28886. default: true
  28887. },
  28888. {
  28889. name: "Normal+",
  28890. height: math.unit(4, "meters")
  28891. },
  28892. {
  28893. name: "Macro",
  28894. height: math.unit(50, "meters")
  28895. },
  28896. {
  28897. name: "Macro+",
  28898. height: math.unit(100, "meters")
  28899. },
  28900. {
  28901. name: "Megamacro",
  28902. height: math.unit(20, "km")
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28908. {
  28909. front: {
  28910. height: math.unit(6, "feet"),
  28911. weight: math.unit(150, "lb"),
  28912. name: "Front",
  28913. image: {
  28914. source: "./media/characters/kosho/front.svg",
  28915. extra: 1847 / 1847,
  28916. bottom: 86 / 1933
  28917. }
  28918. },
  28919. },
  28920. [
  28921. {
  28922. name: "Second-stage micro",
  28923. height: math.unit(0.5, "inches")
  28924. },
  28925. {
  28926. name: "First-stage micro",
  28927. height: math.unit(6, "inches")
  28928. },
  28929. {
  28930. name: "Normal",
  28931. height: math.unit(6, "feet"),
  28932. default: true
  28933. },
  28934. {
  28935. name: "First-stage macro",
  28936. height: math.unit(72, "feet")
  28937. },
  28938. {
  28939. name: "Second-stage macro",
  28940. height: math.unit(864, "feet")
  28941. },
  28942. ]
  28943. ))
  28944. characterMakers.push(() => makeCharacter(
  28945. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28946. {
  28947. normal: {
  28948. height: math.unit(4 + 6 / 12, "feet"),
  28949. name: "Normal",
  28950. image: {
  28951. source: "./media/characters/hydra/normal.svg",
  28952. extra: 2833 / 2634,
  28953. bottom: 68 / 2901
  28954. }
  28955. },
  28956. smol: {
  28957. height: math.unit(0.705, "inches"),
  28958. name: "Smol",
  28959. image: {
  28960. source: "./media/characters/hydra/smol.svg",
  28961. extra: 2715 / 2540,
  28962. bottom: 0 / 2715
  28963. }
  28964. },
  28965. },
  28966. [
  28967. {
  28968. name: "Normal",
  28969. height: math.unit(4 + 6 / 12, "feet"),
  28970. default: true
  28971. }
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  28976. {
  28977. front: {
  28978. height: math.unit(0.6, "cm"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/daz/front.svg",
  28982. extra: 1682 / 1164,
  28983. bottom: 42 / 1724
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Normal",
  28990. height: math.unit(0.6, "cm"),
  28991. default: true
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  28997. {
  28998. front: {
  28999. height: math.unit(6, "feet"),
  29000. weight: math.unit(235, "lb"),
  29001. name: "Front",
  29002. image: {
  29003. source: "./media/characters/theo-pangolin/front.svg",
  29004. extra: 1996 / 1969,
  29005. bottom: 115 / 2111
  29006. }
  29007. },
  29008. back: {
  29009. height: math.unit(6, "feet"),
  29010. weight: math.unit(235, "lb"),
  29011. name: "Back",
  29012. image: {
  29013. source: "./media/characters/theo-pangolin/back.svg",
  29014. extra: 1979 / 1979,
  29015. bottom: 40 / 2019
  29016. }
  29017. },
  29018. feral: {
  29019. height: math.unit(2, "feet"),
  29020. weight: math.unit(30, "lb"),
  29021. name: "Feral",
  29022. image: {
  29023. source: "./media/characters/theo-pangolin/feral.svg",
  29024. extra: 803 / 791,
  29025. bottom: 181 / 984
  29026. }
  29027. },
  29028. footFive: {
  29029. height: math.unit(1.43, "feet"),
  29030. name: "Foot (Five Toes)",
  29031. image: {
  29032. source: "./media/characters/theo-pangolin/foot-five.svg"
  29033. }
  29034. },
  29035. footFour: {
  29036. height: math.unit(1.43, "feet"),
  29037. name: "Foot (Four Toes)",
  29038. image: {
  29039. source: "./media/characters/theo-pangolin/foot-four.svg"
  29040. }
  29041. },
  29042. handFour: {
  29043. height: math.unit(0.81, "feet"),
  29044. name: "Hand (Four Fingers)",
  29045. image: {
  29046. source: "./media/characters/theo-pangolin/hand-four.svg"
  29047. }
  29048. },
  29049. handThree: {
  29050. height: math.unit(0.81, "feet"),
  29051. name: "Hand (Three Fingers)",
  29052. image: {
  29053. source: "./media/characters/theo-pangolin/hand-three.svg"
  29054. }
  29055. },
  29056. headFront: {
  29057. height: math.unit(1.37, "feet"),
  29058. name: "Head (Front)",
  29059. image: {
  29060. source: "./media/characters/theo-pangolin/head-front.svg"
  29061. }
  29062. },
  29063. headSide: {
  29064. height: math.unit(1.43, "feet"),
  29065. name: "Head (Side)",
  29066. image: {
  29067. source: "./media/characters/theo-pangolin/head-side.svg"
  29068. }
  29069. },
  29070. tongue: {
  29071. height: math.unit(2.29, "feet"),
  29072. name: "Tongue",
  29073. image: {
  29074. source: "./media/characters/theo-pangolin/tongue.svg"
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Normal",
  29081. height: math.unit(6, "feet")
  29082. },
  29083. {
  29084. name: "Macro",
  29085. height: math.unit(400, "feet"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(6, "inches"),
  29095. weight: math.unit(0.036, "kg"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/renée/front.svg",
  29099. extra: 900 / 886,
  29100. bottom: 8 / 908
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Nano",
  29107. height: math.unit(1, "nm")
  29108. },
  29109. {
  29110. name: "Micro",
  29111. height: math.unit(1, "mm")
  29112. },
  29113. {
  29114. name: "Normal",
  29115. height: math.unit(6, "inches")
  29116. },
  29117. {
  29118. name: "Macro",
  29119. height: math.unit(2000, "feet"),
  29120. default: true
  29121. },
  29122. {
  29123. name: "Megamacro",
  29124. height: math.unit(2, "km")
  29125. },
  29126. {
  29127. name: "Gigamacro",
  29128. height: math.unit(2000, "km")
  29129. },
  29130. {
  29131. name: "Teramacro",
  29132. height: math.unit(250000, "km")
  29133. },
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29138. {
  29139. front: {
  29140. height: math.unit(4, "meters"),
  29141. weight: math.unit(150, "kg"),
  29142. name: "Front",
  29143. image: {
  29144. source: "./media/characters/caledvwlch/front.svg",
  29145. extra: 1760 / 1551,
  29146. bottom: 28 / 1788
  29147. }
  29148. },
  29149. side: {
  29150. height: math.unit(4, "meters"),
  29151. weight: math.unit(150, "kg"),
  29152. name: "Side",
  29153. image: {
  29154. source: "./media/characters/caledvwlch/side.svg",
  29155. extra: 1605 / 1536,
  29156. bottom: 31 / 1636
  29157. }
  29158. },
  29159. back: {
  29160. height: math.unit(4, "meters"),
  29161. weight: math.unit(150, "kg"),
  29162. name: "Back",
  29163. image: {
  29164. source: "./media/characters/caledvwlch/back.svg",
  29165. extra: 1635 / 1565,
  29166. bottom: 27 / 1662
  29167. }
  29168. },
  29169. },
  29170. [
  29171. {
  29172. name: "\"Incognito\"",
  29173. height: math.unit(4, "meters")
  29174. },
  29175. {
  29176. name: "Small rampage",
  29177. height: math.unit(600, "meters")
  29178. },
  29179. {
  29180. name: "Mega",
  29181. height: math.unit(30, "km")
  29182. },
  29183. {
  29184. name: "Home-size",
  29185. height: math.unit(50, "km"),
  29186. default: true
  29187. },
  29188. {
  29189. name: "Giga",
  29190. height: math.unit(300, "km")
  29191. },
  29192. {
  29193. name: "Lounging",
  29194. height: math.unit(11000, "km")
  29195. },
  29196. {
  29197. name: "Planet snacking",
  29198. height: math.unit(2000000, "km")
  29199. },
  29200. ]
  29201. ))
  29202. characterMakers.push(() => makeCharacter(
  29203. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29204. {
  29205. front: {
  29206. height: math.unit(6, "feet"),
  29207. weight: math.unit(215, "lb"),
  29208. name: "Front",
  29209. image: {
  29210. source: "./media/characters/sapphire-svell/front.svg",
  29211. extra: 495 / 455,
  29212. bottom: 20 / 515
  29213. }
  29214. },
  29215. back: {
  29216. height: math.unit(6, "feet"),
  29217. weight: math.unit(216, "lb"),
  29218. name: "Back",
  29219. image: {
  29220. source: "./media/characters/sapphire-svell/back.svg",
  29221. extra: 497 / 477,
  29222. bottom: 7 / 504
  29223. }
  29224. },
  29225. maw: {
  29226. height: math.unit(1.57, "feet"),
  29227. name: "Maw",
  29228. image: {
  29229. source: "./media/characters/sapphire-svell/maw.svg"
  29230. }
  29231. },
  29232. foot: {
  29233. height: math.unit(1.07, "feet"),
  29234. name: "Foot",
  29235. image: {
  29236. source: "./media/characters/sapphire-svell/foot.svg"
  29237. }
  29238. },
  29239. toering: {
  29240. height: math.unit(1.7, "inch"),
  29241. name: "Toering",
  29242. image: {
  29243. source: "./media/characters/sapphire-svell/toering.svg"
  29244. }
  29245. },
  29246. },
  29247. [
  29248. {
  29249. name: "Normal",
  29250. height: math.unit(300, "feet"),
  29251. default: true
  29252. },
  29253. {
  29254. name: "Augmented",
  29255. height: math.unit(1250, "feet")
  29256. },
  29257. {
  29258. name: "Unleashed",
  29259. height: math.unit(3000, "feet")
  29260. },
  29261. ]
  29262. ))
  29263. characterMakers.push(() => makeCharacter(
  29264. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29265. {
  29266. side: {
  29267. height: math.unit(2 + 3 / 12, "feet"),
  29268. weight: math.unit(110, "lb"),
  29269. name: "Side",
  29270. image: {
  29271. source: "./media/characters/glitch-flux/side.svg",
  29272. extra: 997 / 805,
  29273. bottom: 20 / 1017
  29274. }
  29275. },
  29276. },
  29277. [
  29278. {
  29279. name: "Normal",
  29280. height: math.unit(2 + 3 / 12, "feet"),
  29281. default: true
  29282. },
  29283. ]
  29284. ))
  29285. characterMakers.push(() => makeCharacter(
  29286. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29287. {
  29288. front: {
  29289. height: math.unit(4, "meters"),
  29290. name: "Front",
  29291. image: {
  29292. source: "./media/characters/mid/front.svg",
  29293. extra: 507 / 476,
  29294. bottom: 17 / 524
  29295. }
  29296. },
  29297. back: {
  29298. height: math.unit(4, "meters"),
  29299. name: "Back",
  29300. image: {
  29301. source: "./media/characters/mid/back.svg",
  29302. extra: 519 / 487,
  29303. bottom: 7 / 526
  29304. }
  29305. },
  29306. stuck: {
  29307. height: math.unit(2.2, "meters"),
  29308. name: "Stuck",
  29309. image: {
  29310. source: "./media/characters/mid/stuck.svg",
  29311. extra: 1951 / 1869,
  29312. bottom: 88 / 2039
  29313. }
  29314. }
  29315. },
  29316. [
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(4, "meters"),
  29320. default: true
  29321. },
  29322. {
  29323. name: "Big",
  29324. height: math.unit(10, "meters")
  29325. },
  29326. {
  29327. name: "Macro",
  29328. height: math.unit(800, "meters")
  29329. },
  29330. {
  29331. name: "Megamacro",
  29332. height: math.unit(100, "km")
  29333. },
  29334. {
  29335. name: "Overgrown",
  29336. height: math.unit(1, "parsec")
  29337. },
  29338. ]
  29339. ))
  29340. //characters
  29341. function makeCharacters() {
  29342. const results = [];
  29343. characterMakers.forEach(character => {
  29344. results.push(character());
  29345. });
  29346. return results;
  29347. }