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

26223 строки
652 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"]
  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. }
  1280. //species
  1281. function getSpeciesInfo(speciesList) {
  1282. let result = new Set();
  1283. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1284. result.add(entry)
  1285. });
  1286. return Array.from(result);
  1287. };
  1288. function getSpeciesInfoHelper(species) {
  1289. if (!speciesData[species]) {
  1290. console.warn(species + " doesn't exist");
  1291. return [];
  1292. }
  1293. if (speciesData[species].parents) {
  1294. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1295. } else {
  1296. return [species];
  1297. }
  1298. }
  1299. characterMakers.push(() => makeCharacter(
  1300. {
  1301. name: "Fen",
  1302. species: ["crux"],
  1303. description: {
  1304. title: "Bio",
  1305. text: "Very furry. Sheds on everything."
  1306. },
  1307. tags: [
  1308. "anthro",
  1309. "goo"
  1310. ]
  1311. },
  1312. {
  1313. back: {
  1314. height: math.unit(2.2428, "meter"),
  1315. weight: math.unit(124.738, "kg"),
  1316. name: "Back",
  1317. image: {
  1318. source: "./media/characters/fen/back.svg",
  1319. extra: 1025 / 935,
  1320. bottom: 0.01
  1321. },
  1322. info: {
  1323. description: {
  1324. mode: "append",
  1325. text: "\n\nHe is not currently looking at you."
  1326. }
  1327. }
  1328. },
  1329. full: {
  1330. height: math.unit(1.34, "meter"),
  1331. weight: math.unit(225, "kg"),
  1332. name: "Full",
  1333. image: {
  1334. source: "./media/characters/fen/full.svg"
  1335. },
  1336. info: {
  1337. description: {
  1338. mode: "append",
  1339. text: "\n\nMunch."
  1340. }
  1341. }
  1342. },
  1343. kneeling: {
  1344. height: math.unit(5.4, "feet"),
  1345. weight: math.unit(124.738, "kg"),
  1346. name: "Kneeling",
  1347. image: {
  1348. source: "./media/characters/fen/kneeling.svg",
  1349. extra: 563 / 507
  1350. }
  1351. },
  1352. goo: {
  1353. height: math.unit(2.8, "feet"),
  1354. weight: math.unit(125, "kg"),
  1355. capacity: math.unit(1, "people"),
  1356. name: "Goo",
  1357. image: {
  1358. source: "./media/characters/fen/goo.svg",
  1359. bottom: 116 / 613
  1360. }
  1361. },
  1362. lounging: {
  1363. height: math.unit(6.5, "feet"),
  1364. weight: math.unit(125, "kg"),
  1365. name: "Lounging",
  1366. image: {
  1367. source: "./media/characters/fen/lounging.svg"
  1368. }
  1369. },
  1370. },
  1371. [
  1372. {
  1373. name: "Normal",
  1374. height: math.unit(2.2428, "meter")
  1375. },
  1376. {
  1377. name: "Big",
  1378. height: math.unit(12, "feet")
  1379. },
  1380. {
  1381. name: "Minimacro",
  1382. height: math.unit(40, "feet"),
  1383. default: true,
  1384. info: {
  1385. description: {
  1386. mode: "append",
  1387. text: "\n\nTOO DAMN BIG"
  1388. }
  1389. }
  1390. },
  1391. {
  1392. name: "Macro",
  1393. height: math.unit(100, "feet"),
  1394. info: {
  1395. description: {
  1396. mode: "append",
  1397. text: "\n\nTOO DAMN BIG"
  1398. }
  1399. }
  1400. },
  1401. {
  1402. name: "Macro+",
  1403. height: math.unit(300, "feet")
  1404. },
  1405. {
  1406. name: "Megamacro",
  1407. height: math.unit(2, "miles")
  1408. }
  1409. ]
  1410. ))
  1411. characterMakers.push(() => makeCharacter(
  1412. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1413. {
  1414. front: {
  1415. height: math.unit(183, "cm"),
  1416. weight: math.unit(80, "kg"),
  1417. name: "Front",
  1418. image: {
  1419. source: "./media/characters/sofia-fluttertail/front.svg",
  1420. bottom: 0.01,
  1421. extra: 2154 / 2081
  1422. }
  1423. },
  1424. frontAlt: {
  1425. height: math.unit(183, "cm"),
  1426. weight: math.unit(80, "kg"),
  1427. name: "Front (alt)",
  1428. image: {
  1429. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1430. }
  1431. },
  1432. back: {
  1433. height: math.unit(183, "cm"),
  1434. weight: math.unit(80, "kg"),
  1435. name: "Back",
  1436. image: {
  1437. source: "./media/characters/sofia-fluttertail/back.svg"
  1438. }
  1439. },
  1440. kneeling: {
  1441. height: math.unit(125, "cm"),
  1442. weight: math.unit(80, "kg"),
  1443. name: "Kneeling",
  1444. image: {
  1445. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1446. extra: 1033 / 977,
  1447. bottom: 23.7 / 1057
  1448. }
  1449. },
  1450. maw: {
  1451. height: math.unit(183 / 5, "cm"),
  1452. name: "Maw",
  1453. image: {
  1454. source: "./media/characters/sofia-fluttertail/maw.svg"
  1455. }
  1456. },
  1457. mawcloseup: {
  1458. height: math.unit(183 / 5 * 0.41, "cm"),
  1459. name: "Maw (Closeup)",
  1460. image: {
  1461. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1462. }
  1463. },
  1464. },
  1465. [
  1466. {
  1467. name: "Normal",
  1468. height: math.unit(1.83, "meter")
  1469. },
  1470. {
  1471. name: "Size Thief",
  1472. height: math.unit(18, "feet")
  1473. },
  1474. {
  1475. name: "50 Foot Collie",
  1476. height: math.unit(50, "feet")
  1477. },
  1478. {
  1479. name: "Macro",
  1480. height: math.unit(96, "feet"),
  1481. default: true
  1482. },
  1483. {
  1484. name: "Megamerger",
  1485. height: math.unit(650, "feet")
  1486. },
  1487. ]
  1488. ))
  1489. characterMakers.push(() => makeCharacter(
  1490. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1491. {
  1492. front: {
  1493. height: math.unit(7, "feet"),
  1494. weight: math.unit(100, "kg"),
  1495. name: "Front",
  1496. image: {
  1497. source: "./media/characters/march/front.svg",
  1498. extra: 1,
  1499. bottom: 0.015
  1500. }
  1501. },
  1502. foot: {
  1503. height: math.unit(0.9, "feet"),
  1504. name: "Foot",
  1505. image: {
  1506. source: "./media/characters/march/foot.svg"
  1507. }
  1508. },
  1509. },
  1510. [
  1511. {
  1512. name: "Normal",
  1513. height: math.unit(7.9, "feet")
  1514. },
  1515. {
  1516. name: "Macro",
  1517. height: math.unit(220, "meters")
  1518. },
  1519. {
  1520. name: "Megamacro",
  1521. height: math.unit(2.98, "km"),
  1522. default: true
  1523. },
  1524. {
  1525. name: "Gigamacro",
  1526. height: math.unit(15963, "km")
  1527. },
  1528. {
  1529. name: "Teramacro",
  1530. height: math.unit(2980000000, "km")
  1531. },
  1532. {
  1533. name: "Examacro",
  1534. height: math.unit(250, "parsecs")
  1535. },
  1536. ]
  1537. ))
  1538. characterMakers.push(() => makeCharacter(
  1539. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1540. {
  1541. front: {
  1542. height: math.unit(6, "feet"),
  1543. weight: math.unit(60, "kg"),
  1544. name: "Front",
  1545. image: {
  1546. source: "./media/characters/noir/front.svg",
  1547. extra: 1,
  1548. bottom: 0.032
  1549. }
  1550. },
  1551. },
  1552. [
  1553. {
  1554. name: "Normal",
  1555. height: math.unit(6.6, "feet")
  1556. },
  1557. {
  1558. name: "Macro",
  1559. height: math.unit(500, "feet")
  1560. },
  1561. {
  1562. name: "Megamacro",
  1563. height: math.unit(2.5, "km"),
  1564. default: true
  1565. },
  1566. {
  1567. name: "Gigamacro",
  1568. height: math.unit(22500, "km")
  1569. },
  1570. {
  1571. name: "Teramacro",
  1572. height: math.unit(2500000000, "km")
  1573. },
  1574. {
  1575. name: "Examacro",
  1576. height: math.unit(200, "parsecs")
  1577. },
  1578. ]
  1579. ))
  1580. characterMakers.push(() => makeCharacter(
  1581. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1582. {
  1583. front: {
  1584. height: math.unit(7, "feet"),
  1585. weight: math.unit(100, "kg"),
  1586. name: "Front",
  1587. image: {
  1588. source: "./media/characters/okuri/front.svg",
  1589. extra: 1,
  1590. bottom: 0.037
  1591. }
  1592. },
  1593. back: {
  1594. height: math.unit(7, "feet"),
  1595. weight: math.unit(100, "kg"),
  1596. name: "Back",
  1597. image: {
  1598. source: "./media/characters/okuri/back.svg",
  1599. extra: 1,
  1600. bottom: 0.007
  1601. }
  1602. },
  1603. },
  1604. [
  1605. {
  1606. name: "Megamacro",
  1607. height: math.unit(100, "miles"),
  1608. default: true
  1609. },
  1610. ]
  1611. ))
  1612. characterMakers.push(() => makeCharacter(
  1613. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1614. {
  1615. front: {
  1616. height: math.unit(7, "feet"),
  1617. weight: math.unit(100, "kg"),
  1618. name: "Front",
  1619. image: {
  1620. source: "./media/characters/manny/front.svg",
  1621. extra: 1,
  1622. bottom: 0.06
  1623. }
  1624. },
  1625. back: {
  1626. height: math.unit(7, "feet"),
  1627. weight: math.unit(100, "kg"),
  1628. name: "Back",
  1629. image: {
  1630. source: "./media/characters/manny/back.svg",
  1631. extra: 1,
  1632. bottom: 0.014
  1633. }
  1634. },
  1635. },
  1636. [
  1637. {
  1638. name: "Normal",
  1639. height: math.unit(7, "feet"),
  1640. },
  1641. {
  1642. name: "Macro",
  1643. height: math.unit(78, "feet"),
  1644. default: true
  1645. },
  1646. {
  1647. name: "Macro+",
  1648. height: math.unit(300, "meters")
  1649. },
  1650. {
  1651. name: "Macro++",
  1652. height: math.unit(2400, "meters")
  1653. },
  1654. {
  1655. name: "Megamacro",
  1656. height: math.unit(5167, "meters")
  1657. },
  1658. {
  1659. name: "Gigamacro",
  1660. height: math.unit(41769, "miles")
  1661. },
  1662. ]
  1663. ))
  1664. characterMakers.push(() => makeCharacter(
  1665. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1666. {
  1667. front: {
  1668. height: math.unit(7, "feet"),
  1669. weight: math.unit(100, "kg"),
  1670. name: "Front",
  1671. image: {
  1672. source: "./media/characters/adake/front-1.svg"
  1673. }
  1674. },
  1675. frontAlt: {
  1676. height: math.unit(7, "feet"),
  1677. weight: math.unit(100, "kg"),
  1678. name: "Front (Alt)",
  1679. image: {
  1680. source: "./media/characters/adake/front-2.svg",
  1681. extra: 1,
  1682. bottom: 0.01
  1683. }
  1684. },
  1685. back: {
  1686. height: math.unit(7, "feet"),
  1687. weight: math.unit(100, "kg"),
  1688. name: "Back",
  1689. image: {
  1690. source: "./media/characters/adake/back.svg",
  1691. }
  1692. },
  1693. kneel: {
  1694. height: math.unit(5.385, "feet"),
  1695. weight: math.unit(100, "kg"),
  1696. name: "Kneeling",
  1697. image: {
  1698. source: "./media/characters/adake/kneel.svg",
  1699. bottom: 0.052
  1700. }
  1701. },
  1702. },
  1703. [
  1704. {
  1705. name: "Normal",
  1706. height: math.unit(7, "feet"),
  1707. },
  1708. {
  1709. name: "Macro",
  1710. height: math.unit(78, "feet"),
  1711. default: true
  1712. },
  1713. {
  1714. name: "Macro+",
  1715. height: math.unit(300, "meters")
  1716. },
  1717. {
  1718. name: "Macro++",
  1719. height: math.unit(2400, "meters")
  1720. },
  1721. {
  1722. name: "Megamacro",
  1723. height: math.unit(5167, "meters")
  1724. },
  1725. {
  1726. name: "Gigamacro",
  1727. height: math.unit(41769, "miles")
  1728. },
  1729. ]
  1730. ))
  1731. characterMakers.push(() => makeCharacter(
  1732. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1733. {
  1734. front: {
  1735. height: math.unit(1.65, "meters"),
  1736. weight: math.unit(50, "kg"),
  1737. name: "Front",
  1738. image: {
  1739. source: "./media/characters/elijah/front.svg",
  1740. extra: 858 / 830,
  1741. bottom: 95.5 / 953.8559
  1742. }
  1743. },
  1744. back: {
  1745. height: math.unit(1.65, "meters"),
  1746. weight: math.unit(50, "kg"),
  1747. name: "Back",
  1748. image: {
  1749. source: "./media/characters/elijah/back.svg",
  1750. extra: 895 / 850,
  1751. bottom: 5.3 / 897.956
  1752. }
  1753. },
  1754. frontNsfw: {
  1755. height: math.unit(1.65, "meters"),
  1756. weight: math.unit(50, "kg"),
  1757. name: "Front (NSFW)",
  1758. image: {
  1759. source: "./media/characters/elijah/front-nsfw.svg",
  1760. extra: 858 / 830,
  1761. bottom: 95.5 / 953.8559
  1762. }
  1763. },
  1764. backNsfw: {
  1765. height: math.unit(1.65, "meters"),
  1766. weight: math.unit(50, "kg"),
  1767. name: "Back (NSFW)",
  1768. image: {
  1769. source: "./media/characters/elijah/back-nsfw.svg",
  1770. extra: 895 / 850,
  1771. bottom: 5.3 / 897.956
  1772. }
  1773. },
  1774. dick: {
  1775. height: math.unit(1, "feet"),
  1776. name: "Dick",
  1777. image: {
  1778. source: "./media/characters/elijah/dick.svg"
  1779. }
  1780. },
  1781. beakOpen: {
  1782. height: math.unit(1.25, "feet"),
  1783. name: "Beak (Open)",
  1784. image: {
  1785. source: "./media/characters/elijah/beak-open.svg"
  1786. }
  1787. },
  1788. beakShut: {
  1789. height: math.unit(1.25, "feet"),
  1790. name: "Beak (Shut)",
  1791. image: {
  1792. source: "./media/characters/elijah/beak-shut.svg"
  1793. }
  1794. },
  1795. footFlexing: {
  1796. height: math.unit(1.61, "feet"),
  1797. name: "Foot (Flexing)",
  1798. image: {
  1799. source: "./media/characters/elijah/foot-flexing.svg"
  1800. }
  1801. },
  1802. footStepping: {
  1803. height: math.unit(1.44, "feet"),
  1804. name: "Foot (Stepping)",
  1805. image: {
  1806. source: "./media/characters/elijah/foot-stepping.svg"
  1807. }
  1808. },
  1809. plantigradeLeg: {
  1810. height: math.unit(2.34, "feet"),
  1811. name: "Plantigrade Leg",
  1812. image: {
  1813. source: "./media/characters/elijah/plantigrade-leg.svg"
  1814. }
  1815. },
  1816. plantigradeFootLeft: {
  1817. height: math.unit(0.9, "feet"),
  1818. name: "Plantigrade Foot (Left)",
  1819. image: {
  1820. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1821. }
  1822. },
  1823. plantigradeFootRight: {
  1824. height: math.unit(0.9, "feet"),
  1825. name: "Plantigrade Foot (Right)",
  1826. image: {
  1827. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1828. }
  1829. },
  1830. },
  1831. [
  1832. {
  1833. name: "Normal",
  1834. height: math.unit(1.65, "meters")
  1835. },
  1836. {
  1837. name: "Macro",
  1838. height: math.unit(55, "meters"),
  1839. default: true
  1840. },
  1841. {
  1842. name: "Macro+",
  1843. height: math.unit(105, "meters")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(11, "feet"),
  1852. weight: math.unit(80, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/rai/front.svg",
  1856. extra: 1,
  1857. bottom: 0.03
  1858. }
  1859. },
  1860. side: {
  1861. height: math.unit(11, "feet"),
  1862. weight: math.unit(80, "kg"),
  1863. name: "Side",
  1864. image: {
  1865. source: "./media/characters/rai/side.svg"
  1866. }
  1867. },
  1868. back: {
  1869. height: math.unit(11, "feet"),
  1870. weight: math.unit(80, "lb"),
  1871. name: "Back",
  1872. image: {
  1873. source: "./media/characters/rai/back.svg",
  1874. extra: 1,
  1875. bottom: 0.01
  1876. }
  1877. },
  1878. feral: {
  1879. height: math.unit(11, "feet"),
  1880. weight: math.unit(800, "lb"),
  1881. name: "Feral",
  1882. image: {
  1883. source: "./media/characters/rai/feral.svg",
  1884. extra: 1050 / 659,
  1885. bottom: 0.07
  1886. }
  1887. },
  1888. dragon: {
  1889. height: math.unit(23, "feet"),
  1890. weight: math.unit(50000, "lb"),
  1891. name: "Dragon",
  1892. image: {
  1893. source: "./media/characters/rai/dragon.svg",
  1894. extra: 2498 / 2030,
  1895. bottom: 85.2 / 2584
  1896. }
  1897. },
  1898. maw: {
  1899. height: math.unit(6 / 3.81416, "feet"),
  1900. name: "Maw",
  1901. image: {
  1902. source: "./media/characters/rai/maw.svg"
  1903. }
  1904. },
  1905. },
  1906. [
  1907. {
  1908. name: "Normal",
  1909. height: math.unit(11, "feet")
  1910. },
  1911. {
  1912. name: "Macro",
  1913. height: math.unit(302, "feet"),
  1914. default: true
  1915. },
  1916. ]
  1917. ))
  1918. characterMakers.push(() => makeCharacter(
  1919. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1920. {
  1921. frontDressed: {
  1922. height: math.unit(216, "feet"),
  1923. weight: math.unit(7000000, "lb"),
  1924. name: "Front (Dressed)",
  1925. image: {
  1926. source: "./media/characters/jazzy/front-dressed.svg",
  1927. extra: 2738 / 2651,
  1928. bottom: 41.8 / 2786
  1929. }
  1930. },
  1931. backDressed: {
  1932. height: math.unit(216, "feet"),
  1933. weight: math.unit(7000000, "lb"),
  1934. name: "Back (Dressed)",
  1935. image: {
  1936. source: "./media/characters/jazzy/back-dressed.svg",
  1937. extra: 2775 / 2673,
  1938. bottom: 36.8 / 2817
  1939. }
  1940. },
  1941. front: {
  1942. height: math.unit(216, "feet"),
  1943. weight: math.unit(7000000, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/jazzy/front.svg",
  1947. extra: 2738 / 2651,
  1948. bottom: 41.8 / 2786
  1949. }
  1950. },
  1951. back: {
  1952. height: math.unit(216, "feet"),
  1953. weight: math.unit(7000000, "lb"),
  1954. name: "Back",
  1955. image: {
  1956. source: "./media/characters/jazzy/back.svg",
  1957. extra: 2775 / 2673,
  1958. bottom: 36.8 / 2817
  1959. }
  1960. },
  1961. maw: {
  1962. height: math.unit(20, "feet"),
  1963. name: "Maw",
  1964. image: {
  1965. source: "./media/characters/jazzy/maw.svg"
  1966. }
  1967. },
  1968. paws: {
  1969. height: math.unit(27.5, "feet"),
  1970. name: "Paws",
  1971. image: {
  1972. source: "./media/characters/jazzy/paws.svg"
  1973. }
  1974. },
  1975. eye: {
  1976. height: math.unit(4.4, "feet"),
  1977. name: "Eye",
  1978. image: {
  1979. source: "./media/characters/jazzy/eye.svg"
  1980. }
  1981. },
  1982. droneOffense: {
  1983. height: math.unit(9.5, "inches"),
  1984. name: "Drone (Offense)",
  1985. image: {
  1986. source: "./media/characters/jazzy/drone-offense.svg"
  1987. }
  1988. },
  1989. droneRecon: {
  1990. height: math.unit(9.5, "inches"),
  1991. name: "Drone (Recon)",
  1992. image: {
  1993. source: "./media/characters/jazzy/drone-recon.svg"
  1994. }
  1995. },
  1996. droneDefense: {
  1997. height: math.unit(9.5, "inches"),
  1998. name: "Drone (Defense)",
  1999. image: {
  2000. source: "./media/characters/jazzy/drone-defense.svg"
  2001. }
  2002. },
  2003. },
  2004. [
  2005. {
  2006. name: "Macro",
  2007. height: math.unit(216, "feet"),
  2008. default: true
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(7, "feet"),
  2017. weight: math.unit(80, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/flamm/front.svg",
  2021. extra: 1794 / 1677,
  2022. bottom: 31.7 / 1828.5
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Normal",
  2029. height: math.unit(9.5, "feet")
  2030. },
  2031. {
  2032. name: "Macro",
  2033. height: math.unit(200, "feet"),
  2034. default: true
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(80, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/zephiro/front.svg",
  2047. extra: 2309 / 2162,
  2048. bottom: 0.069
  2049. }
  2050. },
  2051. side: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(80, "kg"),
  2054. name: "Side",
  2055. image: {
  2056. source: "./media/characters/zephiro/side.svg",
  2057. extra: 2403 / 2279,
  2058. bottom: 0.015
  2059. }
  2060. },
  2061. back: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(80, "kg"),
  2064. name: "Back",
  2065. image: {
  2066. source: "./media/characters/zephiro/back.svg",
  2067. extra: 2373 / 2244,
  2068. bottom: 0.013
  2069. }
  2070. },
  2071. },
  2072. [
  2073. {
  2074. name: "Micro",
  2075. height: math.unit(3, "inches")
  2076. },
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(5 + 3 / 12, "feet"),
  2080. default: true
  2081. },
  2082. {
  2083. name: "Macro",
  2084. height: math.unit(118, "feet")
  2085. },
  2086. ]
  2087. ))
  2088. characterMakers.push(() => makeCharacter(
  2089. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2090. {
  2091. front: {
  2092. height: math.unit(5, "feet"),
  2093. weight: math.unit(90, "kg"),
  2094. name: "Front",
  2095. image: {
  2096. source: "./media/characters/fory/front.svg",
  2097. extra: 2862 / 2674,
  2098. bottom: 180 / 3043.8
  2099. }
  2100. },
  2101. back: {
  2102. height: math.unit(5, "feet"),
  2103. weight: math.unit(90, "kg"),
  2104. name: "Back",
  2105. image: {
  2106. source: "./media/characters/fory/back.svg",
  2107. extra: 2962 / 2791,
  2108. bottom: 106 / 3071.8
  2109. }
  2110. },
  2111. foot: {
  2112. height: math.unit(2.14, "feet"),
  2113. name: "Foot",
  2114. image: {
  2115. source: "./media/characters/fory/foot.svg"
  2116. }
  2117. },
  2118. },
  2119. [
  2120. {
  2121. name: "Normal",
  2122. height: math.unit(5, "feet")
  2123. },
  2124. {
  2125. name: "Macro",
  2126. height: math.unit(50, "feet"),
  2127. default: true
  2128. },
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(10, "miles")
  2132. },
  2133. {
  2134. name: "Gigamacro",
  2135. height: math.unit(5, "earths")
  2136. },
  2137. ]
  2138. ))
  2139. characterMakers.push(() => makeCharacter(
  2140. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2141. {
  2142. front: {
  2143. height: math.unit(7, "feet"),
  2144. weight: math.unit(90, "kg"),
  2145. name: "Front",
  2146. image: {
  2147. source: "./media/characters/kurrikage/front.svg",
  2148. extra: 1,
  2149. bottom: 0.035
  2150. }
  2151. },
  2152. back: {
  2153. height: math.unit(7, "feet"),
  2154. weight: math.unit(90, "lb"),
  2155. name: "Back",
  2156. image: {
  2157. source: "./media/characters/kurrikage/back.svg"
  2158. }
  2159. },
  2160. paw: {
  2161. height: math.unit(1.5, "feet"),
  2162. name: "Paw",
  2163. image: {
  2164. source: "./media/characters/kurrikage/paw.svg"
  2165. }
  2166. },
  2167. staff: {
  2168. height: math.unit(6.7, "feet"),
  2169. name: "Staff",
  2170. image: {
  2171. source: "./media/characters/kurrikage/staff.svg"
  2172. }
  2173. },
  2174. peek: {
  2175. height: math.unit(1.05, "feet"),
  2176. name: "Peeking",
  2177. image: {
  2178. source: "./media/characters/kurrikage/peek.svg",
  2179. bottom: 0.08
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(12, "feet"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Big",
  2191. height: math.unit(20, "feet")
  2192. },
  2193. {
  2194. name: "Macro",
  2195. height: math.unit(500, "feet")
  2196. },
  2197. {
  2198. name: "Megamacro",
  2199. height: math.unit(20, "miles")
  2200. },
  2201. ]
  2202. ))
  2203. characterMakers.push(() => makeCharacter(
  2204. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2205. {
  2206. front: {
  2207. height: math.unit(6, "feet"),
  2208. weight: math.unit(75, "kg"),
  2209. name: "Front",
  2210. image: {
  2211. source: "./media/characters/shingo/front.svg",
  2212. extra: 3511 / 3338,
  2213. bottom: 0.005
  2214. }
  2215. },
  2216. },
  2217. [
  2218. {
  2219. name: "Micro",
  2220. height: math.unit(4, "inches")
  2221. },
  2222. {
  2223. name: "Normal",
  2224. height: math.unit(6, "feet"),
  2225. default: true
  2226. },
  2227. {
  2228. name: "Macro",
  2229. height: math.unit(108, "feet")
  2230. }
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2235. {
  2236. side: {
  2237. height: math.unit(6, "feet"),
  2238. weight: math.unit(75, "kg"),
  2239. name: "Side",
  2240. image: {
  2241. source: "./media/characters/aigey/side.svg"
  2242. }
  2243. },
  2244. },
  2245. [
  2246. {
  2247. name: "Macro",
  2248. height: math.unit(200, "feet"),
  2249. default: true
  2250. },
  2251. {
  2252. name: "Megamacro",
  2253. height: math.unit(100, "miles")
  2254. },
  2255. ]
  2256. )
  2257. )
  2258. characterMakers.push(() => makeCharacter(
  2259. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2260. {
  2261. front: {
  2262. height: math.unit(5 + 5 / 12, "feet"),
  2263. weight: math.unit(75, "kg"),
  2264. name: "Front",
  2265. image: {
  2266. source: "./media/characters/natasha/front.svg",
  2267. extra: 859 / 824,
  2268. bottom: 23 / 879.6
  2269. }
  2270. },
  2271. frontNsfw: {
  2272. height: math.unit(5 + 5 / 12, "feet"),
  2273. weight: math.unit(75, "kg"),
  2274. name: "Front (NSFW)",
  2275. image: {
  2276. source: "./media/characters/natasha/front-nsfw.svg",
  2277. extra: 859 / 824,
  2278. bottom: 23 / 879.6
  2279. }
  2280. },
  2281. frontErect: {
  2282. height: math.unit(5 + 5 / 12, "feet"),
  2283. weight: math.unit(75, "kg"),
  2284. name: "Front (Erect)",
  2285. image: {
  2286. source: "./media/characters/natasha/front-erect.svg",
  2287. extra: 859 / 824,
  2288. bottom: 23 / 879.6
  2289. }
  2290. },
  2291. back: {
  2292. height: math.unit(5 + 5 / 12, "feet"),
  2293. weight: math.unit(75, "kg"),
  2294. name: "Back",
  2295. image: {
  2296. source: "./media/characters/natasha/back.svg",
  2297. extra: 887.9 / 852.6,
  2298. bottom: 9.7 / 896.4
  2299. }
  2300. },
  2301. backAlt: {
  2302. height: math.unit(5 + 5 / 12, "feet"),
  2303. weight: math.unit(75, "kg"),
  2304. name: "Back (Alt)",
  2305. image: {
  2306. source: "./media/characters/natasha/back-alt.svg",
  2307. extra: 1236.7 / 1192,
  2308. bottom: 22.3 / 1258.2
  2309. }
  2310. },
  2311. dick: {
  2312. height: math.unit(1.772, "feet"),
  2313. name: "Dick",
  2314. image: {
  2315. source: "./media/characters/natasha/dick.svg"
  2316. }
  2317. },
  2318. },
  2319. [
  2320. {
  2321. name: "Normal",
  2322. height: math.unit(5 + 5 / 12, "feet")
  2323. },
  2324. {
  2325. name: "Large",
  2326. height: math.unit(12, "feet")
  2327. },
  2328. {
  2329. name: "Macro",
  2330. height: math.unit(100, "feet"),
  2331. default: true
  2332. },
  2333. {
  2334. name: "Macro+",
  2335. height: math.unit(260, "feet")
  2336. },
  2337. {
  2338. name: "Macro++",
  2339. height: math.unit(1, "mile")
  2340. },
  2341. ]
  2342. ))
  2343. characterMakers.push(() => makeCharacter(
  2344. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2345. {
  2346. front: {
  2347. height: math.unit(6, "feet"),
  2348. weight: math.unit(75, "kg"),
  2349. name: "Front",
  2350. image: {
  2351. source: "./media/characters/malik/front.svg"
  2352. }
  2353. },
  2354. side: {
  2355. height: math.unit(6, "feet"),
  2356. weight: math.unit(75, "kg"),
  2357. name: "Side",
  2358. image: {
  2359. source: "./media/characters/malik/side.svg",
  2360. extra: 1.1539
  2361. }
  2362. },
  2363. back: {
  2364. height: math.unit(6, "feet"),
  2365. weight: math.unit(75, "kg"),
  2366. name: "Back",
  2367. image: {
  2368. source: "./media/characters/malik/back.svg"
  2369. }
  2370. },
  2371. },
  2372. [
  2373. {
  2374. name: "Macro",
  2375. height: math.unit(156, "feet"),
  2376. default: true
  2377. },
  2378. {
  2379. name: "Macro+",
  2380. height: math.unit(1188, "feet")
  2381. },
  2382. ]
  2383. ))
  2384. characterMakers.push(() => makeCharacter(
  2385. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2386. {
  2387. front: {
  2388. height: math.unit(6, "feet"),
  2389. weight: math.unit(75, "kg"),
  2390. name: "Front",
  2391. image: {
  2392. source: "./media/characters/sefer/front.svg",
  2393. extra: 848 / 659,
  2394. bottom: 28.3 / 876.442
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(6, "feet"),
  2399. weight: math.unit(75, "kg"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/sefer/back.svg",
  2403. extra: 864 / 695,
  2404. bottom: 10 / 871
  2405. }
  2406. },
  2407. frontDressed: {
  2408. height: math.unit(6, "feet"),
  2409. weight: math.unit(75, "kg"),
  2410. name: "Front (Dressed)",
  2411. image: {
  2412. source: "./media/characters/sefer/front-dressed.svg",
  2413. extra: 839 / 653,
  2414. bottom: 37.6 / 878
  2415. }
  2416. },
  2417. },
  2418. [
  2419. {
  2420. name: "Normal",
  2421. height: math.unit(6, "feet"),
  2422. default: true
  2423. },
  2424. ]
  2425. ))
  2426. characterMakers.push(() => makeCharacter(
  2427. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2428. {
  2429. body: {
  2430. height: math.unit(2.2428, "meter"),
  2431. weight: math.unit(124.738, "kg"),
  2432. name: "Body",
  2433. image: {
  2434. extra: 1225 / 1050,
  2435. source: "./media/characters/north/front.svg"
  2436. }
  2437. }
  2438. },
  2439. [
  2440. {
  2441. name: "Micro",
  2442. height: math.unit(4, "inches")
  2443. },
  2444. {
  2445. name: "Macro",
  2446. height: math.unit(63, "meters")
  2447. },
  2448. {
  2449. name: "Megamacro",
  2450. height: math.unit(101, "miles"),
  2451. default: true
  2452. }
  2453. ]
  2454. ))
  2455. characterMakers.push(() => makeCharacter(
  2456. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2457. {
  2458. angled: {
  2459. height: math.unit(4, "meter"),
  2460. weight: math.unit(150, "kg"),
  2461. name: "Angled",
  2462. image: {
  2463. source: "./media/characters/talan/angled-sfw.svg",
  2464. bottom: 29 / 3734
  2465. }
  2466. },
  2467. angledNsfw: {
  2468. height: math.unit(4, "meter"),
  2469. weight: math.unit(150, "kg"),
  2470. name: "Angled (NSFW)",
  2471. image: {
  2472. source: "./media/characters/talan/angled-nsfw.svg",
  2473. bottom: 29 / 3734
  2474. }
  2475. },
  2476. frontNsfw: {
  2477. height: math.unit(4, "meter"),
  2478. weight: math.unit(150, "kg"),
  2479. name: "Front (NSFW)",
  2480. image: {
  2481. source: "./media/characters/talan/front-nsfw.svg",
  2482. bottom: 29 / 3734
  2483. }
  2484. },
  2485. sideNsfw: {
  2486. height: math.unit(4, "meter"),
  2487. weight: math.unit(150, "kg"),
  2488. name: "Side (NSFW)",
  2489. image: {
  2490. source: "./media/characters/talan/side-nsfw.svg",
  2491. bottom: 29 / 3734
  2492. }
  2493. },
  2494. back: {
  2495. height: math.unit(4, "meter"),
  2496. weight: math.unit(150, "kg"),
  2497. name: "Back",
  2498. image: {
  2499. source: "./media/characters/talan/back.svg"
  2500. }
  2501. },
  2502. dickBottom: {
  2503. height: math.unit(0.621, "meter"),
  2504. name: "Dick (Bottom)",
  2505. image: {
  2506. source: "./media/characters/talan/dick-bottom.svg"
  2507. }
  2508. },
  2509. dickTop: {
  2510. height: math.unit(0.621, "meter"),
  2511. name: "Dick (Top)",
  2512. image: {
  2513. source: "./media/characters/talan/dick-top.svg"
  2514. }
  2515. },
  2516. dickSide: {
  2517. height: math.unit(0.305, "meter"),
  2518. name: "Dick (Side)",
  2519. image: {
  2520. source: "./media/characters/talan/dick-side.svg"
  2521. }
  2522. },
  2523. dickFront: {
  2524. height: math.unit(0.305, "meter"),
  2525. name: "Dick (Front)",
  2526. image: {
  2527. source: "./media/characters/talan/dick-front.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(4, "meters")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(100, "meters")
  2539. },
  2540. {
  2541. name: "Megamacro",
  2542. height: math.unit(2, "miles"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(5000, "miles")
  2548. },
  2549. {
  2550. name: "Teramacro",
  2551. height: math.unit(100, "parsecs")
  2552. }
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2557. {
  2558. front: {
  2559. height: math.unit(2, "meter"),
  2560. weight: math.unit(90, "kg"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/gael'rathus/front.svg"
  2564. }
  2565. },
  2566. frontAlt: {
  2567. height: math.unit(2, "meter"),
  2568. weight: math.unit(90, "kg"),
  2569. name: "Front (alt)",
  2570. image: {
  2571. source: "./media/characters/gael'rathus/front-alt.svg"
  2572. }
  2573. },
  2574. frontAlt2: {
  2575. height: math.unit(2, "meter"),
  2576. weight: math.unit(90, "kg"),
  2577. name: "Front (alt 2)",
  2578. image: {
  2579. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2580. }
  2581. }
  2582. },
  2583. [
  2584. {
  2585. name: "Normal",
  2586. height: math.unit(9, "feet"),
  2587. default: true
  2588. },
  2589. {
  2590. name: "Large",
  2591. height: math.unit(25, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(0.25, "miles")
  2596. },
  2597. {
  2598. name: "Megamacro",
  2599. height: math.unit(10, "miles")
  2600. }
  2601. ]
  2602. ))
  2603. characterMakers.push(() => makeCharacter(
  2604. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2605. {
  2606. side: {
  2607. height: math.unit(2, "meter"),
  2608. weight: math.unit(140, "kg"),
  2609. name: "Side",
  2610. image: {
  2611. source: "./media/characters/sosha/side.svg",
  2612. bottom: 0.042
  2613. }
  2614. },
  2615. },
  2616. [
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(12, "feet"),
  2620. default: true
  2621. }
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2626. {
  2627. side: {
  2628. height: math.unit(5 + 5 / 12, "feet"),
  2629. weight: math.unit(170, "kg"),
  2630. name: "Side",
  2631. image: {
  2632. source: "./media/characters/runnola/side.svg",
  2633. extra: 741 / 448,
  2634. bottom: 0.05
  2635. }
  2636. },
  2637. },
  2638. [
  2639. {
  2640. name: "Small",
  2641. height: math.unit(3, "feet")
  2642. },
  2643. {
  2644. name: "Normal",
  2645. height: math.unit(5 + 5 / 12, "feet"),
  2646. default: true
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(10, "feet")
  2651. },
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2656. {
  2657. front: {
  2658. height: math.unit(2, "meter"),
  2659. weight: math.unit(50, "kg"),
  2660. name: "Front",
  2661. image: {
  2662. source: "./media/characters/kurribird/front.svg",
  2663. bottom: 0.015
  2664. }
  2665. },
  2666. frontAlt: {
  2667. height: math.unit(1.5, "meter"),
  2668. weight: math.unit(50, "kg"),
  2669. name: "Front (Alt)",
  2670. image: {
  2671. source: "./media/characters/kurribird/front-alt.svg",
  2672. extra: 1.45
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(7, "feet")
  2680. },
  2681. {
  2682. name: "Big",
  2683. height: math.unit(12, "feet"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(1500, "feet")
  2689. },
  2690. {
  2691. name: "Megamacro",
  2692. height: math.unit(2, "miles")
  2693. }
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(2, "meter"),
  2701. weight: math.unit(80, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/elbial/front.svg",
  2705. extra: 1643 / 1556,
  2706. bottom: 60.2 / 1696
  2707. }
  2708. },
  2709. side: {
  2710. height: math.unit(2, "meter"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Side",
  2713. image: {
  2714. source: "./media/characters/elbial/side.svg",
  2715. extra: 1630 / 1565,
  2716. bottom: 71.5 / 1697
  2717. }
  2718. },
  2719. back: {
  2720. height: math.unit(2, "meter"),
  2721. weight: math.unit(80, "kg"),
  2722. name: "Back",
  2723. image: {
  2724. source: "./media/characters/elbial/back.svg",
  2725. extra: 1668 / 1595,
  2726. bottom: 5.6 / 1672
  2727. }
  2728. },
  2729. frontDressed: {
  2730. height: math.unit(2, "meter"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Front (Dressed)",
  2733. image: {
  2734. source: "./media/characters/elbial/front-dressed.svg",
  2735. extra: 1653 / 1584,
  2736. bottom: 57 / 1708
  2737. }
  2738. },
  2739. genitals: {
  2740. height: math.unit(2 / 3.367, "meter"),
  2741. name: "Genitals",
  2742. image: {
  2743. source: "./media/characters/elbial/genitals.svg"
  2744. }
  2745. },
  2746. },
  2747. [
  2748. {
  2749. name: "Large",
  2750. height: math.unit(100, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(500, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Megamacro",
  2759. height: math.unit(10, "miles")
  2760. },
  2761. {
  2762. name: "Gigamacro",
  2763. height: math.unit(25000, "miles")
  2764. },
  2765. {
  2766. name: "Full-Size",
  2767. height: math.unit(8000000, "gigaparsecs")
  2768. }
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(2, "meter"),
  2776. weight: math.unit(60, "kg"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/noah/front.svg"
  2780. }
  2781. },
  2782. talons: {
  2783. height: math.unit(0.315, "meter"),
  2784. name: "Talons",
  2785. image: {
  2786. source: "./media/characters/noah/talons.svg"
  2787. }
  2788. }
  2789. },
  2790. [
  2791. {
  2792. name: "Large",
  2793. height: math.unit(50, "feet")
  2794. },
  2795. {
  2796. name: "Macro",
  2797. height: math.unit(750, "feet"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "Megamacro",
  2802. height: math.unit(50, "miles")
  2803. },
  2804. {
  2805. name: "Gigamacro",
  2806. height: math.unit(100000, "miles")
  2807. },
  2808. {
  2809. name: "Full-Size",
  2810. height: math.unit(3000000000, "miles")
  2811. }
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2816. {
  2817. front: {
  2818. height: math.unit(2, "meter"),
  2819. weight: math.unit(80, "kg"),
  2820. name: "Front",
  2821. image: {
  2822. source: "./media/characters/natalya/front.svg"
  2823. }
  2824. },
  2825. back: {
  2826. height: math.unit(2, "meter"),
  2827. weight: math.unit(80, "kg"),
  2828. name: "Back",
  2829. image: {
  2830. source: "./media/characters/natalya/back.svg"
  2831. }
  2832. }
  2833. },
  2834. [
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(150, "feet"),
  2838. default: true
  2839. },
  2840. {
  2841. name: "Megamacro",
  2842. height: math.unit(5, "miles")
  2843. },
  2844. {
  2845. name: "Full-Size",
  2846. height: math.unit(600, "kiloparsecs")
  2847. }
  2848. ]
  2849. ))
  2850. characterMakers.push(() => makeCharacter(
  2851. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2852. {
  2853. front: {
  2854. height: math.unit(2, "meter"),
  2855. weight: math.unit(50, "kg"),
  2856. name: "Front",
  2857. image: {
  2858. source: "./media/characters/erestrebah/front.svg",
  2859. extra: 208 / 193,
  2860. bottom: 0.055
  2861. }
  2862. },
  2863. back: {
  2864. height: math.unit(2, "meter"),
  2865. weight: math.unit(50, "kg"),
  2866. name: "Back",
  2867. image: {
  2868. source: "./media/characters/erestrebah/back.svg",
  2869. extra: 1.3
  2870. }
  2871. }
  2872. },
  2873. [
  2874. {
  2875. name: "Normal",
  2876. height: math.unit(10, "feet")
  2877. },
  2878. {
  2879. name: "Large",
  2880. height: math.unit(50, "feet"),
  2881. default: true
  2882. },
  2883. {
  2884. name: "Macro",
  2885. height: math.unit(300, "feet")
  2886. },
  2887. {
  2888. name: "Macro+",
  2889. height: math.unit(750, "feet")
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(3, "miles")
  2894. }
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(80, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/jennifer/front.svg",
  2906. bottom: 0.11,
  2907. extra: 1.16
  2908. }
  2909. },
  2910. frontAlt: {
  2911. height: math.unit(2, "meter"),
  2912. weight: math.unit(80, "kg"),
  2913. name: "Front (Alt)",
  2914. image: {
  2915. source: "./media/characters/jennifer/front-alt.svg"
  2916. }
  2917. }
  2918. },
  2919. [
  2920. {
  2921. name: "Canon Height",
  2922. height: math.unit(120, "feet"),
  2923. default: true
  2924. },
  2925. {
  2926. name: "Macro+",
  2927. height: math.unit(300, "feet")
  2928. },
  2929. {
  2930. name: "Megamacro",
  2931. height: math.unit(20000, "feet")
  2932. }
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(2, "meter"),
  2940. weight: math.unit(50, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/kalista/front.svg",
  2944. extra: 1947 / 1700,
  2945. bottom: 76.6 / 1412.98
  2946. }
  2947. },
  2948. back: {
  2949. height: math.unit(2, "meter"),
  2950. weight: math.unit(50, "kg"),
  2951. name: "Back",
  2952. image: {
  2953. source: "./media/characters/kalista/back.svg",
  2954. extra: 1366 / 1156,
  2955. bottom: 33.9 / 1362.78
  2956. }
  2957. }
  2958. },
  2959. [
  2960. {
  2961. name: "Uncomfortably Small",
  2962. height: math.unit(10, "feet")
  2963. },
  2964. {
  2965. name: "Small",
  2966. height: math.unit(30, "feet")
  2967. },
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(100, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Macro+",
  2975. height: math.unit(2000, "feet")
  2976. },
  2977. {
  2978. name: "True Form",
  2979. height: math.unit(8924, "miles")
  2980. }
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(2, "meter"),
  2988. weight: math.unit(120, "kg"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/ggv/front.svg"
  2992. }
  2993. },
  2994. side: {
  2995. height: math.unit(2, "meter"),
  2996. weight: math.unit(120, "kg"),
  2997. name: "Side",
  2998. image: {
  2999. source: "./media/characters/ggv/side.svg"
  3000. }
  3001. }
  3002. },
  3003. [
  3004. {
  3005. name: "Extremely Puny",
  3006. height: math.unit(9 + 5 / 12, "feet")
  3007. },
  3008. {
  3009. name: "Horribly Small",
  3010. height: math.unit(47.7, "miles"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Reasonably Sized",
  3015. height: math.unit(25000, "parsecs")
  3016. },
  3017. {
  3018. name: "Slightly Uncompressed",
  3019. height: math.unit(7.77e31, "parsecs")
  3020. },
  3021. {
  3022. name: "Omniversal",
  3023. height: math.unit(1e300, "meters")
  3024. },
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(75, "lb"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/napalm/front.svg"
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(2, "meter"),
  3040. weight: math.unit(75, "lb"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/napalm/back.svg"
  3044. }
  3045. }
  3046. },
  3047. [
  3048. {
  3049. name: "Standard",
  3050. height: math.unit(55, "feet"),
  3051. default: true
  3052. }
  3053. ]
  3054. ))
  3055. characterMakers.push(() => makeCharacter(
  3056. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3057. {
  3058. front: {
  3059. height: math.unit(7 + 5 / 6, "feet"),
  3060. weight: math.unit(325, "lb"),
  3061. name: "Front",
  3062. image: {
  3063. source: "./media/characters/asana/front.svg",
  3064. extra: 1133 / 1060,
  3065. bottom: 15.2/1148.6
  3066. }
  3067. },
  3068. back: {
  3069. height: math.unit(7 + 5 / 6, "feet"),
  3070. weight: math.unit(325, "lb"),
  3071. name: "Back",
  3072. image: {
  3073. source: "./media/characters/asana/back.svg",
  3074. extra: 1114 / 1043,
  3075. bottom: 5/1120
  3076. }
  3077. },
  3078. dressedDark: {
  3079. height: math.unit(7 + 5 / 6, "feet"),
  3080. weight: math.unit(325, "lb"),
  3081. name: "Dressed (Dark)",
  3082. image: {
  3083. source: "./media/characters/asana/dressed-dark.svg",
  3084. extra: 1133 / 1060,
  3085. bottom: 15.2/1148.6
  3086. }
  3087. },
  3088. dressedLight: {
  3089. height: math.unit(7 + 5 / 6, "feet"),
  3090. weight: math.unit(325, "lb"),
  3091. name: "Dressed (Light)",
  3092. image: {
  3093. source: "./media/characters/asana/dressed-light.svg",
  3094. extra: 1133 / 1060,
  3095. bottom: 15.2/1148.6
  3096. }
  3097. },
  3098. },
  3099. [
  3100. {
  3101. name: "Standard",
  3102. height: math.unit(7 + 5 / 6, "feet"),
  3103. default: true
  3104. },
  3105. {
  3106. name: "Large",
  3107. height: math.unit(10, "meters")
  3108. },
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(2500, "meters")
  3112. },
  3113. {
  3114. name: "Megamacro",
  3115. height: math.unit(5e6, "meters")
  3116. },
  3117. {
  3118. name: "Examacro",
  3119. height: math.unit(5e12, "lightyears")
  3120. },
  3121. {
  3122. name: "Max Size",
  3123. height: math.unit(1e31, "lightyears")
  3124. }
  3125. ]
  3126. ))
  3127. characterMakers.push(() => makeCharacter(
  3128. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3129. {
  3130. front: {
  3131. height: math.unit(2, "meter"),
  3132. weight: math.unit(60, "kg"),
  3133. name: "Front",
  3134. image: {
  3135. source: "./media/characters/ebony/front.svg",
  3136. bottom: 0.03,
  3137. extra: 1045 / 810 + 0.03
  3138. }
  3139. },
  3140. side: {
  3141. height: math.unit(2, "meter"),
  3142. weight: math.unit(60, "kg"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/ebony/side.svg",
  3146. bottom: 0.03,
  3147. extra: 1045 / 810 + 0.03
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(2, "meter"),
  3152. weight: math.unit(60, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/ebony/back.svg",
  3156. bottom: 0.01,
  3157. extra: 1045 / 810 + 0.01
  3158. }
  3159. },
  3160. },
  3161. [
  3162. // TODO check why I did this lol
  3163. {
  3164. name: "Standard",
  3165. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(200, "feet")
  3171. },
  3172. {
  3173. name: "Gigamacro",
  3174. height: math.unit(13000, "km")
  3175. }
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(6, "feet"),
  3183. weight: math.unit(175, "lb"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/mountain/front.svg",
  3187. extra: 972/955,
  3188. bottom: 64/1036.6
  3189. }
  3190. },
  3191. back: {
  3192. height: math.unit(6, "feet"),
  3193. weight: math.unit(175, "lb"),
  3194. name: "Back",
  3195. image: {
  3196. source: "./media/characters/mountain/back.svg",
  3197. extra: 970/950,
  3198. bottom: 28.25/999
  3199. }
  3200. },
  3201. },
  3202. [
  3203. {
  3204. name: "Large",
  3205. height: math.unit(20, "meters")
  3206. },
  3207. {
  3208. name: "Macro",
  3209. height: math.unit(300, "meters")
  3210. },
  3211. {
  3212. name: "Gigamacro",
  3213. height: math.unit(10000, "km"),
  3214. default: true
  3215. },
  3216. {
  3217. name: "Examacro",
  3218. height: math.unit(10e9, "lightyears")
  3219. }
  3220. ]
  3221. ))
  3222. characterMakers.push(() => makeCharacter(
  3223. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3224. {
  3225. front: {
  3226. height: math.unit(8, "feet"),
  3227. weight: math.unit(500, "lb"),
  3228. name: "Front",
  3229. image: {
  3230. source: "./media/characters/rick/front.svg"
  3231. }
  3232. }
  3233. },
  3234. [
  3235. {
  3236. name: "Normal",
  3237. height: math.unit(8, "feet"),
  3238. default: true
  3239. },
  3240. {
  3241. name: "Macro",
  3242. height: math.unit(5, "km")
  3243. }
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3248. {
  3249. front: {
  3250. height: math.unit(8, "feet"),
  3251. weight: math.unit(120, "lb"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/ona/front.svg"
  3255. }
  3256. },
  3257. frontAlt: {
  3258. height: math.unit(8, "feet"),
  3259. weight: math.unit(120, "lb"),
  3260. name: "Front (Alt)",
  3261. image: {
  3262. source: "./media/characters/ona/front-alt.svg"
  3263. }
  3264. },
  3265. back: {
  3266. height: math.unit(8, "feet"),
  3267. weight: math.unit(120, "lb"),
  3268. name: "Back",
  3269. image: {
  3270. source: "./media/characters/ona/back.svg"
  3271. }
  3272. },
  3273. foot: {
  3274. height: math.unit(1.1, "feet"),
  3275. name: "Foot",
  3276. image: {
  3277. source: "./media/characters/ona/foot.svg"
  3278. }
  3279. }
  3280. },
  3281. [
  3282. {
  3283. name: "Megamacro",
  3284. height: math.unit(70, "km"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Gigamacro",
  3289. height: math.unit(681818, "miles")
  3290. },
  3291. {
  3292. name: "Examacro",
  3293. height: math.unit(3800000, "lightyears")
  3294. },
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(12, "feet"),
  3302. weight: math.unit(3000, "lb"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/mech/front.svg",
  3306. bottom: 0.025,
  3307. }
  3308. },
  3309. back: {
  3310. height: math.unit(12, "feet"),
  3311. weight: math.unit(3000, "lb"),
  3312. name: "Back",
  3313. image: {
  3314. source: "./media/characters/mech/back.svg",
  3315. bottom: 0.03,
  3316. }
  3317. }
  3318. },
  3319. [
  3320. {
  3321. name: "Normal",
  3322. height: math.unit(12, "feet")
  3323. },
  3324. {
  3325. name: "Macro",
  3326. height: math.unit(300, "feet"),
  3327. default: true
  3328. },
  3329. {
  3330. name: "Macro+",
  3331. height: math.unit(1500, "feet")
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(1.3, "meter"),
  3340. weight: math.unit(30, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/gregory/front.svg",
  3344. }
  3345. }
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(1.3, "meter"),
  3351. default: true
  3352. },
  3353. {
  3354. name: "Macro",
  3355. height: math.unit(20, "meter")
  3356. }
  3357. ]
  3358. ))
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3361. {
  3362. front: {
  3363. height: math.unit(2.8, "meter"),
  3364. weight: math.unit(200, "kg"),
  3365. name: "Front",
  3366. image: {
  3367. source: "./media/characters/elory/front.svg",
  3368. }
  3369. }
  3370. },
  3371. [
  3372. {
  3373. name: "Normal",
  3374. height: math.unit(2.8, "meter"),
  3375. default: true
  3376. },
  3377. {
  3378. name: "Macro",
  3379. height: math.unit(38, "meter")
  3380. }
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3385. {
  3386. front: {
  3387. height: math.unit(470, "feet"),
  3388. weight: math.unit(924, "tons"),
  3389. name: "Front",
  3390. image: {
  3391. source: "./media/characters/angelpatamon/front.svg",
  3392. }
  3393. }
  3394. },
  3395. [
  3396. {
  3397. name: "Normal",
  3398. height: math.unit(470, "feet"),
  3399. default: true
  3400. },
  3401. {
  3402. name: "Deity Size I",
  3403. height: math.unit(28651.2, "km")
  3404. },
  3405. {
  3406. name: "Deity Size II",
  3407. height: math.unit(171907.2, "km")
  3408. }
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3413. {
  3414. side: {
  3415. height: math.unit(7.2, "meter"),
  3416. weight: math.unit(8.2, "tons"),
  3417. name: "Side",
  3418. image: {
  3419. source: "./media/characters/cryae/side.svg",
  3420. extra: 3500 / 1500
  3421. }
  3422. }
  3423. },
  3424. [
  3425. {
  3426. name: "Normal",
  3427. height: math.unit(7.2, "meter"),
  3428. default: true
  3429. }
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(6, "feet"),
  3437. weight: math.unit(175, "lb"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/xera/front.svg",
  3441. extra: 2300 / 2061
  3442. }
  3443. },
  3444. side: {
  3445. height: math.unit(6, "feet"),
  3446. weight: math.unit(175, "lb"),
  3447. name: "Side",
  3448. image: {
  3449. source: "./media/characters/xera/side.svg",
  3450. extra: 2300 / 2061
  3451. }
  3452. },
  3453. back: {
  3454. height: math.unit(6, "feet"),
  3455. weight: math.unit(175, "lb"),
  3456. name: "Back",
  3457. image: {
  3458. source: "./media/characters/xera/back.svg"
  3459. }
  3460. },
  3461. },
  3462. [
  3463. {
  3464. name: "Small",
  3465. height: math.unit(10, "feet")
  3466. },
  3467. {
  3468. name: "Macro",
  3469. height: math.unit(500, "meters"),
  3470. default: true
  3471. },
  3472. {
  3473. name: "Macro+",
  3474. height: math.unit(10, "km")
  3475. },
  3476. {
  3477. name: "Gigamacro",
  3478. height: math.unit(25000, "km")
  3479. },
  3480. {
  3481. name: "Teramacro",
  3482. height: math.unit(3e6, "km")
  3483. }
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3488. {
  3489. front: {
  3490. height: math.unit(6, "feet"),
  3491. weight: math.unit(175, "lb"),
  3492. name: "Front",
  3493. image: {
  3494. source: "./media/characters/nebula/front.svg",
  3495. extra: 2600 / 2450
  3496. }
  3497. }
  3498. },
  3499. [
  3500. {
  3501. name: "Small",
  3502. height: math.unit(4.5, "meters")
  3503. },
  3504. {
  3505. name: "Macro",
  3506. height: math.unit(1500, "meters"),
  3507. default: true
  3508. },
  3509. {
  3510. name: "Megamacro",
  3511. height: math.unit(150, "km")
  3512. },
  3513. {
  3514. name: "Gigamacro",
  3515. height: math.unit(27000, "km")
  3516. }
  3517. ]
  3518. ))
  3519. characterMakers.push(() => makeCharacter(
  3520. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3521. {
  3522. front: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(225, "lb"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/abysgar/front.svg"
  3528. }
  3529. }
  3530. },
  3531. [
  3532. {
  3533. name: "Small",
  3534. height: math.unit(4.5, "meters")
  3535. },
  3536. {
  3537. name: "Macro",
  3538. height: math.unit(1250, "meters"),
  3539. default: true
  3540. },
  3541. {
  3542. name: "Megamacro",
  3543. height: math.unit(125, "km")
  3544. },
  3545. {
  3546. name: "Gigamacro",
  3547. height: math.unit(26000, "km")
  3548. }
  3549. ]
  3550. ))
  3551. characterMakers.push(() => makeCharacter(
  3552. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3553. {
  3554. front: {
  3555. height: math.unit(6, "feet"),
  3556. weight: math.unit(180, "lb"),
  3557. name: "Front",
  3558. image: {
  3559. source: "./media/characters/yakuz/front.svg"
  3560. }
  3561. }
  3562. },
  3563. [
  3564. {
  3565. name: "Small",
  3566. height: math.unit(5, "meters")
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(1500, "meters"),
  3571. default: true
  3572. },
  3573. {
  3574. name: "Megamacro",
  3575. height: math.unit(200, "km")
  3576. },
  3577. {
  3578. name: "Gigamacro",
  3579. height: math.unit(100000, "km")
  3580. }
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(6, "feet"),
  3588. weight: math.unit(175, "lb"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/mirova/front.svg"
  3592. }
  3593. }
  3594. },
  3595. [
  3596. {
  3597. name: "Small",
  3598. height: math.unit(5, "meters")
  3599. },
  3600. {
  3601. name: "Macro",
  3602. height: math.unit(900, "meters"),
  3603. default: true
  3604. },
  3605. {
  3606. name: "Megamacro",
  3607. height: math.unit(135, "km")
  3608. },
  3609. {
  3610. name: "Gigamacro",
  3611. height: math.unit(20000, "km")
  3612. }
  3613. ]
  3614. ))
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3617. {
  3618. side: {
  3619. height: math.unit(28.35, "feet"),
  3620. weight: math.unit(99.75, "tons"),
  3621. name: "Side",
  3622. image: {
  3623. source: "./media/characters/asana-mech/side.svg"
  3624. }
  3625. }
  3626. },
  3627. [
  3628. {
  3629. name: "Normal",
  3630. height: math.unit(28.35, "feet"),
  3631. default: true
  3632. },
  3633. {
  3634. name: "Macro",
  3635. height: math.unit(2500, "feet")
  3636. },
  3637. {
  3638. name: "Megamacro",
  3639. height: math.unit(25, "miles")
  3640. },
  3641. {
  3642. name: "Examacro",
  3643. height: math.unit(6e8, "lightyears")
  3644. },
  3645. ]
  3646. ))
  3647. characterMakers.push(() => makeCharacter(
  3648. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3649. {
  3650. front: {
  3651. height: math.unit(2, "meters"),
  3652. weight: math.unit(70, "kg"),
  3653. name: "Front",
  3654. image: {
  3655. source: "./media/characters/ashtrek/front.svg",
  3656. extra: 560 / 524,
  3657. bottom: 0.01
  3658. }
  3659. },
  3660. frontArmor: {
  3661. height: math.unit(2, "meters"),
  3662. weight: math.unit(76, "kg"),
  3663. name: "Front (Armor)",
  3664. image: {
  3665. source: "./media/characters/ashtrek/front-armor.svg",
  3666. extra: 561 / 527,
  3667. bottom: 0.01
  3668. }
  3669. },
  3670. side: {
  3671. height: math.unit(2, "meters"),
  3672. weight: math.unit(70, "kg"),
  3673. name: "Side",
  3674. image: {
  3675. source: "./media/characters/ashtrek/side.svg",
  3676. extra: 1717 / 1609,
  3677. bottom: 0.005
  3678. }
  3679. },
  3680. back: {
  3681. height: math.unit(2, "meters"),
  3682. weight: math.unit(70, "kg"),
  3683. name: "Back",
  3684. image: {
  3685. source: "./media/characters/ashtrek/back.svg",
  3686. extra: 1570 / 1501
  3687. }
  3688. },
  3689. },
  3690. [
  3691. {
  3692. name: "DEFCON 5",
  3693. height: math.unit(5, "meters")
  3694. },
  3695. {
  3696. name: "DEFCON 4",
  3697. height: math.unit(500, "meters"),
  3698. default: true
  3699. },
  3700. {
  3701. name: "DEFCON 3",
  3702. height: math.unit(5, "km")
  3703. },
  3704. {
  3705. name: "DEFCON 2",
  3706. height: math.unit(500, "km")
  3707. },
  3708. {
  3709. name: "DEFCON 1",
  3710. height: math.unit(500000, "km")
  3711. },
  3712. {
  3713. name: "DEFCON 0",
  3714. height: math.unit(3, "gigaparsecs")
  3715. },
  3716. ]
  3717. ))
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(2, "meters"),
  3723. weight: math.unit(76, "kg"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/gale/front.svg"
  3727. }
  3728. },
  3729. frontAlt1: {
  3730. height: math.unit(2, "meters"),
  3731. weight: math.unit(76, "kg"),
  3732. name: "Front (Alt 1)",
  3733. image: {
  3734. source: "./media/characters/gale/front-alt-1.svg"
  3735. }
  3736. },
  3737. frontAlt2: {
  3738. height: math.unit(2, "meters"),
  3739. weight: math.unit(76, "kg"),
  3740. name: "Front (Alt 2)",
  3741. image: {
  3742. source: "./media/characters/gale/front-alt-2.svg"
  3743. }
  3744. },
  3745. },
  3746. [
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(7, "feet")
  3750. },
  3751. {
  3752. name: "Macro",
  3753. height: math.unit(150, "feet"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Macro+",
  3758. height: math.unit(300, "feet")
  3759. },
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3764. {
  3765. front: {
  3766. height: math.unit(2, "meters"),
  3767. weight: math.unit(76, "kg"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/draylen/front.svg"
  3771. }
  3772. }
  3773. },
  3774. [
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(150, "feet"),
  3778. default: true
  3779. }
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3784. {
  3785. front: {
  3786. height: math.unit(7 + 9 / 12, "feet"),
  3787. weight: math.unit(379, "lbs"),
  3788. name: "Front",
  3789. image: {
  3790. source: "./media/characters/chez/front.svg"
  3791. }
  3792. },
  3793. side: {
  3794. height: math.unit(7 + 9 / 12, "feet"),
  3795. weight: math.unit(379, "lbs"),
  3796. name: "Side",
  3797. image: {
  3798. source: "./media/characters/chez/side.svg"
  3799. }
  3800. }
  3801. },
  3802. [
  3803. {
  3804. name: "Normal",
  3805. height: math.unit(7 + 9 / 12, "feet"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "God King",
  3810. height: math.unit(9750000, "meters")
  3811. }
  3812. ]
  3813. ))
  3814. characterMakers.push(() => makeCharacter(
  3815. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3816. {
  3817. front: {
  3818. height: math.unit(6, "feet"),
  3819. weight: math.unit(275, "lbs"),
  3820. name: "Front",
  3821. image: {
  3822. source: "./media/characters/kaylum/front.svg",
  3823. bottom: 0.01,
  3824. extra: 1166 / 1031
  3825. }
  3826. },
  3827. frontWingless: {
  3828. height: math.unit(6, "feet"),
  3829. weight: math.unit(275, "lbs"),
  3830. name: "Front (Wingless)",
  3831. image: {
  3832. source: "./media/characters/kaylum/front-wingless.svg",
  3833. bottom: 0.01,
  3834. extra: 1117 / 1031
  3835. }
  3836. }
  3837. },
  3838. [
  3839. {
  3840. name: "Normal",
  3841. height: math.unit(3.05, "meters")
  3842. },
  3843. {
  3844. name: "Master",
  3845. height: math.unit(5.5, "meters")
  3846. },
  3847. {
  3848. name: "Rampage",
  3849. height: math.unit(19, "meters")
  3850. },
  3851. {
  3852. name: "Macro Lite",
  3853. height: math.unit(37, "meters")
  3854. },
  3855. {
  3856. name: "Hyper Predator",
  3857. height: math.unit(61, "meters")
  3858. },
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(138, "meters"),
  3862. default: true
  3863. }
  3864. ]
  3865. ))
  3866. characterMakers.push(() => makeCharacter(
  3867. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3868. {
  3869. front: {
  3870. height: math.unit(6, "feet"),
  3871. weight: math.unit(150, "lbs"),
  3872. name: "Front",
  3873. image: {
  3874. source: "./media/characters/geta/front.svg"
  3875. }
  3876. }
  3877. },
  3878. [
  3879. {
  3880. name: "Micro",
  3881. height: math.unit(3, "inches"),
  3882. default: true
  3883. },
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(5 + 5 / 12, "feet")
  3887. }
  3888. ]
  3889. ))
  3890. characterMakers.push(() => makeCharacter(
  3891. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3892. {
  3893. front: {
  3894. height: math.unit(6, "feet"),
  3895. weight: math.unit(300, "lbs"),
  3896. name: "Front",
  3897. image: {
  3898. source: "./media/characters/tyrnn/front.svg"
  3899. }
  3900. }
  3901. },
  3902. [
  3903. {
  3904. name: "Main Height",
  3905. height: math.unit(355, "feet"),
  3906. default: true
  3907. },
  3908. {
  3909. name: "Fave. Height",
  3910. height: math.unit(2400, "feet")
  3911. }
  3912. ]
  3913. ))
  3914. characterMakers.push(() => makeCharacter(
  3915. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3916. {
  3917. front: {
  3918. height: math.unit(6, "feet"),
  3919. weight: math.unit(300, "lbs"),
  3920. name: "Front",
  3921. image: {
  3922. source: "./media/characters/appledectomy/front.svg"
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Macro",
  3929. height: math.unit(2500, "feet")
  3930. },
  3931. {
  3932. name: "Megamacro",
  3933. height: math.unit(50, "miles"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Gigamacro",
  3938. height: math.unit(5000, "miles")
  3939. },
  3940. {
  3941. name: "Teramacro",
  3942. height: math.unit(250000, "miles")
  3943. },
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(6, "feet"),
  3951. weight: math.unit(200, "lbs"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/vulpes/front.svg",
  3955. extra: 573 / 543,
  3956. bottom: 0.033
  3957. }
  3958. },
  3959. side: {
  3960. height: math.unit(6, "feet"),
  3961. weight: math.unit(200, "lbs"),
  3962. name: "Side",
  3963. image: {
  3964. source: "./media/characters/vulpes/side.svg",
  3965. extra: 573 / 543,
  3966. bottom: 0.01
  3967. }
  3968. },
  3969. back: {
  3970. height: math.unit(6, "feet"),
  3971. weight: math.unit(200, "lbs"),
  3972. name: "Back",
  3973. image: {
  3974. source: "./media/characters/vulpes/back.svg",
  3975. extra: 573 / 543,
  3976. }
  3977. },
  3978. feet: {
  3979. height: math.unit(1.276, "feet"),
  3980. name: "Feet",
  3981. image: {
  3982. source: "./media/characters/vulpes/feet.svg"
  3983. }
  3984. },
  3985. maw: {
  3986. height: math.unit(1.18, "feet"),
  3987. name: "Maw",
  3988. image: {
  3989. source: "./media/characters/vulpes/maw.svg"
  3990. }
  3991. },
  3992. },
  3993. [
  3994. {
  3995. name: "Micro",
  3996. height: math.unit(2, "inches")
  3997. },
  3998. {
  3999. name: "Normal",
  4000. height: math.unit(6.3, "feet")
  4001. },
  4002. {
  4003. name: "Macro",
  4004. height: math.unit(850, "feet")
  4005. },
  4006. {
  4007. name: "Megamacro",
  4008. height: math.unit(7500, "feet"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Gigamacro",
  4013. height: math.unit(570000, "miles")
  4014. }
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4019. {
  4020. front: {
  4021. height: math.unit(6, "feet"),
  4022. weight: math.unit(210, "lbs"),
  4023. name: "Front",
  4024. image: {
  4025. source: "./media/characters/rain-fallen/front.svg"
  4026. }
  4027. },
  4028. side: {
  4029. height: math.unit(6, "feet"),
  4030. weight: math.unit(210, "lbs"),
  4031. name: "Side",
  4032. image: {
  4033. source: "./media/characters/rain-fallen/side.svg"
  4034. }
  4035. },
  4036. back: {
  4037. height: math.unit(6, "feet"),
  4038. weight: math.unit(210, "lbs"),
  4039. name: "Back",
  4040. image: {
  4041. source: "./media/characters/rain-fallen/back.svg"
  4042. }
  4043. },
  4044. feral: {
  4045. height: math.unit(9, "feet"),
  4046. weight: math.unit(700, "lbs"),
  4047. name: "Feral",
  4048. image: {
  4049. source: "./media/characters/rain-fallen/feral.svg"
  4050. }
  4051. },
  4052. },
  4053. [
  4054. {
  4055. name: "Normal",
  4056. height: math.unit(5, "meter")
  4057. },
  4058. {
  4059. name: "Macro",
  4060. height: math.unit(150, "meter"),
  4061. default: true
  4062. },
  4063. {
  4064. name: "Megamacro",
  4065. height: math.unit(278e6, "meter")
  4066. },
  4067. {
  4068. name: "Gigamacro",
  4069. height: math.unit(2e9, "meter")
  4070. },
  4071. {
  4072. name: "Teramacro",
  4073. height: math.unit(8e12, "meter")
  4074. },
  4075. {
  4076. name: "Devourer",
  4077. height: math.unit(14, "zettameters")
  4078. },
  4079. {
  4080. name: "Scarlet King",
  4081. height: math.unit(18, "yottameters")
  4082. },
  4083. {
  4084. name: "Void",
  4085. height: math.unit(6.66e66, "yottameters")
  4086. }
  4087. ]
  4088. ))
  4089. characterMakers.push(() => makeCharacter(
  4090. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4091. {
  4092. standing: {
  4093. height: math.unit(6, "feet"),
  4094. weight: math.unit(180, "lbs"),
  4095. name: "Standing",
  4096. image: {
  4097. source: "./media/characters/zaakira/standing.svg"
  4098. }
  4099. },
  4100. laying: {
  4101. height: math.unit(3, "feet"),
  4102. weight: math.unit(180, "lbs"),
  4103. name: "Laying",
  4104. image: {
  4105. source: "./media/characters/zaakira/laying.svg"
  4106. }
  4107. },
  4108. },
  4109. [
  4110. {
  4111. name: "Normal",
  4112. height: math.unit(12, "feet")
  4113. },
  4114. {
  4115. name: "Macro",
  4116. height: math.unit(279, "feet"),
  4117. default: true
  4118. }
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4123. {
  4124. front: {
  4125. height: math.unit(6, "feet"),
  4126. weight: math.unit(250, "lbs"),
  4127. name: "Front",
  4128. image: {
  4129. source: "./media/characters/sigvald/front.svg",
  4130. extra: 1000 / 850
  4131. }
  4132. },
  4133. back: {
  4134. height: math.unit(6, "feet"),
  4135. weight: math.unit(250, "lbs"),
  4136. name: "Back",
  4137. image: {
  4138. source: "./media/characters/sigvald/back.svg"
  4139. }
  4140. },
  4141. },
  4142. [
  4143. {
  4144. name: "Normal",
  4145. height: math.unit(8, "feet")
  4146. },
  4147. {
  4148. name: "Large",
  4149. height: math.unit(12, "feet")
  4150. },
  4151. {
  4152. name: "Larger",
  4153. height: math.unit(20, "feet")
  4154. },
  4155. {
  4156. name: "Macro",
  4157. height: math.unit(150, "feet")
  4158. },
  4159. {
  4160. name: "Macro+",
  4161. height: math.unit(200, "feet"),
  4162. default: true
  4163. },
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4168. {
  4169. side: {
  4170. height: math.unit(12, "feet"),
  4171. weight: math.unit(2000, "kg"),
  4172. name: "Side",
  4173. image: {
  4174. source: "./media/characters/scott/side.svg",
  4175. extra: 754 / 724,
  4176. bottom: 0.069
  4177. }
  4178. },
  4179. upright: {
  4180. height: math.unit(12, "feet"),
  4181. weight: math.unit(2000, "kg"),
  4182. name: "Upright",
  4183. image: {
  4184. source: "./media/characters/scott/upright.svg",
  4185. extra: 3881 / 3722,
  4186. bottom: 0.05
  4187. }
  4188. },
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(12, "feet"),
  4194. default: true
  4195. },
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4200. {
  4201. side: {
  4202. height: math.unit(8, "meters"),
  4203. weight: math.unit(84755, "lbs"),
  4204. name: "Side",
  4205. image: {
  4206. source: "./media/characters/tobias/side.svg",
  4207. extra: 1474 / 1096,
  4208. bottom: 38.9 / 1513.1235
  4209. }
  4210. },
  4211. },
  4212. [
  4213. {
  4214. name: "Normal",
  4215. height: math.unit(8, "meters"),
  4216. default: true
  4217. },
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4222. {
  4223. front: {
  4224. height: math.unit(5.5, "feet"),
  4225. weight: math.unit(400, "lbs"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/kieran/front.svg",
  4229. extra: 2694 / 2364,
  4230. bottom: 217 / 2908
  4231. }
  4232. },
  4233. side: {
  4234. height: math.unit(5.5, "feet"),
  4235. weight: math.unit(400, "lbs"),
  4236. name: "Side",
  4237. image: {
  4238. source: "./media/characters/kieran/side.svg",
  4239. extra: 875 / 777,
  4240. bottom: 84.6 / 959
  4241. }
  4242. },
  4243. },
  4244. [
  4245. {
  4246. name: "Normal",
  4247. height: math.unit(5.5, "feet"),
  4248. default: true
  4249. },
  4250. ]
  4251. ))
  4252. characterMakers.push(() => makeCharacter(
  4253. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4254. {
  4255. side: {
  4256. height: math.unit(2, "meters"),
  4257. weight: math.unit(70, "kg"),
  4258. name: "Side",
  4259. image: {
  4260. source: "./media/characters/sanya/side.svg",
  4261. bottom: 0.02,
  4262. extra: 1.02
  4263. }
  4264. },
  4265. },
  4266. [
  4267. {
  4268. name: "Small",
  4269. height: math.unit(2, "meters")
  4270. },
  4271. {
  4272. name: "Normal",
  4273. height: math.unit(3, "meters")
  4274. },
  4275. {
  4276. name: "Macro",
  4277. height: math.unit(16, "meters"),
  4278. default: true
  4279. },
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4284. {
  4285. front: {
  4286. height: math.unit(2, "meters"),
  4287. weight: math.unit(120, "kg"),
  4288. name: "Front",
  4289. image: {
  4290. source: "./media/characters/miranda/front.svg",
  4291. extra: 195/185,
  4292. bottom: 10.9/206.5
  4293. }
  4294. },
  4295. back: {
  4296. height: math.unit(2, "meters"),
  4297. weight: math.unit(120, "kg"),
  4298. name: "Back",
  4299. image: {
  4300. source: "./media/characters/miranda/back.svg",
  4301. extra: 201/193,
  4302. bottom: 2.3/203.7
  4303. }
  4304. },
  4305. },
  4306. [
  4307. {
  4308. name: "Normal",
  4309. height: math.unit(10, "feet"),
  4310. default: true
  4311. }
  4312. ]
  4313. ))
  4314. characterMakers.push(() => makeCharacter(
  4315. { name: "James", species: ["deer"], tags: ["anthro"] },
  4316. {
  4317. side: {
  4318. height: math.unit(2, "meters"),
  4319. weight: math.unit(100, "kg"),
  4320. name: "Front",
  4321. image: {
  4322. source: "./media/characters/james/front.svg",
  4323. extra: 10 / 8.5
  4324. }
  4325. },
  4326. },
  4327. [
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(8.5, "feet"),
  4331. default: true
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4337. {
  4338. side: {
  4339. height: math.unit(9.5, "feet"),
  4340. weight: math.unit(2500, "lbs"),
  4341. name: "Side",
  4342. image: {
  4343. source: "./media/characters/heather/side.svg"
  4344. }
  4345. },
  4346. },
  4347. [
  4348. {
  4349. name: "Normal",
  4350. height: math.unit(9.5, "feet"),
  4351. default: true
  4352. }
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4357. {
  4358. side: {
  4359. height: math.unit(6.5, "feet"),
  4360. weight: math.unit(400, "lbs"),
  4361. name: "Side",
  4362. image: {
  4363. source: "./media/characters/lukas/side.svg",
  4364. extra: 7.25 / 6.5
  4365. }
  4366. },
  4367. },
  4368. [
  4369. {
  4370. name: "Normal",
  4371. height: math.unit(6.5, "feet"),
  4372. default: true
  4373. }
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4378. {
  4379. side: {
  4380. height: math.unit(5, "feet"),
  4381. weight: math.unit(3000, "lbs"),
  4382. name: "Side",
  4383. image: {
  4384. source: "./media/characters/louise/side.svg"
  4385. }
  4386. },
  4387. },
  4388. [
  4389. {
  4390. name: "Normal",
  4391. height: math.unit(5, "feet"),
  4392. default: true
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4398. {
  4399. side: {
  4400. height: math.unit(6, "feet"),
  4401. weight: math.unit(150, "lbs"),
  4402. name: "Side",
  4403. image: {
  4404. source: "./media/characters/ramona/side.svg"
  4405. }
  4406. },
  4407. },
  4408. [
  4409. {
  4410. name: "Normal",
  4411. height: math.unit(5.3, "meters"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Macro",
  4416. height: math.unit(20, "stories")
  4417. },
  4418. {
  4419. name: "Macro+",
  4420. height: math.unit(50, "stories")
  4421. },
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4426. {
  4427. standing: {
  4428. height: math.unit(5.75, "feet"),
  4429. weight: math.unit(160, "lbs"),
  4430. name: "Standing",
  4431. image: {
  4432. source: "./media/characters/deerpuff/standing.svg",
  4433. extra: 682 / 624
  4434. }
  4435. },
  4436. sitting: {
  4437. height: math.unit(5.75 / 1.79, "feet"),
  4438. weight: math.unit(160, "lbs"),
  4439. name: "Sitting",
  4440. image: {
  4441. source: "./media/characters/deerpuff/sitting.svg",
  4442. bottom: 44 / 400,
  4443. extra: 1
  4444. }
  4445. },
  4446. taurLaying: {
  4447. height: math.unit(6, "feet"),
  4448. weight: math.unit(400, "lbs"),
  4449. name: "Taur (Laying)",
  4450. image: {
  4451. source: "./media/characters/deerpuff/taur-laying.svg"
  4452. }
  4453. },
  4454. },
  4455. [
  4456. {
  4457. name: "Puffball",
  4458. height: math.unit(6, "inches")
  4459. },
  4460. {
  4461. name: "Normalpuff",
  4462. height: math.unit(5.75, "feet")
  4463. },
  4464. {
  4465. name: "Macropuff",
  4466. height: math.unit(1500, "feet"),
  4467. default: true
  4468. },
  4469. {
  4470. name: "Megapuff",
  4471. height: math.unit(500, "miles")
  4472. },
  4473. {
  4474. name: "Gigapuff",
  4475. height: math.unit(250000, "miles")
  4476. },
  4477. {
  4478. name: "Omegapuff",
  4479. height: math.unit(1000, "lightyears")
  4480. },
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4485. {
  4486. stomping: {
  4487. height: math.unit(6, "feet"),
  4488. weight: math.unit(170, "lbs"),
  4489. name: "Stomping",
  4490. image: {
  4491. source: "./media/characters/vivian/stomping.svg"
  4492. }
  4493. },
  4494. sitting: {
  4495. height: math.unit(6 / 1.75, "feet"),
  4496. weight: math.unit(170, "lbs"),
  4497. name: "Sitting",
  4498. image: {
  4499. source: "./media/characters/vivian/sitting.svg",
  4500. bottom: 1 / 6.4,
  4501. extra: 1,
  4502. }
  4503. },
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(7, "feet"),
  4509. default: true
  4510. },
  4511. {
  4512. name: "Macro",
  4513. height: math.unit(10, "stories")
  4514. },
  4515. {
  4516. name: "Macro+",
  4517. height: math.unit(30, "stories")
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(10, "miles")
  4522. },
  4523. {
  4524. name: "Megamacro+",
  4525. height: math.unit(2750000, "meters")
  4526. },
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4531. {
  4532. front: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(160, "lbs"),
  4535. name: "Front",
  4536. image: {
  4537. source: "./media/characters/prince/front.svg",
  4538. extra: 3400 / 3000
  4539. }
  4540. },
  4541. jumping: {
  4542. height: math.unit(6, "feet"),
  4543. weight: math.unit(160, "lbs"),
  4544. name: "Jumping",
  4545. image: {
  4546. source: "./media/characters/prince/jump.svg",
  4547. extra: 2555 / 2134
  4548. }
  4549. },
  4550. },
  4551. [
  4552. {
  4553. name: "Normal",
  4554. height: math.unit(7.75, "feet"),
  4555. default: true
  4556. },
  4557. {
  4558. name: "Not cute",
  4559. height: math.unit(17, "feet")
  4560. },
  4561. {
  4562. name: "I said NOT",
  4563. height: math.unit(91, "feet")
  4564. },
  4565. {
  4566. name: "Please stop",
  4567. height: math.unit(560, "feet")
  4568. },
  4569. {
  4570. name: "What have you done",
  4571. height: math.unit(2200, "feet")
  4572. },
  4573. {
  4574. name: "Deer God",
  4575. height: math.unit(3.6, "miles")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4581. {
  4582. standing: {
  4583. height: math.unit(6, "feet"),
  4584. weight: math.unit(300, "lbs"),
  4585. name: "Standing",
  4586. image: {
  4587. source: "./media/characters/psymon/standing.svg",
  4588. extra: 1888 / 1810,
  4589. bottom: 0.05
  4590. }
  4591. },
  4592. slithering: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(300, "lbs"),
  4595. name: "Slithering",
  4596. image: {
  4597. source: "./media/characters/psymon/slithering.svg",
  4598. extra: 1330 / 1224
  4599. }
  4600. },
  4601. slitheringAlt: {
  4602. height: math.unit(6, "feet"),
  4603. weight: math.unit(300, "lbs"),
  4604. name: "Slithering (Alt)",
  4605. image: {
  4606. source: "./media/characters/psymon/slithering-alt.svg",
  4607. extra: 1330 / 1224
  4608. }
  4609. },
  4610. },
  4611. [
  4612. {
  4613. name: "Normal",
  4614. height: math.unit(11.25, "feet"),
  4615. default: true
  4616. },
  4617. {
  4618. name: "Large",
  4619. height: math.unit(27, "feet")
  4620. },
  4621. {
  4622. name: "Giant",
  4623. height: math.unit(87, "feet")
  4624. },
  4625. {
  4626. name: "Macro",
  4627. height: math.unit(365, "feet")
  4628. },
  4629. {
  4630. name: "Megamacro",
  4631. height: math.unit(3, "miles")
  4632. },
  4633. {
  4634. name: "World Serpent",
  4635. height: math.unit(8000, "miles")
  4636. },
  4637. ]
  4638. ))
  4639. characterMakers.push(() => makeCharacter(
  4640. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4641. {
  4642. front: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(180, "lbs"),
  4645. name: "Front",
  4646. image: {
  4647. source: "./media/characters/daimos/front.svg",
  4648. extra: 4160 / 3897,
  4649. bottom: 0.021
  4650. }
  4651. }
  4652. },
  4653. [
  4654. {
  4655. name: "Normal",
  4656. height: math.unit(8, "feet"),
  4657. default: true
  4658. },
  4659. {
  4660. name: "Big Dog",
  4661. height: math.unit(22, "feet")
  4662. },
  4663. {
  4664. name: "Macro",
  4665. height: math.unit(127, "feet")
  4666. },
  4667. {
  4668. name: "Megamacro",
  4669. height: math.unit(3600, "feet")
  4670. },
  4671. ]
  4672. ))
  4673. characterMakers.push(() => makeCharacter(
  4674. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4675. {
  4676. side: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(180, "lbs"),
  4679. name: "Side",
  4680. image: {
  4681. source: "./media/characters/blake/side.svg",
  4682. extra: 1212 / 1120,
  4683. bottom: 0.05
  4684. }
  4685. },
  4686. crouched: {
  4687. height: math.unit(6 * 0.57, "feet"),
  4688. weight: math.unit(180, "lbs"),
  4689. name: "Crouched",
  4690. image: {
  4691. source: "./media/characters/blake/crouched.svg",
  4692. extra: 840 / 587,
  4693. bottom: 0.04
  4694. }
  4695. },
  4696. bent: {
  4697. height: math.unit(6 * 0.75, "feet"),
  4698. weight: math.unit(180, "lbs"),
  4699. name: "Bent",
  4700. image: {
  4701. source: "./media/characters/blake/bent.svg",
  4702. extra: 592 / 544,
  4703. bottom: 0.035
  4704. }
  4705. },
  4706. },
  4707. [
  4708. {
  4709. name: "Normal",
  4710. height: math.unit(8 + 1 / 6, "feet"),
  4711. default: true
  4712. },
  4713. {
  4714. name: "Big Backside",
  4715. height: math.unit(37, "feet")
  4716. },
  4717. {
  4718. name: "Subway Shredder",
  4719. height: math.unit(72, "feet")
  4720. },
  4721. {
  4722. name: "City Carver",
  4723. height: math.unit(1675, "feet")
  4724. },
  4725. {
  4726. name: "Tectonic Tweaker",
  4727. height: math.unit(2300, "miles")
  4728. },
  4729. ]
  4730. ))
  4731. characterMakers.push(() => makeCharacter(
  4732. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4733. {
  4734. front: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(180, "lbs"),
  4737. name: "Front",
  4738. image: {
  4739. source: "./media/characters/guisetto/front.svg",
  4740. extra: 856 / 817,
  4741. bottom: 0.06
  4742. }
  4743. },
  4744. airborne: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(180, "lbs"),
  4747. name: "Airborne",
  4748. image: {
  4749. source: "./media/characters/guisetto/airborne.svg",
  4750. extra: 584 / 525
  4751. }
  4752. },
  4753. },
  4754. [
  4755. {
  4756. name: "Normal",
  4757. height: math.unit(10 + 11 / 12, "feet"),
  4758. default: true
  4759. },
  4760. {
  4761. name: "Large",
  4762. height: math.unit(35, "feet")
  4763. },
  4764. {
  4765. name: "Macro",
  4766. height: math.unit(475, "feet")
  4767. },
  4768. ]
  4769. ))
  4770. characterMakers.push(() => makeCharacter(
  4771. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4772. {
  4773. front: {
  4774. height: math.unit(6, "feet"),
  4775. weight: math.unit(180, "lbs"),
  4776. name: "Front",
  4777. image: {
  4778. source: "./media/characters/luxor/front.svg",
  4779. extra: 2940 / 2152
  4780. }
  4781. },
  4782. back: {
  4783. height: math.unit(6, "feet"),
  4784. weight: math.unit(180, "lbs"),
  4785. name: "Back",
  4786. image: {
  4787. source: "./media/characters/luxor/back.svg",
  4788. extra: 1083 / 960
  4789. }
  4790. },
  4791. },
  4792. [
  4793. {
  4794. name: "Normal",
  4795. height: math.unit(5 + 5 / 6, "feet"),
  4796. default: true
  4797. },
  4798. {
  4799. name: "Lamp",
  4800. height: math.unit(50, "feet")
  4801. },
  4802. {
  4803. name: "Lämp",
  4804. height: math.unit(300, "feet")
  4805. },
  4806. {
  4807. name: "The sun is a lamp",
  4808. height: math.unit(250000, "miles")
  4809. },
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4814. {
  4815. front: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(50, "lbs"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/huoyan/front.svg"
  4821. }
  4822. },
  4823. side: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(180, "lbs"),
  4826. name: "Side",
  4827. image: {
  4828. source: "./media/characters/huoyan/side.svg"
  4829. }
  4830. },
  4831. },
  4832. [
  4833. {
  4834. name: "Chef",
  4835. height: math.unit(9, "feet")
  4836. },
  4837. {
  4838. name: "Normal",
  4839. height: math.unit(65, "feet"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Macro",
  4844. height: math.unit(780, "feet")
  4845. },
  4846. {
  4847. name: "Flaming Mountain",
  4848. height: math.unit(4.8, "miles")
  4849. },
  4850. {
  4851. name: "Celestial",
  4852. height: math.unit(765000, "miles")
  4853. },
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(5 + 3 / 4, "feet"),
  4861. weight: math.unit(120, "lbs"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/tails/front.svg"
  4865. }
  4866. }
  4867. },
  4868. [
  4869. {
  4870. name: "Normal",
  4871. height: math.unit(5 + 3 / 4, "feet"),
  4872. default: true
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4878. {
  4879. front: {
  4880. height: math.unit(4, "feet"),
  4881. weight: math.unit(50, "lbs"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/rainy/front.svg"
  4885. }
  4886. }
  4887. },
  4888. [
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(800, "feet"),
  4892. default: true
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4898. {
  4899. front: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(150, "lbs"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/rainier/front.svg"
  4905. }
  4906. }
  4907. },
  4908. [
  4909. {
  4910. name: "Micro",
  4911. height: math.unit(2, "mm"),
  4912. default: true
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(180, "lbs"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/andy/front.svg"
  4925. }
  4926. }
  4927. },
  4928. [
  4929. {
  4930. name: "Normal",
  4931. height: math.unit(8, "feet"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Macro",
  4936. height: math.unit(1000, "feet")
  4937. },
  4938. {
  4939. name: "Megamacro",
  4940. height: math.unit(5, "miles")
  4941. },
  4942. {
  4943. name: "Gigamacro",
  4944. height: math.unit(5000, "miles")
  4945. },
  4946. ]
  4947. ))
  4948. characterMakers.push(() => makeCharacter(
  4949. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4950. {
  4951. front: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(210, "lbs"),
  4954. name: "Front",
  4955. image: {
  4956. source: "./media/characters/cimmaron/front-sfw.svg",
  4957. extra: 701 / 676,
  4958. bottom: 0.046
  4959. }
  4960. },
  4961. back: {
  4962. height: math.unit(6, "feet"),
  4963. weight: math.unit(210, "lbs"),
  4964. name: "Back",
  4965. image: {
  4966. source: "./media/characters/cimmaron/back-sfw.svg",
  4967. extra: 701 / 676,
  4968. bottom: 0.046
  4969. }
  4970. },
  4971. frontNsfw: {
  4972. height: math.unit(6, "feet"),
  4973. weight: math.unit(210, "lbs"),
  4974. name: "Front (NSFW)",
  4975. image: {
  4976. source: "./media/characters/cimmaron/front-nsfw.svg",
  4977. extra: 701 / 676,
  4978. bottom: 0.046
  4979. }
  4980. },
  4981. backNsfw: {
  4982. height: math.unit(6, "feet"),
  4983. weight: math.unit(210, "lbs"),
  4984. name: "Back (NSFW)",
  4985. image: {
  4986. source: "./media/characters/cimmaron/back-nsfw.svg",
  4987. extra: 701 / 676,
  4988. bottom: 0.046
  4989. }
  4990. },
  4991. dick: {
  4992. height: math.unit(1.714, "feet"),
  4993. name: "Dick",
  4994. image: {
  4995. source: "./media/characters/cimmaron/dick.svg"
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(6, "feet"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Macro Mayor",
  5007. height: math.unit(350, "meters")
  5008. },
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(200, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/akari/front.svg",
  5020. extra: 962 / 901,
  5021. bottom: 0.04
  5022. }
  5023. }
  5024. },
  5025. [
  5026. {
  5027. name: "Micro",
  5028. height: math.unit(5, "inches"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "Normal",
  5033. height: math.unit(7, "feet")
  5034. },
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5039. {
  5040. front: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(140, "lbs"),
  5043. name: "Front",
  5044. image: {
  5045. source: "./media/characters/cynosura/front.svg",
  5046. extra: 896 / 847
  5047. }
  5048. },
  5049. back: {
  5050. height: math.unit(6, "feet"),
  5051. weight: math.unit(140, "lbs"),
  5052. name: "Back",
  5053. image: {
  5054. source: "./media/characters/cynosura/back.svg",
  5055. extra: 1365 / 1250
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Micro",
  5062. height: math.unit(4, "inches")
  5063. },
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(5.75, "feet"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Tall",
  5071. height: math.unit(10, "feet")
  5072. },
  5073. {
  5074. name: "Big",
  5075. height: math.unit(20, "feet")
  5076. },
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(50, "feet")
  5080. },
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5085. {
  5086. front: {
  5087. height: math.unit(6, "feet"),
  5088. weight: math.unit(170, "lbs"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/gin/front.svg",
  5092. extra: 1.053,
  5093. bottom: 0.025
  5094. }
  5095. },
  5096. foot: {
  5097. height: math.unit(6 / 4.25, "feet"),
  5098. name: "Foot",
  5099. image: {
  5100. source: "./media/characters/gin/foot.svg"
  5101. }
  5102. },
  5103. sole: {
  5104. height: math.unit(6 / 4.40, "feet"),
  5105. name: "Sole",
  5106. image: {
  5107. source: "./media/characters/gin/sole.svg"
  5108. }
  5109. },
  5110. },
  5111. [
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(13 + 2 / 12, "feet")
  5115. },
  5116. {
  5117. name: "Macro",
  5118. height: math.unit(1500, "feet")
  5119. },
  5120. {
  5121. name: "Megamacro",
  5122. height: math.unit(200, "miles"),
  5123. default: true
  5124. },
  5125. {
  5126. name: "Gigamacro",
  5127. height: math.unit(500, "megameters")
  5128. },
  5129. {
  5130. name: "Teramacro",
  5131. height: math.unit(15, "lightyears")
  5132. }
  5133. ]
  5134. ))
  5135. characterMakers.push(() => makeCharacter(
  5136. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5137. {
  5138. front: {
  5139. height: math.unit(6 + 1 / 6, "feet"),
  5140. weight: math.unit(178, "lbs"),
  5141. name: "Front",
  5142. image: {
  5143. source: "./media/characters/guy/front.svg"
  5144. }
  5145. }
  5146. },
  5147. [
  5148. {
  5149. name: "Normal",
  5150. height: math.unit(6 + 1 / 6, "feet"),
  5151. default: true
  5152. },
  5153. {
  5154. name: "Large",
  5155. height: math.unit(25 + 7 / 12, "feet")
  5156. },
  5157. {
  5158. name: "Macro",
  5159. height: math.unit(60 + 9 / 12, "feet")
  5160. },
  5161. {
  5162. name: "Macro+",
  5163. height: math.unit(246, "feet")
  5164. },
  5165. {
  5166. name: "Macro++",
  5167. height: math.unit(878, "feet")
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5173. {
  5174. front: {
  5175. height: math.unit(9, "feet"),
  5176. weight: math.unit(800, "lbs"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/tiberius/front.svg",
  5180. extra: 2295 / 2071
  5181. }
  5182. },
  5183. back: {
  5184. height: math.unit(9, "feet"),
  5185. weight: math.unit(800, "lbs"),
  5186. name: "Back",
  5187. image: {
  5188. source: "./media/characters/tiberius/back.svg",
  5189. extra: 2373 / 2160
  5190. }
  5191. },
  5192. },
  5193. [
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(9, "feet"),
  5197. default: true
  5198. }
  5199. ]
  5200. ))
  5201. characterMakers.push(() => makeCharacter(
  5202. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5203. {
  5204. front: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(600, "lbs"),
  5207. name: "Front",
  5208. image: {
  5209. source: "./media/characters/surgo/front.svg",
  5210. extra: 3591 / 2227
  5211. }
  5212. },
  5213. back: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(600, "lbs"),
  5216. name: "Back",
  5217. image: {
  5218. source: "./media/characters/surgo/back.svg",
  5219. extra: 3557 / 2228
  5220. }
  5221. },
  5222. laying: {
  5223. height: math.unit(6 * 0.85, "feet"),
  5224. weight: math.unit(600, "lbs"),
  5225. name: "Laying",
  5226. image: {
  5227. source: "./media/characters/surgo/laying.svg"
  5228. }
  5229. },
  5230. },
  5231. [
  5232. {
  5233. name: "Normal",
  5234. height: math.unit(6, "feet"),
  5235. default: true
  5236. }
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5241. {
  5242. side: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(150, "lbs"),
  5245. name: "Side",
  5246. image: {
  5247. source: "./media/characters/cibus/side.svg",
  5248. extra: 800 / 400
  5249. }
  5250. },
  5251. },
  5252. [
  5253. {
  5254. name: "Normal",
  5255. height: math.unit(6, "feet"),
  5256. default: true
  5257. }
  5258. ]
  5259. ))
  5260. characterMakers.push(() => makeCharacter(
  5261. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5262. {
  5263. front: {
  5264. height: math.unit(6, "feet"),
  5265. weight: math.unit(240, "lbs"),
  5266. name: "Front",
  5267. image: {
  5268. source: "./media/characters/nibbles/front.svg"
  5269. }
  5270. },
  5271. side: {
  5272. height: math.unit(6, "feet"),
  5273. weight: math.unit(240, "lbs"),
  5274. name: "Side",
  5275. image: {
  5276. source: "./media/characters/nibbles/side.svg"
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(9, "feet"),
  5284. default: true
  5285. }
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5290. {
  5291. side: {
  5292. height: math.unit(5 + 1 / 6, "feet"),
  5293. weight: math.unit(130, "lbs"),
  5294. name: "Side",
  5295. image: {
  5296. source: "./media/characters/rikky/side.svg"
  5297. }
  5298. },
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(5 + 1 / 6, "feet")
  5304. },
  5305. {
  5306. name: "Macro",
  5307. height: math.unit(152, "feet"),
  5308. default: true
  5309. },
  5310. {
  5311. name: "Megamacro",
  5312. height: math.unit(7, "miles")
  5313. }
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5318. {
  5319. side: {
  5320. height: math.unit(370, "cm"),
  5321. weight: math.unit(350, "lbs"),
  5322. name: "Side",
  5323. image: {
  5324. source: "./media/characters/malfressa/side.svg"
  5325. }
  5326. },
  5327. walking: {
  5328. height: math.unit(370, "cm"),
  5329. weight: math.unit(350, "lbs"),
  5330. name: "Walking",
  5331. image: {
  5332. source: "./media/characters/malfressa/walking.svg"
  5333. }
  5334. },
  5335. feral: {
  5336. height: math.unit(2500, "cm"),
  5337. weight: math.unit(100000, "lbs"),
  5338. name: "Feral",
  5339. image: {
  5340. source: "./media/characters/malfressa/feral.svg",
  5341. extra: 2108 / 837,
  5342. bottom: 0.02
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(370, "cm")
  5350. },
  5351. {
  5352. name: "Macro",
  5353. height: math.unit(300, "meters"),
  5354. default: true
  5355. }
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5360. {
  5361. front: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(60, "kg"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/jaro/front.svg"
  5367. }
  5368. },
  5369. back: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(60, "kg"),
  5372. name: "Back",
  5373. image: {
  5374. source: "./media/characters/jaro/back.svg"
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Micro",
  5381. height: math.unit(7, "inches")
  5382. },
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(5.5, "feet"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Minimacro",
  5390. height: math.unit(20, "feet")
  5391. },
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(200, "meters")
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(195, "lb"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/rogue/front.svg"
  5407. }
  5408. },
  5409. },
  5410. [
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(90, "feet"),
  5414. default: true
  5415. },
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5420. {
  5421. front: {
  5422. height: math.unit(5 + 8 / 12, "feet"),
  5423. weight: math.unit(140, "lb"),
  5424. name: "Front",
  5425. image: {
  5426. source: "./media/characters/piper/front.svg",
  5427. extra: 3928 / 3681
  5428. }
  5429. },
  5430. },
  5431. [
  5432. {
  5433. name: "Micro",
  5434. height: math.unit(2, "inches")
  5435. },
  5436. {
  5437. name: "Normal",
  5438. height: math.unit(5 + 8 / 12, "feet")
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(250, "feet"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Megamacro",
  5447. height: math.unit(7, "miles")
  5448. },
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5453. {
  5454. front: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(220, "lb"),
  5457. name: "Front",
  5458. image: {
  5459. source: "./media/characters/gemini/front.svg"
  5460. }
  5461. },
  5462. back: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(220, "lb"),
  5465. name: "Back",
  5466. image: {
  5467. source: "./media/characters/gemini/back.svg"
  5468. }
  5469. },
  5470. kneeling: {
  5471. height: math.unit(6 / 1.5, "feet"),
  5472. weight: math.unit(220, "lb"),
  5473. name: "Kneeling",
  5474. image: {
  5475. source: "./media/characters/gemini/kneeling.svg",
  5476. bottom: 0.02
  5477. }
  5478. },
  5479. },
  5480. [
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(300, "meters"),
  5484. default: true
  5485. },
  5486. {
  5487. name: "Megamacro",
  5488. height: math.unit(6900, "meters")
  5489. },
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5494. {
  5495. anthro: {
  5496. height: math.unit(2.35, "meters"),
  5497. weight: math.unit(73, "kg"),
  5498. name: "Anthro",
  5499. image: {
  5500. source: "./media/characters/alicia/anthro.svg",
  5501. extra: 2571 / 2385,
  5502. bottom: 75 / 2648
  5503. }
  5504. },
  5505. paw: {
  5506. height: math.unit(1.32, "feet"),
  5507. name: "Paw",
  5508. image: {
  5509. source: "./media/characters/alicia/paw.svg"
  5510. }
  5511. },
  5512. feral: {
  5513. height: math.unit(1.69, "meters"),
  5514. weight: math.unit(73, "kg"),
  5515. name: "Feral",
  5516. image: {
  5517. source: "./media/characters/alicia/feral.svg",
  5518. extra: 2123 / 1715,
  5519. bottom: 222 / 2349
  5520. }
  5521. },
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(2.35, "meters")
  5527. },
  5528. {
  5529. name: "Macro",
  5530. height: math.unit(60, "meters"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "Megamacro",
  5535. height: math.unit(10000, "kilometers")
  5536. },
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5541. {
  5542. front: {
  5543. height: math.unit(7, "feet"),
  5544. weight: math.unit(250, "lbs"),
  5545. name: "Front",
  5546. image: {
  5547. source: "./media/characters/archy/front.svg"
  5548. }
  5549. }
  5550. },
  5551. [
  5552. {
  5553. name: "Micro",
  5554. height: math.unit(1, "inch")
  5555. },
  5556. {
  5557. name: "Shorty",
  5558. height: math.unit(5, "feet")
  5559. },
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(7, "feet")
  5563. },
  5564. {
  5565. name: "Macro",
  5566. height: math.unit(600, "meters"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Megamacro",
  5571. height: math.unit(1, "mile")
  5572. },
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(1.65, "meters"),
  5580. weight: math.unit(74, "kg"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/berri/front.svg",
  5584. extra: 857 / 837,
  5585. bottom: 18 / 877
  5586. }
  5587. },
  5588. bum: {
  5589. height: math.unit(1.46, "feet"),
  5590. name: "Bum",
  5591. image: {
  5592. source: "./media/characters/berri/bum.svg"
  5593. }
  5594. },
  5595. mouth: {
  5596. height: math.unit(0.44, "feet"),
  5597. name: "Mouth",
  5598. image: {
  5599. source: "./media/characters/berri/mouth.svg"
  5600. }
  5601. },
  5602. paw: {
  5603. height: math.unit(0.826, "feet"),
  5604. name: "Paw",
  5605. image: {
  5606. source: "./media/characters/berri/paw.svg"
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Normal",
  5613. height: math.unit(1.65, "meters")
  5614. },
  5615. {
  5616. name: "Macro",
  5617. height: math.unit(60, "m"),
  5618. default: true
  5619. },
  5620. {
  5621. name: "Megamacro",
  5622. height: math.unit(9.213, "km")
  5623. },
  5624. {
  5625. name: "Planet Eater",
  5626. height: math.unit(489, "megameters")
  5627. },
  5628. {
  5629. name: "Teramacro",
  5630. height: math.unit(2471635000000, "meters")
  5631. },
  5632. {
  5633. name: "Examacro",
  5634. height: math.unit(8.0624e+26, "meters")
  5635. }
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5640. {
  5641. front: {
  5642. height: math.unit(1.72, "meters"),
  5643. weight: math.unit(68, "kg"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/lexi/front.svg"
  5647. }
  5648. }
  5649. },
  5650. [
  5651. {
  5652. name: "Very Smol",
  5653. height: math.unit(10, "mm")
  5654. },
  5655. {
  5656. name: "Micro",
  5657. height: math.unit(6.8, "cm"),
  5658. default: true
  5659. },
  5660. {
  5661. name: "Normal",
  5662. height: math.unit(1.72, "m")
  5663. }
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5668. {
  5669. front: {
  5670. height: math.unit(1.69, "meters"),
  5671. weight: math.unit(68, "kg"),
  5672. name: "Front",
  5673. image: {
  5674. source: "./media/characters/martin/front.svg",
  5675. extra: 596 / 581
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Micro",
  5682. height: math.unit(6.85, "cm"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(1.69, "m")
  5688. }
  5689. ]
  5690. ))
  5691. characterMakers.push(() => makeCharacter(
  5692. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5693. {
  5694. front: {
  5695. height: math.unit(1.69, "meters"),
  5696. weight: math.unit(68, "kg"),
  5697. name: "Front",
  5698. image: {
  5699. source: "./media/characters/juno/front.svg"
  5700. }
  5701. }
  5702. },
  5703. [
  5704. {
  5705. name: "Micro",
  5706. height: math.unit(7, "cm")
  5707. },
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(1.89, "m")
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(353, "meters"),
  5715. default: true
  5716. }
  5717. ]
  5718. ))
  5719. characterMakers.push(() => makeCharacter(
  5720. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5721. {
  5722. front: {
  5723. height: math.unit(1.93, "meters"),
  5724. weight: math.unit(83, "kg"),
  5725. name: "Front",
  5726. image: {
  5727. source: "./media/characters/samantha/front.svg"
  5728. }
  5729. },
  5730. frontClothed: {
  5731. height: math.unit(1.93, "meters"),
  5732. weight: math.unit(83, "kg"),
  5733. name: "Front (Clothed)",
  5734. image: {
  5735. source: "./media/characters/samantha/front-clothed.svg"
  5736. }
  5737. },
  5738. back: {
  5739. height: math.unit(1.93, "meters"),
  5740. weight: math.unit(83, "kg"),
  5741. name: "Back",
  5742. image: {
  5743. source: "./media/characters/samantha/back.svg"
  5744. }
  5745. },
  5746. },
  5747. [
  5748. {
  5749. name: "Normal",
  5750. height: math.unit(1.93, "m")
  5751. },
  5752. {
  5753. name: "Macro",
  5754. height: math.unit(74, "meters"),
  5755. default: true
  5756. },
  5757. {
  5758. name: "Macro+",
  5759. height: math.unit(223, "meters"),
  5760. },
  5761. {
  5762. name: "Megamacro",
  5763. height: math.unit(8381, "meters"),
  5764. },
  5765. {
  5766. name: "Megamacro+",
  5767. height: math.unit(12000, "kilometers")
  5768. },
  5769. ]
  5770. ))
  5771. characterMakers.push(() => makeCharacter(
  5772. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5773. {
  5774. front: {
  5775. height: math.unit(1.92, "meters"),
  5776. weight: math.unit(80, "kg"),
  5777. name: "Front",
  5778. image: {
  5779. source: "./media/characters/dr-clay/front.svg"
  5780. }
  5781. },
  5782. frontClothed: {
  5783. height: math.unit(1.92, "meters"),
  5784. weight: math.unit(80, "kg"),
  5785. name: "Front (Clothed)",
  5786. image: {
  5787. source: "./media/characters/dr-clay/front-clothed.svg"
  5788. }
  5789. }
  5790. },
  5791. [
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(1.92, "m")
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(214, "meters"),
  5799. default: true
  5800. },
  5801. {
  5802. name: "Macro+",
  5803. height: math.unit(12.237, "meters"),
  5804. },
  5805. {
  5806. name: "Megamacro",
  5807. height: math.unit(557, "megameters"),
  5808. },
  5809. {
  5810. name: "Unimaginable",
  5811. height: math.unit(120e9, "lightyears")
  5812. },
  5813. ]
  5814. ))
  5815. characterMakers.push(() => makeCharacter(
  5816. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5817. {
  5818. front: {
  5819. height: math.unit(2, "meters"),
  5820. weight: math.unit(80, "kg"),
  5821. name: "Front",
  5822. image: {
  5823. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5824. }
  5825. }
  5826. },
  5827. [
  5828. {
  5829. name: "Teramacro",
  5830. height: math.unit(500000, "lightyears"),
  5831. default: true
  5832. },
  5833. ]
  5834. ))
  5835. characterMakers.push(() => makeCharacter(
  5836. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5837. {
  5838. front: {
  5839. height: math.unit(2, "meters"),
  5840. weight: math.unit(150, "kg"),
  5841. name: "Front",
  5842. image: {
  5843. source: "./media/characters/vemus/front.svg",
  5844. extra: 2384 / 2084,
  5845. bottom: 0.0123
  5846. }
  5847. }
  5848. },
  5849. [
  5850. {
  5851. name: "Normal",
  5852. height: math.unit(3.75, "meters"),
  5853. default: true
  5854. },
  5855. {
  5856. name: "Big",
  5857. height: math.unit(8, "meters")
  5858. },
  5859. {
  5860. name: "Macro",
  5861. height: math.unit(100, "meters")
  5862. },
  5863. {
  5864. name: "Macro+",
  5865. height: math.unit(1500, "meters")
  5866. },
  5867. {
  5868. name: "Stellar",
  5869. height: math.unit(14e8, "meters")
  5870. },
  5871. ]
  5872. ))
  5873. characterMakers.push(() => makeCharacter(
  5874. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5875. {
  5876. front: {
  5877. height: math.unit(2, "meters"),
  5878. weight: math.unit(70, "kg"),
  5879. name: "Front",
  5880. image: {
  5881. source: "./media/characters/beherit/front.svg",
  5882. extra: 1408 / 1242
  5883. }
  5884. }
  5885. },
  5886. [
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(6, "feet")
  5890. },
  5891. {
  5892. name: "Lorg",
  5893. height: math.unit(25, "feet"),
  5894. default: true
  5895. },
  5896. {
  5897. name: "Lorger",
  5898. height: math.unit(75, "feet")
  5899. },
  5900. {
  5901. name: "Macro",
  5902. height: math.unit(200, "meters")
  5903. },
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5908. {
  5909. front: {
  5910. height: math.unit(2, "meters"),
  5911. weight: math.unit(150, "kg"),
  5912. name: "Front",
  5913. image: {
  5914. source: "./media/characters/everett/front.svg",
  5915. extra: 2038 / 1737,
  5916. bottom: 0.03
  5917. }
  5918. },
  5919. paw: {
  5920. height: math.unit(2 / 3.6, "meters"),
  5921. name: "Paw",
  5922. image: {
  5923. source: "./media/characters/everett/paw.svg"
  5924. }
  5925. },
  5926. },
  5927. [
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(15, "feet"),
  5931. default: true
  5932. },
  5933. {
  5934. name: "Lorg",
  5935. height: math.unit(70, "feet"),
  5936. default: true
  5937. },
  5938. {
  5939. name: "Lorger",
  5940. height: math.unit(250, "feet")
  5941. },
  5942. {
  5943. name: "Macro",
  5944. height: math.unit(500, "meters")
  5945. },
  5946. ]
  5947. ))
  5948. characterMakers.push(() => makeCharacter(
  5949. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5950. {
  5951. front: {
  5952. height: math.unit(2, "meters"),
  5953. weight: math.unit(86, "kg"),
  5954. name: "Front",
  5955. image: {
  5956. source: "./media/characters/rose-lion/front.svg"
  5957. }
  5958. },
  5959. bent: {
  5960. height: math.unit(2 / 1.4288, "meters"),
  5961. weight: math.unit(86, "kg"),
  5962. name: "Bent",
  5963. image: {
  5964. source: "./media/characters/rose-lion/bent.svg"
  5965. }
  5966. }
  5967. },
  5968. [
  5969. {
  5970. name: "Mini-Micro",
  5971. height: math.unit(1, "cm")
  5972. },
  5973. {
  5974. name: "Micro",
  5975. height: math.unit(3.5, "inches"),
  5976. default: true
  5977. },
  5978. {
  5979. name: "Normal",
  5980. height: math.unit(6 + 1 / 6, "feet")
  5981. },
  5982. {
  5983. name: "Mini-Macro",
  5984. height: math.unit(9 + 10 / 12, "feet")
  5985. },
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5990. {
  5991. front: {
  5992. height: math.unit(2, "meters"),
  5993. weight: math.unit(350, "lbs"),
  5994. name: "Front",
  5995. image: {
  5996. source: "./media/characters/regal/front.svg"
  5997. }
  5998. },
  5999. back: {
  6000. height: math.unit(2, "meters"),
  6001. weight: math.unit(350, "lbs"),
  6002. name: "Back",
  6003. image: {
  6004. source: "./media/characters/regal/back.svg"
  6005. }
  6006. },
  6007. },
  6008. [
  6009. {
  6010. name: "Macro",
  6011. height: math.unit(350, "feet"),
  6012. default: true
  6013. }
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6018. {
  6019. front: {
  6020. height: math.unit(4 + 11 / 12, "feet"),
  6021. weight: math.unit(100, "lbs"),
  6022. name: "Front",
  6023. image: {
  6024. source: "./media/characters/opal/front.svg"
  6025. }
  6026. },
  6027. frontAlt: {
  6028. height: math.unit(4 + 11 / 12, "feet"),
  6029. weight: math.unit(100, "lbs"),
  6030. name: "Front (Alt)",
  6031. image: {
  6032. source: "./media/characters/opal/front-alt.svg"
  6033. }
  6034. },
  6035. },
  6036. [
  6037. {
  6038. name: "Small",
  6039. height: math.unit(4 + 11 / 12, "feet")
  6040. },
  6041. {
  6042. name: "Normal",
  6043. height: math.unit(20, "feet"),
  6044. default: true
  6045. },
  6046. {
  6047. name: "Macro",
  6048. height: math.unit(120, "feet")
  6049. },
  6050. {
  6051. name: "Megamacro",
  6052. height: math.unit(80, "miles")
  6053. },
  6054. {
  6055. name: "True Size",
  6056. height: math.unit(100000, "lightyears")
  6057. },
  6058. ]
  6059. ))
  6060. characterMakers.push(() => makeCharacter(
  6061. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6062. {
  6063. front: {
  6064. height: math.unit(6, "feet"),
  6065. weight: math.unit(200, "lbs"),
  6066. name: "Front",
  6067. image: {
  6068. source: "./media/characters/vector-wuff/front.svg"
  6069. }
  6070. }
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(2.8, "meters")
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(450, "meters"),
  6080. default: true
  6081. },
  6082. {
  6083. name: "Megamacro",
  6084. height: math.unit(15, "kilometers")
  6085. }
  6086. ]
  6087. ))
  6088. characterMakers.push(() => makeCharacter(
  6089. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6090. {
  6091. front: {
  6092. height: math.unit(6, "feet"),
  6093. weight: math.unit(256, "lbs"),
  6094. name: "Front",
  6095. image: {
  6096. source: "./media/characters/dannik/front.svg"
  6097. }
  6098. }
  6099. },
  6100. [
  6101. {
  6102. name: "Macro",
  6103. height: math.unit(69.57, "meters"),
  6104. default: true
  6105. },
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6110. {
  6111. front: {
  6112. height: math.unit(6, "feet"),
  6113. weight: math.unit(120, "lbs"),
  6114. name: "Front",
  6115. image: {
  6116. source: "./media/characters/azura-saharah/front.svg"
  6117. }
  6118. },
  6119. back: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(120, "lbs"),
  6122. name: "Back",
  6123. image: {
  6124. source: "./media/characters/azura-saharah/back.svg"
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Macro",
  6131. height: math.unit(100, "feet"),
  6132. default: true
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6138. {
  6139. side: {
  6140. height: math.unit(5 + 4 / 12, "feet"),
  6141. weight: math.unit(163, "lbs"),
  6142. name: "Side",
  6143. image: {
  6144. source: "./media/characters/kennedy/side.svg"
  6145. }
  6146. }
  6147. },
  6148. [
  6149. {
  6150. name: "Standard Doggo",
  6151. height: math.unit(5 + 4 / 12, "feet")
  6152. },
  6153. {
  6154. name: "Big Doggo",
  6155. height: math.unit(25 + 3 / 12, "feet"),
  6156. default: true
  6157. },
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6162. {
  6163. front: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(90, "lbs"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/odi-lunar/front.svg"
  6169. }
  6170. }
  6171. },
  6172. [
  6173. {
  6174. name: "Micro",
  6175. height: math.unit(3, "inches"),
  6176. default: true
  6177. },
  6178. {
  6179. name: "Normal",
  6180. height: math.unit(5.5, "feet")
  6181. }
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6186. {
  6187. back: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(220, "lbs"),
  6190. name: "Back",
  6191. image: {
  6192. source: "./media/characters/mandake/back.svg"
  6193. }
  6194. }
  6195. },
  6196. [
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(7, "feet"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Macro",
  6204. height: math.unit(78, "feet")
  6205. },
  6206. {
  6207. name: "Macro+",
  6208. height: math.unit(300, "meters")
  6209. },
  6210. {
  6211. name: "Macro++",
  6212. height: math.unit(2400, "feet")
  6213. },
  6214. {
  6215. name: "Megamacro",
  6216. height: math.unit(5167, "meters")
  6217. },
  6218. {
  6219. name: "Gigamacro",
  6220. height: math.unit(41769, "miles")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(120, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/yozey/front.svg"
  6233. }
  6234. },
  6235. frontAlt: {
  6236. height: math.unit(6, "feet"),
  6237. weight: math.unit(120, "lbs"),
  6238. name: "Front (Alt)",
  6239. image: {
  6240. source: "./media/characters/yozey/front-alt.svg"
  6241. }
  6242. },
  6243. side: {
  6244. height: math.unit(6, "feet"),
  6245. weight: math.unit(120, "lbs"),
  6246. name: "Side",
  6247. image: {
  6248. source: "./media/characters/yozey/side.svg"
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Micro",
  6255. height: math.unit(3, "inches"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(6, "feet")
  6261. }
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(103, "lbs"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/valeska-voss/front.svg"
  6273. }
  6274. }
  6275. },
  6276. [
  6277. {
  6278. name: "Mini-Sized Sub",
  6279. height: math.unit(3.1, "inches")
  6280. },
  6281. {
  6282. name: "Mid-Sized Sub",
  6283. height: math.unit(6.2, "inches")
  6284. },
  6285. {
  6286. name: "Full-Sized Sub",
  6287. height: math.unit(9.3, "inches")
  6288. },
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(5 + 2 / 12, "foot"),
  6292. default: true
  6293. },
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6298. {
  6299. front: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(160, "lbs"),
  6302. name: "Front",
  6303. image: {
  6304. source: "./media/characters/gene-zeta/front.svg",
  6305. bottom: 0.03,
  6306. extra: 1
  6307. }
  6308. }
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(6.25, "foot"),
  6314. default: true
  6315. },
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(350, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/razinox/front.svg",
  6327. extra: 1686 / 1548,
  6328. bottom: 28.2 / 1868
  6329. }
  6330. },
  6331. back: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(350, "lbs"),
  6334. name: "Back",
  6335. image: {
  6336. source: "./media/characters/razinox/back.svg",
  6337. extra: 1660 / 1590,
  6338. bottom: 15 / 1665
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(10 + 8 / 12, "foot")
  6346. },
  6347. {
  6348. name: "Minimacro",
  6349. height: math.unit(15, "foot")
  6350. },
  6351. {
  6352. name: "Macro",
  6353. height: math.unit(60, "foot"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Megamacro",
  6358. height: math.unit(5, "miles")
  6359. },
  6360. {
  6361. name: "Gigamacro",
  6362. height: math.unit(6000, "miles")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6368. {
  6369. front: {
  6370. height: math.unit(6, "feet"),
  6371. weight: math.unit(150, "lbs"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/cobalt/front.svg"
  6375. }
  6376. }
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(8 + 1 / 12, "foot")
  6382. },
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(111, "foot"),
  6386. default: true
  6387. },
  6388. {
  6389. name: "Supracosmic",
  6390. height: math.unit(1e42, "feet")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(140, "lbs"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/amanda/front.svg"
  6403. }
  6404. }
  6405. },
  6406. [
  6407. {
  6408. name: "Micro",
  6409. height: math.unit(5, "inches"),
  6410. default: true
  6411. },
  6412. ]
  6413. ))
  6414. characterMakers.push(() => makeCharacter(
  6415. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6416. {
  6417. front: {
  6418. height: math.unit(5.59, "feet"),
  6419. weight: math.unit(250, "lbs"),
  6420. name: "Front",
  6421. image: {
  6422. source: "./media/characters/teal/front.svg"
  6423. }
  6424. },
  6425. frontAlt: {
  6426. height: math.unit(6, "feet"),
  6427. weight: math.unit(250, "lbs"),
  6428. name: "Front (Alt)",
  6429. image: {
  6430. source: "./media/characters/teal/front-alt.svg",
  6431. bottom: 0.04,
  6432. extra: 1
  6433. }
  6434. },
  6435. },
  6436. [
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(12, "feet"),
  6440. default: true
  6441. },
  6442. {
  6443. name: "Macro",
  6444. height: math.unit(300, "feet")
  6445. },
  6446. ]
  6447. ))
  6448. characterMakers.push(() => makeCharacter(
  6449. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6450. {
  6451. frontCat: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(180, "lbs"),
  6454. name: "Front (Cat)",
  6455. image: {
  6456. source: "./media/characters/ravin-amulet/front-cat.svg"
  6457. }
  6458. },
  6459. frontCatAlt: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(180, "lbs"),
  6462. name: "Front (Alt, Cat)",
  6463. image: {
  6464. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6465. }
  6466. },
  6467. frontWerewolf: {
  6468. height: math.unit(6 * 1.2, "feet"),
  6469. weight: math.unit(225, "lbs"),
  6470. name: "Front (Werewolf)",
  6471. image: {
  6472. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6473. }
  6474. },
  6475. backWerewolf: {
  6476. height: math.unit(6 * 1.2, "feet"),
  6477. weight: math.unit(225, "lbs"),
  6478. name: "Back (Werewolf)",
  6479. image: {
  6480. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6481. }
  6482. },
  6483. },
  6484. [
  6485. {
  6486. name: "Nano",
  6487. height: math.unit(1, "micrometer")
  6488. },
  6489. {
  6490. name: "Micro",
  6491. height: math.unit(1, "inch")
  6492. },
  6493. {
  6494. name: "Normal",
  6495. height: math.unit(6, "feet"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Macro",
  6500. height: math.unit(60, "feet")
  6501. }
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6506. {
  6507. front: {
  6508. height: math.unit(6, "feet"),
  6509. weight: math.unit(165, "lbs"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/fluoresce/front.svg"
  6513. }
  6514. }
  6515. },
  6516. [
  6517. {
  6518. name: "Micro",
  6519. height: math.unit(6, "cm")
  6520. },
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(5 + 7 / 12, "feet"),
  6524. default: true
  6525. },
  6526. {
  6527. name: "Macro",
  6528. height: math.unit(56, "feet")
  6529. },
  6530. {
  6531. name: "Megamacro",
  6532. height: math.unit(1.9, "miles")
  6533. },
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6538. {
  6539. front: {
  6540. height: math.unit(9 + 6 / 12, "feet"),
  6541. weight: math.unit(523, "lbs"),
  6542. name: "Side",
  6543. image: {
  6544. source: "./media/characters/aurora/side.svg"
  6545. }
  6546. }
  6547. },
  6548. [
  6549. {
  6550. name: "Normal",
  6551. height: math.unit(9 + 6 / 12, "feet")
  6552. },
  6553. {
  6554. name: "Macro",
  6555. height: math.unit(96, "feet"),
  6556. default: true
  6557. },
  6558. {
  6559. name: "Macro+",
  6560. height: math.unit(243, "feet")
  6561. },
  6562. ]
  6563. ))
  6564. characterMakers.push(() => makeCharacter(
  6565. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6566. {
  6567. front: {
  6568. height: math.unit(194, "cm"),
  6569. weight: math.unit(90, "kg"),
  6570. name: "Front",
  6571. image: {
  6572. source: "./media/characters/ranek/front.svg"
  6573. }
  6574. },
  6575. side: {
  6576. height: math.unit(194, "cm"),
  6577. weight: math.unit(90, "kg"),
  6578. name: "Side",
  6579. image: {
  6580. source: "./media/characters/ranek/side.svg"
  6581. }
  6582. },
  6583. back: {
  6584. height: math.unit(194, "cm"),
  6585. weight: math.unit(90, "kg"),
  6586. name: "Back",
  6587. image: {
  6588. source: "./media/characters/ranek/back.svg"
  6589. }
  6590. },
  6591. feral: {
  6592. height: math.unit(30, "cm"),
  6593. weight: math.unit(1.6, "lbs"),
  6594. name: "Feral",
  6595. image: {
  6596. source: "./media/characters/ranek/feral.svg"
  6597. }
  6598. },
  6599. },
  6600. [
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(194, "cm"),
  6604. default: true
  6605. },
  6606. {
  6607. name: "Macro",
  6608. height: math.unit(100, "meters")
  6609. },
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6614. {
  6615. front: {
  6616. height: math.unit(5 + 6 / 12, "feet"),
  6617. weight: math.unit(153, "lbs"),
  6618. name: "Front",
  6619. image: {
  6620. source: "./media/characters/andrew-cooper/front.svg"
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Nano",
  6627. height: math.unit(1, "mm")
  6628. },
  6629. {
  6630. name: "Micro",
  6631. height: math.unit(2, "inches")
  6632. },
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(5 + 6 / 12, "feet"),
  6636. default: true
  6637. }
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(180, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/akane-sato/front.svg",
  6649. extra: 1219 / 1140
  6650. }
  6651. },
  6652. back: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(180, "lbs"),
  6655. name: "Back",
  6656. image: {
  6657. source: "./media/characters/akane-sato/back.svg",
  6658. extra: 1219 / 1170
  6659. }
  6660. },
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(2.5, "meters")
  6666. },
  6667. {
  6668. name: "Macro",
  6669. height: math.unit(250, "meters"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Megamacro",
  6674. height: math.unit(25, "km")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(65, "kg"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/rook/front.svg",
  6687. extra: 960 / 950
  6688. }
  6689. }
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(8.8, "feet")
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(88, "feet"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Megamacro",
  6703. height: math.unit(8, "miles")
  6704. },
  6705. ]
  6706. ))
  6707. characterMakers.push(() => makeCharacter(
  6708. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6709. {
  6710. front: {
  6711. height: math.unit(12 + 2 / 12, "feet"),
  6712. weight: math.unit(808, "lbs"),
  6713. name: "Front",
  6714. image: {
  6715. source: "./media/characters/prodigy/front.svg"
  6716. }
  6717. }
  6718. },
  6719. [
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(12 + 2 / 12, "feet"),
  6723. default: true
  6724. },
  6725. {
  6726. name: "Macro",
  6727. height: math.unit(143, "feet")
  6728. },
  6729. {
  6730. name: "Macro+",
  6731. height: math.unit(400, "feet")
  6732. },
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(6, "feet"),
  6740. weight: math.unit(225, "lbs"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/daniel/front.svg"
  6744. }
  6745. },
  6746. leaning: {
  6747. height: math.unit(6, "feet"),
  6748. weight: math.unit(225, "lbs"),
  6749. name: "Leaning",
  6750. image: {
  6751. source: "./media/characters/daniel/leaning.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(1000, "feet"),
  6759. default: true
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6765. {
  6766. front: {
  6767. height: math.unit(6, "feet"),
  6768. weight: math.unit(88, "lbs"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/chiros/front.svg",
  6772. extra: 306 / 226
  6773. }
  6774. },
  6775. side: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(88, "lbs"),
  6778. name: "Side",
  6779. image: {
  6780. source: "./media/characters/chiros/side.svg",
  6781. extra: 306 / 226
  6782. }
  6783. },
  6784. },
  6785. [
  6786. {
  6787. name: "Normal",
  6788. height: math.unit(6, "cm"),
  6789. default: true
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6795. {
  6796. front: {
  6797. height: math.unit(6, "feet"),
  6798. weight: math.unit(100, "lbs"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/selka/front.svg",
  6802. extra: 947 / 887
  6803. }
  6804. }
  6805. },
  6806. [
  6807. {
  6808. name: "Normal",
  6809. height: math.unit(5, "cm"),
  6810. default: true
  6811. },
  6812. ]
  6813. ))
  6814. characterMakers.push(() => makeCharacter(
  6815. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6816. {
  6817. front: {
  6818. height: math.unit(8 + 3 / 12, "feet"),
  6819. weight: math.unit(424, "lbs"),
  6820. name: "Front",
  6821. image: {
  6822. source: "./media/characters/verin/front.svg",
  6823. extra: 1845 / 1550
  6824. }
  6825. },
  6826. frontArmored: {
  6827. height: math.unit(8 + 3 / 12, "feet"),
  6828. weight: math.unit(424, "lbs"),
  6829. name: "Front (Armored)",
  6830. image: {
  6831. source: "./media/characters/verin/front-armor.svg",
  6832. extra: 1845 / 1550,
  6833. bottom: 0.01
  6834. }
  6835. },
  6836. back: {
  6837. height: math.unit(8 + 3 / 12, "feet"),
  6838. weight: math.unit(424, "lbs"),
  6839. name: "Back",
  6840. image: {
  6841. source: "./media/characters/verin/back.svg",
  6842. bottom: 0.1,
  6843. extra: 1
  6844. }
  6845. },
  6846. foot: {
  6847. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6848. name: "Foot",
  6849. image: {
  6850. source: "./media/characters/verin/foot.svg"
  6851. }
  6852. },
  6853. },
  6854. [
  6855. {
  6856. name: "Normal",
  6857. height: math.unit(8 + 3 / 12, "feet")
  6858. },
  6859. {
  6860. name: "Minimacro",
  6861. height: math.unit(21, "feet"),
  6862. default: true
  6863. },
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(626, "feet")
  6867. },
  6868. ]
  6869. ))
  6870. characterMakers.push(() => makeCharacter(
  6871. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6872. {
  6873. front: {
  6874. height: math.unit(2.718, "meters"),
  6875. weight: math.unit(150, "lbs"),
  6876. name: "Front",
  6877. image: {
  6878. source: "./media/characters/sovrim-terraquian/front.svg"
  6879. }
  6880. },
  6881. back: {
  6882. height: math.unit(2.718, "meters"),
  6883. weight: math.unit(150, "lbs"),
  6884. name: "Back",
  6885. image: {
  6886. source: "./media/characters/sovrim-terraquian/back.svg"
  6887. }
  6888. }
  6889. },
  6890. [
  6891. {
  6892. name: "Micro",
  6893. height: math.unit(2, "inches")
  6894. },
  6895. {
  6896. name: "Small",
  6897. height: math.unit(1, "meter")
  6898. },
  6899. {
  6900. name: "Normal",
  6901. height: math.unit(Math.E, "meters"),
  6902. default: true
  6903. },
  6904. {
  6905. name: "Macro",
  6906. height: math.unit(20, "meters")
  6907. },
  6908. {
  6909. name: "Macro+",
  6910. height: math.unit(400, "meters")
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(7, "feet"),
  6919. weight: math.unit(489, "lbs"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/reece-silvermane/front.svg",
  6923. bottom: 0.02,
  6924. extra: 1
  6925. }
  6926. },
  6927. },
  6928. [
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(1.5, "miles"),
  6932. default: true
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6938. {
  6939. front: {
  6940. height: math.unit(6, "feet"),
  6941. weight: math.unit(78, "kg"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/kane/front.svg",
  6945. extra: 978 / 899
  6946. }
  6947. },
  6948. },
  6949. [
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(2.1, "m"),
  6953. },
  6954. {
  6955. name: "Macro",
  6956. height: math.unit(1, "km"),
  6957. default: true
  6958. },
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6963. {
  6964. front: {
  6965. height: math.unit(6, "feet"),
  6966. weight: math.unit(200, "kg"),
  6967. name: "Front",
  6968. image: {
  6969. source: "./media/characters/tegon/front.svg",
  6970. bottom: 0.01,
  6971. extra: 1
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Micro",
  6978. height: math.unit(1, "inch")
  6979. },
  6980. {
  6981. name: "Normal",
  6982. height: math.unit(6 + 3 / 12, "feet"),
  6983. default: true
  6984. },
  6985. {
  6986. name: "Macro",
  6987. height: math.unit(300, "feet")
  6988. },
  6989. {
  6990. name: "Megamacro",
  6991. height: math.unit(69, "miles")
  6992. },
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6997. {
  6998. side: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(2304, "lbs"),
  7001. name: "Side",
  7002. image: {
  7003. source: "./media/characters/arcturax/side.svg",
  7004. extra: 790 / 376,
  7005. bottom: 0.01
  7006. }
  7007. },
  7008. },
  7009. [
  7010. {
  7011. name: "Micro",
  7012. height: math.unit(2, "inch")
  7013. },
  7014. {
  7015. name: "Normal",
  7016. height: math.unit(6, "feet")
  7017. },
  7018. {
  7019. name: "Macro",
  7020. height: math.unit(39, "feet"),
  7021. default: true
  7022. },
  7023. {
  7024. name: "Megamacro",
  7025. height: math.unit(7, "miles")
  7026. },
  7027. ]
  7028. ))
  7029. characterMakers.push(() => makeCharacter(
  7030. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7031. {
  7032. front: {
  7033. height: math.unit(6, "feet"),
  7034. weight: math.unit(50, "lbs"),
  7035. name: "Front",
  7036. image: {
  7037. source: "./media/characters/sentri/front.svg",
  7038. extra: 1750 / 1570,
  7039. bottom: 0.025
  7040. }
  7041. },
  7042. frontAlt: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(50, "lbs"),
  7045. name: "Front (Alt)",
  7046. image: {
  7047. source: "./media/characters/sentri/front-alt.svg",
  7048. extra: 1750 / 1570,
  7049. bottom: 0.025
  7050. }
  7051. },
  7052. },
  7053. [
  7054. {
  7055. name: "Normal",
  7056. height: math.unit(15, "feet"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Macro",
  7061. height: math.unit(2500, "feet")
  7062. }
  7063. ]
  7064. ))
  7065. characterMakers.push(() => makeCharacter(
  7066. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7067. {
  7068. front: {
  7069. height: math.unit(5 + 8 / 12, "feet"),
  7070. weight: math.unit(130, "lbs"),
  7071. name: "Front",
  7072. image: {
  7073. source: "./media/characters/corvin/front.svg",
  7074. extra: 1803 / 1629
  7075. }
  7076. },
  7077. frontShirt: {
  7078. height: math.unit(5 + 8 / 12, "feet"),
  7079. weight: math.unit(130, "lbs"),
  7080. name: "Front (Shirt)",
  7081. image: {
  7082. source: "./media/characters/corvin/front-shirt.svg",
  7083. extra: 1803 / 1629
  7084. }
  7085. },
  7086. frontPoncho: {
  7087. height: math.unit(5 + 8 / 12, "feet"),
  7088. weight: math.unit(130, "lbs"),
  7089. name: "Front (Poncho)",
  7090. image: {
  7091. source: "./media/characters/corvin/front-poncho.svg",
  7092. extra: 1803 / 1629
  7093. }
  7094. },
  7095. side: {
  7096. height: math.unit(5 + 8 / 12, "feet"),
  7097. weight: math.unit(130, "lbs"),
  7098. name: "Side",
  7099. image: {
  7100. source: "./media/characters/corvin/side.svg",
  7101. extra: 1012 / 945
  7102. }
  7103. },
  7104. back: {
  7105. height: math.unit(5 + 8 / 12, "feet"),
  7106. weight: math.unit(130, "lbs"),
  7107. name: "Back",
  7108. image: {
  7109. source: "./media/characters/corvin/back.svg",
  7110. extra: 1803 / 1629
  7111. }
  7112. },
  7113. },
  7114. [
  7115. {
  7116. name: "Micro",
  7117. height: math.unit(3, "inches")
  7118. },
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(5 + 8 / 12, "feet")
  7122. },
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(300, "feet"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Megamacro",
  7130. height: math.unit(500, "miles")
  7131. }
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7136. {
  7137. front: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(135, "lbs"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/q/front.svg",
  7143. extra: 854 / 752,
  7144. bottom: 0.005
  7145. }
  7146. },
  7147. back: {
  7148. height: math.unit(6, "feet"),
  7149. weight: math.unit(130, "lbs"),
  7150. name: "Back",
  7151. image: {
  7152. source: "./media/characters/q/back.svg",
  7153. extra: 854 / 752
  7154. }
  7155. },
  7156. },
  7157. [
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(90, "feet"),
  7161. default: true
  7162. },
  7163. {
  7164. name: "Extra Macro",
  7165. height: math.unit(300, "feet"),
  7166. },
  7167. {
  7168. name: "BIG WALF",
  7169. height: math.unit(750, "feet"),
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(6, "feet"),
  7178. weight: math.unit(150, "lbs"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/carley/front.svg",
  7182. extra: 3927 / 3540,
  7183. bottom: 0.03
  7184. }
  7185. }
  7186. },
  7187. [
  7188. {
  7189. name: "Normal",
  7190. height: math.unit(6 + 3 / 12, "feet")
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(185, "feet"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Megamacro",
  7199. height: math.unit(8, "miles"),
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(3, "feet"),
  7208. weight: math.unit(28, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/citrine/front.svg"
  7212. }
  7213. }
  7214. },
  7215. [
  7216. {
  7217. name: "Normal",
  7218. height: math.unit(3, "feet"),
  7219. default: true
  7220. }
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7225. {
  7226. front: {
  7227. height: math.unit(14, "feet"),
  7228. weight: math.unit(1450, "kg"),
  7229. capacity: math.unit(15, "people"),
  7230. name: "Front",
  7231. image: {
  7232. source: "./media/characters/aura-starwind/front.svg",
  7233. extra: 1455 / 1335
  7234. }
  7235. },
  7236. side: {
  7237. height: math.unit(14, "feet"),
  7238. weight: math.unit(1450, "kg"),
  7239. capacity: math.unit(15, "people"),
  7240. name: "Side",
  7241. image: {
  7242. source: "./media/characters/aura-starwind/side.svg",
  7243. extra: 1654 / 1497
  7244. }
  7245. },
  7246. taur: {
  7247. height: math.unit(18, "feet"),
  7248. weight: math.unit(5500, "kg"),
  7249. capacity: math.unit(50, "people"),
  7250. name: "Taur",
  7251. image: {
  7252. source: "./media/characters/aura-starwind/taur.svg",
  7253. extra: 1760 / 1650
  7254. }
  7255. },
  7256. feral: {
  7257. height: math.unit(46, "feet"),
  7258. weight: math.unit(25000, "kg"),
  7259. capacity: math.unit(120, "people"),
  7260. name: "Feral",
  7261. image: {
  7262. source: "./media/characters/aura-starwind/feral.svg"
  7263. }
  7264. },
  7265. },
  7266. [
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(14, "feet"),
  7270. default: true
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(50, "meters")
  7275. },
  7276. {
  7277. name: "Megamacro",
  7278. height: math.unit(5000, "meters")
  7279. },
  7280. {
  7281. name: "Gigamacro",
  7282. height: math.unit(100000, "kilometers")
  7283. },
  7284. ]
  7285. ))
  7286. characterMakers.push(() => makeCharacter(
  7287. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7288. {
  7289. front: {
  7290. height: math.unit(2 + 7 / 12, "feet"),
  7291. weight: math.unit(32, "lbs"),
  7292. name: "Front",
  7293. image: {
  7294. source: "./media/characters/rivet/front.svg",
  7295. extra: 1716 / 1658,
  7296. bottom: 0.03
  7297. }
  7298. },
  7299. foot: {
  7300. height: math.unit(0.551, "feet"),
  7301. name: "Rivet's Foot",
  7302. image: {
  7303. source: "./media/characters/rivet/foot.svg"
  7304. },
  7305. rename: true
  7306. }
  7307. },
  7308. [
  7309. {
  7310. name: "Micro",
  7311. height: math.unit(1.5, "inches"),
  7312. },
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(2 + 7 / 12, "feet"),
  7316. default: true
  7317. },
  7318. {
  7319. name: "Macro",
  7320. height: math.unit(85, "feet")
  7321. },
  7322. {
  7323. name: "Megamacro",
  7324. height: math.unit(2.2, "km")
  7325. }
  7326. ]
  7327. ))
  7328. characterMakers.push(() => makeCharacter(
  7329. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7330. {
  7331. front: {
  7332. height: math.unit(5 + 9 / 12, "feet"),
  7333. weight: math.unit(150, "lbs"),
  7334. name: "Front",
  7335. image: {
  7336. source: "./media/characters/coffee/front.svg",
  7337. extra: 3666 / 3032,
  7338. bottom: 0.04
  7339. }
  7340. },
  7341. foot: {
  7342. height: math.unit(1.29, "feet"),
  7343. name: "Foot",
  7344. image: {
  7345. source: "./media/characters/coffee/foot.svg"
  7346. }
  7347. },
  7348. },
  7349. [
  7350. {
  7351. name: "Micro",
  7352. height: math.unit(2, "inches"),
  7353. },
  7354. {
  7355. name: "Normal",
  7356. height: math.unit(5 + 9 / 12, "feet"),
  7357. default: true
  7358. },
  7359. {
  7360. name: "Macro",
  7361. height: math.unit(800, "feet")
  7362. },
  7363. {
  7364. name: "Megamacro",
  7365. height: math.unit(25, "miles")
  7366. }
  7367. ]
  7368. ))
  7369. characterMakers.push(() => makeCharacter(
  7370. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7371. {
  7372. front: {
  7373. height: math.unit(6, "feet"),
  7374. weight: math.unit(200, "lbs"),
  7375. name: "Front",
  7376. image: {
  7377. source: "./media/characters/chari-gal/front.svg",
  7378. extra: 1568 / 1385,
  7379. bottom: 0.047
  7380. }
  7381. },
  7382. gigantamax: {
  7383. height: math.unit(6 * 16, "feet"),
  7384. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7385. name: "Gigantamax",
  7386. image: {
  7387. source: "./media/characters/chari-gal/gigantamax.svg",
  7388. extra: 1124 / 888,
  7389. bottom: 0.03
  7390. }
  7391. },
  7392. },
  7393. [
  7394. {
  7395. name: "Normal",
  7396. height: math.unit(5 + 7 / 12, "feet")
  7397. },
  7398. {
  7399. name: "Macro",
  7400. height: math.unit(200, "feet"),
  7401. default: true
  7402. }
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(6, "feet"),
  7410. weight: math.unit(150, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/nova/front.svg",
  7414. extra: 5000 / 4722,
  7415. bottom: 0.02
  7416. }
  7417. }
  7418. },
  7419. [
  7420. {
  7421. name: "Micro-",
  7422. height: math.unit(0.8, "inches")
  7423. },
  7424. {
  7425. name: "Micro",
  7426. height: math.unit(2, "inches"),
  7427. default: true
  7428. },
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7433. {
  7434. front: {
  7435. height: math.unit(3 + 1 / 12, "feet"),
  7436. weight: math.unit(21.7, "lbs"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/argent/front.svg",
  7440. extra: 1471 / 1331,
  7441. bottom: 100.8 / 1575.5
  7442. }
  7443. }
  7444. },
  7445. [
  7446. {
  7447. name: "Micro",
  7448. height: math.unit(2, "inches")
  7449. },
  7450. {
  7451. name: "Normal",
  7452. height: math.unit(3 + 1 / 12, "feet"),
  7453. default: true
  7454. },
  7455. {
  7456. name: "Macro",
  7457. height: math.unit(120, "feet")
  7458. },
  7459. ]
  7460. ))
  7461. characterMakers.push(() => makeCharacter(
  7462. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7463. {
  7464. lamp: {
  7465. height: math.unit(7 * 1559 / 989, "feet"),
  7466. name: "Magic Lamp",
  7467. image: {
  7468. source: "./media/characters/mira-al-cul/lamp.svg",
  7469. extra: 1617 / 1559
  7470. }
  7471. },
  7472. front: {
  7473. height: math.unit(7, "feet"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/mira-al-cul/front.svg",
  7477. extra: 1044 / 990
  7478. }
  7479. },
  7480. },
  7481. [
  7482. {
  7483. name: "Heavily Restricted",
  7484. height: math.unit(7 * 1559 / 989, "feet")
  7485. },
  7486. {
  7487. name: "Freshly Freed",
  7488. height: math.unit(50 * 1559 / 989, "feet")
  7489. },
  7490. {
  7491. name: "World Encompassing",
  7492. height: math.unit(10000 * 1559 / 989, "miles")
  7493. },
  7494. {
  7495. name: "Galactic",
  7496. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7497. },
  7498. {
  7499. name: "Palmed Universe",
  7500. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7501. default: true
  7502. },
  7503. {
  7504. name: "Multiversal Matriarch",
  7505. height: math.unit(8.87e10, "yottameters")
  7506. },
  7507. {
  7508. name: "Void Mother",
  7509. height: math.unit(3.14e110, "yottaparsecs")
  7510. },
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7515. {
  7516. front: {
  7517. height: math.unit(17 + 1 / 12, "feet"),
  7518. weight: math.unit(476.2 * 5, "lbs"),
  7519. name: "Front",
  7520. image: {
  7521. source: "./media/characters/kuro-shi-uchū/front.svg",
  7522. extra: 2329 / 1835,
  7523. bottom: 0.02
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Micro",
  7530. height: math.unit(2, "inches")
  7531. },
  7532. {
  7533. name: "Normal",
  7534. height: math.unit(12, "meters")
  7535. },
  7536. {
  7537. name: "Planetary",
  7538. height: math.unit(0.00929, "AU"),
  7539. default: true
  7540. },
  7541. {
  7542. name: "Universal",
  7543. height: math.unit(20, "gigaparsecs")
  7544. },
  7545. ]
  7546. ))
  7547. characterMakers.push(() => makeCharacter(
  7548. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7549. {
  7550. front: {
  7551. height: math.unit(5 + 2 / 12, "feet"),
  7552. weight: math.unit(120, "lbs"),
  7553. name: "Front",
  7554. image: {
  7555. source: "./media/characters/katherine/front.svg",
  7556. extra: 2075 / 1969
  7557. }
  7558. },
  7559. dress: {
  7560. height: math.unit(5 + 2 / 12, "feet"),
  7561. weight: math.unit(120, "lbs"),
  7562. name: "Dress",
  7563. image: {
  7564. source: "./media/characters/katherine/dress.svg",
  7565. extra: 2258 / 2064
  7566. }
  7567. },
  7568. },
  7569. [
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(1, "inches"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(5 + 2 / 12, "feet")
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(100, "meters")
  7582. },
  7583. {
  7584. name: "Megamacro",
  7585. height: math.unit(80, "miles")
  7586. },
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7591. {
  7592. front: {
  7593. height: math.unit(7 + 8 / 12, "feet"),
  7594. weight: math.unit(250, "lbs"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/yevis/front.svg",
  7598. extra: 1938 / 1755
  7599. }
  7600. }
  7601. },
  7602. [
  7603. {
  7604. name: "Mortal",
  7605. height: math.unit(7 + 8 / 12, "feet")
  7606. },
  7607. {
  7608. name: "Battle",
  7609. height: math.unit(25 + 11 / 12, "feet")
  7610. },
  7611. {
  7612. name: "Wrath",
  7613. height: math.unit(1654 + 11 / 12, "feet")
  7614. },
  7615. {
  7616. name: "Planet Destroyer",
  7617. height: math.unit(12000, "miles")
  7618. },
  7619. {
  7620. name: "Galaxy Conqueror",
  7621. height: math.unit(1.45, "zettameters"),
  7622. default: true
  7623. },
  7624. {
  7625. name: "Universal War",
  7626. height: math.unit(184, "gigaparsecs")
  7627. },
  7628. {
  7629. name: "Eternity War",
  7630. height: math.unit(1.98e55, "yottaparsecs")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(5 + 8 / 12, "feet"),
  7639. weight: math.unit(63, "kg"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/xavier/front.svg",
  7643. extra: 944 / 883
  7644. }
  7645. },
  7646. frontStretch: {
  7647. height: math.unit(5 + 8 / 12, "feet"),
  7648. weight: math.unit(63, "kg"),
  7649. name: "Stretching",
  7650. image: {
  7651. source: "./media/characters/xavier/front-stretch.svg",
  7652. extra: 962 / 820
  7653. }
  7654. },
  7655. },
  7656. [
  7657. {
  7658. name: "Normal",
  7659. height: math.unit(5 + 8 / 12, "feet")
  7660. },
  7661. {
  7662. name: "Macro",
  7663. height: math.unit(100, "meters"),
  7664. default: true
  7665. },
  7666. {
  7667. name: "McLargeHuge",
  7668. height: math.unit(10, "miles")
  7669. },
  7670. ]
  7671. ))
  7672. characterMakers.push(() => makeCharacter(
  7673. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7674. {
  7675. front: {
  7676. height: math.unit(5 + 5 / 12, "feet"),
  7677. weight: math.unit(150, "lb"),
  7678. name: "Front",
  7679. image: {
  7680. source: "./media/characters/joshii/front.svg"
  7681. }
  7682. },
  7683. foot: {
  7684. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7685. name: "Foot",
  7686. image: {
  7687. source: "./media/characters/joshii/foot.svg"
  7688. }
  7689. },
  7690. },
  7691. [
  7692. {
  7693. name: "Micro",
  7694. height: math.unit(2, "inches")
  7695. },
  7696. {
  7697. name: "Normal",
  7698. height: math.unit(5 + 5 / 12, "feet"),
  7699. default: true
  7700. },
  7701. {
  7702. name: "Macro",
  7703. height: math.unit(785, "feet")
  7704. },
  7705. {
  7706. name: "Megamacro",
  7707. height: math.unit(24.5, "miles")
  7708. },
  7709. ]
  7710. ))
  7711. characterMakers.push(() => makeCharacter(
  7712. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7713. {
  7714. front: {
  7715. height: math.unit(6, "feet"),
  7716. weight: math.unit(150, "lb"),
  7717. name: "Front",
  7718. image: {
  7719. source: "./media/characters/goddess-elizabeth/front.svg",
  7720. extra: 1800 / 1525,
  7721. bottom: 0.005
  7722. }
  7723. },
  7724. foot: {
  7725. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7726. name: "Foot",
  7727. image: {
  7728. source: "./media/characters/goddess-elizabeth/foot.svg"
  7729. }
  7730. },
  7731. mouth: {
  7732. height: math.unit(6, "feet"),
  7733. name: "Mouth",
  7734. image: {
  7735. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7736. }
  7737. },
  7738. },
  7739. [
  7740. {
  7741. name: "Micro",
  7742. height: math.unit(12, "feet")
  7743. },
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(80, "miles"),
  7747. default: true
  7748. },
  7749. {
  7750. name: "Macro",
  7751. height: math.unit(15000, "parsecs")
  7752. },
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7757. {
  7758. front: {
  7759. height: math.unit(5 + 9 / 12, "feet"),
  7760. weight: math.unit(144, "lb"),
  7761. name: "Front",
  7762. image: {
  7763. source: "./media/characters/kara/front.svg"
  7764. }
  7765. },
  7766. feet: {
  7767. height: math.unit(6 / 6.765, "feet"),
  7768. name: "Kara's Feet",
  7769. rename: true,
  7770. image: {
  7771. source: "./media/characters/kara/feet.svg"
  7772. }
  7773. },
  7774. },
  7775. [
  7776. {
  7777. name: "Normal",
  7778. height: math.unit(5 + 9 / 12, "feet")
  7779. },
  7780. {
  7781. name: "Macro",
  7782. height: math.unit(174, "feet"),
  7783. default: true
  7784. },
  7785. ]
  7786. ))
  7787. characterMakers.push(() => makeCharacter(
  7788. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7789. {
  7790. front: {
  7791. height: math.unit(18, "feet"),
  7792. weight: math.unit(4050, "lb"),
  7793. name: "Front",
  7794. image: {
  7795. source: "./media/characters/tyrone/front.svg",
  7796. extra: 2520 / 2402,
  7797. bottom: 0.025
  7798. }
  7799. },
  7800. },
  7801. [
  7802. {
  7803. name: "Normal",
  7804. height: math.unit(18, "feet"),
  7805. default: true
  7806. },
  7807. {
  7808. name: "Macro",
  7809. height: math.unit(300, "feet")
  7810. },
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7815. {
  7816. front: {
  7817. height: math.unit(7 + 8 / 12, "feet"),
  7818. weight: math.unit(120, "lb"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/danny/front.svg",
  7822. extra: 1490 / 1350
  7823. }
  7824. },
  7825. back: {
  7826. height: math.unit(7 + 8 / 12, "feet"),
  7827. weight: math.unit(120, "lb"),
  7828. name: "Back",
  7829. image: {
  7830. source: "./media/characters/danny/back.svg",
  7831. extra: 1490 / 1350
  7832. }
  7833. },
  7834. },
  7835. [
  7836. {
  7837. name: "Normal",
  7838. height: math.unit(7 + 8 / 12, "feet"),
  7839. default: true
  7840. },
  7841. ]
  7842. ))
  7843. characterMakers.push(() => makeCharacter(
  7844. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7845. {
  7846. front: {
  7847. height: math.unit(3.5, "inches"),
  7848. weight: math.unit(19, "grams"),
  7849. name: "Front",
  7850. image: {
  7851. source: "./media/characters/mallow/front.svg",
  7852. extra: 471 / 431
  7853. }
  7854. },
  7855. back: {
  7856. height: math.unit(3.5, "inches"),
  7857. weight: math.unit(19, "grams"),
  7858. name: "Back",
  7859. image: {
  7860. source: "./media/characters/mallow/back.svg",
  7861. extra: 471 / 431
  7862. }
  7863. },
  7864. },
  7865. [
  7866. {
  7867. name: "Normal",
  7868. height: math.unit(3.5, "inches"),
  7869. default: true
  7870. },
  7871. ]
  7872. ))
  7873. characterMakers.push(() => makeCharacter(
  7874. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7875. {
  7876. front: {
  7877. height: math.unit(9, "feet"),
  7878. weight: math.unit(230, "kg"),
  7879. name: "Front",
  7880. image: {
  7881. source: "./media/characters/starry-aqua/front.svg"
  7882. }
  7883. },
  7884. back: {
  7885. height: math.unit(9, "feet"),
  7886. weight: math.unit(230, "kg"),
  7887. name: "Back",
  7888. image: {
  7889. source: "./media/characters/starry-aqua/back.svg"
  7890. }
  7891. },
  7892. hand: {
  7893. height: math.unit(9 * 0.1168, "feet"),
  7894. name: "Hand",
  7895. image: {
  7896. source: "./media/characters/starry-aqua/hand.svg"
  7897. }
  7898. },
  7899. foot: {
  7900. height: math.unit(9 * 0.18, "feet"),
  7901. name: "Foot",
  7902. image: {
  7903. source: "./media/characters/starry-aqua/foot.svg"
  7904. }
  7905. }
  7906. },
  7907. [
  7908. {
  7909. name: "Micro",
  7910. height: math.unit(3, "inches")
  7911. },
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(9, "feet")
  7915. },
  7916. {
  7917. name: "Macro",
  7918. height: math.unit(300, "feet"),
  7919. default: true
  7920. },
  7921. {
  7922. name: "Megamacro",
  7923. height: math.unit(3200, "feet")
  7924. }
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(6, "feet"),
  7932. weight: math.unit(230, "lb"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/luka/front.svg",
  7936. extra: 1,
  7937. bottom: 0.025
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(12 + 8 / 12, "feet"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Minimacro",
  7949. height: math.unit(20, "feet")
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(250, "feet")
  7954. },
  7955. {
  7956. name: "Megamacro",
  7957. height: math.unit(5, "miles")
  7958. },
  7959. {
  7960. name: "Gigamacro",
  7961. height: math.unit(8000, "miles")
  7962. },
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(6, "feet"),
  7970. weight: math.unit(150, "lb"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/natalie-nightring/front.svg",
  7974. extra: 1,
  7975. bottom: 0.06
  7976. }
  7977. },
  7978. },
  7979. [
  7980. {
  7981. name: "Uh Oh",
  7982. height: math.unit(0.1, "mm")
  7983. },
  7984. {
  7985. name: "Small",
  7986. height: math.unit(3, "inches")
  7987. },
  7988. {
  7989. name: "Human Scale",
  7990. height: math.unit(6, "feet")
  7991. },
  7992. {
  7993. name: "Librarian",
  7994. height: math.unit(50, "feet"),
  7995. default: true
  7996. },
  7997. {
  7998. name: "Immense",
  7999. height: math.unit(200, "miles")
  8000. },
  8001. ]
  8002. ))
  8003. characterMakers.push(() => makeCharacter(
  8004. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8005. {
  8006. front: {
  8007. height: math.unit(6, "feet"),
  8008. weight: math.unit(180, "lbs"),
  8009. name: "Front",
  8010. image: {
  8011. source: "./media/characters/danni-rosie/front.svg",
  8012. extra: 1260 / 1128,
  8013. bottom: 0.022
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Micro",
  8020. height: math.unit(2, "inches"),
  8021. default: true
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(5 + 9 / 12, "feet"),
  8030. weight: math.unit(220, "lb"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/samantha-kruse/front.svg",
  8034. extra: (985 / 935),
  8035. bottom: 0.03
  8036. }
  8037. },
  8038. frontUndressed: {
  8039. height: math.unit(5 + 9 / 12, "feet"),
  8040. weight: math.unit(220, "lb"),
  8041. name: "Front (Undressed)",
  8042. image: {
  8043. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8044. extra: (973 / 923),
  8045. bottom: 0.025
  8046. }
  8047. },
  8048. fat: {
  8049. height: math.unit(5 + 9 / 12, "feet"),
  8050. weight: math.unit(900, "lb"),
  8051. name: "Front (Fat)",
  8052. image: {
  8053. source: "./media/characters/samantha-kruse/fat.svg",
  8054. extra: 2688 / 2561
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Normal",
  8061. height: math.unit(5 + 9 / 12, "feet"),
  8062. default: true
  8063. }
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8068. {
  8069. back: {
  8070. height: math.unit(5 + 4 / 12, "feet"),
  8071. weight: math.unit(4963, "lb"),
  8072. name: "Back",
  8073. image: {
  8074. source: "./media/characters/amelia-rosie/back.svg",
  8075. extra: 1113 / 963,
  8076. bottom: 0.01
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Level 0",
  8083. height: math.unit(5 + 4 / 12, "feet")
  8084. },
  8085. {
  8086. name: "Level 1",
  8087. height: math.unit(164597, "feet"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Level 2",
  8092. height: math.unit(956243, "miles")
  8093. },
  8094. {
  8095. name: "Level 3",
  8096. height: math.unit(29421709423, "miles")
  8097. },
  8098. {
  8099. name: "Level 4",
  8100. height: math.unit(154, "lightyears")
  8101. },
  8102. {
  8103. name: "Level 5",
  8104. height: math.unit(4738272, "lightyears")
  8105. },
  8106. {
  8107. name: "Level 6",
  8108. height: math.unit(145787152896, "lightyears")
  8109. },
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(5 + 11 / 12, "feet"),
  8117. weight: math.unit(65, "kg"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/rook-kitara/front.svg",
  8121. extra: 1347 / 1274,
  8122. bottom: 0.005
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Totally Unfair",
  8129. height: math.unit(1.8, "mm")
  8130. },
  8131. {
  8132. name: "Lap Rookie",
  8133. height: math.unit(1.4, "feet")
  8134. },
  8135. {
  8136. name: "Normal",
  8137. height: math.unit(5 + 11 / 12, "feet"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "How Did This Happen",
  8142. height: math.unit(80, "miles")
  8143. }
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(7, "feet"),
  8151. weight: math.unit(300, "lb"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/pisces/front.svg",
  8155. extra: 2255 / 2115,
  8156. bottom: 0.03
  8157. }
  8158. },
  8159. back: {
  8160. height: math.unit(7, "feet"),
  8161. weight: math.unit(300, "lb"),
  8162. name: "Back",
  8163. image: {
  8164. source: "./media/characters/pisces/back.svg",
  8165. extra: 2146 / 2055,
  8166. bottom: 0.04
  8167. }
  8168. },
  8169. },
  8170. [
  8171. {
  8172. name: "Normal",
  8173. height: math.unit(7, "feet"),
  8174. default: true
  8175. },
  8176. {
  8177. name: "Swimming Pool",
  8178. height: math.unit(12.2, "meters")
  8179. },
  8180. {
  8181. name: "Olympic Swimming Pool",
  8182. height: math.unit(56.3, "meters")
  8183. },
  8184. {
  8185. name: "Lake Superior",
  8186. height: math.unit(93900, "meters")
  8187. },
  8188. {
  8189. name: "Mediterranean Sea",
  8190. height: math.unit(644457, "meters")
  8191. },
  8192. {
  8193. name: "World's Oceans",
  8194. height: math.unit(4567491, "meters")
  8195. },
  8196. ]
  8197. ))
  8198. characterMakers.push(() => makeCharacter(
  8199. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8200. {
  8201. front: {
  8202. height: math.unit(2.3, "meters"),
  8203. weight: math.unit(120, "kg"),
  8204. name: "Front",
  8205. image: {
  8206. source: "./media/characters/zelas/front.svg"
  8207. }
  8208. },
  8209. side: {
  8210. height: math.unit(2.3, "meters"),
  8211. weight: math.unit(120, "kg"),
  8212. name: "Side",
  8213. image: {
  8214. source: "./media/characters/zelas/side.svg"
  8215. }
  8216. },
  8217. back: {
  8218. height: math.unit(2.3, "meters"),
  8219. weight: math.unit(120, "kg"),
  8220. name: "Back",
  8221. image: {
  8222. source: "./media/characters/zelas/back.svg"
  8223. }
  8224. },
  8225. foot: {
  8226. height: math.unit(1.116, "feet"),
  8227. name: "Foot",
  8228. image: {
  8229. source: "./media/characters/zelas/foot.svg"
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(2.3, "meters")
  8237. },
  8238. {
  8239. name: "Macro",
  8240. height: math.unit(30, "meters"),
  8241. default: true
  8242. },
  8243. ]
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8247. {
  8248. front: {
  8249. height: math.unit(1, "inch"),
  8250. weight: math.unit(0.21, "grams"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/talbot/front.svg",
  8254. extra: 594 / 544
  8255. }
  8256. },
  8257. },
  8258. [
  8259. {
  8260. name: "Micro",
  8261. height: math.unit(1, "inch"),
  8262. default: true
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8268. {
  8269. front: {
  8270. height: math.unit(3 + 3 / 12, "feet"),
  8271. weight: math.unit(51.8, "lb"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/fliss/front.svg",
  8275. extra: 840 / 640
  8276. }
  8277. },
  8278. },
  8279. [
  8280. {
  8281. name: "Teeny Tiny",
  8282. height: math.unit(1, "mm")
  8283. },
  8284. {
  8285. name: "Small",
  8286. height: math.unit(1, "inch"),
  8287. default: true
  8288. },
  8289. {
  8290. name: "Standard Sylveon",
  8291. height: math.unit(3 + 3 / 12, "feet")
  8292. },
  8293. {
  8294. name: "Large Nuisance",
  8295. height: math.unit(33, "feet")
  8296. },
  8297. {
  8298. name: "City Filler",
  8299. height: math.unit(3000, "feet")
  8300. },
  8301. {
  8302. name: "New Horizon",
  8303. height: math.unit(6000, "miles")
  8304. },
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8309. {
  8310. front: {
  8311. height: math.unit(5, "cm"),
  8312. weight: math.unit(1.94, "g"),
  8313. name: "Front",
  8314. image: {
  8315. source: "./media/characters/fleta/front.svg",
  8316. extra: 835 / 803
  8317. }
  8318. },
  8319. back: {
  8320. height: math.unit(5, "cm"),
  8321. weight: math.unit(1.94, "g"),
  8322. name: "Back",
  8323. image: {
  8324. source: "./media/characters/fleta/back.svg",
  8325. extra: 835 / 803
  8326. }
  8327. },
  8328. },
  8329. [
  8330. {
  8331. name: "Micro",
  8332. height: math.unit(5, "cm"),
  8333. default: true
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(6, "feet"),
  8342. weight: math.unit(225, "lb"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/dominic/front.svg",
  8346. extra: 1770 / 1620,
  8347. bottom: 0.025
  8348. }
  8349. },
  8350. back: {
  8351. height: math.unit(6, "feet"),
  8352. weight: math.unit(225, "lb"),
  8353. name: "Back",
  8354. image: {
  8355. source: "./media/characters/dominic/back.svg",
  8356. extra: 1745 / 1620,
  8357. bottom: 0.065
  8358. }
  8359. },
  8360. },
  8361. [
  8362. {
  8363. name: "Nano",
  8364. height: math.unit(0.1, "mm")
  8365. },
  8366. {
  8367. name: "Micro-",
  8368. height: math.unit(1, "mm")
  8369. },
  8370. {
  8371. name: "Micro",
  8372. height: math.unit(4, "inches")
  8373. },
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(6 + 4 / 12, "feet"),
  8377. default: true
  8378. },
  8379. {
  8380. name: "Macro",
  8381. height: math.unit(115, "feet")
  8382. },
  8383. {
  8384. name: "Macro+",
  8385. height: math.unit(955, "feet")
  8386. },
  8387. {
  8388. name: "Megamacro",
  8389. height: math.unit(8990, "feet")
  8390. },
  8391. {
  8392. name: "Gigmacro",
  8393. height: math.unit(9310, "miles")
  8394. },
  8395. {
  8396. name: "Teramacro",
  8397. height: math.unit(1567005010, "miles")
  8398. },
  8399. {
  8400. name: "Examacro",
  8401. height: math.unit(1425, "parsecs")
  8402. },
  8403. ]
  8404. ))
  8405. characterMakers.push(() => makeCharacter(
  8406. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8407. {
  8408. front: {
  8409. height: math.unit(400, "feet"),
  8410. weight: math.unit(44444444, "lb"),
  8411. name: "Front",
  8412. image: {
  8413. source: "./media/characters/major-colonel/front.svg"
  8414. }
  8415. },
  8416. back: {
  8417. height: math.unit(400, "feet"),
  8418. weight: math.unit(44444444, "lb"),
  8419. name: "Back",
  8420. image: {
  8421. source: "./media/characters/major-colonel/back.svg"
  8422. }
  8423. },
  8424. },
  8425. [
  8426. {
  8427. name: "Macro",
  8428. height: math.unit(400, "feet"),
  8429. default: true
  8430. },
  8431. ]
  8432. ))
  8433. characterMakers.push(() => makeCharacter(
  8434. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8435. {
  8436. catFront: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(120, "lb"),
  8439. name: "Front (Cat Side)",
  8440. image: {
  8441. source: "./media/characters/axel-lycan/cat-front.svg",
  8442. extra: 430 / 402,
  8443. bottom: 43 / 472.35
  8444. }
  8445. },
  8446. catBack: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(120, "lb"),
  8449. name: "Back (Cat Side)",
  8450. image: {
  8451. source: "./media/characters/axel-lycan/cat-back.svg",
  8452. extra: 447 / 419,
  8453. bottom: 23.3 / 469
  8454. }
  8455. },
  8456. wolfFront: {
  8457. height: math.unit(6, "feet"),
  8458. weight: math.unit(120, "lb"),
  8459. name: "Front (Wolf Side)",
  8460. image: {
  8461. source: "./media/characters/axel-lycan/wolf-front.svg",
  8462. extra: 485 / 456,
  8463. bottom: 19 / 504
  8464. }
  8465. },
  8466. wolfBack: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(120, "lb"),
  8469. name: "Back (Wolf Side)",
  8470. image: {
  8471. source: "./media/characters/axel-lycan/wolf-back.svg",
  8472. extra: 475 / 438,
  8473. bottom: 39.2 / 514
  8474. }
  8475. },
  8476. },
  8477. [
  8478. {
  8479. name: "Macro",
  8480. height: math.unit(1, "km"),
  8481. default: true
  8482. },
  8483. ]
  8484. ))
  8485. characterMakers.push(() => makeCharacter(
  8486. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8487. {
  8488. front: {
  8489. height: math.unit(5 + 9 / 12, "feet"),
  8490. weight: math.unit(175, "lb"),
  8491. name: "Front",
  8492. image: {
  8493. source: "./media/characters/vanrel-hyena/front.svg",
  8494. extra: 1086 / 1010,
  8495. bottom: 0.04
  8496. }
  8497. },
  8498. },
  8499. [
  8500. {
  8501. name: "Normal",
  8502. height: math.unit(5 + 9 / 12, "feet"),
  8503. default: true
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(6, "feet"),
  8512. weight: math.unit(103, "lb"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/abbott-absol/front.svg",
  8516. extra: 2010 / 1842
  8517. }
  8518. },
  8519. },
  8520. [
  8521. {
  8522. name: "Megamicro",
  8523. height: math.unit(0.1, "mm")
  8524. },
  8525. {
  8526. name: "Micro",
  8527. height: math.unit(1, "inch")
  8528. },
  8529. {
  8530. name: "Normal",
  8531. height: math.unit(6, "feet"),
  8532. default: true
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(264, "lb"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/hector/front.svg",
  8545. extra: 2280 / 2130,
  8546. bottom: 0.07
  8547. }
  8548. },
  8549. },
  8550. [
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(12.25, "foot"),
  8554. default: true
  8555. },
  8556. {
  8557. name: "Macro",
  8558. height: math.unit(160, "feet")
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(6, "feet"),
  8567. weight: math.unit(150, "lb"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/sal/front.svg",
  8571. extra: 1846 / 1699,
  8572. bottom: 0.04
  8573. }
  8574. },
  8575. },
  8576. [
  8577. {
  8578. name: "Megamacro",
  8579. height: math.unit(10, "miles"),
  8580. default: true
  8581. },
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8586. {
  8587. front: {
  8588. height: math.unit(3, "meters"),
  8589. weight: math.unit(450, "kg"),
  8590. name: "front",
  8591. image: {
  8592. source: "./media/characters/ranger/front.svg",
  8593. extra: 2401 / 2243,
  8594. bottom: 0.05
  8595. }
  8596. },
  8597. },
  8598. [
  8599. {
  8600. name: "Normal",
  8601. height: math.unit(3, "meters"),
  8602. default: true
  8603. },
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8608. {
  8609. front: {
  8610. height: math.unit(14, "feet"),
  8611. weight: math.unit(800, "kg"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/theresa/front.svg",
  8615. extra: 3575 / 3346,
  8616. bottom: 0.03
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(14, "feet"),
  8624. default: true
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8630. {
  8631. front: {
  8632. height: math.unit(6, "feet"),
  8633. weight: math.unit(3, "kg"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/ine/front.svg",
  8637. extra: 678 / 539,
  8638. bottom: 0.023
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(2.265, "feet"),
  8646. default: true
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(5, "feet"),
  8655. weight: math.unit(30, "kg"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/vial/front.svg",
  8659. extra: 1365 / 1277,
  8660. bottom: 0.04
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Normal",
  8667. height: math.unit(5, "feet"),
  8668. default: true
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8674. {
  8675. side: {
  8676. height: math.unit(3.4, "meters"),
  8677. weight: math.unit(1000, "lb"),
  8678. name: "Side",
  8679. image: {
  8680. source: "./media/characters/rovoska/side.svg",
  8681. extra: 4403 / 1515
  8682. }
  8683. },
  8684. },
  8685. [
  8686. {
  8687. name: "Normal",
  8688. height: math.unit(3.4, "meters"),
  8689. default: true
  8690. },
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8695. {
  8696. front: {
  8697. height: math.unit(8, "feet"),
  8698. weight: math.unit(315, "lb"),
  8699. name: "Front",
  8700. image: {
  8701. source: "./media/characters/gunner-rotthbauer/front.svg"
  8702. }
  8703. },
  8704. back: {
  8705. height: math.unit(8, "feet"),
  8706. weight: math.unit(315, "lb"),
  8707. name: "Back",
  8708. image: {
  8709. source: "./media/characters/gunner-rotthbauer/back.svg"
  8710. }
  8711. },
  8712. },
  8713. [
  8714. {
  8715. name: "Micro",
  8716. height: math.unit(3.5, "inches")
  8717. },
  8718. {
  8719. name: "Normal",
  8720. height: math.unit(8, "feet"),
  8721. default: true
  8722. },
  8723. {
  8724. name: "Macro",
  8725. height: math.unit(250, "feet")
  8726. },
  8727. {
  8728. name: "Megamacro",
  8729. height: math.unit(1, "AU")
  8730. },
  8731. ]
  8732. ))
  8733. characterMakers.push(() => makeCharacter(
  8734. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8735. {
  8736. front: {
  8737. height: math.unit(5 + 5 / 12, "feet"),
  8738. weight: math.unit(140, "lb"),
  8739. name: "Front",
  8740. image: {
  8741. source: "./media/characters/allatia/front.svg",
  8742. extra: 1227 / 1180,
  8743. bottom: 0.027
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Normal",
  8750. height: math.unit(5 + 5 / 12, "feet")
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(250, "feet"),
  8755. default: true
  8756. },
  8757. {
  8758. name: "Megamacro",
  8759. height: math.unit(8, "miles")
  8760. }
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8765. {
  8766. front: {
  8767. height: math.unit(6, "feet"),
  8768. weight: math.unit(120, "lb"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/tene/front.svg",
  8772. extra: 1728 / 1578,
  8773. bottom: 0.022
  8774. }
  8775. },
  8776. stomping: {
  8777. height: math.unit(2.025, "meters"),
  8778. weight: math.unit(120, "lb"),
  8779. name: "Stomping",
  8780. image: {
  8781. source: "./media/characters/tene/stomping.svg",
  8782. extra: 938 / 873,
  8783. bottom: 0.01
  8784. }
  8785. },
  8786. sitting: {
  8787. height: math.unit(1, "meter"),
  8788. weight: math.unit(120, "lb"),
  8789. name: "Sitting",
  8790. image: {
  8791. source: "./media/characters/tene/sitting.svg",
  8792. extra: 437 / 415,
  8793. bottom: 0.1
  8794. }
  8795. },
  8796. feral: {
  8797. height: math.unit(3.9, "feet"),
  8798. weight: math.unit(250, "lb"),
  8799. name: "Feral",
  8800. image: {
  8801. source: "./media/characters/tene/feral.svg",
  8802. extra: 717 / 458,
  8803. bottom: 0.179
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Normal",
  8810. height: math.unit(6, "feet")
  8811. },
  8812. {
  8813. name: "Macro",
  8814. height: math.unit(300, "feet"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Megamacro",
  8819. height: math.unit(5, "miles")
  8820. },
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8825. {
  8826. side: {
  8827. height: math.unit(6, "feet"),
  8828. name: "Side",
  8829. image: {
  8830. source: "./media/characters/evander/side.svg",
  8831. extra: 877 / 477
  8832. }
  8833. },
  8834. },
  8835. [
  8836. {
  8837. name: "Normal",
  8838. height: math.unit(0.83, "meters"),
  8839. default: true
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(12, "feet"),
  8848. weight: math.unit(1000, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8852. extra: 1762 / 1611
  8853. }
  8854. },
  8855. back: {
  8856. height: math.unit(12, "feet"),
  8857. weight: math.unit(1000, "lb"),
  8858. name: "Back",
  8859. image: {
  8860. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8861. extra: 1762 / 1611
  8862. }
  8863. },
  8864. },
  8865. [
  8866. {
  8867. name: "Normal",
  8868. height: math.unit(12, "feet"),
  8869. default: true
  8870. },
  8871. {
  8872. name: "Kaiju",
  8873. height: math.unit(150, "feet")
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8879. {
  8880. front: {
  8881. height: math.unit(6, "feet"),
  8882. weight: math.unit(150, "lb"),
  8883. name: "Front",
  8884. image: {
  8885. source: "./media/characters/zero-alurus/front.svg"
  8886. }
  8887. },
  8888. back: {
  8889. height: math.unit(6, "feet"),
  8890. weight: math.unit(150, "lb"),
  8891. name: "Back",
  8892. image: {
  8893. source: "./media/characters/zero-alurus/back.svg"
  8894. }
  8895. },
  8896. },
  8897. [
  8898. {
  8899. name: "Normal",
  8900. height: math.unit(5 + 10 / 12, "feet")
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(60, "feet"),
  8905. default: true
  8906. },
  8907. {
  8908. name: "Macro+",
  8909. height: math.unit(450, "feet")
  8910. },
  8911. ]
  8912. ))
  8913. characterMakers.push(() => makeCharacter(
  8914. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8915. {
  8916. front: {
  8917. height: math.unit(6, "feet"),
  8918. weight: math.unit(200, "lb"),
  8919. name: "Front",
  8920. image: {
  8921. source: "./media/characters/mega-shi/front.svg",
  8922. extra: 1279 / 1250,
  8923. bottom: 0.02
  8924. }
  8925. },
  8926. back: {
  8927. height: math.unit(6, "feet"),
  8928. weight: math.unit(200, "lb"),
  8929. name: "Back",
  8930. image: {
  8931. source: "./media/characters/mega-shi/back.svg",
  8932. extra: 1279 / 1250,
  8933. bottom: 0.02
  8934. }
  8935. },
  8936. },
  8937. [
  8938. {
  8939. name: "Micro",
  8940. height: math.unit(16 + 6 / 12, "feet")
  8941. },
  8942. {
  8943. name: "Third Dimension",
  8944. height: math.unit(40, "meters")
  8945. },
  8946. {
  8947. name: "Normal",
  8948. height: math.unit(660, "feet"),
  8949. default: true
  8950. },
  8951. {
  8952. name: "Megamacro",
  8953. height: math.unit(10, "miles")
  8954. },
  8955. {
  8956. name: "Planetary Launch",
  8957. height: math.unit(500, "miles")
  8958. },
  8959. {
  8960. name: "Interstellar",
  8961. height: math.unit(1e9, "miles")
  8962. },
  8963. {
  8964. name: "Leaving the Universe",
  8965. height: math.unit(1, "gigaparsec")
  8966. },
  8967. {
  8968. name: "Travelling Universes",
  8969. height: math.unit(30e15, "parsecs")
  8970. },
  8971. ]
  8972. ))
  8973. characterMakers.push(() => makeCharacter(
  8974. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8975. {
  8976. front: {
  8977. height: math.unit(6, "feet"),
  8978. weight: math.unit(150, "lb"),
  8979. name: "Front",
  8980. image: {
  8981. source: "./media/characters/odyssey/front.svg",
  8982. extra: 1782 / 1582,
  8983. bottom: 0.01
  8984. }
  8985. },
  8986. side: {
  8987. height: math.unit(5.7, "feet"),
  8988. weight: math.unit(140, "lb"),
  8989. name: "Side",
  8990. image: {
  8991. source: "./media/characters/odyssey/side.svg",
  8992. extra: 6462 / 5700
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(5 + 4 / 12, "feet")
  9000. },
  9001. {
  9002. name: "Macro",
  9003. height: math.unit(1, "km")
  9004. },
  9005. {
  9006. name: "Megamacro",
  9007. height: math.unit(3000, "km")
  9008. },
  9009. {
  9010. name: "Gigamacro",
  9011. height: math.unit(1, "AU"),
  9012. default: true
  9013. },
  9014. {
  9015. name: "Omniversal",
  9016. height: math.unit(100e14, "lightyears")
  9017. },
  9018. ]
  9019. ))
  9020. characterMakers.push(() => makeCharacter(
  9021. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9022. {
  9023. front: {
  9024. height: math.unit(6, "feet"),
  9025. weight: math.unit(300, "lb"),
  9026. name: "Front",
  9027. image: {
  9028. source: "./media/characters/mekuto/front.svg",
  9029. extra: 921 / 832,
  9030. bottom: 0.03
  9031. }
  9032. },
  9033. hand: {
  9034. height: math.unit(6 / 10.24, "feet"),
  9035. name: "Hand",
  9036. image: {
  9037. source: "./media/characters/mekuto/hand.svg"
  9038. }
  9039. },
  9040. foot: {
  9041. height: math.unit(6 / 5.05, "feet"),
  9042. name: "Foot",
  9043. image: {
  9044. source: "./media/characters/mekuto/foot.svg"
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Minimicro",
  9051. height: math.unit(0.2, "inches")
  9052. },
  9053. {
  9054. name: "Micro",
  9055. height: math.unit(1.5, "inches")
  9056. },
  9057. {
  9058. name: "Normal",
  9059. height: math.unit(5 + 11 / 12, "feet"),
  9060. default: true
  9061. },
  9062. {
  9063. name: "Minimacro",
  9064. height: math.unit(17 + 9 / 12, "feet")
  9065. },
  9066. {
  9067. name: "Macro",
  9068. height: math.unit(177.5, "feet")
  9069. },
  9070. {
  9071. name: "Megamacro",
  9072. height: math.unit(152, "miles")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(6.5, "inches"),
  9081. weight: math.unit(13, "oz"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/dafydd-tomos/front.svg",
  9085. extra: 2990 / 2603,
  9086. bottom: 0.03
  9087. }
  9088. },
  9089. },
  9090. [
  9091. {
  9092. name: "Micro",
  9093. height: math.unit(6.5, "inches"),
  9094. default: true
  9095. },
  9096. ]
  9097. ))
  9098. characterMakers.push(() => makeCharacter(
  9099. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9100. {
  9101. front: {
  9102. height: math.unit(6, "feet"),
  9103. weight: math.unit(150, "lb"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/splinter/front.svg",
  9107. extra: 2990 / 2882,
  9108. bottom: 0.04
  9109. }
  9110. },
  9111. back: {
  9112. height: math.unit(6, "feet"),
  9113. weight: math.unit(150, "lb"),
  9114. name: "Back",
  9115. image: {
  9116. source: "./media/characters/splinter/back.svg",
  9117. extra: 2990 / 2882,
  9118. bottom: 0.04
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(6, "feet")
  9126. },
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(230, "meters"),
  9130. default: true
  9131. },
  9132. ]
  9133. ))
  9134. characterMakers.push(() => makeCharacter(
  9135. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9136. {
  9137. front: {
  9138. height: math.unit(4 + 10 / 12, "feet"),
  9139. weight: math.unit(480, "lb"),
  9140. name: "Front",
  9141. image: {
  9142. source: "./media/characters/snow-gabumon/front.svg",
  9143. extra: 1140 / 963,
  9144. bottom: 0.058
  9145. }
  9146. },
  9147. back: {
  9148. height: math.unit(4 + 10 / 12, "feet"),
  9149. weight: math.unit(480, "lb"),
  9150. name: "Back",
  9151. image: {
  9152. source: "./media/characters/snow-gabumon/back.svg",
  9153. extra: 1115 / 962,
  9154. bottom: 0.041
  9155. }
  9156. },
  9157. frontUndresed: {
  9158. height: math.unit(4 + 10 / 12, "feet"),
  9159. weight: math.unit(480, "lb"),
  9160. name: "Front (Undressed)",
  9161. image: {
  9162. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9163. extra: 1061 / 960,
  9164. bottom: 0.045
  9165. }
  9166. },
  9167. },
  9168. [
  9169. {
  9170. name: "Micro",
  9171. height: math.unit(1, "inch")
  9172. },
  9173. {
  9174. name: "Normal",
  9175. height: math.unit(4 + 10 / 12, "feet"),
  9176. default: true
  9177. },
  9178. {
  9179. name: "Macro",
  9180. height: math.unit(200, "feet")
  9181. },
  9182. {
  9183. name: "Megamacro",
  9184. height: math.unit(120, "miles")
  9185. },
  9186. {
  9187. name: "Gigamacro",
  9188. height: math.unit(9800, "miles")
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(1.7, "meters"),
  9197. weight: math.unit(140, "lb"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/moody/front.svg",
  9201. extra: 3226 / 3007,
  9202. bottom: 0.087
  9203. }
  9204. },
  9205. },
  9206. [
  9207. {
  9208. name: "Micro",
  9209. height: math.unit(1, "mm")
  9210. },
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(1.7, "meters"),
  9214. default: true
  9215. },
  9216. {
  9217. name: "Macro",
  9218. height: math.unit(80, "meters")
  9219. },
  9220. {
  9221. name: "Macro+",
  9222. height: math.unit(500, "meters")
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9228. {
  9229. front: {
  9230. height: math.unit(6, "feet"),
  9231. weight: math.unit(150, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/zyas/front.svg",
  9235. extra: 1180 / 1120,
  9236. bottom: 0.045
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Normal",
  9243. height: math.unit(10, "feet"),
  9244. default: true
  9245. },
  9246. {
  9247. name: "Macro",
  9248. height: math.unit(500, "feet")
  9249. },
  9250. {
  9251. name: "Megamacro",
  9252. height: math.unit(5, "miles")
  9253. },
  9254. {
  9255. name: "Teramacro",
  9256. height: math.unit(150000, "miles")
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(6, "feet"),
  9265. weight: math.unit(150, "lb"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/cuon/front.svg",
  9269. extra: 1390 / 1320,
  9270. bottom: 0.008
  9271. }
  9272. },
  9273. },
  9274. [
  9275. {
  9276. name: "Micro",
  9277. height: math.unit(3, "inches")
  9278. },
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(18 + 9 / 12, "feet"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Macro",
  9286. height: math.unit(360, "feet")
  9287. },
  9288. {
  9289. name: "Megamacro",
  9290. height: math.unit(360, "miles")
  9291. },
  9292. ]
  9293. ))
  9294. characterMakers.push(() => makeCharacter(
  9295. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9296. {
  9297. front: {
  9298. height: math.unit(2.4, "meters"),
  9299. weight: math.unit(70, "kg"),
  9300. name: "Front",
  9301. image: {
  9302. source: "./media/characters/nyanuxk/front.svg",
  9303. extra: 1172 / 1084,
  9304. bottom: 0.065
  9305. }
  9306. },
  9307. side: {
  9308. height: math.unit(2.4, "meters"),
  9309. weight: math.unit(70, "kg"),
  9310. name: "Side",
  9311. image: {
  9312. source: "./media/characters/nyanuxk/side.svg",
  9313. extra: 1190 / 1132,
  9314. bottom: 0.007
  9315. }
  9316. },
  9317. back: {
  9318. height: math.unit(2.4, "meters"),
  9319. weight: math.unit(70, "kg"),
  9320. name: "Back",
  9321. image: {
  9322. source: "./media/characters/nyanuxk/back.svg",
  9323. extra: 1200 / 1141,
  9324. bottom: 0.015
  9325. }
  9326. },
  9327. foot: {
  9328. height: math.unit(0.52, "meters"),
  9329. name: "Foot",
  9330. image: {
  9331. source: "./media/characters/nyanuxk/foot.svg"
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Micro",
  9338. height: math.unit(2, "cm")
  9339. },
  9340. {
  9341. name: "Normal",
  9342. height: math.unit(2.4, "meters"),
  9343. default: true
  9344. },
  9345. {
  9346. name: "Smaller Macro",
  9347. height: math.unit(120, "meters")
  9348. },
  9349. {
  9350. name: "Bigger Macro",
  9351. height: math.unit(1.2, "km")
  9352. },
  9353. {
  9354. name: "Megamacro",
  9355. height: math.unit(15, "kilometers")
  9356. },
  9357. {
  9358. name: "Gigamacro",
  9359. height: math.unit(2000, "km")
  9360. },
  9361. {
  9362. name: "Teramacro",
  9363. height: math.unit(500000, "km")
  9364. },
  9365. ]
  9366. ))
  9367. characterMakers.push(() => makeCharacter(
  9368. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9369. {
  9370. side: {
  9371. height: math.unit(6, "feet"),
  9372. name: "Side",
  9373. image: {
  9374. source: "./media/characters/ailbhe/side.svg",
  9375. extra: 757 / 464,
  9376. bottom: 0.041
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(1.07, "meters"),
  9384. default: true
  9385. },
  9386. ]
  9387. ))
  9388. characterMakers.push(() => makeCharacter(
  9389. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9390. {
  9391. front: {
  9392. height: math.unit(6, "feet"),
  9393. weight: math.unit(120, "kg"),
  9394. name: "Front",
  9395. image: {
  9396. source: "./media/characters/zevulfius/front.svg",
  9397. extra: 965 / 903
  9398. }
  9399. },
  9400. side: {
  9401. height: math.unit(6, "feet"),
  9402. weight: math.unit(120, "kg"),
  9403. name: "Side",
  9404. image: {
  9405. source: "./media/characters/zevulfius/side.svg",
  9406. extra: 939 / 900
  9407. }
  9408. },
  9409. back: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(120, "kg"),
  9412. name: "Back",
  9413. image: {
  9414. source: "./media/characters/zevulfius/back.svg",
  9415. extra: 918 / 854,
  9416. bottom: 0.005
  9417. }
  9418. },
  9419. foot: {
  9420. height: math.unit(6 / 3.72, "feet"),
  9421. name: "Foot",
  9422. image: {
  9423. source: "./media/characters/zevulfius/foot.svg"
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Macro",
  9430. height: math.unit(750, "meters")
  9431. },
  9432. {
  9433. name: "Megamacro",
  9434. height: math.unit(20, "km"),
  9435. default: true
  9436. },
  9437. {
  9438. name: "Gigamacro",
  9439. height: math.unit(2000, "km")
  9440. },
  9441. {
  9442. name: "Teramacro",
  9443. height: math.unit(250000, "km")
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9449. {
  9450. front: {
  9451. height: math.unit(100, "feet"),
  9452. weight: math.unit(350, "kg"),
  9453. name: "Front",
  9454. image: {
  9455. source: "./media/characters/rikes/front.svg",
  9456. extra: 1565 / 1483,
  9457. bottom: 0.017
  9458. }
  9459. },
  9460. },
  9461. [
  9462. {
  9463. name: "Macro",
  9464. height: math.unit(100, "feet"),
  9465. default: true
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9471. {
  9472. anthro: {
  9473. height: math.unit(8, "feet"),
  9474. weight: math.unit(120, "kg"),
  9475. name: "Anthro",
  9476. image: {
  9477. source: "./media/characters/adam-silver-mane/anthro.svg",
  9478. extra: 5743 / 5339,
  9479. bottom: 0.07
  9480. }
  9481. },
  9482. taur: {
  9483. height: math.unit(16, "feet"),
  9484. weight: math.unit(1500, "kg"),
  9485. name: "Taur",
  9486. image: {
  9487. source: "./media/characters/adam-silver-mane/taur.svg",
  9488. extra: 1713 / 1571,
  9489. bottom: 0.01
  9490. }
  9491. },
  9492. },
  9493. [
  9494. {
  9495. name: "Normal",
  9496. height: math.unit(8, "feet")
  9497. },
  9498. {
  9499. name: "Minimacro",
  9500. height: math.unit(80, "feet")
  9501. },
  9502. {
  9503. name: "Macro",
  9504. height: math.unit(800, "feet"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Megamacro",
  9509. height: math.unit(8000, "feet")
  9510. },
  9511. {
  9512. name: "Gigamacro",
  9513. height: math.unit(800, "miles")
  9514. },
  9515. {
  9516. name: "Teramacro",
  9517. height: math.unit(80000, "miles")
  9518. },
  9519. {
  9520. name: "Celestial",
  9521. height: math.unit(8e6, "miles")
  9522. },
  9523. {
  9524. name: "Star Dragon",
  9525. height: math.unit(800000, "parsecs")
  9526. },
  9527. {
  9528. name: "Godly",
  9529. height: math.unit(800, "teraparsecs")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(6, "feet"),
  9538. weight: math.unit(150, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/ky'owin/front.svg",
  9542. extra: 3888 / 3068,
  9543. bottom: 0.015
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(6 + 8 / 12, "feet")
  9551. },
  9552. {
  9553. name: "Large",
  9554. height: math.unit(68, "feet")
  9555. },
  9556. {
  9557. name: "Macro",
  9558. height: math.unit(132, "feet")
  9559. },
  9560. {
  9561. name: "Macro+",
  9562. height: math.unit(340, "feet")
  9563. },
  9564. {
  9565. name: "Macro++",
  9566. height: math.unit(680, "feet"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "Megamacro",
  9571. height: math.unit(1, "mile")
  9572. },
  9573. {
  9574. name: "Megamacro+",
  9575. height: math.unit(10, "miles")
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(4, "feet"),
  9584. weight: math.unit(50, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/mal/front.svg",
  9588. extra: 785 / 724,
  9589. bottom: 0.07
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Micro",
  9596. height: math.unit(4, "inches")
  9597. },
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(4, "feet"),
  9601. default: true
  9602. },
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(200, "feet")
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(6, "feet"),
  9614. weight: math.unit(150, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/jordan-deware/front.svg",
  9618. extra: 1191 / 1012
  9619. }
  9620. },
  9621. },
  9622. [
  9623. {
  9624. name: "Nano",
  9625. height: math.unit(0.01, "mm")
  9626. },
  9627. {
  9628. name: "Minimicro",
  9629. height: math.unit(1, "mm")
  9630. },
  9631. {
  9632. name: "Micro",
  9633. height: math.unit(0.5, "inches")
  9634. },
  9635. {
  9636. name: "Normal",
  9637. height: math.unit(4, "feet"),
  9638. default: true
  9639. },
  9640. {
  9641. name: "Minimacro",
  9642. height: math.unit(40, "meters")
  9643. },
  9644. {
  9645. name: "Small Macro",
  9646. height: math.unit(400, "meters")
  9647. },
  9648. {
  9649. name: "Macro",
  9650. height: math.unit(4, "miles")
  9651. },
  9652. {
  9653. name: "Megamacro",
  9654. height: math.unit(40, "miles")
  9655. },
  9656. {
  9657. name: "Megamacro+",
  9658. height: math.unit(400, "miles")
  9659. },
  9660. {
  9661. name: "Gigamacro",
  9662. height: math.unit(400000, "miles")
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9668. {
  9669. side: {
  9670. height: math.unit(6, "feet"),
  9671. weight: math.unit(150, "lb"),
  9672. name: "Side",
  9673. image: {
  9674. source: "./media/characters/kimiko/side.svg",
  9675. extra: 600 / 358
  9676. }
  9677. },
  9678. },
  9679. [
  9680. {
  9681. name: "Normal",
  9682. height: math.unit(15, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Macro",
  9687. height: math.unit(220, "feet")
  9688. },
  9689. {
  9690. name: "Macro+",
  9691. height: math.unit(1450, "feet")
  9692. },
  9693. {
  9694. name: "Megamacro",
  9695. height: math.unit(11500, "feet")
  9696. },
  9697. {
  9698. name: "Gigamacro",
  9699. height: math.unit(9500, "miles")
  9700. },
  9701. {
  9702. name: "Teramacro",
  9703. height: math.unit(2208005005, "miles")
  9704. },
  9705. {
  9706. name: "Examacro",
  9707. height: math.unit(2750, "parsecs")
  9708. },
  9709. {
  9710. name: "Zettamacro",
  9711. height: math.unit(101500, "parsecs")
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(6, "feet"),
  9720. weight: math.unit(70, "kg"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/andrew-sleepy/front.svg"
  9724. }
  9725. },
  9726. side: {
  9727. height: math.unit(6, "feet"),
  9728. weight: math.unit(70, "kg"),
  9729. name: "Side",
  9730. image: {
  9731. source: "./media/characters/andrew-sleepy/side.svg"
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Micro",
  9738. height: math.unit(1, "mm"),
  9739. default: true
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(6, "feet"),
  9748. weight: math.unit(150, "lb"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/judio/front.svg",
  9752. extra: 1258 / 1110
  9753. }
  9754. },
  9755. },
  9756. [
  9757. {
  9758. name: "Normal",
  9759. height: math.unit(5 + 6 / 12, "feet")
  9760. },
  9761. {
  9762. name: "Macro",
  9763. height: math.unit(1000, "feet"),
  9764. default: true
  9765. },
  9766. {
  9767. name: "Megamacro",
  9768. height: math.unit(10, "miles")
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9774. {
  9775. front: {
  9776. height: math.unit(6, "feet"),
  9777. weight: math.unit(68, "kg"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/nomaxice/front.svg",
  9781. extra: 1498 / 1073,
  9782. bottom: 0.075
  9783. }
  9784. },
  9785. foot: {
  9786. height: math.unit(1.1, "feet"),
  9787. name: "Foot",
  9788. image: {
  9789. source: "./media/characters/nomaxice/foot.svg"
  9790. }
  9791. },
  9792. },
  9793. [
  9794. {
  9795. name: "Micro",
  9796. height: math.unit(8, "cm")
  9797. },
  9798. {
  9799. name: "Norm",
  9800. height: math.unit(1.82, "m")
  9801. },
  9802. {
  9803. name: "Norm+",
  9804. height: math.unit(8.8, "feet")
  9805. },
  9806. {
  9807. name: "Big",
  9808. height: math.unit(8, "meters"),
  9809. default: true
  9810. },
  9811. {
  9812. name: "Macro",
  9813. height: math.unit(18, "meters")
  9814. },
  9815. {
  9816. name: "Macro+",
  9817. height: math.unit(88, "meters")
  9818. },
  9819. ]
  9820. ))
  9821. characterMakers.push(() => makeCharacter(
  9822. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9823. {
  9824. front: {
  9825. height: math.unit(12, "feet"),
  9826. weight: math.unit(1.5, "tons"),
  9827. name: "Front",
  9828. image: {
  9829. source: "./media/characters/dydros/front.svg",
  9830. extra: 863 / 800,
  9831. bottom: 0.015
  9832. }
  9833. },
  9834. back: {
  9835. height: math.unit(12, "feet"),
  9836. weight: math.unit(1.5, "tons"),
  9837. name: "Back",
  9838. image: {
  9839. source: "./media/characters/dydros/back.svg",
  9840. extra: 900 / 843,
  9841. bottom: 0.005
  9842. }
  9843. },
  9844. },
  9845. [
  9846. {
  9847. name: "Normal",
  9848. height: math.unit(12, "feet"),
  9849. default: true
  9850. },
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9855. {
  9856. front: {
  9857. height: math.unit(6, "feet"),
  9858. weight: math.unit(100, "kg"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/riggi/front.svg",
  9862. extra: 5787 / 5303
  9863. }
  9864. },
  9865. hyper: {
  9866. height: math.unit(6 * 5 / 3, "feet"),
  9867. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9868. name: "Hyper",
  9869. image: {
  9870. source: "./media/characters/riggi/hyper.svg",
  9871. extra: 3595 / 3485
  9872. }
  9873. },
  9874. },
  9875. [
  9876. {
  9877. name: "Small Macro",
  9878. height: math.unit(50, "feet")
  9879. },
  9880. {
  9881. name: "Default",
  9882. height: math.unit(200, "feet"),
  9883. default: true
  9884. },
  9885. {
  9886. name: "Loom",
  9887. height: math.unit(10000, "feet")
  9888. },
  9889. {
  9890. name: "Cruising Altitude",
  9891. height: math.unit(30000, "feet")
  9892. },
  9893. {
  9894. name: "Megamacro",
  9895. height: math.unit(100, "miles")
  9896. },
  9897. {
  9898. name: "Continent Sized",
  9899. height: math.unit(2800, "miles")
  9900. },
  9901. {
  9902. name: "Earth Sized",
  9903. height: math.unit(8000, "miles")
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(6, "feet"),
  9912. weight: math.unit(250, "lb"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/alexi/front.svg",
  9916. extra: 3483 / 3291,
  9917. bottom: 0.04
  9918. }
  9919. },
  9920. back: {
  9921. height: math.unit(6, "feet"),
  9922. weight: math.unit(250, "lb"),
  9923. name: "Back",
  9924. image: {
  9925. source: "./media/characters/alexi/back.svg",
  9926. extra: 3533 / 3356,
  9927. bottom: 0.021
  9928. }
  9929. },
  9930. frontTransforming: {
  9931. height: math.unit(8.58, "feet"),
  9932. weight: math.unit(1300, "lb"),
  9933. name: "Transforming",
  9934. image: {
  9935. source: "./media/characters/alexi/front-transforming.svg",
  9936. extra: 437 / 409,
  9937. bottom: 19 / 458.66
  9938. }
  9939. },
  9940. frontTransformed: {
  9941. height: math.unit(12.5, "feet"),
  9942. weight: math.unit(4000, "lb"),
  9943. name: "Transformed",
  9944. image: {
  9945. source: "./media/characters/alexi/front-transformed.svg",
  9946. extra: 639 / 614,
  9947. bottom: 30.55 / 671
  9948. }
  9949. },
  9950. },
  9951. [
  9952. {
  9953. name: "Normal",
  9954. height: math.unit(3, "meters"),
  9955. default: true
  9956. },
  9957. {
  9958. name: "Minimacro",
  9959. height: math.unit(30, "meters")
  9960. },
  9961. {
  9962. name: "Macro",
  9963. height: math.unit(500, "meters")
  9964. },
  9965. {
  9966. name: "Megamacro",
  9967. height: math.unit(9000, "km")
  9968. },
  9969. {
  9970. name: "Teramacro",
  9971. height: math.unit(384000, "km")
  9972. },
  9973. ]
  9974. ))
  9975. characterMakers.push(() => makeCharacter(
  9976. { name: "Kayroo", species: ["kangaroo"], 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/kayroo/front.svg",
  9984. extra: 1153 / 1038,
  9985. bottom: 0.06
  9986. }
  9987. },
  9988. foot: {
  9989. height: math.unit(6, "feet"),
  9990. weight: math.unit(150, "lb"),
  9991. name: "Foot",
  9992. image: {
  9993. source: "./media/characters/kayroo/foot.svg"
  9994. }
  9995. },
  9996. },
  9997. [
  9998. {
  9999. name: "Normal",
  10000. height: math.unit(8, "feet"),
  10001. default: true
  10002. },
  10003. {
  10004. name: "Minimacro",
  10005. height: math.unit(250, "feet")
  10006. },
  10007. {
  10008. name: "Macro",
  10009. height: math.unit(2800, "feet")
  10010. },
  10011. {
  10012. name: "Megamacro",
  10013. height: math.unit(5200, "feet")
  10014. },
  10015. {
  10016. name: "Gigamacro",
  10017. height: math.unit(27000, "feet")
  10018. },
  10019. {
  10020. name: "Omega",
  10021. height: math.unit(45000, "feet")
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(18, "feet"),
  10030. weight: math.unit(5800, "lb"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/rhys/front.svg",
  10034. extra: 3386 / 3090,
  10035. bottom: 0.07
  10036. }
  10037. },
  10038. },
  10039. [
  10040. {
  10041. name: "Normal",
  10042. height: math.unit(18, "feet"),
  10043. default: true
  10044. },
  10045. {
  10046. name: "Working Size",
  10047. height: math.unit(200, "feet")
  10048. },
  10049. {
  10050. name: "Demolition Size",
  10051. height: math.unit(2000, "feet")
  10052. },
  10053. {
  10054. name: "Maximum Licensed Size",
  10055. height: math.unit(5, "miles")
  10056. },
  10057. {
  10058. name: "Maximum Observed Size",
  10059. height: math.unit(10, "yottameters")
  10060. },
  10061. ]
  10062. ))
  10063. characterMakers.push(() => makeCharacter(
  10064. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10065. {
  10066. front: {
  10067. height: math.unit(6, "feet"),
  10068. weight: math.unit(250, "lb"),
  10069. name: "Front",
  10070. image: {
  10071. source: "./media/characters/toto/front.svg",
  10072. extra: 527 / 479,
  10073. bottom: 0.05
  10074. }
  10075. },
  10076. },
  10077. [
  10078. {
  10079. name: "Micro",
  10080. height: math.unit(3, "feet")
  10081. },
  10082. {
  10083. name: "Normal",
  10084. height: math.unit(10, "feet")
  10085. },
  10086. {
  10087. name: "Macro",
  10088. height: math.unit(150, "feet"),
  10089. default: true
  10090. },
  10091. {
  10092. name: "Megamacro",
  10093. height: math.unit(1200, "feet")
  10094. },
  10095. ]
  10096. ))
  10097. characterMakers.push(() => makeCharacter(
  10098. { name: "King", species: ["lion"], tags: ["anthro"] },
  10099. {
  10100. back: {
  10101. height: math.unit(6, "feet"),
  10102. weight: math.unit(150, "lb"),
  10103. name: "Back",
  10104. image: {
  10105. source: "./media/characters/king/back.svg"
  10106. }
  10107. },
  10108. },
  10109. [
  10110. {
  10111. name: "Micro",
  10112. height: math.unit(2, "inches")
  10113. },
  10114. {
  10115. name: "Normal",
  10116. height: math.unit(8, "feet")
  10117. },
  10118. {
  10119. name: "Macro",
  10120. height: math.unit(200, "feet"),
  10121. default: true
  10122. },
  10123. {
  10124. name: "Megamacro",
  10125. height: math.unit(50, "miles")
  10126. },
  10127. ]
  10128. ))
  10129. characterMakers.push(() => makeCharacter(
  10130. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10131. {
  10132. anthro: {
  10133. height: math.unit(6 + 5 / 12, "feet"),
  10134. weight: math.unit(280, "lb"),
  10135. name: "Anthro",
  10136. image: {
  10137. source: "./media/characters/cordite/anthro.svg",
  10138. extra: 1986 / 1905,
  10139. bottom: 0.025
  10140. }
  10141. },
  10142. feral: {
  10143. height: math.unit(2, "feet"),
  10144. weight: math.unit(90, "lb"),
  10145. name: "Feral",
  10146. image: {
  10147. source: "./media/characters/cordite/feral.svg",
  10148. extra: 1260 / 755,
  10149. bottom: 0.05
  10150. }
  10151. },
  10152. },
  10153. [
  10154. {
  10155. name: "Normal",
  10156. height: math.unit(6 + 5 / 12, "feet"),
  10157. default: true
  10158. },
  10159. ]
  10160. ))
  10161. characterMakers.push(() => makeCharacter(
  10162. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10163. {
  10164. front: {
  10165. height: math.unit(6, "feet"),
  10166. weight: math.unit(150, "lb"),
  10167. name: "Front",
  10168. image: {
  10169. source: "./media/characters/pianostrong/front.svg",
  10170. extra: 6577 / 6254,
  10171. bottom: 0.02
  10172. }
  10173. },
  10174. side: {
  10175. height: math.unit(6, "feet"),
  10176. weight: math.unit(150, "lb"),
  10177. name: "Side",
  10178. image: {
  10179. source: "./media/characters/pianostrong/side.svg",
  10180. extra: 6106 / 5730
  10181. }
  10182. },
  10183. back: {
  10184. height: math.unit(6, "feet"),
  10185. weight: math.unit(150, "lb"),
  10186. name: "Back",
  10187. image: {
  10188. source: "./media/characters/pianostrong/back.svg",
  10189. extra: 6085 / 5733,
  10190. bottom: 0.01
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Macro",
  10197. height: math.unit(100, "feet")
  10198. },
  10199. {
  10200. name: "Macro+",
  10201. height: math.unit(300, "feet"),
  10202. default: true
  10203. },
  10204. {
  10205. name: "Macro++",
  10206. height: math.unit(1000, "feet")
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(6, "feet"),
  10215. weight: math.unit(150, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/kona/front.svg",
  10219. extra: 2960 / 2629,
  10220. bottom: 0.005
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(11 + 8 / 12, "feet")
  10228. },
  10229. {
  10230. name: "Macro",
  10231. height: math.unit(850, "feet"),
  10232. default: true
  10233. },
  10234. {
  10235. name: "Macro+",
  10236. height: math.unit(1.5, "km"),
  10237. default: true
  10238. },
  10239. {
  10240. name: "Megamacro",
  10241. height: math.unit(80, "miles")
  10242. },
  10243. {
  10244. name: "Gigamacro",
  10245. height: math.unit(3500, "miles")
  10246. },
  10247. ]
  10248. ))
  10249. characterMakers.push(() => makeCharacter(
  10250. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10251. {
  10252. side: {
  10253. height: math.unit(1.9, "meters"),
  10254. weight: math.unit(326, "kg"),
  10255. name: "Side",
  10256. image: {
  10257. source: "./media/characters/levi/side.svg",
  10258. extra: 1704 / 1334,
  10259. bottom: 0.02
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(1.9, "meters"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Macro",
  10271. height: math.unit(20, "meters")
  10272. },
  10273. {
  10274. name: "Macro+",
  10275. height: math.unit(200, "meters")
  10276. },
  10277. {
  10278. name: "Megamacro",
  10279. height: math.unit(2, "km")
  10280. },
  10281. {
  10282. name: "Megamacro+",
  10283. height: math.unit(20, "km")
  10284. },
  10285. {
  10286. name: "Gigamacro",
  10287. height: math.unit(2500, "km")
  10288. },
  10289. {
  10290. name: "Gigamacro+",
  10291. height: math.unit(120000, "km")
  10292. },
  10293. {
  10294. name: "Teramacro",
  10295. height: math.unit(7.77e6, "km")
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10301. {
  10302. front: {
  10303. height: math.unit(6 + 4 / 12, "feet"),
  10304. weight: math.unit(188, "lb"),
  10305. name: "Front",
  10306. image: {
  10307. source: "./media/characters/bmc/front.svg",
  10308. extra: 1067 / 1022,
  10309. bottom: 0.047
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Human-sized",
  10316. height: math.unit(6 + 4 / 12, "feet")
  10317. },
  10318. {
  10319. name: "Small",
  10320. height: math.unit(250, "feet")
  10321. },
  10322. {
  10323. name: "Normal",
  10324. height: math.unit(1250, "feet"),
  10325. default: true
  10326. },
  10327. {
  10328. name: "Good Day",
  10329. height: math.unit(88, "miles")
  10330. },
  10331. {
  10332. name: "Largest Measured Size",
  10333. height: math.unit(11.2e6, "lightyears")
  10334. },
  10335. ]
  10336. ))
  10337. characterMakers.push(() => makeCharacter(
  10338. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10339. {
  10340. front: {
  10341. height: math.unit(20, "feet"),
  10342. weight: math.unit(2016, "kg"),
  10343. name: "Front",
  10344. image: {
  10345. source: "./media/characters/sven-the-kaiju/front.svg",
  10346. extra: 1479 / 1449,
  10347. bottom: 0.05
  10348. }
  10349. },
  10350. },
  10351. [
  10352. {
  10353. name: "Fairy",
  10354. height: math.unit(6, "inches")
  10355. },
  10356. {
  10357. name: "Normal",
  10358. height: math.unit(20, "feet"),
  10359. default: true
  10360. },
  10361. {
  10362. name: "Rampage",
  10363. height: math.unit(200, "feet")
  10364. },
  10365. {
  10366. name: "Archfey Forest Guardian",
  10367. height: math.unit(1, "mile")
  10368. },
  10369. ]
  10370. ))
  10371. characterMakers.push(() => makeCharacter(
  10372. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10373. {
  10374. front: {
  10375. height: math.unit(4, "meters"),
  10376. weight: math.unit(2, "tons"),
  10377. name: "Front",
  10378. image: {
  10379. source: "./media/characters/marik/front.svg",
  10380. extra: 1057 / 1003,
  10381. bottom: 0.08
  10382. }
  10383. },
  10384. },
  10385. [
  10386. {
  10387. name: "Normal",
  10388. height: math.unit(4, "meters"),
  10389. default: true
  10390. },
  10391. {
  10392. name: "Macro",
  10393. height: math.unit(20, "meters")
  10394. },
  10395. {
  10396. name: "Megamacro",
  10397. height: math.unit(50, "km")
  10398. },
  10399. {
  10400. name: "Gigamacro",
  10401. height: math.unit(100, "km")
  10402. },
  10403. {
  10404. name: "Alpha Macro",
  10405. height: math.unit(7.88e7, "yottameters")
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10411. {
  10412. front: {
  10413. height: math.unit(6, "feet"),
  10414. weight: math.unit(110, "lb"),
  10415. name: "Front",
  10416. image: {
  10417. source: "./media/characters/mel/front.svg",
  10418. extra: 736 / 617,
  10419. bottom: 0.017
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Pico",
  10426. height: math.unit(3, "pm")
  10427. },
  10428. {
  10429. name: "Nano",
  10430. height: math.unit(3, "nm")
  10431. },
  10432. {
  10433. name: "Micro",
  10434. height: math.unit(0.3, "mm"),
  10435. default: true
  10436. },
  10437. {
  10438. name: "Micro+",
  10439. height: math.unit(3, "mm")
  10440. },
  10441. {
  10442. name: "Normal",
  10443. height: math.unit(5 + 10.5 / 12, "feet")
  10444. },
  10445. ]
  10446. ))
  10447. characterMakers.push(() => makeCharacter(
  10448. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10449. {
  10450. kaiju: {
  10451. height: math.unit(1.75, "meters"),
  10452. weight: math.unit(55, "kg"),
  10453. name: "Kaiju",
  10454. image: {
  10455. source: "./media/characters/lykonous/kaiju.svg",
  10456. extra: 1055 / 946,
  10457. bottom: 0.135
  10458. }
  10459. },
  10460. },
  10461. [
  10462. {
  10463. name: "Normal",
  10464. height: math.unit(2.5, "meters"),
  10465. default: true
  10466. },
  10467. {
  10468. name: "Kaiju Dragon",
  10469. height: math.unit(60, "meters")
  10470. },
  10471. {
  10472. name: "Mega Kaiju",
  10473. height: math.unit(120, "km")
  10474. },
  10475. {
  10476. name: "Giga Kaiju",
  10477. height: math.unit(200, "megameters")
  10478. },
  10479. {
  10480. name: "Terra Kaiju",
  10481. height: math.unit(400, "gigameters")
  10482. },
  10483. {
  10484. name: "Kaiju Dragon God",
  10485. height: math.unit(13000, "exaparsecs")
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10491. {
  10492. front: {
  10493. height: math.unit(6, "feet"),
  10494. weight: math.unit(150, "lb"),
  10495. name: "Front",
  10496. image: {
  10497. source: "./media/characters/blü/front.svg",
  10498. extra: 1883 / 1564,
  10499. bottom: 0.031
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Normal",
  10506. height: math.unit(13, "feet"),
  10507. default: true
  10508. },
  10509. {
  10510. name: "Big Boi",
  10511. height: math.unit(150, "meters")
  10512. },
  10513. {
  10514. name: "Mini Stomper",
  10515. height: math.unit(300, "meters")
  10516. },
  10517. {
  10518. name: "Macro",
  10519. height: math.unit(1000, "meters")
  10520. },
  10521. {
  10522. name: "Megamacro",
  10523. height: math.unit(11000, "meters")
  10524. },
  10525. {
  10526. name: "Gigamacro",
  10527. height: math.unit(11000, "km")
  10528. },
  10529. {
  10530. name: "Teramacro",
  10531. height: math.unit(420000, "km")
  10532. },
  10533. {
  10534. name: "Examacro",
  10535. height: math.unit(120, "parsecs")
  10536. },
  10537. {
  10538. name: "God Tho",
  10539. height: math.unit(98000000000, "parsecs")
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10545. {
  10546. taurFront: {
  10547. height: math.unit(6, "feet"),
  10548. weight: math.unit(200, "lb"),
  10549. name: "Taur (Front)",
  10550. image: {
  10551. source: "./media/characters/scales/taur-front.svg",
  10552. extra: 1,
  10553. bottom: 0.05
  10554. }
  10555. },
  10556. taurBack: {
  10557. height: math.unit(6, "feet"),
  10558. weight: math.unit(200, "lb"),
  10559. name: "Taur (Back)",
  10560. image: {
  10561. source: "./media/characters/scales/taur-back.svg",
  10562. extra: 1,
  10563. bottom: 0.08
  10564. }
  10565. },
  10566. anthro: {
  10567. height: math.unit(6 * 7 / 12, "feet"),
  10568. weight: math.unit(100, "lb"),
  10569. name: "Anthro",
  10570. image: {
  10571. source: "./media/characters/scales/anthro.svg",
  10572. extra: 1,
  10573. bottom: 0.06
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Normal",
  10580. height: math.unit(12, "feet"),
  10581. default: true
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(150, "lb"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/koragos/front.svg",
  10594. extra: 841 / 794,
  10595. bottom: 0.035
  10596. }
  10597. },
  10598. back: {
  10599. height: math.unit(6, "feet"),
  10600. weight: math.unit(150, "lb"),
  10601. name: "Back",
  10602. image: {
  10603. source: "./media/characters/koragos/back.svg",
  10604. extra: 841 / 810,
  10605. bottom: 0.022
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Normal",
  10612. height: math.unit(6 + 11 / 12, "feet"),
  10613. default: true
  10614. },
  10615. {
  10616. name: "Macro",
  10617. height: math.unit(490, "feet")
  10618. },
  10619. {
  10620. name: "Megamacro",
  10621. height: math.unit(10, "miles")
  10622. },
  10623. {
  10624. name: "Gigamacro",
  10625. height: math.unit(50, "miles")
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10631. {
  10632. front: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(250, "lb"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/xylrem/front.svg",
  10638. extra: 3323 / 3050,
  10639. bottom: 0.065
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Micro",
  10646. height: math.unit(4, "feet")
  10647. },
  10648. {
  10649. name: "Normal",
  10650. height: math.unit(16, "feet"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Macro",
  10655. height: math.unit(2720, "feet")
  10656. },
  10657. {
  10658. name: "Megamacro",
  10659. height: math.unit(25000, "miles")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10665. {
  10666. front: {
  10667. height: math.unit(8, "feet"),
  10668. weight: math.unit(250, "kg"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/ikideru/front.svg",
  10672. extra: 930 / 870,
  10673. bottom: 0.087
  10674. }
  10675. },
  10676. back: {
  10677. height: math.unit(8, "feet"),
  10678. weight: math.unit(250, "kg"),
  10679. name: "Back",
  10680. image: {
  10681. source: "./media/characters/ikideru/back.svg",
  10682. extra: 919 / 852,
  10683. bottom: 0.055
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Rare",
  10690. height: math.unit(8, "feet"),
  10691. default: true
  10692. },
  10693. {
  10694. name: "Playful Loom",
  10695. height: math.unit(80, "feet")
  10696. },
  10697. {
  10698. name: "City Leaner",
  10699. height: math.unit(230, "feet")
  10700. },
  10701. {
  10702. name: "Megamacro",
  10703. height: math.unit(2500, "feet")
  10704. },
  10705. {
  10706. name: "Gigamacro",
  10707. height: math.unit(26400, "feet")
  10708. },
  10709. {
  10710. name: "Tectonic Shifter",
  10711. height: math.unit(1.7, "megameters")
  10712. },
  10713. {
  10714. name: "Planet Carer",
  10715. height: math.unit(21, "megameters")
  10716. },
  10717. {
  10718. name: "God",
  10719. height: math.unit(11157.22, "parsecs")
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(6, "feet"),
  10728. weight: math.unit(120, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/neo/front.svg"
  10732. }
  10733. },
  10734. },
  10735. [
  10736. {
  10737. name: "Micro",
  10738. height: math.unit(2, "inches"),
  10739. default: true
  10740. },
  10741. {
  10742. name: "Human Size",
  10743. height: math.unit(5 + 8 / 12, "feet")
  10744. },
  10745. ]
  10746. ))
  10747. characterMakers.push(() => makeCharacter(
  10748. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10749. {
  10750. front: {
  10751. height: math.unit(13 + 10 / 12, "feet"),
  10752. weight: math.unit(5320, "lb"),
  10753. name: "Front",
  10754. image: {
  10755. source: "./media/characters/chauncey-chantz/front.svg",
  10756. extra: 1587 / 1435,
  10757. bottom: 0.02
  10758. }
  10759. },
  10760. },
  10761. [
  10762. {
  10763. name: "Normal",
  10764. height: math.unit(13 + 10 / 12, "feet"),
  10765. default: true
  10766. },
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(45, "feet")
  10770. },
  10771. {
  10772. name: "Megamacro",
  10773. height: math.unit(250, "miles")
  10774. },
  10775. {
  10776. name: "Planetary",
  10777. height: math.unit(10000, "miles")
  10778. },
  10779. {
  10780. name: "Galactic",
  10781. height: math.unit(40000, "parsecs")
  10782. },
  10783. {
  10784. name: "Universal",
  10785. height: math.unit(1, "yottameter")
  10786. },
  10787. ]
  10788. ))
  10789. characterMakers.push(() => makeCharacter(
  10790. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10791. {
  10792. front: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(150, "lb"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/epifox/front.svg",
  10798. extra: 1,
  10799. bottom: 0.075
  10800. }
  10801. },
  10802. },
  10803. [
  10804. {
  10805. name: "Micro",
  10806. height: math.unit(6, "inches")
  10807. },
  10808. {
  10809. name: "Normal",
  10810. height: math.unit(12, "feet"),
  10811. default: true
  10812. },
  10813. {
  10814. name: "Macro",
  10815. height: math.unit(3810, "feet")
  10816. },
  10817. {
  10818. name: "Megamacro",
  10819. height: math.unit(500, "miles")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(1.8796, "m"),
  10828. weight: math.unit(230, "lb"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/colin-t/front.svg",
  10832. extra: 1272 / 1193,
  10833. bottom: 0.07
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Micro",
  10840. height: math.unit(0.571, "meters")
  10841. },
  10842. {
  10843. name: "Normal",
  10844. height: math.unit(1.8796, "meters"),
  10845. default: true
  10846. },
  10847. {
  10848. name: "Tall",
  10849. height: math.unit(4, "meters")
  10850. },
  10851. {
  10852. name: "Macro",
  10853. height: math.unit(67.241, "meters")
  10854. },
  10855. {
  10856. name: "Megamacro",
  10857. height: math.unit(371.856, "meters")
  10858. },
  10859. {
  10860. name: "Planetary",
  10861. height: math.unit(12631.5689, "km")
  10862. },
  10863. ]
  10864. ))
  10865. characterMakers.push(() => makeCharacter(
  10866. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10867. {
  10868. front: {
  10869. height: math.unit(1.85, "meters"),
  10870. weight: math.unit(80, "kg"),
  10871. name: "Front",
  10872. image: {
  10873. source: "./media/characters/matvei/front.svg",
  10874. extra: 614 / 594,
  10875. bottom: 0.01
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Normal",
  10882. height: math.unit(1.85, "meters"),
  10883. default: true
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(5 + 9 / 12, "feet"),
  10892. weight: math.unit(70, "lb"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/quincy/front.svg",
  10896. extra: 3041 / 2751
  10897. }
  10898. },
  10899. back: {
  10900. height: math.unit(5 + 9 / 12, "feet"),
  10901. weight: math.unit(70, "lb"),
  10902. name: "Back",
  10903. image: {
  10904. source: "./media/characters/quincy/back.svg",
  10905. extra: 3041 / 2751
  10906. }
  10907. },
  10908. flying: {
  10909. height: math.unit(5 + 4 / 12, "feet"),
  10910. weight: math.unit(70, "lb"),
  10911. name: "Flying",
  10912. image: {
  10913. source: "./media/characters/quincy/flying.svg",
  10914. extra: 1044 / 930
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Micro",
  10921. height: math.unit(3, "cm")
  10922. },
  10923. {
  10924. name: "Normal",
  10925. height: math.unit(5 + 9 / 12, "feet")
  10926. },
  10927. {
  10928. name: "Macro",
  10929. height: math.unit(200, "meters"),
  10930. default: true
  10931. },
  10932. {
  10933. name: "Megamacro",
  10934. height: math.unit(1000, "meters")
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(4 + 7 / 12, "feet"),
  10943. weight: math.unit(150, "lb"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/vanrel/front.svg",
  10947. extra: 1,
  10948. bottom: 0.02
  10949. }
  10950. },
  10951. elemental: {
  10952. height: math.unit(3, "feet"),
  10953. weight: math.unit(150, "lb"),
  10954. name: "Elemental",
  10955. image: {
  10956. source: "./media/characters/vanrel/elemental.svg",
  10957. extra: 192.3 / 162.8,
  10958. bottom: 1.79 / 194.17
  10959. }
  10960. },
  10961. side: {
  10962. height: math.unit(4 + 7 / 12, "feet"),
  10963. weight: math.unit(150, "lb"),
  10964. name: "Side",
  10965. image: {
  10966. source: "./media/characters/vanrel/side.svg",
  10967. extra: 1,
  10968. bottom: 0.025
  10969. }
  10970. },
  10971. tome: {
  10972. height: math.unit(1.35, "feet"),
  10973. weight: math.unit(10, "lb"),
  10974. name: "Vanrel's Tome",
  10975. rename: true,
  10976. image: {
  10977. source: "./media/characters/vanrel/tome.svg"
  10978. }
  10979. },
  10980. beans: {
  10981. height: math.unit(0.89, "feet"),
  10982. name: "Beans",
  10983. image: {
  10984. source: "./media/characters/vanrel/beans.svg"
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Normal",
  10991. height: math.unit(4 + 7 / 12, "feet"),
  10992. default: true
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(7 + 5 / 12, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/kuiper-vanrel/front.svg",
  11005. extra: 1118 / 1068,
  11006. bottom: 0.09
  11007. }
  11008. },
  11009. foot: {
  11010. height: math.unit(0.55, "meters"),
  11011. name: "Foot",
  11012. image: {
  11013. source: "./media/characters/kuiper-vanrel/foot.svg",
  11014. }
  11015. },
  11016. battle: {
  11017. height: math.unit(6.824, "feet"),
  11018. weight: math.unit(150, "lb"),
  11019. name: "Battle",
  11020. image: {
  11021. source: "./media/characters/kuiper-vanrel/battle.svg",
  11022. extra: 1466 / 1327,
  11023. bottom: 29 / 1492.5
  11024. }
  11025. },
  11026. },
  11027. [
  11028. {
  11029. name: "Normal",
  11030. height: math.unit(7 + 5 / 12, "feet"),
  11031. default: true
  11032. },
  11033. ]
  11034. ))
  11035. characterMakers.push(() => makeCharacter(
  11036. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11037. {
  11038. front: {
  11039. height: math.unit(8 + 5 / 12, "feet"),
  11040. weight: math.unit(150, "lb"),
  11041. name: "Front",
  11042. image: {
  11043. source: "./media/characters/keset-vanrel/front.svg",
  11044. extra: 1150 / 1084,
  11045. bottom: 0.05
  11046. }
  11047. },
  11048. hand: {
  11049. height: math.unit(0.6, "meters"),
  11050. name: "Hand",
  11051. image: {
  11052. source: "./media/characters/keset-vanrel/hand.svg"
  11053. }
  11054. },
  11055. foot: {
  11056. height: math.unit(0.94978, "meters"),
  11057. name: "Foot",
  11058. image: {
  11059. source: "./media/characters/keset-vanrel/foot.svg"
  11060. }
  11061. },
  11062. battle: {
  11063. height: math.unit(7.408, "feet"),
  11064. weight: math.unit(150, "lb"),
  11065. name: "Battle",
  11066. image: {
  11067. source: "./media/characters/keset-vanrel/battle.svg",
  11068. extra: 1890 / 1386,
  11069. bottom: 73.28 / 1970
  11070. }
  11071. },
  11072. },
  11073. [
  11074. {
  11075. name: "Normal",
  11076. height: math.unit(8 + 5 / 12, "feet"),
  11077. default: true
  11078. },
  11079. ]
  11080. ))
  11081. characterMakers.push(() => makeCharacter(
  11082. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11083. {
  11084. front: {
  11085. height: math.unit(6, "feet"),
  11086. weight: math.unit(150, "lb"),
  11087. name: "Front",
  11088. image: {
  11089. source: "./media/characters/neos/front.svg",
  11090. extra: 1696 / 992,
  11091. bottom: 0.14
  11092. }
  11093. },
  11094. },
  11095. [
  11096. {
  11097. name: "Normal",
  11098. height: math.unit(54, "cm"),
  11099. default: true
  11100. },
  11101. {
  11102. name: "Macro",
  11103. height: math.unit(100, "m")
  11104. },
  11105. {
  11106. name: "Megamacro",
  11107. height: math.unit(10, "km")
  11108. },
  11109. {
  11110. name: "Megamacro+",
  11111. height: math.unit(100, "km")
  11112. },
  11113. {
  11114. name: "Gigamacro",
  11115. height: math.unit(100, "Mm")
  11116. },
  11117. {
  11118. name: "Teramacro",
  11119. height: math.unit(100, "Gm")
  11120. },
  11121. {
  11122. name: "Examacro",
  11123. height: math.unit(100, "Em")
  11124. },
  11125. {
  11126. name: "Godly",
  11127. height: math.unit(10000, "Ym")
  11128. },
  11129. {
  11130. name: "Beyond Godly",
  11131. height: math.unit(25, "multiverses")
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11137. {
  11138. feminine: {
  11139. height: math.unit(5, "feet"),
  11140. weight: math.unit(100, "lb"),
  11141. name: "Feminine",
  11142. image: {
  11143. source: "./media/characters/sammy-mouse/feminine.svg",
  11144. extra: 2526 / 2425,
  11145. bottom: 0.123
  11146. }
  11147. },
  11148. masculine: {
  11149. height: math.unit(5, "feet"),
  11150. weight: math.unit(100, "lb"),
  11151. name: "Masculine",
  11152. image: {
  11153. source: "./media/characters/sammy-mouse/masculine.svg",
  11154. extra: 2526 / 2425,
  11155. bottom: 0.123
  11156. }
  11157. },
  11158. },
  11159. [
  11160. {
  11161. name: "Micro",
  11162. height: math.unit(5, "inches")
  11163. },
  11164. {
  11165. name: "Normal",
  11166. height: math.unit(5, "feet"),
  11167. default: true
  11168. },
  11169. {
  11170. name: "Macro",
  11171. height: math.unit(60, "feet")
  11172. },
  11173. ]
  11174. ))
  11175. characterMakers.push(() => makeCharacter(
  11176. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11177. {
  11178. front: {
  11179. height: math.unit(4, "feet"),
  11180. weight: math.unit(50, "lb"),
  11181. name: "Front",
  11182. image: {
  11183. source: "./media/characters/kole/front.svg",
  11184. extra: 1423 / 1303,
  11185. bottom: 0.025
  11186. }
  11187. },
  11188. back: {
  11189. height: math.unit(4, "feet"),
  11190. weight: math.unit(50, "lb"),
  11191. name: "Back",
  11192. image: {
  11193. source: "./media/characters/kole/back.svg",
  11194. extra: 1426 / 1280,
  11195. bottom: 0.02
  11196. }
  11197. },
  11198. },
  11199. [
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(4, "feet"),
  11203. default: true
  11204. },
  11205. ]
  11206. ))
  11207. characterMakers.push(() => makeCharacter(
  11208. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11209. {
  11210. front: {
  11211. height: math.unit(2 + 6 / 12, "feet"),
  11212. weight: math.unit(20, "lb"),
  11213. name: "Front",
  11214. image: {
  11215. source: "./media/characters/rufran/front.svg",
  11216. extra: 2041 / 1839,
  11217. bottom: 0.055
  11218. }
  11219. },
  11220. back: {
  11221. height: math.unit(2 + 6 / 12, "feet"),
  11222. weight: math.unit(20, "lb"),
  11223. name: "Back",
  11224. image: {
  11225. source: "./media/characters/rufran/back.svg",
  11226. extra: 2054 / 1839,
  11227. bottom: 0.01
  11228. }
  11229. },
  11230. hand: {
  11231. height: math.unit(0.2166, "meters"),
  11232. name: "Hand",
  11233. image: {
  11234. source: "./media/characters/rufran/hand.svg"
  11235. }
  11236. },
  11237. foot: {
  11238. height: math.unit(0.185, "meters"),
  11239. name: "Foot",
  11240. image: {
  11241. source: "./media/characters/rufran/foot.svg"
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Micro",
  11248. height: math.unit(1, "inch")
  11249. },
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(2 + 6 / 12, "feet"),
  11253. default: true
  11254. },
  11255. {
  11256. name: "Big",
  11257. height: math.unit(60, "feet")
  11258. },
  11259. {
  11260. name: "Macro",
  11261. height: math.unit(325, "feet")
  11262. },
  11263. ]
  11264. ))
  11265. characterMakers.push(() => makeCharacter(
  11266. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11267. {
  11268. front: {
  11269. height: math.unit(0.3, "meters"),
  11270. weight: math.unit(3.5, "kg"),
  11271. name: "Front",
  11272. image: {
  11273. source: "./media/characters/chip/front.svg",
  11274. extra: 748 / 674
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Micro",
  11281. height: math.unit(1, "inch"),
  11282. default: true
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11288. {
  11289. side: {
  11290. height: math.unit(2.3, "meters"),
  11291. weight: math.unit(3500, "lb"),
  11292. name: "Side",
  11293. image: {
  11294. source: "./media/characters/torvid/side.svg",
  11295. extra: 1972 / 722,
  11296. bottom: 0.035
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Normal",
  11303. height: math.unit(2.3, "meters"),
  11304. default: true
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(2, "meters"),
  11313. weight: math.unit(150.5, "kg"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/susan/front.svg",
  11317. extra: 693 / 635,
  11318. bottom: 0.05
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Megamacro",
  11325. height: math.unit(505, "miles"),
  11326. default: true
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(150, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/raindrops/front.svg",
  11339. extra: 2655 / 2461,
  11340. bottom: 0.02
  11341. }
  11342. },
  11343. back: {
  11344. height: math.unit(6, "feet"),
  11345. weight: math.unit(150, "lb"),
  11346. name: "Back",
  11347. image: {
  11348. source: "./media/characters/raindrops/back.svg",
  11349. extra: 2574 / 2400,
  11350. bottom: 0.03
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Micro",
  11357. height: math.unit(6, "inches")
  11358. },
  11359. {
  11360. name: "Normal",
  11361. height: math.unit(6 + 2 / 12, "feet")
  11362. },
  11363. {
  11364. name: "Macro",
  11365. height: math.unit(131, "feet"),
  11366. default: true
  11367. },
  11368. {
  11369. name: "Megamacro",
  11370. height: math.unit(15, "miles")
  11371. },
  11372. {
  11373. name: "Gigamacro",
  11374. height: math.unit(4000, "miles")
  11375. },
  11376. {
  11377. name: "Teramacro",
  11378. height: math.unit(315000, "miles")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(2.794, "meters"),
  11387. weight: math.unit(325, "kg"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/tezwa/front.svg",
  11391. extra: 2083 / 1906,
  11392. bottom: 0.031
  11393. }
  11394. },
  11395. foot: {
  11396. height: math.unit(0.687, "meters"),
  11397. name: "Foot",
  11398. image: {
  11399. source: "./media/characters/tezwa/foot.svg"
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(9 + 2 / 12, "feet"),
  11407. default: true
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11413. {
  11414. front: {
  11415. height: math.unit(58, "feet"),
  11416. weight: math.unit(89000, "lb"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/typhus/front.svg",
  11420. extra: 816 / 800,
  11421. bottom: 0.065
  11422. }
  11423. },
  11424. },
  11425. [
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(58, "feet"),
  11429. default: true
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11435. {
  11436. front: {
  11437. height: math.unit(12, "feet"),
  11438. weight: math.unit(6, "tonnes"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/lyra-von-wulf/front.svg",
  11442. extra: 1,
  11443. bottom: 0.10
  11444. }
  11445. },
  11446. frontMecha: {
  11447. height: math.unit(12, "feet"),
  11448. weight: math.unit(12, "tonnes"),
  11449. name: "Front (Mecha)",
  11450. image: {
  11451. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11452. extra: 1,
  11453. bottom: 0.042
  11454. }
  11455. },
  11456. maw: {
  11457. height: math.unit(2.2, "feet"),
  11458. name: "Maw",
  11459. image: {
  11460. source: "./media/characters/lyra-von-wulf/maw.svg"
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Normal",
  11467. height: math.unit(12, "feet"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Classic",
  11472. height: math.unit(50, "feet")
  11473. },
  11474. {
  11475. name: "Macro",
  11476. height: math.unit(500, "feet")
  11477. },
  11478. {
  11479. name: "Megamacro",
  11480. height: math.unit(1, "mile")
  11481. },
  11482. {
  11483. name: "Gigamacro",
  11484. height: math.unit(400, "miles")
  11485. },
  11486. {
  11487. name: "Teramacro",
  11488. height: math.unit(22000, "miles")
  11489. },
  11490. {
  11491. name: "Solarmacro",
  11492. height: math.unit(8600000, "miles")
  11493. },
  11494. {
  11495. name: "Galactic",
  11496. height: math.unit(1057000, "lightyears")
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(6 + 10 / 12, "feet"),
  11505. weight: math.unit(150, "lb"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/dixon/front.svg",
  11509. extra: 3361 / 3209,
  11510. bottom: 0.01
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(6 + 10 / 12, "feet"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Big",
  11522. height: math.unit(12, "meters")
  11523. },
  11524. {
  11525. name: "Macro",
  11526. height: math.unit(500, "meters")
  11527. },
  11528. {
  11529. name: "Megamacro",
  11530. height: math.unit(2, "km")
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11536. {
  11537. front: {
  11538. height: math.unit(185, "cm"),
  11539. weight: math.unit(68, "kg"),
  11540. name: "Front",
  11541. image: {
  11542. source: "./media/characters/kauko/front.svg",
  11543. extra: 1455 / 1421,
  11544. bottom: 0.03
  11545. }
  11546. },
  11547. back: {
  11548. height: math.unit(185, "cm"),
  11549. weight: math.unit(68, "kg"),
  11550. name: "Back",
  11551. image: {
  11552. source: "./media/characters/kauko/back.svg",
  11553. extra: 1455 / 1421,
  11554. bottom: 0.004
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Normal",
  11561. height: math.unit(185, "cm"),
  11562. default: true
  11563. },
  11564. ]
  11565. ))
  11566. characterMakers.push(() => makeCharacter(
  11567. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11568. {
  11569. front: {
  11570. height: math.unit(6, "feet"),
  11571. weight: math.unit(150, "kg"),
  11572. name: "Front",
  11573. image: {
  11574. source: "./media/characters/varg/front.svg",
  11575. extra: 1108 / 1018,
  11576. bottom: 0.0375
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(5, "meters")
  11584. },
  11585. {
  11586. name: "Macro",
  11587. height: math.unit(200, "meters")
  11588. },
  11589. {
  11590. name: "Megamacro",
  11591. height: math.unit(20, "kilometers")
  11592. },
  11593. {
  11594. name: "True Size",
  11595. height: math.unit(211, "km"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Gigamacro",
  11600. height: math.unit(1000, "km")
  11601. },
  11602. {
  11603. name: "Gigamacro+",
  11604. height: math.unit(8000, "km")
  11605. },
  11606. {
  11607. name: "Teramacro",
  11608. height: math.unit(1000000, "km")
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(7 + 7 / 12, "feet"),
  11617. weight: math.unit(267, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/dayza/front.svg",
  11621. extra: 1262 / 1200,
  11622. bottom: 0.035
  11623. }
  11624. },
  11625. side: {
  11626. height: math.unit(7 + 7 / 12, "feet"),
  11627. weight: math.unit(267, "lb"),
  11628. name: "Side",
  11629. image: {
  11630. source: "./media/characters/dayza/side.svg",
  11631. extra: 1295 / 1245,
  11632. bottom: 0.05
  11633. }
  11634. },
  11635. back: {
  11636. height: math.unit(7 + 7 / 12, "feet"),
  11637. weight: math.unit(267, "lb"),
  11638. name: "Back",
  11639. image: {
  11640. source: "./media/characters/dayza/back.svg",
  11641. extra: 1241 / 1170
  11642. }
  11643. },
  11644. },
  11645. [
  11646. {
  11647. name: "Normal",
  11648. height: math.unit(7 + 7 / 12, "feet"),
  11649. default: true
  11650. },
  11651. {
  11652. name: "Macro",
  11653. height: math.unit(155, "feet")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11659. {
  11660. front: {
  11661. height: math.unit(6 + 5 / 12, "feet"),
  11662. weight: math.unit(160, "lb"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/xanthos/front.svg",
  11666. extra: 1,
  11667. bottom: 0.04
  11668. }
  11669. },
  11670. back: {
  11671. height: math.unit(6 + 5 / 12, "feet"),
  11672. weight: math.unit(160, "lb"),
  11673. name: "Back",
  11674. image: {
  11675. source: "./media/characters/xanthos/back.svg",
  11676. extra: 1,
  11677. bottom: 0.03
  11678. }
  11679. },
  11680. hand: {
  11681. height: math.unit(0.928, "feet"),
  11682. name: "Hand",
  11683. image: {
  11684. source: "./media/characters/xanthos/hand.svg"
  11685. }
  11686. },
  11687. foot: {
  11688. height: math.unit(1.286, "feet"),
  11689. name: "Foot",
  11690. image: {
  11691. source: "./media/characters/xanthos/foot.svg"
  11692. }
  11693. },
  11694. },
  11695. [
  11696. {
  11697. name: "Normal",
  11698. height: math.unit(6 + 5 / 12, "feet"),
  11699. default: true
  11700. },
  11701. {
  11702. name: "Normal+",
  11703. height: math.unit(6, "meters")
  11704. },
  11705. {
  11706. name: "Macro",
  11707. height: math.unit(40, "feet")
  11708. },
  11709. {
  11710. name: "Macro+",
  11711. height: math.unit(200, "meters")
  11712. },
  11713. {
  11714. name: "Megamacro",
  11715. height: math.unit(20, "km")
  11716. },
  11717. {
  11718. name: "Megamacro+",
  11719. height: math.unit(100, "km")
  11720. },
  11721. ]
  11722. ))
  11723. characterMakers.push(() => makeCharacter(
  11724. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11725. {
  11726. front: {
  11727. height: math.unit(6 + 3 / 12, "feet"),
  11728. weight: math.unit(215, "lb"),
  11729. name: "Front",
  11730. image: {
  11731. source: "./media/characters/grynn/front.svg",
  11732. extra: 4627 / 4209,
  11733. bottom: 0.047
  11734. }
  11735. },
  11736. },
  11737. [
  11738. {
  11739. name: "Micro",
  11740. height: math.unit(6, "inches")
  11741. },
  11742. {
  11743. name: "Normal",
  11744. height: math.unit(6 + 3 / 12, "feet"),
  11745. default: true
  11746. },
  11747. {
  11748. name: "Big",
  11749. height: math.unit(104, "feet")
  11750. },
  11751. {
  11752. name: "Macro",
  11753. height: math.unit(944, "feet")
  11754. },
  11755. {
  11756. name: "Macro+",
  11757. height: math.unit(9480, "feet")
  11758. },
  11759. {
  11760. name: "Megamacro",
  11761. height: math.unit(78752, "feet")
  11762. },
  11763. {
  11764. name: "Megamacro+",
  11765. height: math.unit(630128, "feet")
  11766. },
  11767. {
  11768. name: "Megamacro++",
  11769. height: math.unit(3150695, "feet")
  11770. },
  11771. ]
  11772. ))
  11773. characterMakers.push(() => makeCharacter(
  11774. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11775. {
  11776. front: {
  11777. height: math.unit(7 + 5 / 12, "feet"),
  11778. weight: math.unit(450, "lb"),
  11779. name: "Front",
  11780. image: {
  11781. source: "./media/characters/mocha-aura/front.svg",
  11782. extra: 1907 / 1817,
  11783. bottom: 0.04
  11784. }
  11785. },
  11786. back: {
  11787. height: math.unit(7 + 5 / 12, "feet"),
  11788. weight: math.unit(450, "lb"),
  11789. name: "Back",
  11790. image: {
  11791. source: "./media/characters/mocha-aura/back.svg",
  11792. extra: 1900 / 1825,
  11793. bottom: 0.045
  11794. }
  11795. },
  11796. },
  11797. [
  11798. {
  11799. name: "Nano",
  11800. height: math.unit(1, "nm")
  11801. },
  11802. {
  11803. name: "Megamicro",
  11804. height: math.unit(1, "mm")
  11805. },
  11806. {
  11807. name: "Micro",
  11808. height: math.unit(3, "inches")
  11809. },
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(7 + 5 / 12, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(30, "feet")
  11818. },
  11819. {
  11820. name: "Megamacro",
  11821. height: math.unit(3500, "feet")
  11822. },
  11823. {
  11824. name: "Teramacro",
  11825. height: math.unit(500000, "miles")
  11826. },
  11827. {
  11828. name: "Petamacro",
  11829. height: math.unit(50000000000000000, "parsecs")
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11835. {
  11836. front: {
  11837. height: math.unit(6, "feet"),
  11838. weight: math.unit(150, "lb"),
  11839. name: "Front",
  11840. image: {
  11841. source: "./media/characters/ilisha-devya/front.svg",
  11842. extra: 1,
  11843. bottom: 0.175
  11844. }
  11845. },
  11846. back: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(150, "lb"),
  11849. name: "Back",
  11850. image: {
  11851. source: "./media/characters/ilisha-devya/back.svg",
  11852. extra: 1,
  11853. bottom: 0.015
  11854. }
  11855. },
  11856. },
  11857. [
  11858. {
  11859. name: "Macro",
  11860. height: math.unit(500, "feet"),
  11861. default: true
  11862. },
  11863. {
  11864. name: "Megamacro",
  11865. height: math.unit(10, "miles")
  11866. },
  11867. {
  11868. name: "Gigamacro",
  11869. height: math.unit(100000, "miles")
  11870. },
  11871. {
  11872. name: "Examacro",
  11873. height: math.unit(1e9, "lightyears")
  11874. },
  11875. {
  11876. name: "Omniversal",
  11877. height: math.unit(1e33, "lightyears")
  11878. },
  11879. {
  11880. name: "Beyond Infinite",
  11881. height: math.unit(1e100, "lightyears")
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11887. {
  11888. Side: {
  11889. height: math.unit(6, "feet"),
  11890. weight: math.unit(150, "lb"),
  11891. name: "Side",
  11892. image: {
  11893. source: "./media/characters/mira/side.svg",
  11894. extra: 900 / 799,
  11895. bottom: 0.02
  11896. }
  11897. },
  11898. },
  11899. [
  11900. {
  11901. name: "Human Size",
  11902. height: math.unit(6, "feet")
  11903. },
  11904. {
  11905. name: "Macro",
  11906. height: math.unit(100, "feet"),
  11907. default: true
  11908. },
  11909. {
  11910. name: "Megamacro",
  11911. height: math.unit(10, "miles")
  11912. },
  11913. {
  11914. name: "Gigamacro",
  11915. height: math.unit(25000, "miles")
  11916. },
  11917. {
  11918. name: "Teramacro",
  11919. height: math.unit(300, "AU")
  11920. },
  11921. {
  11922. name: "Full Size",
  11923. height: math.unit(4.5e10, "lightyears")
  11924. },
  11925. ]
  11926. ))
  11927. characterMakers.push(() => makeCharacter(
  11928. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11929. {
  11930. front: {
  11931. height: math.unit(6, "feet"),
  11932. weight: math.unit(150, "lb"),
  11933. name: "Front",
  11934. image: {
  11935. source: "./media/characters/holly/front.svg",
  11936. extra: 639 / 606
  11937. }
  11938. },
  11939. back: {
  11940. height: math.unit(6, "feet"),
  11941. weight: math.unit(150, "lb"),
  11942. name: "Back",
  11943. image: {
  11944. source: "./media/characters/holly/back.svg",
  11945. extra: 623 / 598
  11946. }
  11947. },
  11948. frontWorking: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Front (Working)",
  11952. image: {
  11953. source: "./media/characters/holly/front-working.svg",
  11954. extra: 607 / 577,
  11955. bottom: 0.048
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Normal",
  11962. height: math.unit(12 + 3 / 12, "feet"),
  11963. default: true
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(6, "feet"),
  11972. weight: math.unit(150, "lb"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/porter/front.svg",
  11976. extra: 1,
  11977. bottom: 0.01
  11978. }
  11979. },
  11980. frontRobes: {
  11981. height: math.unit(6, "feet"),
  11982. weight: math.unit(150, "lb"),
  11983. name: "Front (Robes)",
  11984. image: {
  11985. source: "./media/characters/porter/front-robes.svg",
  11986. extra: 1.01,
  11987. bottom: 0.01
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Normal",
  11994. height: math.unit(11 + 9 / 12, "feet"),
  11995. default: true
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12001. {
  12002. legendary: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(150, "lb"),
  12005. name: "Legendary",
  12006. image: {
  12007. source: "./media/characters/lucy/legendary.svg",
  12008. extra: 1355 / 1100,
  12009. bottom: 0.045
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Legendary",
  12016. height: math.unit(86882 * 2, "miles"),
  12017. default: true
  12018. },
  12019. ]
  12020. ))
  12021. characterMakers.push(() => makeCharacter(
  12022. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12023. {
  12024. front: {
  12025. height: math.unit(6, "feet"),
  12026. weight: math.unit(150, "lb"),
  12027. name: "Front",
  12028. image: {
  12029. source: "./media/characters/drusilla/front.svg",
  12030. extra: 678 / 635,
  12031. bottom: 0.03
  12032. }
  12033. },
  12034. back: {
  12035. height: math.unit(6, "feet"),
  12036. weight: math.unit(150, "lb"),
  12037. name: "Back",
  12038. image: {
  12039. source: "./media/characters/drusilla/back.svg",
  12040. extra: 678 / 635,
  12041. bottom: 0.005
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(100, "feet")
  12049. },
  12050. {
  12051. name: "Canon Height",
  12052. height: math.unit(2000, "feet"),
  12053. default: true
  12054. },
  12055. ]
  12056. ))
  12057. characterMakers.push(() => makeCharacter(
  12058. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12059. {
  12060. front: {
  12061. height: math.unit(6, "feet"),
  12062. weight: math.unit(180, "lb"),
  12063. name: "Front",
  12064. image: {
  12065. source: "./media/characters/renard-thatch/front.svg",
  12066. extra: 2411 / 2275,
  12067. bottom: 0.01
  12068. }
  12069. },
  12070. frontPosing: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(180, "lb"),
  12073. name: "Front (Posing)",
  12074. image: {
  12075. source: "./media/characters/renard-thatch/front-posing.svg",
  12076. extra: 2381 / 2261,
  12077. bottom: 0.01
  12078. }
  12079. },
  12080. back: {
  12081. height: math.unit(6, "feet"),
  12082. weight: math.unit(180, "lb"),
  12083. name: "Back",
  12084. image: {
  12085. source: "./media/characters/renard-thatch/back.svg",
  12086. extra: 2428 / 2288
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Micro",
  12093. height: math.unit(3, "inches")
  12094. },
  12095. {
  12096. name: "Default",
  12097. height: math.unit(6, "feet"),
  12098. default: true
  12099. },
  12100. {
  12101. name: "Macro",
  12102. height: math.unit(75, "feet")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(1450, "feet"),
  12111. weight: math.unit(1.21e6, "tons"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/sekvra/front.svg",
  12115. extra: 1,
  12116. bottom: 0.03
  12117. }
  12118. },
  12119. frontClothed: {
  12120. height: math.unit(1450, "feet"),
  12121. weight: math.unit(1.21e6, "tons"),
  12122. name: "Front (Clothed)",
  12123. image: {
  12124. source: "./media/characters/sekvra/front-clothed.svg",
  12125. extra: 1,
  12126. bottom: 0.03
  12127. }
  12128. },
  12129. side: {
  12130. height: math.unit(1450, "feet"),
  12131. weight: math.unit(1.21e6, "tons"),
  12132. name: "Side",
  12133. image: {
  12134. source: "./media/characters/sekvra/side.svg",
  12135. extra: 1,
  12136. bottom: 0.025
  12137. }
  12138. },
  12139. back: {
  12140. height: math.unit(1450, "feet"),
  12141. weight: math.unit(1.21e6, "tons"),
  12142. name: "Back",
  12143. image: {
  12144. source: "./media/characters/sekvra/back.svg",
  12145. extra: 1,
  12146. bottom: 0.005
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(1450, "feet"),
  12154. default: true
  12155. },
  12156. {
  12157. name: "Megamacro",
  12158. height: math.unit(15000, "feet")
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(6, "feet"),
  12167. weight: math.unit(150, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/carmine/front.svg",
  12171. extra: 1,
  12172. bottom: 0.035
  12173. }
  12174. },
  12175. frontArmor: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(150, "lb"),
  12178. name: "Front (Armor)",
  12179. image: {
  12180. source: "./media/characters/carmine/front-armor.svg",
  12181. extra: 1,
  12182. bottom: 0.035
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Large",
  12189. height: math.unit(1, "mile")
  12190. },
  12191. {
  12192. name: "Huge",
  12193. height: math.unit(40, "miles"),
  12194. default: true
  12195. },
  12196. {
  12197. name: "Colossal",
  12198. height: math.unit(2500, "miles")
  12199. },
  12200. ]
  12201. ))
  12202. characterMakers.push(() => makeCharacter(
  12203. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12204. {
  12205. front: {
  12206. height: math.unit(6, "feet"),
  12207. weight: math.unit(150, "lb"),
  12208. name: "Front",
  12209. image: {
  12210. source: "./media/characters/elyssia/front.svg",
  12211. extra: 2201 / 2035,
  12212. bottom: 0.05
  12213. }
  12214. },
  12215. frontClothed: {
  12216. height: math.unit(6, "feet"),
  12217. weight: math.unit(150, "lb"),
  12218. name: "Front (Clothed)",
  12219. image: {
  12220. source: "./media/characters/elyssia/front-clothed.svg",
  12221. extra: 2201 / 2035,
  12222. bottom: 0.05
  12223. }
  12224. },
  12225. back: {
  12226. height: math.unit(6, "feet"),
  12227. weight: math.unit(150, "lb"),
  12228. name: "Back",
  12229. image: {
  12230. source: "./media/characters/elyssia/back.svg",
  12231. extra: 2201 / 2035,
  12232. bottom: 0.013
  12233. }
  12234. },
  12235. },
  12236. [
  12237. {
  12238. name: "Smaller",
  12239. height: math.unit(150, "feet")
  12240. },
  12241. {
  12242. name: "Standard",
  12243. height: math.unit(1400, "feet"),
  12244. default: true
  12245. },
  12246. {
  12247. name: "Distracted",
  12248. height: math.unit(15000, "feet")
  12249. },
  12250. ]
  12251. ))
  12252. characterMakers.push(() => makeCharacter(
  12253. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12254. {
  12255. front: {
  12256. height: math.unit(7 + 4 / 12, "feet"),
  12257. weight: math.unit(500, "lb"),
  12258. name: "Front",
  12259. image: {
  12260. source: "./media/characters/geno-maxwell/front.svg",
  12261. extra: 2207 / 2040,
  12262. bottom: 0.015
  12263. }
  12264. },
  12265. },
  12266. [
  12267. {
  12268. name: "Micro",
  12269. height: math.unit(3, "inches")
  12270. },
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(7 + 4 / 12, "feet"),
  12274. default: true
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(220, "feet")
  12279. },
  12280. {
  12281. name: "Megamacro",
  12282. height: math.unit(11, "miles")
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(7 + 4 / 12, "feet"),
  12291. weight: math.unit(500, "lb"),
  12292. name: "Front",
  12293. image: {
  12294. source: "./media/characters/regena-maxwell/front.svg",
  12295. extra: 3115 / 2770,
  12296. bottom: 0.02
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(7 + 4 / 12, "feet"),
  12304. default: true
  12305. },
  12306. {
  12307. name: "Macro",
  12308. height: math.unit(220, "feet")
  12309. },
  12310. {
  12311. name: "Megamacro",
  12312. height: math.unit(11, "miles")
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12318. {
  12319. front: {
  12320. height: math.unit(6, "feet"),
  12321. weight: math.unit(150, "lb"),
  12322. name: "Front",
  12323. image: {
  12324. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12325. extra: 860 / 690,
  12326. bottom: 0.03
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Normal",
  12333. height: math.unit(1.7, "meters"),
  12334. default: true
  12335. },
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12340. {
  12341. front: {
  12342. height: math.unit(6, "feet"),
  12343. weight: math.unit(150, "lb"),
  12344. name: "Front",
  12345. image: {
  12346. source: "./media/characters/quilly/front.svg",
  12347. extra: 890 / 776
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Gigamacro",
  12354. height: math.unit(404090, "miles"),
  12355. default: true
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12361. {
  12362. front: {
  12363. height: math.unit(7 + 8 / 12, "feet"),
  12364. weight: math.unit(350, "lb"),
  12365. name: "Front",
  12366. image: {
  12367. source: "./media/characters/tempest/front.svg",
  12368. extra: 1175 / 1086,
  12369. bottom: 0.02
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(7 + 8 / 12, "feet"),
  12377. default: true
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12383. {
  12384. side: {
  12385. height: math.unit(4 + 5 / 12, "feet"),
  12386. weight: math.unit(80, "lb"),
  12387. name: "Side",
  12388. image: {
  12389. source: "./media/characters/rodger/side.svg",
  12390. extra: 1235 / 1118
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Micro",
  12397. height: math.unit(1, "inch")
  12398. },
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(4 + 5 / 12, "feet"),
  12402. default: true
  12403. },
  12404. {
  12405. name: "Macro",
  12406. height: math.unit(120, "feet")
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12412. {
  12413. front: {
  12414. height: math.unit(6, "feet"),
  12415. weight: math.unit(150, "lb"),
  12416. name: "Front",
  12417. image: {
  12418. source: "./media/characters/danyel/front.svg",
  12419. extra: 1185 / 1123,
  12420. bottom: 0.05
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Shrunken",
  12427. height: math.unit(0.5, "mm")
  12428. },
  12429. {
  12430. name: "Micro",
  12431. height: math.unit(1, "mm"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Upsized",
  12436. height: math.unit(5 + 5 / 12, "feet")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(5 + 6 / 12, "feet"),
  12445. weight: math.unit(200, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/vivian-bijoux/front.svg",
  12449. extra: 1,
  12450. bottom: 0.072
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Normal",
  12457. height: math.unit(5 + 6 / 12, "feet"),
  12458. default: true
  12459. },
  12460. {
  12461. name: "Bad Dream",
  12462. height: math.unit(500, "feet")
  12463. },
  12464. {
  12465. name: "Nightmare",
  12466. height: math.unit(500, "miles")
  12467. },
  12468. ]
  12469. ))
  12470. characterMakers.push(() => makeCharacter(
  12471. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12472. {
  12473. front: {
  12474. height: math.unit(6 + 1 / 12, "feet"),
  12475. weight: math.unit(260, "lb"),
  12476. name: "Front",
  12477. image: {
  12478. source: "./media/characters/zeta/front.svg",
  12479. extra: 1968 / 1889,
  12480. bottom: 0.06
  12481. }
  12482. },
  12483. back: {
  12484. height: math.unit(6 + 1 / 12, "feet"),
  12485. weight: math.unit(260, "lb"),
  12486. name: "Back",
  12487. image: {
  12488. source: "./media/characters/zeta/back.svg",
  12489. extra: 1944 / 1858,
  12490. bottom: 0.03
  12491. }
  12492. },
  12493. hand: {
  12494. height: math.unit(1.112, "feet"),
  12495. name: "Hand",
  12496. image: {
  12497. source: "./media/characters/zeta/hand.svg"
  12498. }
  12499. },
  12500. foot: {
  12501. height: math.unit(1.48, "feet"),
  12502. name: "Foot",
  12503. image: {
  12504. source: "./media/characters/zeta/foot.svg"
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Micro",
  12511. height: math.unit(6, "inches")
  12512. },
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(6 + 1 / 12, "feet"),
  12516. default: true
  12517. },
  12518. {
  12519. name: "Macro",
  12520. height: math.unit(20, "feet")
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(150, "lb"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/jamie-larsen/front.svg",
  12533. extra: 962 / 933,
  12534. bottom: 0.02
  12535. }
  12536. },
  12537. back: {
  12538. height: math.unit(6, "feet"),
  12539. weight: math.unit(150, "lb"),
  12540. name: "Back",
  12541. image: {
  12542. source: "./media/characters/jamie-larsen/back.svg",
  12543. extra: 997 / 946
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Macro",
  12550. height: math.unit(28 + 7 / 12, "feet"),
  12551. default: true
  12552. },
  12553. {
  12554. name: "Macro+",
  12555. height: math.unit(180, "feet")
  12556. },
  12557. {
  12558. name: "Megamacro",
  12559. height: math.unit(10, "miles")
  12560. },
  12561. {
  12562. name: "Gigamacro",
  12563. height: math.unit(200000, "miles")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12569. {
  12570. front: {
  12571. height: math.unit(6, "feet"),
  12572. weight: math.unit(120, "lb"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/vance/front.svg",
  12576. extra: 1980 / 1890,
  12577. bottom: 0.09
  12578. }
  12579. },
  12580. back: {
  12581. height: math.unit(6, "feet"),
  12582. weight: math.unit(120, "lb"),
  12583. name: "Back",
  12584. image: {
  12585. source: "./media/characters/vance/back.svg",
  12586. extra: 2081 / 1994,
  12587. bottom: 0.014
  12588. }
  12589. },
  12590. hand: {
  12591. height: math.unit(0.88, "feet"),
  12592. name: "Hand",
  12593. image: {
  12594. source: "./media/characters/vance/hand.svg"
  12595. }
  12596. },
  12597. foot: {
  12598. height: math.unit(0.64, "feet"),
  12599. name: "Foot",
  12600. image: {
  12601. source: "./media/characters/vance/foot.svg"
  12602. }
  12603. },
  12604. },
  12605. [
  12606. {
  12607. name: "Small",
  12608. height: math.unit(90, "feet"),
  12609. default: true
  12610. },
  12611. {
  12612. name: "Macro",
  12613. height: math.unit(100, "meters")
  12614. },
  12615. {
  12616. name: "Megamacro",
  12617. height: math.unit(15, "miles")
  12618. },
  12619. ]
  12620. ))
  12621. characterMakers.push(() => makeCharacter(
  12622. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12623. {
  12624. front: {
  12625. height: math.unit(6, "feet"),
  12626. weight: math.unit(180, "lb"),
  12627. name: "Front",
  12628. image: {
  12629. source: "./media/characters/xochitl/front.svg",
  12630. extra: 2297 / 2261,
  12631. bottom: 0.065
  12632. }
  12633. },
  12634. back: {
  12635. height: math.unit(6, "feet"),
  12636. weight: math.unit(180, "lb"),
  12637. name: "Back",
  12638. image: {
  12639. source: "./media/characters/xochitl/back.svg",
  12640. extra: 2386 / 2354,
  12641. bottom: 0.01
  12642. }
  12643. },
  12644. foot: {
  12645. height: math.unit(6 / 5 * 1.15, "feet"),
  12646. weight: math.unit(150, "lb"),
  12647. name: "Foot",
  12648. image: {
  12649. source: "./media/characters/xochitl/foot.svg"
  12650. }
  12651. },
  12652. },
  12653. [
  12654. {
  12655. name: "Macro",
  12656. height: math.unit(80, "feet")
  12657. },
  12658. {
  12659. name: "Macro+",
  12660. height: math.unit(400, "feet"),
  12661. default: true
  12662. },
  12663. {
  12664. name: "Gigamacro",
  12665. height: math.unit(80000, "miles")
  12666. },
  12667. {
  12668. name: "Gigamacro+",
  12669. height: math.unit(400000, "miles")
  12670. },
  12671. {
  12672. name: "Teramacro",
  12673. height: math.unit(300, "AU")
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(6, "feet"),
  12682. weight: math.unit(150, "lb"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/vincent/front.svg",
  12686. extra: 1130 / 1080,
  12687. bottom: 0.055
  12688. }
  12689. },
  12690. beak: {
  12691. height: math.unit(6 * 0.1, "feet"),
  12692. name: "Beak",
  12693. image: {
  12694. source: "./media/characters/vincent/beak.svg"
  12695. }
  12696. },
  12697. hand: {
  12698. height: math.unit(6 * 0.85, "feet"),
  12699. weight: math.unit(150, "lb"),
  12700. name: "Hand",
  12701. image: {
  12702. source: "./media/characters/vincent/hand.svg"
  12703. }
  12704. },
  12705. foot: {
  12706. height: math.unit(6 * 0.19, "feet"),
  12707. weight: math.unit(150, "lb"),
  12708. name: "Foot",
  12709. image: {
  12710. source: "./media/characters/vincent/foot.svg"
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Base",
  12717. height: math.unit(6 + 5 / 12, "feet"),
  12718. default: true
  12719. },
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(300, "feet")
  12723. },
  12724. {
  12725. name: "Megamacro",
  12726. height: math.unit(2, "miles")
  12727. },
  12728. {
  12729. name: "Gigamacro",
  12730. height: math.unit(1000, "miles")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(6 + 2 / 12, "feet"),
  12739. weight: math.unit(265, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/jay/front.svg",
  12743. extra: 1510 / 1430,
  12744. bottom: 0.042
  12745. }
  12746. },
  12747. back: {
  12748. height: math.unit(6 + 2 / 12, "feet"),
  12749. weight: math.unit(265, "lb"),
  12750. name: "Back",
  12751. image: {
  12752. source: "./media/characters/jay/back.svg",
  12753. extra: 1510 / 1430,
  12754. bottom: 0.025
  12755. }
  12756. },
  12757. clothed: {
  12758. height: math.unit(6 + 2 / 12, "feet"),
  12759. weight: math.unit(265, "lb"),
  12760. name: "Front (Clothed)",
  12761. image: {
  12762. source: "./media/characters/jay/clothed.svg",
  12763. extra: 744 / 699,
  12764. bottom: 0.043
  12765. }
  12766. },
  12767. head: {
  12768. height: math.unit(1.772, "feet"),
  12769. name: "Head",
  12770. image: {
  12771. source: "./media/characters/jay/head.svg"
  12772. }
  12773. },
  12774. sizeRay: {
  12775. height: math.unit(1.331, "feet"),
  12776. name: "Size Ray",
  12777. image: {
  12778. source: "./media/characters/jay/size-ray.svg"
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Micro",
  12785. height: math.unit(1, "inch")
  12786. },
  12787. {
  12788. name: "Normal",
  12789. height: math.unit(6 + 2 / 12, "feet"),
  12790. default: true
  12791. },
  12792. {
  12793. name: "Macro",
  12794. height: math.unit(1, "mile")
  12795. },
  12796. {
  12797. name: "Megamacro",
  12798. height: math.unit(100, "miles")
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(2, "meters"),
  12807. weight: math.unit(500, "kg"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/coatl/front.svg",
  12811. extra: 3948 / 3500,
  12812. bottom: 0.082
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Normal",
  12819. height: math.unit(4, "meters")
  12820. },
  12821. {
  12822. name: "Macro",
  12823. height: math.unit(100, "meters"),
  12824. default: true
  12825. },
  12826. {
  12827. name: "Macro+",
  12828. height: math.unit(300, "meters")
  12829. },
  12830. {
  12831. name: "Megamacro",
  12832. height: math.unit(3, "gigameters")
  12833. },
  12834. {
  12835. name: "Megamacro+",
  12836. height: math.unit(300, "terameters")
  12837. },
  12838. {
  12839. name: "Megamacro++",
  12840. height: math.unit(3, "lightyears")
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12846. {
  12847. front: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(50, "kg"),
  12850. name: "front",
  12851. image: {
  12852. source: "./media/characters/shiroryu/front.svg",
  12853. extra: 1990 / 1935
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Mortal Mingling",
  12860. height: math.unit(3, "meters")
  12861. },
  12862. {
  12863. name: "Kaiju-ish",
  12864. height: math.unit(250, "meters")
  12865. },
  12866. {
  12867. name: "Somewhat Godly",
  12868. height: math.unit(400, "km"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Planetary",
  12873. height: math.unit(300, "megameters")
  12874. },
  12875. {
  12876. name: "Galaxy-dwarfing",
  12877. height: math.unit(450, "kiloparsecs")
  12878. },
  12879. {
  12880. name: "Universe Eater",
  12881. height: math.unit(150, "gigaparsecs")
  12882. },
  12883. {
  12884. name: "Almost Immeasurable",
  12885. height: math.unit(1.3e266, "yottaparsecs")
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(6, "feet"),
  12894. weight: math.unit(150, "lb"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/umeko/front.svg",
  12898. extra: 1,
  12899. bottom: 0.019
  12900. }
  12901. },
  12902. frontArmored: {
  12903. height: math.unit(6, "feet"),
  12904. weight: math.unit(150, "lb"),
  12905. name: "Front (Armored)",
  12906. image: {
  12907. source: "./media/characters/umeko/front-armored.svg",
  12908. extra: 1,
  12909. bottom: 0.021
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Macro",
  12916. height: math.unit(220, "feet"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Guardian Dragon",
  12921. height: math.unit(50, "miles")
  12922. },
  12923. {
  12924. name: "Cosmic",
  12925. height: math.unit(800000, "miles")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(6, "feet"),
  12934. weight: math.unit(150, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/cassidy/front.svg",
  12938. extra: 1,
  12939. bottom: 0.043
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Canon Height",
  12946. height: math.unit(120, "feet"),
  12947. default: true
  12948. },
  12949. {
  12950. name: "Macro+",
  12951. height: math.unit(400, "feet")
  12952. },
  12953. {
  12954. name: "Macro++",
  12955. height: math.unit(4000, "feet")
  12956. },
  12957. {
  12958. name: "Megamacro",
  12959. height: math.unit(3, "miles")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/isaac/front.svg",
  12972. extra: 896 / 815,
  12973. bottom: 0.11
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Human Size",
  12980. height: math.unit(8, "feet"),
  12981. default: true
  12982. },
  12983. {
  12984. name: "Macro",
  12985. height: math.unit(400, "feet")
  12986. },
  12987. {
  12988. name: "Megamacro",
  12989. height: math.unit(50, "miles")
  12990. },
  12991. {
  12992. name: "Canon Height",
  12993. height: math.unit(200, "AU")
  12994. },
  12995. ]
  12996. ))
  12997. characterMakers.push(() => makeCharacter(
  12998. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12999. {
  13000. front: {
  13001. height: math.unit(6, "feet"),
  13002. weight: math.unit(72, "kg"),
  13003. name: "Front",
  13004. image: {
  13005. source: "./media/characters/sleekit/front.svg",
  13006. extra: 4693 / 4487,
  13007. bottom: 0.012
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Minimum Height",
  13014. height: math.unit(10, "meters")
  13015. },
  13016. {
  13017. name: "Smaller",
  13018. height: math.unit(25, "meters")
  13019. },
  13020. {
  13021. name: "Larger",
  13022. height: math.unit(38, "meters"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Maximum height",
  13027. height: math.unit(100, "meters")
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13033. {
  13034. front: {
  13035. height: math.unit(6, "feet"),
  13036. weight: math.unit(150, "lb"),
  13037. name: "Front",
  13038. image: {
  13039. source: "./media/characters/nillia/front.svg",
  13040. extra: 2195 / 2037,
  13041. bottom: 0.005
  13042. }
  13043. },
  13044. back: {
  13045. height: math.unit(6, "feet"),
  13046. weight: math.unit(150, "lb"),
  13047. name: "Back",
  13048. image: {
  13049. source: "./media/characters/nillia/back.svg",
  13050. extra: 2195 / 2037,
  13051. bottom: 0.005
  13052. }
  13053. },
  13054. },
  13055. [
  13056. {
  13057. name: "Canon Height",
  13058. height: math.unit(489, "feet"),
  13059. default: true
  13060. }
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], 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/mesmyriza/front.svg",
  13072. extra: 2067 / 1784,
  13073. bottom: 0.035
  13074. }
  13075. },
  13076. foot: {
  13077. height: math.unit(6 / (250 / 35), "feet"),
  13078. name: "Foot",
  13079. image: {
  13080. source: "./media/characters/mesmyriza/foot.svg"
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Macro",
  13087. height: math.unit(457, "meters"),
  13088. default: true
  13089. },
  13090. {
  13091. name: "Megamacro",
  13092. height: math.unit(8, "megameters")
  13093. },
  13094. ]
  13095. ))
  13096. characterMakers.push(() => makeCharacter(
  13097. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13098. {
  13099. front: {
  13100. height: math.unit(6, "feet"),
  13101. weight: math.unit(250, "lb"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/saudade/front.svg",
  13105. extra: 1172 / 1139,
  13106. bottom: 0.035
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Micro",
  13113. height: math.unit(3, "inches")
  13114. },
  13115. {
  13116. name: "Normal",
  13117. height: math.unit(6, "feet"),
  13118. default: true
  13119. },
  13120. {
  13121. name: "Macro",
  13122. height: math.unit(50, "feet")
  13123. },
  13124. {
  13125. name: "Megamacro",
  13126. height: math.unit(2800, "feet")
  13127. },
  13128. ]
  13129. ))
  13130. characterMakers.push(() => makeCharacter(
  13131. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13132. {
  13133. front: {
  13134. height: math.unit(5 + 4 / 12, "feet"),
  13135. weight: math.unit(100, "lb"),
  13136. name: "Front",
  13137. image: {
  13138. source: "./media/characters/keireer/front.svg",
  13139. extra: 716 / 666,
  13140. bottom: 0.05
  13141. }
  13142. },
  13143. },
  13144. [
  13145. {
  13146. name: "Normal",
  13147. height: math.unit(5 + 4 / 12, "feet"),
  13148. default: true
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(6, "feet"),
  13157. weight: math.unit(90, "kg"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/mirja/front.svg",
  13161. extra: 1789 / 1683,
  13162. bottom: 0.05
  13163. }
  13164. },
  13165. frontDressed: {
  13166. height: math.unit(6, "feet"),
  13167. weight: math.unit(90, "lb"),
  13168. name: "Front (Dressed)",
  13169. image: {
  13170. source: "./media/characters/mirja/front-dressed.svg",
  13171. extra: 1789 / 1683,
  13172. bottom: 0.05
  13173. }
  13174. },
  13175. back: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(90, "lb"),
  13178. name: "Back",
  13179. image: {
  13180. source: "./media/characters/mirja/back.svg",
  13181. extra: 953 / 917,
  13182. bottom: 0.017
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "\"Incognito\"",
  13189. height: math.unit(3, "meters")
  13190. },
  13191. {
  13192. name: "Strolling Size",
  13193. height: math.unit(15, "km")
  13194. },
  13195. {
  13196. name: "Larger Strolling Size",
  13197. height: math.unit(400, "km")
  13198. },
  13199. {
  13200. name: "Preferred Size",
  13201. height: math.unit(5000, "km")
  13202. },
  13203. {
  13204. name: "True Size",
  13205. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13206. default: true
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(15, "feet"),
  13215. weight: math.unit(880, "kg"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/nightraver/front.svg",
  13219. extra: 2444 / 2160,
  13220. bottom: 0.027
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(15, "feet"),
  13225. weight: math.unit(880, "kg"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/nightraver/back.svg",
  13229. extra: 2309 / 2180,
  13230. bottom: 0.005
  13231. }
  13232. },
  13233. sole: {
  13234. height: math.unit(2.878, "feet"),
  13235. name: "Sole",
  13236. image: {
  13237. source: "./media/characters/nightraver/sole.svg"
  13238. }
  13239. },
  13240. foot: {
  13241. height: math.unit(2.285, "feet"),
  13242. name: "Foot",
  13243. image: {
  13244. source: "./media/characters/nightraver/foot.svg"
  13245. }
  13246. },
  13247. maw: {
  13248. height: math.unit(2.67, "feet"),
  13249. name: "Maw",
  13250. image: {
  13251. source: "./media/characters/nightraver/maw.svg"
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Micro",
  13258. height: math.unit(1, "cm")
  13259. },
  13260. {
  13261. name: "Normal",
  13262. height: math.unit(15, "feet"),
  13263. default: true
  13264. },
  13265. {
  13266. name: "Macro",
  13267. height: math.unit(300, "feet")
  13268. },
  13269. {
  13270. name: "Megamacro",
  13271. height: math.unit(300, "miles")
  13272. },
  13273. {
  13274. name: "Gigamacro",
  13275. height: math.unit(10000, "miles")
  13276. },
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13281. {
  13282. side: {
  13283. height: math.unit(2, "inches"),
  13284. weight: math.unit(5, "grams"),
  13285. name: "Side",
  13286. image: {
  13287. source: "./media/characters/arc/side.svg"
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Micro",
  13294. height: math.unit(2, "inches"),
  13295. default: true
  13296. },
  13297. ]
  13298. ))
  13299. characterMakers.push(() => makeCharacter(
  13300. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13301. {
  13302. front: {
  13303. height: math.unit(1.1938, "meters"),
  13304. weight: math.unit(54, "kg"),
  13305. name: "Front",
  13306. image: {
  13307. source: "./media/characters/nebula-shahar/front.svg",
  13308. extra: 1642 / 1436,
  13309. bottom: 0.06
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Megamicro",
  13316. height: math.unit(0.3, "mm")
  13317. },
  13318. {
  13319. name: "Micro",
  13320. height: math.unit(3, "cm")
  13321. },
  13322. {
  13323. name: "Normal",
  13324. height: math.unit(138, "cm"),
  13325. default: true
  13326. },
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(30, "m")
  13330. },
  13331. ]
  13332. ))
  13333. characterMakers.push(() => makeCharacter(
  13334. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13335. {
  13336. front: {
  13337. height: math.unit(5.24, "feet"),
  13338. weight: math.unit(150, "lb"),
  13339. name: "Front",
  13340. image: {
  13341. source: "./media/characters/shayla/front.svg",
  13342. extra: 1512 / 1414,
  13343. bottom: 0.01
  13344. }
  13345. },
  13346. back: {
  13347. height: math.unit(5.24, "feet"),
  13348. weight: math.unit(150, "lb"),
  13349. name: "Back",
  13350. image: {
  13351. source: "./media/characters/shayla/back.svg",
  13352. extra: 1512 / 1414
  13353. }
  13354. },
  13355. hand: {
  13356. height: math.unit(0.7781496062992126, "feet"),
  13357. name: "Hand",
  13358. image: {
  13359. source: "./media/characters/shayla/hand.svg"
  13360. }
  13361. },
  13362. foot: {
  13363. height: math.unit(1.4206036745406823, "feet"),
  13364. name: "Foot",
  13365. image: {
  13366. source: "./media/characters/shayla/foot.svg"
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Micro",
  13373. height: math.unit(0.32, "feet")
  13374. },
  13375. {
  13376. name: "Normal",
  13377. height: math.unit(5.24, "feet"),
  13378. default: true
  13379. },
  13380. {
  13381. name: "Macro",
  13382. height: math.unit(492.12, "feet")
  13383. },
  13384. {
  13385. name: "Megamacro",
  13386. height: math.unit(186.41, "miles")
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13392. {
  13393. front: {
  13394. height: math.unit(2.2, "m"),
  13395. weight: math.unit(120, "kg"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/pia-jr/front.svg",
  13399. extra: 1000 / 970,
  13400. bottom: 0.035
  13401. }
  13402. },
  13403. hand: {
  13404. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13405. name: "Hand",
  13406. image: {
  13407. source: "./media/characters/pia-jr/hand.svg"
  13408. }
  13409. },
  13410. paw: {
  13411. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13412. name: "Paw",
  13413. image: {
  13414. source: "./media/characters/pia-jr/paw.svg"
  13415. }
  13416. },
  13417. },
  13418. [
  13419. {
  13420. name: "Micro",
  13421. height: math.unit(1.2, "cm")
  13422. },
  13423. {
  13424. name: "Normal",
  13425. height: math.unit(2.2, "m"),
  13426. default: true
  13427. },
  13428. {
  13429. name: "Macro",
  13430. height: math.unit(180, "m")
  13431. },
  13432. {
  13433. name: "Megamacro",
  13434. height: math.unit(420, "km")
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(2, "m"),
  13443. weight: math.unit(115, "kg"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/pia-sr/front.svg",
  13447. extra: 760 / 730,
  13448. bottom: 0.015
  13449. }
  13450. },
  13451. back: {
  13452. height: math.unit(2, "m"),
  13453. weight: math.unit(115, "kg"),
  13454. name: "Back",
  13455. image: {
  13456. source: "./media/characters/pia-sr/back.svg",
  13457. extra: 760 / 730,
  13458. bottom: 0.01
  13459. }
  13460. },
  13461. hand: {
  13462. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13463. name: "Hand",
  13464. image: {
  13465. source: "./media/characters/pia-sr/hand.svg"
  13466. }
  13467. },
  13468. foot: {
  13469. height: math.unit(1.83, "feet"),
  13470. name: "Foot",
  13471. image: {
  13472. source: "./media/characters/pia-sr/foot.svg"
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Micro",
  13479. height: math.unit(88, "mm")
  13480. },
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(2, "m"),
  13484. default: true
  13485. },
  13486. {
  13487. name: "Macro",
  13488. height: math.unit(200, "m")
  13489. },
  13490. {
  13491. name: "Megamacro",
  13492. height: math.unit(420, "km")
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13498. {
  13499. front: {
  13500. height: math.unit(8 + 2 / 12, "feet"),
  13501. weight: math.unit(300, "lb"),
  13502. name: "Front",
  13503. image: {
  13504. source: "./media/characters/kibibyte/front.svg",
  13505. extra: 2221 / 2098,
  13506. bottom: 0.04
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Normal",
  13513. height: math.unit(8 + 2 / 12, "feet"),
  13514. default: true
  13515. },
  13516. {
  13517. name: "Socialable Macro",
  13518. height: math.unit(50, "feet")
  13519. },
  13520. {
  13521. name: "Macro",
  13522. height: math.unit(300, "feet")
  13523. },
  13524. {
  13525. name: "Megamacro",
  13526. height: math.unit(500, "miles")
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13532. {
  13533. front: {
  13534. height: math.unit(6, "feet"),
  13535. weight: math.unit(150, "lb"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/felix/front.svg",
  13539. extra: 762 / 722,
  13540. bottom: 0.02
  13541. }
  13542. },
  13543. frontClothed: {
  13544. height: math.unit(6, "feet"),
  13545. weight: math.unit(150, "lb"),
  13546. name: "Front (Clothed)",
  13547. image: {
  13548. source: "./media/characters/felix/front-clothed.svg",
  13549. extra: 762 / 722,
  13550. bottom: 0.02
  13551. }
  13552. },
  13553. },
  13554. [
  13555. {
  13556. name: "Normal",
  13557. height: math.unit(6 + 8 / 12, "feet"),
  13558. default: true
  13559. },
  13560. {
  13561. name: "Macro",
  13562. height: math.unit(2600, "feet")
  13563. },
  13564. {
  13565. name: "Megamacro",
  13566. height: math.unit(450, "miles")
  13567. },
  13568. ]
  13569. ))
  13570. characterMakers.push(() => makeCharacter(
  13571. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13572. {
  13573. front: {
  13574. height: math.unit(6 + 1 / 12, "feet"),
  13575. weight: math.unit(250, "lb"),
  13576. name: "Front",
  13577. image: {
  13578. source: "./media/characters/tobo/front.svg",
  13579. extra: 608 / 586,
  13580. bottom: 0.023
  13581. }
  13582. },
  13583. back: {
  13584. height: math.unit(6 + 1 / 12, "feet"),
  13585. weight: math.unit(250, "lb"),
  13586. name: "Back",
  13587. image: {
  13588. source: "./media/characters/tobo/back.svg",
  13589. extra: 608 / 586
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "Nano",
  13596. height: math.unit(2, "nm")
  13597. },
  13598. {
  13599. name: "Megamicro",
  13600. height: math.unit(0.1, "mm")
  13601. },
  13602. {
  13603. name: "Micro",
  13604. height: math.unit(1, "inch"),
  13605. default: true
  13606. },
  13607. {
  13608. name: "Human-sized",
  13609. height: math.unit(6 + 1 / 12, "feet")
  13610. },
  13611. {
  13612. name: "Macro",
  13613. height: math.unit(250, "feet")
  13614. },
  13615. {
  13616. name: "Megamacro",
  13617. height: math.unit(75, "miles")
  13618. },
  13619. {
  13620. name: "Texas-sized",
  13621. height: math.unit(750, "miles")
  13622. },
  13623. {
  13624. name: "Teramacro",
  13625. height: math.unit(50000, "miles")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(6, "feet"),
  13634. weight: math.unit(269, "lb"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/danny-kapowsky/front.svg",
  13638. extra: 766 / 736,
  13639. bottom: 0.044
  13640. }
  13641. },
  13642. back: {
  13643. height: math.unit(6, "feet"),
  13644. weight: math.unit(269, "lb"),
  13645. name: "Back",
  13646. image: {
  13647. source: "./media/characters/danny-kapowsky/back.svg",
  13648. extra: 797 / 760,
  13649. bottom: 0.025
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Macro",
  13656. height: math.unit(150, "feet"),
  13657. default: true
  13658. },
  13659. {
  13660. name: "Macro+",
  13661. height: math.unit(200, "feet")
  13662. },
  13663. {
  13664. name: "Macro++",
  13665. height: math.unit(300, "feet")
  13666. },
  13667. {
  13668. name: "Macro+++",
  13669. height: math.unit(400, "feet")
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13675. {
  13676. side: {
  13677. height: math.unit(6, "feet"),
  13678. weight: math.unit(170, "lb"),
  13679. name: "Side",
  13680. image: {
  13681. source: "./media/characters/finn/side.svg",
  13682. extra: 1953 / 1807,
  13683. bottom: 0.057
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Megamacro",
  13690. height: math.unit(14445, "feet"),
  13691. default: true
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13697. {
  13698. front: {
  13699. height: math.unit(5 + 6 / 12, "feet"),
  13700. weight: math.unit(125, "lb"),
  13701. name: "Front",
  13702. image: {
  13703. source: "./media/characters/roy/front.svg",
  13704. extra: 1,
  13705. bottom: 0.11
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Micro",
  13712. height: math.unit(3, "inches"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(5 + 6 / 12, "feet")
  13718. },
  13719. {
  13720. name: "Lesser Macro",
  13721. height: math.unit(60, "feet")
  13722. },
  13723. {
  13724. name: "Greater Macro",
  13725. height: math.unit(120, "feet")
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(100, "lb"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/aevsivs/front.svg",
  13738. extra: 1,
  13739. bottom: 0.03
  13740. }
  13741. },
  13742. back: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(100, "lb"),
  13745. name: "Back",
  13746. image: {
  13747. source: "./media/characters/aevsivs/back.svg"
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Micro",
  13754. height: math.unit(2, "inches"),
  13755. default: true
  13756. },
  13757. {
  13758. name: "Normal",
  13759. height: math.unit(5, "feet")
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(5 + 7 / 12, "feet"),
  13768. weight: math.unit(159, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/hildegard/front.svg",
  13772. extra: 312 / 286,
  13773. bottom: 0.005
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Normal",
  13780. height: math.unit(5 + 7 / 12, "feet"),
  13781. default: true
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13787. {
  13788. bernard: {
  13789. height: math.unit(2 + 7 / 12, "feet"),
  13790. weight: math.unit(66, "lb"),
  13791. name: "Bernard",
  13792. rename: true,
  13793. image: {
  13794. source: "./media/characters/bernard-wilder/bernard.svg",
  13795. extra: 192 / 128,
  13796. bottom: 0.05
  13797. }
  13798. },
  13799. wilder: {
  13800. height: math.unit(5 + 8 / 12, "feet"),
  13801. weight: math.unit(143, "lb"),
  13802. name: "Wilder",
  13803. rename: true,
  13804. image: {
  13805. source: "./media/characters/bernard-wilder/wilder.svg",
  13806. extra: 361 / 312,
  13807. bottom: 0.02
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Normal",
  13814. height: math.unit(2 + 7 / 12, "feet"),
  13815. default: true
  13816. },
  13817. ]
  13818. ))
  13819. characterMakers.push(() => makeCharacter(
  13820. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13821. {
  13822. anthro: {
  13823. height: math.unit(6 + 1 / 12, "feet"),
  13824. weight: math.unit(155, "lb"),
  13825. name: "Anthro",
  13826. image: {
  13827. source: "./media/characters/hearth/anthro.svg",
  13828. extra: 260 / 250,
  13829. bottom: 0.02
  13830. }
  13831. },
  13832. feral: {
  13833. height: math.unit(3.78, "feet"),
  13834. weight: math.unit(35, "kg"),
  13835. name: "Feral",
  13836. image: {
  13837. source: "./media/characters/hearth/feral.svg",
  13838. extra: 153 / 135,
  13839. bottom: 0.03
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(6 + 1 / 12, "feet"),
  13847. default: true
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(6, "feet"),
  13856. weight: math.unit(182, "lb"),
  13857. name: "Front",
  13858. image: {
  13859. source: "./media/characters/ingrid/front.svg",
  13860. extra: 294 / 268,
  13861. bottom: 0.027
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Normal",
  13868. height: math.unit(6, "feet"),
  13869. default: true
  13870. },
  13871. ]
  13872. ))
  13873. characterMakers.push(() => makeCharacter(
  13874. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13875. {
  13876. eevee: {
  13877. height: math.unit(2 + 10 / 12, "feet"),
  13878. weight: math.unit(86, "lb"),
  13879. name: "Malgam",
  13880. image: {
  13881. source: "./media/characters/malgam/eevee.svg",
  13882. extra: 218 / 180,
  13883. bottom: 0.2
  13884. }
  13885. },
  13886. sylveon: {
  13887. height: math.unit(4, "feet"),
  13888. weight: math.unit(101, "lb"),
  13889. name: "Future Malgam",
  13890. rename: true,
  13891. image: {
  13892. source: "./media/characters/malgam/sylveon.svg",
  13893. extra: 371 / 325,
  13894. bottom: 0.015
  13895. }
  13896. },
  13897. gigantamax: {
  13898. height: math.unit(50, "feet"),
  13899. name: "Gigantamax Malgam",
  13900. rename: true,
  13901. image: {
  13902. source: "./media/characters/malgam/gigantamax.svg"
  13903. }
  13904. },
  13905. },
  13906. [
  13907. {
  13908. name: "Normal",
  13909. height: math.unit(2 + 10 / 12, "feet"),
  13910. default: true
  13911. },
  13912. ]
  13913. ))
  13914. characterMakers.push(() => makeCharacter(
  13915. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13916. {
  13917. front: {
  13918. height: math.unit(5 + 11 / 12, "feet"),
  13919. weight: math.unit(188, "lb"),
  13920. name: "Front",
  13921. image: {
  13922. source: "./media/characters/fleur/front.svg",
  13923. extra: 309 / 283,
  13924. bottom: 0.007
  13925. }
  13926. },
  13927. },
  13928. [
  13929. {
  13930. name: "Normal",
  13931. height: math.unit(5 + 11 / 12, "feet"),
  13932. default: true
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13938. {
  13939. front: {
  13940. height: math.unit(5 + 4 / 12, "feet"),
  13941. weight: math.unit(122, "lb"),
  13942. name: "Front",
  13943. image: {
  13944. source: "./media/characters/jude/front.svg",
  13945. extra: 288 / 273,
  13946. bottom: 0.03
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(5 + 4 / 12, "feet"),
  13954. default: true
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(5 + 11 / 12, "feet"),
  13963. weight: math.unit(190, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/seara/front.svg",
  13967. extra: 1,
  13968. bottom: 0.05
  13969. }
  13970. },
  13971. },
  13972. [
  13973. {
  13974. name: "Normal",
  13975. height: math.unit(5 + 11 / 12, "feet"),
  13976. default: true
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13982. {
  13983. front: {
  13984. height: math.unit(16 + 5 / 12, "feet"),
  13985. weight: math.unit(524, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/caspian/front.svg",
  13989. extra: 1,
  13990. bottom: 0.04
  13991. }
  13992. },
  13993. },
  13994. [
  13995. {
  13996. name: "Normal",
  13997. height: math.unit(16 + 5 / 12, "feet"),
  13998. default: true
  13999. },
  14000. ]
  14001. ))
  14002. characterMakers.push(() => makeCharacter(
  14003. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14004. {
  14005. front: {
  14006. height: math.unit(5 + 7 / 12, "feet"),
  14007. weight: math.unit(170, "lb"),
  14008. name: "Front",
  14009. image: {
  14010. source: "./media/characters/mika/front.svg",
  14011. extra: 1,
  14012. bottom: 0.016
  14013. }
  14014. },
  14015. },
  14016. [
  14017. {
  14018. name: "Normal",
  14019. height: math.unit(5 + 7 / 12, "feet"),
  14020. default: true
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14026. {
  14027. front: {
  14028. height: math.unit(6 + 2 / 12, "feet"),
  14029. weight: math.unit(268, "lb"),
  14030. name: "Front",
  14031. image: {
  14032. source: "./media/characters/sol/front.svg",
  14033. extra: 247 / 231,
  14034. bottom: 0.05
  14035. }
  14036. },
  14037. },
  14038. [
  14039. {
  14040. name: "Normal",
  14041. height: math.unit(6 + 2 / 12, "feet"),
  14042. default: true
  14043. },
  14044. ]
  14045. ))
  14046. characterMakers.push(() => makeCharacter(
  14047. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14048. {
  14049. buizel: {
  14050. height: math.unit(2 + 5 / 12, "feet"),
  14051. weight: math.unit(87, "lb"),
  14052. name: "Buizel",
  14053. image: {
  14054. source: "./media/characters/umiko/buizel.svg",
  14055. extra: 172 / 157,
  14056. bottom: 0.01
  14057. }
  14058. },
  14059. floatzel: {
  14060. height: math.unit(5 + 9 / 12, "feet"),
  14061. weight: math.unit(250, "lb"),
  14062. name: "Floatzel",
  14063. image: {
  14064. source: "./media/characters/umiko/floatzel.svg",
  14065. extra: 262 / 248
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Normal",
  14072. height: math.unit(2 + 5 / 12, "feet"),
  14073. default: true
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(6 + 2 / 12, "feet"),
  14082. weight: math.unit(146, "lb"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/iliac/front.svg",
  14086. extra: 389 / 365,
  14087. bottom: 0.035
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(6 + 2 / 12, "feet"),
  14095. default: true
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(6, "feet"),
  14104. weight: math.unit(170, "lb"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/topaz/front.svg",
  14108. extra: 317 / 303,
  14109. bottom: 0.055
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(6, "feet"),
  14117. default: true
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(5 + 11 / 12, "feet"),
  14126. weight: math.unit(144, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/gabriel/front.svg",
  14130. extra: 285 / 262,
  14131. bottom: 0.004
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Normal",
  14138. height: math.unit(5 + 11 / 12, "feet"),
  14139. default: true
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14145. {
  14146. side: {
  14147. height: math.unit(6 + 5 / 12, "feet"),
  14148. weight: math.unit(300, "lb"),
  14149. name: "Side",
  14150. image: {
  14151. source: "./media/characters/tempest-suicune/side.svg",
  14152. extra: 195 / 154,
  14153. bottom: 0.04
  14154. }
  14155. },
  14156. },
  14157. [
  14158. {
  14159. name: "Normal",
  14160. height: math.unit(6 + 5 / 12, "feet"),
  14161. default: true
  14162. },
  14163. ]
  14164. ))
  14165. characterMakers.push(() => makeCharacter(
  14166. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14167. {
  14168. front: {
  14169. height: math.unit(7 + 2 / 12, "feet"),
  14170. weight: math.unit(322, "lb"),
  14171. name: "Front",
  14172. image: {
  14173. source: "./media/characters/vulcan/front.svg",
  14174. extra: 154 / 147,
  14175. bottom: 0.04
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(7 + 2 / 12, "feet"),
  14183. default: true
  14184. },
  14185. ]
  14186. ))
  14187. characterMakers.push(() => makeCharacter(
  14188. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14189. {
  14190. front: {
  14191. height: math.unit(5 + 10 / 12, "feet"),
  14192. weight: math.unit(264, "lb"),
  14193. name: "Front",
  14194. image: {
  14195. source: "./media/characters/gault/front.svg",
  14196. extra: 161 / 140,
  14197. bottom: 0.028
  14198. }
  14199. },
  14200. },
  14201. [
  14202. {
  14203. name: "Normal",
  14204. height: math.unit(5 + 10 / 12, "feet"),
  14205. default: true
  14206. },
  14207. ]
  14208. ))
  14209. characterMakers.push(() => makeCharacter(
  14210. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14211. {
  14212. front: {
  14213. height: math.unit(6, "feet"),
  14214. weight: math.unit(150, "lb"),
  14215. name: "Front",
  14216. image: {
  14217. source: "./media/characters/shard/front.svg",
  14218. extra: 273 / 238,
  14219. bottom: 0.02
  14220. }
  14221. },
  14222. },
  14223. [
  14224. {
  14225. name: "Normal",
  14226. height: math.unit(3 + 6 / 12, "feet"),
  14227. default: true
  14228. },
  14229. ]
  14230. ))
  14231. characterMakers.push(() => makeCharacter(
  14232. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14233. {
  14234. front: {
  14235. height: math.unit(5 + 11 / 12, "feet"),
  14236. weight: math.unit(146, "lb"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/ashe/front.svg",
  14240. extra: 400 / 373,
  14241. bottom: 0.01
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Normal",
  14248. height: math.unit(5 + 11 / 12, "feet"),
  14249. default: true
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(5 + 5 / 12, "feet"),
  14258. weight: math.unit(135, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/beatrix/front.svg",
  14262. extra: 392 / 379,
  14263. bottom: 0.01
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(6, "feet"),
  14271. default: true
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14277. {
  14278. front: {
  14279. height: math.unit(6, "feet"),
  14280. weight: math.unit(150, "lb"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/ignatius/front.svg",
  14284. extra: 245 / 222,
  14285. bottom: 0.01
  14286. }
  14287. },
  14288. },
  14289. [
  14290. {
  14291. name: "Normal",
  14292. height: math.unit(5 + 5 / 12, "feet"),
  14293. default: true
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14299. {
  14300. front: {
  14301. height: math.unit(6 + 2 / 12, "feet"),
  14302. weight: math.unit(138, "lb"),
  14303. name: "Front",
  14304. image: {
  14305. source: "./media/characters/mei-li/front.svg",
  14306. extra: 237 / 229,
  14307. bottom: 0.03
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(6 + 2 / 12, "feet"),
  14315. default: true
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14321. {
  14322. front: {
  14323. height: math.unit(2 + 4 / 12, "feet"),
  14324. weight: math.unit(62, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/puru/front.svg",
  14328. extra: 206 / 149,
  14329. bottom: 0.06
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(2 + 4 / 12, "feet"),
  14337. default: true
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14343. {
  14344. taur: {
  14345. height: math.unit(11, "feet"),
  14346. weight: math.unit(500, "lb"),
  14347. name: "Taur",
  14348. image: {
  14349. source: "./media/characters/kee/taur.svg",
  14350. extra: 1,
  14351. bottom: 0.04
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(11, "feet"),
  14359. default: true
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14365. {
  14366. anthro: {
  14367. height: math.unit(7, "feet"),
  14368. weight: math.unit(190, "lb"),
  14369. name: "Anthro",
  14370. image: {
  14371. source: "./media/characters/cobalt-dracha/anthro.svg",
  14372. extra: 231 / 225,
  14373. bottom: 0.04
  14374. }
  14375. },
  14376. feral: {
  14377. height: math.unit(9 + 7 / 12, "feet"),
  14378. weight: math.unit(294, "lb"),
  14379. name: "Feral",
  14380. image: {
  14381. source: "./media/characters/cobalt-dracha/feral.svg",
  14382. extra: 692 / 633,
  14383. bottom: 0.05
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Normal",
  14390. height: math.unit(7, "feet"),
  14391. default: true
  14392. },
  14393. ]
  14394. ))
  14395. characterMakers.push(() => makeCharacter(
  14396. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14397. {
  14398. fallen: {
  14399. height: math.unit(11 + 8 / 12, "feet"),
  14400. weight: math.unit(485, "lb"),
  14401. name: "Java (Fallen)",
  14402. rename: true,
  14403. image: {
  14404. source: "./media/characters/java/fallen.svg",
  14405. extra: 226 / 208,
  14406. bottom: 0.005
  14407. }
  14408. },
  14409. godkin: {
  14410. height: math.unit(10 + 6 / 12, "feet"),
  14411. weight: math.unit(328, "lb"),
  14412. name: "Java (Godkin)",
  14413. rename: true,
  14414. image: {
  14415. source: "./media/characters/java/godkin.svg",
  14416. extra: 270 / 262,
  14417. bottom: 0.02
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(11 + 8 / 12, "feet"),
  14425. default: true
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(7 + 8 / 12, "feet"),
  14434. weight: math.unit(320, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/skoll/front.svg",
  14438. extra: 232 / 220,
  14439. bottom: 0.02
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(7 + 8 / 12, "feet"),
  14447. default: true
  14448. },
  14449. ]
  14450. ))
  14451. characterMakers.push(() => makeCharacter(
  14452. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14453. {
  14454. front: {
  14455. height: math.unit(5 + 9 / 12, "feet"),
  14456. weight: math.unit(170, "lb"),
  14457. name: "Front",
  14458. image: {
  14459. source: "./media/characters/purna/front.svg",
  14460. extra: 239 / 229,
  14461. bottom: 0.01
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(5 + 9 / 12, "feet"),
  14469. default: true
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(5 + 9 / 12, "feet"),
  14478. weight: math.unit(142, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/kuva/front.svg",
  14482. extra: 281 / 271,
  14483. bottom: 0.006
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(5 + 9 / 12, "feet"),
  14491. default: true
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14497. {
  14498. anthro: {
  14499. height: math.unit(9 + 2 / 12, "feet"),
  14500. weight: math.unit(270, "lb"),
  14501. name: "Anthro",
  14502. image: {
  14503. source: "./media/characters/embra/anthro.svg",
  14504. extra: 200 / 187,
  14505. bottom: 0.02
  14506. }
  14507. },
  14508. feral: {
  14509. height: math.unit(18 + 8 / 12, "feet"),
  14510. weight: math.unit(576, "lb"),
  14511. name: "Feral",
  14512. image: {
  14513. source: "./media/characters/embra/feral.svg",
  14514. extra: 152 / 137,
  14515. bottom: 0.037
  14516. }
  14517. },
  14518. },
  14519. [
  14520. {
  14521. name: "Normal",
  14522. height: math.unit(9 + 2 / 12, "feet"),
  14523. default: true
  14524. },
  14525. ]
  14526. ))
  14527. characterMakers.push(() => makeCharacter(
  14528. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14529. {
  14530. anthro: {
  14531. height: math.unit(10 + 9 / 12, "feet"),
  14532. weight: math.unit(224, "lb"),
  14533. name: "Anthro",
  14534. image: {
  14535. source: "./media/characters/grottos/anthro.svg",
  14536. extra: 350 / 332,
  14537. bottom: 0.045
  14538. }
  14539. },
  14540. feral: {
  14541. height: math.unit(20 + 7 / 12, "feet"),
  14542. weight: math.unit(629, "lb"),
  14543. name: "Feral",
  14544. image: {
  14545. source: "./media/characters/grottos/feral.svg",
  14546. extra: 207 / 190,
  14547. bottom: 0.05
  14548. }
  14549. },
  14550. },
  14551. [
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(10 + 9 / 12, "feet"),
  14555. default: true
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14561. {
  14562. anthro: {
  14563. height: math.unit(9 + 6 / 12, "feet"),
  14564. weight: math.unit(298, "lb"),
  14565. name: "Anthro",
  14566. image: {
  14567. source: "./media/characters/frifna/anthro.svg",
  14568. extra: 282 / 269,
  14569. bottom: 0.015
  14570. }
  14571. },
  14572. feral: {
  14573. height: math.unit(16 + 2 / 12, "feet"),
  14574. weight: math.unit(624, "lb"),
  14575. name: "Feral",
  14576. image: {
  14577. source: "./media/characters/frifna/feral.svg"
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "Normal",
  14584. height: math.unit(9 + 6 / 12, "feet"),
  14585. default: true
  14586. },
  14587. ]
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14591. {
  14592. front: {
  14593. height: math.unit(6 + 2 / 12, "feet"),
  14594. weight: math.unit(168, "lb"),
  14595. name: "Front",
  14596. image: {
  14597. source: "./media/characters/elise/front.svg",
  14598. extra: 276 / 271
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(6 + 2 / 12, "feet"),
  14606. default: true
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14612. {
  14613. front: {
  14614. height: math.unit(5 + 10 / 12, "feet"),
  14615. weight: math.unit(210, "lb"),
  14616. name: "Front",
  14617. image: {
  14618. source: "./media/characters/glade/front.svg",
  14619. extra: 258 / 247,
  14620. bottom: 0.008
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(5 + 10 / 12, "feet"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(5 + 10 / 12, "feet"),
  14637. weight: math.unit(129, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/rina/front.svg",
  14641. extra: 266 / 255,
  14642. bottom: 0.005
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(5 + 10 / 12, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(6 + 1 / 12, "feet"),
  14659. weight: math.unit(192, "lb"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/veronica/front.svg",
  14663. extra: 319 / 309,
  14664. bottom: 0.005
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(6 + 1 / 12, "feet"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(9 + 3 / 12, "feet"),
  14681. weight: math.unit(1100, "lb"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/braxton/front.svg",
  14685. extra: 1057 / 984,
  14686. bottom: 0.05
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(9 + 3 / 12, "feet")
  14694. },
  14695. {
  14696. name: "Giant",
  14697. height: math.unit(300, "feet"),
  14698. default: true
  14699. },
  14700. {
  14701. name: "Macro",
  14702. height: math.unit(700, "feet")
  14703. },
  14704. {
  14705. name: "Megamacro",
  14706. height: math.unit(6000, "feet")
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(6 + 7 / 12, "feet"),
  14715. weight: math.unit(150, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/blue-feyonics/front.svg",
  14719. extra: 1403 / 1306,
  14720. bottom: 0.047
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(6 + 7 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(1.8, "meters"),
  14737. weight: math.unit(60, "kg"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/maxwell/front.svg",
  14741. extra: 2060 / 1873
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "Micro",
  14748. height: math.unit(1, "mm")
  14749. },
  14750. {
  14751. name: "Normal",
  14752. height: math.unit(1.8, "meter"),
  14753. default: true
  14754. },
  14755. {
  14756. name: "Macro",
  14757. height: math.unit(30, "meters")
  14758. },
  14759. {
  14760. name: "Megamacro",
  14761. height: math.unit(10, "km")
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14767. {
  14768. front: {
  14769. height: math.unit(6, "feet"),
  14770. weight: math.unit(150, "lb"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/jack/front.svg",
  14774. extra: 1754 / 1640,
  14775. bottom: 0.01
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Normal",
  14782. height: math.unit(80000, "feet"),
  14783. default: true
  14784. },
  14785. {
  14786. name: "Max size",
  14787. height: math.unit(10, "lightyears")
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14793. {
  14794. upright: {
  14795. height: math.unit(7, "feet"),
  14796. weight: math.unit(170, "lb"),
  14797. name: "Upright",
  14798. image: {
  14799. source: "./media/characters/cafat/upright.svg",
  14800. bottom: 0.01
  14801. }
  14802. },
  14803. uprightFull: {
  14804. height: math.unit(7, "feet"),
  14805. weight: math.unit(170, "lb"),
  14806. name: "Upright (Full)",
  14807. image: {
  14808. source: "./media/characters/cafat/upright-full.svg",
  14809. bottom: 0.01
  14810. }
  14811. },
  14812. side: {
  14813. height: math.unit(5, "feet"),
  14814. weight: math.unit(150, "lb"),
  14815. name: "Side",
  14816. image: {
  14817. source: "./media/characters/cafat/side.svg"
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Small",
  14824. height: math.unit(7, "feet"),
  14825. default: true
  14826. },
  14827. {
  14828. name: "Large",
  14829. height: math.unit(15.5, "feet")
  14830. },
  14831. ]
  14832. ))
  14833. characterMakers.push(() => makeCharacter(
  14834. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14835. {
  14836. front: {
  14837. height: math.unit(6, "feet"),
  14838. weight: math.unit(150, "lb"),
  14839. name: "Front",
  14840. image: {
  14841. source: "./media/characters/verin-raharra/front.svg",
  14842. extra: 5019 / 4835,
  14843. bottom: 0.023
  14844. }
  14845. },
  14846. },
  14847. [
  14848. {
  14849. name: "Normal",
  14850. height: math.unit(7 + 5 / 12, "feet"),
  14851. default: true
  14852. },
  14853. {
  14854. name: "Upsized",
  14855. height: math.unit(20, "feet")
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(7, "feet"),
  14864. weight: math.unit(230, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/nakata/front.svg",
  14868. extra: 1.005,
  14869. bottom: 0.01
  14870. }
  14871. },
  14872. },
  14873. [
  14874. {
  14875. name: "Normal",
  14876. height: math.unit(7, "feet"),
  14877. default: true
  14878. },
  14879. {
  14880. name: "Big",
  14881. height: math.unit(14, "feet")
  14882. },
  14883. {
  14884. name: "Macro",
  14885. height: math.unit(400, "feet")
  14886. },
  14887. ]
  14888. ))
  14889. characterMakers.push(() => makeCharacter(
  14890. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14891. {
  14892. front: {
  14893. height: math.unit(4.91, "feet"),
  14894. weight: math.unit(100, "lb"),
  14895. name: "Front",
  14896. image: {
  14897. source: "./media/characters/lily/front.svg",
  14898. extra: 1585 / 1415,
  14899. bottom: 0.02
  14900. }
  14901. },
  14902. },
  14903. [
  14904. {
  14905. name: "Normal",
  14906. height: math.unit(4.91, "feet"),
  14907. default: true
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14913. {
  14914. laying: {
  14915. height: math.unit(4 + 4 / 12, "feet"),
  14916. weight: math.unit(600, "lb"),
  14917. name: "Laying",
  14918. image: {
  14919. source: "./media/characters/sheila/laying.svg",
  14920. extra: 1333 / 1265,
  14921. bottom: 0.16
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Normal",
  14928. height: math.unit(4 + 4 / 12, "feet"),
  14929. default: true
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14935. {
  14936. front: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(190, "lb"),
  14939. name: "Front",
  14940. image: {
  14941. source: "./media/characters/sax/front.svg",
  14942. extra: 1187 / 973,
  14943. bottom: 0.042
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Micro",
  14950. height: math.unit(4, "inches"),
  14951. default: true
  14952. },
  14953. ]
  14954. ))
  14955. characterMakers.push(() => makeCharacter(
  14956. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14957. {
  14958. front: {
  14959. height: math.unit(6, "feet"),
  14960. weight: math.unit(150, "lb"),
  14961. name: "Front",
  14962. image: {
  14963. source: "./media/characters/pandora/front.svg",
  14964. extra: 2720 / 2556,
  14965. bottom: 0.015
  14966. }
  14967. },
  14968. back: {
  14969. height: math.unit(6, "feet"),
  14970. weight: math.unit(150, "lb"),
  14971. name: "Back",
  14972. image: {
  14973. source: "./media/characters/pandora/back.svg",
  14974. extra: 2720 / 2556,
  14975. bottom: 0.01
  14976. }
  14977. },
  14978. beans: {
  14979. height: math.unit(6 / 8, "feet"),
  14980. name: "Beans",
  14981. image: {
  14982. source: "./media/characters/pandora/beans.svg"
  14983. }
  14984. },
  14985. skirt: {
  14986. height: math.unit(6, "feet"),
  14987. weight: math.unit(150, "lb"),
  14988. name: "Skirt",
  14989. image: {
  14990. source: "./media/characters/pandora/skirt.svg",
  14991. extra: 1622 / 1525,
  14992. bottom: 0.015
  14993. }
  14994. },
  14995. hoodie: {
  14996. height: math.unit(6, "feet"),
  14997. weight: math.unit(150, "lb"),
  14998. name: "Hoodie",
  14999. image: {
  15000. source: "./media/characters/pandora/hoodie.svg",
  15001. extra: 1622 / 1525,
  15002. bottom: 0.015
  15003. }
  15004. },
  15005. casual: {
  15006. height: math.unit(6, "feet"),
  15007. weight: math.unit(150, "lb"),
  15008. name: "Casual",
  15009. image: {
  15010. source: "./media/characters/pandora/casual.svg",
  15011. extra: 1622 / 1525,
  15012. bottom: 0.015
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Normal",
  15019. height: math.unit(6, "feet")
  15020. },
  15021. {
  15022. name: "Big Steppy",
  15023. height: math.unit(1, "km"),
  15024. default: true
  15025. },
  15026. ]
  15027. ))
  15028. characterMakers.push(() => makeCharacter(
  15029. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15030. {
  15031. side: {
  15032. height: math.unit(10, "feet"),
  15033. weight: math.unit(800, "kg"),
  15034. name: "Side",
  15035. image: {
  15036. source: "./media/characters/venio-darcony/side.svg",
  15037. extra: 1373 / 1003,
  15038. bottom: 0.037
  15039. }
  15040. },
  15041. front: {
  15042. height: math.unit(19, "feet"),
  15043. weight: math.unit(800, "kg"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/venio-darcony/front.svg"
  15047. }
  15048. },
  15049. back: {
  15050. height: math.unit(19, "feet"),
  15051. weight: math.unit(800, "kg"),
  15052. name: "Back",
  15053. image: {
  15054. source: "./media/characters/venio-darcony/back.svg"
  15055. }
  15056. },
  15057. sideNsfw: {
  15058. height: math.unit(10, "feet"),
  15059. weight: math.unit(800, "kg"),
  15060. name: "Side (NSFW)",
  15061. image: {
  15062. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15063. extra: 1373 / 1003,
  15064. bottom: 0.037
  15065. }
  15066. },
  15067. frontNsfw: {
  15068. height: math.unit(19, "feet"),
  15069. weight: math.unit(800, "kg"),
  15070. name: "Front (NSFW)",
  15071. image: {
  15072. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15073. }
  15074. },
  15075. backNsfw: {
  15076. height: math.unit(19, "feet"),
  15077. weight: math.unit(800, "kg"),
  15078. name: "Back (NSFW)",
  15079. image: {
  15080. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15081. }
  15082. },
  15083. sideArmored: {
  15084. height: math.unit(10, "feet"),
  15085. weight: math.unit(800, "kg"),
  15086. name: "Side (Armored)",
  15087. image: {
  15088. source: "./media/characters/venio-darcony/side-armored.svg",
  15089. extra: 1373 / 1003,
  15090. bottom: 0.037
  15091. }
  15092. },
  15093. frontArmored: {
  15094. height: math.unit(19, "feet"),
  15095. weight: math.unit(900, "kg"),
  15096. name: "Front (Armored)",
  15097. image: {
  15098. source: "./media/characters/venio-darcony/front-armored.svg"
  15099. }
  15100. },
  15101. backArmored: {
  15102. height: math.unit(19, "feet"),
  15103. weight: math.unit(900, "kg"),
  15104. name: "Back (Armored)",
  15105. image: {
  15106. source: "./media/characters/venio-darcony/back-armored.svg"
  15107. }
  15108. },
  15109. sword: {
  15110. height: math.unit(10, "feet"),
  15111. weight: math.unit(50, "lb"),
  15112. name: "Sword",
  15113. image: {
  15114. source: "./media/characters/venio-darcony/sword.svg"
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(10, "feet")
  15122. },
  15123. {
  15124. name: "Macro",
  15125. height: math.unit(130, "feet"),
  15126. default: true
  15127. },
  15128. {
  15129. name: "Macro+",
  15130. height: math.unit(240, "feet")
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(6, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/veski/front.svg",
  15143. extra: 1299 / 1225,
  15144. bottom: 0.04
  15145. }
  15146. },
  15147. back: {
  15148. height: math.unit(6, "feet"),
  15149. weight: math.unit(150, "lb"),
  15150. name: "Back",
  15151. image: {
  15152. source: "./media/characters/veski/back.svg",
  15153. extra: 1299 / 1225,
  15154. bottom: 0.008
  15155. }
  15156. },
  15157. maw: {
  15158. height: math.unit(1.5 * 1.21, "feet"),
  15159. name: "Maw",
  15160. image: {
  15161. source: "./media/characters/veski/maw.svg"
  15162. }
  15163. },
  15164. },
  15165. [
  15166. {
  15167. name: "Macro",
  15168. height: math.unit(2, "km"),
  15169. default: true
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15175. {
  15176. front: {
  15177. height: math.unit(5 + 7 / 12, "feet"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/isabelle/front.svg",
  15181. extra: 2130 / 1976,
  15182. bottom: 0.05
  15183. }
  15184. },
  15185. },
  15186. [
  15187. {
  15188. name: "Supermicro",
  15189. height: math.unit(10, "micrometers")
  15190. },
  15191. {
  15192. name: "Micro",
  15193. height: math.unit(1, "inch")
  15194. },
  15195. {
  15196. name: "Tiny",
  15197. height: math.unit(5, "inches")
  15198. },
  15199. {
  15200. name: "Standard",
  15201. height: math.unit(5 + 7 / 12, "inches")
  15202. },
  15203. {
  15204. name: "Macro",
  15205. height: math.unit(80, "meters"),
  15206. default: true
  15207. },
  15208. {
  15209. name: "Megamacro",
  15210. height: math.unit(250, "meters")
  15211. },
  15212. {
  15213. name: "Gigamacro",
  15214. height: math.unit(5, "km")
  15215. },
  15216. {
  15217. name: "Cosmic",
  15218. height: math.unit(2.5e6, "miles")
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(6, "feet"),
  15227. weight: math.unit(150, "lb"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/hanzo/front.svg",
  15231. extra: 374 / 344,
  15232. bottom: 0.02
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Normal",
  15239. height: math.unit(8, "feet"),
  15240. default: true
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(7, "feet"),
  15249. weight: math.unit(130, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/anna/front.svg",
  15253. extra: 169 / 145,
  15254. bottom: 0.06
  15255. }
  15256. },
  15257. full: {
  15258. height: math.unit(4.96, "feet"),
  15259. weight: math.unit(220, "lb"),
  15260. name: "Full",
  15261. image: {
  15262. source: "./media/characters/anna/full.svg",
  15263. extra: 138 / 114,
  15264. bottom: 0.15
  15265. }
  15266. },
  15267. tongue: {
  15268. height: math.unit(2.53, "feet"),
  15269. name: "Tongue",
  15270. image: {
  15271. source: "./media/characters/anna/tongue.svg"
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(7, "feet"),
  15279. default: true
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(7, "feet"),
  15288. weight: math.unit(150, "lb"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/ian-corvid/front.svg",
  15292. extra: 150 / 142,
  15293. bottom: 0.02
  15294. }
  15295. },
  15296. back: {
  15297. height: math.unit(7, "feet"),
  15298. weight: math.unit(150, "lb"),
  15299. name: "Back",
  15300. image: {
  15301. source: "./media/characters/ian-corvid/back.svg",
  15302. extra: 150 / 143,
  15303. bottom: 0.01
  15304. }
  15305. },
  15306. stomping: {
  15307. height: math.unit(7, "feet"),
  15308. weight: math.unit(150, "lb"),
  15309. name: "Stomping",
  15310. image: {
  15311. source: "./media/characters/ian-corvid/stomping.svg",
  15312. extra: 76 / 72
  15313. }
  15314. },
  15315. sitting: {
  15316. height: math.unit(7 / 1.8, "feet"),
  15317. weight: math.unit(150, "lb"),
  15318. name: "Sitting",
  15319. image: {
  15320. source: "./media/characters/ian-corvid/sitting.svg",
  15321. extra: 1400 / 1269,
  15322. bottom: 0.15
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Tiny Microw",
  15329. height: math.unit(1, "inch")
  15330. },
  15331. {
  15332. name: "Microw",
  15333. height: math.unit(6, "inches")
  15334. },
  15335. {
  15336. name: "Crow",
  15337. height: math.unit(7 + 1 / 12, "feet"),
  15338. default: true
  15339. },
  15340. {
  15341. name: "Macrow",
  15342. height: math.unit(176, "feet")
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15348. {
  15349. front: {
  15350. height: math.unit(5 + 7 / 12, "feet"),
  15351. weight: math.unit(147, "lb"),
  15352. name: "Front",
  15353. image: {
  15354. source: "./media/characters/natalie-kellon/front.svg",
  15355. extra: 1214 / 1141,
  15356. bottom: 0.02
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Micro",
  15363. height: math.unit(1 / 16, "inch")
  15364. },
  15365. {
  15366. name: "Tiny",
  15367. height: math.unit(4, "inches")
  15368. },
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(5 + 7 / 12, "feet"),
  15372. default: true
  15373. },
  15374. {
  15375. name: "Amazon",
  15376. height: math.unit(12, "feet")
  15377. },
  15378. {
  15379. name: "Giantess",
  15380. height: math.unit(160, "meters")
  15381. },
  15382. {
  15383. name: "Titaness",
  15384. height: math.unit(800, "meters")
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/alluria/front.svg",
  15397. extra: 806 / 738,
  15398. bottom: 0.01
  15399. }
  15400. },
  15401. side: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(150, "lb"),
  15404. name: "Side",
  15405. image: {
  15406. source: "./media/characters/alluria/side.svg",
  15407. extra: 800 / 750,
  15408. }
  15409. },
  15410. back: {
  15411. height: math.unit(6, "feet"),
  15412. weight: math.unit(150, "lb"),
  15413. name: "Back",
  15414. image: {
  15415. source: "./media/characters/alluria/back.svg",
  15416. extra: 806 / 738,
  15417. }
  15418. },
  15419. frontMaid: {
  15420. height: math.unit(6, "feet"),
  15421. weight: math.unit(150, "lb"),
  15422. name: "Front (Maid)",
  15423. image: {
  15424. source: "./media/characters/alluria/front-maid.svg",
  15425. extra: 806 / 738,
  15426. bottom: 0.01
  15427. }
  15428. },
  15429. sideMaid: {
  15430. height: math.unit(6, "feet"),
  15431. weight: math.unit(150, "lb"),
  15432. name: "Side (Maid)",
  15433. image: {
  15434. source: "./media/characters/alluria/side-maid.svg",
  15435. extra: 800 / 750,
  15436. bottom: 0.005
  15437. }
  15438. },
  15439. backMaid: {
  15440. height: math.unit(6, "feet"),
  15441. weight: math.unit(150, "lb"),
  15442. name: "Back (Maid)",
  15443. image: {
  15444. source: "./media/characters/alluria/back-maid.svg",
  15445. extra: 806 / 738,
  15446. }
  15447. },
  15448. },
  15449. [
  15450. {
  15451. name: "Micro",
  15452. height: math.unit(6, "inches"),
  15453. default: true
  15454. },
  15455. ]
  15456. ))
  15457. characterMakers.push(() => makeCharacter(
  15458. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15459. {
  15460. front: {
  15461. height: math.unit(6, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Front",
  15464. image: {
  15465. source: "./media/characters/kyle/front.svg",
  15466. extra: 1069 / 962,
  15467. bottom: 77.228 / 1727.45
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Macro",
  15474. height: math.unit(150, "feet"),
  15475. default: true
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(300, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/duncan/front.svg",
  15488. extra: 1650 / 1482,
  15489. bottom: 0.05
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Macro",
  15496. height: math.unit(100, "feet"),
  15497. default: true
  15498. },
  15499. ]
  15500. ))
  15501. characterMakers.push(() => makeCharacter(
  15502. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15503. {
  15504. front: {
  15505. height: math.unit(5 + 4 / 12, "feet"),
  15506. weight: math.unit(220, "lb"),
  15507. name: "Front",
  15508. image: {
  15509. source: "./media/characters/memory/front.svg",
  15510. extra: 3641 / 3545,
  15511. bottom: 0.03
  15512. }
  15513. },
  15514. back: {
  15515. height: math.unit(5 + 4 / 12, "feet"),
  15516. weight: math.unit(220, "lb"),
  15517. name: "Back",
  15518. image: {
  15519. source: "./media/characters/memory/back.svg",
  15520. extra: 3641 / 3545,
  15521. bottom: 0.025
  15522. }
  15523. },
  15524. frontSkirt: {
  15525. height: math.unit(5 + 4 / 12, "feet"),
  15526. weight: math.unit(220, "lb"),
  15527. name: "Front (Skirt)",
  15528. image: {
  15529. source: "./media/characters/memory/front-skirt.svg",
  15530. extra: 3641 / 3545,
  15531. bottom: 0.03
  15532. }
  15533. },
  15534. frontDress: {
  15535. height: math.unit(5 + 4 / 12, "feet"),
  15536. weight: math.unit(220, "lb"),
  15537. name: "Front (Dress)",
  15538. image: {
  15539. source: "./media/characters/memory/front-dress.svg",
  15540. extra: 3641 / 3545,
  15541. bottom: 0.03
  15542. }
  15543. },
  15544. },
  15545. [
  15546. {
  15547. name: "Micro",
  15548. height: math.unit(6, "inches"),
  15549. default: true
  15550. },
  15551. {
  15552. name: "Normal",
  15553. height: math.unit(5 + 4 / 12, "feet")
  15554. },
  15555. ]
  15556. ))
  15557. characterMakers.push(() => makeCharacter(
  15558. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15559. {
  15560. front: {
  15561. height: math.unit(4 + 11 / 12, "feet"),
  15562. weight: math.unit(100, "lb"),
  15563. name: "Front",
  15564. image: {
  15565. source: "./media/characters/luno/front.svg",
  15566. extra: 1535 / 1487,
  15567. bottom: 0.03
  15568. }
  15569. },
  15570. },
  15571. [
  15572. {
  15573. name: "Micro",
  15574. height: math.unit(3, "inches")
  15575. },
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(4 + 11 / 12, "feet"),
  15579. default: true
  15580. },
  15581. {
  15582. name: "Macro",
  15583. height: math.unit(300, "feet")
  15584. },
  15585. {
  15586. name: "Megamacro",
  15587. height: math.unit(700, "miles")
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(6 + 2 / 12, "feet"),
  15596. weight: math.unit(170, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/jamesy/front.svg",
  15600. extra: 440 / 382,
  15601. bottom: 0.005
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Micro",
  15608. height: math.unit(3, "inches")
  15609. },
  15610. {
  15611. name: "Normal",
  15612. height: math.unit(6 + 2 / 12, "feet"),
  15613. default: true
  15614. },
  15615. {
  15616. name: "Macro",
  15617. height: math.unit(300, "feet")
  15618. },
  15619. {
  15620. name: "Megamacro",
  15621. height: math.unit(700, "miles")
  15622. },
  15623. ]
  15624. ))
  15625. characterMakers.push(() => makeCharacter(
  15626. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15627. {
  15628. front: {
  15629. height: math.unit(6, "feet"),
  15630. weight: math.unit(160, "lb"),
  15631. name: "Front",
  15632. image: {
  15633. source: "./media/characters/mark/front.svg",
  15634. extra: 3300 / 3100,
  15635. bottom: 136.42 / 3440.47
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Macro",
  15642. height: math.unit(120, "meters")
  15643. },
  15644. {
  15645. name: "Bigger Macro",
  15646. height: math.unit(350, "meters")
  15647. },
  15648. {
  15649. name: "Megamacro",
  15650. height: math.unit(8, "km"),
  15651. default: true
  15652. },
  15653. {
  15654. name: "Continental",
  15655. height: math.unit(4550, "km")
  15656. },
  15657. {
  15658. name: "Planetary",
  15659. height: math.unit(65000, "km")
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15665. {
  15666. front: {
  15667. height: math.unit(6, "feet"),
  15668. weight: math.unit(400, "lb"),
  15669. name: "Front",
  15670. image: {
  15671. source: "./media/characters/mac/front.svg",
  15672. extra: 1048 / 987.7,
  15673. bottom: 60 / 1107.6,
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Macro",
  15680. height: math.unit(500, "feet"),
  15681. default: true
  15682. },
  15683. ]
  15684. ))
  15685. characterMakers.push(() => makeCharacter(
  15686. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15687. {
  15688. front: {
  15689. height: math.unit(5 + 2 / 12, "feet"),
  15690. weight: math.unit(190, "lb"),
  15691. name: "Front",
  15692. image: {
  15693. source: "./media/characters/bari/front.svg",
  15694. extra: 3156 / 2880,
  15695. bottom: 0.03
  15696. }
  15697. },
  15698. back: {
  15699. height: math.unit(5 + 2 / 12, "feet"),
  15700. weight: math.unit(190, "lb"),
  15701. name: "Back",
  15702. image: {
  15703. source: "./media/characters/bari/back.svg",
  15704. extra: 3260 / 2834,
  15705. bottom: 0.025
  15706. }
  15707. },
  15708. frontPlush: {
  15709. height: math.unit(5 + 2 / 12, "feet"),
  15710. weight: math.unit(190, "lb"),
  15711. name: "Front (Plush)",
  15712. image: {
  15713. source: "./media/characters/bari/front-plush.svg",
  15714. extra: 1112 / 1061,
  15715. bottom: 0.002
  15716. }
  15717. },
  15718. },
  15719. [
  15720. {
  15721. name: "Micro",
  15722. height: math.unit(3, "inches")
  15723. },
  15724. {
  15725. name: "Normal",
  15726. height: math.unit(5 + 2 / 12, "feet"),
  15727. default: true
  15728. },
  15729. {
  15730. name: "Macro",
  15731. height: math.unit(20, "feet")
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15737. {
  15738. front: {
  15739. height: math.unit(6 + 1 / 12, "feet"),
  15740. weight: math.unit(275, "lb"),
  15741. name: "Front",
  15742. image: {
  15743. source: "./media/characters/hunter-misha-raven/front.svg"
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Mortal",
  15750. height: math.unit(6 + 1 / 12, "feet")
  15751. },
  15752. {
  15753. name: "Divine",
  15754. height: math.unit(1.12134e34, "parsecs"),
  15755. default: true
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15761. {
  15762. front: {
  15763. height: math.unit(6 + 3 / 12, "feet"),
  15764. weight: math.unit(220, "lb"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/max-calore/front.svg",
  15768. extra: 1700 / 1648,
  15769. bottom: 0.01
  15770. }
  15771. },
  15772. back: {
  15773. height: math.unit(6 + 3 / 12, "feet"),
  15774. weight: math.unit(220, "lb"),
  15775. name: "Back",
  15776. image: {
  15777. source: "./media/characters/max-calore/back.svg",
  15778. extra: 1700 / 1648,
  15779. bottom: 0.01
  15780. }
  15781. },
  15782. },
  15783. [
  15784. {
  15785. name: "Normal",
  15786. height: math.unit(6 + 3 / 12, "feet"),
  15787. default: true
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15793. {
  15794. side: {
  15795. height: math.unit(2 + 8 / 12, "feet"),
  15796. weight: math.unit(99, "lb"),
  15797. name: "Side",
  15798. image: {
  15799. source: "./media/characters/aspen/side.svg",
  15800. extra: 152 / 138,
  15801. bottom: 0.032
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Normal",
  15808. height: math.unit(2 + 8 / 12, "feet"),
  15809. default: true
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15815. {
  15816. side: {
  15817. height: math.unit(3 + 2 / 12, "feet"),
  15818. weight: math.unit(224, "lb"),
  15819. name: "Side",
  15820. image: {
  15821. source: "./media/characters/sheila-feral-wolf/side.svg",
  15822. extra: 179 / 166,
  15823. bottom: 0.03
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(3 + 2 / 12, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15837. {
  15838. side: {
  15839. height: math.unit(1 + 9 / 12, "feet"),
  15840. weight: math.unit(38, "lb"),
  15841. name: "Side",
  15842. image: {
  15843. source: "./media/characters/michelle/side.svg",
  15844. extra: 147 / 136.7,
  15845. bottom: 0.03
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(1 + 9 / 12, "feet"),
  15853. default: true
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(1 + 1 / 12, "feet"),
  15862. weight: math.unit(18, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/nino/front.svg"
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(1 + 1 / 12, "feet"),
  15873. default: true
  15874. },
  15875. ]
  15876. ))
  15877. characterMakers.push(() => makeCharacter(
  15878. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15879. {
  15880. front: {
  15881. height: math.unit(1, "feet"),
  15882. weight: math.unit(16, "lb"),
  15883. name: "Front",
  15884. image: {
  15885. source: "./media/characters/viola/front.svg"
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(1, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(6 + 5 / 12, "feet"),
  15902. weight: math.unit(580, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/atlas/front.svg",
  15906. extra: 298.5 / 290,
  15907. bottom: 0.015
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(6 + 5 / 12, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15921. {
  15922. side: {
  15923. height: math.unit(1 + 10 / 12, "feet"),
  15924. weight: math.unit(25, "lb"),
  15925. name: "Side",
  15926. image: {
  15927. source: "./media/characters/davy/side.svg",
  15928. extra: 200 / 170,
  15929. bottom: 0.01
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(1 + 10 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15943. {
  15944. side: {
  15945. height: math.unit(4 + 8 / 12, "feet"),
  15946. weight: math.unit(166, "lb"),
  15947. name: "Side",
  15948. image: {
  15949. source: "./media/characters/fiona/side.svg",
  15950. extra: 232 / 220,
  15951. bottom: 0.03
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(4 + 8 / 12, "feet"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15965. {
  15966. front: {
  15967. height: math.unit(2, "feet"),
  15968. weight: math.unit(62, "lb"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/lyla/front.svg",
  15972. bottom: 0.1
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Normal",
  15979. height: math.unit(2, "feet"),
  15980. default: true
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15986. {
  15987. side: {
  15988. height: math.unit(1.8, "feet"),
  15989. weight: math.unit(44, "lb"),
  15990. name: "Side",
  15991. image: {
  15992. source: "./media/characters/perseus/side.svg",
  15993. bottom: 0.21
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(1.8, "feet"),
  16001. default: true
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16007. {
  16008. side: {
  16009. height: math.unit(4 + 2 / 12, "feet"),
  16010. weight: math.unit(20, "lb"),
  16011. name: "Side",
  16012. image: {
  16013. source: "./media/characters/remus/side.svg"
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(4 + 2 / 12, "feet"),
  16021. default: true
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(4 + 11 / 12, "feet"),
  16030. weight: math.unit(114, "lb"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/raf/front.svg",
  16034. bottom: 0.01
  16035. }
  16036. },
  16037. side: {
  16038. height: math.unit(4 + 11 / 12, "feet"),
  16039. weight: math.unit(114, "lb"),
  16040. name: "Side",
  16041. image: {
  16042. source: "./media/characters/raf/side.svg",
  16043. bottom: 0.005
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Micro",
  16050. height: math.unit(2, "inches")
  16051. },
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(4 + 11 / 12, "feet"),
  16055. default: true
  16056. },
  16057. {
  16058. name: "Macro",
  16059. height: math.unit(70, "feet")
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(1.5, "meters"),
  16068. weight: math.unit(68, "kg"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/liam-einarr/front.svg",
  16072. extra: 2822 / 2666
  16073. }
  16074. },
  16075. back: {
  16076. height: math.unit(1.5, "meters"),
  16077. weight: math.unit(68, "kg"),
  16078. name: "Back",
  16079. image: {
  16080. source: "./media/characters/liam-einarr/back.svg",
  16081. extra: 2822 / 2666,
  16082. bottom: 0.015
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(1.5, "meters"),
  16090. default: true
  16091. },
  16092. {
  16093. name: "Macro",
  16094. height: math.unit(150, "meters")
  16095. },
  16096. {
  16097. name: "Megamacro",
  16098. height: math.unit(35, "km")
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6, "feet"),
  16107. weight: math.unit(75, "kg"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/linda/front.svg",
  16111. extra: 930 / 874,
  16112. bottom: 0.004
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Normal",
  16119. height: math.unit(6, "feet"),
  16120. default: true
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6 + 8 / 12, "feet"),
  16129. weight: math.unit(220, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/caylex/front.svg",
  16133. extra: 821 / 772,
  16134. bottom: 0.07
  16135. }
  16136. },
  16137. back: {
  16138. height: math.unit(6 + 8 / 12, "feet"),
  16139. weight: math.unit(220, "lb"),
  16140. name: "Back",
  16141. image: {
  16142. source: "./media/characters/caylex/back.svg",
  16143. extra: 821 / 772,
  16144. bottom: 0.022
  16145. }
  16146. },
  16147. hand: {
  16148. height: math.unit(1.25, "feet"),
  16149. name: "Hand",
  16150. image: {
  16151. source: "./media/characters/caylex/hand.svg"
  16152. }
  16153. },
  16154. foot: {
  16155. height: math.unit(1.6, "feet"),
  16156. name: "Foot",
  16157. image: {
  16158. source: "./media/characters/caylex/foot.svg"
  16159. }
  16160. },
  16161. armored: {
  16162. height: math.unit(6 + 8 / 12, "feet"),
  16163. weight: math.unit(250, "lb"),
  16164. name: "Armored",
  16165. image: {
  16166. source: "./media/characters/caylex/armored.svg",
  16167. extra: 1420 / 1310,
  16168. bottom: 0.045
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(6 + 8 / 12, "feet"),
  16176. default: true
  16177. },
  16178. {
  16179. name: "Normal+",
  16180. height: math.unit(12, "feet")
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(7 + 6 / 12, "feet"),
  16189. weight: math.unit(288, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/alana/front.svg",
  16193. extra: 679 / 653,
  16194. bottom: 22.5 / 701
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(7 + 6 / 12, "feet")
  16202. },
  16203. {
  16204. name: "Large",
  16205. height: math.unit(50, "feet")
  16206. },
  16207. {
  16208. name: "Macro",
  16209. height: math.unit(100, "feet"),
  16210. default: true
  16211. },
  16212. {
  16213. name: "Macro+",
  16214. height: math.unit(200, "feet")
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16220. {
  16221. front: {
  16222. height: math.unit(6 + 1 / 12, "feet"),
  16223. weight: math.unit(210, "lb"),
  16224. name: "Front",
  16225. image: {
  16226. source: "./media/characters/hasani/front.svg",
  16227. extra: 244 / 232,
  16228. bottom: 0.01
  16229. }
  16230. },
  16231. back: {
  16232. height: math.unit(6 + 1 / 12, "feet"),
  16233. weight: math.unit(210, "lb"),
  16234. name: "Back",
  16235. image: {
  16236. source: "./media/characters/hasani/back.svg",
  16237. extra: 244 / 232,
  16238. bottom: 0.01
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(6 + 1 / 12, "feet")
  16246. },
  16247. {
  16248. name: "Macro",
  16249. height: math.unit(175, "feet"),
  16250. default: true
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16256. {
  16257. front: {
  16258. height: math.unit(1.82, "meters"),
  16259. weight: math.unit(140, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/nita/front.svg",
  16263. extra: 2473 / 2363,
  16264. bottom: 0.01
  16265. }
  16266. },
  16267. },
  16268. [
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(1.82, "m")
  16272. },
  16273. {
  16274. name: "Macro",
  16275. height: math.unit(300, "m")
  16276. },
  16277. {
  16278. name: "Mistake Canon",
  16279. height: math.unit(0.5, "miles"),
  16280. default: true
  16281. },
  16282. {
  16283. name: "Big Mistake",
  16284. height: math.unit(13, "miles")
  16285. },
  16286. {
  16287. name: "Playing God",
  16288. height: math.unit(2450, "miles")
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16294. {
  16295. front: {
  16296. height: math.unit(4, "feet"),
  16297. weight: math.unit(120, "lb"),
  16298. name: "Front",
  16299. image: {
  16300. source: "./media/characters/shiriko/front.svg",
  16301. extra: 195 / 188
  16302. }
  16303. },
  16304. },
  16305. [
  16306. {
  16307. name: "Normal",
  16308. height: math.unit(4, "feet"),
  16309. default: true
  16310. },
  16311. ]
  16312. ))
  16313. characterMakers.push(() => makeCharacter(
  16314. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16315. {
  16316. front: {
  16317. height: math.unit(6, "feet"),
  16318. name: "front",
  16319. image: {
  16320. source: "./media/characters/deja/front.svg",
  16321. extra: 926 / 840,
  16322. bottom: 0.07
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Planck Length",
  16329. height: math.unit(1.6e-35, "meters")
  16330. },
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(30.48, "meters"),
  16334. default: true
  16335. },
  16336. {
  16337. name: "Universal",
  16338. height: math.unit(8.8e26, "meters")
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16344. {
  16345. side: {
  16346. height: math.unit(8, "feet"),
  16347. weight: math.unit(6300, "lb"),
  16348. name: "Side",
  16349. image: {
  16350. source: "./media/characters/anima/side.svg",
  16351. bottom: 0.035
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Normal",
  16358. height: math.unit(8, "feet"),
  16359. default: true
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16365. {
  16366. front: {
  16367. height: math.unit(8, "feet"),
  16368. weight: math.unit(350, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/bianca/front.svg",
  16372. extra: 234 / 225,
  16373. bottom: 0.03
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Normal",
  16380. height: math.unit(8, "feet"),
  16381. default: true
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(6, "feet"),
  16390. weight: math.unit(150, "lb"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/adinia/front.svg",
  16394. extra: 1845 / 1672,
  16395. bottom: 0.02
  16396. }
  16397. },
  16398. back: {
  16399. height: math.unit(6, "feet"),
  16400. weight: math.unit(150, "lb"),
  16401. name: "Back",
  16402. image: {
  16403. source: "./media/characters/adinia/back.svg",
  16404. extra: 1845 / 1672,
  16405. bottom: 0.002
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(11 + 5 / 12, "feet"),
  16413. default: true
  16414. },
  16415. ]
  16416. ))
  16417. characterMakers.push(() => makeCharacter(
  16418. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16419. {
  16420. front: {
  16421. height: math.unit(3, "meters"),
  16422. weight: math.unit(200, "kg"),
  16423. name: "Front",
  16424. image: {
  16425. source: "./media/characters/lykasa/front.svg",
  16426. extra: 1076 / 976,
  16427. bottom: 0.06
  16428. }
  16429. },
  16430. },
  16431. [
  16432. {
  16433. name: "Normal",
  16434. height: math.unit(3, "meters")
  16435. },
  16436. {
  16437. name: "Kaiju",
  16438. height: math.unit(120, "meters"),
  16439. default: true
  16440. },
  16441. {
  16442. name: "Mega Kaiju",
  16443. height: math.unit(240, "km")
  16444. },
  16445. {
  16446. name: "Giga Kaiju",
  16447. height: math.unit(400, "megameters")
  16448. },
  16449. {
  16450. name: "Tera Kaiju",
  16451. height: math.unit(800, "gigameters")
  16452. },
  16453. {
  16454. name: "Kaiju Dragon Goddess",
  16455. height: math.unit(26, "zettaparsecs")
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16461. {
  16462. side: {
  16463. height: math.unit(283 / 124 * 6, "feet"),
  16464. weight: math.unit(35000, "lb"),
  16465. name: "Side",
  16466. image: {
  16467. source: "./media/characters/malfaren/side.svg",
  16468. extra: 2500 / 1010,
  16469. bottom: 0.01
  16470. }
  16471. },
  16472. front: {
  16473. height: math.unit(22.36, "feet"),
  16474. weight: math.unit(35000, "lb"),
  16475. name: "Front",
  16476. image: {
  16477. source: "./media/characters/malfaren/front.svg",
  16478. extra: 1631 / 1476,
  16479. bottom: 0.01
  16480. }
  16481. },
  16482. maw: {
  16483. height: math.unit(6.9, "feet"),
  16484. name: "Maw",
  16485. image: {
  16486. source: "./media/characters/malfaren/maw.svg"
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Big",
  16493. height: math.unit(283 / 162 * 6, "feet"),
  16494. },
  16495. {
  16496. name: "Bigger",
  16497. height: math.unit(283 / 124 * 6, "feet")
  16498. },
  16499. {
  16500. name: "Massive",
  16501. height: math.unit(283 / 92 * 6, "feet"),
  16502. default: true
  16503. },
  16504. {
  16505. name: "👀💦",
  16506. height: math.unit(283 / 73 * 6, "feet"),
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16512. {
  16513. front: {
  16514. height: math.unit(1.7, "m"),
  16515. weight: math.unit(70, "kg"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/kernel/front.svg",
  16519. extra: 222 / 210,
  16520. bottom: 0.007
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Nano",
  16527. height: math.unit(17, "micrometers")
  16528. },
  16529. {
  16530. name: "Micro",
  16531. height: math.unit(1.7, "mm")
  16532. },
  16533. {
  16534. name: "Small",
  16535. height: math.unit(1.7, "cm")
  16536. },
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(1.7, "m"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(1.75, "meters"),
  16549. weight: math.unit(65, "kg"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/jayne-folest/front.svg",
  16553. extra: 2115 / 2007,
  16554. bottom: 0.02
  16555. }
  16556. },
  16557. back: {
  16558. height: math.unit(1.75, "meters"),
  16559. weight: math.unit(65, "kg"),
  16560. name: "Back",
  16561. image: {
  16562. source: "./media/characters/jayne-folest/back.svg",
  16563. extra: 2115 / 2007,
  16564. bottom: 0.005
  16565. }
  16566. },
  16567. frontClothed: {
  16568. height: math.unit(1.75, "meters"),
  16569. weight: math.unit(65, "kg"),
  16570. name: "Front (Clothed)",
  16571. image: {
  16572. source: "./media/characters/jayne-folest/front-clothed.svg",
  16573. extra: 2115 / 2007,
  16574. bottom: 0.035
  16575. }
  16576. },
  16577. hand: {
  16578. height: math.unit(1 / 1.260, "feet"),
  16579. name: "Hand",
  16580. image: {
  16581. source: "./media/characters/jayne-folest/hand.svg"
  16582. }
  16583. },
  16584. foot: {
  16585. height: math.unit(1 / 0.918, "feet"),
  16586. name: "Foot",
  16587. image: {
  16588. source: "./media/characters/jayne-folest/foot.svg"
  16589. }
  16590. },
  16591. },
  16592. [
  16593. {
  16594. name: "Micro",
  16595. height: math.unit(4, "cm")
  16596. },
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(1.75, "meters")
  16600. },
  16601. {
  16602. name: "Macro",
  16603. height: math.unit(47.5, "meters"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16610. {
  16611. front: {
  16612. height: math.unit(180, "cm"),
  16613. weight: math.unit(70, "kg"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/algier/front.svg",
  16617. extra: 596 / 572,
  16618. bottom: 0.04
  16619. }
  16620. },
  16621. back: {
  16622. height: math.unit(180, "cm"),
  16623. weight: math.unit(70, "kg"),
  16624. name: "Back",
  16625. image: {
  16626. source: "./media/characters/algier/back.svg",
  16627. extra: 596 / 572,
  16628. bottom: 0.025
  16629. }
  16630. },
  16631. frontdressed: {
  16632. height: math.unit(180, "cm"),
  16633. weight: math.unit(150, "kg"),
  16634. name: "Front-dressed",
  16635. image: {
  16636. source: "./media/characters/algier/front-dressed.svg",
  16637. extra: 596 / 572,
  16638. bottom: 0.038
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Micro",
  16645. height: math.unit(5, "cm")
  16646. },
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(180, "cm"),
  16650. default: true
  16651. },
  16652. {
  16653. name: "Macro",
  16654. height: math.unit(64, "m")
  16655. },
  16656. ]
  16657. ))
  16658. characterMakers.push(() => makeCharacter(
  16659. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16660. {
  16661. upright: {
  16662. height: math.unit(7, "feet"),
  16663. weight: math.unit(300, "lb"),
  16664. name: "Upright",
  16665. image: {
  16666. source: "./media/characters/pretzel/upright.svg",
  16667. extra: 534 / 522,
  16668. bottom: 0.065
  16669. }
  16670. },
  16671. sprawling: {
  16672. height: math.unit(3.75, "feet"),
  16673. weight: math.unit(300, "lb"),
  16674. name: "Sprawling",
  16675. image: {
  16676. source: "./media/characters/pretzel/sprawling.svg",
  16677. extra: 314 / 281,
  16678. bottom: 0.1
  16679. }
  16680. },
  16681. tongue: {
  16682. height: math.unit(2, "feet"),
  16683. name: "Tongue",
  16684. image: {
  16685. source: "./media/characters/pretzel/tongue.svg"
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(7, "feet"),
  16693. default: true
  16694. },
  16695. {
  16696. name: "Oversized",
  16697. height: math.unit(15, "feet")
  16698. },
  16699. {
  16700. name: "Huge",
  16701. height: math.unit(30, "feet")
  16702. },
  16703. {
  16704. name: "Macro",
  16705. height: math.unit(250, "feet")
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16711. {
  16712. sideFront: {
  16713. height: math.unit(5 + 2 / 12, "feet"),
  16714. weight: math.unit(120, "lb"),
  16715. name: "Front Side",
  16716. image: {
  16717. source: "./media/characters/roxi/side-front.svg",
  16718. extra: 2924 / 2717,
  16719. bottom: 0.08
  16720. }
  16721. },
  16722. sideBack: {
  16723. height: math.unit(5 + 2 / 12, "feet"),
  16724. weight: math.unit(120, "lb"),
  16725. name: "Back Side",
  16726. image: {
  16727. source: "./media/characters/roxi/side-back.svg",
  16728. extra: 2904 / 2693,
  16729. bottom: 0.06
  16730. }
  16731. },
  16732. front: {
  16733. height: math.unit(5 + 2 / 12, "feet"),
  16734. weight: math.unit(120, "lb"),
  16735. name: "Front",
  16736. image: {
  16737. source: "./media/characters/roxi/front.svg",
  16738. extra: 2028 / 1907,
  16739. bottom: 0.01
  16740. }
  16741. },
  16742. frontAlt: {
  16743. height: math.unit(5 + 2 / 12, "feet"),
  16744. weight: math.unit(120, "lb"),
  16745. name: "Front (Alt)",
  16746. image: {
  16747. source: "./media/characters/roxi/front-alt.svg",
  16748. extra: 1828 / 1798,
  16749. bottom: 0.01
  16750. }
  16751. },
  16752. sitting: {
  16753. height: math.unit(2.8, "feet"),
  16754. weight: math.unit(120, "lb"),
  16755. name: "Sitting",
  16756. image: {
  16757. source: "./media/characters/roxi/sitting.svg",
  16758. extra: 2660 / 2462,
  16759. bottom: 0.1
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(5 + 2 / 12, "feet"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16773. {
  16774. side: {
  16775. height: math.unit(55, "feet"),
  16776. weight: math.unit(153, "tons"),
  16777. name: "Side",
  16778. image: {
  16779. source: "./media/characters/shadow/side.svg",
  16780. extra: 701 / 628,
  16781. bottom: 0.02
  16782. }
  16783. },
  16784. flying: {
  16785. height: math.unit(145, "feet"),
  16786. weight: math.unit(153, "tons"),
  16787. name: "Flying",
  16788. image: {
  16789. source: "./media/characters/shadow/flying.svg"
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(55, "feet"),
  16797. default: true
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(6, "feet"),
  16806. weight: math.unit(200, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/marcie/front.svg",
  16810. extra: 960 / 876,
  16811. bottom: 58 / 1017.87
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Macro",
  16818. height: math.unit(1, "mile"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(7, "feet"),
  16828. weight: math.unit(200, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/kachina/front.svg",
  16832. extra: 1290.68 / 1119,
  16833. bottom: 36.5 / 1327.18
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(7, "feet"),
  16841. default: true
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16847. {
  16848. looking: {
  16849. height: math.unit(2, "meters"),
  16850. weight: math.unit(300, "kg"),
  16851. name: "Looking",
  16852. image: {
  16853. source: "./media/characters/kash/looking.svg",
  16854. extra: 474 / 344,
  16855. bottom: 0.03
  16856. }
  16857. },
  16858. side: {
  16859. height: math.unit(2, "meters"),
  16860. weight: math.unit(300, "kg"),
  16861. name: "Side",
  16862. image: {
  16863. source: "./media/characters/kash/side.svg",
  16864. extra: 302 / 251,
  16865. bottom: 0.03
  16866. }
  16867. },
  16868. front: {
  16869. height: math.unit(2, "meters"),
  16870. weight: math.unit(300, "kg"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/kash/front.svg",
  16874. extra: 495 / 360,
  16875. bottom: 0.015
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(2, "meters"),
  16883. default: true
  16884. },
  16885. {
  16886. name: "Big",
  16887. height: math.unit(3, "meters")
  16888. },
  16889. {
  16890. name: "Large",
  16891. height: math.unit(5, "meters")
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16897. {
  16898. feeding: {
  16899. height: math.unit(6.7, "feet"),
  16900. weight: math.unit(350, "lb"),
  16901. name: "Feeding",
  16902. image: {
  16903. source: "./media/characters/lalim/feeding.svg",
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(6.7, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(9.5, "feet"),
  16920. weight: math.unit(600, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/de'vout/front.svg",
  16924. extra: 1443 / 1328,
  16925. bottom: 0.025
  16926. }
  16927. },
  16928. back: {
  16929. height: math.unit(9.5, "feet"),
  16930. weight: math.unit(600, "lb"),
  16931. name: "Back",
  16932. image: {
  16933. source: "./media/characters/de'vout/back.svg",
  16934. extra: 1443 / 1328
  16935. }
  16936. },
  16937. frontDressed: {
  16938. height: math.unit(9.5, "feet"),
  16939. weight: math.unit(600, "lb"),
  16940. name: "Front (Dressed",
  16941. image: {
  16942. source: "./media/characters/de'vout/front-dressed.svg",
  16943. extra: 1443 / 1328,
  16944. bottom: 0.025
  16945. }
  16946. },
  16947. backDressed: {
  16948. height: math.unit(9.5, "feet"),
  16949. weight: math.unit(600, "lb"),
  16950. name: "Back (Dressed",
  16951. image: {
  16952. source: "./media/characters/de'vout/back-dressed.svg",
  16953. extra: 1443 / 1328
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Normal",
  16960. height: math.unit(9.5, "feet"),
  16961. default: true
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(8, "feet"),
  16970. weight: math.unit(225, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/talana/front.svg",
  16974. extra: 1410 / 1300,
  16975. bottom: 0.015
  16976. }
  16977. },
  16978. frontDressed: {
  16979. height: math.unit(8, "feet"),
  16980. weight: math.unit(225, "lb"),
  16981. name: "Front (Dressed",
  16982. image: {
  16983. source: "./media/characters/talana/front-dressed.svg",
  16984. extra: 1410 / 1300,
  16985. bottom: 0.015
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(8, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16999. {
  17000. side: {
  17001. height: math.unit(7.2, "feet"),
  17002. weight: math.unit(150, "lb"),
  17003. name: "Side",
  17004. image: {
  17005. source: "./media/characters/xeauvok/side.svg",
  17006. extra: 1975 / 1523,
  17007. bottom: 0.07
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(7.2, "feet"),
  17015. default: true
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17021. {
  17022. side: {
  17023. height: math.unit(10, "feet"),
  17024. weight: math.unit(900, "kg"),
  17025. name: "Side",
  17026. image: {
  17027. source: "./media/characters/zara/side.svg",
  17028. extra: 504 / 498
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(10, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17042. {
  17043. side: {
  17044. height: math.unit(6, "feet"),
  17045. weight: math.unit(150, "lb"),
  17046. name: "Side",
  17047. image: {
  17048. source: "./media/characters/richard-dragon/side.svg",
  17049. extra: 845 / 340,
  17050. bottom: 0.017
  17051. }
  17052. },
  17053. maw: {
  17054. height: math.unit(2.97, "feet"),
  17055. name: "Maw",
  17056. image: {
  17057. source: "./media/characters/richard-dragon/maw.svg"
  17058. }
  17059. },
  17060. },
  17061. [
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17066. {
  17067. front: {
  17068. height: math.unit(4, "feet"),
  17069. weight: math.unit(100, "lb"),
  17070. name: "Front",
  17071. image: {
  17072. source: "./media/characters/richard-smeargle/front.svg",
  17073. extra: 2952 / 2820,
  17074. bottom: 0.028
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(4, "feet"),
  17082. default: true
  17083. },
  17084. {
  17085. name: "Dynamax",
  17086. height: math.unit(20, "meters")
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(6, "feet"),
  17095. weight: math.unit(110, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/klay/front.svg",
  17099. extra: 962 / 883,
  17100. bottom: 0.04
  17101. }
  17102. },
  17103. back: {
  17104. height: math.unit(6, "feet"),
  17105. weight: math.unit(110, "lb"),
  17106. name: "Back",
  17107. image: {
  17108. source: "./media/characters/klay/back.svg",
  17109. extra: 962 / 883
  17110. }
  17111. },
  17112. beans: {
  17113. height: math.unit(1.15, "feet"),
  17114. name: "Beans",
  17115. image: {
  17116. source: "./media/characters/klay/beans.svg"
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Micro",
  17123. height: math.unit(6, "inches")
  17124. },
  17125. {
  17126. name: "Mini",
  17127. height: math.unit(3, "feet")
  17128. },
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(6, "feet"),
  17132. default: true
  17133. },
  17134. {
  17135. name: "Big",
  17136. height: math.unit(25, "feet")
  17137. },
  17138. {
  17139. name: "Macro",
  17140. height: math.unit(100, "feet")
  17141. },
  17142. {
  17143. name: "Megamacro",
  17144. height: math.unit(400, "feet")
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(6, "feet"),
  17153. weight: math.unit(160, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/marcus/front.svg",
  17157. extra: 734 / 676,
  17158. bottom: 0.03
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Little",
  17165. height: math.unit(6, "feet")
  17166. },
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(110, "feet"),
  17170. default: true
  17171. },
  17172. {
  17173. name: "Macro",
  17174. height: math.unit(250, "feet")
  17175. },
  17176. {
  17177. name: "Megamacro",
  17178. height: math.unit(1000, "feet")
  17179. },
  17180. ]
  17181. ))
  17182. characterMakers.push(() => makeCharacter(
  17183. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17184. {
  17185. front: {
  17186. height: math.unit(7, "feet"),
  17187. weight: math.unit(275, "lb"),
  17188. name: "Front",
  17189. image: {
  17190. source: "./media/characters/claude-delroute/front.svg",
  17191. extra: 230 / 214,
  17192. bottom: 0.007
  17193. }
  17194. },
  17195. side: {
  17196. height: math.unit(7, "feet"),
  17197. weight: math.unit(275, "lb"),
  17198. name: "Side",
  17199. image: {
  17200. source: "./media/characters/claude-delroute/side.svg",
  17201. extra: 222 / 214,
  17202. bottom: 0.01
  17203. }
  17204. },
  17205. back: {
  17206. height: math.unit(7, "feet"),
  17207. weight: math.unit(275, "lb"),
  17208. name: "Back",
  17209. image: {
  17210. source: "./media/characters/claude-delroute/back.svg",
  17211. extra: 230 / 214,
  17212. bottom: 0.015
  17213. }
  17214. },
  17215. maw: {
  17216. height: math.unit(0.6407, "meters"),
  17217. name: "Maw",
  17218. image: {
  17219. source: "./media/characters/claude-delroute/maw.svg"
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(7, "feet"),
  17227. default: true
  17228. },
  17229. {
  17230. name: "Lorge",
  17231. height: math.unit(20, "feet")
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17237. {
  17238. front: {
  17239. height: math.unit(8 + 4 / 12, "feet"),
  17240. weight: math.unit(600, "lb"),
  17241. name: "Front",
  17242. image: {
  17243. source: "./media/characters/dragonien/front.svg",
  17244. extra: 100 / 94,
  17245. bottom: 3.3 / 103.3445
  17246. }
  17247. },
  17248. back: {
  17249. height: math.unit(8 + 4 / 12, "feet"),
  17250. weight: math.unit(600, "lb"),
  17251. name: "Back",
  17252. image: {
  17253. source: "./media/characters/dragonien/back.svg",
  17254. extra: 776 / 746,
  17255. bottom: 6.4 / 782.0616
  17256. }
  17257. },
  17258. foot: {
  17259. height: math.unit(1.54, "feet"),
  17260. name: "Foot",
  17261. image: {
  17262. source: "./media/characters/dragonien/foot.svg",
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Normal",
  17269. height: math.unit(8 + 4 / 12, "feet"),
  17270. default: true
  17271. },
  17272. {
  17273. name: "Macro",
  17274. height: math.unit(200, "feet")
  17275. },
  17276. {
  17277. name: "Megamacro",
  17278. height: math.unit(1, "mile")
  17279. },
  17280. {
  17281. name: "Gigamacro",
  17282. height: math.unit(1000, "miles")
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17288. {
  17289. front: {
  17290. height: math.unit(5 + 2 / 12, "feet"),
  17291. weight: math.unit(110, "lb"),
  17292. name: "Front",
  17293. image: {
  17294. source: "./media/characters/desta/front.svg",
  17295. extra: 767/726,
  17296. bottom: 11.7/779
  17297. }
  17298. },
  17299. back: {
  17300. height: math.unit(5 + 2 / 12, "feet"),
  17301. weight: math.unit(110, "lb"),
  17302. name: "Back",
  17303. image: {
  17304. source: "./media/characters/desta/back.svg",
  17305. extra: 777/728,
  17306. bottom: 6/784
  17307. }
  17308. },
  17309. frontAlt: {
  17310. height: math.unit(5 + 2 / 12, "feet"),
  17311. weight: math.unit(110, "lb"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/desta/front-alt.svg",
  17315. extra: 1482 / 1417
  17316. }
  17317. },
  17318. side: {
  17319. height: math.unit(5 + 2 / 12, "feet"),
  17320. weight: math.unit(110, "lb"),
  17321. name: "Side",
  17322. image: {
  17323. source: "./media/characters/desta/side.svg",
  17324. extra: 2579 / 2491,
  17325. bottom: 0.053
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Micro",
  17332. height: math.unit(6, "inches")
  17333. },
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(5 + 2 / 12, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Macro",
  17341. height: math.unit(62, "feet")
  17342. },
  17343. {
  17344. name: "Megamacro",
  17345. height: math.unit(1800, "feet")
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(10, "feet"),
  17354. weight: math.unit(700, "lb"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/storm-alystar/front.svg",
  17358. extra: 2112 / 1898,
  17359. bottom: 0.034
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Micro",
  17366. height: math.unit(3.5, "inches")
  17367. },
  17368. {
  17369. name: "Normal",
  17370. height: math.unit(10, "feet"),
  17371. default: true
  17372. },
  17373. {
  17374. name: "Macro",
  17375. height: math.unit(400, "feet")
  17376. },
  17377. {
  17378. name: "Deific",
  17379. height: math.unit(60, "miles")
  17380. },
  17381. ]
  17382. ))
  17383. characterMakers.push(() => makeCharacter(
  17384. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17385. {
  17386. front: {
  17387. height: math.unit(2.35, "meters"),
  17388. weight: math.unit(119, "kg"),
  17389. name: "Front",
  17390. image: {
  17391. source: "./media/characters/ilia/front.svg",
  17392. extra: 1285 / 1255,
  17393. bottom: 0.06
  17394. }
  17395. },
  17396. },
  17397. [
  17398. {
  17399. name: "Normal",
  17400. height: math.unit(2.35, "meters")
  17401. },
  17402. {
  17403. name: "Macro",
  17404. height: math.unit(140, "meters"),
  17405. default: true
  17406. },
  17407. {
  17408. name: "Megamacro",
  17409. height: math.unit(100, "miles")
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(6 + 5 / 12, "feet"),
  17418. weight: math.unit(190, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/kingdead/front.svg",
  17422. extra: 1228 / 1177
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Micro",
  17429. height: math.unit(7, "inches")
  17430. },
  17431. {
  17432. name: "Normal",
  17433. height: math.unit(6 + 5 / 12, "feet")
  17434. },
  17435. {
  17436. name: "Macro",
  17437. height: math.unit(150, "feet"),
  17438. default: true
  17439. },
  17440. {
  17441. name: "Megamacro",
  17442. height: math.unit(200, "miles")
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17448. {
  17449. front: {
  17450. height: math.unit(8, "feet"),
  17451. weight: math.unit(600, "lb"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/kyrehx/front.svg",
  17455. extra: 1195 / 1095,
  17456. bottom: 0.034
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Micro",
  17463. height: math.unit(2, "inches")
  17464. },
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(8, "feet"),
  17468. default: true
  17469. },
  17470. {
  17471. name: "Macro",
  17472. height: math.unit(255, "feet")
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17478. {
  17479. front: {
  17480. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17481. weight: math.unit(184, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/xang/front.svg",
  17485. extra: 845 / 755
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17493. default: true
  17494. },
  17495. {
  17496. name: "Macro",
  17497. height: math.unit(0.935 * 146, "feet")
  17498. },
  17499. {
  17500. name: "Megamacro",
  17501. height: math.unit(0.935 * 3, "miles")
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17507. {
  17508. frontDressed: {
  17509. height: math.unit(5 + 7 / 12, "feet"),
  17510. weight: math.unit(140, "lb"),
  17511. name: "Front (Dressed)",
  17512. image: {
  17513. source: "./media/characters/doc-weardno/front-dressed.svg",
  17514. extra: 263 / 234
  17515. }
  17516. },
  17517. backDressed: {
  17518. height: math.unit(5 + 7 / 12, "feet"),
  17519. weight: math.unit(140, "lb"),
  17520. name: "Back (Dressed)",
  17521. image: {
  17522. source: "./media/characters/doc-weardno/back-dressed.svg",
  17523. extra: 266 / 238
  17524. }
  17525. },
  17526. front: {
  17527. height: math.unit(5 + 7 / 12, "feet"),
  17528. weight: math.unit(140, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/doc-weardno/front.svg",
  17532. extra: 254 / 233
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Micro",
  17539. height: math.unit(3, "inches")
  17540. },
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(5 + 7 / 12, "feet"),
  17544. default: true
  17545. },
  17546. {
  17547. name: "Macro",
  17548. height: math.unit(25, "feet")
  17549. },
  17550. {
  17551. name: "Megamacro",
  17552. height: math.unit(2, "miles")
  17553. },
  17554. ]
  17555. ))
  17556. characterMakers.push(() => makeCharacter(
  17557. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17558. {
  17559. front: {
  17560. height: math.unit(6 + 2 / 12, "feet"),
  17561. weight: math.unit(153, "lb"),
  17562. name: "Front",
  17563. image: {
  17564. source: "./media/characters/seth-whilst/front.svg",
  17565. bottom: 0.07
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Micro",
  17572. height: math.unit(5, "inches")
  17573. },
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(6 + 2 / 12, "feet"),
  17577. default: true
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17583. {
  17584. front: {
  17585. height: math.unit(3, "inches"),
  17586. weight: math.unit(8, "grams"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/pocket-jabari/front.svg",
  17590. extra: 1024 / 974,
  17591. bottom: 0.039
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Minimicro",
  17598. height: math.unit(8, "mm")
  17599. },
  17600. {
  17601. name: "Micro",
  17602. height: math.unit(3, "inches"),
  17603. default: true
  17604. },
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(3, "feet")
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17613. {
  17614. front: {
  17615. height: math.unit(15, "feet"),
  17616. weight: math.unit(3280, "lb"),
  17617. name: "Front",
  17618. image: {
  17619. source: "./media/characters/sapphy/front.svg",
  17620. extra: 671 / 577,
  17621. bottom: 0.085
  17622. }
  17623. },
  17624. back: {
  17625. height: math.unit(15, "feet"),
  17626. weight: math.unit(3280, "lb"),
  17627. name: "Back",
  17628. image: {
  17629. source: "./media/characters/sapphy/back.svg",
  17630. extra: 631 / 607,
  17631. bottom: 0.045
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(15, "feet")
  17639. },
  17640. {
  17641. name: "Casual Macro",
  17642. height: math.unit(120, "feet")
  17643. },
  17644. {
  17645. name: "Macro",
  17646. height: math.unit(2150, "feet"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Megamacro",
  17651. height: math.unit(8, "miles")
  17652. },
  17653. {
  17654. name: "Galaxy Mom",
  17655. height: math.unit(6, "megalightyears")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17661. {
  17662. front: {
  17663. height: math.unit(6, "feet"),
  17664. weight: math.unit(170, "lb"),
  17665. name: "Front",
  17666. image: {
  17667. source: "./media/characters/kiro/front.svg",
  17668. extra: 1064 / 1012,
  17669. bottom: 0.052
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Micro",
  17676. height: math.unit(6, "inches")
  17677. },
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(6, "feet"),
  17681. default: true
  17682. },
  17683. {
  17684. name: "Macro",
  17685. height: math.unit(72, "feet")
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17691. {
  17692. front: {
  17693. height: math.unit(5 + 9 / 12, "feet"),
  17694. weight: math.unit(175, "lb"),
  17695. name: "Front",
  17696. image: {
  17697. source: "./media/characters/irishfox/front.svg",
  17698. extra: 1912 / 1680,
  17699. bottom: 0.02
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Nano",
  17706. height: math.unit(1, "mm")
  17707. },
  17708. {
  17709. name: "Micro",
  17710. height: math.unit(2, "inches")
  17711. },
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(5 + 9 / 12, "feet"),
  17715. default: true
  17716. },
  17717. {
  17718. name: "Macro",
  17719. height: math.unit(45, "feet")
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(6 + 1 / 12, "feet"),
  17728. weight: math.unit(150, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/aronai-sieyes/front.svg",
  17732. extra: 1556 / 1480,
  17733. bottom: 0.015
  17734. }
  17735. },
  17736. side: {
  17737. height: math.unit(6 + 1 / 12, "feet"),
  17738. weight: math.unit(150, "lb"),
  17739. name: "Side",
  17740. image: {
  17741. source: "./media/characters/aronai-sieyes/side.svg",
  17742. extra: 1433 / 1390,
  17743. bottom: 0.0393
  17744. }
  17745. },
  17746. back: {
  17747. height: math.unit(6 + 1 / 12, "feet"),
  17748. weight: math.unit(150, "lb"),
  17749. name: "Back",
  17750. image: {
  17751. source: "./media/characters/aronai-sieyes/back.svg",
  17752. extra: 1544 / 1494,
  17753. bottom: 0.02
  17754. }
  17755. },
  17756. frontClothed: {
  17757. height: math.unit(6 + 1 / 12, "feet"),
  17758. weight: math.unit(150, "lb"),
  17759. name: "Front (Clothed)",
  17760. image: {
  17761. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17762. extra: 1582 / 1527
  17763. }
  17764. },
  17765. feral: {
  17766. height: math.unit(18, "feet"),
  17767. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17768. name: "Feral",
  17769. image: {
  17770. source: "./media/characters/aronai-sieyes/feral.svg",
  17771. extra: 1530 / 1240,
  17772. bottom: 0.035
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Micro",
  17779. height: math.unit(2, "inches")
  17780. },
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(6 + 1 / 12, "feet"),
  17784. default: true
  17785. }
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17790. {
  17791. front: {
  17792. height: math.unit(12, "feet"),
  17793. weight: math.unit(410, "kg"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/xuna/front.svg",
  17797. extra: 2184 / 1980
  17798. }
  17799. },
  17800. side: {
  17801. height: math.unit(12, "feet"),
  17802. weight: math.unit(410, "kg"),
  17803. name: "Side",
  17804. image: {
  17805. source: "./media/characters/xuna/side.svg",
  17806. extra: 2184 / 1980
  17807. }
  17808. },
  17809. back: {
  17810. height: math.unit(12, "feet"),
  17811. weight: math.unit(410, "kg"),
  17812. name: "Back",
  17813. image: {
  17814. source: "./media/characters/xuna/back.svg",
  17815. extra: 2184 / 1980
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Nano glow",
  17822. height: math.unit(10, "nm")
  17823. },
  17824. {
  17825. name: "Micro floof",
  17826. height: math.unit(0.3, "m")
  17827. },
  17828. {
  17829. name: "Huggable softy boi",
  17830. height: math.unit(3.6576, "m"),
  17831. default: true
  17832. },
  17833. {
  17834. name: "Admirable floof",
  17835. height: math.unit(80, "meters")
  17836. },
  17837. {
  17838. name: "Gentle macro",
  17839. height: math.unit(300, "meters")
  17840. },
  17841. {
  17842. name: "Very careful floof",
  17843. height: math.unit(3200, "meters")
  17844. },
  17845. {
  17846. name: "The mega floof",
  17847. height: math.unit(36000, "meters")
  17848. },
  17849. {
  17850. name: "Giga-fur-Wicker",
  17851. height: math.unit(4800000, "meters")
  17852. },
  17853. {
  17854. name: "Licky world",
  17855. height: math.unit(20000000, "meters")
  17856. },
  17857. {
  17858. name: "Floofy cyan sun",
  17859. height: math.unit(1500000000, "meters")
  17860. },
  17861. {
  17862. name: "Milky Wicker",
  17863. height: math.unit(1000000000000000000000, "meters")
  17864. },
  17865. {
  17866. name: "The observing Wicker",
  17867. height: math.unit(999999999999999999999999999, "meters")
  17868. },
  17869. ]
  17870. ))
  17871. characterMakers.push(() => makeCharacter(
  17872. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17873. {
  17874. front: {
  17875. height: math.unit(5 + 9 / 12, "feet"),
  17876. weight: math.unit(150, "lb"),
  17877. name: "Front",
  17878. image: {
  17879. source: "./media/characters/arokha-sieyes/front.svg",
  17880. extra: 1425 / 1284,
  17881. bottom: 0.05
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(5 + 9 / 12, "feet")
  17889. },
  17890. {
  17891. name: "Macro",
  17892. height: math.unit(30, "meters"),
  17893. default: true
  17894. },
  17895. ]
  17896. ))
  17897. characterMakers.push(() => makeCharacter(
  17898. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17899. {
  17900. front: {
  17901. height: math.unit(6, "feet"),
  17902. weight: math.unit(180, "lb"),
  17903. name: "Front",
  17904. image: {
  17905. source: "./media/characters/arokh-sieyes/front.svg",
  17906. extra: 1830 / 1769,
  17907. bottom: 0.01
  17908. }
  17909. },
  17910. },
  17911. [
  17912. {
  17913. name: "Normal",
  17914. height: math.unit(6, "feet")
  17915. },
  17916. {
  17917. name: "Macro",
  17918. height: math.unit(30, "meters"),
  17919. default: true
  17920. },
  17921. ]
  17922. ))
  17923. characterMakers.push(() => makeCharacter(
  17924. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17925. {
  17926. side: {
  17927. height: math.unit(13 + 1 / 12, "feet"),
  17928. weight: math.unit(8.5, "tonnes"),
  17929. name: "Side",
  17930. image: {
  17931. source: "./media/characters/goldeneye/side.svg",
  17932. extra: 1182 / 778,
  17933. bottom: 0.067
  17934. }
  17935. },
  17936. paw: {
  17937. height: math.unit(3.4, "feet"),
  17938. name: "Paw",
  17939. image: {
  17940. source: "./media/characters/goldeneye/paw.svg"
  17941. }
  17942. },
  17943. },
  17944. [
  17945. {
  17946. name: "Normal",
  17947. height: math.unit(13 + 1 / 12, "feet"),
  17948. default: true
  17949. },
  17950. ]
  17951. ))
  17952. characterMakers.push(() => makeCharacter(
  17953. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17954. {
  17955. front: {
  17956. height: math.unit(6 + 1 / 12, "feet"),
  17957. weight: math.unit(210, "lb"),
  17958. name: "Front",
  17959. image: {
  17960. source: "./media/characters/leonardo-lycheborne/front.svg",
  17961. extra: 390 / 365,
  17962. bottom: 0.032
  17963. }
  17964. },
  17965. side: {
  17966. height: math.unit(6 + 1 / 12, "feet"),
  17967. weight: math.unit(210, "lb"),
  17968. name: "Side",
  17969. image: {
  17970. source: "./media/characters/leonardo-lycheborne/side.svg",
  17971. extra: 390 / 365,
  17972. bottom: 0.005
  17973. }
  17974. },
  17975. back: {
  17976. height: math.unit(6 + 1 / 12, "feet"),
  17977. weight: math.unit(210, "lb"),
  17978. name: "Back",
  17979. image: {
  17980. source: "./media/characters/leonardo-lycheborne/back.svg",
  17981. extra: 392 / 366,
  17982. bottom: 0.01
  17983. }
  17984. },
  17985. hand: {
  17986. height: math.unit(1.08, "feet"),
  17987. name: "Hand",
  17988. image: {
  17989. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17990. }
  17991. },
  17992. foot: {
  17993. height: math.unit(1.32, "feet"),
  17994. name: "Foot",
  17995. image: {
  17996. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17997. }
  17998. },
  17999. were: {
  18000. height: math.unit(20, "feet"),
  18001. weight: math.unit(7800, "lb"),
  18002. name: "Were",
  18003. image: {
  18004. source: "./media/characters/leonardo-lycheborne/were.svg",
  18005. extra: 308 / 294,
  18006. bottom: 0.048
  18007. }
  18008. },
  18009. feral: {
  18010. height: math.unit(7.5, "feet"),
  18011. weight: math.unit(600, "lb"),
  18012. name: "Feral",
  18013. image: {
  18014. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18015. extra: 210 / 186,
  18016. bottom: 0.108
  18017. }
  18018. },
  18019. taur: {
  18020. height: math.unit(11, "feet"),
  18021. weight: math.unit(3300, "lb"),
  18022. name: "Taur",
  18023. image: {
  18024. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18025. extra: 320 / 303,
  18026. bottom: 0.025
  18027. }
  18028. },
  18029. barghest: {
  18030. height: math.unit(11, "feet"),
  18031. weight: math.unit(1300, "lb"),
  18032. name: "Barghest",
  18033. image: {
  18034. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18035. extra: 323 / 302,
  18036. bottom: 0.027
  18037. }
  18038. },
  18039. dick: {
  18040. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18041. name: "Dick",
  18042. image: {
  18043. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18044. }
  18045. },
  18046. dickWere: {
  18047. height: math.unit((20) / 3.8, "feet"),
  18048. name: "Dick (Were)",
  18049. image: {
  18050. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Normal",
  18057. height: math.unit(6 + 1 / 12, "feet"),
  18058. default: true
  18059. },
  18060. ]
  18061. ))
  18062. characterMakers.push(() => makeCharacter(
  18063. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18064. {
  18065. front: {
  18066. height: math.unit(10, "feet"),
  18067. weight: math.unit(350, "lb"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/jet/front.svg",
  18071. extra: 2050 / 1980,
  18072. bottom: 0.013
  18073. }
  18074. },
  18075. back: {
  18076. height: math.unit(10, "feet"),
  18077. weight: math.unit(350, "lb"),
  18078. name: "Back",
  18079. image: {
  18080. source: "./media/characters/jet/back.svg",
  18081. extra: 2050 / 1980,
  18082. bottom: 0.013
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Micro",
  18089. height: math.unit(6, "inches")
  18090. },
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(10, "feet"),
  18094. default: true
  18095. },
  18096. {
  18097. name: "Macro",
  18098. height: math.unit(100, "feet")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(15, "feet"),
  18107. weight: math.unit(2800, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/tanarath/front.svg",
  18111. extra: 2392 / 2220,
  18112. bottom: 0.03
  18113. }
  18114. },
  18115. back: {
  18116. height: math.unit(15, "feet"),
  18117. weight: math.unit(2800, "lb"),
  18118. name: "Back",
  18119. image: {
  18120. source: "./media/characters/tanarath/back.svg",
  18121. extra: 2392 / 2220,
  18122. bottom: 0.03
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Normal",
  18129. height: math.unit(15, "feet"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(7 + 1 / 12, "feet"),
  18139. weight: math.unit(175, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/patty-cattybatty/front.svg",
  18143. extra: 908 / 874,
  18144. bottom: 0.025
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Micro",
  18151. height: math.unit(1, "inch")
  18152. },
  18153. {
  18154. name: "Normal",
  18155. height: math.unit(7 + 1 / 12, "feet")
  18156. },
  18157. {
  18158. name: "Mini Macro",
  18159. height: math.unit(155, "feet")
  18160. },
  18161. {
  18162. name: "Macro",
  18163. height: math.unit(1077, "feet")
  18164. },
  18165. {
  18166. name: "Mega Macro",
  18167. height: math.unit(47650, "feet"),
  18168. default: true
  18169. },
  18170. {
  18171. name: "Giga Macro",
  18172. height: math.unit(440, "miles")
  18173. },
  18174. {
  18175. name: "Tera Macro",
  18176. height: math.unit(8700, "miles")
  18177. },
  18178. {
  18179. name: "Planetary Macro",
  18180. height: math.unit(32700, "miles")
  18181. },
  18182. {
  18183. name: "Solar Macro",
  18184. height: math.unit(550000, "miles")
  18185. },
  18186. {
  18187. name: "Celestial Macro",
  18188. height: math.unit(2.5, "AU")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(4 + 5 / 12, "feet"),
  18197. weight: math.unit(90, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/cappu/front.svg",
  18201. extra: 1247 / 1152,
  18202. bottom: 0.012
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(4 + 5 / 12, "feet"),
  18210. default: true
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18216. {
  18217. frontDressed: {
  18218. height: math.unit(70, "cm"),
  18219. weight: math.unit(6, "kg"),
  18220. name: "Front (Dressed)",
  18221. image: {
  18222. source: "./media/characters/sebi/front-dressed.svg",
  18223. extra: 713.5 / 686.5,
  18224. bottom: 0.003
  18225. }
  18226. },
  18227. front: {
  18228. height: math.unit(70, "cm"),
  18229. weight: math.unit(5, "kg"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/sebi/front.svg",
  18233. extra: 713.5 / 686.5,
  18234. bottom: 0.003
  18235. }
  18236. }
  18237. },
  18238. [
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(70, "cm"),
  18242. default: true
  18243. },
  18244. {
  18245. name: "Macro",
  18246. height: math.unit(8, "meters")
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(6, "feet"),
  18255. weight: math.unit(150, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/typhek/front.svg",
  18259. extra: 1948 / 1929,
  18260. bottom: 0.025
  18261. }
  18262. },
  18263. side: {
  18264. height: math.unit(6, "feet"),
  18265. weight: math.unit(150, "lb"),
  18266. name: "Side",
  18267. image: {
  18268. source: "./media/characters/typhek/side.svg",
  18269. extra: 2034 / 2010,
  18270. bottom: 0.003
  18271. }
  18272. },
  18273. back: {
  18274. height: math.unit(6, "feet"),
  18275. weight: math.unit(150, "lb"),
  18276. name: "Back",
  18277. image: {
  18278. source: "./media/characters/typhek/back.svg",
  18279. extra: 2005 / 1978,
  18280. bottom: 0.004
  18281. }
  18282. },
  18283. palm: {
  18284. height: math.unit(1.2, "feet"),
  18285. name: "Palm",
  18286. image: {
  18287. source: "./media/characters/typhek/palm.svg"
  18288. }
  18289. },
  18290. fist: {
  18291. height: math.unit(1.1, "feet"),
  18292. name: "Fist",
  18293. image: {
  18294. source: "./media/characters/typhek/fist.svg"
  18295. }
  18296. },
  18297. foot: {
  18298. height: math.unit(1.57, "feet"),
  18299. name: "Foot",
  18300. image: {
  18301. source: "./media/characters/typhek/foot.svg"
  18302. }
  18303. },
  18304. sole: {
  18305. height: math.unit(2.05, "feet"),
  18306. name: "Sole",
  18307. image: {
  18308. source: "./media/characters/typhek/sole.svg"
  18309. }
  18310. },
  18311. },
  18312. [
  18313. {
  18314. name: "Macro",
  18315. height: math.unit(40, "stories"),
  18316. default: true
  18317. },
  18318. {
  18319. name: "Megamacro",
  18320. height: math.unit(1, "mile")
  18321. },
  18322. {
  18323. name: "Gigamacro",
  18324. height: math.unit(4000, "solarradii")
  18325. },
  18326. {
  18327. name: "Universal",
  18328. height: math.unit(1.1, "universes")
  18329. }
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18334. {
  18335. side: {
  18336. height: math.unit(5 + 7 / 12, "feet"),
  18337. weight: math.unit(150, "lb"),
  18338. name: "Side",
  18339. image: {
  18340. source: "./media/characters/kassy/side.svg",
  18341. extra: 1280 / 1225,
  18342. bottom: 0.002
  18343. }
  18344. },
  18345. front: {
  18346. height: math.unit(5 + 7 / 12, "feet"),
  18347. weight: math.unit(150, "lb"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/kassy/front.svg",
  18351. extra: 1280 / 1225,
  18352. bottom: 0.025
  18353. }
  18354. },
  18355. back: {
  18356. height: math.unit(5 + 7 / 12, "feet"),
  18357. weight: math.unit(150, "lb"),
  18358. name: "Back",
  18359. image: {
  18360. source: "./media/characters/kassy/back.svg",
  18361. extra: 1280 / 1225,
  18362. bottom: 0.002
  18363. }
  18364. },
  18365. foot: {
  18366. height: math.unit(1.266, "feet"),
  18367. name: "Foot",
  18368. image: {
  18369. source: "./media/characters/kassy/foot.svg"
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(5 + 7 / 12, "feet")
  18377. },
  18378. {
  18379. name: "Macro",
  18380. height: math.unit(137, "feet"),
  18381. default: true
  18382. },
  18383. {
  18384. name: "Megamacro",
  18385. height: math.unit(1, "mile")
  18386. },
  18387. ]
  18388. ))
  18389. characterMakers.push(() => makeCharacter(
  18390. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18391. {
  18392. front: {
  18393. height: math.unit(6 + 1 / 12, "feet"),
  18394. weight: math.unit(200, "lb"),
  18395. name: "Front",
  18396. image: {
  18397. source: "./media/characters/neil/front.svg",
  18398. extra: 1326 / 1250,
  18399. bottom: 0.023
  18400. }
  18401. },
  18402. },
  18403. [
  18404. {
  18405. name: "Normal",
  18406. height: math.unit(6 + 1 / 12, "feet"),
  18407. default: true
  18408. },
  18409. {
  18410. name: "Macro",
  18411. height: math.unit(200, "feet")
  18412. },
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18417. {
  18418. front: {
  18419. height: math.unit(5 + 9 / 12, "feet"),
  18420. weight: math.unit(190, "lb"),
  18421. name: "Front",
  18422. image: {
  18423. source: "./media/characters/atticus/front.svg",
  18424. extra: 2934 / 2785,
  18425. bottom: 0.025
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(5 + 9 / 12, "feet"),
  18433. default: true
  18434. },
  18435. {
  18436. name: "Macro",
  18437. height: math.unit(180, "feet")
  18438. },
  18439. ]
  18440. ))
  18441. characterMakers.push(() => makeCharacter(
  18442. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18443. {
  18444. side: {
  18445. height: math.unit(9, "feet"),
  18446. weight: math.unit(650, "lb"),
  18447. name: "Side",
  18448. image: {
  18449. source: "./media/characters/milo/side.svg",
  18450. extra: 2644 / 2310,
  18451. bottom: 0.032
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(9, "feet"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Macro",
  18463. height: math.unit(300, "feet")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18469. {
  18470. side: {
  18471. height: math.unit(8, "meters"),
  18472. weight: math.unit(90000, "kg"),
  18473. name: "Side",
  18474. image: {
  18475. source: "./media/characters/ijzer/side.svg",
  18476. extra: 2756 / 1600,
  18477. bottom: 0.01
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Small",
  18484. height: math.unit(3, "meters")
  18485. },
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(8, "meters"),
  18489. default: true
  18490. },
  18491. {
  18492. name: "Normal+",
  18493. height: math.unit(10, "meters")
  18494. },
  18495. {
  18496. name: "Bigger",
  18497. height: math.unit(24, "meters")
  18498. },
  18499. {
  18500. name: "Huge",
  18501. height: math.unit(80, "meters")
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(6 + 2 / 12, "feet"),
  18510. weight: math.unit(153, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/luca-cervicum/front.svg",
  18514. extra: 370 / 327,
  18515. bottom: 0.015
  18516. }
  18517. },
  18518. back: {
  18519. height: math.unit(6 + 2 / 12, "feet"),
  18520. weight: math.unit(153, "lb"),
  18521. name: "Back",
  18522. image: {
  18523. source: "./media/characters/luca-cervicum/back.svg",
  18524. extra: 367 / 333,
  18525. bottom: 0.005
  18526. }
  18527. },
  18528. frontGear: {
  18529. height: math.unit(6 + 2 / 12, "feet"),
  18530. weight: math.unit(173, "lb"),
  18531. name: "Front (Gear)",
  18532. image: {
  18533. source: "./media/characters/luca-cervicum/front-gear.svg",
  18534. extra: 377 / 333,
  18535. bottom: 0.006
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(6 + 2 / 12, "feet"),
  18543. default: true
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18549. {
  18550. front: {
  18551. height: math.unit(6 + 1 / 12, "feet"),
  18552. weight: math.unit(304, "lb"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/oliver/front.svg",
  18556. extra: 157 / 143,
  18557. bottom: 0.08
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(6 + 1 / 12, "feet"),
  18565. default: true
  18566. },
  18567. ]
  18568. ))
  18569. characterMakers.push(() => makeCharacter(
  18570. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18571. {
  18572. front: {
  18573. height: math.unit(5 + 7 / 12, "feet"),
  18574. weight: math.unit(140, "lb"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/shane/front.svg",
  18578. extra: 304 / 289,
  18579. bottom: 0.005
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(5 + 7 / 12, "feet"),
  18587. default: true
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(5 + 9 / 12, "feet"),
  18596. weight: math.unit(178, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/shin/front.svg",
  18600. extra: 159 / 151,
  18601. bottom: 0.015
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(5 + 9 / 12, "feet"),
  18609. default: true
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(5 + 10 / 12, "feet"),
  18618. weight: math.unit(168, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/xerxes/front.svg",
  18622. extra: 282 / 260,
  18623. bottom: 0.045
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(5 + 10 / 12, "feet"),
  18631. default: true
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18637. {
  18638. front: {
  18639. height: math.unit(6 + 7 / 12, "feet"),
  18640. weight: math.unit(208, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/chaska/front.svg",
  18644. extra: 332 / 319,
  18645. bottom: 0.015
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(6 + 7 / 12, "feet"),
  18653. default: true
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18659. {
  18660. front: {
  18661. height: math.unit(5 + 8 / 12, "feet"),
  18662. weight: math.unit(208, "lb"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/enuk/front.svg",
  18666. extra: 437 / 406,
  18667. bottom: 0.02
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(5 + 8 / 12, "feet"),
  18675. default: true
  18676. },
  18677. ]
  18678. ))
  18679. characterMakers.push(() => makeCharacter(
  18680. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18681. {
  18682. front: {
  18683. height: math.unit(5 + 10 / 12, "feet"),
  18684. weight: math.unit(252, "lb"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/bruun/front.svg",
  18688. extra: 197 / 187,
  18689. bottom: 0.012
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(5 + 10 / 12, "feet"),
  18697. default: true
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(6 + 10 / 12, "feet"),
  18706. weight: math.unit(255, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/alexeev/front.svg",
  18710. extra: 213 / 200,
  18711. bottom: 0.05
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(6 + 10 / 12, "feet"),
  18719. default: true
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18725. {
  18726. front: {
  18727. height: math.unit(2 + 8 / 12, "feet"),
  18728. weight: math.unit(22, "lb"),
  18729. name: "Front",
  18730. image: {
  18731. source: "./media/characters/evelyn/front.svg",
  18732. extra: 208 / 180
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Normal",
  18739. height: math.unit(2 + 8 / 12, "feet"),
  18740. default: true
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18746. {
  18747. front: {
  18748. height: math.unit(5 + 9 / 12, "feet"),
  18749. weight: math.unit(139, "lb"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/inca/front.svg",
  18753. extra: 294 / 291,
  18754. bottom: 0.03
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Normal",
  18761. height: math.unit(5 + 9 / 12, "feet"),
  18762. default: true
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18768. {
  18769. front: {
  18770. height: math.unit(5 + 1 / 12, "feet"),
  18771. weight: math.unit(84, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/magdalene/front.svg",
  18775. extra: 293 / 273
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(5 + 1 / 12, "feet"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(6 + 3 / 12, "feet"),
  18792. weight: math.unit(185, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/mera/front.svg",
  18796. extra: 291 / 277,
  18797. bottom: 0.03
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(6 + 3 / 12, "feet"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(6 + 7 / 12, "feet"),
  18814. weight: math.unit(160, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/ceres/front.svg",
  18818. extra: 1023 / 950,
  18819. bottom: 0.027
  18820. }
  18821. },
  18822. back: {
  18823. height: math.unit(6 + 7 / 12, "feet"),
  18824. weight: math.unit(160, "lb"),
  18825. name: "Back",
  18826. image: {
  18827. source: "./media/characters/ceres/back.svg",
  18828. extra: 1023 / 950
  18829. }
  18830. },
  18831. },
  18832. [
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(6 + 7 / 12, "feet"),
  18836. default: true
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18842. {
  18843. front: {
  18844. height: math.unit(5 + 10 / 12, "feet"),
  18845. weight: math.unit(150, "lb"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/kris/front.svg",
  18849. extra: 885 / 803,
  18850. bottom: 0.03
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Normal",
  18857. height: math.unit(5 + 10 / 12, "feet"),
  18858. default: true
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(7, "feet"),
  18867. weight: math.unit(120, "kg"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/taluthus/front.svg",
  18871. extra: 903 / 833,
  18872. bottom: 0.015
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(7, "feet"),
  18880. default: true
  18881. },
  18882. {
  18883. name: "Macro",
  18884. height: math.unit(300, "feet")
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(5 + 9 / 12, "feet"),
  18893. weight: math.unit(145, "lb"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/dawn/front.svg",
  18897. extra: 2094 / 2016,
  18898. bottom: 0.025
  18899. }
  18900. },
  18901. back: {
  18902. height: math.unit(5 + 9 / 12, "feet"),
  18903. weight: math.unit(160, "lb"),
  18904. name: "Back",
  18905. image: {
  18906. source: "./media/characters/dawn/back.svg",
  18907. extra: 2112 / 2080,
  18908. bottom: 0.005
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Normal",
  18915. height: math.unit(6 + 7 / 12, "feet"),
  18916. default: true
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18922. {
  18923. anthro: {
  18924. height: math.unit(8 + 3 / 12, "feet"),
  18925. weight: math.unit(450, "lb"),
  18926. name: "Anthro",
  18927. image: {
  18928. source: "./media/characters/arador/anthro.svg",
  18929. extra: 1835 / 1718,
  18930. bottom: 0.025
  18931. }
  18932. },
  18933. feral: {
  18934. height: math.unit(4, "feet"),
  18935. weight: math.unit(200, "lb"),
  18936. name: "Feral",
  18937. image: {
  18938. source: "./media/characters/arador/feral.svg",
  18939. extra: 1683 / 1514,
  18940. bottom: 0.07
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(8 + 3 / 12, "feet")
  18948. },
  18949. {
  18950. name: "Macro",
  18951. height: math.unit(82.5, "feet"),
  18952. default: true
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(5 + 10 / 12, "feet"),
  18961. weight: math.unit(125, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/dharsi/front.svg",
  18965. extra: 716 / 630,
  18966. bottom: 0.035
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Nano",
  18973. height: math.unit(100, "nm")
  18974. },
  18975. {
  18976. name: "Micro",
  18977. height: math.unit(2, "inches")
  18978. },
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(5 + 10 / 12, "feet"),
  18982. default: true
  18983. },
  18984. {
  18985. name: "Macro",
  18986. height: math.unit(1000, "feet")
  18987. },
  18988. {
  18989. name: "Megamacro",
  18990. height: math.unit(10, "miles")
  18991. },
  18992. {
  18993. name: "Gigamacro",
  18994. height: math.unit(3000, "miles")
  18995. },
  18996. {
  18997. name: "Teramacro",
  18998. height: math.unit(500000, "miles")
  18999. },
  19000. {
  19001. name: "Teramacro+",
  19002. height: math.unit(30, "galaxies")
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(6, "feet"),
  19011. weight: math.unit(150, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/deathy/front.svg",
  19015. extra: 1552 / 1463,
  19016. bottom: 0.025
  19017. }
  19018. },
  19019. side: {
  19020. height: math.unit(6, "feet"),
  19021. weight: math.unit(150, "lb"),
  19022. name: "Side",
  19023. image: {
  19024. source: "./media/characters/deathy/side.svg",
  19025. extra: 1604 / 1455,
  19026. bottom: 0.025
  19027. }
  19028. },
  19029. back: {
  19030. height: math.unit(6, "feet"),
  19031. weight: math.unit(150, "lb"),
  19032. name: "Back",
  19033. image: {
  19034. source: "./media/characters/deathy/back.svg",
  19035. extra: 1580 / 1463,
  19036. bottom: 0.005
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Micro",
  19043. height: math.unit(5, "millimeters")
  19044. },
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(6 + 5 / 12, "feet"),
  19048. default: true
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19054. {
  19055. front: {
  19056. height: math.unit(16, "feet"),
  19057. weight: math.unit(4000, "lb"),
  19058. name: "Front",
  19059. image: {
  19060. source: "./media/characters/juniper/front.svg",
  19061. bottom: 0.04
  19062. }
  19063. },
  19064. },
  19065. [
  19066. {
  19067. name: "Normal",
  19068. height: math.unit(16, "feet"),
  19069. default: true
  19070. },
  19071. ]
  19072. ))
  19073. characterMakers.push(() => makeCharacter(
  19074. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19075. {
  19076. front: {
  19077. height: math.unit(6, "feet"),
  19078. weight: math.unit(150, "lb"),
  19079. name: "Front",
  19080. image: {
  19081. source: "./media/characters/hipster/front.svg",
  19082. extra: 1312 / 1209,
  19083. bottom: 0.025
  19084. }
  19085. },
  19086. back: {
  19087. height: math.unit(6, "feet"),
  19088. weight: math.unit(150, "lb"),
  19089. name: "Back",
  19090. image: {
  19091. source: "./media/characters/hipster/back.svg",
  19092. extra: 1281 / 1196,
  19093. bottom: 0.01
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Micro",
  19100. height: math.unit(1, "mm")
  19101. },
  19102. {
  19103. name: "Normal",
  19104. height: math.unit(4, "inches"),
  19105. default: true
  19106. },
  19107. {
  19108. name: "Macro",
  19109. height: math.unit(500, "feet")
  19110. },
  19111. {
  19112. name: "Megamacro",
  19113. height: math.unit(1000, "miles")
  19114. },
  19115. ]
  19116. ))
  19117. characterMakers.push(() => makeCharacter(
  19118. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19119. {
  19120. front: {
  19121. height: math.unit(6, "feet"),
  19122. weight: math.unit(150, "lb"),
  19123. name: "Front",
  19124. image: {
  19125. source: "./media/characters/tendirmuldr/front.svg",
  19126. extra: 1878 / 1772,
  19127. bottom: 0.015
  19128. }
  19129. },
  19130. },
  19131. [
  19132. {
  19133. name: "Megamacro",
  19134. height: math.unit(1500, "miles"),
  19135. default: true
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19141. {
  19142. front: {
  19143. height: math.unit(14, "feet"),
  19144. weight: math.unit(12000, "lb"),
  19145. name: "Front",
  19146. image: {
  19147. source: "./media/characters/mort/front.svg",
  19148. extra: 365 / 318,
  19149. bottom: 0.01
  19150. }
  19151. },
  19152. side: {
  19153. height: math.unit(14, "feet"),
  19154. weight: math.unit(12000, "lb"),
  19155. name: "Side",
  19156. image: {
  19157. source: "./media/characters/mort/side.svg",
  19158. extra: 365 / 318,
  19159. bottom: 0.052
  19160. },
  19161. default: true
  19162. },
  19163. back: {
  19164. height: math.unit(14, "feet"),
  19165. weight: math.unit(12000, "lb"),
  19166. name: "Back",
  19167. image: {
  19168. source: "./media/characters/mort/back.svg",
  19169. extra: 371 / 332,
  19170. bottom: 0.18
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(14, "feet"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19184. {
  19185. front: {
  19186. height: math.unit(8, "feet"),
  19187. weight: math.unit(1, "ton"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/lycoa/front.svg",
  19191. extra: 1875 / 1789,
  19192. bottom: 0.022
  19193. }
  19194. },
  19195. back: {
  19196. height: math.unit(8, "feet"),
  19197. weight: math.unit(1, "ton"),
  19198. name: "Back",
  19199. image: {
  19200. source: "./media/characters/lycoa/back.svg",
  19201. extra: 1835 / 1781,
  19202. bottom: 0.03
  19203. }
  19204. },
  19205. head: {
  19206. height: math.unit(2.1, "feet"),
  19207. name: "Head",
  19208. image: {
  19209. source: "./media/characters/lycoa/head.svg"
  19210. }
  19211. },
  19212. tailmaw: {
  19213. height: math.unit(1.9, "feet"),
  19214. name: "Tailmaw",
  19215. image: {
  19216. source: "./media/characters/lycoa/tailmaw.svg"
  19217. }
  19218. },
  19219. tentacles: {
  19220. height: math.unit(2.1, "feet"),
  19221. name: "Tentacles",
  19222. image: {
  19223. source: "./media/characters/lycoa/tentacles.svg"
  19224. }
  19225. },
  19226. dick: {
  19227. height: math.unit(1.73, "feet"),
  19228. name: "Dick",
  19229. image: {
  19230. source: "./media/characters/lycoa/dick.svg"
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(8, "feet"),
  19238. default: true
  19239. },
  19240. {
  19241. name: "Macro",
  19242. height: math.unit(30, "feet")
  19243. },
  19244. ]
  19245. ))
  19246. characterMakers.push(() => makeCharacter(
  19247. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19248. {
  19249. front: {
  19250. height: math.unit(4 + 2 / 12, "feet"),
  19251. weight: math.unit(70, "lb"),
  19252. name: "Front",
  19253. image: {
  19254. source: "./media/characters/naldara/front.svg",
  19255. extra: 841 / 720,
  19256. bottom: 0.04
  19257. }
  19258. },
  19259. naga: {
  19260. height: math.unit(23, "feet"),
  19261. weight: math.unit(15000, "kg"),
  19262. name: "Naga",
  19263. image: {
  19264. source: "./media/characters/naldara/naga.svg",
  19265. extra: 3290/2959,
  19266. bottom: 124/3432
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(4 + 2 / 12, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19280. {
  19281. front: {
  19282. height: math.unit(13 + 7 / 12, "feet"),
  19283. weight: math.unit(1500, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/briar/front.svg",
  19287. extra: 626 / 596,
  19288. bottom: 0.08
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(13 + 7 / 12, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19302. {
  19303. side: {
  19304. height: math.unit(10, "feet"),
  19305. weight: math.unit(500, "lb"),
  19306. name: "Side",
  19307. image: {
  19308. source: "./media/characters/vanguard/side.svg",
  19309. extra: 502 / 425,
  19310. bottom: 0.087
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(10, "feet"),
  19318. default: true
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(7.5, "feet"),
  19327. weight: math.unit(2, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/artemis/front.svg",
  19331. extra: 1192 / 1075,
  19332. bottom: 0.07
  19333. }
  19334. },
  19335. frontNsfw: {
  19336. height: math.unit(7.5, "feet"),
  19337. weight: math.unit(2, "lb"),
  19338. name: "Front (NSFW)",
  19339. image: {
  19340. source: "./media/characters/artemis/front-nsfw.svg",
  19341. extra: 1192 / 1075,
  19342. bottom: 0.07
  19343. }
  19344. },
  19345. frontNsfwer: {
  19346. height: math.unit(7.5, "feet"),
  19347. weight: math.unit(2, "lb"),
  19348. name: "Front (NSFW-er)",
  19349. image: {
  19350. source: "./media/characters/artemis/front-nsfwer.svg",
  19351. extra: 1192 / 1075,
  19352. bottom: 0.07
  19353. }
  19354. },
  19355. side: {
  19356. height: math.unit(7.5, "feet"),
  19357. weight: math.unit(2, "lb"),
  19358. name: "Side",
  19359. image: {
  19360. source: "./media/characters/artemis/side.svg",
  19361. extra: 1192 / 1075,
  19362. bottom: 0.07
  19363. }
  19364. },
  19365. sideNsfw: {
  19366. height: math.unit(7.5, "feet"),
  19367. weight: math.unit(2, "lb"),
  19368. name: "Side (NSFW)",
  19369. image: {
  19370. source: "./media/characters/artemis/side-nsfw.svg",
  19371. extra: 1192 / 1075,
  19372. bottom: 0.07
  19373. }
  19374. },
  19375. sideNsfwer: {
  19376. height: math.unit(7.5, "feet"),
  19377. weight: math.unit(2, "lb"),
  19378. name: "Side (NSFW-er)",
  19379. image: {
  19380. source: "./media/characters/artemis/side-nsfwer.svg",
  19381. extra: 1192 / 1075,
  19382. bottom: 0.07
  19383. }
  19384. },
  19385. maw: {
  19386. height: math.unit(1.1, "feet"),
  19387. name: "Maw",
  19388. image: {
  19389. source: "./media/characters/artemis/maw.svg"
  19390. }
  19391. },
  19392. stomach: {
  19393. height: math.unit(0.95, "feet"),
  19394. name: "Stomach",
  19395. image: {
  19396. source: "./media/characters/artemis/stomach.svg"
  19397. }
  19398. },
  19399. dickCanine: {
  19400. height: math.unit(1, "feet"),
  19401. name: "Dick (Canine)",
  19402. image: {
  19403. source: "./media/characters/artemis/dick-canine.svg"
  19404. }
  19405. },
  19406. dickEquine: {
  19407. height: math.unit(0.85, "feet"),
  19408. name: "Dick (Equine)",
  19409. image: {
  19410. source: "./media/characters/artemis/dick-equine.svg"
  19411. }
  19412. },
  19413. dickExotic: {
  19414. height: math.unit(0.85, "feet"),
  19415. name: "Dick (Exotic)",
  19416. image: {
  19417. source: "./media/characters/artemis/dick-exotic.svg"
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(7.5, "feet"),
  19425. default: true
  19426. },
  19427. {
  19428. name: "Enlarged",
  19429. height: math.unit(12, "feet")
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19435. {
  19436. front: {
  19437. height: math.unit(5 + 3 / 12, "feet"),
  19438. weight: math.unit(160, "lb"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/kira/front.svg",
  19442. extra: 906 / 786,
  19443. bottom: 0.01
  19444. }
  19445. },
  19446. back: {
  19447. height: math.unit(5 + 3 / 12, "feet"),
  19448. weight: math.unit(160, "lb"),
  19449. name: "Back",
  19450. image: {
  19451. source: "./media/characters/kira/back.svg",
  19452. extra: 882 / 757,
  19453. bottom: 0.005
  19454. }
  19455. },
  19456. frontDressed: {
  19457. height: math.unit(5 + 3 / 12, "feet"),
  19458. weight: math.unit(160, "lb"),
  19459. name: "Front (Dressed)",
  19460. image: {
  19461. source: "./media/characters/kira/front-dressed.svg",
  19462. extra: 906 / 786,
  19463. bottom: 0.01
  19464. }
  19465. },
  19466. beans: {
  19467. height: math.unit(0.92, "feet"),
  19468. name: "Beans",
  19469. image: {
  19470. source: "./media/characters/kira/beans.svg"
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Normal",
  19477. height: math.unit(5 + 3 / 12, "feet"),
  19478. default: true
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19484. {
  19485. front: {
  19486. height: math.unit(5 + 4 / 12, "feet"),
  19487. weight: math.unit(145, "lb"),
  19488. name: "Front",
  19489. image: {
  19490. source: "./media/characters/scramble/front.svg",
  19491. extra: 763 / 727,
  19492. bottom: 0.05
  19493. }
  19494. },
  19495. back: {
  19496. height: math.unit(5 + 4 / 12, "feet"),
  19497. weight: math.unit(145, "lb"),
  19498. name: "Back",
  19499. image: {
  19500. source: "./media/characters/scramble/back.svg",
  19501. extra: 826 / 737,
  19502. bottom: 0.002
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(5 + 4 / 12, "feet"),
  19510. default: true
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19516. {
  19517. side: {
  19518. height: math.unit(6 + 2 / 12, "feet"),
  19519. weight: math.unit(190, "lb"),
  19520. name: "Side",
  19521. image: {
  19522. source: "./media/characters/biscuit/side.svg",
  19523. extra: 858 / 791,
  19524. bottom: 0.044
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(6 + 2 / 12, "feet"),
  19532. default: true
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19538. {
  19539. front: {
  19540. height: math.unit(5 + 2 / 12, "feet"),
  19541. weight: math.unit(120, "lb"),
  19542. name: "Front",
  19543. image: {
  19544. source: "./media/characters/poffin/front.svg",
  19545. extra: 786 / 680,
  19546. bottom: 0.005
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Normal",
  19553. height: math.unit(5 + 2 / 12, "feet"),
  19554. default: true
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19560. {
  19561. front: {
  19562. height: math.unit(6 + 3 / 12, "feet"),
  19563. weight: math.unit(519, "lb"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/dhari/front.svg",
  19567. extra: 1048 / 946,
  19568. bottom: 0.015
  19569. }
  19570. },
  19571. back: {
  19572. height: math.unit(6 + 3 / 12, "feet"),
  19573. weight: math.unit(519, "lb"),
  19574. name: "Back",
  19575. image: {
  19576. source: "./media/characters/dhari/back.svg",
  19577. extra: 1048 / 931,
  19578. bottom: 0.005
  19579. }
  19580. },
  19581. frontDressed: {
  19582. height: math.unit(6 + 3 / 12, "feet"),
  19583. weight: math.unit(519, "lb"),
  19584. name: "Front (Dressed)",
  19585. image: {
  19586. source: "./media/characters/dhari/front-dressed.svg",
  19587. extra: 1713 / 1546,
  19588. bottom: 0.02
  19589. }
  19590. },
  19591. backDressed: {
  19592. height: math.unit(6 + 3 / 12, "feet"),
  19593. weight: math.unit(519, "lb"),
  19594. name: "Back (Dressed)",
  19595. image: {
  19596. source: "./media/characters/dhari/back-dressed.svg",
  19597. extra: 1699 / 1537,
  19598. bottom: 0.01
  19599. }
  19600. },
  19601. maw: {
  19602. height: math.unit(0.95, "feet"),
  19603. name: "Maw",
  19604. image: {
  19605. source: "./media/characters/dhari/maw.svg"
  19606. }
  19607. },
  19608. wereFront: {
  19609. height: math.unit(12 + 8 / 12, "feet"),
  19610. weight: math.unit(4000, "lb"),
  19611. name: "Front (Were)",
  19612. image: {
  19613. source: "./media/characters/dhari/were-front.svg",
  19614. extra: 1065 / 969,
  19615. bottom: 0.015
  19616. }
  19617. },
  19618. wereBack: {
  19619. height: math.unit(12 + 8 / 12, "feet"),
  19620. weight: math.unit(4000, "lb"),
  19621. name: "Back (Were)",
  19622. image: {
  19623. source: "./media/characters/dhari/were-back.svg",
  19624. extra: 1065 / 969,
  19625. bottom: 0.012
  19626. }
  19627. },
  19628. wereMaw: {
  19629. height: math.unit(0.625, "meters"),
  19630. name: "Maw (Were)",
  19631. image: {
  19632. source: "./media/characters/dhari/were-maw.svg"
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(6 + 3 / 12, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19646. {
  19647. anthro: {
  19648. height: math.unit(5 + 7 / 12, "feet"),
  19649. weight: math.unit(175, "lb"),
  19650. name: "Anthro",
  19651. image: {
  19652. source: "./media/characters/rena-dyne/anthro.svg",
  19653. extra: 1849 / 1785,
  19654. bottom: 0.005
  19655. }
  19656. },
  19657. taur: {
  19658. height: math.unit(15 + 6 / 12, "feet"),
  19659. weight: math.unit(8000, "lb"),
  19660. name: "Taur",
  19661. image: {
  19662. source: "./media/characters/rena-dyne/taur.svg",
  19663. extra: 2315 / 2234,
  19664. bottom: 0.033
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(5 + 7 / 12, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(8, "feet"),
  19681. weight: math.unit(600, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/weremeep/front.svg",
  19685. extra: 967 / 862,
  19686. bottom: 0.01
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(8, "feet"),
  19694. default: true
  19695. },
  19696. {
  19697. name: "Lorg",
  19698. height: math.unit(12, "feet")
  19699. },
  19700. {
  19701. name: "Oh Lawd She Comin'",
  19702. height: math.unit(20, "feet")
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19708. {
  19709. front: {
  19710. height: math.unit(4, "feet"),
  19711. weight: math.unit(90, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/reza/front.svg",
  19715. extra: 1183 / 1111,
  19716. bottom: 0.017
  19717. }
  19718. },
  19719. back: {
  19720. height: math.unit(4, "feet"),
  19721. weight: math.unit(90, "lb"),
  19722. name: "Back",
  19723. image: {
  19724. source: "./media/characters/reza/back.svg",
  19725. extra: 1183 / 1111,
  19726. bottom: 0.01
  19727. }
  19728. },
  19729. drake: {
  19730. height: math.unit(30, "feet"),
  19731. weight: math.unit(246960, "lb"),
  19732. name: "Drake",
  19733. image: {
  19734. source: "./media/characters/reza/drake.svg",
  19735. extra: 2350 / 2024,
  19736. bottom: 60.7 / 2403
  19737. }
  19738. },
  19739. },
  19740. [
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(4, "feet"),
  19744. default: true
  19745. },
  19746. ]
  19747. ))
  19748. characterMakers.push(() => makeCharacter(
  19749. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19750. {
  19751. side: {
  19752. height: math.unit(15, "feet"),
  19753. weight: math.unit(14, "tons"),
  19754. name: "Side",
  19755. image: {
  19756. source: "./media/characters/athea/side.svg",
  19757. extra: 960 / 540,
  19758. bottom: 0.003
  19759. }
  19760. },
  19761. sitting: {
  19762. height: math.unit(6 * 2.85, "feet"),
  19763. weight: math.unit(14, "tons"),
  19764. name: "Sitting",
  19765. image: {
  19766. source: "./media/characters/athea/sitting.svg",
  19767. extra: 621 / 581,
  19768. bottom: 0.075
  19769. }
  19770. },
  19771. maw: {
  19772. height: math.unit(7.59498031496063, "feet"),
  19773. name: "Maw",
  19774. image: {
  19775. source: "./media/characters/athea/maw.svg"
  19776. }
  19777. },
  19778. },
  19779. [
  19780. {
  19781. name: "Lap Cat",
  19782. height: math.unit(2.5, "feet")
  19783. },
  19784. {
  19785. name: "Minimacro",
  19786. height: math.unit(15, "feet"),
  19787. default: true
  19788. },
  19789. {
  19790. name: "Macro",
  19791. height: math.unit(120, "feet")
  19792. },
  19793. {
  19794. name: "Macro+",
  19795. height: math.unit(640, "feet")
  19796. },
  19797. {
  19798. name: "Colossus",
  19799. height: math.unit(2.2, "miles")
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19805. {
  19806. front: {
  19807. height: math.unit(8 + 8 / 12, "feet"),
  19808. weight: math.unit(130, "kg"),
  19809. name: "Front",
  19810. image: {
  19811. source: "./media/characters/seroko/front.svg",
  19812. extra: 1385 / 1280,
  19813. bottom: 0.025
  19814. }
  19815. },
  19816. back: {
  19817. height: math.unit(8 + 8 / 12, "feet"),
  19818. weight: math.unit(130, "kg"),
  19819. name: "Back",
  19820. image: {
  19821. source: "./media/characters/seroko/back.svg",
  19822. extra: 1369 / 1238,
  19823. bottom: 0.018
  19824. }
  19825. },
  19826. frontDressed: {
  19827. height: math.unit(8 + 8 / 12, "feet"),
  19828. weight: math.unit(130, "kg"),
  19829. name: "Front (Dressed)",
  19830. image: {
  19831. source: "./media/characters/seroko/front-dressed.svg",
  19832. extra: 1366 / 1275,
  19833. bottom: 0.03
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(8 + 8 / 12, "feet"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19847. {
  19848. front: {
  19849. height: math.unit(5.5, "feet"),
  19850. weight: math.unit(160, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/quatzi/front.svg",
  19854. extra: 2346 / 2242,
  19855. bottom: 0.015
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(5.5, "feet"),
  19863. default: true
  19864. },
  19865. {
  19866. name: "Big",
  19867. height: math.unit(7.7, "feet")
  19868. },
  19869. ]
  19870. ))
  19871. characterMakers.push(() => makeCharacter(
  19872. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19873. {
  19874. front: {
  19875. height: math.unit(5 + 11 / 12, "feet"),
  19876. weight: math.unit(180, "lb"),
  19877. name: "Front",
  19878. image: {
  19879. source: "./media/characters/sen/front.svg",
  19880. extra: 1321 / 1254,
  19881. bottom: 0.015
  19882. }
  19883. },
  19884. side: {
  19885. height: math.unit(5 + 11 / 12, "feet"),
  19886. weight: math.unit(180, "lb"),
  19887. name: "Side",
  19888. image: {
  19889. source: "./media/characters/sen/side.svg",
  19890. extra: 1321 / 1254,
  19891. bottom: 0.007
  19892. }
  19893. },
  19894. back: {
  19895. height: math.unit(5 + 11 / 12, "feet"),
  19896. weight: math.unit(180, "lb"),
  19897. name: "Back",
  19898. image: {
  19899. source: "./media/characters/sen/back.svg",
  19900. extra: 1321 / 1254
  19901. }
  19902. },
  19903. },
  19904. [
  19905. {
  19906. name: "Normal",
  19907. height: math.unit(5 + 11 / 12, "feet"),
  19908. default: true
  19909. },
  19910. ]
  19911. ))
  19912. characterMakers.push(() => makeCharacter(
  19913. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19914. {
  19915. front: {
  19916. height: math.unit(166.6, "cm"),
  19917. weight: math.unit(66.6, "kg"),
  19918. name: "Front",
  19919. image: {
  19920. source: "./media/characters/fruity/front.svg",
  19921. extra: 1510 / 1386,
  19922. bottom: 0.04
  19923. }
  19924. },
  19925. back: {
  19926. height: math.unit(166.6, "cm"),
  19927. weight: math.unit(66.6, "lb"),
  19928. name: "Back",
  19929. image: {
  19930. source: "./media/characters/fruity/back.svg",
  19931. extra: 1563 / 1435,
  19932. bottom: 0.005
  19933. }
  19934. },
  19935. },
  19936. [
  19937. {
  19938. name: "Normal",
  19939. height: math.unit(166.6, "cm"),
  19940. default: true
  19941. },
  19942. {
  19943. name: "Demonic",
  19944. height: math.unit(166.6, "feet")
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19950. {
  19951. side: {
  19952. height: math.unit(10, "feet"),
  19953. weight: math.unit(500, "lb"),
  19954. name: "Side",
  19955. image: {
  19956. source: "./media/characters/zost/side.svg",
  19957. extra: 966 / 880,
  19958. bottom: 0.075
  19959. }
  19960. },
  19961. mawFront: {
  19962. height: math.unit(1.08, "meters"),
  19963. name: "Maw (Front)",
  19964. image: {
  19965. source: "./media/characters/zost/maw-front.svg"
  19966. }
  19967. },
  19968. mawSide: {
  19969. height: math.unit(2.66, "feet"),
  19970. name: "Maw (Side)",
  19971. image: {
  19972. source: "./media/characters/zost/maw-side.svg"
  19973. }
  19974. },
  19975. },
  19976. [
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(10, "feet"),
  19980. default: true
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19986. {
  19987. front: {
  19988. height: math.unit(5 + 4 / 12, "feet"),
  19989. weight: math.unit(120, "lb"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/luci/front.svg",
  19993. extra: 1985 / 1884,
  19994. bottom: 0.04
  19995. }
  19996. },
  19997. back: {
  19998. height: math.unit(5 + 4 / 12, "feet"),
  19999. weight: math.unit(120, "lb"),
  20000. name: "Back",
  20001. image: {
  20002. source: "./media/characters/luci/back.svg",
  20003. extra: 1892 / 1791,
  20004. bottom: 0.002
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(5 + 4 / 12, "feet"),
  20012. default: true
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(1500, "feet"),
  20021. weight: math.unit(3.8e6, "tons"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/2th/front.svg",
  20025. extra: 3489 / 3350,
  20026. bottom: 0.1
  20027. }
  20028. },
  20029. foot: {
  20030. height: math.unit(461, "feet"),
  20031. name: "Foot",
  20032. image: {
  20033. source: "./media/characters/2th/foot.svg"
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "\"Micro\"",
  20040. height: math.unit(15 + 7 / 12, "feet")
  20041. },
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(1500, "feet"),
  20045. default: true
  20046. },
  20047. {
  20048. name: "Macro",
  20049. height: math.unit(5000, "feet")
  20050. },
  20051. {
  20052. name: "Megamacro",
  20053. height: math.unit(15, "miles")
  20054. },
  20055. {
  20056. name: "Gigamacro",
  20057. height: math.unit(4000, "miles")
  20058. },
  20059. {
  20060. name: "Galactic",
  20061. height: math.unit(50, "AU")
  20062. },
  20063. ]
  20064. ))
  20065. characterMakers.push(() => makeCharacter(
  20066. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20067. {
  20068. front: {
  20069. height: math.unit(5 + 6 / 12, "feet"),
  20070. weight: math.unit(220, "lb"),
  20071. name: "Front",
  20072. image: {
  20073. source: "./media/characters/amethyst/front.svg",
  20074. extra: 2078 / 2040,
  20075. bottom: 0.045
  20076. }
  20077. },
  20078. back: {
  20079. height: math.unit(5 + 6 / 12, "feet"),
  20080. weight: math.unit(220, "lb"),
  20081. name: "Back",
  20082. image: {
  20083. source: "./media/characters/amethyst/back.svg",
  20084. extra: 2021 / 1989,
  20085. bottom: 0.02
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(5 + 6 / 12, "feet"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(4 + 11 / 12, "feet"),
  20102. weight: math.unit(120, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/yumi-akiyama/front.svg",
  20106. extra: 1327 / 1235,
  20107. bottom: 0.02
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(4 + 11 / 12, "feet"),
  20112. weight: math.unit(120, "lb"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/yumi-akiyama/back.svg",
  20116. extra: 1287 / 1245,
  20117. bottom: 0.002
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Galactic",
  20124. height: math.unit(50, "galaxies"),
  20125. default: true
  20126. },
  20127. {
  20128. name: "Universal",
  20129. height: math.unit(100, "universes")
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(8, "feet"),
  20138. weight: math.unit(500, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/rifter-yrmori/front.svg",
  20142. extra: 1180 / 1125,
  20143. bottom: 0.02
  20144. }
  20145. },
  20146. back: {
  20147. height: math.unit(8, "feet"),
  20148. weight: math.unit(500, "lb"),
  20149. name: "Back",
  20150. image: {
  20151. source: "./media/characters/rifter-yrmori/back.svg",
  20152. extra: 1190 / 1145,
  20153. bottom: 0.001
  20154. }
  20155. },
  20156. wings: {
  20157. height: math.unit(7.75, "feet"),
  20158. weight: math.unit(500, "lb"),
  20159. name: "Wings",
  20160. image: {
  20161. source: "./media/characters/rifter-yrmori/wings.svg",
  20162. extra: 1357 / 1285
  20163. }
  20164. },
  20165. maw: {
  20166. height: math.unit(0.8, "feet"),
  20167. name: "Maw",
  20168. image: {
  20169. source: "./media/characters/rifter-yrmori/maw.svg"
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(8, "feet"),
  20177. default: true
  20178. },
  20179. {
  20180. name: "Macro",
  20181. height: math.unit(42, "meters")
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20187. {
  20188. were: {
  20189. height: math.unit(25 + 6 / 12, "feet"),
  20190. weight: math.unit(10000, "lb"),
  20191. name: "Were",
  20192. image: {
  20193. source: "./media/characters/tahajin/were.svg",
  20194. extra: 801 / 770,
  20195. bottom: 0.042
  20196. }
  20197. },
  20198. aquatic: {
  20199. height: math.unit(6 + 4 / 12, "feet"),
  20200. weight: math.unit(160, "lb"),
  20201. name: "Aquatic",
  20202. image: {
  20203. source: "./media/characters/tahajin/aquatic.svg",
  20204. extra: 572 / 542,
  20205. bottom: 0.04
  20206. }
  20207. },
  20208. chow: {
  20209. height: math.unit(8 + 11 / 12, "feet"),
  20210. weight: math.unit(450, "lb"),
  20211. name: "Chow",
  20212. image: {
  20213. source: "./media/characters/tahajin/chow.svg",
  20214. extra: 660 / 640,
  20215. bottom: 0.015
  20216. }
  20217. },
  20218. demiNaga: {
  20219. height: math.unit(6 + 8 / 12, "feet"),
  20220. weight: math.unit(300, "lb"),
  20221. name: "Demi Naga",
  20222. image: {
  20223. source: "./media/characters/tahajin/demi-naga.svg",
  20224. extra: 643 / 615,
  20225. bottom: 0.1
  20226. }
  20227. },
  20228. data: {
  20229. height: math.unit(5, "inches"),
  20230. weight: math.unit(0.1, "lb"),
  20231. name: "Data",
  20232. image: {
  20233. source: "./media/characters/tahajin/data.svg"
  20234. }
  20235. },
  20236. fluu: {
  20237. height: math.unit(5 + 7 / 12, "feet"),
  20238. weight: math.unit(140, "lb"),
  20239. name: "Fluu",
  20240. image: {
  20241. source: "./media/characters/tahajin/fluu.svg",
  20242. extra: 628 / 592,
  20243. bottom: 0.02
  20244. }
  20245. },
  20246. starWarrior: {
  20247. height: math.unit(4 + 5 / 12, "feet"),
  20248. weight: math.unit(50, "lb"),
  20249. name: "Star Warrior",
  20250. image: {
  20251. source: "./media/characters/tahajin/star-warrior.svg"
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Normal",
  20258. height: math.unit(25 + 6 / 12, "feet"),
  20259. default: true
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20265. {
  20266. front: {
  20267. height: math.unit(8, "feet"),
  20268. weight: math.unit(350, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/gabira/front.svg",
  20272. extra: 608 / 580,
  20273. bottom: 0.03
  20274. }
  20275. },
  20276. back: {
  20277. height: math.unit(8, "feet"),
  20278. weight: math.unit(350, "lb"),
  20279. name: "Back",
  20280. image: {
  20281. source: "./media/characters/gabira/back.svg",
  20282. extra: 608 / 580,
  20283. bottom: 0.03
  20284. }
  20285. },
  20286. },
  20287. [
  20288. {
  20289. name: "Normal",
  20290. height: math.unit(8, "feet"),
  20291. default: true
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20297. {
  20298. front: {
  20299. height: math.unit(5 + 3 / 12, "feet"),
  20300. weight: math.unit(137, "lb"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/sasha-katraine/front.svg",
  20304. bottom: 0.045
  20305. }
  20306. },
  20307. },
  20308. [
  20309. {
  20310. name: "Micro",
  20311. height: math.unit(5, "inches")
  20312. },
  20313. {
  20314. name: "Normal",
  20315. height: math.unit(5 + 3 / 12, "feet"),
  20316. default: true
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20322. {
  20323. side: {
  20324. height: math.unit(4, "inches"),
  20325. weight: math.unit(200, "grams"),
  20326. name: "Side",
  20327. image: {
  20328. source: "./media/characters/der/side.svg",
  20329. extra: 719 / 400,
  20330. bottom: 30.6 / 749.9187
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Micro",
  20337. height: math.unit(4, "inches"),
  20338. default: true
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20344. {
  20345. side: {
  20346. height: math.unit(30, "meters"),
  20347. weight: math.unit(700, "tonnes"),
  20348. name: "Side",
  20349. image: {
  20350. source: "./media/characters/fixerdragon/side.svg",
  20351. extra: (1293.0514 - 116.03) / 1106.86,
  20352. bottom: 116.03 / 1293.0514
  20353. }
  20354. },
  20355. },
  20356. [
  20357. {
  20358. name: "Planck",
  20359. height: math.unit(1.6e-35, "meters")
  20360. },
  20361. {
  20362. name: "Micro",
  20363. height: math.unit(0.4, "meters")
  20364. },
  20365. {
  20366. name: "Normal",
  20367. height: math.unit(30, "meters"),
  20368. default: true
  20369. },
  20370. {
  20371. name: "Megamacro",
  20372. height: math.unit(1.2, "megameters")
  20373. },
  20374. {
  20375. name: "Teramacro",
  20376. height: math.unit(130, "terameters")
  20377. },
  20378. {
  20379. name: "Yottamacro",
  20380. height: math.unit(6200, "yottameters")
  20381. },
  20382. ]
  20383. ));
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20386. {
  20387. front: {
  20388. height: math.unit(8, "feet"),
  20389. weight: math.unit(250, "lb"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/kite/front.svg",
  20393. extra: 2796 / 2659,
  20394. bottom: 0.002
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(8, "feet"),
  20402. default: true
  20403. },
  20404. {
  20405. name: "Macro",
  20406. height: math.unit(360, "feet")
  20407. },
  20408. {
  20409. name: "Megamacro",
  20410. height: math.unit(1500, "feet")
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(5 + 10 / 12, "feet"),
  20419. weight: math.unit(150, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/poojawa-vynar/front.svg",
  20423. extra: (1506.1547 - 55) / 1356.6,
  20424. bottom: 55 / 1506.1547
  20425. }
  20426. },
  20427. frontTailless: {
  20428. height: math.unit(5 + 10 / 12, "feet"),
  20429. weight: math.unit(150, "lb"),
  20430. name: "Front (Tailless)",
  20431. image: {
  20432. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20433. extra: (1506.1547 - 55) / 1356.6,
  20434. bottom: 55 / 1506.1547
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(5 + 10 / 12, "feet"),
  20442. default: true
  20443. },
  20444. ]
  20445. ))
  20446. characterMakers.push(() => makeCharacter(
  20447. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20448. {
  20449. front: {
  20450. height: math.unit(293, "meters"),
  20451. weight: math.unit(70400, "tons"),
  20452. name: "Front",
  20453. image: {
  20454. source: "./media/characters/violette/front.svg",
  20455. extra: 1227 / 1180,
  20456. bottom: 0.005
  20457. }
  20458. },
  20459. back: {
  20460. height: math.unit(293, "meters"),
  20461. weight: math.unit(70400, "tons"),
  20462. name: "Back",
  20463. image: {
  20464. source: "./media/characters/violette/back.svg",
  20465. extra: 1227 / 1180,
  20466. bottom: 0.005
  20467. }
  20468. },
  20469. },
  20470. [
  20471. {
  20472. name: "Macro",
  20473. height: math.unit(293, "meters"),
  20474. default: true
  20475. },
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20480. {
  20481. front: {
  20482. height: math.unit(1050, "feet"),
  20483. weight: math.unit(200000, "tons"),
  20484. name: "Front",
  20485. image: {
  20486. source: "./media/characters/alessandra/front.svg",
  20487. extra: 960 / 912,
  20488. bottom: 0.06
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "Macro",
  20495. height: math.unit(1050, "feet")
  20496. },
  20497. {
  20498. name: "Macro+",
  20499. height: math.unit(900, "meters"),
  20500. default: true
  20501. },
  20502. ]
  20503. ))
  20504. characterMakers.push(() => makeCharacter(
  20505. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20506. {
  20507. front: {
  20508. height: math.unit(5, "feet"),
  20509. weight: math.unit(187, "lb"),
  20510. name: "Front",
  20511. image: {
  20512. source: "./media/characters/person/front.svg",
  20513. extra: 3087 / 2945,
  20514. bottom: 91 / 3181
  20515. }
  20516. },
  20517. },
  20518. [
  20519. {
  20520. name: "Micro",
  20521. height: math.unit(3, "inches")
  20522. },
  20523. {
  20524. name: "Normal",
  20525. height: math.unit(5, "feet"),
  20526. default: true
  20527. },
  20528. {
  20529. name: "Macro",
  20530. height: math.unit(90, "feet")
  20531. },
  20532. {
  20533. name: "Max Size",
  20534. height: math.unit(280, "feet")
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20540. {
  20541. front: {
  20542. height: math.unit(4.5, "meters"),
  20543. weight: math.unit(3200, "lb"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/ty/front.svg",
  20547. extra: 1038 / 960,
  20548. bottom: 31.156 / 1068
  20549. }
  20550. },
  20551. back: {
  20552. height: math.unit(4.5, "meters"),
  20553. weight: math.unit(3200, "lb"),
  20554. name: "Back",
  20555. image: {
  20556. source: "./media/characters/ty/back.svg",
  20557. extra: 1044 / 966,
  20558. bottom: 7.48 / 1049
  20559. }
  20560. },
  20561. },
  20562. [
  20563. {
  20564. name: "Normal",
  20565. height: math.unit(4.5, "meters"),
  20566. default: true
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20572. {
  20573. front: {
  20574. height: math.unit(5 + 4 / 12, "feet"),
  20575. weight: math.unit(115, "lb"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/rocky/front.svg",
  20579. extra: 1012 / 975,
  20580. bottom: 54 / 1066
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(5 + 4 / 12, "feet"),
  20588. default: true
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20594. {
  20595. upright: {
  20596. height: math.unit(6, "meters"),
  20597. weight: math.unit(4000, "kg"),
  20598. name: "Upright",
  20599. image: {
  20600. source: "./media/characters/ruin/upright.svg",
  20601. extra: 668 / 661,
  20602. bottom: 42 / 799.8396
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Normal",
  20609. height: math.unit(6, "meters"),
  20610. default: true
  20611. },
  20612. ]
  20613. ))
  20614. characterMakers.push(() => makeCharacter(
  20615. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20616. {
  20617. front: {
  20618. height: math.unit(5, "feet"),
  20619. weight: math.unit(106, "lb"),
  20620. name: "Front",
  20621. image: {
  20622. source: "./media/characters/robin/front.svg",
  20623. extra: 862 / 799,
  20624. bottom: 42.4 / 914.8856
  20625. }
  20626. },
  20627. },
  20628. [
  20629. {
  20630. name: "Normal",
  20631. height: math.unit(5, "feet"),
  20632. default: true
  20633. },
  20634. ]
  20635. ))
  20636. characterMakers.push(() => makeCharacter(
  20637. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20638. {
  20639. side: {
  20640. height: math.unit(3, "feet"),
  20641. weight: math.unit(225, "lb"),
  20642. name: "Side",
  20643. image: {
  20644. source: "./media/characters/saian/side.svg",
  20645. extra: 566 / 356,
  20646. bottom: 79.7 / 643
  20647. }
  20648. },
  20649. maw: {
  20650. height: math.unit(2.85, "feet"),
  20651. name: "Maw",
  20652. image: {
  20653. source: "./media/characters/saian/maw.svg"
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(3, "feet"),
  20661. default: true
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20667. {
  20668. side: {
  20669. height: math.unit(8, "feet"),
  20670. weight: math.unit(300, "lb"),
  20671. name: "Side",
  20672. image: {
  20673. source: "./media/characters/equus-silvermane/side.svg",
  20674. extra: 2176 / 2050,
  20675. bottom: 65.7 / 2245
  20676. }
  20677. },
  20678. front: {
  20679. height: math.unit(8, "feet"),
  20680. weight: math.unit(300, "lb"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/equus-silvermane/front.svg",
  20684. extra: 4633 / 4400,
  20685. bottom: 71.3 / 4706.915
  20686. }
  20687. },
  20688. sideStepping: {
  20689. height: math.unit(8, "feet"),
  20690. weight: math.unit(300, "lb"),
  20691. name: "Side (Stepping)",
  20692. image: {
  20693. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20694. extra: 1968 / 1860,
  20695. bottom: 16.4 / 1989
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(8, "feet")
  20703. },
  20704. {
  20705. name: "Minimacro",
  20706. height: math.unit(75, "feet"),
  20707. default: true
  20708. },
  20709. {
  20710. name: "Macro",
  20711. height: math.unit(150, "feet")
  20712. },
  20713. {
  20714. name: "Macro+",
  20715. height: math.unit(1000, "feet")
  20716. },
  20717. {
  20718. name: "Megamacro",
  20719. height: math.unit(1, "mile")
  20720. },
  20721. ]
  20722. ))
  20723. characterMakers.push(() => makeCharacter(
  20724. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20725. {
  20726. side: {
  20727. height: math.unit(20, "feet"),
  20728. weight: math.unit(30000, "kg"),
  20729. name: "Side",
  20730. image: {
  20731. source: "./media/characters/windar/side.svg",
  20732. extra: 1491 / 1248,
  20733. bottom: 82.56 / 1568
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(20, "feet"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20747. {
  20748. side: {
  20749. height: math.unit(15.66, "feet"),
  20750. weight: math.unit(150, "lb"),
  20751. name: "Side",
  20752. image: {
  20753. source: "./media/characters/melody/side.svg",
  20754. extra: 1097 / 944,
  20755. bottom: 11.8 / 1109
  20756. }
  20757. },
  20758. sideOutfit: {
  20759. height: math.unit(15.66, "feet"),
  20760. weight: math.unit(150, "lb"),
  20761. name: "Side (Outfit)",
  20762. image: {
  20763. source: "./media/characters/melody/side-outfit.svg",
  20764. extra: 1097 / 944,
  20765. bottom: 11.8 / 1109
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(15.66, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20779. {
  20780. front: {
  20781. height: math.unit(8, "feet"),
  20782. weight: math.unit(325, "lb"),
  20783. name: "Front",
  20784. image: {
  20785. source: "./media/characters/windera/front.svg",
  20786. extra: 3180 / 2845,
  20787. bottom: 178 / 3365
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(8, "feet"),
  20795. default: true
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20801. {
  20802. front: {
  20803. height: math.unit(28.75, "feet"),
  20804. weight: math.unit(2000, "kg"),
  20805. name: "Front",
  20806. image: {
  20807. source: "./media/characters/sonear/front.svg",
  20808. extra: 1041.1 / 964.9,
  20809. bottom: 53.7 / 1096.6
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Normal",
  20816. height: math.unit(28.75, "feet"),
  20817. default: true
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20823. {
  20824. side: {
  20825. height: math.unit(25.5, "feet"),
  20826. weight: math.unit(23000, "kg"),
  20827. name: "Side",
  20828. image: {
  20829. source: "./media/characters/kanara/side.svg"
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(25.5, "feet"),
  20837. default: true
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20843. {
  20844. side: {
  20845. height: math.unit(10, "feet"),
  20846. weight: math.unit(1000, "kg"),
  20847. name: "Side",
  20848. image: {
  20849. source: "./media/characters/ereus/side.svg",
  20850. extra: 1157 / 959,
  20851. bottom: 153 / 1312.5
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(10, "feet"),
  20859. default: true
  20860. },
  20861. ]
  20862. ))
  20863. characterMakers.push(() => makeCharacter(
  20864. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20865. {
  20866. side: {
  20867. height: math.unit(4.5, "feet"),
  20868. weight: math.unit(500, "lb"),
  20869. name: "Side",
  20870. image: {
  20871. source: "./media/characters/e-ter/side.svg",
  20872. extra: 1550 / 1248,
  20873. bottom: 146 / 1694
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(4.5, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20887. {
  20888. side: {
  20889. height: math.unit(9.7, "feet"),
  20890. weight: math.unit(4000, "kg"),
  20891. name: "Side",
  20892. image: {
  20893. source: "./media/characters/yamie/side.svg"
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Normal",
  20900. height: math.unit(9.7, "feet"),
  20901. default: true
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20907. {
  20908. front: {
  20909. height: math.unit(50, "feet"),
  20910. weight: math.unit(50000, "kg"),
  20911. name: "Front",
  20912. image: {
  20913. source: "./media/characters/anders/front.svg",
  20914. extra: 570 / 539,
  20915. bottom: 14.7 / 586.7
  20916. }
  20917. },
  20918. },
  20919. [
  20920. {
  20921. name: "Large",
  20922. height: math.unit(50, "feet")
  20923. },
  20924. {
  20925. name: "Macro",
  20926. height: math.unit(2000, "feet"),
  20927. default: true
  20928. },
  20929. {
  20930. name: "Megamacro",
  20931. height: math.unit(12, "miles")
  20932. },
  20933. ]
  20934. ))
  20935. characterMakers.push(() => makeCharacter(
  20936. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20937. {
  20938. front: {
  20939. height: math.unit(7 + 2 / 12, "feet"),
  20940. weight: math.unit(300, "lb"),
  20941. name: "Front",
  20942. image: {
  20943. source: "./media/characters/reban/front.svg",
  20944. extra: 516 / 487,
  20945. bottom: 42.82 / 558.356
  20946. }
  20947. },
  20948. dick: {
  20949. height: math.unit(7 / 5, "feet"),
  20950. name: "Dick",
  20951. image: {
  20952. source: "./media/characters/reban/dick.svg"
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Natural Height",
  20959. height: math.unit(7 + 2 / 12, "feet")
  20960. },
  20961. {
  20962. name: "Macro",
  20963. height: math.unit(500, "feet"),
  20964. default: true
  20965. },
  20966. {
  20967. name: "Canon Height",
  20968. height: math.unit(50, "AU")
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20974. {
  20975. front: {
  20976. height: math.unit(6, "feet"),
  20977. weight: math.unit(150, "lb"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/terrance-keayes/front.svg",
  20981. extra: 1.005,
  20982. bottom: 151 / 1615
  20983. }
  20984. },
  20985. side: {
  20986. height: math.unit(6, "feet"),
  20987. weight: math.unit(150, "lb"),
  20988. name: "Side",
  20989. image: {
  20990. source: "./media/characters/terrance-keayes/side.svg",
  20991. extra: 1.005,
  20992. bottom: 129.4 / 1544
  20993. }
  20994. },
  20995. back: {
  20996. height: math.unit(6, "feet"),
  20997. weight: math.unit(150, "lb"),
  20998. name: "Back",
  20999. image: {
  21000. source: "./media/characters/terrance-keayes/back.svg",
  21001. extra: 1.005,
  21002. bottom: 58.4 / 1557.3
  21003. }
  21004. },
  21005. dick: {
  21006. height: math.unit(6 * 0.208, "feet"),
  21007. name: "Dick",
  21008. image: {
  21009. source: "./media/characters/terrance-keayes/dick.svg"
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Canon Height",
  21016. height: math.unit(35, "miles"),
  21017. default: true
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21023. {
  21024. front: {
  21025. height: math.unit(6, "feet"),
  21026. weight: math.unit(150, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/ofelia/front.svg",
  21030. extra: 546 / 541,
  21031. bottom: 39 / 583
  21032. }
  21033. },
  21034. back: {
  21035. height: math.unit(6, "feet"),
  21036. weight: math.unit(150, "lb"),
  21037. name: "Back",
  21038. image: {
  21039. source: "./media/characters/ofelia/back.svg",
  21040. extra: 564 / 559.5,
  21041. bottom: 8.69 / 573.02
  21042. }
  21043. },
  21044. maw: {
  21045. height: math.unit(1, "feet"),
  21046. name: "Maw",
  21047. image: {
  21048. source: "./media/characters/ofelia/maw.svg"
  21049. }
  21050. },
  21051. foot: {
  21052. height: math.unit(1.949, "feet"),
  21053. name: "Foot",
  21054. image: {
  21055. source: "./media/characters/ofelia/foot.svg"
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Canon Height",
  21062. height: math.unit(2000, "miles"),
  21063. default: true
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21069. {
  21070. front: {
  21071. height: math.unit(6, "feet"),
  21072. weight: math.unit(150, "lb"),
  21073. name: "Front",
  21074. image: {
  21075. source: "./media/characters/samuel/front.svg",
  21076. extra: 265 / 258,
  21077. bottom: 2 / 266.1566
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Macro",
  21084. height: math.unit(100, "feet"),
  21085. default: true
  21086. },
  21087. {
  21088. name: "Full Size",
  21089. height: math.unit(1000, "miles")
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21095. {
  21096. front: {
  21097. height: math.unit(6, "feet"),
  21098. weight: math.unit(300, "lb"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/beishir-kiel/front.svg",
  21102. extra: 569 / 547,
  21103. bottom: 41.9 / 609
  21104. }
  21105. },
  21106. maw: {
  21107. height: math.unit(6 * 0.202, "feet"),
  21108. name: "Maw",
  21109. image: {
  21110. source: "./media/characters/beishir-kiel/maw.svg"
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Macro",
  21117. height: math.unit(300, "feet"),
  21118. default: true
  21119. },
  21120. ]
  21121. ))
  21122. characterMakers.push(() => makeCharacter(
  21123. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21124. {
  21125. front: {
  21126. height: math.unit(5 + 8 / 12, "feet"),
  21127. weight: math.unit(120, "lb"),
  21128. name: "Front",
  21129. image: {
  21130. source: "./media/characters/logan-grey/front.svg",
  21131. extra: 2539 / 2393,
  21132. bottom: 97.6 / 2636.37
  21133. }
  21134. },
  21135. frontAlt: {
  21136. height: math.unit(5 + 8 / 12, "feet"),
  21137. weight: math.unit(120, "lb"),
  21138. name: "Front (Alt)",
  21139. image: {
  21140. source: "./media/characters/logan-grey/front-alt.svg",
  21141. extra: 958 / 893,
  21142. bottom: 15 / 970.768
  21143. }
  21144. },
  21145. back: {
  21146. height: math.unit(5 + 8 / 12, "feet"),
  21147. weight: math.unit(120, "lb"),
  21148. name: "Back",
  21149. image: {
  21150. source: "./media/characters/logan-grey/back.svg",
  21151. extra: 958 / 893,
  21152. bottom: 2.1881 / 970.9788
  21153. }
  21154. },
  21155. dick: {
  21156. height: math.unit(1.437, "feet"),
  21157. name: "Dick",
  21158. image: {
  21159. source: "./media/characters/logan-grey/dick.svg"
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(5 + 8 / 12, "feet")
  21167. },
  21168. {
  21169. name: "The 500 Foot Femboy",
  21170. height: math.unit(500, "feet"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Megmacro",
  21175. height: math.unit(20, "miles")
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21181. {
  21182. front: {
  21183. height: math.unit(8 + 2 / 12, "feet"),
  21184. weight: math.unit(275, "lb"),
  21185. name: "Front",
  21186. image: {
  21187. source: "./media/characters/draganta/front.svg",
  21188. extra: 1177 / 1135,
  21189. bottom: 33.46 / 1212.1
  21190. }
  21191. },
  21192. },
  21193. [
  21194. {
  21195. name: "Normal",
  21196. height: math.unit(8 + 6 / 12, "feet"),
  21197. default: true
  21198. },
  21199. {
  21200. name: "Macro",
  21201. height: math.unit(150, "feet")
  21202. },
  21203. {
  21204. name: "Megamacro",
  21205. height: math.unit(1000, "miles")
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21211. {
  21212. front: {
  21213. height: math.unit(1.72, "m"),
  21214. weight: math.unit(80, "lb"),
  21215. name: "Front",
  21216. image: {
  21217. source: "./media/characters/voski/front.svg",
  21218. extra: 2076.22 / 2022.4,
  21219. bottom: 102.7 / 2177.3866
  21220. }
  21221. },
  21222. frontNsfw: {
  21223. height: math.unit(1.72, "m"),
  21224. weight: math.unit(80, "lb"),
  21225. name: "Front (NSFW)",
  21226. image: {
  21227. source: "./media/characters/voski/front-nsfw.svg",
  21228. extra: 2076.22 / 2022.4,
  21229. bottom: 102.7 / 2177.3866
  21230. }
  21231. },
  21232. back: {
  21233. height: math.unit(1.72, "m"),
  21234. weight: math.unit(80, "lb"),
  21235. name: "Back",
  21236. image: {
  21237. source: "./media/characters/voski/back.svg",
  21238. extra: 2104 / 2051,
  21239. bottom: 10.45 / 2113.63
  21240. }
  21241. },
  21242. },
  21243. [
  21244. {
  21245. name: "Normal",
  21246. height: math.unit(1.72, "m")
  21247. },
  21248. {
  21249. name: "Macro",
  21250. height: math.unit(55, "m"),
  21251. default: true
  21252. },
  21253. {
  21254. name: "Macro+",
  21255. height: math.unit(300, "m")
  21256. },
  21257. {
  21258. name: "Macro++",
  21259. height: math.unit(700, "m")
  21260. },
  21261. {
  21262. name: "Macro+++",
  21263. height: math.unit(4500, "m")
  21264. },
  21265. {
  21266. name: "Macro++++",
  21267. height: math.unit(45, "km")
  21268. },
  21269. {
  21270. name: "Macro+++++",
  21271. height: math.unit(1220, "km")
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(2.3, "m"),
  21280. weight: math.unit(304, "kg"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/icowom-lee/front.svg",
  21284. extra: 985 / 955,
  21285. bottom: 25.4 / 1012
  21286. }
  21287. },
  21288. fronttentacles: {
  21289. height: math.unit(2.3, "m"),
  21290. weight: math.unit(304, "kg"),
  21291. name: "Front-tentacles",
  21292. image: {
  21293. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21294. extra: 985 / 955,
  21295. bottom: 25.4 / 1012
  21296. }
  21297. },
  21298. back: {
  21299. height: math.unit(2.3, "m"),
  21300. weight: math.unit(304, "kg"),
  21301. name: "Back",
  21302. image: {
  21303. source: "./media/characters/icowom-lee/back.svg",
  21304. extra: 975 / 954,
  21305. bottom: 9.5 / 985
  21306. }
  21307. },
  21308. backtentacles: {
  21309. height: math.unit(2.3, "m"),
  21310. weight: math.unit(304, "kg"),
  21311. name: "Back-tentacles",
  21312. image: {
  21313. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21314. extra: 975 / 954,
  21315. bottom: 9.5 / 985
  21316. }
  21317. },
  21318. frontDressed: {
  21319. height: math.unit(2.3, "m"),
  21320. weight: math.unit(304, "kg"),
  21321. name: "Front (Dressed)",
  21322. image: {
  21323. source: "./media/characters/icowom-lee/front-dressed.svg",
  21324. extra: 3076 / 2933,
  21325. bottom: 51.4 / 3125.1889
  21326. }
  21327. },
  21328. rump: {
  21329. height: math.unit(0.776, "meters"),
  21330. name: "Rump",
  21331. image: {
  21332. source: "./media/characters/icowom-lee/rump.svg"
  21333. }
  21334. },
  21335. genitals: {
  21336. height: math.unit(0.78, "meters"),
  21337. name: "Genitals",
  21338. image: {
  21339. source: "./media/characters/icowom-lee/genitals.svg"
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(2.3, "meters"),
  21347. default: true
  21348. },
  21349. {
  21350. name: "Macro",
  21351. height: math.unit(94, "meters"),
  21352. default: true
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21358. {
  21359. front: {
  21360. height: math.unit(22, "meters"),
  21361. weight: math.unit(21000, "kg"),
  21362. name: "Front",
  21363. image: {
  21364. source: "./media/characters/shock-diamond/front.svg",
  21365. extra: 2204 / 2053,
  21366. bottom: 65 / 2239.47
  21367. }
  21368. },
  21369. frontNude: {
  21370. height: math.unit(22, "meters"),
  21371. weight: math.unit(21000, "kg"),
  21372. name: "Front (Nude)",
  21373. image: {
  21374. source: "./media/characters/shock-diamond/front-nude.svg",
  21375. extra: 2514 / 2285,
  21376. bottom: 13 / 2527.56
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Normal",
  21383. height: math.unit(3, "meters")
  21384. },
  21385. {
  21386. name: "Macro",
  21387. height: math.unit(22, "meters"),
  21388. default: true
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(5 + 4 / 12, "feet"),
  21397. weight: math.unit(120, "lb"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/rory/front.svg",
  21401. extra: 589 / 556,
  21402. bottom: 45.7 / 635.76
  21403. }
  21404. },
  21405. frontNude: {
  21406. height: math.unit(5 + 4 / 12, "feet"),
  21407. weight: math.unit(120, "lb"),
  21408. name: "Front (Nude)",
  21409. image: {
  21410. source: "./media/characters/rory/front-nude.svg",
  21411. extra: 589 / 556,
  21412. bottom: 45.7 / 635.76
  21413. }
  21414. },
  21415. side: {
  21416. height: math.unit(5 + 4 / 12, "feet"),
  21417. weight: math.unit(120, "lb"),
  21418. name: "Side",
  21419. image: {
  21420. source: "./media/characters/rory/side.svg",
  21421. extra: 597 / 564,
  21422. bottom: 55 / 653
  21423. }
  21424. },
  21425. back: {
  21426. height: math.unit(5 + 4 / 12, "feet"),
  21427. weight: math.unit(120, "lb"),
  21428. name: "Back",
  21429. image: {
  21430. source: "./media/characters/rory/back.svg",
  21431. extra: 620 / 585,
  21432. bottom: 8.86 / 630.43
  21433. }
  21434. },
  21435. dick: {
  21436. height: math.unit(0.86, "feet"),
  21437. name: "Dick",
  21438. image: {
  21439. source: "./media/characters/rory/dick.svg"
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(5 + 4 / 12, "feet"),
  21447. default: true
  21448. },
  21449. {
  21450. name: "Macro",
  21451. height: math.unit(100, "feet")
  21452. },
  21453. {
  21454. name: "Macro+",
  21455. height: math.unit(140, "feet")
  21456. },
  21457. {
  21458. name: "Macro++",
  21459. height: math.unit(300, "feet")
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21465. {
  21466. front: {
  21467. height: math.unit(5 + 9 / 12, "feet"),
  21468. weight: math.unit(190, "lb"),
  21469. name: "Front",
  21470. image: {
  21471. source: "./media/characters/sprisk/front.svg",
  21472. extra: 1225 / 1180,
  21473. bottom: 42.7 / 1266.4
  21474. }
  21475. },
  21476. frontNsfw: {
  21477. height: math.unit(5 + 9 / 12, "feet"),
  21478. weight: math.unit(190, "lb"),
  21479. name: "Front (NSFW)",
  21480. image: {
  21481. source: "./media/characters/sprisk/front-nsfw.svg",
  21482. extra: 1225 / 1180,
  21483. bottom: 42.7 / 1266.4
  21484. }
  21485. },
  21486. back: {
  21487. height: math.unit(5 + 9 / 12, "feet"),
  21488. weight: math.unit(190, "lb"),
  21489. name: "Back",
  21490. image: {
  21491. source: "./media/characters/sprisk/back.svg",
  21492. extra: 1247 / 1200,
  21493. bottom: 5.6 / 1253.04
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Tiny",
  21500. height: math.unit(2, "inches")
  21501. },
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(5 + 9 / 12, "feet"),
  21505. default: true
  21506. },
  21507. {
  21508. name: "Mini Macro",
  21509. height: math.unit(18, "feet")
  21510. },
  21511. {
  21512. name: "Macro",
  21513. height: math.unit(100, "feet")
  21514. },
  21515. {
  21516. name: "MACRO",
  21517. height: math.unit(50, "miles")
  21518. },
  21519. {
  21520. name: "M A C R O",
  21521. height: math.unit(300, "miles")
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21527. {
  21528. side: {
  21529. height: math.unit(15.6, "meters"),
  21530. weight: math.unit(700000, "kg"),
  21531. name: "Side",
  21532. image: {
  21533. source: "./media/characters/bunsen/side.svg",
  21534. extra: 1644 / 358
  21535. }
  21536. },
  21537. foot: {
  21538. height: math.unit(1.611 * 1644 / 358, "meter"),
  21539. name: "Foot",
  21540. image: {
  21541. source: "./media/characters/bunsen/foot.svg"
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Small",
  21548. height: math.unit(10, "feet")
  21549. },
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(15.6, "meters"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21559. {
  21560. front: {
  21561. height: math.unit(4 + 11 / 12, "feet"),
  21562. weight: math.unit(140, "lb"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/sesh/front.svg",
  21566. extra: 3420 / 3231,
  21567. bottom: 72 / 3949.5
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Normal",
  21574. height: math.unit(4 + 11 / 12, "feet")
  21575. },
  21576. {
  21577. name: "Grown",
  21578. height: math.unit(15, "feet"),
  21579. default: true
  21580. },
  21581. {
  21582. name: "Macro",
  21583. height: math.unit(1500, "feet")
  21584. },
  21585. {
  21586. name: "Megamacro",
  21587. height: math.unit(30, "miles")
  21588. },
  21589. {
  21590. name: "Continental",
  21591. height: math.unit(3000, "miles")
  21592. },
  21593. {
  21594. name: "Gravity Mass",
  21595. height: math.unit(300000, "miles")
  21596. },
  21597. {
  21598. name: "Planet Buster",
  21599. height: math.unit(30000000, "miles")
  21600. },
  21601. {
  21602. name: "Big",
  21603. height: math.unit(3000000000, "miles")
  21604. },
  21605. ]
  21606. ))
  21607. characterMakers.push(() => makeCharacter(
  21608. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21609. {
  21610. front: {
  21611. height: math.unit(9, "feet"),
  21612. weight: math.unit(350, "lb"),
  21613. name: "Front",
  21614. image: {
  21615. source: "./media/characters/pepper/front.svg",
  21616. extra: 1448 / 1312,
  21617. bottom: 9.4 / 1457.88
  21618. }
  21619. },
  21620. back: {
  21621. height: math.unit(9, "feet"),
  21622. weight: math.unit(350, "lb"),
  21623. name: "Back",
  21624. image: {
  21625. source: "./media/characters/pepper/back.svg",
  21626. extra: 1423 / 1300,
  21627. bottom: 4.6 / 1429
  21628. }
  21629. },
  21630. maw: {
  21631. height: math.unit(0.932, "feet"),
  21632. name: "Maw",
  21633. image: {
  21634. source: "./media/characters/pepper/maw.svg"
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Normal",
  21641. height: math.unit(9, "feet"),
  21642. default: true
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21648. {
  21649. front: {
  21650. height: math.unit(6, "feet"),
  21651. weight: math.unit(150, "lb"),
  21652. name: "Front",
  21653. image: {
  21654. source: "./media/characters/maelstrom/front.svg",
  21655. extra: 2100 / 1883,
  21656. bottom: 94 / 2196.7
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Less Kaiju",
  21663. height: math.unit(200, "feet")
  21664. },
  21665. {
  21666. name: "Kaiju",
  21667. height: math.unit(400, "feet"),
  21668. default: true
  21669. },
  21670. {
  21671. name: "Kaiju-er",
  21672. height: math.unit(600, "feet")
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21678. {
  21679. front: {
  21680. height: math.unit(6 + 5 / 12, "feet"),
  21681. weight: math.unit(180, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/lexir/front.svg",
  21685. extra: 180 / 172,
  21686. bottom: 12 / 192
  21687. }
  21688. },
  21689. back: {
  21690. height: math.unit(6 + 5 / 12, "feet"),
  21691. weight: math.unit(180, "lb"),
  21692. name: "Back",
  21693. image: {
  21694. source: "./media/characters/lexir/back.svg",
  21695. extra: 183.84 / 175.5,
  21696. bottom: 3.1 / 187
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Very Smal",
  21703. height: math.unit(1, "nm")
  21704. },
  21705. {
  21706. name: "Normal",
  21707. height: math.unit(6 + 5 / 12, "feet"),
  21708. default: true
  21709. },
  21710. {
  21711. name: "Macro",
  21712. height: math.unit(1, "mile")
  21713. },
  21714. {
  21715. name: "Megamacro",
  21716. height: math.unit(50, "miles")
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21722. {
  21723. front: {
  21724. height: math.unit(1.5, "meters"),
  21725. weight: math.unit(100, "lb"),
  21726. name: "Front",
  21727. image: {
  21728. source: "./media/characters/maksio/front.svg",
  21729. extra: 1549 / 1531,
  21730. bottom: 123.7 / 1674.5429
  21731. }
  21732. },
  21733. back: {
  21734. height: math.unit(1.5, "meters"),
  21735. weight: math.unit(100, "lb"),
  21736. name: "Back",
  21737. image: {
  21738. source: "./media/characters/maksio/back.svg",
  21739. extra: 1541 / 1509,
  21740. bottom: 97 / 1639
  21741. }
  21742. },
  21743. hand: {
  21744. height: math.unit(0.621, "feet"),
  21745. name: "Hand",
  21746. image: {
  21747. source: "./media/characters/maksio/hand.svg"
  21748. }
  21749. },
  21750. foot: {
  21751. height: math.unit(1.611, "feet"),
  21752. name: "Foot",
  21753. image: {
  21754. source: "./media/characters/maksio/foot.svg"
  21755. }
  21756. },
  21757. },
  21758. [
  21759. {
  21760. name: "Shrunken",
  21761. height: math.unit(10, "cm")
  21762. },
  21763. {
  21764. name: "Normal",
  21765. height: math.unit(150, "cm"),
  21766. default: true
  21767. },
  21768. ]
  21769. ))
  21770. characterMakers.push(() => makeCharacter(
  21771. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21772. {
  21773. front: {
  21774. height: math.unit(100, "feet"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/erza-bear/front.svg",
  21778. extra: 2449 / 2390,
  21779. bottom: 46 / 2494
  21780. }
  21781. },
  21782. back: {
  21783. height: math.unit(100, "feet"),
  21784. name: "Back",
  21785. image: {
  21786. source: "./media/characters/erza-bear/back.svg",
  21787. extra: 2489 / 2430,
  21788. bottom: 85.4 / 2480
  21789. }
  21790. },
  21791. tail: {
  21792. height: math.unit(42, "feet"),
  21793. name: "Tail",
  21794. image: {
  21795. source: "./media/characters/erza-bear/tail.svg"
  21796. }
  21797. },
  21798. tongue: {
  21799. height: math.unit(8, "feet"),
  21800. name: "Tongue",
  21801. image: {
  21802. source: "./media/characters/erza-bear/tongue.svg"
  21803. }
  21804. },
  21805. dick: {
  21806. height: math.unit(10.5, "feet"),
  21807. name: "Dick",
  21808. image: {
  21809. source: "./media/characters/erza-bear/dick.svg"
  21810. }
  21811. },
  21812. dickVertical: {
  21813. height: math.unit(16.9, "feet"),
  21814. name: "Dick (Vertical)",
  21815. image: {
  21816. source: "./media/characters/erza-bear/dick-vertical.svg"
  21817. }
  21818. },
  21819. },
  21820. [
  21821. {
  21822. name: "Macro",
  21823. height: math.unit(100, "feet"),
  21824. default: true
  21825. },
  21826. ]
  21827. ))
  21828. characterMakers.push(() => makeCharacter(
  21829. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21830. {
  21831. front: {
  21832. height: math.unit(172, "cm"),
  21833. weight: math.unit(73, "kg"),
  21834. name: "Front",
  21835. image: {
  21836. source: "./media/characters/violet-flor/front.svg",
  21837. extra: 1530 / 1442,
  21838. bottom: 61.9 / 1588.8
  21839. }
  21840. },
  21841. back: {
  21842. height: math.unit(180, "cm"),
  21843. weight: math.unit(73, "kg"),
  21844. name: "Back",
  21845. image: {
  21846. source: "./media/characters/violet-flor/back.svg",
  21847. extra: 1692 / 1630,
  21848. bottom: 20 / 1712
  21849. }
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(172, "cm"),
  21856. default: true
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21862. {
  21863. front: {
  21864. height: math.unit(6, "feet"),
  21865. weight: math.unit(220, "lb"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/lynn-rhea/front.svg",
  21869. extra: 310 / 273
  21870. }
  21871. },
  21872. back: {
  21873. height: math.unit(6, "feet"),
  21874. weight: math.unit(220, "lb"),
  21875. name: "Back",
  21876. image: {
  21877. source: "./media/characters/lynn-rhea/back.svg",
  21878. extra: 310 / 273
  21879. }
  21880. },
  21881. dicks: {
  21882. height: math.unit(0.9, "feet"),
  21883. name: "Dicks",
  21884. image: {
  21885. source: "./media/characters/lynn-rhea/dicks.svg"
  21886. }
  21887. },
  21888. slit: {
  21889. height: math.unit(0.4, "feet"),
  21890. name: "Slit",
  21891. image: {
  21892. source: "./media/characters/lynn-rhea/slit.svg"
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "Micro",
  21899. height: math.unit(1, "inch")
  21900. },
  21901. {
  21902. name: "Macro",
  21903. height: math.unit(60, "feet"),
  21904. default: true
  21905. },
  21906. {
  21907. name: "Megamacro",
  21908. height: math.unit(2, "miles")
  21909. },
  21910. {
  21911. name: "Gigamacro",
  21912. height: math.unit(3, "earths")
  21913. },
  21914. {
  21915. name: "Galactic",
  21916. height: math.unit(0.8, "galaxies")
  21917. },
  21918. ]
  21919. ))
  21920. characterMakers.push(() => makeCharacter(
  21921. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21922. {
  21923. front: {
  21924. height: math.unit(1600, "feet"),
  21925. weight: math.unit(85758785169, "kg"),
  21926. name: "Front",
  21927. image: {
  21928. source: "./media/characters/valathos/front.svg",
  21929. extra: 1451 / 1339
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Macro",
  21936. height: math.unit(1600, "feet"),
  21937. default: true
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21943. {
  21944. front: {
  21945. height: math.unit(7 + 5 / 12, "feet"),
  21946. weight: math.unit(300, "lb"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/azula/front.svg",
  21950. extra: 3208 / 2880,
  21951. bottom: 80.2 / 3277
  21952. }
  21953. },
  21954. back: {
  21955. height: math.unit(7 + 5 / 12, "feet"),
  21956. weight: math.unit(300, "lb"),
  21957. name: "Back",
  21958. image: {
  21959. source: "./media/characters/azula/back.svg",
  21960. extra: 3169 / 2822,
  21961. bottom: 150.6 / 3321
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(7 + 5 / 12, "feet"),
  21969. default: true
  21970. },
  21971. {
  21972. name: "Big",
  21973. height: math.unit(20, "feet")
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21979. {
  21980. front: {
  21981. height: math.unit(5 + 1 / 12, "feet"),
  21982. weight: math.unit(110, "lb"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/rupert/front.svg",
  21986. extra: 1549 / 1495,
  21987. bottom: 54.2 / 1604.4
  21988. }
  21989. },
  21990. },
  21991. [
  21992. {
  21993. name: "Normal",
  21994. height: math.unit(5 + 1 / 12, "feet"),
  21995. default: true
  21996. },
  21997. ]
  21998. ))
  21999. characterMakers.push(() => makeCharacter(
  22000. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22001. {
  22002. front: {
  22003. height: math.unit(8 + 4 / 12, "feet"),
  22004. weight: math.unit(350, "lb"),
  22005. name: "Front",
  22006. image: {
  22007. source: "./media/characters/sheera-castellar/front.svg",
  22008. extra: 1957 / 1894,
  22009. bottom: 26.97 / 1975.017
  22010. }
  22011. },
  22012. side: {
  22013. height: math.unit(8 + 4 / 12, "feet"),
  22014. weight: math.unit(350, "lb"),
  22015. name: "Side",
  22016. image: {
  22017. source: "./media/characters/sheera-castellar/side.svg",
  22018. extra: 1957 / 1894
  22019. }
  22020. },
  22021. back: {
  22022. height: math.unit(8 + 4 / 12, "feet"),
  22023. weight: math.unit(350, "lb"),
  22024. name: "Back",
  22025. image: {
  22026. source: "./media/characters/sheera-castellar/back.svg",
  22027. extra: 1957 / 1894
  22028. }
  22029. },
  22030. angled: {
  22031. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22032. weight: math.unit(350, "lb"),
  22033. name: "Angled",
  22034. image: {
  22035. source: "./media/characters/sheera-castellar/angled.svg",
  22036. extra: 1807 / 1707,
  22037. bottom: 68 / 1875
  22038. }
  22039. },
  22040. genitals: {
  22041. height: math.unit(2.2, "feet"),
  22042. name: "Genitals",
  22043. image: {
  22044. source: "./media/characters/sheera-castellar/genitals.svg"
  22045. }
  22046. },
  22047. },
  22048. [
  22049. {
  22050. name: "Normal",
  22051. height: math.unit(8 + 4 / 12, "feet")
  22052. },
  22053. {
  22054. name: "Macro",
  22055. height: math.unit(150, "feet"),
  22056. default: true
  22057. },
  22058. {
  22059. name: "Macro+",
  22060. height: math.unit(800, "feet")
  22061. },
  22062. ]
  22063. ))
  22064. characterMakers.push(() => makeCharacter(
  22065. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22066. {
  22067. front: {
  22068. height: math.unit(6, "feet"),
  22069. weight: math.unit(150, "lb"),
  22070. name: "Front",
  22071. image: {
  22072. source: "./media/characters/jaipur/front.svg",
  22073. extra: 3860 / 3731,
  22074. bottom: 287 / 4140
  22075. }
  22076. },
  22077. back: {
  22078. height: math.unit(6, "feet"),
  22079. weight: math.unit(150, "lb"),
  22080. name: "Back",
  22081. image: {
  22082. source: "./media/characters/jaipur/back.svg",
  22083. extra: 4060 / 3930,
  22084. bottom: 151 / 4200
  22085. }
  22086. },
  22087. },
  22088. [
  22089. {
  22090. name: "Normal",
  22091. height: math.unit(1.85, "meters"),
  22092. default: true
  22093. },
  22094. {
  22095. name: "Macro",
  22096. height: math.unit(150, "meters")
  22097. },
  22098. {
  22099. name: "Macro+",
  22100. height: math.unit(0.5, "miles")
  22101. },
  22102. {
  22103. name: "Macro++",
  22104. height: math.unit(2.5, "miles")
  22105. },
  22106. {
  22107. name: "Macro+++",
  22108. height: math.unit(12, "miles")
  22109. },
  22110. {
  22111. name: "Macro++++",
  22112. height: math.unit(120, "miles")
  22113. },
  22114. {
  22115. name: "Macro+++++",
  22116. height: math.unit(1200, "miles")
  22117. },
  22118. ]
  22119. ))
  22120. characterMakers.push(() => makeCharacter(
  22121. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22122. {
  22123. front: {
  22124. height: math.unit(6, "feet"),
  22125. weight: math.unit(150, "lb"),
  22126. name: "Front",
  22127. image: {
  22128. source: "./media/characters/sheila-wolf/front.svg",
  22129. extra: 1931 / 1808,
  22130. bottom: 29.5 / 1960
  22131. }
  22132. },
  22133. dick: {
  22134. height: math.unit(1.464, "feet"),
  22135. name: "Dick",
  22136. image: {
  22137. source: "./media/characters/sheila-wolf/dick.svg"
  22138. }
  22139. },
  22140. muzzle: {
  22141. height: math.unit(0.513, "feet"),
  22142. name: "Muzzle",
  22143. image: {
  22144. source: "./media/characters/sheila-wolf/muzzle.svg"
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Macro",
  22151. height: math.unit(70, "feet"),
  22152. default: true
  22153. },
  22154. ]
  22155. ))
  22156. characterMakers.push(() => makeCharacter(
  22157. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22158. {
  22159. front: {
  22160. height: math.unit(32, "meters"),
  22161. weight: math.unit(300000, "kg"),
  22162. name: "Front",
  22163. image: {
  22164. source: "./media/characters/almor/front.svg",
  22165. extra: 1408 / 1322,
  22166. bottom: 94.6 / 1506.5
  22167. }
  22168. },
  22169. },
  22170. [
  22171. {
  22172. name: "Macro",
  22173. height: math.unit(32, "meters"),
  22174. default: true
  22175. },
  22176. ]
  22177. ))
  22178. characterMakers.push(() => makeCharacter(
  22179. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22180. {
  22181. front: {
  22182. height: math.unit(7, "feet"),
  22183. weight: math.unit(200, "lb"),
  22184. name: "Front",
  22185. image: {
  22186. source: "./media/characters/silver/front.svg",
  22187. extra: 472.1 / 450.5,
  22188. bottom: 26.5 / 499.424
  22189. }
  22190. },
  22191. },
  22192. [
  22193. {
  22194. name: "Normal",
  22195. height: math.unit(7, "feet"),
  22196. default: true
  22197. },
  22198. {
  22199. name: "Macro",
  22200. height: math.unit(800, "feet")
  22201. },
  22202. {
  22203. name: "Megamacro",
  22204. height: math.unit(250, "miles")
  22205. },
  22206. ]
  22207. ))
  22208. characterMakers.push(() => makeCharacter(
  22209. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22210. {
  22211. front: {
  22212. height: math.unit(6, "feet"),
  22213. weight: math.unit(150, "lb"),
  22214. name: "Front",
  22215. image: {
  22216. source: "./media/characters/pliskin/front.svg",
  22217. extra: 1469 / 1359,
  22218. bottom: 70 / 1540
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Micro",
  22225. height: math.unit(3, "inches")
  22226. },
  22227. {
  22228. name: "Normal",
  22229. height: math.unit(5 + 11 / 12, "feet"),
  22230. default: true
  22231. },
  22232. {
  22233. name: "Macro",
  22234. height: math.unit(120, "feet")
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(6, "feet"),
  22243. weight: math.unit(150, "lb"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/sammy/front.svg",
  22247. extra: 1193 / 1089,
  22248. bottom: 30.5 / 1226
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Macro",
  22255. height: math.unit(1700, "feet"),
  22256. default: true
  22257. },
  22258. {
  22259. name: "Examacro",
  22260. height: math.unit(2.5e9, "lightyears")
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22266. {
  22267. front: {
  22268. height: math.unit(21, "meters"),
  22269. weight: math.unit(12, "tonnes"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/kuru/front.svg",
  22273. extra: 4301 / 3785,
  22274. bottom: 371.3 / 4691
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Macro",
  22281. height: math.unit(21, "meters"),
  22282. default: true
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(23, "meters"),
  22291. weight: math.unit(12.2, "tonnes"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/rakka/front.svg",
  22295. extra: 4670 / 4169,
  22296. bottom: 301 / 4968.7
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Macro",
  22303. height: math.unit(23, "meters"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22310. {
  22311. front: {
  22312. height: math.unit(6, "feet"),
  22313. weight: math.unit(150, "lb"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/rhys-feline/front.svg",
  22317. extra: 2488 / 2308,
  22318. bottom: 35.67 / 2519.19
  22319. }
  22320. },
  22321. },
  22322. [
  22323. {
  22324. name: "Really Small",
  22325. height: math.unit(1, "nm")
  22326. },
  22327. {
  22328. name: "Micro",
  22329. height: math.unit(4, "inches")
  22330. },
  22331. {
  22332. name: "Normal",
  22333. height: math.unit(4 + 10 / 12, "feet"),
  22334. default: true
  22335. },
  22336. {
  22337. name: "Macro",
  22338. height: math.unit(100, "feet")
  22339. },
  22340. {
  22341. name: "Megamacto",
  22342. height: math.unit(50, "miles")
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22348. {
  22349. side: {
  22350. height: math.unit(30, "feet"),
  22351. weight: math.unit(35000, "kg"),
  22352. name: "Side",
  22353. image: {
  22354. source: "./media/characters/alydar/side.svg",
  22355. extra: 234 / 222,
  22356. bottom: 6.5 / 241
  22357. }
  22358. },
  22359. front: {
  22360. height: math.unit(30, "feet"),
  22361. weight: math.unit(35000, "kg"),
  22362. name: "Front",
  22363. image: {
  22364. source: "./media/characters/alydar/front.svg",
  22365. extra: 223.37 / 210.2,
  22366. bottom: 22.3 / 246.76
  22367. }
  22368. },
  22369. top: {
  22370. height: math.unit(64.54, "feet"),
  22371. weight: math.unit(35000, "kg"),
  22372. name: "Top",
  22373. image: {
  22374. source: "./media/characters/alydar/top.svg"
  22375. }
  22376. },
  22377. anthro: {
  22378. height: math.unit(30, "feet"),
  22379. weight: math.unit(9000, "kg"),
  22380. name: "Anthro",
  22381. image: {
  22382. source: "./media/characters/alydar/anthro.svg",
  22383. extra: 432 / 421,
  22384. bottom: 7.18 / 440
  22385. }
  22386. },
  22387. maw: {
  22388. height: math.unit(11.693, "feet"),
  22389. name: "Maw",
  22390. image: {
  22391. source: "./media/characters/alydar/maw.svg"
  22392. }
  22393. },
  22394. head: {
  22395. height: math.unit(11.693, "feet"),
  22396. name: "Head",
  22397. image: {
  22398. source: "./media/characters/alydar/head.svg"
  22399. }
  22400. },
  22401. headAlt: {
  22402. height: math.unit(12.861, "feet"),
  22403. name: "Head (Alt)",
  22404. image: {
  22405. source: "./media/characters/alydar/head-alt.svg"
  22406. }
  22407. },
  22408. wing: {
  22409. height: math.unit(20.712, "feet"),
  22410. name: "Wing",
  22411. image: {
  22412. source: "./media/characters/alydar/wing.svg"
  22413. }
  22414. },
  22415. wingFeather: {
  22416. height: math.unit(9.662, "feet"),
  22417. name: "Wing Feather",
  22418. image: {
  22419. source: "./media/characters/alydar/wing-feather.svg"
  22420. }
  22421. },
  22422. countourFeather: {
  22423. height: math.unit(4.154, "feet"),
  22424. name: "Contour Feather",
  22425. image: {
  22426. source: "./media/characters/alydar/contour-feather.svg"
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Diplomatic",
  22433. height: math.unit(13, "feet"),
  22434. default: true
  22435. },
  22436. {
  22437. name: "Small",
  22438. height: math.unit(30, "feet")
  22439. },
  22440. {
  22441. name: "Normal",
  22442. height: math.unit(95, "feet"),
  22443. default: true
  22444. },
  22445. {
  22446. name: "Large",
  22447. height: math.unit(285, "feet")
  22448. },
  22449. {
  22450. name: "Incomprehensible",
  22451. height: math.unit(450, "megameters")
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22457. {
  22458. side: {
  22459. height: math.unit(11, "feet"),
  22460. weight: math.unit(1750, "kg"),
  22461. name: "Side",
  22462. image: {
  22463. source: "./media/characters/selicia/side.svg",
  22464. extra: 440 / 396,
  22465. bottom: 24.8 / 465.979
  22466. }
  22467. },
  22468. maw: {
  22469. height: math.unit(4.665, "feet"),
  22470. name: "Maw",
  22471. image: {
  22472. source: "./media/characters/selicia/maw.svg"
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Normal",
  22479. height: math.unit(11, "feet"),
  22480. default: true
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22486. {
  22487. side: {
  22488. height: math.unit(2 + 6 / 12, "feet"),
  22489. weight: math.unit(30, "lb"),
  22490. name: "Side",
  22491. image: {
  22492. source: "./media/characters/layla/side.svg",
  22493. extra: 244 / 188,
  22494. bottom: 18.2 / 262.1
  22495. }
  22496. },
  22497. back: {
  22498. height: math.unit(2 + 6 / 12, "feet"),
  22499. weight: math.unit(30, "lb"),
  22500. name: "Back",
  22501. image: {
  22502. source: "./media/characters/layla/back.svg",
  22503. extra: 308 / 241.5,
  22504. bottom: 8.9 / 316.8
  22505. }
  22506. },
  22507. cumming: {
  22508. height: math.unit(2 + 6 / 12, "feet"),
  22509. weight: math.unit(30, "lb"),
  22510. name: "Cumming",
  22511. image: {
  22512. source: "./media/characters/layla/cumming.svg",
  22513. extra: 342 / 279,
  22514. bottom: 595 / 938
  22515. }
  22516. },
  22517. dickFlaccid: {
  22518. height: math.unit(2.595, "feet"),
  22519. name: "Flaccid Genitals",
  22520. image: {
  22521. source: "./media/characters/layla/dick-flaccid.svg"
  22522. }
  22523. },
  22524. dickErect: {
  22525. height: math.unit(2.359, "feet"),
  22526. name: "Erect Genitals",
  22527. image: {
  22528. source: "./media/characters/layla/dick-erect.svg"
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Micro",
  22535. height: math.unit(1, "inch")
  22536. },
  22537. {
  22538. name: "Small",
  22539. height: math.unit(1, "foot")
  22540. },
  22541. {
  22542. name: "Normal",
  22543. height: math.unit(2 + 6 / 12, "feet"),
  22544. default: true
  22545. },
  22546. {
  22547. name: "Macro",
  22548. height: math.unit(200, "feet")
  22549. },
  22550. {
  22551. name: "Megamacro",
  22552. height: math.unit(1000, "miles")
  22553. },
  22554. {
  22555. name: "Planetary",
  22556. height: math.unit(8000, "miles")
  22557. },
  22558. {
  22559. name: "True Layla",
  22560. height: math.unit(200000 * 7, "multiverses")
  22561. },
  22562. ]
  22563. ))
  22564. characterMakers.push(() => makeCharacter(
  22565. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22566. {
  22567. back: {
  22568. height: math.unit(10.5, "feet"),
  22569. weight: math.unit(800, "lb"),
  22570. name: "Back",
  22571. image: {
  22572. source: "./media/characters/knox/back.svg",
  22573. extra: 1486 / 1089,
  22574. bottom: 107 / 1601.4
  22575. }
  22576. },
  22577. side: {
  22578. height: math.unit(10.5, "feet"),
  22579. weight: math.unit(800, "lb"),
  22580. name: "Side",
  22581. image: {
  22582. source: "./media/characters/knox/side.svg",
  22583. extra: 244 / 218,
  22584. bottom: 14 / 260
  22585. }
  22586. },
  22587. },
  22588. [
  22589. {
  22590. name: "Compact",
  22591. height: math.unit(10.5, "feet"),
  22592. default: true
  22593. },
  22594. {
  22595. name: "Dynamax",
  22596. height: math.unit(210, "feet")
  22597. },
  22598. {
  22599. name: "Full Macro",
  22600. height: math.unit(850, "feet")
  22601. },
  22602. ]
  22603. ))
  22604. characterMakers.push(() => makeCharacter(
  22605. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22606. {
  22607. front: {
  22608. height: math.unit(6, "feet"),
  22609. weight: math.unit(152, "lb"),
  22610. name: "Front",
  22611. image: {
  22612. source: "./media/characters/shin-pikachu/front.svg",
  22613. extra: 1574 / 1480,
  22614. bottom: 53.3 / 1626
  22615. }
  22616. },
  22617. hand: {
  22618. height: math.unit(1.055, "feet"),
  22619. name: "Hand",
  22620. image: {
  22621. source: "./media/characters/shin-pikachu/hand.svg"
  22622. }
  22623. },
  22624. foot: {
  22625. height: math.unit(1.1, "feet"),
  22626. name: "Foot",
  22627. image: {
  22628. source: "./media/characters/shin-pikachu/foot.svg"
  22629. }
  22630. },
  22631. collar: {
  22632. height: math.unit(0.386, "feet"),
  22633. name: "Collar",
  22634. image: {
  22635. source: "./media/characters/shin-pikachu/collar.svg"
  22636. }
  22637. },
  22638. },
  22639. [
  22640. {
  22641. name: "Smallest",
  22642. height: math.unit(0.5, "inches")
  22643. },
  22644. {
  22645. name: "Micro",
  22646. height: math.unit(6, "inches")
  22647. },
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(6, "feet"),
  22651. default: true
  22652. },
  22653. {
  22654. name: "Macro",
  22655. height: math.unit(150, "feet")
  22656. },
  22657. ]
  22658. ))
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22661. {
  22662. front: {
  22663. height: math.unit(28, "feet"),
  22664. weight: math.unit(10500, "lb"),
  22665. name: "Front",
  22666. image: {
  22667. source: "./media/characters/kayda/front.svg",
  22668. extra: 1536 / 1428,
  22669. bottom: 68.7 / 1603
  22670. }
  22671. },
  22672. back: {
  22673. height: math.unit(28, "feet"),
  22674. weight: math.unit(10500, "lb"),
  22675. name: "Back",
  22676. image: {
  22677. source: "./media/characters/kayda/back.svg",
  22678. extra: 1557 / 1464,
  22679. bottom: 39.5 / 1597.49
  22680. }
  22681. },
  22682. dick: {
  22683. height: math.unit(3.858, "feet"),
  22684. name: "Dick",
  22685. image: {
  22686. source: "./media/characters/kayda/dick.svg"
  22687. }
  22688. },
  22689. },
  22690. [
  22691. {
  22692. name: "Macro",
  22693. height: math.unit(28, "feet"),
  22694. default: true
  22695. },
  22696. ]
  22697. ))
  22698. characterMakers.push(() => makeCharacter(
  22699. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22700. {
  22701. front: {
  22702. height: math.unit(10 + 11 / 12, "feet"),
  22703. weight: math.unit(1400, "lb"),
  22704. name: "Front",
  22705. image: {
  22706. source: "./media/characters/brian/front.svg",
  22707. extra: 737 / 692,
  22708. bottom: 55.4 / 785
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Normal",
  22715. height: math.unit(10 + 11 / 12, "feet"),
  22716. default: true
  22717. },
  22718. ]
  22719. ))
  22720. characterMakers.push(() => makeCharacter(
  22721. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22722. {
  22723. front: {
  22724. height: math.unit(5 + 8 / 12, "feet"),
  22725. weight: math.unit(140, "lb"),
  22726. name: "Front",
  22727. image: {
  22728. source: "./media/characters/khemri/front.svg",
  22729. extra: 4780 / 4059,
  22730. bottom: 80.1 / 4859.25
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Micro",
  22737. height: math.unit(6, "inches")
  22738. },
  22739. {
  22740. name: "Normal",
  22741. height: math.unit(5 + 8 / 12, "feet"),
  22742. default: true
  22743. },
  22744. ]
  22745. ))
  22746. characterMakers.push(() => makeCharacter(
  22747. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22748. {
  22749. front: {
  22750. height: math.unit(13, "feet"),
  22751. weight: math.unit(1700, "lb"),
  22752. name: "Front",
  22753. image: {
  22754. source: "./media/characters/felix-braveheart/front.svg",
  22755. extra: 1222 / 1157,
  22756. bottom: 53.2 / 1280
  22757. }
  22758. },
  22759. back: {
  22760. height: math.unit(13, "feet"),
  22761. weight: math.unit(1700, "lb"),
  22762. name: "Back",
  22763. image: {
  22764. source: "./media/characters/felix-braveheart/back.svg",
  22765. extra: 1277 / 1203,
  22766. bottom: 50.2 / 1327
  22767. }
  22768. },
  22769. feral: {
  22770. height: math.unit(6, "feet"),
  22771. weight: math.unit(400, "lb"),
  22772. name: "Feral",
  22773. image: {
  22774. source: "./media/characters/felix-braveheart/feral.svg",
  22775. extra: 682 / 625,
  22776. bottom: 6.9 / 688
  22777. }
  22778. },
  22779. },
  22780. [
  22781. {
  22782. name: "Normal",
  22783. height: math.unit(13, "feet"),
  22784. default: true
  22785. },
  22786. ]
  22787. ))
  22788. characterMakers.push(() => makeCharacter(
  22789. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22790. {
  22791. side: {
  22792. height: math.unit(5 + 11 / 12, "feet"),
  22793. weight: math.unit(1400, "lb"),
  22794. name: "Side",
  22795. image: {
  22796. source: "./media/characters/shadow-blade/side.svg",
  22797. extra: 1726 / 1267,
  22798. bottom: 58.4 / 1785
  22799. }
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Normal",
  22805. height: math.unit(5 + 11 / 12, "feet"),
  22806. default: true
  22807. },
  22808. ]
  22809. ))
  22810. characterMakers.push(() => makeCharacter(
  22811. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22812. {
  22813. front: {
  22814. height: math.unit(1 + 6 / 12, "feet"),
  22815. weight: math.unit(25, "lb"),
  22816. name: "Front",
  22817. image: {
  22818. source: "./media/characters/karla-halldor/front.svg",
  22819. extra: 1459 / 1383,
  22820. bottom: 12 / 1472
  22821. }
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(1 + 6 / 12, "feet"),
  22828. default: true
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22834. {
  22835. front: {
  22836. height: math.unit(6 + 2 / 12, "feet"),
  22837. weight: math.unit(160, "lb"),
  22838. name: "Front",
  22839. image: {
  22840. source: "./media/characters/ariam/front.svg",
  22841. extra: 714 / 617,
  22842. bottom: 23.4 / 737,
  22843. }
  22844. },
  22845. squatting: {
  22846. height: math.unit(4.1, "feet"),
  22847. weight: math.unit(160, "lb"),
  22848. name: "Squatting",
  22849. image: {
  22850. source: "./media/characters/ariam/squatting.svg",
  22851. extra: 2617 / 2112,
  22852. bottom: 61.2 / 2681,
  22853. }
  22854. },
  22855. },
  22856. [
  22857. {
  22858. name: "Normal",
  22859. height: math.unit(6 + 2 / 12, "feet"),
  22860. default: true
  22861. },
  22862. {
  22863. name: "Normal+",
  22864. height: math.unit(4, "meters")
  22865. },
  22866. {
  22867. name: "Macro",
  22868. height: math.unit(50, "meters")
  22869. },
  22870. {
  22871. name: "Macro+",
  22872. height: math.unit(100, "meters")
  22873. },
  22874. {
  22875. name: "Megamacro",
  22876. height: math.unit(20, "km")
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(1.67, "meters"),
  22885. weight: math.unit(140, "lb"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22889. extra: 438 / 410,
  22890. bottom: 0.75 / 439
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Shrunken",
  22897. height: math.unit(7.6, "cm")
  22898. },
  22899. {
  22900. name: "Human Scale",
  22901. height: math.unit(1.67, "meters")
  22902. },
  22903. {
  22904. name: "Wolxi Scale",
  22905. height: math.unit(36.7, "meters"),
  22906. default: true
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(1.73, "meters"),
  22915. weight: math.unit(240, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/izue-two-mothers/front.svg",
  22919. extra: 469 / 437,
  22920. bottom: 1.24 / 470.6
  22921. }
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "Shrunken",
  22927. height: math.unit(7.86, "cm")
  22928. },
  22929. {
  22930. name: "Human Scale",
  22931. height: math.unit(1.73, "meters")
  22932. },
  22933. {
  22934. name: "Wolxi Scale",
  22935. height: math.unit(38, "meters"),
  22936. default: true
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22942. {
  22943. front: {
  22944. height: math.unit(1.55, "meters"),
  22945. weight: math.unit(120, "lb"),
  22946. name: "Front",
  22947. image: {
  22948. source: "./media/characters/teeku-love-shack/front.svg",
  22949. extra: 387 / 362,
  22950. bottom: 1.51 / 388
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Shrunken",
  22957. height: math.unit(7, "cm")
  22958. },
  22959. {
  22960. name: "Human Scale",
  22961. height: math.unit(1.55, "meters")
  22962. },
  22963. {
  22964. name: "Wolxi Scale",
  22965. height: math.unit(34.1, "meters"),
  22966. default: true
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22972. {
  22973. front: {
  22974. height: math.unit(1.83, "meters"),
  22975. weight: math.unit(135, "lb"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/dejma-the-red/front.svg",
  22979. extra: 480 / 458,
  22980. bottom: 1.8 / 482
  22981. }
  22982. },
  22983. },
  22984. [
  22985. {
  22986. name: "Shrunken",
  22987. height: math.unit(8.3, "cm")
  22988. },
  22989. {
  22990. name: "Human Scale",
  22991. height: math.unit(1.83, "meters")
  22992. },
  22993. {
  22994. name: "Wolxi Scale",
  22995. height: math.unit(40, "meters"),
  22996. default: true
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23002. {
  23003. front: {
  23004. height: math.unit(1.78, "meters"),
  23005. weight: math.unit(65, "kg"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/aki/front.svg",
  23009. extra: 452 / 415
  23010. }
  23011. },
  23012. frontNsfw: {
  23013. height: math.unit(1.78, "meters"),
  23014. weight: math.unit(65, "kg"),
  23015. name: "Front (NSFW)",
  23016. image: {
  23017. source: "./media/characters/aki/front-nsfw.svg",
  23018. extra: 452 / 415
  23019. }
  23020. },
  23021. back: {
  23022. height: math.unit(1.78, "meters"),
  23023. weight: math.unit(65, "kg"),
  23024. name: "Back",
  23025. image: {
  23026. source: "./media/characters/aki/back.svg",
  23027. extra: 452 / 415
  23028. }
  23029. },
  23030. rump: {
  23031. height: math.unit(2.05, "feet"),
  23032. name: "Rump",
  23033. image: {
  23034. source: "./media/characters/aki/rump.svg"
  23035. }
  23036. },
  23037. dick: {
  23038. height: math.unit(0.95, "feet"),
  23039. name: "Dick",
  23040. image: {
  23041. source: "./media/characters/aki/dick.svg"
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Micro",
  23048. height: math.unit(15, "cm")
  23049. },
  23050. {
  23051. name: "Normal",
  23052. height: math.unit(178, "cm"),
  23053. default: true
  23054. },
  23055. {
  23056. name: "Macro",
  23057. height: math.unit(214, "m")
  23058. },
  23059. {
  23060. name: "Macro+",
  23061. height: math.unit(534, "m")
  23062. },
  23063. ]
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23067. {
  23068. front: {
  23069. height: math.unit(5 + 5 / 12, "feet"),
  23070. weight: math.unit(120, "lb"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/ari/front.svg",
  23074. extra: 714.5 / 682,
  23075. bottom: 8 / 722.5
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(5 + 5 / 12, "feet")
  23083. },
  23084. {
  23085. name: "Macro",
  23086. height: math.unit(100, "feet"),
  23087. default: true
  23088. },
  23089. {
  23090. name: "Megamacro",
  23091. height: math.unit(100, "miles")
  23092. },
  23093. {
  23094. name: "Gigamacro",
  23095. height: math.unit(80000, "miles")
  23096. },
  23097. ]
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23101. {
  23102. side: {
  23103. height: math.unit(9, "feet"),
  23104. weight: math.unit(400, "kg"),
  23105. name: "Side",
  23106. image: {
  23107. source: "./media/characters/bolt/side.svg",
  23108. extra: 1126 / 896,
  23109. bottom: 60 / 1187.3,
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Micro",
  23116. height: math.unit(5, "inches")
  23117. },
  23118. {
  23119. name: "Normal",
  23120. height: math.unit(9, "feet"),
  23121. default: true
  23122. },
  23123. {
  23124. name: "Macro",
  23125. height: math.unit(700, "feet")
  23126. },
  23127. {
  23128. name: "Max Size",
  23129. height: math.unit(1.52e22, "yottameters")
  23130. },
  23131. ]
  23132. ))
  23133. characterMakers.push(() => makeCharacter(
  23134. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23135. {
  23136. front: {
  23137. height: math.unit(4.53, "meters"),
  23138. weight: math.unit(3, "tons"),
  23139. name: "Front",
  23140. image: {
  23141. source: "./media/characters/draekon-sylviar/front.svg",
  23142. extra: 1228 / 1068,
  23143. bottom: 41 / 1270
  23144. }
  23145. },
  23146. tail: {
  23147. height: math.unit(1.772, "meter"),
  23148. name: "Tail",
  23149. image: {
  23150. source: "./media/characters/draekon-sylviar/tail.svg"
  23151. }
  23152. },
  23153. head: {
  23154. height: math.unit(1.331, "meter"),
  23155. name: "Head",
  23156. image: {
  23157. source: "./media/characters/draekon-sylviar/head.svg"
  23158. }
  23159. },
  23160. hand: {
  23161. height: math.unit(0.564, "meter"),
  23162. name: "Hand",
  23163. image: {
  23164. source: "./media/characters/draekon-sylviar/hand.svg"
  23165. }
  23166. },
  23167. foot: {
  23168. height: math.unit(0.621, "meter"),
  23169. name: "Foot",
  23170. image: {
  23171. source: "./media/characters/draekon-sylviar/foot.svg",
  23172. bottom: 32 / 324
  23173. }
  23174. },
  23175. dick: {
  23176. height: math.unit(61, "cm"),
  23177. name: "Dick",
  23178. image: {
  23179. source: "./media/characters/draekon-sylviar/dick.svg"
  23180. }
  23181. },
  23182. dickseparated: {
  23183. height: math.unit(61, "cm"),
  23184. name: "Dick-separated",
  23185. image: {
  23186. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Small",
  23193. height: math.unit(4.53 / 2, "meters"),
  23194. default: true
  23195. },
  23196. {
  23197. name: "Normal",
  23198. height: math.unit(4.53, "meters"),
  23199. default: true
  23200. },
  23201. {
  23202. name: "Large",
  23203. height: math.unit(4.53 * 2, "meters"),
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(6 + 2 / 12, "feet"),
  23212. weight: math.unit(180, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/brawler/front.svg",
  23216. extra: 3301 / 3027,
  23217. bottom: 138 / 3439
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(6 + 2 / 12, "feet"),
  23225. default: true
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23231. {
  23232. front: {
  23233. height: math.unit(11, "feet"),
  23234. weight: math.unit(1000, "lb"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/alex/front.svg",
  23238. bottom: 44.5 / 620
  23239. }
  23240. },
  23241. },
  23242. [
  23243. {
  23244. name: "Micro",
  23245. height: math.unit(5, "inches")
  23246. },
  23247. {
  23248. name: "Normal",
  23249. height: math.unit(11, "feet"),
  23250. default: true
  23251. },
  23252. {
  23253. name: "Macro",
  23254. height: math.unit(9.5e9, "feet")
  23255. },
  23256. {
  23257. name: "Max Size",
  23258. height: math.unit(1.4e283, "yottameters")
  23259. },
  23260. ]
  23261. ))
  23262. characterMakers.push(() => makeCharacter(
  23263. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23264. {
  23265. female: {
  23266. height: math.unit(29.9, "m"),
  23267. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23268. name: "Female",
  23269. image: {
  23270. source: "./media/characters/zenari/female.svg",
  23271. extra: 3281.6 / 3217,
  23272. bottom: 72.2 / 3353
  23273. }
  23274. },
  23275. male: {
  23276. height: math.unit(27.7, "m"),
  23277. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23278. name: "Male",
  23279. image: {
  23280. source: "./media/characters/zenari/male.svg",
  23281. extra: 3008 / 2991,
  23282. bottom: 54.6 / 3069
  23283. }
  23284. },
  23285. },
  23286. [
  23287. {
  23288. name: "Macro",
  23289. height: math.unit(29.7, "meters"),
  23290. default: true
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23296. {
  23297. female: {
  23298. height: math.unit(23.8, "m"),
  23299. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23300. name: "Female",
  23301. image: {
  23302. source: "./media/characters/mactarian/female.svg",
  23303. extra: 2662 / 2569,
  23304. bottom: 73 / 2736
  23305. }
  23306. },
  23307. male: {
  23308. height: math.unit(23.8, "m"),
  23309. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23310. name: "Male",
  23311. image: {
  23312. source: "./media/characters/mactarian/male.svg",
  23313. extra: 2673 / 2600,
  23314. bottom: 76 / 2750
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Macro",
  23321. height: math.unit(23.8, "meters"),
  23322. default: true
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23328. {
  23329. female: {
  23330. height: math.unit(19.3, "m"),
  23331. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23332. name: "Female",
  23333. image: {
  23334. source: "./media/characters/umok/female.svg",
  23335. extra: 2186 / 2078,
  23336. bottom: 87 / 2277
  23337. }
  23338. },
  23339. male: {
  23340. height: math.unit(19.5, "m"),
  23341. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23342. name: "Male",
  23343. image: {
  23344. source: "./media/characters/umok/male.svg",
  23345. extra: 2233 / 2140,
  23346. bottom: 24.4 / 2258
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Macro",
  23353. height: math.unit(19.3, "meters"),
  23354. default: true
  23355. },
  23356. ]
  23357. ))
  23358. characterMakers.push(() => makeCharacter(
  23359. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23360. {
  23361. female: {
  23362. height: math.unit(26.15, "m"),
  23363. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23364. name: "Female",
  23365. image: {
  23366. source: "./media/characters/joraxian/female.svg",
  23367. extra: 2912 / 2824,
  23368. bottom: 36 / 2956
  23369. }
  23370. },
  23371. male: {
  23372. height: math.unit(25.4, "m"),
  23373. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23374. name: "Male",
  23375. image: {
  23376. source: "./media/characters/joraxian/male.svg",
  23377. extra: 2877 / 2721,
  23378. bottom: 82 / 2967
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Macro",
  23385. height: math.unit(26.15, "meters"),
  23386. default: true
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23392. {
  23393. female: {
  23394. height: math.unit(21.6, "m"),
  23395. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23396. name: "Female",
  23397. image: {
  23398. source: "./media/characters/sthara/female.svg",
  23399. extra: 2516 / 2347,
  23400. bottom: 21.5 / 2537
  23401. }
  23402. },
  23403. male: {
  23404. height: math.unit(24, "m"),
  23405. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23406. name: "Male",
  23407. image: {
  23408. source: "./media/characters/sthara/male.svg",
  23409. extra: 2732 / 2607,
  23410. bottom: 23 / 2732
  23411. }
  23412. },
  23413. },
  23414. [
  23415. {
  23416. name: "Macro",
  23417. height: math.unit(21.6, "meters"),
  23418. default: true
  23419. },
  23420. ]
  23421. ))
  23422. characterMakers.push(() => makeCharacter(
  23423. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23424. {
  23425. front: {
  23426. height: math.unit(6 + 4 / 12, "feet"),
  23427. weight: math.unit(175, "lb"),
  23428. name: "Front",
  23429. image: {
  23430. source: "./media/characters/luka-bryzant/front.svg",
  23431. extra: 311 / 289,
  23432. bottom: 4 / 315
  23433. }
  23434. },
  23435. back: {
  23436. height: math.unit(6 + 4 / 12, "feet"),
  23437. weight: math.unit(175, "lb"),
  23438. name: "Back",
  23439. image: {
  23440. source: "./media/characters/luka-bryzant/back.svg",
  23441. extra: 311 / 289,
  23442. bottom: 3.8 / 313.7
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Micro",
  23449. height: math.unit(10, "inches")
  23450. },
  23451. {
  23452. name: "Normal",
  23453. height: math.unit(6 + 4 / 12, "feet"),
  23454. default: true
  23455. },
  23456. {
  23457. name: "Large",
  23458. height: math.unit(12, "feet")
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23464. {
  23465. front: {
  23466. height: math.unit(5 + 7 / 12, "feet"),
  23467. weight: math.unit(185, "lb"),
  23468. name: "Front",
  23469. image: {
  23470. source: "./media/characters/aman-aquila/front.svg",
  23471. extra: 1013 / 976,
  23472. bottom: 45.6 / 1057
  23473. }
  23474. },
  23475. side: {
  23476. height: math.unit(5 + 7 / 12, "feet"),
  23477. weight: math.unit(185, "lb"),
  23478. name: "Side",
  23479. image: {
  23480. source: "./media/characters/aman-aquila/side.svg",
  23481. extra: 1054 / 1011,
  23482. bottom: 15 / 1070
  23483. }
  23484. },
  23485. back: {
  23486. height: math.unit(5 + 7 / 12, "feet"),
  23487. weight: math.unit(185, "lb"),
  23488. name: "Back",
  23489. image: {
  23490. source: "./media/characters/aman-aquila/back.svg",
  23491. extra: 1026 / 970,
  23492. bottom: 12 / 1039
  23493. }
  23494. },
  23495. head: {
  23496. height: math.unit(1.211, "feet"),
  23497. name: "Head",
  23498. image: {
  23499. source: "./media/characters/aman-aquila/head.svg",
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Minimicro",
  23506. height: math.unit(0.057, "inches")
  23507. },
  23508. {
  23509. name: "Micro",
  23510. height: math.unit(7, "inches")
  23511. },
  23512. {
  23513. name: "Mini",
  23514. height: math.unit(3 + 7 / 12, "feet")
  23515. },
  23516. {
  23517. name: "Normal",
  23518. height: math.unit(5 + 7 / 12, "feet"),
  23519. default: true
  23520. },
  23521. {
  23522. name: "Macro",
  23523. height: math.unit(157 + 7 / 12, "feet")
  23524. },
  23525. {
  23526. name: "Megamacro",
  23527. height: math.unit(1557 + 7 / 12, "feet")
  23528. },
  23529. {
  23530. name: "Gigamacro",
  23531. height: math.unit(15557 + 7 / 12, "feet")
  23532. },
  23533. ]
  23534. ))
  23535. characterMakers.push(() => makeCharacter(
  23536. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23537. {
  23538. front: {
  23539. height: math.unit(3 + 2 / 12, "inches"),
  23540. weight: math.unit(0.3, "ounces"),
  23541. name: "Front",
  23542. image: {
  23543. source: "./media/characters/hiphae/front.svg",
  23544. extra: 1931 / 1683,
  23545. bottom: 24 / 1955
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Normal",
  23552. height: math.unit(3 + 1 / 2, "inches"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(5 + 10 / 12, "feet"),
  23562. weight: math.unit(165, "lb"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/nicky/front.svg",
  23566. extra: 3144 / 2886,
  23567. bottom: 45.6 / 3192
  23568. }
  23569. },
  23570. back: {
  23571. height: math.unit(5 + 10 / 12, "feet"),
  23572. weight: math.unit(165, "lb"),
  23573. name: "Back",
  23574. image: {
  23575. source: "./media/characters/nicky/back.svg",
  23576. extra: 3055 / 2804,
  23577. bottom: 28.4 / 3087
  23578. }
  23579. },
  23580. frontclothed: {
  23581. height: math.unit(5 + 10 / 12, "feet"),
  23582. weight: math.unit(165, "lb"),
  23583. name: "Front-clothed",
  23584. image: {
  23585. source: "./media/characters/nicky/front-clothed.svg",
  23586. extra: 3184.9 / 2926.9,
  23587. bottom: 86.5 / 3239.9
  23588. }
  23589. },
  23590. foot: {
  23591. height: math.unit(1.16, "feet"),
  23592. name: "Foot",
  23593. image: {
  23594. source: "./media/characters/nicky/foot.svg"
  23595. }
  23596. },
  23597. feet: {
  23598. height: math.unit(1.34, "feet"),
  23599. name: "Feet",
  23600. image: {
  23601. source: "./media/characters/nicky/feet.svg"
  23602. }
  23603. },
  23604. maw: {
  23605. height: math.unit(0.9, "feet"),
  23606. name: "Maw",
  23607. image: {
  23608. source: "./media/characters/nicky/maw.svg"
  23609. }
  23610. },
  23611. },
  23612. [
  23613. {
  23614. name: "Normal",
  23615. height: math.unit(5 + 10 / 12, "feet"),
  23616. default: true
  23617. },
  23618. {
  23619. name: "Macro",
  23620. height: math.unit(60, "feet")
  23621. },
  23622. {
  23623. name: "Megamacro",
  23624. height: math.unit(1, "mile")
  23625. },
  23626. ]
  23627. ))
  23628. characterMakers.push(() => makeCharacter(
  23629. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23630. {
  23631. side: {
  23632. height: math.unit(10, "feet"),
  23633. weight: math.unit(600, "lb"),
  23634. name: "Side",
  23635. image: {
  23636. source: "./media/characters/blair/side.svg",
  23637. bottom: 16.6 / 475,
  23638. extra: 458 / 431
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Micro",
  23645. height: math.unit(8, "inches")
  23646. },
  23647. {
  23648. name: "Normal",
  23649. height: math.unit(10, "feet"),
  23650. default: true
  23651. },
  23652. {
  23653. name: "Macro",
  23654. height: math.unit(180, "feet")
  23655. },
  23656. ]
  23657. ))
  23658. characterMakers.push(() => makeCharacter(
  23659. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23660. {
  23661. front: {
  23662. height: math.unit(5 + 4 / 12, "feet"),
  23663. weight: math.unit(125, "lb"),
  23664. name: "Front",
  23665. image: {
  23666. source: "./media/characters/fisher/front.svg",
  23667. extra: 444 / 390,
  23668. bottom: 2 / 444.8
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Micro",
  23675. height: math.unit(4, "inches")
  23676. },
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(5 + 4 / 12, "feet"),
  23680. default: true
  23681. },
  23682. {
  23683. name: "Macro",
  23684. height: math.unit(100, "feet")
  23685. },
  23686. ]
  23687. ))
  23688. characterMakers.push(() => makeCharacter(
  23689. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23690. {
  23691. front: {
  23692. height: math.unit(6.71, "feet"),
  23693. weight: math.unit(200, "lb"),
  23694. capacity: math.unit(1000000, "people"),
  23695. name: "Front",
  23696. image: {
  23697. source: "./media/characters/gliss/front.svg",
  23698. extra: 2347 / 2231,
  23699. bottom: 113 / 2462
  23700. }
  23701. },
  23702. hammerspaceSize: {
  23703. height: math.unit(6.71 * 717, "feet"),
  23704. weight: math.unit(200, "lb"),
  23705. capacity: math.unit(1000000, "people"),
  23706. name: "Hammerspace Size",
  23707. image: {
  23708. source: "./media/characters/gliss/front.svg",
  23709. extra: 2347 / 2231,
  23710. bottom: 113 / 2462
  23711. }
  23712. },
  23713. },
  23714. [
  23715. {
  23716. name: "Normal",
  23717. height: math.unit(6.71, "feet"),
  23718. default: true
  23719. },
  23720. ]
  23721. ))
  23722. characterMakers.push(() => makeCharacter(
  23723. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23724. {
  23725. side: {
  23726. height: math.unit(1.44, "m"),
  23727. weight: math.unit(80, "kg"),
  23728. name: "Side",
  23729. image: {
  23730. source: "./media/characters/dune-anderson/side.svg",
  23731. bottom: 49 / 1426
  23732. }
  23733. },
  23734. },
  23735. [
  23736. {
  23737. name: "Wolf-sized",
  23738. height: math.unit(1.44, "meters")
  23739. },
  23740. {
  23741. name: "Normal",
  23742. height: math.unit(5.05, "meters"),
  23743. default: true
  23744. },
  23745. {
  23746. name: "Big",
  23747. height: math.unit(14.4, "meters")
  23748. },
  23749. {
  23750. name: "Huge",
  23751. height: math.unit(144, "meters")
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(7, "feet"),
  23760. weight: math.unit(425, "lb"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/hind/front.svg",
  23764. extra: 2091 / 1860,
  23765. bottom: 129 / 2220
  23766. }
  23767. },
  23768. back: {
  23769. height: math.unit(7, "feet"),
  23770. weight: math.unit(425, "lb"),
  23771. name: "Back",
  23772. image: {
  23773. source: "./media/characters/hind/back.svg",
  23774. extra: 2091 / 1860,
  23775. bottom: 24.6 / 2309
  23776. }
  23777. },
  23778. tail: {
  23779. height: math.unit(2.8, "feet"),
  23780. name: "Tail",
  23781. image: {
  23782. source: "./media/characters/hind/tail.svg"
  23783. }
  23784. },
  23785. head: {
  23786. height: math.unit(2.55, "feet"),
  23787. name: "Head",
  23788. image: {
  23789. source: "./media/characters/hind/head.svg"
  23790. }
  23791. },
  23792. },
  23793. [
  23794. {
  23795. name: "XS",
  23796. height: math.unit(0.7, "feet")
  23797. },
  23798. {
  23799. name: "Normal",
  23800. height: math.unit(7, "feet"),
  23801. default: true
  23802. },
  23803. {
  23804. name: "XL",
  23805. height: math.unit(70, "feet")
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23811. {
  23812. front: {
  23813. height: math.unit(6, "feet"),
  23814. weight: math.unit(150, "lb"),
  23815. name: "Front",
  23816. image: {
  23817. source: "./media/characters/dylan-skaven/front.svg",
  23818. extra: 2318 / 2063,
  23819. bottom: 93.4 / 2410
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Nano",
  23826. height: math.unit(1, "mm")
  23827. },
  23828. {
  23829. name: "Micro",
  23830. height: math.unit(1, "cm")
  23831. },
  23832. {
  23833. name: "Normal",
  23834. height: math.unit(2.1, "meters"),
  23835. default: true
  23836. },
  23837. ]
  23838. ))
  23839. characterMakers.push(() => makeCharacter(
  23840. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23841. {
  23842. front: {
  23843. height: math.unit(7 + 5 / 12, "feet"),
  23844. weight: math.unit(357, "lb"),
  23845. name: "Front",
  23846. image: {
  23847. source: "./media/characters/solex-draconov/front.svg",
  23848. extra: 1993 / 1865,
  23849. bottom: 117 / 2111
  23850. }
  23851. },
  23852. },
  23853. [
  23854. {
  23855. name: "Natural Height",
  23856. height: math.unit(7 + 5 / 12, "feet"),
  23857. default: true
  23858. },
  23859. {
  23860. name: "Macro",
  23861. height: math.unit(350, "feet")
  23862. },
  23863. {
  23864. name: "Macro+",
  23865. height: math.unit(1000, "feet")
  23866. },
  23867. {
  23868. name: "Megamacro",
  23869. height: math.unit(20, "km")
  23870. },
  23871. {
  23872. name: "Megamacro+",
  23873. height: math.unit(1000, "km")
  23874. },
  23875. {
  23876. name: "Gigamacro",
  23877. height: math.unit(2.5, "Gm")
  23878. },
  23879. {
  23880. name: "Teramacro",
  23881. height: math.unit(15, "Tm")
  23882. },
  23883. {
  23884. name: "Galactic",
  23885. height: math.unit(30, "Zm")
  23886. },
  23887. {
  23888. name: "Universal",
  23889. height: math.unit(21000, "Ym")
  23890. },
  23891. {
  23892. name: "Omniversal",
  23893. height: math.unit(9.861e50, "Ym")
  23894. },
  23895. {
  23896. name: "Existential",
  23897. height: math.unit(1e300, "meters")
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23903. {
  23904. side: {
  23905. height: math.unit(25, "feet"),
  23906. weight: math.unit(90000, "lb"),
  23907. name: "Side",
  23908. image: {
  23909. source: "./media/characters/mandarax/side.svg",
  23910. extra: 614 / 332,
  23911. bottom: 55 / 630
  23912. }
  23913. },
  23914. head: {
  23915. height: math.unit(11.4, "feet"),
  23916. name: "Head",
  23917. image: {
  23918. source: "./media/characters/mandarax/head.svg"
  23919. }
  23920. },
  23921. belly: {
  23922. height: math.unit(33, "feet"),
  23923. name: "Belly",
  23924. capacity: math.unit(500, "people"),
  23925. image: {
  23926. source: "./media/characters/mandarax/belly.svg"
  23927. }
  23928. },
  23929. dick: {
  23930. height: math.unit(8.46, "feet"),
  23931. name: "Dick",
  23932. image: {
  23933. source: "./media/characters/mandarax/dick.svg"
  23934. }
  23935. },
  23936. top: {
  23937. height: math.unit(28, "meters"),
  23938. name: "Top",
  23939. image: {
  23940. source: "./media/characters/mandarax/top.svg"
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Normal",
  23947. height: math.unit(25, "feet"),
  23948. default: true
  23949. },
  23950. ]
  23951. ))
  23952. characterMakers.push(() => makeCharacter(
  23953. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23954. {
  23955. front: {
  23956. height: math.unit(5, "feet"),
  23957. weight: math.unit(90, "lb"),
  23958. name: "Front",
  23959. image: {
  23960. source: "./media/characters/pixil/front.svg",
  23961. extra: 2000 / 1618,
  23962. bottom: 12.3 / 2011
  23963. }
  23964. },
  23965. },
  23966. [
  23967. {
  23968. name: "Normal",
  23969. height: math.unit(5, "feet"),
  23970. default: true
  23971. },
  23972. {
  23973. name: "Megamacro",
  23974. height: math.unit(10, "miles"),
  23975. },
  23976. ]
  23977. ))
  23978. characterMakers.push(() => makeCharacter(
  23979. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23980. {
  23981. front: {
  23982. height: math.unit(7 + 2 / 12, "feet"),
  23983. weight: math.unit(200, "lb"),
  23984. name: "Front",
  23985. image: {
  23986. source: "./media/characters/angel/front.svg",
  23987. extra: 1830 / 1737,
  23988. bottom: 22.6 / 1854,
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "Normal",
  23995. height: math.unit(7 + 2 / 12, "feet"),
  23996. default: true
  23997. },
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(1000, "feet")
  24001. },
  24002. {
  24003. name: "Megamacro",
  24004. height: math.unit(2, "miles")
  24005. },
  24006. {
  24007. name: "Gigamacro",
  24008. height: math.unit(20, "earths")
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24014. {
  24015. front: {
  24016. height: math.unit(5, "feet"),
  24017. weight: math.unit(180, "lb"),
  24018. name: "Front",
  24019. image: {
  24020. source: "./media/characters/mekana/front.svg",
  24021. extra: 1671 / 1605,
  24022. bottom: 3.5 / 1691
  24023. }
  24024. },
  24025. side: {
  24026. height: math.unit(5, "feet"),
  24027. weight: math.unit(180, "lb"),
  24028. name: "Side",
  24029. image: {
  24030. source: "./media/characters/mekana/side.svg",
  24031. extra: 1671 / 1605,
  24032. bottom: 3.5 / 1691
  24033. }
  24034. },
  24035. back: {
  24036. height: math.unit(5, "feet"),
  24037. weight: math.unit(180, "lb"),
  24038. name: "Back",
  24039. image: {
  24040. source: "./media/characters/mekana/back.svg",
  24041. extra: 1671 / 1605,
  24042. bottom: 3.5 / 1691
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(5, "feet"),
  24050. default: true
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24056. {
  24057. front: {
  24058. height: math.unit(4 + 6 / 12, "feet"),
  24059. weight: math.unit(80, "lb"),
  24060. name: "Front",
  24061. image: {
  24062. source: "./media/characters/pixie/front.svg",
  24063. extra: 1924 / 1825,
  24064. bottom: 22.4 / 1946
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Normal",
  24071. height: math.unit(4 + 6 / 12, "feet"),
  24072. default: true
  24073. },
  24074. {
  24075. name: "Macro",
  24076. height: math.unit(40, "feet")
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24082. {
  24083. front: {
  24084. height: math.unit(2.1, "meters"),
  24085. weight: math.unit(200, "lb"),
  24086. name: "Front",
  24087. image: {
  24088. source: "./media/characters/the-lascivious/front.svg",
  24089. extra: 1 / 0.893,
  24090. bottom: 3.5 / 573.7
  24091. }
  24092. },
  24093. },
  24094. [
  24095. {
  24096. name: "Human Scale",
  24097. height: math.unit(2.1, "meters")
  24098. },
  24099. {
  24100. name: "Wolxi Scale",
  24101. height: math.unit(46.2, "m"),
  24102. default: true
  24103. },
  24104. {
  24105. name: "Boinker of Buildings",
  24106. height: math.unit(10, "km")
  24107. },
  24108. {
  24109. name: "Shagger of Skyscrapers",
  24110. height: math.unit(40, "km")
  24111. },
  24112. {
  24113. name: "Banger of Boroughs",
  24114. height: math.unit(4000, "km")
  24115. },
  24116. {
  24117. name: "Screwer of States",
  24118. height: math.unit(100000, "km")
  24119. },
  24120. {
  24121. name: "Pounder of Planets",
  24122. height: math.unit(2000000, "km")
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24128. {
  24129. front: {
  24130. height: math.unit(6, "feet"),
  24131. weight: math.unit(150, "lb"),
  24132. name: "Front",
  24133. image: {
  24134. source: "./media/characters/aj/front.svg",
  24135. extra: 2039 / 1562,
  24136. bottom: 40 / 2079
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Normal",
  24143. height: math.unit(11 + 6 / 12, "feet"),
  24144. default: true
  24145. },
  24146. {
  24147. name: "Megamacro",
  24148. height: math.unit(60, "megameters")
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24154. {
  24155. side: {
  24156. height: math.unit(31 + 8/12, "feet"),
  24157. weight: math.unit(75000, "kg"),
  24158. name: "Side",
  24159. image: {
  24160. source: "./media/characters/koros/side.svg",
  24161. extra: 1442/1297,
  24162. bottom: 122.7/1562
  24163. }
  24164. },
  24165. dicksKingsCrown: {
  24166. height: math.unit(6, "feet"),
  24167. name: "Dicks (King's Crown)",
  24168. image: {
  24169. source: "./media/characters/koros/dicks-kings-crown.svg"
  24170. }
  24171. },
  24172. dicksTailSet: {
  24173. height: math.unit(3, "feet"),
  24174. name: "Dicks (Tail Set)",
  24175. image: {
  24176. source: "./media/characters/koros/dicks-tail-set.svg"
  24177. }
  24178. },
  24179. dickCumming: {
  24180. height: math.unit(7.98, "feet"),
  24181. name: "Dick (Cumming)",
  24182. image: {
  24183. source: "./media/characters/koros/dick-cumming.svg"
  24184. }
  24185. },
  24186. dicksBack: {
  24187. height: math.unit(5.9, "feet"),
  24188. name: "Dicks (Back)",
  24189. image: {
  24190. source: "./media/characters/koros/dicks-back.svg"
  24191. }
  24192. },
  24193. dicksFront: {
  24194. height: math.unit(3.72, "feet"),
  24195. name: "Dicks (Front)",
  24196. image: {
  24197. source: "./media/characters/koros/dicks-front.svg"
  24198. }
  24199. },
  24200. dicksPeeking: {
  24201. height: math.unit(3.0, "feet"),
  24202. name: "Dicks (Peeking)",
  24203. image: {
  24204. source: "./media/characters/koros/dicks-peeking.svg"
  24205. }
  24206. },
  24207. eye: {
  24208. height: math.unit(1.7, "feet"),
  24209. name: "Eye",
  24210. image: {
  24211. source: "./media/characters/koros/eye.svg"
  24212. }
  24213. },
  24214. headFront: {
  24215. height: math.unit(11.69, "feet"),
  24216. name: "Head (Front)",
  24217. image: {
  24218. source: "./media/characters/koros/head-front.svg"
  24219. }
  24220. },
  24221. headSide: {
  24222. height: math.unit(14, "feet"),
  24223. name: "Head (Side)",
  24224. image: {
  24225. source: "./media/characters/koros/head-side.svg"
  24226. }
  24227. },
  24228. leg: {
  24229. height: math.unit(17, "feet"),
  24230. name: "Leg",
  24231. image: {
  24232. source: "./media/characters/koros/leg.svg"
  24233. }
  24234. },
  24235. mawSide: {
  24236. height: math.unit(12.8, "feet"),
  24237. name: "Maw (Side)",
  24238. image: {
  24239. source: "./media/characters/koros/maw-side.svg"
  24240. }
  24241. },
  24242. mawSpitting: {
  24243. height: math.unit(17, "feet"),
  24244. name: "Maw (Spitting)",
  24245. image: {
  24246. source: "./media/characters/koros/maw-spitting.svg"
  24247. }
  24248. },
  24249. slit: {
  24250. height: math.unit(2.8, "feet"),
  24251. name: "Slit",
  24252. image: {
  24253. source: "./media/characters/koros/slit.svg"
  24254. }
  24255. },
  24256. stomach: {
  24257. height: math.unit(6.8, "feet"),
  24258. capacity: math.unit(20, "people"),
  24259. name: "Stomach",
  24260. image: {
  24261. source: "./media/characters/koros/stomach.svg"
  24262. }
  24263. },
  24264. wingspanBottom: {
  24265. height: math.unit(114, "feet"),
  24266. name: "Wingspan (Bottom)",
  24267. image: {
  24268. source: "./media/characters/koros/wingspan-bottom.svg"
  24269. }
  24270. },
  24271. wingspanTop: {
  24272. height: math.unit(104, "feet"),
  24273. name: "Wingspan (Top)",
  24274. image: {
  24275. source: "./media/characters/koros/wingspan-top.svg"
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(31 + 8/12, "feet"),
  24283. default: true
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24289. {
  24290. front: {
  24291. height: math.unit(18 + 5/12, "feet"),
  24292. weight: math.unit(3750, "kg"),
  24293. name: "Front",
  24294. image: {
  24295. source: "./media/characters/vexx/front.svg",
  24296. extra: 426/396,
  24297. bottom: 31.5/458
  24298. }
  24299. },
  24300. maw: {
  24301. height: math.unit(6, "feet"),
  24302. name: "Maw",
  24303. image: {
  24304. source: "./media/characters/vexx/maw.svg"
  24305. }
  24306. },
  24307. },
  24308. [
  24309. {
  24310. name: "Normal",
  24311. height: math.unit(18 + 5/12, "feet"),
  24312. default: true
  24313. },
  24314. ]
  24315. ))
  24316. characterMakers.push(() => makeCharacter(
  24317. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24318. {
  24319. front: {
  24320. height: math.unit(17 + 6/12, "feet"),
  24321. weight: math.unit(150, "lb"),
  24322. name: "Front",
  24323. image: {
  24324. source: "./media/characters/baadra/front.svg",
  24325. extra: 3137/2890,
  24326. bottom: 168.4/3305
  24327. }
  24328. },
  24329. back: {
  24330. height: math.unit(17 + 6/12, "feet"),
  24331. weight: math.unit(150, "lb"),
  24332. name: "Back",
  24333. image: {
  24334. source: "./media/characters/baadra/back.svg",
  24335. extra: 3142/2890,
  24336. bottom: 220/3371
  24337. }
  24338. },
  24339. head: {
  24340. height: math.unit(5.45, "feet"),
  24341. name: "Head",
  24342. image: {
  24343. source: "./media/characters/baadra/head.svg"
  24344. }
  24345. },
  24346. headAngry: {
  24347. height: math.unit(4.95, "feet"),
  24348. name: "Head (Angry)",
  24349. image: {
  24350. source: "./media/characters/baadra/head-angry.svg"
  24351. }
  24352. },
  24353. headOpen: {
  24354. height: math.unit(6, "feet"),
  24355. name: "Head (Open)",
  24356. image: {
  24357. source: "./media/characters/baadra/head-open.svg"
  24358. }
  24359. },
  24360. },
  24361. [
  24362. {
  24363. name: "Normal",
  24364. height: math.unit(17 + 6/12, "feet"),
  24365. default: true
  24366. },
  24367. ]
  24368. ))
  24369. characterMakers.push(() => makeCharacter(
  24370. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24371. {
  24372. front: {
  24373. height: math.unit(7 + 3/12, "feet"),
  24374. weight: math.unit(180, "lb"),
  24375. name: "Front",
  24376. image: {
  24377. source: "./media/characters/juri/front.svg",
  24378. extra: 1401/1237,
  24379. bottom: 18.5/1418
  24380. }
  24381. },
  24382. side: {
  24383. height: math.unit(7 + 3/12, "feet"),
  24384. weight: math.unit(180, "lb"),
  24385. name: "Side",
  24386. image: {
  24387. source: "./media/characters/juri/side.svg",
  24388. extra: 1424/1242,
  24389. bottom: 18.5/1447
  24390. }
  24391. },
  24392. sitting: {
  24393. height: math.unit(6, "feet"),
  24394. weight: math.unit(180, "lb"),
  24395. name: "Sitting",
  24396. image: {
  24397. source: "./media/characters/juri/sitting.svg",
  24398. extra: 1270/1143,
  24399. bottom: 100/1343
  24400. }
  24401. },
  24402. back: {
  24403. height: math.unit(7 + 3/12, "feet"),
  24404. weight: math.unit(180, "lb"),
  24405. name: "Back",
  24406. image: {
  24407. source: "./media/characters/juri/back.svg",
  24408. extra: 1377/1240,
  24409. bottom: 23.7/1405
  24410. }
  24411. },
  24412. maw: {
  24413. height: math.unit(2.8, "feet"),
  24414. name: "Maw",
  24415. image: {
  24416. source: "./media/characters/juri/maw.svg"
  24417. }
  24418. },
  24419. stomach: {
  24420. height: math.unit(0.89, "feet"),
  24421. capacity: math.unit(4, "liters"),
  24422. name: "Stomach",
  24423. image: {
  24424. source: "./media/characters/juri/stomach.svg"
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(7 + 3/12, "feet"),
  24432. default: true
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24438. {
  24439. fox: {
  24440. height: math.unit(5 + 6/12, "feet"),
  24441. weight: math.unit(140, "lb"),
  24442. name: "Fox",
  24443. image: {
  24444. source: "./media/characters/maxene-sita/fox.svg",
  24445. extra: 146/138,
  24446. bottom: 2.1/148.19
  24447. }
  24448. },
  24449. kitsune: {
  24450. height: math.unit(10, "feet"),
  24451. weight: math.unit(800, "lb"),
  24452. name: "Kitsune",
  24453. image: {
  24454. source: "./media/characters/maxene-sita/kitsune.svg",
  24455. extra: 185/176,
  24456. bottom: 4.7/189.9
  24457. }
  24458. },
  24459. },
  24460. [
  24461. {
  24462. name: "Normal",
  24463. height: math.unit(5 + 6/12, "feet"),
  24464. default: true
  24465. },
  24466. ]
  24467. ))
  24468. characterMakers.push(() => makeCharacter(
  24469. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24470. {
  24471. front: {
  24472. height: math.unit(3 + 4/12, "feet"),
  24473. weight: math.unit(70, "lb"),
  24474. name: "Front",
  24475. image: {
  24476. source: "./media/characters/maia/front.svg",
  24477. extra: 227/219.5,
  24478. bottom: 40 / 267
  24479. }
  24480. },
  24481. back: {
  24482. height: math.unit(3 + 4/12, "feet"),
  24483. weight: math.unit(70, "lb"),
  24484. name: "Back",
  24485. image: {
  24486. source: "./media/characters/maia/back.svg",
  24487. extra: 237/225
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Normal",
  24494. height: math.unit(3 + 4/12, "feet"),
  24495. default: true
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24501. {
  24502. front: {
  24503. height: math.unit(5 + 10/12, "feet"),
  24504. weight: math.unit(197, "lb"),
  24505. name: "Front",
  24506. image: {
  24507. source: "./media/characters/jabaro/front.svg",
  24508. extra: 225/216,
  24509. bottom: 5.06/230
  24510. }
  24511. },
  24512. back: {
  24513. height: math.unit(5 + 10/12, "feet"),
  24514. weight: math.unit(197, "lb"),
  24515. name: "Back",
  24516. image: {
  24517. source: "./media/characters/jabaro/back.svg",
  24518. extra: 225/219,
  24519. bottom: 1.9/227
  24520. }
  24521. },
  24522. },
  24523. [
  24524. {
  24525. name: "Normal",
  24526. height: math.unit(5 + 10/12, "feet"),
  24527. default: true
  24528. },
  24529. ]
  24530. ))
  24531. characterMakers.push(() => makeCharacter(
  24532. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24533. {
  24534. front: {
  24535. height: math.unit(5 + 8/12, "feet"),
  24536. weight: math.unit(139, "lb"),
  24537. name: "Front",
  24538. image: {
  24539. source: "./media/characters/risa/front.svg",
  24540. extra: 270/260,
  24541. bottom: 11.2/282
  24542. }
  24543. },
  24544. back: {
  24545. height: math.unit(5 + 8/12, "feet"),
  24546. weight: math.unit(139, "lb"),
  24547. name: "Back",
  24548. image: {
  24549. source: "./media/characters/risa/back.svg",
  24550. extra: 264/255,
  24551. bottom: 4/268
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Normal",
  24558. height: math.unit(5 + 8/12, "feet"),
  24559. default: true
  24560. },
  24561. ]
  24562. ))
  24563. characterMakers.push(() => makeCharacter(
  24564. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24565. {
  24566. front: {
  24567. height: math.unit(2 + 11/12, "feet"),
  24568. weight: math.unit(30, "lb"),
  24569. name: "Front",
  24570. image: {
  24571. source: "./media/characters/weatley/front.svg",
  24572. bottom: 10.7/414,
  24573. extra: 403.5/362
  24574. }
  24575. },
  24576. back: {
  24577. height: math.unit(2 + 11/12, "feet"),
  24578. weight: math.unit(30, "lb"),
  24579. name: "Back",
  24580. image: {
  24581. source: "./media/characters/weatley/back.svg",
  24582. bottom: 10.7/414,
  24583. extra: 403.5/362
  24584. }
  24585. },
  24586. },
  24587. [
  24588. {
  24589. name: "Normal",
  24590. height: math.unit(2 + 11/12, "feet"),
  24591. default: true
  24592. },
  24593. ]
  24594. ))
  24595. characterMakers.push(() => makeCharacter(
  24596. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24597. {
  24598. front: {
  24599. height: math.unit(5 + 2/12, "feet"),
  24600. weight: math.unit(50, "kg"),
  24601. name: "Front",
  24602. image: {
  24603. source: "./media/characters/mercury-crescent/front.svg",
  24604. extra: 1088/1033,
  24605. bottom: 18.9/1109
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(5 + 2/12, "feet"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(2, "feet"),
  24622. weight: math.unit(15, "kg"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/diamond-jones/front.svg",
  24626. bottom: 16/568
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Normal",
  24633. height: math.unit(2, "feet"),
  24634. default: true
  24635. },
  24636. ]
  24637. ))
  24638. characterMakers.push(() => makeCharacter(
  24639. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24640. {
  24641. front: {
  24642. height: math.unit(3, "feet"),
  24643. weight: math.unit(30, "kg"),
  24644. name: "Front",
  24645. image: {
  24646. source: "./media/characters/sweet-bit/front.svg",
  24647. extra: 675/567,
  24648. bottom: 27.7/703
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(3, "feet"),
  24656. default: true
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24662. {
  24663. side: {
  24664. height: math.unit(9.178, "feet"),
  24665. weight: math.unit(500, "lb"),
  24666. name: "Side",
  24667. image: {
  24668. source: "./media/characters/umbrazen/side.svg",
  24669. extra: 1730/1473,
  24670. bottom: 34.6/1765
  24671. }
  24672. },
  24673. },
  24674. [
  24675. {
  24676. name: "Normal",
  24677. height: math.unit(9.178, "feet"),
  24678. default: true
  24679. },
  24680. ]
  24681. ))
  24682. characterMakers.push(() => makeCharacter(
  24683. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24684. {
  24685. front: {
  24686. height: math.unit(10, "feet"),
  24687. weight: math.unit(750, "lb"),
  24688. name: "Front",
  24689. image: {
  24690. source: "./media/characters/arlist/front.svg",
  24691. extra: 961/778,
  24692. bottom: 6.2/986
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Normal",
  24699. height: math.unit(10, "feet"),
  24700. default: true
  24701. },
  24702. ]
  24703. ))
  24704. characterMakers.push(() => makeCharacter(
  24705. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24706. {
  24707. front: {
  24708. height: math.unit(5 + 1/12, "feet"),
  24709. weight: math.unit(110, "lb"),
  24710. name: "Front",
  24711. image: {
  24712. source: "./media/characters/aradel/front.svg",
  24713. extra: 324/303,
  24714. bottom: 3.6/329.4
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Normal",
  24721. height: math.unit(5 + 1/12, "feet"),
  24722. default: true
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(3 + 8/12, "feet"),
  24731. weight: math.unit(50, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/serryn/front.svg",
  24735. extra: 1792/1656,
  24736. bottom: 43.5/1840
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(3 + 8/12, "feet"),
  24744. default: true
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Xavier Thyme" },
  24750. {
  24751. front: {
  24752. height: math.unit(7 + 10/12, "feet"),
  24753. weight: math.unit(255, "lb"),
  24754. name: "Front",
  24755. image: {
  24756. source: "./media/characters/xavier-thyme/front.svg",
  24757. extra: 3733/3642,
  24758. bottom: 131/3869
  24759. }
  24760. },
  24761. frontRaven: {
  24762. height: math.unit(7 + 10/12, "feet"),
  24763. weight: math.unit(255, "lb"),
  24764. name: "Front (Raven)",
  24765. image: {
  24766. source: "./media/characters/xavier-thyme/front-raven.svg",
  24767. extra: 4385/3642,
  24768. bottom: 131/4517
  24769. }
  24770. },
  24771. },
  24772. [
  24773. {
  24774. name: "Normal",
  24775. height: math.unit(7 + 10/12, "feet"),
  24776. default: true
  24777. },
  24778. ]
  24779. ))
  24780. characterMakers.push(() => makeCharacter(
  24781. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24782. {
  24783. front: {
  24784. height: math.unit(1.6, "m"),
  24785. weight: math.unit(50, "kg"),
  24786. name: "Front",
  24787. image: {
  24788. source: "./media/characters/kiki/front.svg",
  24789. extra: 4682/3610,
  24790. bottom: 115/4777
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Normal",
  24797. height: math.unit(1.6, "meters"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(50, "m"),
  24807. weight: math.unit(500, "tonnes"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/ryoko/front.svg",
  24811. extra: 4632/3926,
  24812. bottom: 193/4823
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Normal",
  24819. height: math.unit(50, "meters"),
  24820. default: true
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24826. {
  24827. front: {
  24828. height: math.unit(30, "m"),
  24829. weight: math.unit(22, "tonnes"),
  24830. name: "Front",
  24831. image: {
  24832. source: "./media/characters/elio/front.svg",
  24833. extra: 4582/3720,
  24834. bottom: 236/4828
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Normal",
  24841. height: math.unit(30, "meters"),
  24842. default: true
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24848. {
  24849. front: {
  24850. height: math.unit(6 + 3/12, "feet"),
  24851. weight: math.unit(120, "lb"),
  24852. name: "Front",
  24853. image: {
  24854. source: "./media/characters/azura/front.svg",
  24855. extra: 1149/1135,
  24856. bottom: 45/1194
  24857. }
  24858. },
  24859. frontClothed: {
  24860. height: math.unit(6 + 3/12, "feet"),
  24861. weight: math.unit(120, "lb"),
  24862. name: "Front (Clothed)",
  24863. image: {
  24864. source: "./media/characters/azura/front-clothed.svg",
  24865. extra: 1149/1135,
  24866. bottom: 45/1194
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Normal",
  24873. height: math.unit(6 + 3/12, "feet"),
  24874. default: true
  24875. },
  24876. {
  24877. name: "Macro",
  24878. height: math.unit(20 + 6/12, "feet")
  24879. },
  24880. {
  24881. name: "Megamacro",
  24882. height: math.unit(12, "miles")
  24883. },
  24884. {
  24885. name: "Gigamacro",
  24886. height: math.unit(10000, "miles")
  24887. },
  24888. {
  24889. name: "Teramacro",
  24890. height: math.unit(900000, "miles")
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24896. {
  24897. front: {
  24898. height: math.unit(12, "feet"),
  24899. weight: math.unit(1, "ton"),
  24900. capacity: math.unit(660000, "gallons"),
  24901. name: "Front",
  24902. image: {
  24903. source: "./media/characters/zeus/front.svg",
  24904. extra: 5005/4717,
  24905. bottom: 363/5388
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "Normal",
  24912. height: math.unit(12, "feet")
  24913. },
  24914. {
  24915. name: "Preferred Size",
  24916. height: math.unit(0.5, "miles"),
  24917. default: true
  24918. },
  24919. {
  24920. name: "Giga Horse",
  24921. height: math.unit(300, "miles")
  24922. },
  24923. {
  24924. name: "Riding Planets",
  24925. height: math.unit(30, "megameters")
  24926. },
  24927. {
  24928. name: "Cosmic Giant",
  24929. height: math.unit(3, "zettameters")
  24930. },
  24931. {
  24932. name: "Breeding God",
  24933. height: math.unit(9.92e22, "yottameters")
  24934. },
  24935. ]
  24936. ))
  24937. characterMakers.push(() => makeCharacter(
  24938. { name: "Fang", species: ["monster"], tags: ["feral"] },
  24939. {
  24940. side: {
  24941. height: math.unit(9, "feet"),
  24942. weight: math.unit(1500, "kg"),
  24943. name: "Side",
  24944. image: {
  24945. source: "./media/characters/fang/side.svg",
  24946. extra: 924/866,
  24947. bottom: 47.5/972.3
  24948. }
  24949. },
  24950. },
  24951. [
  24952. {
  24953. name: "Normal",
  24954. height: math.unit(9, "feet"),
  24955. default: true
  24956. },
  24957. {
  24958. name: "Macro",
  24959. height: math.unit(75 + 6/12, "feet")
  24960. },
  24961. {
  24962. name: "Teramacro",
  24963. height: math.unit(50000, "miles")
  24964. },
  24965. ]
  24966. ))
  24967. characterMakers.push(() => makeCharacter(
  24968. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  24969. {
  24970. front: {
  24971. height: math.unit(10, "feet"),
  24972. weight: math.unit(2, "tons"),
  24973. name: "Front",
  24974. image: {
  24975. source: "./media/characters/rekhit/front.svg",
  24976. extra: 2796/2590,
  24977. bottom: 225/3022
  24978. }
  24979. },
  24980. },
  24981. [
  24982. {
  24983. name: "Normal",
  24984. height: math.unit(10, "feet"),
  24985. default: true
  24986. },
  24987. {
  24988. name: "Macro",
  24989. height: math.unit(500, "feet")
  24990. },
  24991. ]
  24992. ))
  24993. characterMakers.push(() => makeCharacter(
  24994. { name: "Dahlia Verrick" },
  24995. {
  24996. front: {
  24997. height: math.unit(7 + 6.451/12, "feet"),
  24998. weight: math.unit(310, "lb"),
  24999. name: "Front",
  25000. image: {
  25001. source: "./media/characters/dahlia-verrick/front.svg",
  25002. extra: 1488/1365,
  25003. bottom: 6.2/1495
  25004. }
  25005. },
  25006. back: {
  25007. height: math.unit(7 + 6.451/12, "feet"),
  25008. weight: math.unit(310, "lb"),
  25009. name: "Back",
  25010. image: {
  25011. source: "./media/characters/dahlia-verrick/back.svg",
  25012. extra: 1472/1351,
  25013. bottom: 5.28/1477
  25014. }
  25015. },
  25016. frontBusiness: {
  25017. height: math.unit(7 + 6.451/12, "feet"),
  25018. weight: math.unit(200, "lb"),
  25019. name: "Front (Business)",
  25020. image: {
  25021. source: "./media/characters/dahlia-verrick/front-business.svg",
  25022. extra: 1478/1381,
  25023. bottom: 5.5/1484
  25024. }
  25025. },
  25026. frontCasual: {
  25027. height: math.unit(7 + 6.451/12, "feet"),
  25028. weight: math.unit(200, "lb"),
  25029. name: "Front (Casual)",
  25030. image: {
  25031. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25032. extra: 1478/1381,
  25033. bottom: 5.5/1484
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Travel-Sized",
  25040. height: math.unit(7.45, "inches")
  25041. },
  25042. {
  25043. name: "Normal",
  25044. height: math.unit(7 + 6.451/12, "feet"),
  25045. default: true
  25046. },
  25047. {
  25048. name: "Hitting the Town",
  25049. height: math.unit(37 + 8/12, "feet")
  25050. },
  25051. {
  25052. name: "Stomp in the Suburbs",
  25053. height: math.unit(964 + 9.728/12, "feet")
  25054. },
  25055. {
  25056. name: "Sit on the City",
  25057. height: math.unit(61747 + 10.592/12, "feet")
  25058. },
  25059. {
  25060. name: "Glomp the Globe",
  25061. height: math.unit(252919327 + 4.832/12, "feet")
  25062. },
  25063. ]
  25064. ))
  25065. characterMakers.push(() => makeCharacter(
  25066. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25067. {
  25068. front: {
  25069. height: math.unit(6 + 4/12, "feet"),
  25070. weight: math.unit(320, "lb"),
  25071. name: "Front",
  25072. image: {
  25073. source: "./media/characters/balina-mahigan/front.svg",
  25074. extra: 447/428,
  25075. bottom: 18/466
  25076. }
  25077. },
  25078. back: {
  25079. height: math.unit(6 + 4/12, "feet"),
  25080. weight: math.unit(320, "lb"),
  25081. name: "Back",
  25082. image: {
  25083. source: "./media/characters/balina-mahigan/back.svg",
  25084. extra: 445/428,
  25085. bottom: 4.07/448
  25086. }
  25087. },
  25088. arm: {
  25089. height: math.unit(1.88, "feet"),
  25090. name: "Arm",
  25091. image: {
  25092. source: "./media/characters/balina-mahigan/arm.svg"
  25093. }
  25094. },
  25095. backPort: {
  25096. height: math.unit(0.685, "feet"),
  25097. name: "Back Port",
  25098. image: {
  25099. source: "./media/characters/balina-mahigan/back-port.svg"
  25100. }
  25101. },
  25102. hoofpaw: {
  25103. height: math.unit(1.41, "feet"),
  25104. name: "Hoofpaw",
  25105. image: {
  25106. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25107. }
  25108. },
  25109. leftHandBack: {
  25110. height: math.unit(0.938, "feet"),
  25111. name: "Left Hand (Back)",
  25112. image: {
  25113. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25114. }
  25115. },
  25116. leftHandFront: {
  25117. height: math.unit(0.938, "feet"),
  25118. name: "Left Hand (Front)",
  25119. image: {
  25120. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25121. }
  25122. },
  25123. rightHandBack: {
  25124. height: math.unit(0.95, "feet"),
  25125. name: "Right Hand (Back)",
  25126. image: {
  25127. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25128. }
  25129. },
  25130. rightHandFront: {
  25131. height: math.unit(0.95, "feet"),
  25132. name: "Right Hand (Front)",
  25133. image: {
  25134. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(6 + 4/12, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25148. {
  25149. front: {
  25150. height: math.unit(6, "feet"),
  25151. weight: math.unit(320, "lb"),
  25152. name: "Front",
  25153. image: {
  25154. source: "./media/characters/balina-mejeri/front.svg",
  25155. extra: 517/488,
  25156. bottom: 44.2/561
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(6 + 4/12, "feet")
  25164. },
  25165. {
  25166. name: "Business",
  25167. height: math.unit(155, "feet"),
  25168. default: true
  25169. },
  25170. ]
  25171. ))
  25172. characterMakers.push(() => makeCharacter(
  25173. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25174. {
  25175. kneeling: {
  25176. height: math.unit(6 + 4/12, "feet"),
  25177. weight: math.unit(300*20, "lb"),
  25178. name: "Kneeling",
  25179. image: {
  25180. source: "./media/characters/balbarian/kneeling.svg",
  25181. extra: 922/862,
  25182. bottom: 42.4/965
  25183. }
  25184. },
  25185. },
  25186. [
  25187. {
  25188. name: "Normal",
  25189. height: math.unit(6 + 4/12, "feet")
  25190. },
  25191. {
  25192. name: "Treasured",
  25193. height: math.unit(18 + 9/12, "feet"),
  25194. default: true
  25195. },
  25196. {
  25197. name: "Macro",
  25198. height: math.unit(900, "feet")
  25199. },
  25200. ]
  25201. ))
  25202. characterMakers.push(() => makeCharacter(
  25203. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25204. {
  25205. front: {
  25206. height: math.unit(6 + 4/12, "feet"),
  25207. weight: math.unit(325, "lb"),
  25208. name: "Front",
  25209. image: {
  25210. source: "./media/characters/balina-amarini/front.svg",
  25211. extra: 415/403,
  25212. bottom: 19/433.4
  25213. }
  25214. },
  25215. back: {
  25216. height: math.unit(6 + 4/12, "feet"),
  25217. weight: math.unit(325, "lb"),
  25218. name: "Back",
  25219. image: {
  25220. source: "./media/characters/balina-amarini/back.svg",
  25221. extra: 415/403,
  25222. bottom: 13.5/432
  25223. }
  25224. },
  25225. overdrive: {
  25226. height: math.unit(6 + 4/12, "feet"),
  25227. weight: math.unit(400, "lb"),
  25228. name: "Overdrive",
  25229. image: {
  25230. source: "./media/characters/balina-amarini/overdrive.svg",
  25231. extra: 269/259,
  25232. bottom: 12/282
  25233. }
  25234. },
  25235. },
  25236. [
  25237. {
  25238. name: "Boom",
  25239. height: math.unit(9 + 10/12, "feet"),
  25240. default: true
  25241. },
  25242. {
  25243. name: "Macro",
  25244. height: math.unit(280, "feet")
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25250. {
  25251. goddess: {
  25252. height: math.unit(600, "feet"),
  25253. weight: math.unit(2000000, "tons"),
  25254. name: "Goddess",
  25255. image: {
  25256. source: "./media/characters/lady-kubwa/goddess.svg",
  25257. extra: 1240.5/1223,
  25258. bottom: 22/1263
  25259. }
  25260. },
  25261. goddesser: {
  25262. height: math.unit(900, "feet"),
  25263. weight: math.unit(20000000, "lb"),
  25264. name: "Goddess-er",
  25265. image: {
  25266. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25267. extra: 899/888,
  25268. bottom: 12.6/912
  25269. }
  25270. },
  25271. },
  25272. [
  25273. {
  25274. name: "Macro",
  25275. height: math.unit(600, "feet"),
  25276. default: true
  25277. },
  25278. {
  25279. name: "Megamacro",
  25280. height: math.unit(250, "miles")
  25281. },
  25282. ]
  25283. ))
  25284. characterMakers.push(() => makeCharacter(
  25285. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25286. {
  25287. front: {
  25288. height: math.unit(7 + 7/12, "feet"),
  25289. weight: math.unit(250, "lb"),
  25290. name: "Front",
  25291. image: {
  25292. source: "./media/characters/tala-grovehorn/front.svg",
  25293. extra: 2636/2525,
  25294. bottom: 147/2781
  25295. }
  25296. },
  25297. back: {
  25298. height: math.unit(7 + 7/12, "feet"),
  25299. weight: math.unit(250, "lb"),
  25300. name: "Back",
  25301. image: {
  25302. source: "./media/characters/tala-grovehorn/back.svg",
  25303. extra: 2635/2539,
  25304. bottom: 100/2732.8
  25305. }
  25306. },
  25307. mouth: {
  25308. height: math.unit(1.15, "feet"),
  25309. name: "Mouth",
  25310. image: {
  25311. source: "./media/characters/tala-grovehorn/mouth.svg"
  25312. }
  25313. },
  25314. dick: {
  25315. height: math.unit(2.36, "feet"),
  25316. name: "Dick",
  25317. image: {
  25318. source: "./media/characters/tala-grovehorn/dick.svg"
  25319. }
  25320. },
  25321. slit: {
  25322. height: math.unit(0.61, "feet"),
  25323. name: "Slit",
  25324. image: {
  25325. source: "./media/characters/tala-grovehorn/slit.svg"
  25326. }
  25327. },
  25328. },
  25329. [
  25330. ]
  25331. ))
  25332. characterMakers.push(() => makeCharacter(
  25333. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25334. {
  25335. front: {
  25336. height: math.unit(7 + 7/12, "feet"),
  25337. weight: math.unit(225, "lb"),
  25338. name: "Front",
  25339. image: {
  25340. source: "./media/characters/epona/front.svg",
  25341. extra: 2445/2290,
  25342. bottom: 251/2696
  25343. }
  25344. },
  25345. back: {
  25346. height: math.unit(7 + 7/12, "feet"),
  25347. weight: math.unit(225, "lb"),
  25348. name: "Back",
  25349. image: {
  25350. source: "./media/characters/epona/back.svg",
  25351. extra: 2546/2408,
  25352. bottom: 44/2589
  25353. }
  25354. },
  25355. genitals: {
  25356. height: math.unit(1.5, "feet"),
  25357. name: "Genitals",
  25358. image: {
  25359. source: "./media/characters/epona/genitals.svg"
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Normal",
  25366. height: math.unit(7 + 7/12, "feet")
  25367. },
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25372. {
  25373. front: {
  25374. height: math.unit(7, "feet"),
  25375. weight: math.unit(518, "lb"),
  25376. name: "Front",
  25377. image: {
  25378. source: "./media/characters/avia-bloodbourn/front.svg",
  25379. extra: 1466/1350,
  25380. bottom: 65/1527
  25381. }
  25382. },
  25383. },
  25384. [
  25385. ]
  25386. ))
  25387. characterMakers.push(() => makeCharacter(
  25388. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25389. {
  25390. front: {
  25391. height: math.unit(9.35, "feet"),
  25392. weight: math.unit(600, "lb"),
  25393. name: "Front",
  25394. image: {
  25395. source: "./media/characters/amera/front.svg",
  25396. extra: 891/818,
  25397. bottom: 30/922.7
  25398. }
  25399. },
  25400. back: {
  25401. height: math.unit(9.35, "feet"),
  25402. weight: math.unit(600, "lb"),
  25403. name: "Back",
  25404. image: {
  25405. source: "./media/characters/amera/back.svg",
  25406. extra: 876/824,
  25407. bottom: 6.8/884
  25408. }
  25409. },
  25410. dick: {
  25411. height: math.unit(2.14, "feet"),
  25412. name: "Dick",
  25413. image: {
  25414. source: "./media/characters/amera/dick.svg"
  25415. }
  25416. },
  25417. },
  25418. [
  25419. {
  25420. name: "Normal",
  25421. height: math.unit(9.35, "feet"),
  25422. default: true
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25428. {
  25429. kneeling: {
  25430. height: math.unit(3 + 4/12, "feet"),
  25431. weight: math.unit(90, "lb"),
  25432. name: "Kneeling",
  25433. image: {
  25434. source: "./media/characters/rosewen/kneeling.svg",
  25435. extra: 1835/1571,
  25436. bottom: 27.7/1862
  25437. }
  25438. },
  25439. },
  25440. [
  25441. {
  25442. name: "Normal",
  25443. height: math.unit(3 + 4/12, "feet"),
  25444. default: true
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25450. {
  25451. front: {
  25452. height: math.unit(5 + 10/12, "feet"),
  25453. weight: math.unit(200, "lb"),
  25454. name: "Front",
  25455. image: {
  25456. source: "./media/characters/sabah/front.svg",
  25457. extra: 849/763,
  25458. bottom: 33.9/881
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "Normal",
  25465. height: math.unit(5 + 10/12, "feet"),
  25466. default: true
  25467. },
  25468. ]
  25469. ))
  25470. characterMakers.push(() => makeCharacter(
  25471. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25472. {
  25473. front: {
  25474. height: math.unit(3 + 5/12, "feet"),
  25475. weight: math.unit(40, "kg"),
  25476. name: "Front",
  25477. image: {
  25478. source: "./media/characters/purple-flame/front.svg",
  25479. extra: 1577/1412,
  25480. bottom: 97/1694
  25481. }
  25482. },
  25483. frontDressed: {
  25484. height: math.unit(3 + 5/12, "feet"),
  25485. weight: math.unit(40, "kg"),
  25486. name: "Front (Dressed)",
  25487. image: {
  25488. source: "./media/characters/purple-flame/front-dressed.svg",
  25489. extra: 1577/1412,
  25490. bottom: 97/1694
  25491. }
  25492. },
  25493. headphones: {
  25494. height: math.unit(0.85, "feet"),
  25495. name: "Headphones",
  25496. image: {
  25497. source: "./media/characters/purple-flame/headphones.svg"
  25498. }
  25499. },
  25500. },
  25501. [
  25502. {
  25503. name: "Really Small",
  25504. height: math.unit(5, "cm")
  25505. },
  25506. {
  25507. name: "Micro",
  25508. height: math.unit(1 + 5/12, "feet")
  25509. },
  25510. {
  25511. name: "Normal",
  25512. height: math.unit(3 + 5/12, "feet"),
  25513. default: true
  25514. },
  25515. {
  25516. name: "Minimacro",
  25517. height: math.unit(125, "feet")
  25518. },
  25519. {
  25520. name: "Macro",
  25521. height: math.unit(0.5, "miles")
  25522. },
  25523. {
  25524. name: "Megamacro",
  25525. height: math.unit(50, "miles")
  25526. },
  25527. {
  25528. name: "Gigantic",
  25529. height: math.unit(750, "miles")
  25530. },
  25531. {
  25532. name: "Planetary",
  25533. height: math.unit(15000, "miles")
  25534. },
  25535. ]
  25536. ))
  25537. //characters
  25538. function makeCharacters() {
  25539. const results = [];
  25540. characterMakers.forEach(character => {
  25541. results.push(character());
  25542. });
  25543. return results;
  25544. }