less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26518 line
660 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. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. }
  1284. //species
  1285. function getSpeciesInfo(speciesList) {
  1286. let result = new Set();
  1287. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1288. result.add(entry)
  1289. });
  1290. return Array.from(result);
  1291. };
  1292. function getSpeciesInfoHelper(species) {
  1293. if (!speciesData[species]) {
  1294. console.warn(species + " doesn't exist");
  1295. return [];
  1296. }
  1297. if (speciesData[species].parents) {
  1298. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1299. } else {
  1300. return [species];
  1301. }
  1302. }
  1303. characterMakers.push(() => makeCharacter(
  1304. {
  1305. name: "Fen",
  1306. species: ["crux"],
  1307. description: {
  1308. title: "Bio",
  1309. text: "Very furry. Sheds on everything."
  1310. },
  1311. tags: [
  1312. "anthro",
  1313. "goo"
  1314. ]
  1315. },
  1316. {
  1317. back: {
  1318. height: math.unit(2.2428, "meter"),
  1319. weight: math.unit(124.738, "kg"),
  1320. name: "Back",
  1321. image: {
  1322. source: "./media/characters/fen/back.svg",
  1323. extra: 1025 / 935,
  1324. bottom: 0.01
  1325. },
  1326. info: {
  1327. description: {
  1328. mode: "append",
  1329. text: "\n\nHe is not currently looking at you."
  1330. }
  1331. }
  1332. },
  1333. full: {
  1334. height: math.unit(1.34, "meter"),
  1335. weight: math.unit(225, "kg"),
  1336. name: "Full",
  1337. image: {
  1338. source: "./media/characters/fen/full.svg"
  1339. },
  1340. info: {
  1341. description: {
  1342. mode: "append",
  1343. text: "\n\nMunch."
  1344. }
  1345. }
  1346. },
  1347. kneeling: {
  1348. height: math.unit(5.4, "feet"),
  1349. weight: math.unit(124.738, "kg"),
  1350. name: "Kneeling",
  1351. image: {
  1352. source: "./media/characters/fen/kneeling.svg",
  1353. extra: 563 / 507
  1354. }
  1355. },
  1356. goo: {
  1357. height: math.unit(2.8, "feet"),
  1358. weight: math.unit(125, "kg"),
  1359. capacity: math.unit(1, "people"),
  1360. name: "Goo",
  1361. image: {
  1362. source: "./media/characters/fen/goo.svg",
  1363. bottom: 116 / 613
  1364. }
  1365. },
  1366. lounging: {
  1367. height: math.unit(6.5, "feet"),
  1368. weight: math.unit(125, "kg"),
  1369. name: "Lounging",
  1370. image: {
  1371. source: "./media/characters/fen/lounging.svg"
  1372. }
  1373. },
  1374. },
  1375. [
  1376. {
  1377. name: "Normal",
  1378. height: math.unit(2.2428, "meter")
  1379. },
  1380. {
  1381. name: "Big",
  1382. height: math.unit(12, "feet")
  1383. },
  1384. {
  1385. name: "Minimacro",
  1386. height: math.unit(40, "feet"),
  1387. default: true,
  1388. info: {
  1389. description: {
  1390. mode: "append",
  1391. text: "\n\nTOO DAMN BIG"
  1392. }
  1393. }
  1394. },
  1395. {
  1396. name: "Macro",
  1397. height: math.unit(100, "feet"),
  1398. info: {
  1399. description: {
  1400. mode: "append",
  1401. text: "\n\nTOO DAMN BIG"
  1402. }
  1403. }
  1404. },
  1405. {
  1406. name: "Macro+",
  1407. height: math.unit(300, "feet")
  1408. },
  1409. {
  1410. name: "Megamacro",
  1411. height: math.unit(2, "miles")
  1412. }
  1413. ]
  1414. ))
  1415. characterMakers.push(() => makeCharacter(
  1416. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1417. {
  1418. front: {
  1419. height: math.unit(183, "cm"),
  1420. weight: math.unit(80, "kg"),
  1421. name: "Front",
  1422. image: {
  1423. source: "./media/characters/sofia-fluttertail/front.svg",
  1424. bottom: 0.01,
  1425. extra: 2154 / 2081
  1426. }
  1427. },
  1428. frontAlt: {
  1429. height: math.unit(183, "cm"),
  1430. weight: math.unit(80, "kg"),
  1431. name: "Front (alt)",
  1432. image: {
  1433. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1434. }
  1435. },
  1436. back: {
  1437. height: math.unit(183, "cm"),
  1438. weight: math.unit(80, "kg"),
  1439. name: "Back",
  1440. image: {
  1441. source: "./media/characters/sofia-fluttertail/back.svg"
  1442. }
  1443. },
  1444. kneeling: {
  1445. height: math.unit(125, "cm"),
  1446. weight: math.unit(80, "kg"),
  1447. name: "Kneeling",
  1448. image: {
  1449. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1450. extra: 1033 / 977,
  1451. bottom: 23.7 / 1057
  1452. }
  1453. },
  1454. maw: {
  1455. height: math.unit(183 / 5, "cm"),
  1456. name: "Maw",
  1457. image: {
  1458. source: "./media/characters/sofia-fluttertail/maw.svg"
  1459. }
  1460. },
  1461. mawcloseup: {
  1462. height: math.unit(183 / 5 * 0.41, "cm"),
  1463. name: "Maw (Closeup)",
  1464. image: {
  1465. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1466. }
  1467. },
  1468. },
  1469. [
  1470. {
  1471. name: "Normal",
  1472. height: math.unit(1.83, "meter")
  1473. },
  1474. {
  1475. name: "Size Thief",
  1476. height: math.unit(18, "feet")
  1477. },
  1478. {
  1479. name: "50 Foot Collie",
  1480. height: math.unit(50, "feet")
  1481. },
  1482. {
  1483. name: "Macro",
  1484. height: math.unit(96, "feet"),
  1485. default: true
  1486. },
  1487. {
  1488. name: "Megamerger",
  1489. height: math.unit(650, "feet")
  1490. },
  1491. ]
  1492. ))
  1493. characterMakers.push(() => makeCharacter(
  1494. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1495. {
  1496. front: {
  1497. height: math.unit(7, "feet"),
  1498. weight: math.unit(100, "kg"),
  1499. name: "Front",
  1500. image: {
  1501. source: "./media/characters/march/front.svg",
  1502. extra: 1,
  1503. bottom: 0.015
  1504. }
  1505. },
  1506. foot: {
  1507. height: math.unit(0.9, "feet"),
  1508. name: "Foot",
  1509. image: {
  1510. source: "./media/characters/march/foot.svg"
  1511. }
  1512. },
  1513. },
  1514. [
  1515. {
  1516. name: "Normal",
  1517. height: math.unit(7.9, "feet")
  1518. },
  1519. {
  1520. name: "Macro",
  1521. height: math.unit(220, "meters")
  1522. },
  1523. {
  1524. name: "Megamacro",
  1525. height: math.unit(2.98, "km"),
  1526. default: true
  1527. },
  1528. {
  1529. name: "Gigamacro",
  1530. height: math.unit(15963, "km")
  1531. },
  1532. {
  1533. name: "Teramacro",
  1534. height: math.unit(2980000000, "km")
  1535. },
  1536. {
  1537. name: "Examacro",
  1538. height: math.unit(250, "parsecs")
  1539. },
  1540. ]
  1541. ))
  1542. characterMakers.push(() => makeCharacter(
  1543. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1544. {
  1545. front: {
  1546. height: math.unit(6, "feet"),
  1547. weight: math.unit(60, "kg"),
  1548. name: "Front",
  1549. image: {
  1550. source: "./media/characters/noir/front.svg",
  1551. extra: 1,
  1552. bottom: 0.032
  1553. }
  1554. },
  1555. },
  1556. [
  1557. {
  1558. name: "Normal",
  1559. height: math.unit(6.6, "feet")
  1560. },
  1561. {
  1562. name: "Macro",
  1563. height: math.unit(500, "feet")
  1564. },
  1565. {
  1566. name: "Megamacro",
  1567. height: math.unit(2.5, "km"),
  1568. default: true
  1569. },
  1570. {
  1571. name: "Gigamacro",
  1572. height: math.unit(22500, "km")
  1573. },
  1574. {
  1575. name: "Teramacro",
  1576. height: math.unit(2500000000, "km")
  1577. },
  1578. {
  1579. name: "Examacro",
  1580. height: math.unit(200, "parsecs")
  1581. },
  1582. ]
  1583. ))
  1584. characterMakers.push(() => makeCharacter(
  1585. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1586. {
  1587. front: {
  1588. height: math.unit(7, "feet"),
  1589. weight: math.unit(100, "kg"),
  1590. name: "Front",
  1591. image: {
  1592. source: "./media/characters/okuri/front.svg",
  1593. extra: 1,
  1594. bottom: 0.037
  1595. }
  1596. },
  1597. back: {
  1598. height: math.unit(7, "feet"),
  1599. weight: math.unit(100, "kg"),
  1600. name: "Back",
  1601. image: {
  1602. source: "./media/characters/okuri/back.svg",
  1603. extra: 1,
  1604. bottom: 0.007
  1605. }
  1606. },
  1607. },
  1608. [
  1609. {
  1610. name: "Megamacro",
  1611. height: math.unit(100, "miles"),
  1612. default: true
  1613. },
  1614. ]
  1615. ))
  1616. characterMakers.push(() => makeCharacter(
  1617. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1618. {
  1619. front: {
  1620. height: math.unit(7, "feet"),
  1621. weight: math.unit(100, "kg"),
  1622. name: "Front",
  1623. image: {
  1624. source: "./media/characters/manny/front.svg",
  1625. extra: 1,
  1626. bottom: 0.06
  1627. }
  1628. },
  1629. back: {
  1630. height: math.unit(7, "feet"),
  1631. weight: math.unit(100, "kg"),
  1632. name: "Back",
  1633. image: {
  1634. source: "./media/characters/manny/back.svg",
  1635. extra: 1,
  1636. bottom: 0.014
  1637. }
  1638. },
  1639. },
  1640. [
  1641. {
  1642. name: "Normal",
  1643. height: math.unit(7, "feet"),
  1644. },
  1645. {
  1646. name: "Macro",
  1647. height: math.unit(78, "feet"),
  1648. default: true
  1649. },
  1650. {
  1651. name: "Macro+",
  1652. height: math.unit(300, "meters")
  1653. },
  1654. {
  1655. name: "Macro++",
  1656. height: math.unit(2400, "meters")
  1657. },
  1658. {
  1659. name: "Megamacro",
  1660. height: math.unit(5167, "meters")
  1661. },
  1662. {
  1663. name: "Gigamacro",
  1664. height: math.unit(41769, "miles")
  1665. },
  1666. ]
  1667. ))
  1668. characterMakers.push(() => makeCharacter(
  1669. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1670. {
  1671. front: {
  1672. height: math.unit(7, "feet"),
  1673. weight: math.unit(100, "kg"),
  1674. name: "Front",
  1675. image: {
  1676. source: "./media/characters/adake/front-1.svg"
  1677. }
  1678. },
  1679. frontAlt: {
  1680. height: math.unit(7, "feet"),
  1681. weight: math.unit(100, "kg"),
  1682. name: "Front (Alt)",
  1683. image: {
  1684. source: "./media/characters/adake/front-2.svg",
  1685. extra: 1,
  1686. bottom: 0.01
  1687. }
  1688. },
  1689. back: {
  1690. height: math.unit(7, "feet"),
  1691. weight: math.unit(100, "kg"),
  1692. name: "Back",
  1693. image: {
  1694. source: "./media/characters/adake/back.svg",
  1695. }
  1696. },
  1697. kneel: {
  1698. height: math.unit(5.385, "feet"),
  1699. weight: math.unit(100, "kg"),
  1700. name: "Kneeling",
  1701. image: {
  1702. source: "./media/characters/adake/kneel.svg",
  1703. bottom: 0.052
  1704. }
  1705. },
  1706. },
  1707. [
  1708. {
  1709. name: "Normal",
  1710. height: math.unit(7, "feet"),
  1711. },
  1712. {
  1713. name: "Macro",
  1714. height: math.unit(78, "feet"),
  1715. default: true
  1716. },
  1717. {
  1718. name: "Macro+",
  1719. height: math.unit(300, "meters")
  1720. },
  1721. {
  1722. name: "Macro++",
  1723. height: math.unit(2400, "meters")
  1724. },
  1725. {
  1726. name: "Megamacro",
  1727. height: math.unit(5167, "meters")
  1728. },
  1729. {
  1730. name: "Gigamacro",
  1731. height: math.unit(41769, "miles")
  1732. },
  1733. ]
  1734. ))
  1735. characterMakers.push(() => makeCharacter(
  1736. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1737. {
  1738. front: {
  1739. height: math.unit(1.65, "meters"),
  1740. weight: math.unit(50, "kg"),
  1741. name: "Front",
  1742. image: {
  1743. source: "./media/characters/elijah/front.svg",
  1744. extra: 858 / 830,
  1745. bottom: 95.5 / 953.8559
  1746. }
  1747. },
  1748. back: {
  1749. height: math.unit(1.65, "meters"),
  1750. weight: math.unit(50, "kg"),
  1751. name: "Back",
  1752. image: {
  1753. source: "./media/characters/elijah/back.svg",
  1754. extra: 895 / 850,
  1755. bottom: 5.3 / 897.956
  1756. }
  1757. },
  1758. frontNsfw: {
  1759. height: math.unit(1.65, "meters"),
  1760. weight: math.unit(50, "kg"),
  1761. name: "Front (NSFW)",
  1762. image: {
  1763. source: "./media/characters/elijah/front-nsfw.svg",
  1764. extra: 858 / 830,
  1765. bottom: 95.5 / 953.8559
  1766. }
  1767. },
  1768. backNsfw: {
  1769. height: math.unit(1.65, "meters"),
  1770. weight: math.unit(50, "kg"),
  1771. name: "Back (NSFW)",
  1772. image: {
  1773. source: "./media/characters/elijah/back-nsfw.svg",
  1774. extra: 895 / 850,
  1775. bottom: 5.3 / 897.956
  1776. }
  1777. },
  1778. dick: {
  1779. height: math.unit(1, "feet"),
  1780. name: "Dick",
  1781. image: {
  1782. source: "./media/characters/elijah/dick.svg"
  1783. }
  1784. },
  1785. beakOpen: {
  1786. height: math.unit(1.25, "feet"),
  1787. name: "Beak (Open)",
  1788. image: {
  1789. source: "./media/characters/elijah/beak-open.svg"
  1790. }
  1791. },
  1792. beakShut: {
  1793. height: math.unit(1.25, "feet"),
  1794. name: "Beak (Shut)",
  1795. image: {
  1796. source: "./media/characters/elijah/beak-shut.svg"
  1797. }
  1798. },
  1799. footFlexing: {
  1800. height: math.unit(1.61, "feet"),
  1801. name: "Foot (Flexing)",
  1802. image: {
  1803. source: "./media/characters/elijah/foot-flexing.svg"
  1804. }
  1805. },
  1806. footStepping: {
  1807. height: math.unit(1.44, "feet"),
  1808. name: "Foot (Stepping)",
  1809. image: {
  1810. source: "./media/characters/elijah/foot-stepping.svg"
  1811. }
  1812. },
  1813. plantigradeLeg: {
  1814. height: math.unit(2.34, "feet"),
  1815. name: "Plantigrade Leg",
  1816. image: {
  1817. source: "./media/characters/elijah/plantigrade-leg.svg"
  1818. }
  1819. },
  1820. plantigradeFootLeft: {
  1821. height: math.unit(0.9, "feet"),
  1822. name: "Plantigrade Foot (Left)",
  1823. image: {
  1824. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1825. }
  1826. },
  1827. plantigradeFootRight: {
  1828. height: math.unit(0.9, "feet"),
  1829. name: "Plantigrade Foot (Right)",
  1830. image: {
  1831. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1832. }
  1833. },
  1834. },
  1835. [
  1836. {
  1837. name: "Normal",
  1838. height: math.unit(1.65, "meters")
  1839. },
  1840. {
  1841. name: "Macro",
  1842. height: math.unit(55, "meters"),
  1843. default: true
  1844. },
  1845. {
  1846. name: "Macro+",
  1847. height: math.unit(105, "meters")
  1848. },
  1849. ]
  1850. ))
  1851. characterMakers.push(() => makeCharacter(
  1852. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1853. {
  1854. front: {
  1855. height: math.unit(11, "feet"),
  1856. weight: math.unit(80, "kg"),
  1857. name: "Front",
  1858. image: {
  1859. source: "./media/characters/rai/front.svg",
  1860. extra: 1,
  1861. bottom: 0.03
  1862. }
  1863. },
  1864. side: {
  1865. height: math.unit(11, "feet"),
  1866. weight: math.unit(80, "kg"),
  1867. name: "Side",
  1868. image: {
  1869. source: "./media/characters/rai/side.svg"
  1870. }
  1871. },
  1872. back: {
  1873. height: math.unit(11, "feet"),
  1874. weight: math.unit(80, "lb"),
  1875. name: "Back",
  1876. image: {
  1877. source: "./media/characters/rai/back.svg",
  1878. extra: 1,
  1879. bottom: 0.01
  1880. }
  1881. },
  1882. feral: {
  1883. height: math.unit(11, "feet"),
  1884. weight: math.unit(800, "lb"),
  1885. name: "Feral",
  1886. image: {
  1887. source: "./media/characters/rai/feral.svg",
  1888. extra: 1050 / 659,
  1889. bottom: 0.07
  1890. }
  1891. },
  1892. dragon: {
  1893. height: math.unit(23, "feet"),
  1894. weight: math.unit(50000, "lb"),
  1895. name: "Dragon",
  1896. image: {
  1897. source: "./media/characters/rai/dragon.svg",
  1898. extra: 2498 / 2030,
  1899. bottom: 85.2 / 2584
  1900. }
  1901. },
  1902. maw: {
  1903. height: math.unit(6 / 3.81416, "feet"),
  1904. name: "Maw",
  1905. image: {
  1906. source: "./media/characters/rai/maw.svg"
  1907. }
  1908. },
  1909. },
  1910. [
  1911. {
  1912. name: "Normal",
  1913. height: math.unit(11, "feet")
  1914. },
  1915. {
  1916. name: "Macro",
  1917. height: math.unit(302, "feet"),
  1918. default: true
  1919. },
  1920. ]
  1921. ))
  1922. characterMakers.push(() => makeCharacter(
  1923. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1924. {
  1925. frontDressed: {
  1926. height: math.unit(216, "feet"),
  1927. weight: math.unit(7000000, "lb"),
  1928. name: "Front (Dressed)",
  1929. image: {
  1930. source: "./media/characters/jazzy/front-dressed.svg",
  1931. extra: 2738 / 2651,
  1932. bottom: 41.8 / 2786
  1933. }
  1934. },
  1935. backDressed: {
  1936. height: math.unit(216, "feet"),
  1937. weight: math.unit(7000000, "lb"),
  1938. name: "Back (Dressed)",
  1939. image: {
  1940. source: "./media/characters/jazzy/back-dressed.svg",
  1941. extra: 2775 / 2673,
  1942. bottom: 36.8 / 2817
  1943. }
  1944. },
  1945. front: {
  1946. height: math.unit(216, "feet"),
  1947. weight: math.unit(7000000, "lb"),
  1948. name: "Front",
  1949. image: {
  1950. source: "./media/characters/jazzy/front.svg",
  1951. extra: 2738 / 2651,
  1952. bottom: 41.8 / 2786
  1953. }
  1954. },
  1955. back: {
  1956. height: math.unit(216, "feet"),
  1957. weight: math.unit(7000000, "lb"),
  1958. name: "Back",
  1959. image: {
  1960. source: "./media/characters/jazzy/back.svg",
  1961. extra: 2775 / 2673,
  1962. bottom: 36.8 / 2817
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(20, "feet"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/jazzy/maw.svg"
  1970. }
  1971. },
  1972. paws: {
  1973. height: math.unit(27.5, "feet"),
  1974. name: "Paws",
  1975. image: {
  1976. source: "./media/characters/jazzy/paws.svg"
  1977. }
  1978. },
  1979. eye: {
  1980. height: math.unit(4.4, "feet"),
  1981. name: "Eye",
  1982. image: {
  1983. source: "./media/characters/jazzy/eye.svg"
  1984. }
  1985. },
  1986. droneOffense: {
  1987. height: math.unit(9.5, "inches"),
  1988. name: "Drone (Offense)",
  1989. image: {
  1990. source: "./media/characters/jazzy/drone-offense.svg"
  1991. }
  1992. },
  1993. droneRecon: {
  1994. height: math.unit(9.5, "inches"),
  1995. name: "Drone (Recon)",
  1996. image: {
  1997. source: "./media/characters/jazzy/drone-recon.svg"
  1998. }
  1999. },
  2000. droneDefense: {
  2001. height: math.unit(9.5, "inches"),
  2002. name: "Drone (Defense)",
  2003. image: {
  2004. source: "./media/characters/jazzy/drone-defense.svg"
  2005. }
  2006. },
  2007. },
  2008. [
  2009. {
  2010. name: "Macro",
  2011. height: math.unit(216, "feet"),
  2012. default: true
  2013. },
  2014. ]
  2015. ))
  2016. characterMakers.push(() => makeCharacter(
  2017. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2018. {
  2019. front: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(80, "kg"),
  2022. name: "Front",
  2023. image: {
  2024. source: "./media/characters/flamm/front.svg",
  2025. extra: 1794 / 1677,
  2026. bottom: 31.7 / 1828.5
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Normal",
  2033. height: math.unit(9.5, "feet")
  2034. },
  2035. {
  2036. name: "Macro",
  2037. height: math.unit(200, "feet"),
  2038. default: true
  2039. },
  2040. ]
  2041. ))
  2042. characterMakers.push(() => makeCharacter(
  2043. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2044. {
  2045. front: {
  2046. height: math.unit(7, "feet"),
  2047. weight: math.unit(80, "kg"),
  2048. name: "Front",
  2049. image: {
  2050. source: "./media/characters/zephiro/front.svg",
  2051. extra: 2309 / 2162,
  2052. bottom: 0.069
  2053. }
  2054. },
  2055. side: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(80, "kg"),
  2058. name: "Side",
  2059. image: {
  2060. source: "./media/characters/zephiro/side.svg",
  2061. extra: 2403 / 2279,
  2062. bottom: 0.015
  2063. }
  2064. },
  2065. back: {
  2066. height: math.unit(7, "feet"),
  2067. weight: math.unit(80, "kg"),
  2068. name: "Back",
  2069. image: {
  2070. source: "./media/characters/zephiro/back.svg",
  2071. extra: 2373 / 2244,
  2072. bottom: 0.013
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Micro",
  2079. height: math.unit(3, "inches")
  2080. },
  2081. {
  2082. name: "Normal",
  2083. height: math.unit(5 + 3 / 12, "feet"),
  2084. default: true
  2085. },
  2086. {
  2087. name: "Macro",
  2088. height: math.unit(118, "feet")
  2089. },
  2090. ]
  2091. ))
  2092. characterMakers.push(() => makeCharacter(
  2093. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2094. {
  2095. front: {
  2096. height: math.unit(5, "feet"),
  2097. weight: math.unit(90, "kg"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/fory/front.svg",
  2101. extra: 2862 / 2674,
  2102. bottom: 180 / 3043.8
  2103. }
  2104. },
  2105. back: {
  2106. height: math.unit(5, "feet"),
  2107. weight: math.unit(90, "kg"),
  2108. name: "Back",
  2109. image: {
  2110. source: "./media/characters/fory/back.svg",
  2111. extra: 2962 / 2791,
  2112. bottom: 106 / 3071.8
  2113. }
  2114. },
  2115. foot: {
  2116. height: math.unit(2.14, "feet"),
  2117. name: "Foot",
  2118. image: {
  2119. source: "./media/characters/fory/foot.svg"
  2120. }
  2121. },
  2122. },
  2123. [
  2124. {
  2125. name: "Normal",
  2126. height: math.unit(5, "feet")
  2127. },
  2128. {
  2129. name: "Macro",
  2130. height: math.unit(50, "feet"),
  2131. default: true
  2132. },
  2133. {
  2134. name: "Megamacro",
  2135. height: math.unit(10, "miles")
  2136. },
  2137. {
  2138. name: "Gigamacro",
  2139. height: math.unit(5, "earths")
  2140. },
  2141. ]
  2142. ))
  2143. characterMakers.push(() => makeCharacter(
  2144. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2145. {
  2146. front: {
  2147. height: math.unit(7, "feet"),
  2148. weight: math.unit(90, "kg"),
  2149. name: "Front",
  2150. image: {
  2151. source: "./media/characters/kurrikage/front.svg",
  2152. extra: 1,
  2153. bottom: 0.035
  2154. }
  2155. },
  2156. back: {
  2157. height: math.unit(7, "feet"),
  2158. weight: math.unit(90, "lb"),
  2159. name: "Back",
  2160. image: {
  2161. source: "./media/characters/kurrikage/back.svg"
  2162. }
  2163. },
  2164. paw: {
  2165. height: math.unit(1.5, "feet"),
  2166. name: "Paw",
  2167. image: {
  2168. source: "./media/characters/kurrikage/paw.svg"
  2169. }
  2170. },
  2171. staff: {
  2172. height: math.unit(6.7, "feet"),
  2173. name: "Staff",
  2174. image: {
  2175. source: "./media/characters/kurrikage/staff.svg"
  2176. }
  2177. },
  2178. peek: {
  2179. height: math.unit(1.05, "feet"),
  2180. name: "Peeking",
  2181. image: {
  2182. source: "./media/characters/kurrikage/peek.svg",
  2183. bottom: 0.08
  2184. }
  2185. },
  2186. },
  2187. [
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(12, "feet"),
  2191. default: true
  2192. },
  2193. {
  2194. name: "Big",
  2195. height: math.unit(20, "feet")
  2196. },
  2197. {
  2198. name: "Macro",
  2199. height: math.unit(500, "feet")
  2200. },
  2201. {
  2202. name: "Megamacro",
  2203. height: math.unit(20, "miles")
  2204. },
  2205. ]
  2206. ))
  2207. characterMakers.push(() => makeCharacter(
  2208. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2209. {
  2210. front: {
  2211. height: math.unit(6, "feet"),
  2212. weight: math.unit(75, "kg"),
  2213. name: "Front",
  2214. image: {
  2215. source: "./media/characters/shingo/front.svg",
  2216. extra: 3511 / 3338,
  2217. bottom: 0.005
  2218. }
  2219. },
  2220. },
  2221. [
  2222. {
  2223. name: "Micro",
  2224. height: math.unit(4, "inches")
  2225. },
  2226. {
  2227. name: "Normal",
  2228. height: math.unit(6, "feet"),
  2229. default: true
  2230. },
  2231. {
  2232. name: "Macro",
  2233. height: math.unit(108, "feet")
  2234. }
  2235. ]
  2236. ))
  2237. characterMakers.push(() => makeCharacter(
  2238. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2239. {
  2240. side: {
  2241. height: math.unit(6, "feet"),
  2242. weight: math.unit(75, "kg"),
  2243. name: "Side",
  2244. image: {
  2245. source: "./media/characters/aigey/side.svg"
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Macro",
  2252. height: math.unit(200, "feet"),
  2253. default: true
  2254. },
  2255. {
  2256. name: "Megamacro",
  2257. height: math.unit(100, "miles")
  2258. },
  2259. ]
  2260. )
  2261. )
  2262. characterMakers.push(() => makeCharacter(
  2263. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2264. {
  2265. front: {
  2266. height: math.unit(5 + 5 / 12, "feet"),
  2267. weight: math.unit(75, "kg"),
  2268. name: "Front",
  2269. image: {
  2270. source: "./media/characters/natasha/front.svg",
  2271. extra: 859 / 824,
  2272. bottom: 23 / 879.6
  2273. }
  2274. },
  2275. frontNsfw: {
  2276. height: math.unit(5 + 5 / 12, "feet"),
  2277. weight: math.unit(75, "kg"),
  2278. name: "Front (NSFW)",
  2279. image: {
  2280. source: "./media/characters/natasha/front-nsfw.svg",
  2281. extra: 859 / 824,
  2282. bottom: 23 / 879.6
  2283. }
  2284. },
  2285. frontErect: {
  2286. height: math.unit(5 + 5 / 12, "feet"),
  2287. weight: math.unit(75, "kg"),
  2288. name: "Front (Erect)",
  2289. image: {
  2290. source: "./media/characters/natasha/front-erect.svg",
  2291. extra: 859 / 824,
  2292. bottom: 23 / 879.6
  2293. }
  2294. },
  2295. back: {
  2296. height: math.unit(5 + 5 / 12, "feet"),
  2297. weight: math.unit(75, "kg"),
  2298. name: "Back",
  2299. image: {
  2300. source: "./media/characters/natasha/back.svg",
  2301. extra: 887.9 / 852.6,
  2302. bottom: 9.7 / 896.4
  2303. }
  2304. },
  2305. backAlt: {
  2306. height: math.unit(5 + 5 / 12, "feet"),
  2307. weight: math.unit(75, "kg"),
  2308. name: "Back (Alt)",
  2309. image: {
  2310. source: "./media/characters/natasha/back-alt.svg",
  2311. extra: 1236.7 / 1192,
  2312. bottom: 22.3 / 1258.2
  2313. }
  2314. },
  2315. dick: {
  2316. height: math.unit(1.772, "feet"),
  2317. name: "Dick",
  2318. image: {
  2319. source: "./media/characters/natasha/dick.svg"
  2320. }
  2321. },
  2322. },
  2323. [
  2324. {
  2325. name: "Normal",
  2326. height: math.unit(5 + 5 / 12, "feet")
  2327. },
  2328. {
  2329. name: "Large",
  2330. height: math.unit(12, "feet")
  2331. },
  2332. {
  2333. name: "Macro",
  2334. height: math.unit(100, "feet"),
  2335. default: true
  2336. },
  2337. {
  2338. name: "Macro+",
  2339. height: math.unit(260, "feet")
  2340. },
  2341. {
  2342. name: "Macro++",
  2343. height: math.unit(1, "mile")
  2344. },
  2345. ]
  2346. ))
  2347. characterMakers.push(() => makeCharacter(
  2348. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2349. {
  2350. front: {
  2351. height: math.unit(6, "feet"),
  2352. weight: math.unit(75, "kg"),
  2353. name: "Front",
  2354. image: {
  2355. source: "./media/characters/malik/front.svg"
  2356. }
  2357. },
  2358. side: {
  2359. height: math.unit(6, "feet"),
  2360. weight: math.unit(75, "kg"),
  2361. name: "Side",
  2362. image: {
  2363. source: "./media/characters/malik/side.svg",
  2364. extra: 1.1539
  2365. }
  2366. },
  2367. back: {
  2368. height: math.unit(6, "feet"),
  2369. weight: math.unit(75, "kg"),
  2370. name: "Back",
  2371. image: {
  2372. source: "./media/characters/malik/back.svg"
  2373. }
  2374. },
  2375. },
  2376. [
  2377. {
  2378. name: "Macro",
  2379. height: math.unit(156, "feet"),
  2380. default: true
  2381. },
  2382. {
  2383. name: "Macro+",
  2384. height: math.unit(1188, "feet")
  2385. },
  2386. ]
  2387. ))
  2388. characterMakers.push(() => makeCharacter(
  2389. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2390. {
  2391. front: {
  2392. height: math.unit(6, "feet"),
  2393. weight: math.unit(75, "kg"),
  2394. name: "Front",
  2395. image: {
  2396. source: "./media/characters/sefer/front.svg",
  2397. extra: 848 / 659,
  2398. bottom: 28.3 / 876.442
  2399. }
  2400. },
  2401. back: {
  2402. height: math.unit(6, "feet"),
  2403. weight: math.unit(75, "kg"),
  2404. name: "Back",
  2405. image: {
  2406. source: "./media/characters/sefer/back.svg",
  2407. extra: 864 / 695,
  2408. bottom: 10 / 871
  2409. }
  2410. },
  2411. frontDressed: {
  2412. height: math.unit(6, "feet"),
  2413. weight: math.unit(75, "kg"),
  2414. name: "Front (Dressed)",
  2415. image: {
  2416. source: "./media/characters/sefer/front-dressed.svg",
  2417. extra: 839 / 653,
  2418. bottom: 37.6 / 878
  2419. }
  2420. },
  2421. },
  2422. [
  2423. {
  2424. name: "Normal",
  2425. height: math.unit(6, "feet"),
  2426. default: true
  2427. },
  2428. ]
  2429. ))
  2430. characterMakers.push(() => makeCharacter(
  2431. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2432. {
  2433. body: {
  2434. height: math.unit(2.2428, "meter"),
  2435. weight: math.unit(124.738, "kg"),
  2436. name: "Body",
  2437. image: {
  2438. extra: 1225 / 1050,
  2439. source: "./media/characters/north/front.svg"
  2440. }
  2441. }
  2442. },
  2443. [
  2444. {
  2445. name: "Micro",
  2446. height: math.unit(4, "inches")
  2447. },
  2448. {
  2449. name: "Macro",
  2450. height: math.unit(63, "meters")
  2451. },
  2452. {
  2453. name: "Megamacro",
  2454. height: math.unit(101, "miles"),
  2455. default: true
  2456. }
  2457. ]
  2458. ))
  2459. characterMakers.push(() => makeCharacter(
  2460. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2461. {
  2462. angled: {
  2463. height: math.unit(4, "meter"),
  2464. weight: math.unit(150, "kg"),
  2465. name: "Angled",
  2466. image: {
  2467. source: "./media/characters/talan/angled-sfw.svg",
  2468. bottom: 29 / 3734
  2469. }
  2470. },
  2471. angledNsfw: {
  2472. height: math.unit(4, "meter"),
  2473. weight: math.unit(150, "kg"),
  2474. name: "Angled (NSFW)",
  2475. image: {
  2476. source: "./media/characters/talan/angled-nsfw.svg",
  2477. bottom: 29 / 3734
  2478. }
  2479. },
  2480. frontNsfw: {
  2481. height: math.unit(4, "meter"),
  2482. weight: math.unit(150, "kg"),
  2483. name: "Front (NSFW)",
  2484. image: {
  2485. source: "./media/characters/talan/front-nsfw.svg",
  2486. bottom: 29 / 3734
  2487. }
  2488. },
  2489. sideNsfw: {
  2490. height: math.unit(4, "meter"),
  2491. weight: math.unit(150, "kg"),
  2492. name: "Side (NSFW)",
  2493. image: {
  2494. source: "./media/characters/talan/side-nsfw.svg",
  2495. bottom: 29 / 3734
  2496. }
  2497. },
  2498. back: {
  2499. height: math.unit(4, "meter"),
  2500. weight: math.unit(150, "kg"),
  2501. name: "Back",
  2502. image: {
  2503. source: "./media/characters/talan/back.svg"
  2504. }
  2505. },
  2506. dickBottom: {
  2507. height: math.unit(0.621, "meter"),
  2508. name: "Dick (Bottom)",
  2509. image: {
  2510. source: "./media/characters/talan/dick-bottom.svg"
  2511. }
  2512. },
  2513. dickTop: {
  2514. height: math.unit(0.621, "meter"),
  2515. name: "Dick (Top)",
  2516. image: {
  2517. source: "./media/characters/talan/dick-top.svg"
  2518. }
  2519. },
  2520. dickSide: {
  2521. height: math.unit(0.305, "meter"),
  2522. name: "Dick (Side)",
  2523. image: {
  2524. source: "./media/characters/talan/dick-side.svg"
  2525. }
  2526. },
  2527. dickFront: {
  2528. height: math.unit(0.305, "meter"),
  2529. name: "Dick (Front)",
  2530. image: {
  2531. source: "./media/characters/talan/dick-front.svg"
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(4, "meters")
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(100, "meters")
  2543. },
  2544. {
  2545. name: "Megamacro",
  2546. height: math.unit(2, "miles"),
  2547. default: true
  2548. },
  2549. {
  2550. name: "Gigamacro",
  2551. height: math.unit(5000, "miles")
  2552. },
  2553. {
  2554. name: "Teramacro",
  2555. height: math.unit(100, "parsecs")
  2556. }
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(2, "meter"),
  2564. weight: math.unit(90, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/gael'rathus/front.svg"
  2568. }
  2569. },
  2570. frontAlt: {
  2571. height: math.unit(2, "meter"),
  2572. weight: math.unit(90, "kg"),
  2573. name: "Front (alt)",
  2574. image: {
  2575. source: "./media/characters/gael'rathus/front-alt.svg"
  2576. }
  2577. },
  2578. frontAlt2: {
  2579. height: math.unit(2, "meter"),
  2580. weight: math.unit(90, "kg"),
  2581. name: "Front (alt 2)",
  2582. image: {
  2583. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2584. }
  2585. }
  2586. },
  2587. [
  2588. {
  2589. name: "Normal",
  2590. height: math.unit(9, "feet"),
  2591. default: true
  2592. },
  2593. {
  2594. name: "Large",
  2595. height: math.unit(25, "feet")
  2596. },
  2597. {
  2598. name: "Macro",
  2599. height: math.unit(0.25, "miles")
  2600. },
  2601. {
  2602. name: "Megamacro",
  2603. height: math.unit(10, "miles")
  2604. }
  2605. ]
  2606. ))
  2607. characterMakers.push(() => makeCharacter(
  2608. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2609. {
  2610. side: {
  2611. height: math.unit(2, "meter"),
  2612. weight: math.unit(140, "kg"),
  2613. name: "Side",
  2614. image: {
  2615. source: "./media/characters/sosha/side.svg",
  2616. bottom: 0.042
  2617. }
  2618. },
  2619. },
  2620. [
  2621. {
  2622. name: "Normal",
  2623. height: math.unit(12, "feet"),
  2624. default: true
  2625. }
  2626. ]
  2627. ))
  2628. characterMakers.push(() => makeCharacter(
  2629. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2630. {
  2631. side: {
  2632. height: math.unit(5 + 5 / 12, "feet"),
  2633. weight: math.unit(170, "kg"),
  2634. name: "Side",
  2635. image: {
  2636. source: "./media/characters/runnola/side.svg",
  2637. extra: 741 / 448,
  2638. bottom: 0.05
  2639. }
  2640. },
  2641. },
  2642. [
  2643. {
  2644. name: "Small",
  2645. height: math.unit(3, "feet")
  2646. },
  2647. {
  2648. name: "Normal",
  2649. height: math.unit(5 + 5 / 12, "feet"),
  2650. default: true
  2651. },
  2652. {
  2653. name: "Big",
  2654. height: math.unit(10, "feet")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(2, "meter"),
  2663. weight: math.unit(50, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/kurribird/front.svg",
  2667. bottom: 0.015
  2668. }
  2669. },
  2670. frontAlt: {
  2671. height: math.unit(1.5, "meter"),
  2672. weight: math.unit(50, "kg"),
  2673. name: "Front (Alt)",
  2674. image: {
  2675. source: "./media/characters/kurribird/front-alt.svg",
  2676. extra: 1.45
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Normal",
  2683. height: math.unit(7, "feet")
  2684. },
  2685. {
  2686. name: "Big",
  2687. height: math.unit(12, "feet"),
  2688. default: true
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(1500, "feet")
  2693. },
  2694. {
  2695. name: "Megamacro",
  2696. height: math.unit(2, "miles")
  2697. }
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(2, "meter"),
  2705. weight: math.unit(80, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/elbial/front.svg",
  2709. extra: 1643 / 1556,
  2710. bottom: 60.2 / 1696
  2711. }
  2712. },
  2713. side: {
  2714. height: math.unit(2, "meter"),
  2715. weight: math.unit(80, "kg"),
  2716. name: "Side",
  2717. image: {
  2718. source: "./media/characters/elbial/side.svg",
  2719. extra: 1630 / 1565,
  2720. bottom: 71.5 / 1697
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(2, "meter"),
  2725. weight: math.unit(80, "kg"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/elbial/back.svg",
  2729. extra: 1668 / 1595,
  2730. bottom: 5.6 / 1672
  2731. }
  2732. },
  2733. frontDressed: {
  2734. height: math.unit(2, "meter"),
  2735. weight: math.unit(80, "kg"),
  2736. name: "Front (Dressed)",
  2737. image: {
  2738. source: "./media/characters/elbial/front-dressed.svg",
  2739. extra: 1653 / 1584,
  2740. bottom: 57 / 1708
  2741. }
  2742. },
  2743. genitals: {
  2744. height: math.unit(2 / 3.367, "meter"),
  2745. name: "Genitals",
  2746. image: {
  2747. source: "./media/characters/elbial/genitals.svg"
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Large",
  2754. height: math.unit(100, "feet")
  2755. },
  2756. {
  2757. name: "Macro",
  2758. height: math.unit(500, "feet"),
  2759. default: true
  2760. },
  2761. {
  2762. name: "Megamacro",
  2763. height: math.unit(10, "miles")
  2764. },
  2765. {
  2766. name: "Gigamacro",
  2767. height: math.unit(25000, "miles")
  2768. },
  2769. {
  2770. name: "Full-Size",
  2771. height: math.unit(8000000, "gigaparsecs")
  2772. }
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2777. {
  2778. front: {
  2779. height: math.unit(2, "meter"),
  2780. weight: math.unit(60, "kg"),
  2781. name: "Front",
  2782. image: {
  2783. source: "./media/characters/noah/front.svg"
  2784. }
  2785. },
  2786. talons: {
  2787. height: math.unit(0.315, "meter"),
  2788. name: "Talons",
  2789. image: {
  2790. source: "./media/characters/noah/talons.svg"
  2791. }
  2792. }
  2793. },
  2794. [
  2795. {
  2796. name: "Large",
  2797. height: math.unit(50, "feet")
  2798. },
  2799. {
  2800. name: "Macro",
  2801. height: math.unit(750, "feet"),
  2802. default: true
  2803. },
  2804. {
  2805. name: "Megamacro",
  2806. height: math.unit(50, "miles")
  2807. },
  2808. {
  2809. name: "Gigamacro",
  2810. height: math.unit(100000, "miles")
  2811. },
  2812. {
  2813. name: "Full-Size",
  2814. height: math.unit(3000000000, "miles")
  2815. }
  2816. ]
  2817. ))
  2818. characterMakers.push(() => makeCharacter(
  2819. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2820. {
  2821. front: {
  2822. height: math.unit(2, "meter"),
  2823. weight: math.unit(80, "kg"),
  2824. name: "Front",
  2825. image: {
  2826. source: "./media/characters/natalya/front.svg"
  2827. }
  2828. },
  2829. back: {
  2830. height: math.unit(2, "meter"),
  2831. weight: math.unit(80, "kg"),
  2832. name: "Back",
  2833. image: {
  2834. source: "./media/characters/natalya/back.svg"
  2835. }
  2836. }
  2837. },
  2838. [
  2839. {
  2840. name: "Normal",
  2841. height: math.unit(150, "feet"),
  2842. default: true
  2843. },
  2844. {
  2845. name: "Megamacro",
  2846. height: math.unit(5, "miles")
  2847. },
  2848. {
  2849. name: "Full-Size",
  2850. height: math.unit(600, "kiloparsecs")
  2851. }
  2852. ]
  2853. ))
  2854. characterMakers.push(() => makeCharacter(
  2855. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2856. {
  2857. front: {
  2858. height: math.unit(2, "meter"),
  2859. weight: math.unit(50, "kg"),
  2860. name: "Front",
  2861. image: {
  2862. source: "./media/characters/erestrebah/front.svg",
  2863. extra: 208 / 193,
  2864. bottom: 0.055
  2865. }
  2866. },
  2867. back: {
  2868. height: math.unit(2, "meter"),
  2869. weight: math.unit(50, "kg"),
  2870. name: "Back",
  2871. image: {
  2872. source: "./media/characters/erestrebah/back.svg",
  2873. extra: 1.3
  2874. }
  2875. }
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(10, "feet")
  2881. },
  2882. {
  2883. name: "Large",
  2884. height: math.unit(50, "feet"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Macro",
  2889. height: math.unit(300, "feet")
  2890. },
  2891. {
  2892. name: "Macro+",
  2893. height: math.unit(750, "feet")
  2894. },
  2895. {
  2896. name: "Megamacro",
  2897. height: math.unit(3, "miles")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(80, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/jennifer/front.svg",
  2910. bottom: 0.11,
  2911. extra: 1.16
  2912. }
  2913. },
  2914. frontAlt: {
  2915. height: math.unit(2, "meter"),
  2916. weight: math.unit(80, "kg"),
  2917. name: "Front (Alt)",
  2918. image: {
  2919. source: "./media/characters/jennifer/front-alt.svg"
  2920. }
  2921. }
  2922. },
  2923. [
  2924. {
  2925. name: "Canon Height",
  2926. height: math.unit(120, "feet"),
  2927. default: true
  2928. },
  2929. {
  2930. name: "Macro+",
  2931. height: math.unit(300, "feet")
  2932. },
  2933. {
  2934. name: "Megamacro",
  2935. height: math.unit(20000, "feet")
  2936. }
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2941. {
  2942. front: {
  2943. height: math.unit(2, "meter"),
  2944. weight: math.unit(50, "kg"),
  2945. name: "Front",
  2946. image: {
  2947. source: "./media/characters/kalista/front.svg",
  2948. extra: 1947 / 1700,
  2949. bottom: 76.6 / 1412.98
  2950. }
  2951. },
  2952. back: {
  2953. height: math.unit(2, "meter"),
  2954. weight: math.unit(50, "kg"),
  2955. name: "Back",
  2956. image: {
  2957. source: "./media/characters/kalista/back.svg",
  2958. extra: 1366 / 1156,
  2959. bottom: 33.9 / 1362.78
  2960. }
  2961. }
  2962. },
  2963. [
  2964. {
  2965. name: "Uncomfortably Small",
  2966. height: math.unit(10, "feet")
  2967. },
  2968. {
  2969. name: "Small",
  2970. height: math.unit(30, "feet")
  2971. },
  2972. {
  2973. name: "Macro",
  2974. height: math.unit(100, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Macro+",
  2979. height: math.unit(2000, "feet")
  2980. },
  2981. {
  2982. name: "True Form",
  2983. height: math.unit(8924, "miles")
  2984. }
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(2, "meter"),
  2992. weight: math.unit(120, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/ggv/front.svg"
  2996. }
  2997. },
  2998. side: {
  2999. height: math.unit(2, "meter"),
  3000. weight: math.unit(120, "kg"),
  3001. name: "Side",
  3002. image: {
  3003. source: "./media/characters/ggv/side.svg"
  3004. }
  3005. }
  3006. },
  3007. [
  3008. {
  3009. name: "Extremely Puny",
  3010. height: math.unit(9 + 5 / 12, "feet")
  3011. },
  3012. {
  3013. name: "Horribly Small",
  3014. height: math.unit(47.7, "miles"),
  3015. default: true
  3016. },
  3017. {
  3018. name: "Reasonably Sized",
  3019. height: math.unit(25000, "parsecs")
  3020. },
  3021. {
  3022. name: "Slightly Uncompressed",
  3023. height: math.unit(7.77e31, "parsecs")
  3024. },
  3025. {
  3026. name: "Omniversal",
  3027. height: math.unit(1e300, "meters")
  3028. },
  3029. ]
  3030. ))
  3031. characterMakers.push(() => makeCharacter(
  3032. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3033. {
  3034. front: {
  3035. height: math.unit(2, "meter"),
  3036. weight: math.unit(75, "lb"),
  3037. name: "Front",
  3038. image: {
  3039. source: "./media/characters/napalm/front.svg"
  3040. }
  3041. },
  3042. back: {
  3043. height: math.unit(2, "meter"),
  3044. weight: math.unit(75, "lb"),
  3045. name: "Back",
  3046. image: {
  3047. source: "./media/characters/napalm/back.svg"
  3048. }
  3049. }
  3050. },
  3051. [
  3052. {
  3053. name: "Standard",
  3054. height: math.unit(55, "feet"),
  3055. default: true
  3056. }
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3061. {
  3062. front: {
  3063. height: math.unit(7 + 5 / 6, "feet"),
  3064. weight: math.unit(325, "lb"),
  3065. name: "Front",
  3066. image: {
  3067. source: "./media/characters/asana/front.svg",
  3068. extra: 1133 / 1060,
  3069. bottom: 15.2/1148.6
  3070. }
  3071. },
  3072. back: {
  3073. height: math.unit(7 + 5 / 6, "feet"),
  3074. weight: math.unit(325, "lb"),
  3075. name: "Back",
  3076. image: {
  3077. source: "./media/characters/asana/back.svg",
  3078. extra: 1114 / 1043,
  3079. bottom: 5/1120
  3080. }
  3081. },
  3082. dressedDark: {
  3083. height: math.unit(7 + 5 / 6, "feet"),
  3084. weight: math.unit(325, "lb"),
  3085. name: "Dressed (Dark)",
  3086. image: {
  3087. source: "./media/characters/asana/dressed-dark.svg",
  3088. extra: 1133 / 1060,
  3089. bottom: 15.2/1148.6
  3090. }
  3091. },
  3092. dressedLight: {
  3093. height: math.unit(7 + 5 / 6, "feet"),
  3094. weight: math.unit(325, "lb"),
  3095. name: "Dressed (Light)",
  3096. image: {
  3097. source: "./media/characters/asana/dressed-light.svg",
  3098. extra: 1133 / 1060,
  3099. bottom: 15.2/1148.6
  3100. }
  3101. },
  3102. },
  3103. [
  3104. {
  3105. name: "Standard",
  3106. height: math.unit(7 + 5 / 6, "feet"),
  3107. default: true
  3108. },
  3109. {
  3110. name: "Large",
  3111. height: math.unit(10, "meters")
  3112. },
  3113. {
  3114. name: "Macro",
  3115. height: math.unit(2500, "meters")
  3116. },
  3117. {
  3118. name: "Megamacro",
  3119. height: math.unit(5e6, "meters")
  3120. },
  3121. {
  3122. name: "Examacro",
  3123. height: math.unit(5e12, "lightyears")
  3124. },
  3125. {
  3126. name: "Max Size",
  3127. height: math.unit(1e31, "lightyears")
  3128. }
  3129. ]
  3130. ))
  3131. characterMakers.push(() => makeCharacter(
  3132. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3133. {
  3134. front: {
  3135. height: math.unit(2, "meter"),
  3136. weight: math.unit(60, "kg"),
  3137. name: "Front",
  3138. image: {
  3139. source: "./media/characters/ebony/front.svg",
  3140. bottom: 0.03,
  3141. extra: 1045 / 810 + 0.03
  3142. }
  3143. },
  3144. side: {
  3145. height: math.unit(2, "meter"),
  3146. weight: math.unit(60, "kg"),
  3147. name: "Side",
  3148. image: {
  3149. source: "./media/characters/ebony/side.svg",
  3150. bottom: 0.03,
  3151. extra: 1045 / 810 + 0.03
  3152. }
  3153. },
  3154. back: {
  3155. height: math.unit(2, "meter"),
  3156. weight: math.unit(60, "kg"),
  3157. name: "Back",
  3158. image: {
  3159. source: "./media/characters/ebony/back.svg",
  3160. bottom: 0.01,
  3161. extra: 1045 / 810 + 0.01
  3162. }
  3163. },
  3164. },
  3165. [
  3166. // TODO check why I did this lol
  3167. {
  3168. name: "Standard",
  3169. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3170. default: true
  3171. },
  3172. {
  3173. name: "Macro",
  3174. height: math.unit(200, "feet")
  3175. },
  3176. {
  3177. name: "Gigamacro",
  3178. height: math.unit(13000, "km")
  3179. }
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(6, "feet"),
  3187. weight: math.unit(175, "lb"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/mountain/front.svg",
  3191. extra: 972/955,
  3192. bottom: 64/1036.6
  3193. }
  3194. },
  3195. back: {
  3196. height: math.unit(6, "feet"),
  3197. weight: math.unit(175, "lb"),
  3198. name: "Back",
  3199. image: {
  3200. source: "./media/characters/mountain/back.svg",
  3201. extra: 970/950,
  3202. bottom: 28.25/999
  3203. }
  3204. },
  3205. },
  3206. [
  3207. {
  3208. name: "Large",
  3209. height: math.unit(20, "meters")
  3210. },
  3211. {
  3212. name: "Macro",
  3213. height: math.unit(300, "meters")
  3214. },
  3215. {
  3216. name: "Gigamacro",
  3217. height: math.unit(10000, "km"),
  3218. default: true
  3219. },
  3220. {
  3221. name: "Examacro",
  3222. height: math.unit(10e9, "lightyears")
  3223. }
  3224. ]
  3225. ))
  3226. characterMakers.push(() => makeCharacter(
  3227. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3228. {
  3229. front: {
  3230. height: math.unit(8, "feet"),
  3231. weight: math.unit(500, "lb"),
  3232. name: "Front",
  3233. image: {
  3234. source: "./media/characters/rick/front.svg"
  3235. }
  3236. }
  3237. },
  3238. [
  3239. {
  3240. name: "Normal",
  3241. height: math.unit(8, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro",
  3246. height: math.unit(5, "km")
  3247. }
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(8, "feet"),
  3255. weight: math.unit(120, "lb"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/ona/front.svg"
  3259. }
  3260. },
  3261. frontAlt: {
  3262. height: math.unit(8, "feet"),
  3263. weight: math.unit(120, "lb"),
  3264. name: "Front (Alt)",
  3265. image: {
  3266. source: "./media/characters/ona/front-alt.svg"
  3267. }
  3268. },
  3269. back: {
  3270. height: math.unit(8, "feet"),
  3271. weight: math.unit(120, "lb"),
  3272. name: "Back",
  3273. image: {
  3274. source: "./media/characters/ona/back.svg"
  3275. }
  3276. },
  3277. foot: {
  3278. height: math.unit(1.1, "feet"),
  3279. name: "Foot",
  3280. image: {
  3281. source: "./media/characters/ona/foot.svg"
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Megamacro",
  3288. height: math.unit(70, "km"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Gigamacro",
  3293. height: math.unit(681818, "miles")
  3294. },
  3295. {
  3296. name: "Examacro",
  3297. height: math.unit(3800000, "lightyears")
  3298. },
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(12, "feet"),
  3306. weight: math.unit(3000, "lb"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/mech/front.svg",
  3310. bottom: 0.025,
  3311. }
  3312. },
  3313. back: {
  3314. height: math.unit(12, "feet"),
  3315. weight: math.unit(3000, "lb"),
  3316. name: "Back",
  3317. image: {
  3318. source: "./media/characters/mech/back.svg",
  3319. bottom: 0.03,
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Normal",
  3326. height: math.unit(12, "feet")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(300, "feet"),
  3331. default: true
  3332. },
  3333. {
  3334. name: "Macro+",
  3335. height: math.unit(1500, "feet")
  3336. },
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(1.3, "meter"),
  3344. weight: math.unit(30, "kg"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/gregory/front.svg",
  3348. }
  3349. }
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(1.3, "meter"),
  3355. default: true
  3356. },
  3357. {
  3358. name: "Macro",
  3359. height: math.unit(20, "meter")
  3360. }
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3365. {
  3366. front: {
  3367. height: math.unit(2.8, "meter"),
  3368. weight: math.unit(200, "kg"),
  3369. name: "Front",
  3370. image: {
  3371. source: "./media/characters/elory/front.svg",
  3372. }
  3373. }
  3374. },
  3375. [
  3376. {
  3377. name: "Normal",
  3378. height: math.unit(2.8, "meter"),
  3379. default: true
  3380. },
  3381. {
  3382. name: "Macro",
  3383. height: math.unit(38, "meter")
  3384. }
  3385. ]
  3386. ))
  3387. characterMakers.push(() => makeCharacter(
  3388. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3389. {
  3390. front: {
  3391. height: math.unit(470, "feet"),
  3392. weight: math.unit(924, "tons"),
  3393. name: "Front",
  3394. image: {
  3395. source: "./media/characters/angelpatamon/front.svg",
  3396. }
  3397. }
  3398. },
  3399. [
  3400. {
  3401. name: "Normal",
  3402. height: math.unit(470, "feet"),
  3403. default: true
  3404. },
  3405. {
  3406. name: "Deity Size I",
  3407. height: math.unit(28651.2, "km")
  3408. },
  3409. {
  3410. name: "Deity Size II",
  3411. height: math.unit(171907.2, "km")
  3412. }
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3417. {
  3418. side: {
  3419. height: math.unit(7.2, "meter"),
  3420. weight: math.unit(8.2, "tons"),
  3421. name: "Side",
  3422. image: {
  3423. source: "./media/characters/cryae/side.svg",
  3424. extra: 3500 / 1500
  3425. }
  3426. }
  3427. },
  3428. [
  3429. {
  3430. name: "Normal",
  3431. height: math.unit(7.2, "meter"),
  3432. default: true
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(6, "feet"),
  3441. weight: math.unit(175, "lb"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/xera/front.svg",
  3445. extra: 2377 / 1972,
  3446. bottom: 75.5/2452
  3447. }
  3448. },
  3449. side: {
  3450. height: math.unit(6, "feet"),
  3451. weight: math.unit(175, "lb"),
  3452. name: "Side",
  3453. image: {
  3454. source: "./media/characters/xera/side.svg",
  3455. extra: 2345/2019,
  3456. bottom: 39.7/2384
  3457. }
  3458. },
  3459. back: {
  3460. height: math.unit(6, "feet"),
  3461. weight: math.unit(175, "lb"),
  3462. name: "Back",
  3463. image: {
  3464. source: "./media/characters/xera/back.svg",
  3465. extra: 2095/1984,
  3466. bottom: 67/2166
  3467. }
  3468. },
  3469. },
  3470. [
  3471. {
  3472. name: "Small",
  3473. height: math.unit(10, "feet")
  3474. },
  3475. {
  3476. name: "Macro",
  3477. height: math.unit(500, "meters"),
  3478. default: true
  3479. },
  3480. {
  3481. name: "Macro+",
  3482. height: math.unit(10, "km")
  3483. },
  3484. {
  3485. name: "Gigamacro",
  3486. height: math.unit(25000, "km")
  3487. },
  3488. {
  3489. name: "Teramacro",
  3490. height: math.unit(3e6, "km")
  3491. }
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3496. {
  3497. front: {
  3498. height: math.unit(6, "feet"),
  3499. weight: math.unit(175, "lb"),
  3500. name: "Front",
  3501. image: {
  3502. source: "./media/characters/nebula/front.svg",
  3503. extra: 2566/2362,
  3504. bottom: 81/2644
  3505. }
  3506. }
  3507. },
  3508. [
  3509. {
  3510. name: "Small",
  3511. height: math.unit(4.5, "meters")
  3512. },
  3513. {
  3514. name: "Macro",
  3515. height: math.unit(1500, "meters"),
  3516. default: true
  3517. },
  3518. {
  3519. name: "Megamacro",
  3520. height: math.unit(150, "km")
  3521. },
  3522. {
  3523. name: "Gigamacro",
  3524. height: math.unit(27000, "km")
  3525. }
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3530. {
  3531. front: {
  3532. height: math.unit(6, "feet"),
  3533. weight: math.unit(225, "lb"),
  3534. name: "Front",
  3535. image: {
  3536. source: "./media/characters/abysgar/front.svg"
  3537. }
  3538. }
  3539. },
  3540. [
  3541. {
  3542. name: "Small",
  3543. height: math.unit(4.5, "meters")
  3544. },
  3545. {
  3546. name: "Macro",
  3547. height: math.unit(1250, "meters"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Megamacro",
  3552. height: math.unit(125, "km")
  3553. },
  3554. {
  3555. name: "Gigamacro",
  3556. height: math.unit(26000, "km")
  3557. }
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(6, "feet"),
  3565. weight: math.unit(180, "lb"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/yakuz/front.svg"
  3569. }
  3570. }
  3571. },
  3572. [
  3573. {
  3574. name: "Small",
  3575. height: math.unit(5, "meters")
  3576. },
  3577. {
  3578. name: "Macro",
  3579. height: math.unit(1500, "meters"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(200, "km")
  3585. },
  3586. {
  3587. name: "Gigamacro",
  3588. height: math.unit(100000, "km")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(6, "feet"),
  3597. weight: math.unit(175, "lb"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/mirova/front.svg",
  3601. extra: 3334/3071,
  3602. bottom: 42/3375.6
  3603. }
  3604. }
  3605. },
  3606. [
  3607. {
  3608. name: "Small",
  3609. height: math.unit(5, "meters")
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(900, "meters"),
  3614. default: true
  3615. },
  3616. {
  3617. name: "Megamacro",
  3618. height: math.unit(135, "km")
  3619. },
  3620. {
  3621. name: "Gigamacro",
  3622. height: math.unit(20000, "km")
  3623. }
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3628. {
  3629. side: {
  3630. height: math.unit(28.35, "feet"),
  3631. weight: math.unit(99.75, "tons"),
  3632. name: "Side",
  3633. image: {
  3634. source: "./media/characters/asana-mech/side.svg",
  3635. extra: 923/699,
  3636. bottom: 50/975
  3637. }
  3638. },
  3639. chaingun: {
  3640. height: math.unit(7, "feet"),
  3641. weight: math.unit(2400, "lb"),
  3642. name: "Chaingun",
  3643. image: {
  3644. source: "./media/characters/asana-mech/chaingun.svg"
  3645. }
  3646. },
  3647. laser: {
  3648. height: math.unit(7.12, "feet"),
  3649. weight: math.unit(2000, "lb"),
  3650. name: "Laser",
  3651. image: {
  3652. source: "./media/characters/asana-mech/laser.svg"
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "Normal",
  3659. height: math.unit(28.35, "feet"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(2500, "feet")
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(25, "miles")
  3669. },
  3670. {
  3671. name: "Examacro",
  3672. height: math.unit(6e8, "lightyears")
  3673. },
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(5, "meters"),
  3681. weight: math.unit(1000, "kg"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/asche/front.svg",
  3685. extra: 1258/1190,
  3686. bottom: 47/1305
  3687. }
  3688. },
  3689. frontUnderwear: {
  3690. height: math.unit(5, "meters"),
  3691. weight: math.unit(1000, "kg"),
  3692. name: "Front (Underwear)",
  3693. image: {
  3694. source: "./media/characters/asche/front-underwear.svg",
  3695. extra: 1258/1190,
  3696. bottom: 47/1305
  3697. }
  3698. },
  3699. frontDressed: {
  3700. height: math.unit(5, "meters"),
  3701. weight: math.unit(1000, "kg"),
  3702. name: "Front (Dressed)",
  3703. image: {
  3704. source: "./media/characters/asche/front-dressed.svg",
  3705. extra: 1258/1190,
  3706. bottom: 47/1305
  3707. }
  3708. },
  3709. frontArmor: {
  3710. height: math.unit(5, "meters"),
  3711. weight: math.unit(1000, "kg"),
  3712. name: "Front (Armored)",
  3713. image: {
  3714. source: "./media/characters/asche/front-armored.svg",
  3715. extra: 1374 / 1308,
  3716. bottom: 23/1397
  3717. }
  3718. },
  3719. mp724: {
  3720. height: math.unit(0.96, "meters"),
  3721. weight: math.unit(38, "kg"),
  3722. name: "H&K MP724",
  3723. image: {
  3724. source: "./media/characters/asche/h&k-mp724.svg"
  3725. }
  3726. },
  3727. side: {
  3728. height: math.unit(5, "meters"),
  3729. weight: math.unit(1000, "kg"),
  3730. name: "Side",
  3731. image: {
  3732. source: "./media/characters/asche/side.svg",
  3733. extra: 1717 / 1609,
  3734. bottom: 0.005
  3735. }
  3736. },
  3737. back: {
  3738. height: math.unit(5, "meters"),
  3739. weight: math.unit(1000, "kg"),
  3740. name: "Back",
  3741. image: {
  3742. source: "./media/characters/asche/back.svg",
  3743. extra: 1570 / 1501
  3744. }
  3745. },
  3746. },
  3747. [
  3748. {
  3749. name: "DEFCON 5",
  3750. height: math.unit(5, "meters")
  3751. },
  3752. {
  3753. name: "DEFCON 4",
  3754. height: math.unit(500, "meters"),
  3755. default: true
  3756. },
  3757. {
  3758. name: "DEFCON 3",
  3759. height: math.unit(5, "km")
  3760. },
  3761. {
  3762. name: "DEFCON 2",
  3763. height: math.unit(500, "km")
  3764. },
  3765. {
  3766. name: "DEFCON 1",
  3767. height: math.unit(500000, "km")
  3768. },
  3769. {
  3770. name: "DEFCON 0",
  3771. height: math.unit(3, "gigaparsecs")
  3772. },
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3777. {
  3778. front: {
  3779. height: math.unit(2, "meters"),
  3780. weight: math.unit(76, "kg"),
  3781. name: "Front",
  3782. image: {
  3783. source: "./media/characters/gale/front.svg"
  3784. }
  3785. },
  3786. frontAlt1: {
  3787. height: math.unit(2, "meters"),
  3788. weight: math.unit(76, "kg"),
  3789. name: "Front (Alt 1)",
  3790. image: {
  3791. source: "./media/characters/gale/front-alt-1.svg"
  3792. }
  3793. },
  3794. frontAlt2: {
  3795. height: math.unit(2, "meters"),
  3796. weight: math.unit(76, "kg"),
  3797. name: "Front (Alt 2)",
  3798. image: {
  3799. source: "./media/characters/gale/front-alt-2.svg"
  3800. }
  3801. },
  3802. },
  3803. [
  3804. {
  3805. name: "Normal",
  3806. height: math.unit(7, "feet")
  3807. },
  3808. {
  3809. name: "Macro",
  3810. height: math.unit(150, "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Macro+",
  3815. height: math.unit(300, "feet")
  3816. },
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meters"),
  3824. weight: math.unit(76, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/draylen/front.svg"
  3828. }
  3829. }
  3830. },
  3831. [
  3832. {
  3833. name: "Macro",
  3834. height: math.unit(150, "feet"),
  3835. default: true
  3836. }
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3841. {
  3842. front: {
  3843. height: math.unit(7 + 9 / 12, "feet"),
  3844. weight: math.unit(379, "lbs"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/chez/front.svg"
  3848. }
  3849. },
  3850. side: {
  3851. height: math.unit(7 + 9 / 12, "feet"),
  3852. weight: math.unit(379, "lbs"),
  3853. name: "Side",
  3854. image: {
  3855. source: "./media/characters/chez/side.svg"
  3856. }
  3857. }
  3858. },
  3859. [
  3860. {
  3861. name: "Normal",
  3862. height: math.unit(7 + 9 / 12, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "God King",
  3867. height: math.unit(9750000, "meters")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(6, "feet"),
  3876. weight: math.unit(275, "lbs"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/kaylum/front.svg",
  3880. bottom: 0.01,
  3881. extra: 1166 / 1031
  3882. }
  3883. },
  3884. frontWingless: {
  3885. height: math.unit(6, "feet"),
  3886. weight: math.unit(275, "lbs"),
  3887. name: "Front (Wingless)",
  3888. image: {
  3889. source: "./media/characters/kaylum/front-wingless.svg",
  3890. bottom: 0.01,
  3891. extra: 1117 / 1031
  3892. }
  3893. }
  3894. },
  3895. [
  3896. {
  3897. name: "Normal",
  3898. height: math.unit(3.05, "meters")
  3899. },
  3900. {
  3901. name: "Master",
  3902. height: math.unit(5.5, "meters")
  3903. },
  3904. {
  3905. name: "Rampage",
  3906. height: math.unit(19, "meters")
  3907. },
  3908. {
  3909. name: "Macro Lite",
  3910. height: math.unit(37, "meters")
  3911. },
  3912. {
  3913. name: "Hyper Predator",
  3914. height: math.unit(61, "meters")
  3915. },
  3916. {
  3917. name: "Macro",
  3918. height: math.unit(138, "meters"),
  3919. default: true
  3920. }
  3921. ]
  3922. ))
  3923. characterMakers.push(() => makeCharacter(
  3924. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3925. {
  3926. front: {
  3927. height: math.unit(6, "feet"),
  3928. weight: math.unit(150, "lbs"),
  3929. name: "Front",
  3930. image: {
  3931. source: "./media/characters/geta/front.svg"
  3932. }
  3933. }
  3934. },
  3935. [
  3936. {
  3937. name: "Micro",
  3938. height: math.unit(3, "inches"),
  3939. default: true
  3940. },
  3941. {
  3942. name: "Normal",
  3943. height: math.unit(5 + 5 / 12, "feet")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3949. {
  3950. front: {
  3951. height: math.unit(6, "feet"),
  3952. weight: math.unit(300, "lbs"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/tyrnn/front.svg"
  3956. }
  3957. }
  3958. },
  3959. [
  3960. {
  3961. name: "Main Height",
  3962. height: math.unit(355, "feet"),
  3963. default: true
  3964. },
  3965. {
  3966. name: "Fave. Height",
  3967. height: math.unit(2400, "feet")
  3968. }
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3973. {
  3974. front: {
  3975. height: math.unit(6, "feet"),
  3976. weight: math.unit(300, "lbs"),
  3977. name: "Front",
  3978. image: {
  3979. source: "./media/characters/appledectomy/front.svg"
  3980. }
  3981. }
  3982. },
  3983. [
  3984. {
  3985. name: "Macro",
  3986. height: math.unit(2500, "feet")
  3987. },
  3988. {
  3989. name: "Megamacro",
  3990. height: math.unit(50, "miles"),
  3991. default: true
  3992. },
  3993. {
  3994. name: "Gigamacro",
  3995. height: math.unit(5000, "miles")
  3996. },
  3997. {
  3998. name: "Teramacro",
  3999. height: math.unit(250000, "miles")
  4000. },
  4001. ]
  4002. ))
  4003. characterMakers.push(() => makeCharacter(
  4004. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4005. {
  4006. front: {
  4007. height: math.unit(6, "feet"),
  4008. weight: math.unit(200, "lbs"),
  4009. name: "Front",
  4010. image: {
  4011. source: "./media/characters/vulpes/front.svg",
  4012. extra: 573 / 543,
  4013. bottom: 0.033
  4014. }
  4015. },
  4016. side: {
  4017. height: math.unit(6, "feet"),
  4018. weight: math.unit(200, "lbs"),
  4019. name: "Side",
  4020. image: {
  4021. source: "./media/characters/vulpes/side.svg",
  4022. extra: 573 / 543,
  4023. bottom: 0.01
  4024. }
  4025. },
  4026. back: {
  4027. height: math.unit(6, "feet"),
  4028. weight: math.unit(200, "lbs"),
  4029. name: "Back",
  4030. image: {
  4031. source: "./media/characters/vulpes/back.svg",
  4032. extra: 573 / 543,
  4033. }
  4034. },
  4035. feet: {
  4036. height: math.unit(1.276, "feet"),
  4037. name: "Feet",
  4038. image: {
  4039. source: "./media/characters/vulpes/feet.svg"
  4040. }
  4041. },
  4042. maw: {
  4043. height: math.unit(1.18, "feet"),
  4044. name: "Maw",
  4045. image: {
  4046. source: "./media/characters/vulpes/maw.svg"
  4047. }
  4048. },
  4049. },
  4050. [
  4051. {
  4052. name: "Micro",
  4053. height: math.unit(2, "inches")
  4054. },
  4055. {
  4056. name: "Normal",
  4057. height: math.unit(6.3, "feet")
  4058. },
  4059. {
  4060. name: "Macro",
  4061. height: math.unit(850, "feet")
  4062. },
  4063. {
  4064. name: "Megamacro",
  4065. height: math.unit(7500, "feet"),
  4066. default: true
  4067. },
  4068. {
  4069. name: "Gigamacro",
  4070. height: math.unit(570000, "miles")
  4071. }
  4072. ]
  4073. ))
  4074. characterMakers.push(() => makeCharacter(
  4075. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4076. {
  4077. front: {
  4078. height: math.unit(6, "feet"),
  4079. weight: math.unit(210, "lbs"),
  4080. name: "Front",
  4081. image: {
  4082. source: "./media/characters/rain-fallen/front.svg"
  4083. }
  4084. },
  4085. side: {
  4086. height: math.unit(6, "feet"),
  4087. weight: math.unit(210, "lbs"),
  4088. name: "Side",
  4089. image: {
  4090. source: "./media/characters/rain-fallen/side.svg"
  4091. }
  4092. },
  4093. back: {
  4094. height: math.unit(6, "feet"),
  4095. weight: math.unit(210, "lbs"),
  4096. name: "Back",
  4097. image: {
  4098. source: "./media/characters/rain-fallen/back.svg"
  4099. }
  4100. },
  4101. feral: {
  4102. height: math.unit(9, "feet"),
  4103. weight: math.unit(700, "lbs"),
  4104. name: "Feral",
  4105. image: {
  4106. source: "./media/characters/rain-fallen/feral.svg"
  4107. }
  4108. },
  4109. },
  4110. [
  4111. {
  4112. name: "Normal",
  4113. height: math.unit(5, "meter")
  4114. },
  4115. {
  4116. name: "Macro",
  4117. height: math.unit(150, "meter"),
  4118. default: true
  4119. },
  4120. {
  4121. name: "Megamacro",
  4122. height: math.unit(278e6, "meter")
  4123. },
  4124. {
  4125. name: "Gigamacro",
  4126. height: math.unit(2e9, "meter")
  4127. },
  4128. {
  4129. name: "Teramacro",
  4130. height: math.unit(8e12, "meter")
  4131. },
  4132. {
  4133. name: "Devourer",
  4134. height: math.unit(14, "zettameters")
  4135. },
  4136. {
  4137. name: "Scarlet King",
  4138. height: math.unit(18, "yottameters")
  4139. },
  4140. {
  4141. name: "Void",
  4142. height: math.unit(6.66e66, "yottameters")
  4143. }
  4144. ]
  4145. ))
  4146. characterMakers.push(() => makeCharacter(
  4147. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4148. {
  4149. standing: {
  4150. height: math.unit(6, "feet"),
  4151. weight: math.unit(180, "lbs"),
  4152. name: "Standing",
  4153. image: {
  4154. source: "./media/characters/zaakira/standing.svg"
  4155. }
  4156. },
  4157. laying: {
  4158. height: math.unit(3, "feet"),
  4159. weight: math.unit(180, "lbs"),
  4160. name: "Laying",
  4161. image: {
  4162. source: "./media/characters/zaakira/laying.svg"
  4163. }
  4164. },
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(12, "feet")
  4170. },
  4171. {
  4172. name: "Macro",
  4173. height: math.unit(279, "feet"),
  4174. default: true
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(6, "feet"),
  4183. weight: math.unit(250, "lbs"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/sigvald/front.svg",
  4187. extra: 1000 / 850
  4188. }
  4189. },
  4190. back: {
  4191. height: math.unit(6, "feet"),
  4192. weight: math.unit(250, "lbs"),
  4193. name: "Back",
  4194. image: {
  4195. source: "./media/characters/sigvald/back.svg"
  4196. }
  4197. },
  4198. },
  4199. [
  4200. {
  4201. name: "Normal",
  4202. height: math.unit(8, "feet")
  4203. },
  4204. {
  4205. name: "Large",
  4206. height: math.unit(12, "feet")
  4207. },
  4208. {
  4209. name: "Larger",
  4210. height: math.unit(20, "feet")
  4211. },
  4212. {
  4213. name: "Macro",
  4214. height: math.unit(150, "feet")
  4215. },
  4216. {
  4217. name: "Macro+",
  4218. height: math.unit(200, "feet"),
  4219. default: true
  4220. },
  4221. ]
  4222. ))
  4223. characterMakers.push(() => makeCharacter(
  4224. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4225. {
  4226. side: {
  4227. height: math.unit(12, "feet"),
  4228. weight: math.unit(2000, "kg"),
  4229. name: "Side",
  4230. image: {
  4231. source: "./media/characters/scott/side.svg",
  4232. extra: 754 / 724,
  4233. bottom: 0.069
  4234. }
  4235. },
  4236. upright: {
  4237. height: math.unit(12, "feet"),
  4238. weight: math.unit(2000, "kg"),
  4239. name: "Upright",
  4240. image: {
  4241. source: "./media/characters/scott/upright.svg",
  4242. extra: 3881 / 3722,
  4243. bottom: 0.05
  4244. }
  4245. },
  4246. },
  4247. [
  4248. {
  4249. name: "Normal",
  4250. height: math.unit(12, "feet"),
  4251. default: true
  4252. },
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4257. {
  4258. side: {
  4259. height: math.unit(8, "meters"),
  4260. weight: math.unit(84755, "lbs"),
  4261. name: "Side",
  4262. image: {
  4263. source: "./media/characters/tobias/side.svg",
  4264. extra: 1474 / 1096,
  4265. bottom: 38.9 / 1513.1235
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(8, "meters"),
  4273. default: true
  4274. },
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4279. {
  4280. front: {
  4281. height: math.unit(5.5, "feet"),
  4282. weight: math.unit(400, "lbs"),
  4283. name: "Front",
  4284. image: {
  4285. source: "./media/characters/kieran/front.svg",
  4286. extra: 2694 / 2364,
  4287. bottom: 217 / 2908
  4288. }
  4289. },
  4290. side: {
  4291. height: math.unit(5.5, "feet"),
  4292. weight: math.unit(400, "lbs"),
  4293. name: "Side",
  4294. image: {
  4295. source: "./media/characters/kieran/side.svg",
  4296. extra: 875 / 777,
  4297. bottom: 84.6 / 959
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(5.5, "feet"),
  4305. default: true
  4306. },
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4311. {
  4312. side: {
  4313. height: math.unit(2, "meters"),
  4314. weight: math.unit(70, "kg"),
  4315. name: "Side",
  4316. image: {
  4317. source: "./media/characters/sanya/side.svg",
  4318. bottom: 0.02,
  4319. extra: 1.02
  4320. }
  4321. },
  4322. },
  4323. [
  4324. {
  4325. name: "Small",
  4326. height: math.unit(2, "meters")
  4327. },
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(3, "meters")
  4331. },
  4332. {
  4333. name: "Macro",
  4334. height: math.unit(16, "meters"),
  4335. default: true
  4336. },
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(2, "meters"),
  4344. weight: math.unit(120, "kg"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/miranda/front.svg",
  4348. extra: 195/185,
  4349. bottom: 10.9/206.5
  4350. }
  4351. },
  4352. back: {
  4353. height: math.unit(2, "meters"),
  4354. weight: math.unit(120, "kg"),
  4355. name: "Back",
  4356. image: {
  4357. source: "./media/characters/miranda/back.svg",
  4358. extra: 201/193,
  4359. bottom: 2.3/203.7
  4360. }
  4361. },
  4362. },
  4363. [
  4364. {
  4365. name: "Normal",
  4366. height: math.unit(10, "feet"),
  4367. default: true
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "James", species: ["deer"], tags: ["anthro"] },
  4373. {
  4374. side: {
  4375. height: math.unit(2, "meters"),
  4376. weight: math.unit(100, "kg"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/james/front.svg",
  4380. extra: 10 / 8.5
  4381. }
  4382. },
  4383. },
  4384. [
  4385. {
  4386. name: "Normal",
  4387. height: math.unit(8.5, "feet"),
  4388. default: true
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4394. {
  4395. side: {
  4396. height: math.unit(9.5, "feet"),
  4397. weight: math.unit(2500, "lbs"),
  4398. name: "Side",
  4399. image: {
  4400. source: "./media/characters/heather/side.svg"
  4401. }
  4402. },
  4403. },
  4404. [
  4405. {
  4406. name: "Normal",
  4407. height: math.unit(9.5, "feet"),
  4408. default: true
  4409. }
  4410. ]
  4411. ))
  4412. characterMakers.push(() => makeCharacter(
  4413. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4414. {
  4415. side: {
  4416. height: math.unit(6.5, "feet"),
  4417. weight: math.unit(400, "lbs"),
  4418. name: "Side",
  4419. image: {
  4420. source: "./media/characters/lukas/side.svg",
  4421. extra: 7.25 / 6.5
  4422. }
  4423. },
  4424. },
  4425. [
  4426. {
  4427. name: "Normal",
  4428. height: math.unit(6.5, "feet"),
  4429. default: true
  4430. }
  4431. ]
  4432. ))
  4433. characterMakers.push(() => makeCharacter(
  4434. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4435. {
  4436. side: {
  4437. height: math.unit(5, "feet"),
  4438. weight: math.unit(3000, "lbs"),
  4439. name: "Side",
  4440. image: {
  4441. source: "./media/characters/louise/side.svg"
  4442. }
  4443. },
  4444. },
  4445. [
  4446. {
  4447. name: "Normal",
  4448. height: math.unit(5, "feet"),
  4449. default: true
  4450. }
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4455. {
  4456. side: {
  4457. height: math.unit(6, "feet"),
  4458. weight: math.unit(150, "lbs"),
  4459. name: "Side",
  4460. image: {
  4461. source: "./media/characters/ramona/side.svg"
  4462. }
  4463. },
  4464. },
  4465. [
  4466. {
  4467. name: "Normal",
  4468. height: math.unit(5.3, "meters"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Macro",
  4473. height: math.unit(20, "stories")
  4474. },
  4475. {
  4476. name: "Macro+",
  4477. height: math.unit(50, "stories")
  4478. },
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4483. {
  4484. standing: {
  4485. height: math.unit(5.75, "feet"),
  4486. weight: math.unit(160, "lbs"),
  4487. name: "Standing",
  4488. image: {
  4489. source: "./media/characters/deerpuff/standing.svg",
  4490. extra: 682 / 624
  4491. }
  4492. },
  4493. sitting: {
  4494. height: math.unit(5.75 / 1.79, "feet"),
  4495. weight: math.unit(160, "lbs"),
  4496. name: "Sitting",
  4497. image: {
  4498. source: "./media/characters/deerpuff/sitting.svg",
  4499. bottom: 44 / 400,
  4500. extra: 1
  4501. }
  4502. },
  4503. taurLaying: {
  4504. height: math.unit(6, "feet"),
  4505. weight: math.unit(400, "lbs"),
  4506. name: "Taur (Laying)",
  4507. image: {
  4508. source: "./media/characters/deerpuff/taur-laying.svg"
  4509. }
  4510. },
  4511. },
  4512. [
  4513. {
  4514. name: "Puffball",
  4515. height: math.unit(6, "inches")
  4516. },
  4517. {
  4518. name: "Normalpuff",
  4519. height: math.unit(5.75, "feet")
  4520. },
  4521. {
  4522. name: "Macropuff",
  4523. height: math.unit(1500, "feet"),
  4524. default: true
  4525. },
  4526. {
  4527. name: "Megapuff",
  4528. height: math.unit(500, "miles")
  4529. },
  4530. {
  4531. name: "Gigapuff",
  4532. height: math.unit(250000, "miles")
  4533. },
  4534. {
  4535. name: "Omegapuff",
  4536. height: math.unit(1000, "lightyears")
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4542. {
  4543. stomping: {
  4544. height: math.unit(6, "feet"),
  4545. weight: math.unit(170, "lbs"),
  4546. name: "Stomping",
  4547. image: {
  4548. source: "./media/characters/vivian/stomping.svg"
  4549. }
  4550. },
  4551. sitting: {
  4552. height: math.unit(6 / 1.75, "feet"),
  4553. weight: math.unit(170, "lbs"),
  4554. name: "Sitting",
  4555. image: {
  4556. source: "./media/characters/vivian/sitting.svg",
  4557. bottom: 1 / 6.4,
  4558. extra: 1,
  4559. }
  4560. },
  4561. },
  4562. [
  4563. {
  4564. name: "Normal",
  4565. height: math.unit(7, "feet"),
  4566. default: true
  4567. },
  4568. {
  4569. name: "Macro",
  4570. height: math.unit(10, "stories")
  4571. },
  4572. {
  4573. name: "Macro+",
  4574. height: math.unit(30, "stories")
  4575. },
  4576. {
  4577. name: "Megamacro",
  4578. height: math.unit(10, "miles")
  4579. },
  4580. {
  4581. name: "Megamacro+",
  4582. height: math.unit(2750000, "meters")
  4583. },
  4584. ]
  4585. ))
  4586. characterMakers.push(() => makeCharacter(
  4587. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4588. {
  4589. front: {
  4590. height: math.unit(6, "feet"),
  4591. weight: math.unit(160, "lbs"),
  4592. name: "Front",
  4593. image: {
  4594. source: "./media/characters/prince/front.svg",
  4595. extra: 3400 / 3000
  4596. }
  4597. },
  4598. jumping: {
  4599. height: math.unit(6, "feet"),
  4600. weight: math.unit(160, "lbs"),
  4601. name: "Jumping",
  4602. image: {
  4603. source: "./media/characters/prince/jump.svg",
  4604. extra: 2555 / 2134
  4605. }
  4606. },
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(7.75, "feet"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "Not cute",
  4616. height: math.unit(17, "feet")
  4617. },
  4618. {
  4619. name: "I said NOT",
  4620. height: math.unit(91, "feet")
  4621. },
  4622. {
  4623. name: "Please stop",
  4624. height: math.unit(560, "feet")
  4625. },
  4626. {
  4627. name: "What have you done",
  4628. height: math.unit(2200, "feet")
  4629. },
  4630. {
  4631. name: "Deer God",
  4632. height: math.unit(3.6, "miles")
  4633. },
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4638. {
  4639. standing: {
  4640. height: math.unit(6, "feet"),
  4641. weight: math.unit(300, "lbs"),
  4642. name: "Standing",
  4643. image: {
  4644. source: "./media/characters/psymon/standing.svg",
  4645. extra: 1888 / 1810,
  4646. bottom: 0.05
  4647. }
  4648. },
  4649. slithering: {
  4650. height: math.unit(6, "feet"),
  4651. weight: math.unit(300, "lbs"),
  4652. name: "Slithering",
  4653. image: {
  4654. source: "./media/characters/psymon/slithering.svg",
  4655. extra: 1330 / 1224
  4656. }
  4657. },
  4658. slitheringAlt: {
  4659. height: math.unit(6, "feet"),
  4660. weight: math.unit(300, "lbs"),
  4661. name: "Slithering (Alt)",
  4662. image: {
  4663. source: "./media/characters/psymon/slithering-alt.svg",
  4664. extra: 1330 / 1224
  4665. }
  4666. },
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(11.25, "feet"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Large",
  4676. height: math.unit(27, "feet")
  4677. },
  4678. {
  4679. name: "Giant",
  4680. height: math.unit(87, "feet")
  4681. },
  4682. {
  4683. name: "Macro",
  4684. height: math.unit(365, "feet")
  4685. },
  4686. {
  4687. name: "Megamacro",
  4688. height: math.unit(3, "miles")
  4689. },
  4690. {
  4691. name: "World Serpent",
  4692. height: math.unit(8000, "miles")
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(6, "feet"),
  4701. weight: math.unit(180, "lbs"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/daimos/front.svg",
  4705. extra: 4160 / 3897,
  4706. bottom: 0.021
  4707. }
  4708. }
  4709. },
  4710. [
  4711. {
  4712. name: "Normal",
  4713. height: math.unit(8, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Big Dog",
  4718. height: math.unit(22, "feet")
  4719. },
  4720. {
  4721. name: "Macro",
  4722. height: math.unit(127, "feet")
  4723. },
  4724. {
  4725. name: "Megamacro",
  4726. height: math.unit(3600, "feet")
  4727. },
  4728. ]
  4729. ))
  4730. characterMakers.push(() => makeCharacter(
  4731. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4732. {
  4733. side: {
  4734. height: math.unit(6, "feet"),
  4735. weight: math.unit(180, "lbs"),
  4736. name: "Side",
  4737. image: {
  4738. source: "./media/characters/blake/side.svg",
  4739. extra: 1212 / 1120,
  4740. bottom: 0.05
  4741. }
  4742. },
  4743. crouched: {
  4744. height: math.unit(6 * 0.57, "feet"),
  4745. weight: math.unit(180, "lbs"),
  4746. name: "Crouched",
  4747. image: {
  4748. source: "./media/characters/blake/crouched.svg",
  4749. extra: 840 / 587,
  4750. bottom: 0.04
  4751. }
  4752. },
  4753. bent: {
  4754. height: math.unit(6 * 0.75, "feet"),
  4755. weight: math.unit(180, "lbs"),
  4756. name: "Bent",
  4757. image: {
  4758. source: "./media/characters/blake/bent.svg",
  4759. extra: 592 / 544,
  4760. bottom: 0.035
  4761. }
  4762. },
  4763. },
  4764. [
  4765. {
  4766. name: "Normal",
  4767. height: math.unit(8 + 1 / 6, "feet"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "Big Backside",
  4772. height: math.unit(37, "feet")
  4773. },
  4774. {
  4775. name: "Subway Shredder",
  4776. height: math.unit(72, "feet")
  4777. },
  4778. {
  4779. name: "City Carver",
  4780. height: math.unit(1675, "feet")
  4781. },
  4782. {
  4783. name: "Tectonic Tweaker",
  4784. height: math.unit(2300, "miles")
  4785. },
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(180, "lbs"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/guisetto/front.svg",
  4797. extra: 856 / 817,
  4798. bottom: 0.06
  4799. }
  4800. },
  4801. airborne: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(180, "lbs"),
  4804. name: "Airborne",
  4805. image: {
  4806. source: "./media/characters/guisetto/airborne.svg",
  4807. extra: 584 / 525
  4808. }
  4809. },
  4810. },
  4811. [
  4812. {
  4813. name: "Normal",
  4814. height: math.unit(10 + 11 / 12, "feet"),
  4815. default: true
  4816. },
  4817. {
  4818. name: "Large",
  4819. height: math.unit(35, "feet")
  4820. },
  4821. {
  4822. name: "Macro",
  4823. height: math.unit(475, "feet")
  4824. },
  4825. ]
  4826. ))
  4827. characterMakers.push(() => makeCharacter(
  4828. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4829. {
  4830. front: {
  4831. height: math.unit(6, "feet"),
  4832. weight: math.unit(180, "lbs"),
  4833. name: "Front",
  4834. image: {
  4835. source: "./media/characters/luxor/front.svg",
  4836. extra: 2940 / 2152
  4837. }
  4838. },
  4839. back: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(180, "lbs"),
  4842. name: "Back",
  4843. image: {
  4844. source: "./media/characters/luxor/back.svg",
  4845. extra: 1083 / 960
  4846. }
  4847. },
  4848. },
  4849. [
  4850. {
  4851. name: "Normal",
  4852. height: math.unit(5 + 5 / 6, "feet"),
  4853. default: true
  4854. },
  4855. {
  4856. name: "Lamp",
  4857. height: math.unit(50, "feet")
  4858. },
  4859. {
  4860. name: "Lämp",
  4861. height: math.unit(300, "feet")
  4862. },
  4863. {
  4864. name: "The sun is a lamp",
  4865. height: math.unit(250000, "miles")
  4866. },
  4867. ]
  4868. ))
  4869. characterMakers.push(() => makeCharacter(
  4870. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4871. {
  4872. front: {
  4873. height: math.unit(6, "feet"),
  4874. weight: math.unit(50, "lbs"),
  4875. name: "Front",
  4876. image: {
  4877. source: "./media/characters/huoyan/front.svg"
  4878. }
  4879. },
  4880. side: {
  4881. height: math.unit(6, "feet"),
  4882. weight: math.unit(180, "lbs"),
  4883. name: "Side",
  4884. image: {
  4885. source: "./media/characters/huoyan/side.svg"
  4886. }
  4887. },
  4888. },
  4889. [
  4890. {
  4891. name: "Chef",
  4892. height: math.unit(9, "feet")
  4893. },
  4894. {
  4895. name: "Normal",
  4896. height: math.unit(65, "feet"),
  4897. default: true
  4898. },
  4899. {
  4900. name: "Macro",
  4901. height: math.unit(780, "feet")
  4902. },
  4903. {
  4904. name: "Flaming Mountain",
  4905. height: math.unit(4.8, "miles")
  4906. },
  4907. {
  4908. name: "Celestial",
  4909. height: math.unit(765000, "miles")
  4910. },
  4911. ]
  4912. ))
  4913. characterMakers.push(() => makeCharacter(
  4914. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4915. {
  4916. front: {
  4917. height: math.unit(5 + 3 / 4, "feet"),
  4918. weight: math.unit(120, "lbs"),
  4919. name: "Front",
  4920. image: {
  4921. source: "./media/characters/tails/front.svg"
  4922. }
  4923. }
  4924. },
  4925. [
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(5 + 3 / 4, "feet"),
  4929. default: true
  4930. }
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4935. {
  4936. front: {
  4937. height: math.unit(4, "feet"),
  4938. weight: math.unit(50, "lbs"),
  4939. name: "Front",
  4940. image: {
  4941. source: "./media/characters/rainy/front.svg"
  4942. }
  4943. }
  4944. },
  4945. [
  4946. {
  4947. name: "Macro",
  4948. height: math.unit(800, "feet"),
  4949. default: true
  4950. }
  4951. ]
  4952. ))
  4953. characterMakers.push(() => makeCharacter(
  4954. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4955. {
  4956. front: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(150, "lbs"),
  4959. name: "Front",
  4960. image: {
  4961. source: "./media/characters/rainier/front.svg"
  4962. }
  4963. }
  4964. },
  4965. [
  4966. {
  4967. name: "Micro",
  4968. height: math.unit(2, "mm"),
  4969. default: true
  4970. }
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4975. {
  4976. front: {
  4977. height: math.unit(6, "feet"),
  4978. weight: math.unit(180, "lbs"),
  4979. name: "Front",
  4980. image: {
  4981. source: "./media/characters/andy/front.svg"
  4982. }
  4983. }
  4984. },
  4985. [
  4986. {
  4987. name: "Normal",
  4988. height: math.unit(8, "feet"),
  4989. default: true
  4990. },
  4991. {
  4992. name: "Macro",
  4993. height: math.unit(1000, "feet")
  4994. },
  4995. {
  4996. name: "Megamacro",
  4997. height: math.unit(5, "miles")
  4998. },
  4999. {
  5000. name: "Gigamacro",
  5001. height: math.unit(5000, "miles")
  5002. },
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5007. {
  5008. front: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(210, "lbs"),
  5011. name: "Front",
  5012. image: {
  5013. source: "./media/characters/cimmaron/front-sfw.svg",
  5014. extra: 701 / 676,
  5015. bottom: 0.046
  5016. }
  5017. },
  5018. back: {
  5019. height: math.unit(6, "feet"),
  5020. weight: math.unit(210, "lbs"),
  5021. name: "Back",
  5022. image: {
  5023. source: "./media/characters/cimmaron/back-sfw.svg",
  5024. extra: 701 / 676,
  5025. bottom: 0.046
  5026. }
  5027. },
  5028. frontNsfw: {
  5029. height: math.unit(6, "feet"),
  5030. weight: math.unit(210, "lbs"),
  5031. name: "Front (NSFW)",
  5032. image: {
  5033. source: "./media/characters/cimmaron/front-nsfw.svg",
  5034. extra: 701 / 676,
  5035. bottom: 0.046
  5036. }
  5037. },
  5038. backNsfw: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(210, "lbs"),
  5041. name: "Back (NSFW)",
  5042. image: {
  5043. source: "./media/characters/cimmaron/back-nsfw.svg",
  5044. extra: 701 / 676,
  5045. bottom: 0.046
  5046. }
  5047. },
  5048. dick: {
  5049. height: math.unit(1.714, "feet"),
  5050. name: "Dick",
  5051. image: {
  5052. source: "./media/characters/cimmaron/dick.svg"
  5053. }
  5054. },
  5055. },
  5056. [
  5057. {
  5058. name: "Normal",
  5059. height: math.unit(6, "feet"),
  5060. default: true
  5061. },
  5062. {
  5063. name: "Macro Mayor",
  5064. height: math.unit(350, "meters")
  5065. },
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5070. {
  5071. front: {
  5072. height: math.unit(6, "feet"),
  5073. weight: math.unit(200, "lbs"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/akari/front.svg",
  5077. extra: 962 / 901,
  5078. bottom: 0.04
  5079. }
  5080. }
  5081. },
  5082. [
  5083. {
  5084. name: "Micro",
  5085. height: math.unit(5, "inches"),
  5086. default: true
  5087. },
  5088. {
  5089. name: "Normal",
  5090. height: math.unit(7, "feet")
  5091. },
  5092. ]
  5093. ))
  5094. characterMakers.push(() => makeCharacter(
  5095. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5096. {
  5097. front: {
  5098. height: math.unit(6, "feet"),
  5099. weight: math.unit(140, "lbs"),
  5100. name: "Front",
  5101. image: {
  5102. source: "./media/characters/cynosura/front.svg",
  5103. extra: 896 / 847
  5104. }
  5105. },
  5106. back: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(140, "lbs"),
  5109. name: "Back",
  5110. image: {
  5111. source: "./media/characters/cynosura/back.svg",
  5112. extra: 1365 / 1250
  5113. }
  5114. },
  5115. },
  5116. [
  5117. {
  5118. name: "Micro",
  5119. height: math.unit(4, "inches")
  5120. },
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(5.75, "feet"),
  5124. default: true
  5125. },
  5126. {
  5127. name: "Tall",
  5128. height: math.unit(10, "feet")
  5129. },
  5130. {
  5131. name: "Big",
  5132. height: math.unit(20, "feet")
  5133. },
  5134. {
  5135. name: "Macro",
  5136. height: math.unit(50, "feet")
  5137. },
  5138. ]
  5139. ))
  5140. characterMakers.push(() => makeCharacter(
  5141. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5142. {
  5143. front: {
  5144. height: math.unit(6, "feet"),
  5145. weight: math.unit(170, "lbs"),
  5146. name: "Front",
  5147. image: {
  5148. source: "./media/characters/gin/front.svg",
  5149. extra: 1.053,
  5150. bottom: 0.025
  5151. }
  5152. },
  5153. foot: {
  5154. height: math.unit(6 / 4.25, "feet"),
  5155. name: "Foot",
  5156. image: {
  5157. source: "./media/characters/gin/foot.svg"
  5158. }
  5159. },
  5160. sole: {
  5161. height: math.unit(6 / 4.40, "feet"),
  5162. name: "Sole",
  5163. image: {
  5164. source: "./media/characters/gin/sole.svg"
  5165. }
  5166. },
  5167. },
  5168. [
  5169. {
  5170. name: "Normal",
  5171. height: math.unit(13 + 2 / 12, "feet")
  5172. },
  5173. {
  5174. name: "Macro",
  5175. height: math.unit(1500, "feet")
  5176. },
  5177. {
  5178. name: "Megamacro",
  5179. height: math.unit(200, "miles"),
  5180. default: true
  5181. },
  5182. {
  5183. name: "Gigamacro",
  5184. height: math.unit(500, "megameters")
  5185. },
  5186. {
  5187. name: "Teramacro",
  5188. height: math.unit(15, "lightyears")
  5189. }
  5190. ]
  5191. ))
  5192. characterMakers.push(() => makeCharacter(
  5193. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5194. {
  5195. front: {
  5196. height: math.unit(6 + 1 / 6, "feet"),
  5197. weight: math.unit(178, "lbs"),
  5198. name: "Front",
  5199. image: {
  5200. source: "./media/characters/guy/front.svg"
  5201. }
  5202. }
  5203. },
  5204. [
  5205. {
  5206. name: "Normal",
  5207. height: math.unit(6 + 1 / 6, "feet"),
  5208. default: true
  5209. },
  5210. {
  5211. name: "Large",
  5212. height: math.unit(25 + 7 / 12, "feet")
  5213. },
  5214. {
  5215. name: "Macro",
  5216. height: math.unit(60 + 9 / 12, "feet")
  5217. },
  5218. {
  5219. name: "Macro+",
  5220. height: math.unit(246, "feet")
  5221. },
  5222. {
  5223. name: "Macro++",
  5224. height: math.unit(878, "feet")
  5225. }
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5230. {
  5231. front: {
  5232. height: math.unit(9, "feet"),
  5233. weight: math.unit(800, "lbs"),
  5234. name: "Front",
  5235. image: {
  5236. source: "./media/characters/tiberius/front.svg",
  5237. extra: 2295 / 2071
  5238. }
  5239. },
  5240. back: {
  5241. height: math.unit(9, "feet"),
  5242. weight: math.unit(800, "lbs"),
  5243. name: "Back",
  5244. image: {
  5245. source: "./media/characters/tiberius/back.svg",
  5246. extra: 2373 / 2160
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(9, "feet"),
  5254. default: true
  5255. }
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5260. {
  5261. front: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(600, "lbs"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/surgo/front.svg",
  5267. extra: 3591 / 2227
  5268. }
  5269. },
  5270. back: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(600, "lbs"),
  5273. name: "Back",
  5274. image: {
  5275. source: "./media/characters/surgo/back.svg",
  5276. extra: 3557 / 2228
  5277. }
  5278. },
  5279. laying: {
  5280. height: math.unit(6 * 0.85, "feet"),
  5281. weight: math.unit(600, "lbs"),
  5282. name: "Laying",
  5283. image: {
  5284. source: "./media/characters/surgo/laying.svg"
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(6, "feet"),
  5292. default: true
  5293. }
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5298. {
  5299. side: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(150, "lbs"),
  5302. name: "Side",
  5303. image: {
  5304. source: "./media/characters/cibus/side.svg",
  5305. extra: 800 / 400
  5306. }
  5307. },
  5308. },
  5309. [
  5310. {
  5311. name: "Normal",
  5312. height: math.unit(6, "feet"),
  5313. default: true
  5314. }
  5315. ]
  5316. ))
  5317. characterMakers.push(() => makeCharacter(
  5318. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5319. {
  5320. front: {
  5321. height: math.unit(6, "feet"),
  5322. weight: math.unit(240, "lbs"),
  5323. name: "Front",
  5324. image: {
  5325. source: "./media/characters/nibbles/front.svg"
  5326. }
  5327. },
  5328. side: {
  5329. height: math.unit(6, "feet"),
  5330. weight: math.unit(240, "lbs"),
  5331. name: "Side",
  5332. image: {
  5333. source: "./media/characters/nibbles/side.svg"
  5334. }
  5335. },
  5336. },
  5337. [
  5338. {
  5339. name: "Normal",
  5340. height: math.unit(9, "feet"),
  5341. default: true
  5342. }
  5343. ]
  5344. ))
  5345. characterMakers.push(() => makeCharacter(
  5346. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5347. {
  5348. side: {
  5349. height: math.unit(5 + 1 / 6, "feet"),
  5350. weight: math.unit(130, "lbs"),
  5351. name: "Side",
  5352. image: {
  5353. source: "./media/characters/rikky/side.svg"
  5354. }
  5355. },
  5356. },
  5357. [
  5358. {
  5359. name: "Normal",
  5360. height: math.unit(5 + 1 / 6, "feet")
  5361. },
  5362. {
  5363. name: "Macro",
  5364. height: math.unit(152, "feet"),
  5365. default: true
  5366. },
  5367. {
  5368. name: "Megamacro",
  5369. height: math.unit(7, "miles")
  5370. }
  5371. ]
  5372. ))
  5373. characterMakers.push(() => makeCharacter(
  5374. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5375. {
  5376. side: {
  5377. height: math.unit(370, "cm"),
  5378. weight: math.unit(350, "lbs"),
  5379. name: "Side",
  5380. image: {
  5381. source: "./media/characters/malfressa/side.svg"
  5382. }
  5383. },
  5384. walking: {
  5385. height: math.unit(370, "cm"),
  5386. weight: math.unit(350, "lbs"),
  5387. name: "Walking",
  5388. image: {
  5389. source: "./media/characters/malfressa/walking.svg"
  5390. }
  5391. },
  5392. feral: {
  5393. height: math.unit(2500, "cm"),
  5394. weight: math.unit(100000, "lbs"),
  5395. name: "Feral",
  5396. image: {
  5397. source: "./media/characters/malfressa/feral.svg",
  5398. extra: 2108 / 837,
  5399. bottom: 0.02
  5400. }
  5401. },
  5402. },
  5403. [
  5404. {
  5405. name: "Normal",
  5406. height: math.unit(370, "cm")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(300, "meters"),
  5411. default: true
  5412. }
  5413. ]
  5414. ))
  5415. characterMakers.push(() => makeCharacter(
  5416. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5417. {
  5418. front: {
  5419. height: math.unit(6, "feet"),
  5420. weight: math.unit(60, "kg"),
  5421. name: "Front",
  5422. image: {
  5423. source: "./media/characters/jaro/front.svg"
  5424. }
  5425. },
  5426. back: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(60, "kg"),
  5429. name: "Back",
  5430. image: {
  5431. source: "./media/characters/jaro/back.svg"
  5432. }
  5433. },
  5434. },
  5435. [
  5436. {
  5437. name: "Micro",
  5438. height: math.unit(7, "inches")
  5439. },
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(5.5, "feet"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Minimacro",
  5447. height: math.unit(20, "feet")
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(200, "meters")
  5452. }
  5453. ]
  5454. ))
  5455. characterMakers.push(() => makeCharacter(
  5456. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5457. {
  5458. front: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(195, "lb"),
  5461. name: "Front",
  5462. image: {
  5463. source: "./media/characters/rogue/front.svg"
  5464. }
  5465. },
  5466. },
  5467. [
  5468. {
  5469. name: "Macro",
  5470. height: math.unit(90, "feet"),
  5471. default: true
  5472. },
  5473. ]
  5474. ))
  5475. characterMakers.push(() => makeCharacter(
  5476. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5477. {
  5478. front: {
  5479. height: math.unit(5 + 8 / 12, "feet"),
  5480. weight: math.unit(140, "lb"),
  5481. name: "Front",
  5482. image: {
  5483. source: "./media/characters/piper/front.svg",
  5484. extra: 3928 / 3681
  5485. }
  5486. },
  5487. },
  5488. [
  5489. {
  5490. name: "Micro",
  5491. height: math.unit(2, "inches")
  5492. },
  5493. {
  5494. name: "Normal",
  5495. height: math.unit(5 + 8 / 12, "feet")
  5496. },
  5497. {
  5498. name: "Macro",
  5499. height: math.unit(250, "feet"),
  5500. default: true
  5501. },
  5502. {
  5503. name: "Megamacro",
  5504. height: math.unit(7, "miles")
  5505. },
  5506. ]
  5507. ))
  5508. characterMakers.push(() => makeCharacter(
  5509. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5510. {
  5511. front: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(220, "lb"),
  5514. name: "Front",
  5515. image: {
  5516. source: "./media/characters/gemini/front.svg"
  5517. }
  5518. },
  5519. back: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(220, "lb"),
  5522. name: "Back",
  5523. image: {
  5524. source: "./media/characters/gemini/back.svg"
  5525. }
  5526. },
  5527. kneeling: {
  5528. height: math.unit(6 / 1.5, "feet"),
  5529. weight: math.unit(220, "lb"),
  5530. name: "Kneeling",
  5531. image: {
  5532. source: "./media/characters/gemini/kneeling.svg",
  5533. bottom: 0.02
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Macro",
  5540. height: math.unit(300, "meters"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Megamacro",
  5545. height: math.unit(6900, "meters")
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5551. {
  5552. anthro: {
  5553. height: math.unit(2.35, "meters"),
  5554. weight: math.unit(73, "kg"),
  5555. name: "Anthro",
  5556. image: {
  5557. source: "./media/characters/alicia/anthro.svg",
  5558. extra: 2571 / 2385,
  5559. bottom: 75 / 2648
  5560. }
  5561. },
  5562. paw: {
  5563. height: math.unit(1.32, "feet"),
  5564. name: "Paw",
  5565. image: {
  5566. source: "./media/characters/alicia/paw.svg"
  5567. }
  5568. },
  5569. feral: {
  5570. height: math.unit(1.69, "meters"),
  5571. weight: math.unit(73, "kg"),
  5572. name: "Feral",
  5573. image: {
  5574. source: "./media/characters/alicia/feral.svg",
  5575. extra: 2123 / 1715,
  5576. bottom: 222 / 2349
  5577. }
  5578. },
  5579. },
  5580. [
  5581. {
  5582. name: "Normal",
  5583. height: math.unit(2.35, "meters")
  5584. },
  5585. {
  5586. name: "Macro",
  5587. height: math.unit(60, "meters"),
  5588. default: true
  5589. },
  5590. {
  5591. name: "Megamacro",
  5592. height: math.unit(10000, "kilometers")
  5593. },
  5594. ]
  5595. ))
  5596. characterMakers.push(() => makeCharacter(
  5597. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5598. {
  5599. front: {
  5600. height: math.unit(7, "feet"),
  5601. weight: math.unit(250, "lbs"),
  5602. name: "Front",
  5603. image: {
  5604. source: "./media/characters/archy/front.svg"
  5605. }
  5606. }
  5607. },
  5608. [
  5609. {
  5610. name: "Micro",
  5611. height: math.unit(1, "inch")
  5612. },
  5613. {
  5614. name: "Shorty",
  5615. height: math.unit(5, "feet")
  5616. },
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(7, "feet")
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(600, "meters"),
  5624. default: true
  5625. },
  5626. {
  5627. name: "Megamacro",
  5628. height: math.unit(1, "mile")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5634. {
  5635. front: {
  5636. height: math.unit(1.65, "meters"),
  5637. weight: math.unit(74, "kg"),
  5638. name: "Front",
  5639. image: {
  5640. source: "./media/characters/berri/front.svg",
  5641. extra: 857 / 837,
  5642. bottom: 18 / 877
  5643. }
  5644. },
  5645. bum: {
  5646. height: math.unit(1.46, "feet"),
  5647. name: "Bum",
  5648. image: {
  5649. source: "./media/characters/berri/bum.svg"
  5650. }
  5651. },
  5652. mouth: {
  5653. height: math.unit(0.44, "feet"),
  5654. name: "Mouth",
  5655. image: {
  5656. source: "./media/characters/berri/mouth.svg"
  5657. }
  5658. },
  5659. paw: {
  5660. height: math.unit(0.826, "feet"),
  5661. name: "Paw",
  5662. image: {
  5663. source: "./media/characters/berri/paw.svg"
  5664. }
  5665. },
  5666. },
  5667. [
  5668. {
  5669. name: "Normal",
  5670. height: math.unit(1.65, "meters")
  5671. },
  5672. {
  5673. name: "Macro",
  5674. height: math.unit(60, "m"),
  5675. default: true
  5676. },
  5677. {
  5678. name: "Megamacro",
  5679. height: math.unit(9.213, "km")
  5680. },
  5681. {
  5682. name: "Planet Eater",
  5683. height: math.unit(489, "megameters")
  5684. },
  5685. {
  5686. name: "Teramacro",
  5687. height: math.unit(2471635000000, "meters")
  5688. },
  5689. {
  5690. name: "Examacro",
  5691. height: math.unit(8.0624e+26, "meters")
  5692. }
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5697. {
  5698. front: {
  5699. height: math.unit(1.72, "meters"),
  5700. weight: math.unit(68, "kg"),
  5701. name: "Front",
  5702. image: {
  5703. source: "./media/characters/lexi/front.svg"
  5704. }
  5705. }
  5706. },
  5707. [
  5708. {
  5709. name: "Very Smol",
  5710. height: math.unit(10, "mm")
  5711. },
  5712. {
  5713. name: "Micro",
  5714. height: math.unit(6.8, "cm"),
  5715. default: true
  5716. },
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(1.72, "m")
  5720. }
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5725. {
  5726. front: {
  5727. height: math.unit(1.69, "meters"),
  5728. weight: math.unit(68, "kg"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/martin/front.svg",
  5732. extra: 596 / 581
  5733. }
  5734. }
  5735. },
  5736. [
  5737. {
  5738. name: "Micro",
  5739. height: math.unit(6.85, "cm"),
  5740. default: true
  5741. },
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(1.69, "m")
  5745. }
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5750. {
  5751. front: {
  5752. height: math.unit(1.69, "meters"),
  5753. weight: math.unit(68, "kg"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/juno/front.svg"
  5757. }
  5758. }
  5759. },
  5760. [
  5761. {
  5762. name: "Micro",
  5763. height: math.unit(7, "cm")
  5764. },
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(1.89, "m")
  5768. },
  5769. {
  5770. name: "Macro",
  5771. height: math.unit(353, "meters"),
  5772. default: true
  5773. }
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5778. {
  5779. front: {
  5780. height: math.unit(1.93, "meters"),
  5781. weight: math.unit(83, "kg"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/samantha/front.svg"
  5785. }
  5786. },
  5787. frontClothed: {
  5788. height: math.unit(1.93, "meters"),
  5789. weight: math.unit(83, "kg"),
  5790. name: "Front (Clothed)",
  5791. image: {
  5792. source: "./media/characters/samantha/front-clothed.svg"
  5793. }
  5794. },
  5795. back: {
  5796. height: math.unit(1.93, "meters"),
  5797. weight: math.unit(83, "kg"),
  5798. name: "Back",
  5799. image: {
  5800. source: "./media/characters/samantha/back.svg"
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Normal",
  5807. height: math.unit(1.93, "m")
  5808. },
  5809. {
  5810. name: "Macro",
  5811. height: math.unit(74, "meters"),
  5812. default: true
  5813. },
  5814. {
  5815. name: "Macro+",
  5816. height: math.unit(223, "meters"),
  5817. },
  5818. {
  5819. name: "Megamacro",
  5820. height: math.unit(8381, "meters"),
  5821. },
  5822. {
  5823. name: "Megamacro+",
  5824. height: math.unit(12000, "kilometers")
  5825. },
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5830. {
  5831. front: {
  5832. height: math.unit(1.92, "meters"),
  5833. weight: math.unit(80, "kg"),
  5834. name: "Front",
  5835. image: {
  5836. source: "./media/characters/dr-clay/front.svg"
  5837. }
  5838. },
  5839. frontClothed: {
  5840. height: math.unit(1.92, "meters"),
  5841. weight: math.unit(80, "kg"),
  5842. name: "Front (Clothed)",
  5843. image: {
  5844. source: "./media/characters/dr-clay/front-clothed.svg"
  5845. }
  5846. }
  5847. },
  5848. [
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(1.92, "m")
  5852. },
  5853. {
  5854. name: "Macro",
  5855. height: math.unit(214, "meters"),
  5856. default: true
  5857. },
  5858. {
  5859. name: "Macro+",
  5860. height: math.unit(12.237, "meters"),
  5861. },
  5862. {
  5863. name: "Megamacro",
  5864. height: math.unit(557, "megameters"),
  5865. },
  5866. {
  5867. name: "Unimaginable",
  5868. height: math.unit(120e9, "lightyears")
  5869. },
  5870. ]
  5871. ))
  5872. characterMakers.push(() => makeCharacter(
  5873. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5874. {
  5875. front: {
  5876. height: math.unit(2, "meters"),
  5877. weight: math.unit(80, "kg"),
  5878. name: "Front",
  5879. image: {
  5880. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5881. }
  5882. }
  5883. },
  5884. [
  5885. {
  5886. name: "Teramacro",
  5887. height: math.unit(500000, "lightyears"),
  5888. default: true
  5889. },
  5890. ]
  5891. ))
  5892. characterMakers.push(() => makeCharacter(
  5893. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5894. {
  5895. front: {
  5896. height: math.unit(2, "meters"),
  5897. weight: math.unit(150, "kg"),
  5898. name: "Front",
  5899. image: {
  5900. source: "./media/characters/vemus/front.svg",
  5901. extra: 2384 / 2084,
  5902. bottom: 0.0123
  5903. }
  5904. }
  5905. },
  5906. [
  5907. {
  5908. name: "Normal",
  5909. height: math.unit(3.75, "meters"),
  5910. default: true
  5911. },
  5912. {
  5913. name: "Big",
  5914. height: math.unit(8, "meters")
  5915. },
  5916. {
  5917. name: "Macro",
  5918. height: math.unit(100, "meters")
  5919. },
  5920. {
  5921. name: "Macro+",
  5922. height: math.unit(1500, "meters")
  5923. },
  5924. {
  5925. name: "Stellar",
  5926. height: math.unit(14e8, "meters")
  5927. },
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5932. {
  5933. front: {
  5934. height: math.unit(2, "meters"),
  5935. weight: math.unit(70, "kg"),
  5936. name: "Front",
  5937. image: {
  5938. source: "./media/characters/beherit/front.svg",
  5939. extra: 1408 / 1242
  5940. }
  5941. }
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(6, "feet")
  5947. },
  5948. {
  5949. name: "Lorg",
  5950. height: math.unit(25, "feet"),
  5951. default: true
  5952. },
  5953. {
  5954. name: "Lorger",
  5955. height: math.unit(75, "feet")
  5956. },
  5957. {
  5958. name: "Macro",
  5959. height: math.unit(200, "meters")
  5960. },
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(2, "meters"),
  5968. weight: math.unit(150, "kg"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/everett/front.svg",
  5972. extra: 2038 / 1737,
  5973. bottom: 0.03
  5974. }
  5975. },
  5976. paw: {
  5977. height: math.unit(2 / 3.6, "meters"),
  5978. name: "Paw",
  5979. image: {
  5980. source: "./media/characters/everett/paw.svg"
  5981. }
  5982. },
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(15, "feet"),
  5988. default: true
  5989. },
  5990. {
  5991. name: "Lorg",
  5992. height: math.unit(70, "feet"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Lorger",
  5997. height: math.unit(250, "feet")
  5998. },
  5999. {
  6000. name: "Macro",
  6001. height: math.unit(500, "meters")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6007. {
  6008. front: {
  6009. height: math.unit(2, "meters"),
  6010. weight: math.unit(86, "kg"),
  6011. name: "Front",
  6012. image: {
  6013. source: "./media/characters/rose-lion/front.svg"
  6014. }
  6015. },
  6016. bent: {
  6017. height: math.unit(2 / 1.4288, "meters"),
  6018. weight: math.unit(86, "kg"),
  6019. name: "Bent",
  6020. image: {
  6021. source: "./media/characters/rose-lion/bent.svg"
  6022. }
  6023. }
  6024. },
  6025. [
  6026. {
  6027. name: "Mini-Micro",
  6028. height: math.unit(1, "cm")
  6029. },
  6030. {
  6031. name: "Micro",
  6032. height: math.unit(3.5, "inches"),
  6033. default: true
  6034. },
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(6 + 1 / 6, "feet")
  6038. },
  6039. {
  6040. name: "Mini-Macro",
  6041. height: math.unit(9 + 10 / 12, "feet")
  6042. },
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6047. {
  6048. front: {
  6049. height: math.unit(2, "meters"),
  6050. weight: math.unit(350, "lbs"),
  6051. name: "Front",
  6052. image: {
  6053. source: "./media/characters/regal/front.svg"
  6054. }
  6055. },
  6056. back: {
  6057. height: math.unit(2, "meters"),
  6058. weight: math.unit(350, "lbs"),
  6059. name: "Back",
  6060. image: {
  6061. source: "./media/characters/regal/back.svg"
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Macro",
  6068. height: math.unit(350, "feet"),
  6069. default: true
  6070. }
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(4 + 11 / 12, "feet"),
  6078. weight: math.unit(100, "lbs"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/opal/front.svg"
  6082. }
  6083. },
  6084. frontAlt: {
  6085. height: math.unit(4 + 11 / 12, "feet"),
  6086. weight: math.unit(100, "lbs"),
  6087. name: "Front (Alt)",
  6088. image: {
  6089. source: "./media/characters/opal/front-alt.svg"
  6090. }
  6091. },
  6092. },
  6093. [
  6094. {
  6095. name: "Small",
  6096. height: math.unit(4 + 11 / 12, "feet")
  6097. },
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(20, "feet"),
  6101. default: true
  6102. },
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(120, "feet")
  6106. },
  6107. {
  6108. name: "Megamacro",
  6109. height: math.unit(80, "miles")
  6110. },
  6111. {
  6112. name: "True Size",
  6113. height: math.unit(100000, "lightyears")
  6114. },
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6119. {
  6120. front: {
  6121. height: math.unit(6, "feet"),
  6122. weight: math.unit(200, "lbs"),
  6123. name: "Front",
  6124. image: {
  6125. source: "./media/characters/vector-wuff/front.svg"
  6126. }
  6127. }
  6128. },
  6129. [
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(2.8, "meters")
  6133. },
  6134. {
  6135. name: "Macro",
  6136. height: math.unit(450, "meters"),
  6137. default: true
  6138. },
  6139. {
  6140. name: "Megamacro",
  6141. height: math.unit(15, "kilometers")
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6147. {
  6148. front: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(256, "lbs"),
  6151. name: "Front",
  6152. image: {
  6153. source: "./media/characters/dannik/front.svg"
  6154. }
  6155. }
  6156. },
  6157. [
  6158. {
  6159. name: "Macro",
  6160. height: math.unit(69.57, "meters"),
  6161. default: true
  6162. },
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6167. {
  6168. front: {
  6169. height: math.unit(6, "feet"),
  6170. weight: math.unit(120, "lbs"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/azura-saharah/front.svg"
  6174. }
  6175. },
  6176. back: {
  6177. height: math.unit(6, "feet"),
  6178. weight: math.unit(120, "lbs"),
  6179. name: "Back",
  6180. image: {
  6181. source: "./media/characters/azura-saharah/back.svg"
  6182. }
  6183. },
  6184. },
  6185. [
  6186. {
  6187. name: "Macro",
  6188. height: math.unit(100, "feet"),
  6189. default: true
  6190. },
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6195. {
  6196. side: {
  6197. height: math.unit(5 + 4 / 12, "feet"),
  6198. weight: math.unit(163, "lbs"),
  6199. name: "Side",
  6200. image: {
  6201. source: "./media/characters/kennedy/side.svg"
  6202. }
  6203. }
  6204. },
  6205. [
  6206. {
  6207. name: "Standard Doggo",
  6208. height: math.unit(5 + 4 / 12, "feet")
  6209. },
  6210. {
  6211. name: "Big Doggo",
  6212. height: math.unit(25 + 3 / 12, "feet"),
  6213. default: true
  6214. },
  6215. ]
  6216. ))
  6217. characterMakers.push(() => makeCharacter(
  6218. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6219. {
  6220. front: {
  6221. height: math.unit(6, "feet"),
  6222. weight: math.unit(90, "lbs"),
  6223. name: "Front",
  6224. image: {
  6225. source: "./media/characters/odi-lunar/front.svg"
  6226. }
  6227. }
  6228. },
  6229. [
  6230. {
  6231. name: "Micro",
  6232. height: math.unit(3, "inches"),
  6233. default: true
  6234. },
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(5.5, "feet")
  6238. }
  6239. ]
  6240. ))
  6241. characterMakers.push(() => makeCharacter(
  6242. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6243. {
  6244. back: {
  6245. height: math.unit(6, "feet"),
  6246. weight: math.unit(220, "lbs"),
  6247. name: "Back",
  6248. image: {
  6249. source: "./media/characters/mandake/back.svg"
  6250. }
  6251. }
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(7, "feet"),
  6257. default: true
  6258. },
  6259. {
  6260. name: "Macro",
  6261. height: math.unit(78, "feet")
  6262. },
  6263. {
  6264. name: "Macro+",
  6265. height: math.unit(300, "meters")
  6266. },
  6267. {
  6268. name: "Macro++",
  6269. height: math.unit(2400, "feet")
  6270. },
  6271. {
  6272. name: "Megamacro",
  6273. height: math.unit(5167, "meters")
  6274. },
  6275. {
  6276. name: "Gigamacro",
  6277. height: math.unit(41769, "miles")
  6278. },
  6279. ]
  6280. ))
  6281. characterMakers.push(() => makeCharacter(
  6282. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6283. {
  6284. front: {
  6285. height: math.unit(6, "feet"),
  6286. weight: math.unit(120, "lbs"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/yozey/front.svg"
  6290. }
  6291. },
  6292. frontAlt: {
  6293. height: math.unit(6, "feet"),
  6294. weight: math.unit(120, "lbs"),
  6295. name: "Front (Alt)",
  6296. image: {
  6297. source: "./media/characters/yozey/front-alt.svg"
  6298. }
  6299. },
  6300. side: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(120, "lbs"),
  6303. name: "Side",
  6304. image: {
  6305. source: "./media/characters/yozey/side.svg"
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Micro",
  6312. height: math.unit(3, "inches"),
  6313. default: true
  6314. },
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(6, "feet")
  6318. }
  6319. ]
  6320. ))
  6321. characterMakers.push(() => makeCharacter(
  6322. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6323. {
  6324. front: {
  6325. height: math.unit(6, "feet"),
  6326. weight: math.unit(103, "lbs"),
  6327. name: "Front",
  6328. image: {
  6329. source: "./media/characters/valeska-voss/front.svg"
  6330. }
  6331. }
  6332. },
  6333. [
  6334. {
  6335. name: "Mini-Sized Sub",
  6336. height: math.unit(3.1, "inches")
  6337. },
  6338. {
  6339. name: "Mid-Sized Sub",
  6340. height: math.unit(6.2, "inches")
  6341. },
  6342. {
  6343. name: "Full-Sized Sub",
  6344. height: math.unit(9.3, "inches")
  6345. },
  6346. {
  6347. name: "Normal",
  6348. height: math.unit(5 + 2 / 12, "foot"),
  6349. default: true
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(160, "lbs"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/gene-zeta/front.svg",
  6362. bottom: 0.03,
  6363. extra: 1
  6364. }
  6365. }
  6366. },
  6367. [
  6368. {
  6369. name: "Normal",
  6370. height: math.unit(6.25, "foot"),
  6371. default: true
  6372. },
  6373. ]
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6377. {
  6378. front: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(350, "lbs"),
  6381. name: "Front",
  6382. image: {
  6383. source: "./media/characters/razinox/front.svg",
  6384. extra: 1686 / 1548,
  6385. bottom: 28.2 / 1868
  6386. }
  6387. },
  6388. back: {
  6389. height: math.unit(6, "feet"),
  6390. weight: math.unit(350, "lbs"),
  6391. name: "Back",
  6392. image: {
  6393. source: "./media/characters/razinox/back.svg",
  6394. extra: 1660 / 1590,
  6395. bottom: 15 / 1665
  6396. }
  6397. },
  6398. },
  6399. [
  6400. {
  6401. name: "Normal",
  6402. height: math.unit(10 + 8 / 12, "foot")
  6403. },
  6404. {
  6405. name: "Minimacro",
  6406. height: math.unit(15, "foot")
  6407. },
  6408. {
  6409. name: "Macro",
  6410. height: math.unit(60, "foot"),
  6411. default: true
  6412. },
  6413. {
  6414. name: "Megamacro",
  6415. height: math.unit(5, "miles")
  6416. },
  6417. {
  6418. name: "Gigamacro",
  6419. height: math.unit(6000, "miles")
  6420. },
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6425. {
  6426. front: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(150, "lbs"),
  6429. name: "Front",
  6430. image: {
  6431. source: "./media/characters/cobalt/front.svg"
  6432. }
  6433. }
  6434. },
  6435. [
  6436. {
  6437. name: "Normal",
  6438. height: math.unit(8 + 1 / 12, "foot")
  6439. },
  6440. {
  6441. name: "Macro",
  6442. height: math.unit(111, "foot"),
  6443. default: true
  6444. },
  6445. {
  6446. name: "Supracosmic",
  6447. height: math.unit(1e42, "feet")
  6448. },
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6453. {
  6454. front: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(140, "lbs"),
  6457. name: "Front",
  6458. image: {
  6459. source: "./media/characters/amanda/front.svg"
  6460. }
  6461. }
  6462. },
  6463. [
  6464. {
  6465. name: "Micro",
  6466. height: math.unit(5, "inches"),
  6467. default: true
  6468. },
  6469. ]
  6470. ))
  6471. characterMakers.push(() => makeCharacter(
  6472. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6473. {
  6474. front: {
  6475. height: math.unit(5.59, "feet"),
  6476. weight: math.unit(250, "lbs"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/teal/front.svg"
  6480. }
  6481. },
  6482. frontAlt: {
  6483. height: math.unit(6, "feet"),
  6484. weight: math.unit(250, "lbs"),
  6485. name: "Front (Alt)",
  6486. image: {
  6487. source: "./media/characters/teal/front-alt.svg",
  6488. bottom: 0.04,
  6489. extra: 1
  6490. }
  6491. },
  6492. },
  6493. [
  6494. {
  6495. name: "Normal",
  6496. height: math.unit(12, "feet"),
  6497. default: true
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(300, "feet")
  6502. },
  6503. ]
  6504. ))
  6505. characterMakers.push(() => makeCharacter(
  6506. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6507. {
  6508. frontCat: {
  6509. height: math.unit(6, "feet"),
  6510. weight: math.unit(180, "lbs"),
  6511. name: "Front (Cat)",
  6512. image: {
  6513. source: "./media/characters/ravin-amulet/front-cat.svg"
  6514. }
  6515. },
  6516. frontCatAlt: {
  6517. height: math.unit(6, "feet"),
  6518. weight: math.unit(180, "lbs"),
  6519. name: "Front (Alt, Cat)",
  6520. image: {
  6521. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6522. }
  6523. },
  6524. frontWerewolf: {
  6525. height: math.unit(6 * 1.2, "feet"),
  6526. weight: math.unit(225, "lbs"),
  6527. name: "Front (Werewolf)",
  6528. image: {
  6529. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6530. }
  6531. },
  6532. backWerewolf: {
  6533. height: math.unit(6 * 1.2, "feet"),
  6534. weight: math.unit(225, "lbs"),
  6535. name: "Back (Werewolf)",
  6536. image: {
  6537. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6538. }
  6539. },
  6540. },
  6541. [
  6542. {
  6543. name: "Nano",
  6544. height: math.unit(1, "micrometer")
  6545. },
  6546. {
  6547. name: "Micro",
  6548. height: math.unit(1, "inch")
  6549. },
  6550. {
  6551. name: "Normal",
  6552. height: math.unit(6, "feet"),
  6553. default: true
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(60, "feet")
  6558. }
  6559. ]
  6560. ))
  6561. characterMakers.push(() => makeCharacter(
  6562. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6563. {
  6564. front: {
  6565. height: math.unit(6, "feet"),
  6566. weight: math.unit(165, "lbs"),
  6567. name: "Front",
  6568. image: {
  6569. source: "./media/characters/fluoresce/front.svg"
  6570. }
  6571. }
  6572. },
  6573. [
  6574. {
  6575. name: "Micro",
  6576. height: math.unit(6, "cm")
  6577. },
  6578. {
  6579. name: "Normal",
  6580. height: math.unit(5 + 7 / 12, "feet"),
  6581. default: true
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(56, "feet")
  6586. },
  6587. {
  6588. name: "Megamacro",
  6589. height: math.unit(1.9, "miles")
  6590. },
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6595. {
  6596. front: {
  6597. height: math.unit(9 + 6 / 12, "feet"),
  6598. weight: math.unit(523, "lbs"),
  6599. name: "Side",
  6600. image: {
  6601. source: "./media/characters/aurora/side.svg"
  6602. }
  6603. }
  6604. },
  6605. [
  6606. {
  6607. name: "Normal",
  6608. height: math.unit(9 + 6 / 12, "feet")
  6609. },
  6610. {
  6611. name: "Macro",
  6612. height: math.unit(96, "feet"),
  6613. default: true
  6614. },
  6615. {
  6616. name: "Macro+",
  6617. height: math.unit(243, "feet")
  6618. },
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(194, "cm"),
  6626. weight: math.unit(90, "kg"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/ranek/front.svg"
  6630. }
  6631. },
  6632. side: {
  6633. height: math.unit(194, "cm"),
  6634. weight: math.unit(90, "kg"),
  6635. name: "Side",
  6636. image: {
  6637. source: "./media/characters/ranek/side.svg"
  6638. }
  6639. },
  6640. back: {
  6641. height: math.unit(194, "cm"),
  6642. weight: math.unit(90, "kg"),
  6643. name: "Back",
  6644. image: {
  6645. source: "./media/characters/ranek/back.svg"
  6646. }
  6647. },
  6648. feral: {
  6649. height: math.unit(30, "cm"),
  6650. weight: math.unit(1.6, "lbs"),
  6651. name: "Feral",
  6652. image: {
  6653. source: "./media/characters/ranek/feral.svg"
  6654. }
  6655. },
  6656. },
  6657. [
  6658. {
  6659. name: "Normal",
  6660. height: math.unit(194, "cm"),
  6661. default: true
  6662. },
  6663. {
  6664. name: "Macro",
  6665. height: math.unit(100, "meters")
  6666. },
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6671. {
  6672. front: {
  6673. height: math.unit(5 + 6 / 12, "feet"),
  6674. weight: math.unit(153, "lbs"),
  6675. name: "Front",
  6676. image: {
  6677. source: "./media/characters/andrew-cooper/front.svg"
  6678. }
  6679. },
  6680. },
  6681. [
  6682. {
  6683. name: "Nano",
  6684. height: math.unit(1, "mm")
  6685. },
  6686. {
  6687. name: "Micro",
  6688. height: math.unit(2, "inches")
  6689. },
  6690. {
  6691. name: "Normal",
  6692. height: math.unit(5 + 6 / 12, "feet"),
  6693. default: true
  6694. }
  6695. ]
  6696. ))
  6697. characterMakers.push(() => makeCharacter(
  6698. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6699. {
  6700. front: {
  6701. height: math.unit(6, "feet"),
  6702. weight: math.unit(180, "lbs"),
  6703. name: "Front",
  6704. image: {
  6705. source: "./media/characters/akane-sato/front.svg",
  6706. extra: 1219 / 1140
  6707. }
  6708. },
  6709. back: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(180, "lbs"),
  6712. name: "Back",
  6713. image: {
  6714. source: "./media/characters/akane-sato/back.svg",
  6715. extra: 1219 / 1170
  6716. }
  6717. },
  6718. },
  6719. [
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(2.5, "meters")
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(250, "meters"),
  6727. default: true
  6728. },
  6729. {
  6730. name: "Megamacro",
  6731. height: math.unit(25, "km")
  6732. },
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(6, "feet"),
  6740. weight: math.unit(65, "kg"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/rook/front.svg",
  6744. extra: 960 / 950
  6745. }
  6746. }
  6747. },
  6748. [
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(8.8, "feet")
  6752. },
  6753. {
  6754. name: "Macro",
  6755. height: math.unit(88, "feet"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Megamacro",
  6760. height: math.unit(8, "miles")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(12 + 2 / 12, "feet"),
  6769. weight: math.unit(808, "lbs"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/prodigy/front.svg"
  6773. }
  6774. }
  6775. },
  6776. [
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(12 + 2 / 12, "feet"),
  6780. default: true
  6781. },
  6782. {
  6783. name: "Macro",
  6784. height: math.unit(143, "feet")
  6785. },
  6786. {
  6787. name: "Macro+",
  6788. height: math.unit(400, "feet")
  6789. },
  6790. ]
  6791. ))
  6792. characterMakers.push(() => makeCharacter(
  6793. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6794. {
  6795. front: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(225, "lbs"),
  6798. name: "Front",
  6799. image: {
  6800. source: "./media/characters/daniel/front.svg"
  6801. }
  6802. },
  6803. leaning: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(225, "lbs"),
  6806. name: "Leaning",
  6807. image: {
  6808. source: "./media/characters/daniel/leaning.svg"
  6809. }
  6810. },
  6811. },
  6812. [
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(1000, "feet"),
  6816. default: true
  6817. },
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(6, "feet"),
  6825. weight: math.unit(88, "lbs"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/chiros/front.svg",
  6829. extra: 306 / 226
  6830. }
  6831. },
  6832. side: {
  6833. height: math.unit(6, "feet"),
  6834. weight: math.unit(88, "lbs"),
  6835. name: "Side",
  6836. image: {
  6837. source: "./media/characters/chiros/side.svg",
  6838. extra: 306 / 226
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Normal",
  6845. height: math.unit(6, "cm"),
  6846. default: true
  6847. },
  6848. ]
  6849. ))
  6850. characterMakers.push(() => makeCharacter(
  6851. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6852. {
  6853. front: {
  6854. height: math.unit(6, "feet"),
  6855. weight: math.unit(100, "lbs"),
  6856. name: "Front",
  6857. image: {
  6858. source: "./media/characters/selka/front.svg",
  6859. extra: 947 / 887
  6860. }
  6861. }
  6862. },
  6863. [
  6864. {
  6865. name: "Normal",
  6866. height: math.unit(5, "cm"),
  6867. default: true
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(8 + 3 / 12, "feet"),
  6876. weight: math.unit(424, "lbs"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/verin/front.svg",
  6880. extra: 1845 / 1550
  6881. }
  6882. },
  6883. frontArmored: {
  6884. height: math.unit(8 + 3 / 12, "feet"),
  6885. weight: math.unit(424, "lbs"),
  6886. name: "Front (Armored)",
  6887. image: {
  6888. source: "./media/characters/verin/front-armor.svg",
  6889. extra: 1845 / 1550,
  6890. bottom: 0.01
  6891. }
  6892. },
  6893. back: {
  6894. height: math.unit(8 + 3 / 12, "feet"),
  6895. weight: math.unit(424, "lbs"),
  6896. name: "Back",
  6897. image: {
  6898. source: "./media/characters/verin/back.svg",
  6899. bottom: 0.1,
  6900. extra: 1
  6901. }
  6902. },
  6903. foot: {
  6904. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6905. name: "Foot",
  6906. image: {
  6907. source: "./media/characters/verin/foot.svg"
  6908. }
  6909. },
  6910. },
  6911. [
  6912. {
  6913. name: "Normal",
  6914. height: math.unit(8 + 3 / 12, "feet")
  6915. },
  6916. {
  6917. name: "Minimacro",
  6918. height: math.unit(21, "feet"),
  6919. default: true
  6920. },
  6921. {
  6922. name: "Macro",
  6923. height: math.unit(626, "feet")
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(2.718, "meters"),
  6932. weight: math.unit(150, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/sovrim-terraquian/front.svg"
  6936. }
  6937. },
  6938. back: {
  6939. height: math.unit(2.718, "meters"),
  6940. weight: math.unit(150, "lbs"),
  6941. name: "Back",
  6942. image: {
  6943. source: "./media/characters/sovrim-terraquian/back.svg"
  6944. }
  6945. }
  6946. },
  6947. [
  6948. {
  6949. name: "Micro",
  6950. height: math.unit(2, "inches")
  6951. },
  6952. {
  6953. name: "Small",
  6954. height: math.unit(1, "meter")
  6955. },
  6956. {
  6957. name: "Normal",
  6958. height: math.unit(Math.E, "meters"),
  6959. default: true
  6960. },
  6961. {
  6962. name: "Macro",
  6963. height: math.unit(20, "meters")
  6964. },
  6965. {
  6966. name: "Macro+",
  6967. height: math.unit(400, "meters")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6973. {
  6974. front: {
  6975. height: math.unit(7, "feet"),
  6976. weight: math.unit(489, "lbs"),
  6977. name: "Front",
  6978. image: {
  6979. source: "./media/characters/reece-silvermane/front.svg",
  6980. bottom: 0.02,
  6981. extra: 1
  6982. }
  6983. },
  6984. },
  6985. [
  6986. {
  6987. name: "Macro",
  6988. height: math.unit(1.5, "miles"),
  6989. default: true
  6990. },
  6991. ]
  6992. ))
  6993. characterMakers.push(() => makeCharacter(
  6994. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6995. {
  6996. front: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(78, "kg"),
  6999. name: "Front",
  7000. image: {
  7001. source: "./media/characters/kane/front.svg",
  7002. extra: 978 / 899
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(2.1, "m"),
  7010. },
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(1, "km"),
  7014. default: true
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(6, "feet"),
  7023. weight: math.unit(200, "kg"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/tegon/front.svg",
  7027. bottom: 0.01,
  7028. extra: 1
  7029. }
  7030. },
  7031. },
  7032. [
  7033. {
  7034. name: "Micro",
  7035. height: math.unit(1, "inch")
  7036. },
  7037. {
  7038. name: "Normal",
  7039. height: math.unit(6 + 3 / 12, "feet"),
  7040. default: true
  7041. },
  7042. {
  7043. name: "Macro",
  7044. height: math.unit(300, "feet")
  7045. },
  7046. {
  7047. name: "Megamacro",
  7048. height: math.unit(69, "miles")
  7049. },
  7050. ]
  7051. ))
  7052. characterMakers.push(() => makeCharacter(
  7053. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7054. {
  7055. side: {
  7056. height: math.unit(6, "feet"),
  7057. weight: math.unit(2304, "lbs"),
  7058. name: "Side",
  7059. image: {
  7060. source: "./media/characters/arcturax/side.svg",
  7061. extra: 790 / 376,
  7062. bottom: 0.01
  7063. }
  7064. },
  7065. },
  7066. [
  7067. {
  7068. name: "Micro",
  7069. height: math.unit(2, "inch")
  7070. },
  7071. {
  7072. name: "Normal",
  7073. height: math.unit(6, "feet")
  7074. },
  7075. {
  7076. name: "Macro",
  7077. height: math.unit(39, "feet"),
  7078. default: true
  7079. },
  7080. {
  7081. name: "Megamacro",
  7082. height: math.unit(7, "miles")
  7083. },
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7088. {
  7089. front: {
  7090. height: math.unit(6, "feet"),
  7091. weight: math.unit(50, "lbs"),
  7092. name: "Front",
  7093. image: {
  7094. source: "./media/characters/sentri/front.svg",
  7095. extra: 1750 / 1570,
  7096. bottom: 0.025
  7097. }
  7098. },
  7099. frontAlt: {
  7100. height: math.unit(6, "feet"),
  7101. weight: math.unit(50, "lbs"),
  7102. name: "Front (Alt)",
  7103. image: {
  7104. source: "./media/characters/sentri/front-alt.svg",
  7105. extra: 1750 / 1570,
  7106. bottom: 0.025
  7107. }
  7108. },
  7109. },
  7110. [
  7111. {
  7112. name: "Normal",
  7113. height: math.unit(15, "feet"),
  7114. default: true
  7115. },
  7116. {
  7117. name: "Macro",
  7118. height: math.unit(2500, "feet")
  7119. }
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7124. {
  7125. front: {
  7126. height: math.unit(5 + 8 / 12, "feet"),
  7127. weight: math.unit(130, "lbs"),
  7128. name: "Front",
  7129. image: {
  7130. source: "./media/characters/corvin/front.svg",
  7131. extra: 1803 / 1629
  7132. }
  7133. },
  7134. frontShirt: {
  7135. height: math.unit(5 + 8 / 12, "feet"),
  7136. weight: math.unit(130, "lbs"),
  7137. name: "Front (Shirt)",
  7138. image: {
  7139. source: "./media/characters/corvin/front-shirt.svg",
  7140. extra: 1803 / 1629
  7141. }
  7142. },
  7143. frontPoncho: {
  7144. height: math.unit(5 + 8 / 12, "feet"),
  7145. weight: math.unit(130, "lbs"),
  7146. name: "Front (Poncho)",
  7147. image: {
  7148. source: "./media/characters/corvin/front-poncho.svg",
  7149. extra: 1803 / 1629
  7150. }
  7151. },
  7152. side: {
  7153. height: math.unit(5 + 8 / 12, "feet"),
  7154. weight: math.unit(130, "lbs"),
  7155. name: "Side",
  7156. image: {
  7157. source: "./media/characters/corvin/side.svg",
  7158. extra: 1012 / 945
  7159. }
  7160. },
  7161. back: {
  7162. height: math.unit(5 + 8 / 12, "feet"),
  7163. weight: math.unit(130, "lbs"),
  7164. name: "Back",
  7165. image: {
  7166. source: "./media/characters/corvin/back.svg",
  7167. extra: 1803 / 1629
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Micro",
  7174. height: math.unit(3, "inches")
  7175. },
  7176. {
  7177. name: "Normal",
  7178. height: math.unit(5 + 8 / 12, "feet")
  7179. },
  7180. {
  7181. name: "Macro",
  7182. height: math.unit(300, "feet"),
  7183. default: true
  7184. },
  7185. {
  7186. name: "Megamacro",
  7187. height: math.unit(500, "miles")
  7188. }
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(135, "lbs"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/q/front.svg",
  7200. extra: 854 / 752,
  7201. bottom: 0.005
  7202. }
  7203. },
  7204. back: {
  7205. height: math.unit(6, "feet"),
  7206. weight: math.unit(130, "lbs"),
  7207. name: "Back",
  7208. image: {
  7209. source: "./media/characters/q/back.svg",
  7210. extra: 854 / 752
  7211. }
  7212. },
  7213. },
  7214. [
  7215. {
  7216. name: "Macro",
  7217. height: math.unit(90, "feet"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Extra Macro",
  7222. height: math.unit(300, "feet"),
  7223. },
  7224. {
  7225. name: "BIG WALF",
  7226. height: math.unit(750, "feet"),
  7227. },
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(6, "feet"),
  7235. weight: math.unit(150, "lbs"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/carley/front.svg",
  7239. extra: 3927 / 3540,
  7240. bottom: 0.03
  7241. }
  7242. }
  7243. },
  7244. [
  7245. {
  7246. name: "Normal",
  7247. height: math.unit(6 + 3 / 12, "feet")
  7248. },
  7249. {
  7250. name: "Macro",
  7251. height: math.unit(185, "feet"),
  7252. default: true
  7253. },
  7254. {
  7255. name: "Megamacro",
  7256. height: math.unit(8, "miles"),
  7257. },
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(3, "feet"),
  7265. weight: math.unit(28, "lbs"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/citrine/front.svg"
  7269. }
  7270. }
  7271. },
  7272. [
  7273. {
  7274. name: "Normal",
  7275. height: math.unit(3, "feet"),
  7276. default: true
  7277. }
  7278. ]
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7282. {
  7283. front: {
  7284. height: math.unit(14, "feet"),
  7285. weight: math.unit(1450, "kg"),
  7286. capacity: math.unit(15, "people"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/aura-starwind/front.svg",
  7290. extra: 1455 / 1335
  7291. }
  7292. },
  7293. side: {
  7294. height: math.unit(14, "feet"),
  7295. weight: math.unit(1450, "kg"),
  7296. capacity: math.unit(15, "people"),
  7297. name: "Side",
  7298. image: {
  7299. source: "./media/characters/aura-starwind/side.svg",
  7300. extra: 1654 / 1497
  7301. }
  7302. },
  7303. taur: {
  7304. height: math.unit(18, "feet"),
  7305. weight: math.unit(5500, "kg"),
  7306. capacity: math.unit(50, "people"),
  7307. name: "Taur",
  7308. image: {
  7309. source: "./media/characters/aura-starwind/taur.svg",
  7310. extra: 1760 / 1650
  7311. }
  7312. },
  7313. feral: {
  7314. height: math.unit(46, "feet"),
  7315. weight: math.unit(25000, "kg"),
  7316. capacity: math.unit(120, "people"),
  7317. name: "Feral",
  7318. image: {
  7319. source: "./media/characters/aura-starwind/feral.svg"
  7320. }
  7321. },
  7322. },
  7323. [
  7324. {
  7325. name: "Normal",
  7326. height: math.unit(14, "feet"),
  7327. default: true
  7328. },
  7329. {
  7330. name: "Macro",
  7331. height: math.unit(50, "meters")
  7332. },
  7333. {
  7334. name: "Megamacro",
  7335. height: math.unit(5000, "meters")
  7336. },
  7337. {
  7338. name: "Gigamacro",
  7339. height: math.unit(100000, "kilometers")
  7340. },
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7345. {
  7346. front: {
  7347. height: math.unit(2 + 7 / 12, "feet"),
  7348. weight: math.unit(32, "lbs"),
  7349. name: "Front",
  7350. image: {
  7351. source: "./media/characters/rivet/front.svg",
  7352. extra: 1716 / 1658,
  7353. bottom: 0.03
  7354. }
  7355. },
  7356. foot: {
  7357. height: math.unit(0.551, "feet"),
  7358. name: "Rivet's Foot",
  7359. image: {
  7360. source: "./media/characters/rivet/foot.svg"
  7361. },
  7362. rename: true
  7363. }
  7364. },
  7365. [
  7366. {
  7367. name: "Micro",
  7368. height: math.unit(1.5, "inches"),
  7369. },
  7370. {
  7371. name: "Normal",
  7372. height: math.unit(2 + 7 / 12, "feet"),
  7373. default: true
  7374. },
  7375. {
  7376. name: "Macro",
  7377. height: math.unit(85, "feet")
  7378. },
  7379. {
  7380. name: "Megamacro",
  7381. height: math.unit(2.2, "km")
  7382. }
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(5 + 9 / 12, "feet"),
  7390. weight: math.unit(150, "lbs"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/coffee/front.svg",
  7394. extra: 3666 / 3032,
  7395. bottom: 0.04
  7396. }
  7397. },
  7398. foot: {
  7399. height: math.unit(1.29, "feet"),
  7400. name: "Foot",
  7401. image: {
  7402. source: "./media/characters/coffee/foot.svg"
  7403. }
  7404. },
  7405. },
  7406. [
  7407. {
  7408. name: "Micro",
  7409. height: math.unit(2, "inches"),
  7410. },
  7411. {
  7412. name: "Normal",
  7413. height: math.unit(5 + 9 / 12, "feet"),
  7414. default: true
  7415. },
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(800, "feet")
  7419. },
  7420. {
  7421. name: "Megamacro",
  7422. height: math.unit(25, "miles")
  7423. }
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7428. {
  7429. front: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(200, "lbs"),
  7432. name: "Front",
  7433. image: {
  7434. source: "./media/characters/chari-gal/front.svg",
  7435. extra: 1568 / 1385,
  7436. bottom: 0.047
  7437. }
  7438. },
  7439. gigantamax: {
  7440. height: math.unit(6 * 16, "feet"),
  7441. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7442. name: "Gigantamax",
  7443. image: {
  7444. source: "./media/characters/chari-gal/gigantamax.svg",
  7445. extra: 1124 / 888,
  7446. bottom: 0.03
  7447. }
  7448. },
  7449. },
  7450. [
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(5 + 7 / 12, "feet")
  7454. },
  7455. {
  7456. name: "Macro",
  7457. height: math.unit(200, "feet"),
  7458. default: true
  7459. }
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7464. {
  7465. front: {
  7466. height: math.unit(6, "feet"),
  7467. weight: math.unit(150, "lbs"),
  7468. name: "Front",
  7469. image: {
  7470. source: "./media/characters/nova/front.svg",
  7471. extra: 5000 / 4722,
  7472. bottom: 0.02
  7473. }
  7474. }
  7475. },
  7476. [
  7477. {
  7478. name: "Micro-",
  7479. height: math.unit(0.8, "inches")
  7480. },
  7481. {
  7482. name: "Micro",
  7483. height: math.unit(2, "inches"),
  7484. default: true
  7485. },
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7490. {
  7491. front: {
  7492. height: math.unit(3 + 1 / 12, "feet"),
  7493. weight: math.unit(21.7, "lbs"),
  7494. name: "Front",
  7495. image: {
  7496. source: "./media/characters/argent/front.svg",
  7497. extra: 1471 / 1331,
  7498. bottom: 100.8 / 1575.5
  7499. }
  7500. }
  7501. },
  7502. [
  7503. {
  7504. name: "Micro",
  7505. height: math.unit(2, "inches")
  7506. },
  7507. {
  7508. name: "Normal",
  7509. height: math.unit(3 + 1 / 12, "feet"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(120, "feet")
  7515. },
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7520. {
  7521. lamp: {
  7522. height: math.unit(7 * 1559 / 989, "feet"),
  7523. name: "Magic Lamp",
  7524. image: {
  7525. source: "./media/characters/mira-al-cul/lamp.svg",
  7526. extra: 1617 / 1559
  7527. }
  7528. },
  7529. front: {
  7530. height: math.unit(7, "feet"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/mira-al-cul/front.svg",
  7534. extra: 1044 / 990
  7535. }
  7536. },
  7537. },
  7538. [
  7539. {
  7540. name: "Heavily Restricted",
  7541. height: math.unit(7 * 1559 / 989, "feet")
  7542. },
  7543. {
  7544. name: "Freshly Freed",
  7545. height: math.unit(50 * 1559 / 989, "feet")
  7546. },
  7547. {
  7548. name: "World Encompassing",
  7549. height: math.unit(10000 * 1559 / 989, "miles")
  7550. },
  7551. {
  7552. name: "Galactic",
  7553. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7554. },
  7555. {
  7556. name: "Palmed Universe",
  7557. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7558. default: true
  7559. },
  7560. {
  7561. name: "Multiversal Matriarch",
  7562. height: math.unit(8.87e10, "yottameters")
  7563. },
  7564. {
  7565. name: "Void Mother",
  7566. height: math.unit(3.14e110, "yottaparsecs")
  7567. },
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7572. {
  7573. front: {
  7574. height: math.unit(17 + 1 / 12, "feet"),
  7575. weight: math.unit(476.2 * 5, "lbs"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/kuro-shi-uchū/front.svg",
  7579. extra: 2329 / 1835,
  7580. bottom: 0.02
  7581. }
  7582. },
  7583. },
  7584. [
  7585. {
  7586. name: "Micro",
  7587. height: math.unit(2, "inches")
  7588. },
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(12, "meters")
  7592. },
  7593. {
  7594. name: "Planetary",
  7595. height: math.unit(0.00929, "AU"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Universal",
  7600. height: math.unit(20, "gigaparsecs")
  7601. },
  7602. ]
  7603. ))
  7604. characterMakers.push(() => makeCharacter(
  7605. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7606. {
  7607. front: {
  7608. height: math.unit(5 + 2 / 12, "feet"),
  7609. weight: math.unit(120, "lbs"),
  7610. name: "Front",
  7611. image: {
  7612. source: "./media/characters/katherine/front.svg",
  7613. extra: 2075 / 1969
  7614. }
  7615. },
  7616. dress: {
  7617. height: math.unit(5 + 2 / 12, "feet"),
  7618. weight: math.unit(120, "lbs"),
  7619. name: "Dress",
  7620. image: {
  7621. source: "./media/characters/katherine/dress.svg",
  7622. extra: 2258 / 2064
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Micro",
  7629. height: math.unit(1, "inches"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(5 + 2 / 12, "feet")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(100, "meters")
  7639. },
  7640. {
  7641. name: "Megamacro",
  7642. height: math.unit(80, "miles")
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(7 + 8 / 12, "feet"),
  7651. weight: math.unit(250, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/yevis/front.svg",
  7655. extra: 1938 / 1755
  7656. }
  7657. }
  7658. },
  7659. [
  7660. {
  7661. name: "Mortal",
  7662. height: math.unit(7 + 8 / 12, "feet")
  7663. },
  7664. {
  7665. name: "Battle",
  7666. height: math.unit(25 + 11 / 12, "feet")
  7667. },
  7668. {
  7669. name: "Wrath",
  7670. height: math.unit(1654 + 11 / 12, "feet")
  7671. },
  7672. {
  7673. name: "Planet Destroyer",
  7674. height: math.unit(12000, "miles")
  7675. },
  7676. {
  7677. name: "Galaxy Conqueror",
  7678. height: math.unit(1.45, "zettameters"),
  7679. default: true
  7680. },
  7681. {
  7682. name: "Universal War",
  7683. height: math.unit(184, "gigaparsecs")
  7684. },
  7685. {
  7686. name: "Eternity War",
  7687. height: math.unit(1.98e55, "yottaparsecs")
  7688. },
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7693. {
  7694. front: {
  7695. height: math.unit(5 + 8 / 12, "feet"),
  7696. weight: math.unit(63, "kg"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/xavier/front.svg",
  7700. extra: 944 / 883
  7701. }
  7702. },
  7703. frontStretch: {
  7704. height: math.unit(5 + 8 / 12, "feet"),
  7705. weight: math.unit(63, "kg"),
  7706. name: "Stretching",
  7707. image: {
  7708. source: "./media/characters/xavier/front-stretch.svg",
  7709. extra: 962 / 820
  7710. }
  7711. },
  7712. },
  7713. [
  7714. {
  7715. name: "Normal",
  7716. height: math.unit(5 + 8 / 12, "feet")
  7717. },
  7718. {
  7719. name: "Macro",
  7720. height: math.unit(100, "meters"),
  7721. default: true
  7722. },
  7723. {
  7724. name: "McLargeHuge",
  7725. height: math.unit(10, "miles")
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(5 + 5 / 12, "feet"),
  7734. weight: math.unit(150, "lb"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/joshii/front.svg"
  7738. }
  7739. },
  7740. foot: {
  7741. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7742. name: "Foot",
  7743. image: {
  7744. source: "./media/characters/joshii/foot.svg"
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Micro",
  7751. height: math.unit(2, "inches")
  7752. },
  7753. {
  7754. name: "Normal",
  7755. height: math.unit(5 + 5 / 12, "feet"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(785, "feet")
  7761. },
  7762. {
  7763. name: "Megamacro",
  7764. height: math.unit(24.5, "miles")
  7765. },
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(150, "lb"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/goddess-elizabeth/front.svg",
  7777. extra: 1800 / 1525,
  7778. bottom: 0.005
  7779. }
  7780. },
  7781. foot: {
  7782. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7783. name: "Foot",
  7784. image: {
  7785. source: "./media/characters/goddess-elizabeth/foot.svg"
  7786. }
  7787. },
  7788. mouth: {
  7789. height: math.unit(6, "feet"),
  7790. name: "Mouth",
  7791. image: {
  7792. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7793. }
  7794. },
  7795. },
  7796. [
  7797. {
  7798. name: "Micro",
  7799. height: math.unit(12, "feet")
  7800. },
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(80, "miles"),
  7804. default: true
  7805. },
  7806. {
  7807. name: "Macro",
  7808. height: math.unit(15000, "parsecs")
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(5 + 9 / 12, "feet"),
  7817. weight: math.unit(144, "lb"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/kara/front.svg"
  7821. }
  7822. },
  7823. feet: {
  7824. height: math.unit(6 / 6.765, "feet"),
  7825. name: "Kara's Feet",
  7826. rename: true,
  7827. image: {
  7828. source: "./media/characters/kara/feet.svg"
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(5 + 9 / 12, "feet")
  7836. },
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(174, "feet"),
  7840. default: true
  7841. },
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7846. {
  7847. front: {
  7848. height: math.unit(18, "feet"),
  7849. weight: math.unit(4050, "lb"),
  7850. name: "Front",
  7851. image: {
  7852. source: "./media/characters/tyrone/front.svg",
  7853. extra: 2520 / 2402,
  7854. bottom: 0.025
  7855. }
  7856. },
  7857. },
  7858. [
  7859. {
  7860. name: "Normal",
  7861. height: math.unit(18, "feet"),
  7862. default: true
  7863. },
  7864. {
  7865. name: "Macro",
  7866. height: math.unit(300, "feet")
  7867. },
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(7 + 8 / 12, "feet"),
  7875. weight: math.unit(120, "lb"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/danny/front.svg",
  7879. extra: 1490 / 1350
  7880. }
  7881. },
  7882. back: {
  7883. height: math.unit(7 + 8 / 12, "feet"),
  7884. weight: math.unit(120, "lb"),
  7885. name: "Back",
  7886. image: {
  7887. source: "./media/characters/danny/back.svg",
  7888. extra: 1490 / 1350
  7889. }
  7890. },
  7891. },
  7892. [
  7893. {
  7894. name: "Normal",
  7895. height: math.unit(7 + 8 / 12, "feet"),
  7896. default: true
  7897. },
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7902. {
  7903. front: {
  7904. height: math.unit(3.5, "inches"),
  7905. weight: math.unit(19, "grams"),
  7906. name: "Front",
  7907. image: {
  7908. source: "./media/characters/mallow/front.svg",
  7909. extra: 471 / 431
  7910. }
  7911. },
  7912. back: {
  7913. height: math.unit(3.5, "inches"),
  7914. weight: math.unit(19, "grams"),
  7915. name: "Back",
  7916. image: {
  7917. source: "./media/characters/mallow/back.svg",
  7918. extra: 471 / 431
  7919. }
  7920. },
  7921. },
  7922. [
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(3.5, "inches"),
  7926. default: true
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(9, "feet"),
  7935. weight: math.unit(230, "kg"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/starry-aqua/front.svg"
  7939. }
  7940. },
  7941. back: {
  7942. height: math.unit(9, "feet"),
  7943. weight: math.unit(230, "kg"),
  7944. name: "Back",
  7945. image: {
  7946. source: "./media/characters/starry-aqua/back.svg"
  7947. }
  7948. },
  7949. hand: {
  7950. height: math.unit(9 * 0.1168, "feet"),
  7951. name: "Hand",
  7952. image: {
  7953. source: "./media/characters/starry-aqua/hand.svg"
  7954. }
  7955. },
  7956. foot: {
  7957. height: math.unit(9 * 0.18, "feet"),
  7958. name: "Foot",
  7959. image: {
  7960. source: "./media/characters/starry-aqua/foot.svg"
  7961. }
  7962. }
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(3, "inches")
  7968. },
  7969. {
  7970. name: "Normal",
  7971. height: math.unit(9, "feet")
  7972. },
  7973. {
  7974. name: "Macro",
  7975. height: math.unit(300, "feet"),
  7976. default: true
  7977. },
  7978. {
  7979. name: "Megamacro",
  7980. height: math.unit(3200, "feet")
  7981. }
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(6, "feet"),
  7989. weight: math.unit(230, "lb"),
  7990. name: "Front",
  7991. image: {
  7992. source: "./media/characters/luka/front.svg",
  7993. extra: 1,
  7994. bottom: 0.025
  7995. }
  7996. },
  7997. },
  7998. [
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(12 + 8 / 12, "feet"),
  8002. default: true
  8003. },
  8004. {
  8005. name: "Minimacro",
  8006. height: math.unit(20, "feet")
  8007. },
  8008. {
  8009. name: "Macro",
  8010. height: math.unit(250, "feet")
  8011. },
  8012. {
  8013. name: "Megamacro",
  8014. height: math.unit(5, "miles")
  8015. },
  8016. {
  8017. name: "Gigamacro",
  8018. height: math.unit(8000, "miles")
  8019. },
  8020. ]
  8021. ))
  8022. characterMakers.push(() => makeCharacter(
  8023. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8024. {
  8025. front: {
  8026. height: math.unit(6, "feet"),
  8027. weight: math.unit(150, "lb"),
  8028. name: "Front",
  8029. image: {
  8030. source: "./media/characters/natalie-nightring/front.svg",
  8031. extra: 1,
  8032. bottom: 0.06
  8033. }
  8034. },
  8035. },
  8036. [
  8037. {
  8038. name: "Uh Oh",
  8039. height: math.unit(0.1, "mm")
  8040. },
  8041. {
  8042. name: "Small",
  8043. height: math.unit(3, "inches")
  8044. },
  8045. {
  8046. name: "Human Scale",
  8047. height: math.unit(6, "feet")
  8048. },
  8049. {
  8050. name: "Librarian",
  8051. height: math.unit(50, "feet"),
  8052. default: true
  8053. },
  8054. {
  8055. name: "Immense",
  8056. height: math.unit(200, "miles")
  8057. },
  8058. ]
  8059. ))
  8060. characterMakers.push(() => makeCharacter(
  8061. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8062. {
  8063. front: {
  8064. height: math.unit(6, "feet"),
  8065. weight: math.unit(180, "lbs"),
  8066. name: "Front",
  8067. image: {
  8068. source: "./media/characters/danni-rosie/front.svg",
  8069. extra: 1260 / 1128,
  8070. bottom: 0.022
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Micro",
  8077. height: math.unit(2, "inches"),
  8078. default: true
  8079. },
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8084. {
  8085. front: {
  8086. height: math.unit(5 + 9 / 12, "feet"),
  8087. weight: math.unit(220, "lb"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/samantha-kruse/front.svg",
  8091. extra: (985 / 935),
  8092. bottom: 0.03
  8093. }
  8094. },
  8095. frontUndressed: {
  8096. height: math.unit(5 + 9 / 12, "feet"),
  8097. weight: math.unit(220, "lb"),
  8098. name: "Front (Undressed)",
  8099. image: {
  8100. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8101. extra: (973 / 923),
  8102. bottom: 0.025
  8103. }
  8104. },
  8105. fat: {
  8106. height: math.unit(5 + 9 / 12, "feet"),
  8107. weight: math.unit(900, "lb"),
  8108. name: "Front (Fat)",
  8109. image: {
  8110. source: "./media/characters/samantha-kruse/fat.svg",
  8111. extra: 2688 / 2561
  8112. }
  8113. },
  8114. },
  8115. [
  8116. {
  8117. name: "Normal",
  8118. height: math.unit(5 + 9 / 12, "feet"),
  8119. default: true
  8120. }
  8121. ]
  8122. ))
  8123. characterMakers.push(() => makeCharacter(
  8124. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8125. {
  8126. back: {
  8127. height: math.unit(5 + 4 / 12, "feet"),
  8128. weight: math.unit(4963, "lb"),
  8129. name: "Back",
  8130. image: {
  8131. source: "./media/characters/amelia-rosie/back.svg",
  8132. extra: 1113 / 963,
  8133. bottom: 0.01
  8134. }
  8135. },
  8136. },
  8137. [
  8138. {
  8139. name: "Level 0",
  8140. height: math.unit(5 + 4 / 12, "feet")
  8141. },
  8142. {
  8143. name: "Level 1",
  8144. height: math.unit(164597, "feet"),
  8145. default: true
  8146. },
  8147. {
  8148. name: "Level 2",
  8149. height: math.unit(956243, "miles")
  8150. },
  8151. {
  8152. name: "Level 3",
  8153. height: math.unit(29421709423, "miles")
  8154. },
  8155. {
  8156. name: "Level 4",
  8157. height: math.unit(154, "lightyears")
  8158. },
  8159. {
  8160. name: "Level 5",
  8161. height: math.unit(4738272, "lightyears")
  8162. },
  8163. {
  8164. name: "Level 6",
  8165. height: math.unit(145787152896, "lightyears")
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(5 + 11 / 12, "feet"),
  8174. weight: math.unit(65, "kg"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/rook-kitara/front.svg",
  8178. extra: 1347 / 1274,
  8179. bottom: 0.005
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Totally Unfair",
  8186. height: math.unit(1.8, "mm")
  8187. },
  8188. {
  8189. name: "Lap Rookie",
  8190. height: math.unit(1.4, "feet")
  8191. },
  8192. {
  8193. name: "Normal",
  8194. height: math.unit(5 + 11 / 12, "feet"),
  8195. default: true
  8196. },
  8197. {
  8198. name: "How Did This Happen",
  8199. height: math.unit(80, "miles")
  8200. }
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(7, "feet"),
  8208. weight: math.unit(300, "lb"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/pisces/front.svg",
  8212. extra: 2255 / 2115,
  8213. bottom: 0.03
  8214. }
  8215. },
  8216. back: {
  8217. height: math.unit(7, "feet"),
  8218. weight: math.unit(300, "lb"),
  8219. name: "Back",
  8220. image: {
  8221. source: "./media/characters/pisces/back.svg",
  8222. extra: 2146 / 2055,
  8223. bottom: 0.04
  8224. }
  8225. },
  8226. },
  8227. [
  8228. {
  8229. name: "Normal",
  8230. height: math.unit(7, "feet"),
  8231. default: true
  8232. },
  8233. {
  8234. name: "Swimming Pool",
  8235. height: math.unit(12.2, "meters")
  8236. },
  8237. {
  8238. name: "Olympic Swimming Pool",
  8239. height: math.unit(56.3, "meters")
  8240. },
  8241. {
  8242. name: "Lake Superior",
  8243. height: math.unit(93900, "meters")
  8244. },
  8245. {
  8246. name: "Mediterranean Sea",
  8247. height: math.unit(644457, "meters")
  8248. },
  8249. {
  8250. name: "World's Oceans",
  8251. height: math.unit(4567491, "meters")
  8252. },
  8253. ]
  8254. ))
  8255. characterMakers.push(() => makeCharacter(
  8256. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8257. {
  8258. front: {
  8259. height: math.unit(2.3, "meters"),
  8260. weight: math.unit(120, "kg"),
  8261. name: "Front",
  8262. image: {
  8263. source: "./media/characters/zelas/front.svg"
  8264. }
  8265. },
  8266. side: {
  8267. height: math.unit(2.3, "meters"),
  8268. weight: math.unit(120, "kg"),
  8269. name: "Side",
  8270. image: {
  8271. source: "./media/characters/zelas/side.svg"
  8272. }
  8273. },
  8274. back: {
  8275. height: math.unit(2.3, "meters"),
  8276. weight: math.unit(120, "kg"),
  8277. name: "Back",
  8278. image: {
  8279. source: "./media/characters/zelas/back.svg"
  8280. }
  8281. },
  8282. foot: {
  8283. height: math.unit(1.116, "feet"),
  8284. name: "Foot",
  8285. image: {
  8286. source: "./media/characters/zelas/foot.svg"
  8287. }
  8288. },
  8289. },
  8290. [
  8291. {
  8292. name: "Normal",
  8293. height: math.unit(2.3, "meters")
  8294. },
  8295. {
  8296. name: "Macro",
  8297. height: math.unit(30, "meters"),
  8298. default: true
  8299. },
  8300. ]
  8301. ))
  8302. characterMakers.push(() => makeCharacter(
  8303. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8304. {
  8305. front: {
  8306. height: math.unit(1, "inch"),
  8307. weight: math.unit(0.21, "grams"),
  8308. name: "Front",
  8309. image: {
  8310. source: "./media/characters/talbot/front.svg",
  8311. extra: 594 / 544
  8312. }
  8313. },
  8314. },
  8315. [
  8316. {
  8317. name: "Micro",
  8318. height: math.unit(1, "inch"),
  8319. default: true
  8320. },
  8321. ]
  8322. ))
  8323. characterMakers.push(() => makeCharacter(
  8324. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8325. {
  8326. front: {
  8327. height: math.unit(3 + 3 / 12, "feet"),
  8328. weight: math.unit(51.8, "lb"),
  8329. name: "Front",
  8330. image: {
  8331. source: "./media/characters/fliss/front.svg",
  8332. extra: 840 / 640
  8333. }
  8334. },
  8335. },
  8336. [
  8337. {
  8338. name: "Teeny Tiny",
  8339. height: math.unit(1, "mm")
  8340. },
  8341. {
  8342. name: "Small",
  8343. height: math.unit(1, "inch"),
  8344. default: true
  8345. },
  8346. {
  8347. name: "Standard Sylveon",
  8348. height: math.unit(3 + 3 / 12, "feet")
  8349. },
  8350. {
  8351. name: "Large Nuisance",
  8352. height: math.unit(33, "feet")
  8353. },
  8354. {
  8355. name: "City Filler",
  8356. height: math.unit(3000, "feet")
  8357. },
  8358. {
  8359. name: "New Horizon",
  8360. height: math.unit(6000, "miles")
  8361. },
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8366. {
  8367. front: {
  8368. height: math.unit(5, "cm"),
  8369. weight: math.unit(1.94, "g"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/fleta/front.svg",
  8373. extra: 835 / 803
  8374. }
  8375. },
  8376. back: {
  8377. height: math.unit(5, "cm"),
  8378. weight: math.unit(1.94, "g"),
  8379. name: "Back",
  8380. image: {
  8381. source: "./media/characters/fleta/back.svg",
  8382. extra: 835 / 803
  8383. }
  8384. },
  8385. },
  8386. [
  8387. {
  8388. name: "Micro",
  8389. height: math.unit(5, "cm"),
  8390. default: true
  8391. },
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8396. {
  8397. front: {
  8398. height: math.unit(6, "feet"),
  8399. weight: math.unit(225, "lb"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/dominic/front.svg",
  8403. extra: 1770 / 1620,
  8404. bottom: 0.025
  8405. }
  8406. },
  8407. back: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(225, "lb"),
  8410. name: "Back",
  8411. image: {
  8412. source: "./media/characters/dominic/back.svg",
  8413. extra: 1745 / 1620,
  8414. bottom: 0.065
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Nano",
  8421. height: math.unit(0.1, "mm")
  8422. },
  8423. {
  8424. name: "Micro-",
  8425. height: math.unit(1, "mm")
  8426. },
  8427. {
  8428. name: "Micro",
  8429. height: math.unit(4, "inches")
  8430. },
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(6 + 4 / 12, "feet"),
  8434. default: true
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(115, "feet")
  8439. },
  8440. {
  8441. name: "Macro+",
  8442. height: math.unit(955, "feet")
  8443. },
  8444. {
  8445. name: "Megamacro",
  8446. height: math.unit(8990, "feet")
  8447. },
  8448. {
  8449. name: "Gigmacro",
  8450. height: math.unit(9310, "miles")
  8451. },
  8452. {
  8453. name: "Teramacro",
  8454. height: math.unit(1567005010, "miles")
  8455. },
  8456. {
  8457. name: "Examacro",
  8458. height: math.unit(1425, "parsecs")
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(400, "feet"),
  8467. weight: math.unit(44444444, "lb"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/major-colonel/front.svg"
  8471. }
  8472. },
  8473. back: {
  8474. height: math.unit(400, "feet"),
  8475. weight: math.unit(44444444, "lb"),
  8476. name: "Back",
  8477. image: {
  8478. source: "./media/characters/major-colonel/back.svg"
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Macro",
  8485. height: math.unit(400, "feet"),
  8486. default: true
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8492. {
  8493. catFront: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(120, "lb"),
  8496. name: "Front (Cat Side)",
  8497. image: {
  8498. source: "./media/characters/axel-lycan/cat-front.svg",
  8499. extra: 430 / 402,
  8500. bottom: 43 / 472.35
  8501. }
  8502. },
  8503. catBack: {
  8504. height: math.unit(6, "feet"),
  8505. weight: math.unit(120, "lb"),
  8506. name: "Back (Cat Side)",
  8507. image: {
  8508. source: "./media/characters/axel-lycan/cat-back.svg",
  8509. extra: 447 / 419,
  8510. bottom: 23.3 / 469
  8511. }
  8512. },
  8513. wolfFront: {
  8514. height: math.unit(6, "feet"),
  8515. weight: math.unit(120, "lb"),
  8516. name: "Front (Wolf Side)",
  8517. image: {
  8518. source: "./media/characters/axel-lycan/wolf-front.svg",
  8519. extra: 485 / 456,
  8520. bottom: 19 / 504
  8521. }
  8522. },
  8523. wolfBack: {
  8524. height: math.unit(6, "feet"),
  8525. weight: math.unit(120, "lb"),
  8526. name: "Back (Wolf Side)",
  8527. image: {
  8528. source: "./media/characters/axel-lycan/wolf-back.svg",
  8529. extra: 475 / 438,
  8530. bottom: 39.2 / 514
  8531. }
  8532. },
  8533. },
  8534. [
  8535. {
  8536. name: "Macro",
  8537. height: math.unit(1, "km"),
  8538. default: true
  8539. },
  8540. ]
  8541. ))
  8542. characterMakers.push(() => makeCharacter(
  8543. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8544. {
  8545. front: {
  8546. height: math.unit(5 + 9 / 12, "feet"),
  8547. weight: math.unit(175, "lb"),
  8548. name: "Front",
  8549. image: {
  8550. source: "./media/characters/vanrel-hyena/front.svg",
  8551. extra: 1086 / 1010,
  8552. bottom: 0.04
  8553. }
  8554. },
  8555. },
  8556. [
  8557. {
  8558. name: "Normal",
  8559. height: math.unit(5 + 9 / 12, "feet"),
  8560. default: true
  8561. },
  8562. ]
  8563. ))
  8564. characterMakers.push(() => makeCharacter(
  8565. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8566. {
  8567. front: {
  8568. height: math.unit(6, "feet"),
  8569. weight: math.unit(103, "lb"),
  8570. name: "Front",
  8571. image: {
  8572. source: "./media/characters/abbott-absol/front.svg",
  8573. extra: 2010 / 1842
  8574. }
  8575. },
  8576. },
  8577. [
  8578. {
  8579. name: "Megamicro",
  8580. height: math.unit(0.1, "mm")
  8581. },
  8582. {
  8583. name: "Micro",
  8584. height: math.unit(1, "inch")
  8585. },
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(6, "feet"),
  8589. default: true
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(6, "feet"),
  8598. weight: math.unit(264, "lb"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/hector/front.svg",
  8602. extra: 2280 / 2130,
  8603. bottom: 0.07
  8604. }
  8605. },
  8606. },
  8607. [
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(12.25, "foot"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(160, "feet")
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8621. {
  8622. front: {
  8623. height: math.unit(6, "feet"),
  8624. weight: math.unit(150, "lb"),
  8625. name: "Front",
  8626. image: {
  8627. source: "./media/characters/sal/front.svg",
  8628. extra: 1846 / 1699,
  8629. bottom: 0.04
  8630. }
  8631. },
  8632. },
  8633. [
  8634. {
  8635. name: "Megamacro",
  8636. height: math.unit(10, "miles"),
  8637. default: true
  8638. },
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8643. {
  8644. front: {
  8645. height: math.unit(3, "meters"),
  8646. weight: math.unit(450, "kg"),
  8647. name: "front",
  8648. image: {
  8649. source: "./media/characters/ranger/front.svg",
  8650. extra: 2401 / 2243,
  8651. bottom: 0.05
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Normal",
  8658. height: math.unit(3, "meters"),
  8659. default: true
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(14, "feet"),
  8668. weight: math.unit(800, "kg"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/theresa/front.svg",
  8672. extra: 3575 / 3346,
  8673. bottom: 0.03
  8674. }
  8675. },
  8676. },
  8677. [
  8678. {
  8679. name: "Normal",
  8680. height: math.unit(14, "feet"),
  8681. default: true
  8682. },
  8683. ]
  8684. ))
  8685. characterMakers.push(() => makeCharacter(
  8686. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8687. {
  8688. front: {
  8689. height: math.unit(6, "feet"),
  8690. weight: math.unit(3, "kg"),
  8691. name: "Front",
  8692. image: {
  8693. source: "./media/characters/ine/front.svg",
  8694. extra: 678 / 539,
  8695. bottom: 0.023
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(2.265, "feet"),
  8703. default: true
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(5, "feet"),
  8712. weight: math.unit(30, "kg"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/vial/front.svg",
  8716. extra: 1365 / 1277,
  8717. bottom: 0.04
  8718. }
  8719. },
  8720. },
  8721. [
  8722. {
  8723. name: "Normal",
  8724. height: math.unit(5, "feet"),
  8725. default: true
  8726. },
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8731. {
  8732. side: {
  8733. height: math.unit(3.4, "meters"),
  8734. weight: math.unit(1000, "lb"),
  8735. name: "Side",
  8736. image: {
  8737. source: "./media/characters/rovoska/side.svg",
  8738. extra: 4403 / 1515
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(3.4, "meters"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(8, "feet"),
  8755. weight: math.unit(315, "lb"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/gunner-rotthbauer/front.svg"
  8759. }
  8760. },
  8761. back: {
  8762. height: math.unit(8, "feet"),
  8763. weight: math.unit(315, "lb"),
  8764. name: "Back",
  8765. image: {
  8766. source: "./media/characters/gunner-rotthbauer/back.svg"
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Micro",
  8773. height: math.unit(3.5, "inches")
  8774. },
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(8, "feet"),
  8778. default: true
  8779. },
  8780. {
  8781. name: "Macro",
  8782. height: math.unit(250, "feet")
  8783. },
  8784. {
  8785. name: "Megamacro",
  8786. height: math.unit(1, "AU")
  8787. },
  8788. ]
  8789. ))
  8790. characterMakers.push(() => makeCharacter(
  8791. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8792. {
  8793. front: {
  8794. height: math.unit(5 + 5 / 12, "feet"),
  8795. weight: math.unit(140, "lb"),
  8796. name: "Front",
  8797. image: {
  8798. source: "./media/characters/allatia/front.svg",
  8799. extra: 1227 / 1180,
  8800. bottom: 0.027
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(5 + 5 / 12, "feet")
  8808. },
  8809. {
  8810. name: "Macro",
  8811. height: math.unit(250, "feet"),
  8812. default: true
  8813. },
  8814. {
  8815. name: "Megamacro",
  8816. height: math.unit(8, "miles")
  8817. }
  8818. ]
  8819. ))
  8820. characterMakers.push(() => makeCharacter(
  8821. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8822. {
  8823. front: {
  8824. height: math.unit(6, "feet"),
  8825. weight: math.unit(120, "lb"),
  8826. name: "Front",
  8827. image: {
  8828. source: "./media/characters/tene/front.svg",
  8829. extra: 1728 / 1578,
  8830. bottom: 0.022
  8831. }
  8832. },
  8833. stomping: {
  8834. height: math.unit(2.025, "meters"),
  8835. weight: math.unit(120, "lb"),
  8836. name: "Stomping",
  8837. image: {
  8838. source: "./media/characters/tene/stomping.svg",
  8839. extra: 938 / 873,
  8840. bottom: 0.01
  8841. }
  8842. },
  8843. sitting: {
  8844. height: math.unit(1, "meter"),
  8845. weight: math.unit(120, "lb"),
  8846. name: "Sitting",
  8847. image: {
  8848. source: "./media/characters/tene/sitting.svg",
  8849. extra: 437 / 415,
  8850. bottom: 0.1
  8851. }
  8852. },
  8853. feral: {
  8854. height: math.unit(3.9, "feet"),
  8855. weight: math.unit(250, "lb"),
  8856. name: "Feral",
  8857. image: {
  8858. source: "./media/characters/tene/feral.svg",
  8859. extra: 717 / 458,
  8860. bottom: 0.179
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Normal",
  8867. height: math.unit(6, "feet")
  8868. },
  8869. {
  8870. name: "Macro",
  8871. height: math.unit(300, "feet"),
  8872. default: true
  8873. },
  8874. {
  8875. name: "Megamacro",
  8876. height: math.unit(5, "miles")
  8877. },
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8882. {
  8883. side: {
  8884. height: math.unit(6, "feet"),
  8885. name: "Side",
  8886. image: {
  8887. source: "./media/characters/evander/side.svg",
  8888. extra: 877 / 477
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(0.83, "meters"),
  8896. default: true
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(12, "feet"),
  8905. weight: math.unit(1000, "lb"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8909. extra: 1762 / 1611
  8910. }
  8911. },
  8912. back: {
  8913. height: math.unit(12, "feet"),
  8914. weight: math.unit(1000, "lb"),
  8915. name: "Back",
  8916. image: {
  8917. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8918. extra: 1762 / 1611
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Normal",
  8925. height: math.unit(12, "feet"),
  8926. default: true
  8927. },
  8928. {
  8929. name: "Kaiju",
  8930. height: math.unit(150, "feet")
  8931. },
  8932. ]
  8933. ))
  8934. characterMakers.push(() => makeCharacter(
  8935. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8936. {
  8937. front: {
  8938. height: math.unit(6, "feet"),
  8939. weight: math.unit(150, "lb"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/zero-alurus/front.svg"
  8943. }
  8944. },
  8945. back: {
  8946. height: math.unit(6, "feet"),
  8947. weight: math.unit(150, "lb"),
  8948. name: "Back",
  8949. image: {
  8950. source: "./media/characters/zero-alurus/back.svg"
  8951. }
  8952. },
  8953. },
  8954. [
  8955. {
  8956. name: "Normal",
  8957. height: math.unit(5 + 10 / 12, "feet")
  8958. },
  8959. {
  8960. name: "Macro",
  8961. height: math.unit(60, "feet"),
  8962. default: true
  8963. },
  8964. {
  8965. name: "Macro+",
  8966. height: math.unit(450, "feet")
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(200, "lb"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/mega-shi/front.svg",
  8979. extra: 1279 / 1250,
  8980. bottom: 0.02
  8981. }
  8982. },
  8983. back: {
  8984. height: math.unit(6, "feet"),
  8985. weight: math.unit(200, "lb"),
  8986. name: "Back",
  8987. image: {
  8988. source: "./media/characters/mega-shi/back.svg",
  8989. extra: 1279 / 1250,
  8990. bottom: 0.02
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Micro",
  8997. height: math.unit(16 + 6 / 12, "feet")
  8998. },
  8999. {
  9000. name: "Third Dimension",
  9001. height: math.unit(40, "meters")
  9002. },
  9003. {
  9004. name: "Normal",
  9005. height: math.unit(660, "feet"),
  9006. default: true
  9007. },
  9008. {
  9009. name: "Megamacro",
  9010. height: math.unit(10, "miles")
  9011. },
  9012. {
  9013. name: "Planetary Launch",
  9014. height: math.unit(500, "miles")
  9015. },
  9016. {
  9017. name: "Interstellar",
  9018. height: math.unit(1e9, "miles")
  9019. },
  9020. {
  9021. name: "Leaving the Universe",
  9022. height: math.unit(1, "gigaparsec")
  9023. },
  9024. {
  9025. name: "Travelling Universes",
  9026. height: math.unit(30e15, "parsecs")
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(6, "feet"),
  9035. weight: math.unit(150, "lb"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/odyssey/front.svg",
  9039. extra: 1782 / 1582,
  9040. bottom: 0.01
  9041. }
  9042. },
  9043. side: {
  9044. height: math.unit(5.7, "feet"),
  9045. weight: math.unit(140, "lb"),
  9046. name: "Side",
  9047. image: {
  9048. source: "./media/characters/odyssey/side.svg",
  9049. extra: 6462 / 5700
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(5 + 4 / 12, "feet")
  9057. },
  9058. {
  9059. name: "Macro",
  9060. height: math.unit(1, "km")
  9061. },
  9062. {
  9063. name: "Megamacro",
  9064. height: math.unit(3000, "km")
  9065. },
  9066. {
  9067. name: "Gigamacro",
  9068. height: math.unit(1, "AU"),
  9069. default: true
  9070. },
  9071. {
  9072. name: "Omniversal",
  9073. height: math.unit(100e14, "lightyears")
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9079. {
  9080. front: {
  9081. height: math.unit(6, "feet"),
  9082. weight: math.unit(300, "lb"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/mekuto/front.svg",
  9086. extra: 921 / 832,
  9087. bottom: 0.03
  9088. }
  9089. },
  9090. hand: {
  9091. height: math.unit(6 / 10.24, "feet"),
  9092. name: "Hand",
  9093. image: {
  9094. source: "./media/characters/mekuto/hand.svg"
  9095. }
  9096. },
  9097. foot: {
  9098. height: math.unit(6 / 5.05, "feet"),
  9099. name: "Foot",
  9100. image: {
  9101. source: "./media/characters/mekuto/foot.svg"
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Minimicro",
  9108. height: math.unit(0.2, "inches")
  9109. },
  9110. {
  9111. name: "Micro",
  9112. height: math.unit(1.5, "inches")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(5 + 11 / 12, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Minimacro",
  9121. height: math.unit(17 + 9 / 12, "feet")
  9122. },
  9123. {
  9124. name: "Macro",
  9125. height: math.unit(177.5, "feet")
  9126. },
  9127. {
  9128. name: "Megamacro",
  9129. height: math.unit(152, "miles")
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(6.5, "inches"),
  9138. weight: math.unit(13, "oz"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/dafydd-tomos/front.svg",
  9142. extra: 2990 / 2603,
  9143. bottom: 0.03
  9144. }
  9145. },
  9146. },
  9147. [
  9148. {
  9149. name: "Micro",
  9150. height: math.unit(6.5, "inches"),
  9151. default: true
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(6, "feet"),
  9160. weight: math.unit(150, "lb"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/splinter/front.svg",
  9164. extra: 2990 / 2882,
  9165. bottom: 0.04
  9166. }
  9167. },
  9168. back: {
  9169. height: math.unit(6, "feet"),
  9170. weight: math.unit(150, "lb"),
  9171. name: "Back",
  9172. image: {
  9173. source: "./media/characters/splinter/back.svg",
  9174. extra: 2990 / 2882,
  9175. bottom: 0.04
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Normal",
  9182. height: math.unit(6, "feet")
  9183. },
  9184. {
  9185. name: "Macro",
  9186. height: math.unit(230, "meters"),
  9187. default: true
  9188. },
  9189. ]
  9190. ))
  9191. characterMakers.push(() => makeCharacter(
  9192. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9193. {
  9194. front: {
  9195. height: math.unit(4 + 10 / 12, "feet"),
  9196. weight: math.unit(480, "lb"),
  9197. name: "Front",
  9198. image: {
  9199. source: "./media/characters/snow-gabumon/front.svg",
  9200. extra: 1140 / 963,
  9201. bottom: 0.058
  9202. }
  9203. },
  9204. back: {
  9205. height: math.unit(4 + 10 / 12, "feet"),
  9206. weight: math.unit(480, "lb"),
  9207. name: "Back",
  9208. image: {
  9209. source: "./media/characters/snow-gabumon/back.svg",
  9210. extra: 1115 / 962,
  9211. bottom: 0.041
  9212. }
  9213. },
  9214. frontUndresed: {
  9215. height: math.unit(4 + 10 / 12, "feet"),
  9216. weight: math.unit(480, "lb"),
  9217. name: "Front (Undressed)",
  9218. image: {
  9219. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9220. extra: 1061 / 960,
  9221. bottom: 0.045
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Micro",
  9228. height: math.unit(1, "inch")
  9229. },
  9230. {
  9231. name: "Normal",
  9232. height: math.unit(4 + 10 / 12, "feet"),
  9233. default: true
  9234. },
  9235. {
  9236. name: "Macro",
  9237. height: math.unit(200, "feet")
  9238. },
  9239. {
  9240. name: "Megamacro",
  9241. height: math.unit(120, "miles")
  9242. },
  9243. {
  9244. name: "Gigamacro",
  9245. height: math.unit(9800, "miles")
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9251. {
  9252. front: {
  9253. height: math.unit(1.7, "meters"),
  9254. weight: math.unit(140, "lb"),
  9255. name: "Front",
  9256. image: {
  9257. source: "./media/characters/moody/front.svg",
  9258. extra: 3226 / 3007,
  9259. bottom: 0.087
  9260. }
  9261. },
  9262. },
  9263. [
  9264. {
  9265. name: "Micro",
  9266. height: math.unit(1, "mm")
  9267. },
  9268. {
  9269. name: "Normal",
  9270. height: math.unit(1.7, "meters"),
  9271. default: true
  9272. },
  9273. {
  9274. name: "Macro",
  9275. height: math.unit(80, "meters")
  9276. },
  9277. {
  9278. name: "Macro+",
  9279. height: math.unit(500, "meters")
  9280. },
  9281. ]
  9282. ))
  9283. characterMakers.push(() => makeCharacter(
  9284. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9285. {
  9286. front: {
  9287. height: math.unit(6, "feet"),
  9288. weight: math.unit(150, "lb"),
  9289. name: "Front",
  9290. image: {
  9291. source: "./media/characters/zyas/front.svg",
  9292. extra: 1180 / 1120,
  9293. bottom: 0.045
  9294. }
  9295. },
  9296. },
  9297. [
  9298. {
  9299. name: "Normal",
  9300. height: math.unit(10, "feet"),
  9301. default: true
  9302. },
  9303. {
  9304. name: "Macro",
  9305. height: math.unit(500, "feet")
  9306. },
  9307. {
  9308. name: "Megamacro",
  9309. height: math.unit(5, "miles")
  9310. },
  9311. {
  9312. name: "Teramacro",
  9313. height: math.unit(150000, "miles")
  9314. },
  9315. ]
  9316. ))
  9317. characterMakers.push(() => makeCharacter(
  9318. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9319. {
  9320. front: {
  9321. height: math.unit(6, "feet"),
  9322. weight: math.unit(150, "lb"),
  9323. name: "Front",
  9324. image: {
  9325. source: "./media/characters/cuon/front.svg",
  9326. extra: 1390 / 1320,
  9327. bottom: 0.008
  9328. }
  9329. },
  9330. },
  9331. [
  9332. {
  9333. name: "Micro",
  9334. height: math.unit(3, "inches")
  9335. },
  9336. {
  9337. name: "Normal",
  9338. height: math.unit(18 + 9 / 12, "feet"),
  9339. default: true
  9340. },
  9341. {
  9342. name: "Macro",
  9343. height: math.unit(360, "feet")
  9344. },
  9345. {
  9346. name: "Megamacro",
  9347. height: math.unit(360, "miles")
  9348. },
  9349. ]
  9350. ))
  9351. characterMakers.push(() => makeCharacter(
  9352. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9353. {
  9354. front: {
  9355. height: math.unit(2.4, "meters"),
  9356. weight: math.unit(70, "kg"),
  9357. name: "Front",
  9358. image: {
  9359. source: "./media/characters/nyanuxk/front.svg",
  9360. extra: 1172 / 1084,
  9361. bottom: 0.065
  9362. }
  9363. },
  9364. side: {
  9365. height: math.unit(2.4, "meters"),
  9366. weight: math.unit(70, "kg"),
  9367. name: "Side",
  9368. image: {
  9369. source: "./media/characters/nyanuxk/side.svg",
  9370. extra: 1190 / 1132,
  9371. bottom: 0.007
  9372. }
  9373. },
  9374. back: {
  9375. height: math.unit(2.4, "meters"),
  9376. weight: math.unit(70, "kg"),
  9377. name: "Back",
  9378. image: {
  9379. source: "./media/characters/nyanuxk/back.svg",
  9380. extra: 1200 / 1141,
  9381. bottom: 0.015
  9382. }
  9383. },
  9384. foot: {
  9385. height: math.unit(0.52, "meters"),
  9386. name: "Foot",
  9387. image: {
  9388. source: "./media/characters/nyanuxk/foot.svg"
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Micro",
  9395. height: math.unit(2, "cm")
  9396. },
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(2.4, "meters"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Smaller Macro",
  9404. height: math.unit(120, "meters")
  9405. },
  9406. {
  9407. name: "Bigger Macro",
  9408. height: math.unit(1.2, "km")
  9409. },
  9410. {
  9411. name: "Megamacro",
  9412. height: math.unit(15, "kilometers")
  9413. },
  9414. {
  9415. name: "Gigamacro",
  9416. height: math.unit(2000, "km")
  9417. },
  9418. {
  9419. name: "Teramacro",
  9420. height: math.unit(500000, "km")
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9426. {
  9427. side: {
  9428. height: math.unit(6, "feet"),
  9429. name: "Side",
  9430. image: {
  9431. source: "./media/characters/ailbhe/side.svg",
  9432. extra: 757 / 464,
  9433. bottom: 0.041
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(1.07, "meters"),
  9441. default: true
  9442. },
  9443. ]
  9444. ))
  9445. characterMakers.push(() => makeCharacter(
  9446. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9447. {
  9448. front: {
  9449. height: math.unit(6, "feet"),
  9450. weight: math.unit(120, "kg"),
  9451. name: "Front",
  9452. image: {
  9453. source: "./media/characters/zevulfius/front.svg",
  9454. extra: 965 / 903
  9455. }
  9456. },
  9457. side: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(120, "kg"),
  9460. name: "Side",
  9461. image: {
  9462. source: "./media/characters/zevulfius/side.svg",
  9463. extra: 939 / 900
  9464. }
  9465. },
  9466. back: {
  9467. height: math.unit(6, "feet"),
  9468. weight: math.unit(120, "kg"),
  9469. name: "Back",
  9470. image: {
  9471. source: "./media/characters/zevulfius/back.svg",
  9472. extra: 918 / 854,
  9473. bottom: 0.005
  9474. }
  9475. },
  9476. foot: {
  9477. height: math.unit(6 / 3.72, "feet"),
  9478. name: "Foot",
  9479. image: {
  9480. source: "./media/characters/zevulfius/foot.svg"
  9481. }
  9482. },
  9483. },
  9484. [
  9485. {
  9486. name: "Macro",
  9487. height: math.unit(750, "meters")
  9488. },
  9489. {
  9490. name: "Megamacro",
  9491. height: math.unit(20, "km"),
  9492. default: true
  9493. },
  9494. {
  9495. name: "Gigamacro",
  9496. height: math.unit(2000, "km")
  9497. },
  9498. {
  9499. name: "Teramacro",
  9500. height: math.unit(250000, "km")
  9501. },
  9502. ]
  9503. ))
  9504. characterMakers.push(() => makeCharacter(
  9505. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9506. {
  9507. front: {
  9508. height: math.unit(100, "feet"),
  9509. weight: math.unit(350, "kg"),
  9510. name: "Front",
  9511. image: {
  9512. source: "./media/characters/rikes/front.svg",
  9513. extra: 1565 / 1483,
  9514. bottom: 0.017
  9515. }
  9516. },
  9517. },
  9518. [
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(100, "feet"),
  9522. default: true
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9528. {
  9529. anthro: {
  9530. height: math.unit(8, "feet"),
  9531. weight: math.unit(120, "kg"),
  9532. name: "Anthro",
  9533. image: {
  9534. source: "./media/characters/adam-silver-mane/anthro.svg",
  9535. extra: 5743 / 5339,
  9536. bottom: 0.07
  9537. }
  9538. },
  9539. taur: {
  9540. height: math.unit(16, "feet"),
  9541. weight: math.unit(1500, "kg"),
  9542. name: "Taur",
  9543. image: {
  9544. source: "./media/characters/adam-silver-mane/taur.svg",
  9545. extra: 1713 / 1571,
  9546. bottom: 0.01
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Normal",
  9553. height: math.unit(8, "feet")
  9554. },
  9555. {
  9556. name: "Minimacro",
  9557. height: math.unit(80, "feet")
  9558. },
  9559. {
  9560. name: "Macro",
  9561. height: math.unit(800, "feet"),
  9562. default: true
  9563. },
  9564. {
  9565. name: "Megamacro",
  9566. height: math.unit(8000, "feet")
  9567. },
  9568. {
  9569. name: "Gigamacro",
  9570. height: math.unit(800, "miles")
  9571. },
  9572. {
  9573. name: "Teramacro",
  9574. height: math.unit(80000, "miles")
  9575. },
  9576. {
  9577. name: "Celestial",
  9578. height: math.unit(8e6, "miles")
  9579. },
  9580. {
  9581. name: "Star Dragon",
  9582. height: math.unit(800000, "parsecs")
  9583. },
  9584. {
  9585. name: "Godly",
  9586. height: math.unit(800, "teraparsecs")
  9587. },
  9588. ]
  9589. ))
  9590. characterMakers.push(() => makeCharacter(
  9591. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9592. {
  9593. front: {
  9594. height: math.unit(6, "feet"),
  9595. weight: math.unit(150, "lb"),
  9596. name: "Front",
  9597. image: {
  9598. source: "./media/characters/ky'owin/front.svg",
  9599. extra: 3888 / 3068,
  9600. bottom: 0.015
  9601. }
  9602. },
  9603. },
  9604. [
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(6 + 8 / 12, "feet")
  9608. },
  9609. {
  9610. name: "Large",
  9611. height: math.unit(68, "feet")
  9612. },
  9613. {
  9614. name: "Macro",
  9615. height: math.unit(132, "feet")
  9616. },
  9617. {
  9618. name: "Macro+",
  9619. height: math.unit(340, "feet")
  9620. },
  9621. {
  9622. name: "Macro++",
  9623. height: math.unit(680, "feet"),
  9624. default: true
  9625. },
  9626. {
  9627. name: "Megamacro",
  9628. height: math.unit(1, "mile")
  9629. },
  9630. {
  9631. name: "Megamacro+",
  9632. height: math.unit(10, "miles")
  9633. },
  9634. ]
  9635. ))
  9636. characterMakers.push(() => makeCharacter(
  9637. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9638. {
  9639. front: {
  9640. height: math.unit(4, "feet"),
  9641. weight: math.unit(50, "lb"),
  9642. name: "Front",
  9643. image: {
  9644. source: "./media/characters/mal/front.svg",
  9645. extra: 785 / 724,
  9646. bottom: 0.07
  9647. }
  9648. },
  9649. },
  9650. [
  9651. {
  9652. name: "Micro",
  9653. height: math.unit(4, "inches")
  9654. },
  9655. {
  9656. name: "Normal",
  9657. height: math.unit(4, "feet"),
  9658. default: true
  9659. },
  9660. {
  9661. name: "Macro",
  9662. height: math.unit(200, "feet")
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9668. {
  9669. front: {
  9670. height: math.unit(6, "feet"),
  9671. weight: math.unit(150, "lb"),
  9672. name: "Front",
  9673. image: {
  9674. source: "./media/characters/jordan-deware/front.svg",
  9675. extra: 1191 / 1012
  9676. }
  9677. },
  9678. },
  9679. [
  9680. {
  9681. name: "Nano",
  9682. height: math.unit(0.01, "mm")
  9683. },
  9684. {
  9685. name: "Minimicro",
  9686. height: math.unit(1, "mm")
  9687. },
  9688. {
  9689. name: "Micro",
  9690. height: math.unit(0.5, "inches")
  9691. },
  9692. {
  9693. name: "Normal",
  9694. height: math.unit(4, "feet"),
  9695. default: true
  9696. },
  9697. {
  9698. name: "Minimacro",
  9699. height: math.unit(40, "meters")
  9700. },
  9701. {
  9702. name: "Small Macro",
  9703. height: math.unit(400, "meters")
  9704. },
  9705. {
  9706. name: "Macro",
  9707. height: math.unit(4, "miles")
  9708. },
  9709. {
  9710. name: "Megamacro",
  9711. height: math.unit(40, "miles")
  9712. },
  9713. {
  9714. name: "Megamacro+",
  9715. height: math.unit(400, "miles")
  9716. },
  9717. {
  9718. name: "Gigamacro",
  9719. height: math.unit(400000, "miles")
  9720. },
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9725. {
  9726. side: {
  9727. height: math.unit(6, "feet"),
  9728. weight: math.unit(150, "lb"),
  9729. name: "Side",
  9730. image: {
  9731. source: "./media/characters/kimiko/side.svg",
  9732. extra: 600 / 358
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(15, "feet"),
  9740. default: true
  9741. },
  9742. {
  9743. name: "Macro",
  9744. height: math.unit(220, "feet")
  9745. },
  9746. {
  9747. name: "Macro+",
  9748. height: math.unit(1450, "feet")
  9749. },
  9750. {
  9751. name: "Megamacro",
  9752. height: math.unit(11500, "feet")
  9753. },
  9754. {
  9755. name: "Gigamacro",
  9756. height: math.unit(9500, "miles")
  9757. },
  9758. {
  9759. name: "Teramacro",
  9760. height: math.unit(2208005005, "miles")
  9761. },
  9762. {
  9763. name: "Examacro",
  9764. height: math.unit(2750, "parsecs")
  9765. },
  9766. {
  9767. name: "Zettamacro",
  9768. height: math.unit(101500, "parsecs")
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9774. {
  9775. front: {
  9776. height: math.unit(6, "feet"),
  9777. weight: math.unit(70, "kg"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/andrew-sleepy/front.svg"
  9781. }
  9782. },
  9783. side: {
  9784. height: math.unit(6, "feet"),
  9785. weight: math.unit(70, "kg"),
  9786. name: "Side",
  9787. image: {
  9788. source: "./media/characters/andrew-sleepy/side.svg"
  9789. }
  9790. },
  9791. },
  9792. [
  9793. {
  9794. name: "Micro",
  9795. height: math.unit(1, "mm"),
  9796. default: true
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(6, "feet"),
  9805. weight: math.unit(150, "lb"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/judio/front.svg",
  9809. extra: 1258 / 1110
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(5 + 6 / 12, "feet")
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(1000, "feet"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Megamacro",
  9825. height: math.unit(10, "miles")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(68, "kg"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/nomaxice/front.svg",
  9838. extra: 1498 / 1073,
  9839. bottom: 0.075
  9840. }
  9841. },
  9842. foot: {
  9843. height: math.unit(1.1, "feet"),
  9844. name: "Foot",
  9845. image: {
  9846. source: "./media/characters/nomaxice/foot.svg"
  9847. }
  9848. },
  9849. },
  9850. [
  9851. {
  9852. name: "Micro",
  9853. height: math.unit(8, "cm")
  9854. },
  9855. {
  9856. name: "Norm",
  9857. height: math.unit(1.82, "m")
  9858. },
  9859. {
  9860. name: "Norm+",
  9861. height: math.unit(8.8, "feet")
  9862. },
  9863. {
  9864. name: "Big",
  9865. height: math.unit(8, "meters"),
  9866. default: true
  9867. },
  9868. {
  9869. name: "Macro",
  9870. height: math.unit(18, "meters")
  9871. },
  9872. {
  9873. name: "Macro+",
  9874. height: math.unit(88, "meters")
  9875. },
  9876. ]
  9877. ))
  9878. characterMakers.push(() => makeCharacter(
  9879. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9880. {
  9881. front: {
  9882. height: math.unit(12, "feet"),
  9883. weight: math.unit(1.5, "tons"),
  9884. name: "Front",
  9885. image: {
  9886. source: "./media/characters/dydros/front.svg",
  9887. extra: 863 / 800,
  9888. bottom: 0.015
  9889. }
  9890. },
  9891. back: {
  9892. height: math.unit(12, "feet"),
  9893. weight: math.unit(1.5, "tons"),
  9894. name: "Back",
  9895. image: {
  9896. source: "./media/characters/dydros/back.svg",
  9897. extra: 900 / 843,
  9898. bottom: 0.005
  9899. }
  9900. },
  9901. },
  9902. [
  9903. {
  9904. name: "Normal",
  9905. height: math.unit(12, "feet"),
  9906. default: true
  9907. },
  9908. ]
  9909. ))
  9910. characterMakers.push(() => makeCharacter(
  9911. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9912. {
  9913. front: {
  9914. height: math.unit(6, "feet"),
  9915. weight: math.unit(100, "kg"),
  9916. name: "Front",
  9917. image: {
  9918. source: "./media/characters/riggi/front.svg",
  9919. extra: 5787 / 5303
  9920. }
  9921. },
  9922. hyper: {
  9923. height: math.unit(6 * 5 / 3, "feet"),
  9924. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9925. name: "Hyper",
  9926. image: {
  9927. source: "./media/characters/riggi/hyper.svg",
  9928. extra: 3595 / 3485
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Small Macro",
  9935. height: math.unit(50, "feet")
  9936. },
  9937. {
  9938. name: "Default",
  9939. height: math.unit(200, "feet"),
  9940. default: true
  9941. },
  9942. {
  9943. name: "Loom",
  9944. height: math.unit(10000, "feet")
  9945. },
  9946. {
  9947. name: "Cruising Altitude",
  9948. height: math.unit(30000, "feet")
  9949. },
  9950. {
  9951. name: "Megamacro",
  9952. height: math.unit(100, "miles")
  9953. },
  9954. {
  9955. name: "Continent Sized",
  9956. height: math.unit(2800, "miles")
  9957. },
  9958. {
  9959. name: "Earth Sized",
  9960. height: math.unit(8000, "miles")
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(6, "feet"),
  9969. weight: math.unit(250, "lb"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/alexi/front.svg",
  9973. extra: 3483 / 3291,
  9974. bottom: 0.04
  9975. }
  9976. },
  9977. back: {
  9978. height: math.unit(6, "feet"),
  9979. weight: math.unit(250, "lb"),
  9980. name: "Back",
  9981. image: {
  9982. source: "./media/characters/alexi/back.svg",
  9983. extra: 3533 / 3356,
  9984. bottom: 0.021
  9985. }
  9986. },
  9987. frontTransforming: {
  9988. height: math.unit(8.58, "feet"),
  9989. weight: math.unit(1300, "lb"),
  9990. name: "Transforming",
  9991. image: {
  9992. source: "./media/characters/alexi/front-transforming.svg",
  9993. extra: 437 / 409,
  9994. bottom: 19 / 458.66
  9995. }
  9996. },
  9997. frontTransformed: {
  9998. height: math.unit(12.5, "feet"),
  9999. weight: math.unit(4000, "lb"),
  10000. name: "Transformed",
  10001. image: {
  10002. source: "./media/characters/alexi/front-transformed.svg",
  10003. extra: 639 / 614,
  10004. bottom: 30.55 / 671
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(3, "meters"),
  10012. default: true
  10013. },
  10014. {
  10015. name: "Minimacro",
  10016. height: math.unit(30, "meters")
  10017. },
  10018. {
  10019. name: "Macro",
  10020. height: math.unit(500, "meters")
  10021. },
  10022. {
  10023. name: "Megamacro",
  10024. height: math.unit(9000, "km")
  10025. },
  10026. {
  10027. name: "Teramacro",
  10028. height: math.unit(384000, "km")
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10034. {
  10035. front: {
  10036. height: math.unit(6, "feet"),
  10037. weight: math.unit(150, "lb"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/kayroo/front.svg",
  10041. extra: 1153 / 1038,
  10042. bottom: 0.06
  10043. }
  10044. },
  10045. foot: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(150, "lb"),
  10048. name: "Foot",
  10049. image: {
  10050. source: "./media/characters/kayroo/foot.svg"
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Normal",
  10057. height: math.unit(8, "feet"),
  10058. default: true
  10059. },
  10060. {
  10061. name: "Minimacro",
  10062. height: math.unit(250, "feet")
  10063. },
  10064. {
  10065. name: "Macro",
  10066. height: math.unit(2800, "feet")
  10067. },
  10068. {
  10069. name: "Megamacro",
  10070. height: math.unit(5200, "feet")
  10071. },
  10072. {
  10073. name: "Gigamacro",
  10074. height: math.unit(27000, "feet")
  10075. },
  10076. {
  10077. name: "Omega",
  10078. height: math.unit(45000, "feet")
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10084. {
  10085. front: {
  10086. height: math.unit(18, "feet"),
  10087. weight: math.unit(5800, "lb"),
  10088. name: "Front",
  10089. image: {
  10090. source: "./media/characters/rhys/front.svg",
  10091. extra: 3386 / 3090,
  10092. bottom: 0.07
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(18, "feet"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Working Size",
  10104. height: math.unit(200, "feet")
  10105. },
  10106. {
  10107. name: "Demolition Size",
  10108. height: math.unit(2000, "feet")
  10109. },
  10110. {
  10111. name: "Maximum Licensed Size",
  10112. height: math.unit(5, "miles")
  10113. },
  10114. {
  10115. name: "Maximum Observed Size",
  10116. height: math.unit(10, "yottameters")
  10117. },
  10118. ]
  10119. ))
  10120. characterMakers.push(() => makeCharacter(
  10121. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10122. {
  10123. front: {
  10124. height: math.unit(6, "feet"),
  10125. weight: math.unit(250, "lb"),
  10126. name: "Front",
  10127. image: {
  10128. source: "./media/characters/toto/front.svg",
  10129. extra: 527 / 479,
  10130. bottom: 0.05
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Micro",
  10137. height: math.unit(3, "feet")
  10138. },
  10139. {
  10140. name: "Normal",
  10141. height: math.unit(10, "feet")
  10142. },
  10143. {
  10144. name: "Macro",
  10145. height: math.unit(150, "feet"),
  10146. default: true
  10147. },
  10148. {
  10149. name: "Megamacro",
  10150. height: math.unit(1200, "feet")
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "King", species: ["lion"], tags: ["anthro"] },
  10156. {
  10157. back: {
  10158. height: math.unit(6, "feet"),
  10159. weight: math.unit(150, "lb"),
  10160. name: "Back",
  10161. image: {
  10162. source: "./media/characters/king/back.svg"
  10163. }
  10164. },
  10165. },
  10166. [
  10167. {
  10168. name: "Micro",
  10169. height: math.unit(2, "inches")
  10170. },
  10171. {
  10172. name: "Normal",
  10173. height: math.unit(8, "feet")
  10174. },
  10175. {
  10176. name: "Macro",
  10177. height: math.unit(200, "feet"),
  10178. default: true
  10179. },
  10180. {
  10181. name: "Megamacro",
  10182. height: math.unit(50, "miles")
  10183. },
  10184. ]
  10185. ))
  10186. characterMakers.push(() => makeCharacter(
  10187. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10188. {
  10189. anthro: {
  10190. height: math.unit(6 + 5 / 12, "feet"),
  10191. weight: math.unit(280, "lb"),
  10192. name: "Anthro",
  10193. image: {
  10194. source: "./media/characters/cordite/anthro.svg",
  10195. extra: 1986 / 1905,
  10196. bottom: 0.025
  10197. }
  10198. },
  10199. feral: {
  10200. height: math.unit(2, "feet"),
  10201. weight: math.unit(90, "lb"),
  10202. name: "Feral",
  10203. image: {
  10204. source: "./media/characters/cordite/feral.svg",
  10205. extra: 1260 / 755,
  10206. bottom: 0.05
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(6 + 5 / 12, "feet"),
  10214. default: true
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(6, "feet"),
  10223. weight: math.unit(150, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/pianostrong/front.svg",
  10227. extra: 6577 / 6254,
  10228. bottom: 0.02
  10229. }
  10230. },
  10231. side: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(150, "lb"),
  10234. name: "Side",
  10235. image: {
  10236. source: "./media/characters/pianostrong/side.svg",
  10237. extra: 6106 / 5730
  10238. }
  10239. },
  10240. back: {
  10241. height: math.unit(6, "feet"),
  10242. weight: math.unit(150, "lb"),
  10243. name: "Back",
  10244. image: {
  10245. source: "./media/characters/pianostrong/back.svg",
  10246. extra: 6085 / 5733,
  10247. bottom: 0.01
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Macro",
  10254. height: math.unit(100, "feet")
  10255. },
  10256. {
  10257. name: "Macro+",
  10258. height: math.unit(300, "feet"),
  10259. default: true
  10260. },
  10261. {
  10262. name: "Macro++",
  10263. height: math.unit(1000, "feet")
  10264. },
  10265. ]
  10266. ))
  10267. characterMakers.push(() => makeCharacter(
  10268. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10269. {
  10270. front: {
  10271. height: math.unit(6, "feet"),
  10272. weight: math.unit(150, "lb"),
  10273. name: "Front",
  10274. image: {
  10275. source: "./media/characters/kona/front.svg",
  10276. extra: 2960 / 2629,
  10277. bottom: 0.005
  10278. }
  10279. },
  10280. },
  10281. [
  10282. {
  10283. name: "Normal",
  10284. height: math.unit(11 + 8 / 12, "feet")
  10285. },
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(850, "feet"),
  10289. default: true
  10290. },
  10291. {
  10292. name: "Macro+",
  10293. height: math.unit(1.5, "km"),
  10294. default: true
  10295. },
  10296. {
  10297. name: "Megamacro",
  10298. height: math.unit(80, "miles")
  10299. },
  10300. {
  10301. name: "Gigamacro",
  10302. height: math.unit(3500, "miles")
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10308. {
  10309. side: {
  10310. height: math.unit(1.9, "meters"),
  10311. weight: math.unit(326, "kg"),
  10312. name: "Side",
  10313. image: {
  10314. source: "./media/characters/levi/side.svg",
  10315. extra: 1704 / 1334,
  10316. bottom: 0.02
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(1.9, "meters"),
  10324. default: true
  10325. },
  10326. {
  10327. name: "Macro",
  10328. height: math.unit(20, "meters")
  10329. },
  10330. {
  10331. name: "Macro+",
  10332. height: math.unit(200, "meters")
  10333. },
  10334. {
  10335. name: "Megamacro",
  10336. height: math.unit(2, "km")
  10337. },
  10338. {
  10339. name: "Megamacro+",
  10340. height: math.unit(20, "km")
  10341. },
  10342. {
  10343. name: "Gigamacro",
  10344. height: math.unit(2500, "km")
  10345. },
  10346. {
  10347. name: "Gigamacro+",
  10348. height: math.unit(120000, "km")
  10349. },
  10350. {
  10351. name: "Teramacro",
  10352. height: math.unit(7.77e6, "km")
  10353. },
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10358. {
  10359. front: {
  10360. height: math.unit(6 + 4 / 12, "feet"),
  10361. weight: math.unit(188, "lb"),
  10362. name: "Front",
  10363. image: {
  10364. source: "./media/characters/bmc/front.svg",
  10365. extra: 1067 / 1022,
  10366. bottom: 0.047
  10367. }
  10368. },
  10369. },
  10370. [
  10371. {
  10372. name: "Human-sized",
  10373. height: math.unit(6 + 4 / 12, "feet")
  10374. },
  10375. {
  10376. name: "Small",
  10377. height: math.unit(250, "feet")
  10378. },
  10379. {
  10380. name: "Normal",
  10381. height: math.unit(1250, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Good Day",
  10386. height: math.unit(88, "miles")
  10387. },
  10388. {
  10389. name: "Largest Measured Size",
  10390. height: math.unit(11.2e6, "lightyears")
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(20, "feet"),
  10399. weight: math.unit(2016, "kg"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/sven-the-kaiju/front.svg",
  10403. extra: 1479 / 1449,
  10404. bottom: 0.05
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Fairy",
  10411. height: math.unit(6, "inches")
  10412. },
  10413. {
  10414. name: "Normal",
  10415. height: math.unit(20, "feet"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Rampage",
  10420. height: math.unit(200, "feet")
  10421. },
  10422. {
  10423. name: "Archfey Forest Guardian",
  10424. height: math.unit(1, "mile")
  10425. },
  10426. ]
  10427. ))
  10428. characterMakers.push(() => makeCharacter(
  10429. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10430. {
  10431. front: {
  10432. height: math.unit(4, "meters"),
  10433. weight: math.unit(2, "tons"),
  10434. name: "Front",
  10435. image: {
  10436. source: "./media/characters/marik/front.svg",
  10437. extra: 1057 / 1003,
  10438. bottom: 0.08
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Normal",
  10445. height: math.unit(4, "meters"),
  10446. default: true
  10447. },
  10448. {
  10449. name: "Macro",
  10450. height: math.unit(20, "meters")
  10451. },
  10452. {
  10453. name: "Megamacro",
  10454. height: math.unit(50, "km")
  10455. },
  10456. {
  10457. name: "Gigamacro",
  10458. height: math.unit(100, "km")
  10459. },
  10460. {
  10461. name: "Alpha Macro",
  10462. height: math.unit(7.88e7, "yottameters")
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(110, "lb"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/mel/front.svg",
  10475. extra: 736 / 617,
  10476. bottom: 0.017
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Pico",
  10483. height: math.unit(3, "pm")
  10484. },
  10485. {
  10486. name: "Nano",
  10487. height: math.unit(3, "nm")
  10488. },
  10489. {
  10490. name: "Micro",
  10491. height: math.unit(0.3, "mm"),
  10492. default: true
  10493. },
  10494. {
  10495. name: "Micro+",
  10496. height: math.unit(3, "mm")
  10497. },
  10498. {
  10499. name: "Normal",
  10500. height: math.unit(5 + 10.5 / 12, "feet")
  10501. },
  10502. ]
  10503. ))
  10504. characterMakers.push(() => makeCharacter(
  10505. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10506. {
  10507. kaiju: {
  10508. height: math.unit(1.75, "meters"),
  10509. weight: math.unit(55, "kg"),
  10510. name: "Kaiju",
  10511. image: {
  10512. source: "./media/characters/lykonous/kaiju.svg",
  10513. extra: 1055 / 946,
  10514. bottom: 0.135
  10515. }
  10516. },
  10517. },
  10518. [
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(2.5, "meters"),
  10522. default: true
  10523. },
  10524. {
  10525. name: "Kaiju Dragon",
  10526. height: math.unit(60, "meters")
  10527. },
  10528. {
  10529. name: "Mega Kaiju",
  10530. height: math.unit(120, "km")
  10531. },
  10532. {
  10533. name: "Giga Kaiju",
  10534. height: math.unit(200, "megameters")
  10535. },
  10536. {
  10537. name: "Terra Kaiju",
  10538. height: math.unit(400, "gigameters")
  10539. },
  10540. {
  10541. name: "Kaiju Dragon God",
  10542. height: math.unit(13000, "exaparsecs")
  10543. },
  10544. ]
  10545. ))
  10546. characterMakers.push(() => makeCharacter(
  10547. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10548. {
  10549. front: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(150, "lb"),
  10552. name: "Front",
  10553. image: {
  10554. source: "./media/characters/blü/front.svg",
  10555. extra: 1883 / 1564,
  10556. bottom: 0.031
  10557. }
  10558. },
  10559. },
  10560. [
  10561. {
  10562. name: "Normal",
  10563. height: math.unit(13, "feet"),
  10564. default: true
  10565. },
  10566. {
  10567. name: "Big Boi",
  10568. height: math.unit(150, "meters")
  10569. },
  10570. {
  10571. name: "Mini Stomper",
  10572. height: math.unit(300, "meters")
  10573. },
  10574. {
  10575. name: "Macro",
  10576. height: math.unit(1000, "meters")
  10577. },
  10578. {
  10579. name: "Megamacro",
  10580. height: math.unit(11000, "meters")
  10581. },
  10582. {
  10583. name: "Gigamacro",
  10584. height: math.unit(11000, "km")
  10585. },
  10586. {
  10587. name: "Teramacro",
  10588. height: math.unit(420000, "km")
  10589. },
  10590. {
  10591. name: "Examacro",
  10592. height: math.unit(120, "parsecs")
  10593. },
  10594. {
  10595. name: "God Tho",
  10596. height: math.unit(98000000000, "parsecs")
  10597. },
  10598. ]
  10599. ))
  10600. characterMakers.push(() => makeCharacter(
  10601. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10602. {
  10603. taurFront: {
  10604. height: math.unit(6, "feet"),
  10605. weight: math.unit(200, "lb"),
  10606. name: "Taur (Front)",
  10607. image: {
  10608. source: "./media/characters/scales/taur-front.svg",
  10609. extra: 1,
  10610. bottom: 0.05
  10611. }
  10612. },
  10613. taurBack: {
  10614. height: math.unit(6, "feet"),
  10615. weight: math.unit(200, "lb"),
  10616. name: "Taur (Back)",
  10617. image: {
  10618. source: "./media/characters/scales/taur-back.svg",
  10619. extra: 1,
  10620. bottom: 0.08
  10621. }
  10622. },
  10623. anthro: {
  10624. height: math.unit(6 * 7 / 12, "feet"),
  10625. weight: math.unit(100, "lb"),
  10626. name: "Anthro",
  10627. image: {
  10628. source: "./media/characters/scales/anthro.svg",
  10629. extra: 1,
  10630. bottom: 0.06
  10631. }
  10632. },
  10633. },
  10634. [
  10635. {
  10636. name: "Normal",
  10637. height: math.unit(12, "feet"),
  10638. default: true
  10639. },
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10644. {
  10645. front: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(150, "lb"),
  10648. name: "Front",
  10649. image: {
  10650. source: "./media/characters/koragos/front.svg",
  10651. extra: 841 / 794,
  10652. bottom: 0.035
  10653. }
  10654. },
  10655. back: {
  10656. height: math.unit(6, "feet"),
  10657. weight: math.unit(150, "lb"),
  10658. name: "Back",
  10659. image: {
  10660. source: "./media/characters/koragos/back.svg",
  10661. extra: 841 / 810,
  10662. bottom: 0.022
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Normal",
  10669. height: math.unit(6 + 11 / 12, "feet"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Macro",
  10674. height: math.unit(490, "feet")
  10675. },
  10676. {
  10677. name: "Megamacro",
  10678. height: math.unit(10, "miles")
  10679. },
  10680. {
  10681. name: "Gigamacro",
  10682. height: math.unit(50, "miles")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10688. {
  10689. front: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(250, "lb"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/xylrem/front.svg",
  10695. extra: 3323 / 3050,
  10696. bottom: 0.065
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Micro",
  10703. height: math.unit(4, "feet")
  10704. },
  10705. {
  10706. name: "Normal",
  10707. height: math.unit(16, "feet"),
  10708. default: true
  10709. },
  10710. {
  10711. name: "Macro",
  10712. height: math.unit(2720, "feet")
  10713. },
  10714. {
  10715. name: "Megamacro",
  10716. height: math.unit(25000, "miles")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10722. {
  10723. front: {
  10724. height: math.unit(8, "feet"),
  10725. weight: math.unit(250, "kg"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/ikideru/front.svg",
  10729. extra: 930 / 870,
  10730. bottom: 0.087
  10731. }
  10732. },
  10733. back: {
  10734. height: math.unit(8, "feet"),
  10735. weight: math.unit(250, "kg"),
  10736. name: "Back",
  10737. image: {
  10738. source: "./media/characters/ikideru/back.svg",
  10739. extra: 919 / 852,
  10740. bottom: 0.055
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Rare",
  10747. height: math.unit(8, "feet"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Playful Loom",
  10752. height: math.unit(80, "feet")
  10753. },
  10754. {
  10755. name: "City Leaner",
  10756. height: math.unit(230, "feet")
  10757. },
  10758. {
  10759. name: "Megamacro",
  10760. height: math.unit(2500, "feet")
  10761. },
  10762. {
  10763. name: "Gigamacro",
  10764. height: math.unit(26400, "feet")
  10765. },
  10766. {
  10767. name: "Tectonic Shifter",
  10768. height: math.unit(1.7, "megameters")
  10769. },
  10770. {
  10771. name: "Planet Carer",
  10772. height: math.unit(21, "megameters")
  10773. },
  10774. {
  10775. name: "God",
  10776. height: math.unit(11157.22, "parsecs")
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10782. {
  10783. front: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(120, "lb"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/neo/front.svg"
  10789. }
  10790. },
  10791. },
  10792. [
  10793. {
  10794. name: "Micro",
  10795. height: math.unit(2, "inches"),
  10796. default: true
  10797. },
  10798. {
  10799. name: "Human Size",
  10800. height: math.unit(5 + 8 / 12, "feet")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(13 + 10 / 12, "feet"),
  10809. weight: math.unit(5320, "lb"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/chauncey-chantz/front.svg",
  10813. extra: 1587 / 1435,
  10814. bottom: 0.02
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(13 + 10 / 12, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Macro",
  10826. height: math.unit(45, "feet")
  10827. },
  10828. {
  10829. name: "Megamacro",
  10830. height: math.unit(250, "miles")
  10831. },
  10832. {
  10833. name: "Planetary",
  10834. height: math.unit(10000, "miles")
  10835. },
  10836. {
  10837. name: "Galactic",
  10838. height: math.unit(40000, "parsecs")
  10839. },
  10840. {
  10841. name: "Universal",
  10842. height: math.unit(1, "yottameter")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(150, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/epifox/front.svg",
  10855. extra: 1,
  10856. bottom: 0.075
  10857. }
  10858. },
  10859. },
  10860. [
  10861. {
  10862. name: "Micro",
  10863. height: math.unit(6, "inches")
  10864. },
  10865. {
  10866. name: "Normal",
  10867. height: math.unit(12, "feet"),
  10868. default: true
  10869. },
  10870. {
  10871. name: "Macro",
  10872. height: math.unit(3810, "feet")
  10873. },
  10874. {
  10875. name: "Megamacro",
  10876. height: math.unit(500, "miles")
  10877. },
  10878. ]
  10879. ))
  10880. characterMakers.push(() => makeCharacter(
  10881. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10882. {
  10883. front: {
  10884. height: math.unit(1.8796, "m"),
  10885. weight: math.unit(230, "lb"),
  10886. name: "Front",
  10887. image: {
  10888. source: "./media/characters/colin-t/front.svg",
  10889. extra: 1272 / 1193,
  10890. bottom: 0.07
  10891. }
  10892. },
  10893. },
  10894. [
  10895. {
  10896. name: "Micro",
  10897. height: math.unit(0.571, "meters")
  10898. },
  10899. {
  10900. name: "Normal",
  10901. height: math.unit(1.8796, "meters"),
  10902. default: true
  10903. },
  10904. {
  10905. name: "Tall",
  10906. height: math.unit(4, "meters")
  10907. },
  10908. {
  10909. name: "Macro",
  10910. height: math.unit(67.241, "meters")
  10911. },
  10912. {
  10913. name: "Megamacro",
  10914. height: math.unit(371.856, "meters")
  10915. },
  10916. {
  10917. name: "Planetary",
  10918. height: math.unit(12631.5689, "km")
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(1.85, "meters"),
  10927. weight: math.unit(80, "kg"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/matvei/front.svg",
  10931. extra: 614 / 594,
  10932. bottom: 0.01
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Normal",
  10939. height: math.unit(1.85, "meters"),
  10940. default: true
  10941. },
  10942. ]
  10943. ))
  10944. characterMakers.push(() => makeCharacter(
  10945. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10946. {
  10947. front: {
  10948. height: math.unit(5 + 9 / 12, "feet"),
  10949. weight: math.unit(70, "lb"),
  10950. name: "Front",
  10951. image: {
  10952. source: "./media/characters/quincy/front.svg",
  10953. extra: 3041 / 2751
  10954. }
  10955. },
  10956. back: {
  10957. height: math.unit(5 + 9 / 12, "feet"),
  10958. weight: math.unit(70, "lb"),
  10959. name: "Back",
  10960. image: {
  10961. source: "./media/characters/quincy/back.svg",
  10962. extra: 3041 / 2751
  10963. }
  10964. },
  10965. flying: {
  10966. height: math.unit(5 + 4 / 12, "feet"),
  10967. weight: math.unit(70, "lb"),
  10968. name: "Flying",
  10969. image: {
  10970. source: "./media/characters/quincy/flying.svg",
  10971. extra: 1044 / 930
  10972. }
  10973. },
  10974. },
  10975. [
  10976. {
  10977. name: "Micro",
  10978. height: math.unit(3, "cm")
  10979. },
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(5 + 9 / 12, "feet")
  10983. },
  10984. {
  10985. name: "Macro",
  10986. height: math.unit(200, "meters"),
  10987. default: true
  10988. },
  10989. {
  10990. name: "Megamacro",
  10991. height: math.unit(1000, "meters")
  10992. },
  10993. ]
  10994. ))
  10995. characterMakers.push(() => makeCharacter(
  10996. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10997. {
  10998. front: {
  10999. height: math.unit(4 + 7 / 12, "feet"),
  11000. weight: math.unit(150, "lb"),
  11001. name: "Front",
  11002. image: {
  11003. source: "./media/characters/vanrel/front.svg",
  11004. extra: 1,
  11005. bottom: 0.02
  11006. }
  11007. },
  11008. elemental: {
  11009. height: math.unit(3, "feet"),
  11010. weight: math.unit(150, "lb"),
  11011. name: "Elemental",
  11012. image: {
  11013. source: "./media/characters/vanrel/elemental.svg",
  11014. extra: 192.3 / 162.8,
  11015. bottom: 1.79 / 194.17
  11016. }
  11017. },
  11018. side: {
  11019. height: math.unit(4 + 7 / 12, "feet"),
  11020. weight: math.unit(150, "lb"),
  11021. name: "Side",
  11022. image: {
  11023. source: "./media/characters/vanrel/side.svg",
  11024. extra: 1,
  11025. bottom: 0.025
  11026. }
  11027. },
  11028. tome: {
  11029. height: math.unit(1.35, "feet"),
  11030. weight: math.unit(10, "lb"),
  11031. name: "Vanrel's Tome",
  11032. rename: true,
  11033. image: {
  11034. source: "./media/characters/vanrel/tome.svg"
  11035. }
  11036. },
  11037. beans: {
  11038. height: math.unit(0.89, "feet"),
  11039. name: "Beans",
  11040. image: {
  11041. source: "./media/characters/vanrel/beans.svg"
  11042. }
  11043. },
  11044. },
  11045. [
  11046. {
  11047. name: "Normal",
  11048. height: math.unit(4 + 7 / 12, "feet"),
  11049. default: true
  11050. },
  11051. ]
  11052. ))
  11053. characterMakers.push(() => makeCharacter(
  11054. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11055. {
  11056. front: {
  11057. height: math.unit(7 + 5 / 12, "feet"),
  11058. weight: math.unit(150, "lb"),
  11059. name: "Front",
  11060. image: {
  11061. source: "./media/characters/kuiper-vanrel/front.svg",
  11062. extra: 1118 / 1068,
  11063. bottom: 0.09
  11064. }
  11065. },
  11066. foot: {
  11067. height: math.unit(0.55, "meters"),
  11068. name: "Foot",
  11069. image: {
  11070. source: "./media/characters/kuiper-vanrel/foot.svg",
  11071. }
  11072. },
  11073. battle: {
  11074. height: math.unit(6.824, "feet"),
  11075. weight: math.unit(150, "lb"),
  11076. name: "Battle",
  11077. image: {
  11078. source: "./media/characters/kuiper-vanrel/battle.svg",
  11079. extra: 1466 / 1327,
  11080. bottom: 29 / 1492.5
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(7 + 5 / 12, "feet"),
  11088. default: true
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(8 + 5 / 12, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/keset-vanrel/front.svg",
  11101. extra: 1150 / 1084,
  11102. bottom: 0.05
  11103. }
  11104. },
  11105. hand: {
  11106. height: math.unit(0.6, "meters"),
  11107. name: "Hand",
  11108. image: {
  11109. source: "./media/characters/keset-vanrel/hand.svg"
  11110. }
  11111. },
  11112. foot: {
  11113. height: math.unit(0.94978, "meters"),
  11114. name: "Foot",
  11115. image: {
  11116. source: "./media/characters/keset-vanrel/foot.svg"
  11117. }
  11118. },
  11119. battle: {
  11120. height: math.unit(7.408, "feet"),
  11121. weight: math.unit(150, "lb"),
  11122. name: "Battle",
  11123. image: {
  11124. source: "./media/characters/keset-vanrel/battle.svg",
  11125. extra: 1890 / 1386,
  11126. bottom: 73.28 / 1970
  11127. }
  11128. },
  11129. },
  11130. [
  11131. {
  11132. name: "Normal",
  11133. height: math.unit(8 + 5 / 12, "feet"),
  11134. default: true
  11135. },
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(150, "lb"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/neos/front.svg",
  11147. extra: 1696 / 992,
  11148. bottom: 0.14
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(54, "cm"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Macro",
  11160. height: math.unit(100, "m")
  11161. },
  11162. {
  11163. name: "Megamacro",
  11164. height: math.unit(10, "km")
  11165. },
  11166. {
  11167. name: "Megamacro+",
  11168. height: math.unit(100, "km")
  11169. },
  11170. {
  11171. name: "Gigamacro",
  11172. height: math.unit(100, "Mm")
  11173. },
  11174. {
  11175. name: "Teramacro",
  11176. height: math.unit(100, "Gm")
  11177. },
  11178. {
  11179. name: "Examacro",
  11180. height: math.unit(100, "Em")
  11181. },
  11182. {
  11183. name: "Godly",
  11184. height: math.unit(10000, "Ym")
  11185. },
  11186. {
  11187. name: "Beyond Godly",
  11188. height: math.unit(25, "multiverses")
  11189. },
  11190. ]
  11191. ))
  11192. characterMakers.push(() => makeCharacter(
  11193. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11194. {
  11195. feminine: {
  11196. height: math.unit(5, "feet"),
  11197. weight: math.unit(100, "lb"),
  11198. name: "Feminine",
  11199. image: {
  11200. source: "./media/characters/sammy-mouse/feminine.svg",
  11201. extra: 2526 / 2425,
  11202. bottom: 0.123
  11203. }
  11204. },
  11205. masculine: {
  11206. height: math.unit(5, "feet"),
  11207. weight: math.unit(100, "lb"),
  11208. name: "Masculine",
  11209. image: {
  11210. source: "./media/characters/sammy-mouse/masculine.svg",
  11211. extra: 2526 / 2425,
  11212. bottom: 0.123
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Micro",
  11219. height: math.unit(5, "inches")
  11220. },
  11221. {
  11222. name: "Normal",
  11223. height: math.unit(5, "feet"),
  11224. default: true
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(60, "feet")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(4, "feet"),
  11237. weight: math.unit(50, "lb"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/kole/front.svg",
  11241. extra: 1423 / 1303,
  11242. bottom: 0.025
  11243. }
  11244. },
  11245. back: {
  11246. height: math.unit(4, "feet"),
  11247. weight: math.unit(50, "lb"),
  11248. name: "Back",
  11249. image: {
  11250. source: "./media/characters/kole/back.svg",
  11251. extra: 1426 / 1280,
  11252. bottom: 0.02
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Normal",
  11259. height: math.unit(4, "feet"),
  11260. default: true
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(2 + 6 / 12, "feet"),
  11269. weight: math.unit(20, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/rufran/front.svg",
  11273. extra: 2041 / 1839,
  11274. bottom: 0.055
  11275. }
  11276. },
  11277. back: {
  11278. height: math.unit(2 + 6 / 12, "feet"),
  11279. weight: math.unit(20, "lb"),
  11280. name: "Back",
  11281. image: {
  11282. source: "./media/characters/rufran/back.svg",
  11283. extra: 2054 / 1839,
  11284. bottom: 0.01
  11285. }
  11286. },
  11287. hand: {
  11288. height: math.unit(0.2166, "meters"),
  11289. name: "Hand",
  11290. image: {
  11291. source: "./media/characters/rufran/hand.svg"
  11292. }
  11293. },
  11294. foot: {
  11295. height: math.unit(0.185, "meters"),
  11296. name: "Foot",
  11297. image: {
  11298. source: "./media/characters/rufran/foot.svg"
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Micro",
  11305. height: math.unit(1, "inch")
  11306. },
  11307. {
  11308. name: "Normal",
  11309. height: math.unit(2 + 6 / 12, "feet"),
  11310. default: true
  11311. },
  11312. {
  11313. name: "Big",
  11314. height: math.unit(60, "feet")
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(325, "feet")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(0.3, "meters"),
  11327. weight: math.unit(3.5, "kg"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/chip/front.svg",
  11331. extra: 748 / 674
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Micro",
  11338. height: math.unit(1, "inch"),
  11339. default: true
  11340. },
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11345. {
  11346. side: {
  11347. height: math.unit(2.3, "meters"),
  11348. weight: math.unit(3500, "lb"),
  11349. name: "Side",
  11350. image: {
  11351. source: "./media/characters/torvid/side.svg",
  11352. extra: 1972 / 722,
  11353. bottom: 0.035
  11354. }
  11355. },
  11356. },
  11357. [
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(2.3, "meters"),
  11361. default: true
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(2, "meters"),
  11370. weight: math.unit(150.5, "kg"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/susan/front.svg",
  11374. extra: 693 / 635,
  11375. bottom: 0.05
  11376. }
  11377. },
  11378. },
  11379. [
  11380. {
  11381. name: "Megamacro",
  11382. height: math.unit(505, "miles"),
  11383. default: true
  11384. },
  11385. ]
  11386. ))
  11387. characterMakers.push(() => makeCharacter(
  11388. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11389. {
  11390. front: {
  11391. height: math.unit(6, "feet"),
  11392. weight: math.unit(150, "lb"),
  11393. name: "Front",
  11394. image: {
  11395. source: "./media/characters/raindrops/front.svg",
  11396. extra: 2655 / 2461,
  11397. bottom: 49/2705
  11398. }
  11399. },
  11400. back: {
  11401. height: math.unit(6, "feet"),
  11402. weight: math.unit(150, "lb"),
  11403. name: "Back",
  11404. image: {
  11405. source: "./media/characters/raindrops/back.svg",
  11406. extra: 2574 / 2400,
  11407. bottom: 65/2634
  11408. }
  11409. },
  11410. },
  11411. [
  11412. {
  11413. name: "Micro",
  11414. height: math.unit(6, "inches")
  11415. },
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(6 + 2 / 12, "feet")
  11419. },
  11420. {
  11421. name: "Macro",
  11422. height: math.unit(131, "feet"),
  11423. default: true
  11424. },
  11425. {
  11426. name: "Megamacro",
  11427. height: math.unit(15, "miles")
  11428. },
  11429. {
  11430. name: "Gigamacro",
  11431. height: math.unit(4000, "miles")
  11432. },
  11433. {
  11434. name: "Teramacro",
  11435. height: math.unit(315000, "miles")
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11441. {
  11442. front: {
  11443. height: math.unit(2.794, "meters"),
  11444. weight: math.unit(325, "kg"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/tezwa/front.svg",
  11448. extra: 2083 / 1906,
  11449. bottom: 0.031
  11450. }
  11451. },
  11452. foot: {
  11453. height: math.unit(0.687, "meters"),
  11454. name: "Foot",
  11455. image: {
  11456. source: "./media/characters/tezwa/foot.svg"
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(9 + 2 / 12, "feet"),
  11464. default: true
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(58, "feet"),
  11473. weight: math.unit(89000, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/typhus/front.svg",
  11477. extra: 816 / 800,
  11478. bottom: 0.065
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Macro",
  11485. height: math.unit(58, "feet"),
  11486. default: true
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(12, "feet"),
  11495. weight: math.unit(6, "tonnes"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/lyra-von-wulf/front.svg",
  11499. extra: 1,
  11500. bottom: 0.10
  11501. }
  11502. },
  11503. frontMecha: {
  11504. height: math.unit(12, "feet"),
  11505. weight: math.unit(12, "tonnes"),
  11506. name: "Front (Mecha)",
  11507. image: {
  11508. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11509. extra: 1,
  11510. bottom: 0.042
  11511. }
  11512. },
  11513. maw: {
  11514. height: math.unit(2.2, "feet"),
  11515. name: "Maw",
  11516. image: {
  11517. source: "./media/characters/lyra-von-wulf/maw.svg"
  11518. }
  11519. },
  11520. },
  11521. [
  11522. {
  11523. name: "Normal",
  11524. height: math.unit(12, "feet"),
  11525. default: true
  11526. },
  11527. {
  11528. name: "Classic",
  11529. height: math.unit(50, "feet")
  11530. },
  11531. {
  11532. name: "Macro",
  11533. height: math.unit(500, "feet")
  11534. },
  11535. {
  11536. name: "Megamacro",
  11537. height: math.unit(1, "mile")
  11538. },
  11539. {
  11540. name: "Gigamacro",
  11541. height: math.unit(400, "miles")
  11542. },
  11543. {
  11544. name: "Teramacro",
  11545. height: math.unit(22000, "miles")
  11546. },
  11547. {
  11548. name: "Solarmacro",
  11549. height: math.unit(8600000, "miles")
  11550. },
  11551. {
  11552. name: "Galactic",
  11553. height: math.unit(1057000, "lightyears")
  11554. },
  11555. ]
  11556. ))
  11557. characterMakers.push(() => makeCharacter(
  11558. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11559. {
  11560. front: {
  11561. height: math.unit(6 + 10 / 12, "feet"),
  11562. weight: math.unit(150, "lb"),
  11563. name: "Front",
  11564. image: {
  11565. source: "./media/characters/dixon/front.svg",
  11566. extra: 3361 / 3209,
  11567. bottom: 0.01
  11568. }
  11569. },
  11570. },
  11571. [
  11572. {
  11573. name: "Normal",
  11574. height: math.unit(6 + 10 / 12, "feet"),
  11575. default: true
  11576. },
  11577. {
  11578. name: "Big",
  11579. height: math.unit(12, "meters")
  11580. },
  11581. {
  11582. name: "Macro",
  11583. height: math.unit(500, "meters")
  11584. },
  11585. {
  11586. name: "Megamacro",
  11587. height: math.unit(2, "km")
  11588. },
  11589. ]
  11590. ))
  11591. characterMakers.push(() => makeCharacter(
  11592. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11593. {
  11594. front: {
  11595. height: math.unit(185, "cm"),
  11596. weight: math.unit(68, "kg"),
  11597. name: "Front",
  11598. image: {
  11599. source: "./media/characters/kauko/front.svg",
  11600. extra: 1455 / 1421,
  11601. bottom: 0.03
  11602. }
  11603. },
  11604. back: {
  11605. height: math.unit(185, "cm"),
  11606. weight: math.unit(68, "kg"),
  11607. name: "Back",
  11608. image: {
  11609. source: "./media/characters/kauko/back.svg",
  11610. extra: 1455 / 1421,
  11611. bottom: 0.004
  11612. }
  11613. },
  11614. },
  11615. [
  11616. {
  11617. name: "Normal",
  11618. height: math.unit(185, "cm"),
  11619. default: true
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11625. {
  11626. front: {
  11627. height: math.unit(6, "feet"),
  11628. weight: math.unit(150, "kg"),
  11629. name: "Front",
  11630. image: {
  11631. source: "./media/characters/varg/front.svg",
  11632. extra: 1108 / 1018,
  11633. bottom: 0.0375
  11634. }
  11635. },
  11636. },
  11637. [
  11638. {
  11639. name: "Normal",
  11640. height: math.unit(5, "meters")
  11641. },
  11642. {
  11643. name: "Macro",
  11644. height: math.unit(200, "meters")
  11645. },
  11646. {
  11647. name: "Megamacro",
  11648. height: math.unit(20, "kilometers")
  11649. },
  11650. {
  11651. name: "True Size",
  11652. height: math.unit(211, "km"),
  11653. default: true
  11654. },
  11655. {
  11656. name: "Gigamacro",
  11657. height: math.unit(1000, "km")
  11658. },
  11659. {
  11660. name: "Gigamacro+",
  11661. height: math.unit(8000, "km")
  11662. },
  11663. {
  11664. name: "Teramacro",
  11665. height: math.unit(1000000, "km")
  11666. },
  11667. ]
  11668. ))
  11669. characterMakers.push(() => makeCharacter(
  11670. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11671. {
  11672. front: {
  11673. height: math.unit(7 + 7 / 12, "feet"),
  11674. weight: math.unit(267, "lb"),
  11675. name: "Front",
  11676. image: {
  11677. source: "./media/characters/dayza/front.svg",
  11678. extra: 1262 / 1200,
  11679. bottom: 0.035
  11680. }
  11681. },
  11682. side: {
  11683. height: math.unit(7 + 7 / 12, "feet"),
  11684. weight: math.unit(267, "lb"),
  11685. name: "Side",
  11686. image: {
  11687. source: "./media/characters/dayza/side.svg",
  11688. extra: 1295 / 1245,
  11689. bottom: 0.05
  11690. }
  11691. },
  11692. back: {
  11693. height: math.unit(7 + 7 / 12, "feet"),
  11694. weight: math.unit(267, "lb"),
  11695. name: "Back",
  11696. image: {
  11697. source: "./media/characters/dayza/back.svg",
  11698. extra: 1241 / 1170
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(7 + 7 / 12, "feet"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Macro",
  11710. height: math.unit(155, "feet")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(6 + 5 / 12, "feet"),
  11719. weight: math.unit(160, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/xanthos/front.svg",
  11723. extra: 1,
  11724. bottom: 0.04
  11725. }
  11726. },
  11727. back: {
  11728. height: math.unit(6 + 5 / 12, "feet"),
  11729. weight: math.unit(160, "lb"),
  11730. name: "Back",
  11731. image: {
  11732. source: "./media/characters/xanthos/back.svg",
  11733. extra: 1,
  11734. bottom: 0.03
  11735. }
  11736. },
  11737. hand: {
  11738. height: math.unit(0.928, "feet"),
  11739. name: "Hand",
  11740. image: {
  11741. source: "./media/characters/xanthos/hand.svg"
  11742. }
  11743. },
  11744. foot: {
  11745. height: math.unit(1.286, "feet"),
  11746. name: "Foot",
  11747. image: {
  11748. source: "./media/characters/xanthos/foot.svg"
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(6 + 5 / 12, "feet"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Normal+",
  11760. height: math.unit(6, "meters")
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(40, "feet")
  11765. },
  11766. {
  11767. name: "Macro+",
  11768. height: math.unit(200, "meters")
  11769. },
  11770. {
  11771. name: "Megamacro",
  11772. height: math.unit(20, "km")
  11773. },
  11774. {
  11775. name: "Megamacro+",
  11776. height: math.unit(100, "km")
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11782. {
  11783. front: {
  11784. height: math.unit(6 + 3 / 12, "feet"),
  11785. weight: math.unit(215, "lb"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/grynn/front.svg",
  11789. extra: 4627 / 4209,
  11790. bottom: 0.047
  11791. }
  11792. },
  11793. },
  11794. [
  11795. {
  11796. name: "Micro",
  11797. height: math.unit(6, "inches")
  11798. },
  11799. {
  11800. name: "Normal",
  11801. height: math.unit(6 + 3 / 12, "feet"),
  11802. default: true
  11803. },
  11804. {
  11805. name: "Big",
  11806. height: math.unit(104, "feet")
  11807. },
  11808. {
  11809. name: "Macro",
  11810. height: math.unit(944, "feet")
  11811. },
  11812. {
  11813. name: "Macro+",
  11814. height: math.unit(9480, "feet")
  11815. },
  11816. {
  11817. name: "Megamacro",
  11818. height: math.unit(78752, "feet")
  11819. },
  11820. {
  11821. name: "Megamacro+",
  11822. height: math.unit(630128, "feet")
  11823. },
  11824. {
  11825. name: "Megamacro++",
  11826. height: math.unit(3150695, "feet")
  11827. },
  11828. ]
  11829. ))
  11830. characterMakers.push(() => makeCharacter(
  11831. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11832. {
  11833. front: {
  11834. height: math.unit(7 + 5 / 12, "feet"),
  11835. weight: math.unit(450, "lb"),
  11836. name: "Front",
  11837. image: {
  11838. source: "./media/characters/mocha-aura/front.svg",
  11839. extra: 1907 / 1817,
  11840. bottom: 0.04
  11841. }
  11842. },
  11843. back: {
  11844. height: math.unit(7 + 5 / 12, "feet"),
  11845. weight: math.unit(450, "lb"),
  11846. name: "Back",
  11847. image: {
  11848. source: "./media/characters/mocha-aura/back.svg",
  11849. extra: 1900 / 1825,
  11850. bottom: 0.045
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Nano",
  11857. height: math.unit(1, "nm")
  11858. },
  11859. {
  11860. name: "Megamicro",
  11861. height: math.unit(1, "mm")
  11862. },
  11863. {
  11864. name: "Micro",
  11865. height: math.unit(3, "inches")
  11866. },
  11867. {
  11868. name: "Normal",
  11869. height: math.unit(7 + 5 / 12, "feet"),
  11870. default: true
  11871. },
  11872. {
  11873. name: "Macro",
  11874. height: math.unit(30, "feet")
  11875. },
  11876. {
  11877. name: "Megamacro",
  11878. height: math.unit(3500, "feet")
  11879. },
  11880. {
  11881. name: "Teramacro",
  11882. height: math.unit(500000, "miles")
  11883. },
  11884. {
  11885. name: "Petamacro",
  11886. height: math.unit(50000000000000000, "parsecs")
  11887. },
  11888. ]
  11889. ))
  11890. characterMakers.push(() => makeCharacter(
  11891. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11892. {
  11893. front: {
  11894. height: math.unit(6, "feet"),
  11895. weight: math.unit(150, "lb"),
  11896. name: "Front",
  11897. image: {
  11898. source: "./media/characters/ilisha-devya/front.svg",
  11899. extra: 1,
  11900. bottom: 0.175
  11901. }
  11902. },
  11903. back: {
  11904. height: math.unit(6, "feet"),
  11905. weight: math.unit(150, "lb"),
  11906. name: "Back",
  11907. image: {
  11908. source: "./media/characters/ilisha-devya/back.svg",
  11909. extra: 1,
  11910. bottom: 0.015
  11911. }
  11912. },
  11913. },
  11914. [
  11915. {
  11916. name: "Macro",
  11917. height: math.unit(500, "feet"),
  11918. default: true
  11919. },
  11920. {
  11921. name: "Megamacro",
  11922. height: math.unit(10, "miles")
  11923. },
  11924. {
  11925. name: "Gigamacro",
  11926. height: math.unit(100000, "miles")
  11927. },
  11928. {
  11929. name: "Examacro",
  11930. height: math.unit(1e9, "lightyears")
  11931. },
  11932. {
  11933. name: "Omniversal",
  11934. height: math.unit(1e33, "lightyears")
  11935. },
  11936. {
  11937. name: "Beyond Infinite",
  11938. height: math.unit(1e100, "lightyears")
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11944. {
  11945. Side: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(150, "lb"),
  11948. name: "Side",
  11949. image: {
  11950. source: "./media/characters/mira/side.svg",
  11951. extra: 900 / 799,
  11952. bottom: 0.02
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Human Size",
  11959. height: math.unit(6, "feet")
  11960. },
  11961. {
  11962. name: "Macro",
  11963. height: math.unit(100, "feet"),
  11964. default: true
  11965. },
  11966. {
  11967. name: "Megamacro",
  11968. height: math.unit(10, "miles")
  11969. },
  11970. {
  11971. name: "Gigamacro",
  11972. height: math.unit(25000, "miles")
  11973. },
  11974. {
  11975. name: "Teramacro",
  11976. height: math.unit(300, "AU")
  11977. },
  11978. {
  11979. name: "Full Size",
  11980. height: math.unit(4.5e10, "lightyears")
  11981. },
  11982. ]
  11983. ))
  11984. characterMakers.push(() => makeCharacter(
  11985. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11986. {
  11987. front: {
  11988. height: math.unit(6, "feet"),
  11989. weight: math.unit(150, "lb"),
  11990. name: "Front",
  11991. image: {
  11992. source: "./media/characters/holly/front.svg",
  11993. extra: 639 / 606
  11994. }
  11995. },
  11996. back: {
  11997. height: math.unit(6, "feet"),
  11998. weight: math.unit(150, "lb"),
  11999. name: "Back",
  12000. image: {
  12001. source: "./media/characters/holly/back.svg",
  12002. extra: 623 / 598
  12003. }
  12004. },
  12005. frontWorking: {
  12006. height: math.unit(6, "feet"),
  12007. weight: math.unit(150, "lb"),
  12008. name: "Front (Working)",
  12009. image: {
  12010. source: "./media/characters/holly/front-working.svg",
  12011. extra: 607 / 577,
  12012. bottom: 0.048
  12013. }
  12014. },
  12015. },
  12016. [
  12017. {
  12018. name: "Normal",
  12019. height: math.unit(12 + 3 / 12, "feet"),
  12020. default: true
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12026. {
  12027. front: {
  12028. height: math.unit(6, "feet"),
  12029. weight: math.unit(150, "lb"),
  12030. name: "Front",
  12031. image: {
  12032. source: "./media/characters/porter/front.svg",
  12033. extra: 1,
  12034. bottom: 0.01
  12035. }
  12036. },
  12037. frontRobes: {
  12038. height: math.unit(6, "feet"),
  12039. weight: math.unit(150, "lb"),
  12040. name: "Front (Robes)",
  12041. image: {
  12042. source: "./media/characters/porter/front-robes.svg",
  12043. extra: 1.01,
  12044. bottom: 0.01
  12045. }
  12046. },
  12047. },
  12048. [
  12049. {
  12050. name: "Normal",
  12051. height: math.unit(11 + 9 / 12, "feet"),
  12052. default: true
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12058. {
  12059. legendary: {
  12060. height: math.unit(6, "feet"),
  12061. weight: math.unit(150, "lb"),
  12062. name: "Legendary",
  12063. image: {
  12064. source: "./media/characters/lucy/legendary.svg",
  12065. extra: 1355 / 1100,
  12066. bottom: 0.045
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Legendary",
  12073. height: math.unit(86882 * 2, "miles"),
  12074. default: true
  12075. },
  12076. ]
  12077. ))
  12078. characterMakers.push(() => makeCharacter(
  12079. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12080. {
  12081. front: {
  12082. height: math.unit(6, "feet"),
  12083. weight: math.unit(150, "lb"),
  12084. name: "Front",
  12085. image: {
  12086. source: "./media/characters/drusilla/front.svg",
  12087. extra: 678 / 635,
  12088. bottom: 0.03
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(6, "feet"),
  12093. weight: math.unit(150, "lb"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/drusilla/back.svg",
  12097. extra: 678 / 635,
  12098. bottom: 0.005
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Macro",
  12105. height: math.unit(100, "feet")
  12106. },
  12107. {
  12108. name: "Canon Height",
  12109. height: math.unit(2000, "feet"),
  12110. default: true
  12111. },
  12112. ]
  12113. ))
  12114. characterMakers.push(() => makeCharacter(
  12115. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12116. {
  12117. front: {
  12118. height: math.unit(6, "feet"),
  12119. weight: math.unit(180, "lb"),
  12120. name: "Front",
  12121. image: {
  12122. source: "./media/characters/renard-thatch/front.svg",
  12123. extra: 2411 / 2275,
  12124. bottom: 0.01
  12125. }
  12126. },
  12127. frontPosing: {
  12128. height: math.unit(6, "feet"),
  12129. weight: math.unit(180, "lb"),
  12130. name: "Front (Posing)",
  12131. image: {
  12132. source: "./media/characters/renard-thatch/front-posing.svg",
  12133. extra: 2381 / 2261,
  12134. bottom: 0.01
  12135. }
  12136. },
  12137. back: {
  12138. height: math.unit(6, "feet"),
  12139. weight: math.unit(180, "lb"),
  12140. name: "Back",
  12141. image: {
  12142. source: "./media/characters/renard-thatch/back.svg",
  12143. extra: 2428 / 2288
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Micro",
  12150. height: math.unit(3, "inches")
  12151. },
  12152. {
  12153. name: "Default",
  12154. height: math.unit(6, "feet"),
  12155. default: true
  12156. },
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(75, "feet")
  12160. },
  12161. ]
  12162. ))
  12163. characterMakers.push(() => makeCharacter(
  12164. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12165. {
  12166. front: {
  12167. height: math.unit(1450, "feet"),
  12168. weight: math.unit(1.21e6, "tons"),
  12169. name: "Front",
  12170. image: {
  12171. source: "./media/characters/sekvra/front.svg",
  12172. extra: 1,
  12173. bottom: 0.03
  12174. }
  12175. },
  12176. frontClothed: {
  12177. height: math.unit(1450, "feet"),
  12178. weight: math.unit(1.21e6, "tons"),
  12179. name: "Front (Clothed)",
  12180. image: {
  12181. source: "./media/characters/sekvra/front-clothed.svg",
  12182. extra: 1,
  12183. bottom: 0.03
  12184. }
  12185. },
  12186. side: {
  12187. height: math.unit(1450, "feet"),
  12188. weight: math.unit(1.21e6, "tons"),
  12189. name: "Side",
  12190. image: {
  12191. source: "./media/characters/sekvra/side.svg",
  12192. extra: 1,
  12193. bottom: 0.025
  12194. }
  12195. },
  12196. back: {
  12197. height: math.unit(1450, "feet"),
  12198. weight: math.unit(1.21e6, "tons"),
  12199. name: "Back",
  12200. image: {
  12201. source: "./media/characters/sekvra/back.svg",
  12202. extra: 1,
  12203. bottom: 0.005
  12204. }
  12205. },
  12206. },
  12207. [
  12208. {
  12209. name: "Macro",
  12210. height: math.unit(1450, "feet"),
  12211. default: true
  12212. },
  12213. {
  12214. name: "Megamacro",
  12215. height: math.unit(15000, "feet")
  12216. },
  12217. ]
  12218. ))
  12219. characterMakers.push(() => makeCharacter(
  12220. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12221. {
  12222. front: {
  12223. height: math.unit(6, "feet"),
  12224. weight: math.unit(150, "lb"),
  12225. name: "Front",
  12226. image: {
  12227. source: "./media/characters/carmine/front.svg",
  12228. extra: 1,
  12229. bottom: 0.035
  12230. }
  12231. },
  12232. frontArmor: {
  12233. height: math.unit(6, "feet"),
  12234. weight: math.unit(150, "lb"),
  12235. name: "Front (Armor)",
  12236. image: {
  12237. source: "./media/characters/carmine/front-armor.svg",
  12238. extra: 1,
  12239. bottom: 0.035
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Large",
  12246. height: math.unit(1, "mile")
  12247. },
  12248. {
  12249. name: "Huge",
  12250. height: math.unit(40, "miles"),
  12251. default: true
  12252. },
  12253. {
  12254. name: "Colossal",
  12255. height: math.unit(2500, "miles")
  12256. },
  12257. ]
  12258. ))
  12259. characterMakers.push(() => makeCharacter(
  12260. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12261. {
  12262. front: {
  12263. height: math.unit(6, "feet"),
  12264. weight: math.unit(150, "lb"),
  12265. name: "Front",
  12266. image: {
  12267. source: "./media/characters/elyssia/front.svg",
  12268. extra: 2201 / 2035,
  12269. bottom: 0.05
  12270. }
  12271. },
  12272. frontClothed: {
  12273. height: math.unit(6, "feet"),
  12274. weight: math.unit(150, "lb"),
  12275. name: "Front (Clothed)",
  12276. image: {
  12277. source: "./media/characters/elyssia/front-clothed.svg",
  12278. extra: 2201 / 2035,
  12279. bottom: 0.05
  12280. }
  12281. },
  12282. back: {
  12283. height: math.unit(6, "feet"),
  12284. weight: math.unit(150, "lb"),
  12285. name: "Back",
  12286. image: {
  12287. source: "./media/characters/elyssia/back.svg",
  12288. extra: 2201 / 2035,
  12289. bottom: 0.013
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Smaller",
  12296. height: math.unit(150, "feet")
  12297. },
  12298. {
  12299. name: "Standard",
  12300. height: math.unit(1400, "feet"),
  12301. default: true
  12302. },
  12303. {
  12304. name: "Distracted",
  12305. height: math.unit(15000, "feet")
  12306. },
  12307. ]
  12308. ))
  12309. characterMakers.push(() => makeCharacter(
  12310. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12311. {
  12312. front: {
  12313. height: math.unit(7 + 4 / 12, "feet"),
  12314. weight: math.unit(500, "lb"),
  12315. name: "Front",
  12316. image: {
  12317. source: "./media/characters/geno-maxwell/front.svg",
  12318. extra: 2207 / 2040,
  12319. bottom: 0.015
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Micro",
  12326. height: math.unit(3, "inches")
  12327. },
  12328. {
  12329. name: "Normal",
  12330. height: math.unit(7 + 4 / 12, "feet"),
  12331. default: true
  12332. },
  12333. {
  12334. name: "Macro",
  12335. height: math.unit(220, "feet")
  12336. },
  12337. {
  12338. name: "Megamacro",
  12339. height: math.unit(11, "miles")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12345. {
  12346. front: {
  12347. height: math.unit(7 + 4 / 12, "feet"),
  12348. weight: math.unit(500, "lb"),
  12349. name: "Front",
  12350. image: {
  12351. source: "./media/characters/regena-maxwell/front.svg",
  12352. extra: 3115 / 2770,
  12353. bottom: 0.02
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Normal",
  12360. height: math.unit(7 + 4 / 12, "feet"),
  12361. default: true
  12362. },
  12363. {
  12364. name: "Macro",
  12365. height: math.unit(220, "feet")
  12366. },
  12367. {
  12368. name: "Megamacro",
  12369. height: math.unit(11, "miles")
  12370. },
  12371. ]
  12372. ))
  12373. characterMakers.push(() => makeCharacter(
  12374. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12375. {
  12376. front: {
  12377. height: math.unit(6, "feet"),
  12378. weight: math.unit(150, "lb"),
  12379. name: "Front",
  12380. image: {
  12381. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12382. extra: 860 / 690,
  12383. bottom: 0.03
  12384. }
  12385. },
  12386. },
  12387. [
  12388. {
  12389. name: "Normal",
  12390. height: math.unit(1.7, "meters"),
  12391. default: true
  12392. },
  12393. ]
  12394. ))
  12395. characterMakers.push(() => makeCharacter(
  12396. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12397. {
  12398. front: {
  12399. height: math.unit(6, "feet"),
  12400. weight: math.unit(150, "lb"),
  12401. name: "Front",
  12402. image: {
  12403. source: "./media/characters/quilly/front.svg",
  12404. extra: 890 / 776
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Gigamacro",
  12411. height: math.unit(404090, "miles"),
  12412. default: true
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(7 + 8 / 12, "feet"),
  12421. weight: math.unit(350, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/tempest/front.svg",
  12425. extra: 1175 / 1086,
  12426. bottom: 0.02
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(7 + 8 / 12, "feet"),
  12434. default: true
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12440. {
  12441. side: {
  12442. height: math.unit(4 + 5 / 12, "feet"),
  12443. weight: math.unit(80, "lb"),
  12444. name: "Side",
  12445. image: {
  12446. source: "./media/characters/rodger/side.svg",
  12447. extra: 1235 / 1118
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Micro",
  12454. height: math.unit(1, "inch")
  12455. },
  12456. {
  12457. name: "Normal",
  12458. height: math.unit(4 + 5 / 12, "feet"),
  12459. default: true
  12460. },
  12461. {
  12462. name: "Macro",
  12463. height: math.unit(120, "feet")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(150, "lb"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/danyel/front.svg",
  12476. extra: 1185 / 1123,
  12477. bottom: 0.05
  12478. }
  12479. },
  12480. },
  12481. [
  12482. {
  12483. name: "Shrunken",
  12484. height: math.unit(0.5, "mm")
  12485. },
  12486. {
  12487. name: "Micro",
  12488. height: math.unit(1, "mm"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Upsized",
  12493. height: math.unit(5 + 5 / 12, "feet")
  12494. },
  12495. ]
  12496. ))
  12497. characterMakers.push(() => makeCharacter(
  12498. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12499. {
  12500. front: {
  12501. height: math.unit(5 + 6 / 12, "feet"),
  12502. weight: math.unit(200, "lb"),
  12503. name: "Front",
  12504. image: {
  12505. source: "./media/characters/vivian-bijoux/front.svg",
  12506. extra: 1,
  12507. bottom: 0.072
  12508. }
  12509. },
  12510. },
  12511. [
  12512. {
  12513. name: "Normal",
  12514. height: math.unit(5 + 6 / 12, "feet"),
  12515. default: true
  12516. },
  12517. {
  12518. name: "Bad Dream",
  12519. height: math.unit(500, "feet")
  12520. },
  12521. {
  12522. name: "Nightmare",
  12523. height: math.unit(500, "miles")
  12524. },
  12525. ]
  12526. ))
  12527. characterMakers.push(() => makeCharacter(
  12528. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12529. {
  12530. front: {
  12531. height: math.unit(6 + 1 / 12, "feet"),
  12532. weight: math.unit(260, "lb"),
  12533. name: "Front",
  12534. image: {
  12535. source: "./media/characters/zeta/front.svg",
  12536. extra: 1968 / 1889,
  12537. bottom: 0.06
  12538. }
  12539. },
  12540. back: {
  12541. height: math.unit(6 + 1 / 12, "feet"),
  12542. weight: math.unit(260, "lb"),
  12543. name: "Back",
  12544. image: {
  12545. source: "./media/characters/zeta/back.svg",
  12546. extra: 1944 / 1858,
  12547. bottom: 0.03
  12548. }
  12549. },
  12550. hand: {
  12551. height: math.unit(1.112, "feet"),
  12552. name: "Hand",
  12553. image: {
  12554. source: "./media/characters/zeta/hand.svg"
  12555. }
  12556. },
  12557. foot: {
  12558. height: math.unit(1.48, "feet"),
  12559. name: "Foot",
  12560. image: {
  12561. source: "./media/characters/zeta/foot.svg"
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Micro",
  12568. height: math.unit(6, "inches")
  12569. },
  12570. {
  12571. name: "Normal",
  12572. height: math.unit(6 + 1 / 12, "feet"),
  12573. default: true
  12574. },
  12575. {
  12576. name: "Macro",
  12577. height: math.unit(20, "feet")
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12583. {
  12584. front: {
  12585. height: math.unit(6, "feet"),
  12586. weight: math.unit(150, "lb"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/jamie-larsen/front.svg",
  12590. extra: 962 / 933,
  12591. bottom: 0.02
  12592. }
  12593. },
  12594. back: {
  12595. height: math.unit(6, "feet"),
  12596. weight: math.unit(150, "lb"),
  12597. name: "Back",
  12598. image: {
  12599. source: "./media/characters/jamie-larsen/back.svg",
  12600. extra: 997 / 946
  12601. }
  12602. },
  12603. },
  12604. [
  12605. {
  12606. name: "Macro",
  12607. height: math.unit(28 + 7 / 12, "feet"),
  12608. default: true
  12609. },
  12610. {
  12611. name: "Macro+",
  12612. height: math.unit(180, "feet")
  12613. },
  12614. {
  12615. name: "Megamacro",
  12616. height: math.unit(10, "miles")
  12617. },
  12618. {
  12619. name: "Gigamacro",
  12620. height: math.unit(200000, "miles")
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12626. {
  12627. front: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(120, "lb"),
  12630. name: "Front",
  12631. image: {
  12632. source: "./media/characters/vance/front.svg",
  12633. extra: 1980 / 1890,
  12634. bottom: 0.09
  12635. }
  12636. },
  12637. back: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(120, "lb"),
  12640. name: "Back",
  12641. image: {
  12642. source: "./media/characters/vance/back.svg",
  12643. extra: 2081 / 1994,
  12644. bottom: 0.014
  12645. }
  12646. },
  12647. hand: {
  12648. height: math.unit(0.88, "feet"),
  12649. name: "Hand",
  12650. image: {
  12651. source: "./media/characters/vance/hand.svg"
  12652. }
  12653. },
  12654. foot: {
  12655. height: math.unit(0.64, "feet"),
  12656. name: "Foot",
  12657. image: {
  12658. source: "./media/characters/vance/foot.svg"
  12659. }
  12660. },
  12661. },
  12662. [
  12663. {
  12664. name: "Small",
  12665. height: math.unit(90, "feet"),
  12666. default: true
  12667. },
  12668. {
  12669. name: "Macro",
  12670. height: math.unit(100, "meters")
  12671. },
  12672. {
  12673. name: "Megamacro",
  12674. height: math.unit(15, "miles")
  12675. },
  12676. ]
  12677. ))
  12678. characterMakers.push(() => makeCharacter(
  12679. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12680. {
  12681. front: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(180, "lb"),
  12684. name: "Front",
  12685. image: {
  12686. source: "./media/characters/xochitl/front.svg",
  12687. extra: 2297 / 2261,
  12688. bottom: 0.065
  12689. }
  12690. },
  12691. back: {
  12692. height: math.unit(6, "feet"),
  12693. weight: math.unit(180, "lb"),
  12694. name: "Back",
  12695. image: {
  12696. source: "./media/characters/xochitl/back.svg",
  12697. extra: 2386 / 2354,
  12698. bottom: 0.01
  12699. }
  12700. },
  12701. foot: {
  12702. height: math.unit(6 / 5 * 1.15, "feet"),
  12703. weight: math.unit(150, "lb"),
  12704. name: "Foot",
  12705. image: {
  12706. source: "./media/characters/xochitl/foot.svg"
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Macro",
  12713. height: math.unit(80, "feet")
  12714. },
  12715. {
  12716. name: "Macro+",
  12717. height: math.unit(400, "feet"),
  12718. default: true
  12719. },
  12720. {
  12721. name: "Gigamacro",
  12722. height: math.unit(80000, "miles")
  12723. },
  12724. {
  12725. name: "Gigamacro+",
  12726. height: math.unit(400000, "miles")
  12727. },
  12728. {
  12729. name: "Teramacro",
  12730. height: math.unit(300, "AU")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(6, "feet"),
  12739. weight: math.unit(150, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/vincent/front.svg",
  12743. extra: 1130 / 1080,
  12744. bottom: 0.055
  12745. }
  12746. },
  12747. beak: {
  12748. height: math.unit(6 * 0.1, "feet"),
  12749. name: "Beak",
  12750. image: {
  12751. source: "./media/characters/vincent/beak.svg"
  12752. }
  12753. },
  12754. hand: {
  12755. height: math.unit(6 * 0.85, "feet"),
  12756. weight: math.unit(150, "lb"),
  12757. name: "Hand",
  12758. image: {
  12759. source: "./media/characters/vincent/hand.svg"
  12760. }
  12761. },
  12762. foot: {
  12763. height: math.unit(6 * 0.19, "feet"),
  12764. weight: math.unit(150, "lb"),
  12765. name: "Foot",
  12766. image: {
  12767. source: "./media/characters/vincent/foot.svg"
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Base",
  12774. height: math.unit(6 + 5 / 12, "feet"),
  12775. default: true
  12776. },
  12777. {
  12778. name: "Macro",
  12779. height: math.unit(300, "feet")
  12780. },
  12781. {
  12782. name: "Megamacro",
  12783. height: math.unit(2, "miles")
  12784. },
  12785. {
  12786. name: "Gigamacro",
  12787. height: math.unit(1000, "miles")
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(6 + 2 / 12, "feet"),
  12796. weight: math.unit(265, "lb"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/jay/front.svg",
  12800. extra: 1510 / 1430,
  12801. bottom: 0.042
  12802. }
  12803. },
  12804. back: {
  12805. height: math.unit(6 + 2 / 12, "feet"),
  12806. weight: math.unit(265, "lb"),
  12807. name: "Back",
  12808. image: {
  12809. source: "./media/characters/jay/back.svg",
  12810. extra: 1510 / 1430,
  12811. bottom: 0.025
  12812. }
  12813. },
  12814. clothed: {
  12815. height: math.unit(6 + 2 / 12, "feet"),
  12816. weight: math.unit(265, "lb"),
  12817. name: "Front (Clothed)",
  12818. image: {
  12819. source: "./media/characters/jay/clothed.svg",
  12820. extra: 744 / 699,
  12821. bottom: 0.043
  12822. }
  12823. },
  12824. head: {
  12825. height: math.unit(1.772, "feet"),
  12826. name: "Head",
  12827. image: {
  12828. source: "./media/characters/jay/head.svg"
  12829. }
  12830. },
  12831. sizeRay: {
  12832. height: math.unit(1.331, "feet"),
  12833. name: "Size Ray",
  12834. image: {
  12835. source: "./media/characters/jay/size-ray.svg"
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Micro",
  12842. height: math.unit(1, "inch")
  12843. },
  12844. {
  12845. name: "Normal",
  12846. height: math.unit(6 + 2 / 12, "feet"),
  12847. default: true
  12848. },
  12849. {
  12850. name: "Macro",
  12851. height: math.unit(1, "mile")
  12852. },
  12853. {
  12854. name: "Megamacro",
  12855. height: math.unit(100, "miles")
  12856. },
  12857. ]
  12858. ))
  12859. characterMakers.push(() => makeCharacter(
  12860. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12861. {
  12862. front: {
  12863. height: math.unit(2, "meters"),
  12864. weight: math.unit(500, "kg"),
  12865. name: "Front",
  12866. image: {
  12867. source: "./media/characters/coatl/front.svg",
  12868. extra: 3948 / 3500,
  12869. bottom: 0.082
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Normal",
  12876. height: math.unit(4, "meters")
  12877. },
  12878. {
  12879. name: "Macro",
  12880. height: math.unit(100, "meters"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Macro+",
  12885. height: math.unit(300, "meters")
  12886. },
  12887. {
  12888. name: "Megamacro",
  12889. height: math.unit(3, "gigameters")
  12890. },
  12891. {
  12892. name: "Megamacro+",
  12893. height: math.unit(300, "terameters")
  12894. },
  12895. {
  12896. name: "Megamacro++",
  12897. height: math.unit(3, "lightyears")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(50, "kg"),
  12907. name: "front",
  12908. image: {
  12909. source: "./media/characters/shiroryu/front.svg",
  12910. extra: 1990 / 1935
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Mortal Mingling",
  12917. height: math.unit(3, "meters")
  12918. },
  12919. {
  12920. name: "Kaiju-ish",
  12921. height: math.unit(250, "meters")
  12922. },
  12923. {
  12924. name: "Somewhat Godly",
  12925. height: math.unit(400, "km"),
  12926. default: true
  12927. },
  12928. {
  12929. name: "Planetary",
  12930. height: math.unit(300, "megameters")
  12931. },
  12932. {
  12933. name: "Galaxy-dwarfing",
  12934. height: math.unit(450, "kiloparsecs")
  12935. },
  12936. {
  12937. name: "Universe Eater",
  12938. height: math.unit(150, "gigaparsecs")
  12939. },
  12940. {
  12941. name: "Almost Immeasurable",
  12942. height: math.unit(1.3e266, "yottaparsecs")
  12943. },
  12944. ]
  12945. ))
  12946. characterMakers.push(() => makeCharacter(
  12947. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12948. {
  12949. front: {
  12950. height: math.unit(6, "feet"),
  12951. weight: math.unit(150, "lb"),
  12952. name: "Front",
  12953. image: {
  12954. source: "./media/characters/umeko/front.svg",
  12955. extra: 1,
  12956. bottom: 0.019
  12957. }
  12958. },
  12959. frontArmored: {
  12960. height: math.unit(6, "feet"),
  12961. weight: math.unit(150, "lb"),
  12962. name: "Front (Armored)",
  12963. image: {
  12964. source: "./media/characters/umeko/front-armored.svg",
  12965. extra: 1,
  12966. bottom: 0.021
  12967. }
  12968. },
  12969. },
  12970. [
  12971. {
  12972. name: "Macro",
  12973. height: math.unit(220, "feet"),
  12974. default: true
  12975. },
  12976. {
  12977. name: "Guardian Dragon",
  12978. height: math.unit(50, "miles")
  12979. },
  12980. {
  12981. name: "Cosmic",
  12982. height: math.unit(800000, "miles")
  12983. },
  12984. ]
  12985. ))
  12986. characterMakers.push(() => makeCharacter(
  12987. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12988. {
  12989. front: {
  12990. height: math.unit(6, "feet"),
  12991. weight: math.unit(150, "lb"),
  12992. name: "Front",
  12993. image: {
  12994. source: "./media/characters/cassidy/front.svg",
  12995. extra: 1,
  12996. bottom: 0.043
  12997. }
  12998. },
  12999. },
  13000. [
  13001. {
  13002. name: "Canon Height",
  13003. height: math.unit(120, "feet"),
  13004. default: true
  13005. },
  13006. {
  13007. name: "Macro+",
  13008. height: math.unit(400, "feet")
  13009. },
  13010. {
  13011. name: "Macro++",
  13012. height: math.unit(4000, "feet")
  13013. },
  13014. {
  13015. name: "Megamacro",
  13016. height: math.unit(3, "miles")
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13022. {
  13023. front: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(150, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/isaac/front.svg",
  13029. extra: 896 / 815,
  13030. bottom: 0.11
  13031. }
  13032. },
  13033. },
  13034. [
  13035. {
  13036. name: "Human Size",
  13037. height: math.unit(8, "feet"),
  13038. default: true
  13039. },
  13040. {
  13041. name: "Macro",
  13042. height: math.unit(400, "feet")
  13043. },
  13044. {
  13045. name: "Megamacro",
  13046. height: math.unit(50, "miles")
  13047. },
  13048. {
  13049. name: "Canon Height",
  13050. height: math.unit(200, "AU")
  13051. },
  13052. ]
  13053. ))
  13054. characterMakers.push(() => makeCharacter(
  13055. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13056. {
  13057. front: {
  13058. height: math.unit(6, "feet"),
  13059. weight: math.unit(72, "kg"),
  13060. name: "Front",
  13061. image: {
  13062. source: "./media/characters/sleekit/front.svg",
  13063. extra: 4693 / 4487,
  13064. bottom: 0.012
  13065. }
  13066. },
  13067. },
  13068. [
  13069. {
  13070. name: "Minimum Height",
  13071. height: math.unit(10, "meters")
  13072. },
  13073. {
  13074. name: "Smaller",
  13075. height: math.unit(25, "meters")
  13076. },
  13077. {
  13078. name: "Larger",
  13079. height: math.unit(38, "meters"),
  13080. default: true
  13081. },
  13082. {
  13083. name: "Maximum height",
  13084. height: math.unit(100, "meters")
  13085. },
  13086. ]
  13087. ))
  13088. characterMakers.push(() => makeCharacter(
  13089. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13090. {
  13091. front: {
  13092. height: math.unit(6, "feet"),
  13093. weight: math.unit(150, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/nillia/front.svg",
  13097. extra: 2195 / 2037,
  13098. bottom: 0.005
  13099. }
  13100. },
  13101. back: {
  13102. height: math.unit(6, "feet"),
  13103. weight: math.unit(150, "lb"),
  13104. name: "Back",
  13105. image: {
  13106. source: "./media/characters/nillia/back.svg",
  13107. extra: 2195 / 2037,
  13108. bottom: 0.005
  13109. }
  13110. },
  13111. },
  13112. [
  13113. {
  13114. name: "Canon Height",
  13115. height: math.unit(489, "feet"),
  13116. default: true
  13117. }
  13118. ]
  13119. ))
  13120. characterMakers.push(() => makeCharacter(
  13121. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13122. {
  13123. front: {
  13124. height: math.unit(6, "feet"),
  13125. weight: math.unit(150, "lb"),
  13126. name: "Front",
  13127. image: {
  13128. source: "./media/characters/mesmyriza/front.svg",
  13129. extra: 2067 / 1784,
  13130. bottom: 0.035
  13131. }
  13132. },
  13133. foot: {
  13134. height: math.unit(6 / (250 / 35), "feet"),
  13135. name: "Foot",
  13136. image: {
  13137. source: "./media/characters/mesmyriza/foot.svg"
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Macro",
  13144. height: math.unit(457, "meters"),
  13145. default: true
  13146. },
  13147. {
  13148. name: "Megamacro",
  13149. height: math.unit(8, "megameters")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(6, "feet"),
  13158. weight: math.unit(250, "lb"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/saudade/front.svg",
  13162. extra: 1172 / 1139,
  13163. bottom: 0.035
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Micro",
  13170. height: math.unit(3, "inches")
  13171. },
  13172. {
  13173. name: "Normal",
  13174. height: math.unit(6, "feet"),
  13175. default: true
  13176. },
  13177. {
  13178. name: "Macro",
  13179. height: math.unit(50, "feet")
  13180. },
  13181. {
  13182. name: "Megamacro",
  13183. height: math.unit(2800, "feet")
  13184. },
  13185. ]
  13186. ))
  13187. characterMakers.push(() => makeCharacter(
  13188. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13189. {
  13190. front: {
  13191. height: math.unit(5 + 4 / 12, "feet"),
  13192. weight: math.unit(100, "lb"),
  13193. name: "Front",
  13194. image: {
  13195. source: "./media/characters/keireer/front.svg",
  13196. extra: 716 / 666,
  13197. bottom: 0.05
  13198. }
  13199. },
  13200. },
  13201. [
  13202. {
  13203. name: "Normal",
  13204. height: math.unit(5 + 4 / 12, "feet"),
  13205. default: true
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13211. {
  13212. front: {
  13213. height: math.unit(6, "feet"),
  13214. weight: math.unit(90, "kg"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/mirja/front.svg",
  13218. extra: 1789 / 1683,
  13219. bottom: 0.05
  13220. }
  13221. },
  13222. frontDressed: {
  13223. height: math.unit(6, "feet"),
  13224. weight: math.unit(90, "lb"),
  13225. name: "Front (Dressed)",
  13226. image: {
  13227. source: "./media/characters/mirja/front-dressed.svg",
  13228. extra: 1789 / 1683,
  13229. bottom: 0.05
  13230. }
  13231. },
  13232. back: {
  13233. height: math.unit(6, "feet"),
  13234. weight: math.unit(90, "lb"),
  13235. name: "Back",
  13236. image: {
  13237. source: "./media/characters/mirja/back.svg",
  13238. extra: 953 / 917,
  13239. bottom: 0.017
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "\"Incognito\"",
  13246. height: math.unit(3, "meters")
  13247. },
  13248. {
  13249. name: "Strolling Size",
  13250. height: math.unit(15, "km")
  13251. },
  13252. {
  13253. name: "Larger Strolling Size",
  13254. height: math.unit(400, "km")
  13255. },
  13256. {
  13257. name: "Preferred Size",
  13258. height: math.unit(5000, "km")
  13259. },
  13260. {
  13261. name: "True Size",
  13262. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13263. default: true
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(15, "feet"),
  13272. weight: math.unit(880, "kg"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/nightraver/front.svg",
  13276. extra: 2444 / 2160,
  13277. bottom: 0.027
  13278. }
  13279. },
  13280. back: {
  13281. height: math.unit(15, "feet"),
  13282. weight: math.unit(880, "kg"),
  13283. name: "Back",
  13284. image: {
  13285. source: "./media/characters/nightraver/back.svg",
  13286. extra: 2309 / 2180,
  13287. bottom: 0.005
  13288. }
  13289. },
  13290. sole: {
  13291. height: math.unit(2.878, "feet"),
  13292. name: "Sole",
  13293. image: {
  13294. source: "./media/characters/nightraver/sole.svg"
  13295. }
  13296. },
  13297. foot: {
  13298. height: math.unit(2.285, "feet"),
  13299. name: "Foot",
  13300. image: {
  13301. source: "./media/characters/nightraver/foot.svg"
  13302. }
  13303. },
  13304. maw: {
  13305. height: math.unit(2.67, "feet"),
  13306. name: "Maw",
  13307. image: {
  13308. source: "./media/characters/nightraver/maw.svg"
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Micro",
  13315. height: math.unit(1, "cm")
  13316. },
  13317. {
  13318. name: "Normal",
  13319. height: math.unit(15, "feet"),
  13320. default: true
  13321. },
  13322. {
  13323. name: "Macro",
  13324. height: math.unit(300, "feet")
  13325. },
  13326. {
  13327. name: "Megamacro",
  13328. height: math.unit(300, "miles")
  13329. },
  13330. {
  13331. name: "Gigamacro",
  13332. height: math.unit(10000, "miles")
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13338. {
  13339. side: {
  13340. height: math.unit(2, "inches"),
  13341. weight: math.unit(5, "grams"),
  13342. name: "Side",
  13343. image: {
  13344. source: "./media/characters/arc/side.svg"
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Micro",
  13351. height: math.unit(2, "inches"),
  13352. default: true
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13358. {
  13359. front: {
  13360. height: math.unit(1.1938, "meters"),
  13361. weight: math.unit(54, "kg"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/nebula-shahar/front.svg",
  13365. extra: 1642 / 1436,
  13366. bottom: 0.06
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Megamicro",
  13373. height: math.unit(0.3, "mm")
  13374. },
  13375. {
  13376. name: "Micro",
  13377. height: math.unit(3, "cm")
  13378. },
  13379. {
  13380. name: "Normal",
  13381. height: math.unit(138, "cm"),
  13382. default: true
  13383. },
  13384. {
  13385. name: "Macro",
  13386. height: math.unit(30, "m")
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13392. {
  13393. front: {
  13394. height: math.unit(5.24, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/shayla/front.svg",
  13399. extra: 1512 / 1414,
  13400. bottom: 0.01
  13401. }
  13402. },
  13403. back: {
  13404. height: math.unit(5.24, "feet"),
  13405. weight: math.unit(150, "lb"),
  13406. name: "Back",
  13407. image: {
  13408. source: "./media/characters/shayla/back.svg",
  13409. extra: 1512 / 1414
  13410. }
  13411. },
  13412. hand: {
  13413. height: math.unit(0.7781496062992126, "feet"),
  13414. name: "Hand",
  13415. image: {
  13416. source: "./media/characters/shayla/hand.svg"
  13417. }
  13418. },
  13419. foot: {
  13420. height: math.unit(1.4206036745406823, "feet"),
  13421. name: "Foot",
  13422. image: {
  13423. source: "./media/characters/shayla/foot.svg"
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Micro",
  13430. height: math.unit(0.32, "feet")
  13431. },
  13432. {
  13433. name: "Normal",
  13434. height: math.unit(5.24, "feet"),
  13435. default: true
  13436. },
  13437. {
  13438. name: "Macro",
  13439. height: math.unit(492.12, "feet")
  13440. },
  13441. {
  13442. name: "Megamacro",
  13443. height: math.unit(186.41, "miles")
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(2.2, "m"),
  13452. weight: math.unit(120, "kg"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/pia-jr/front.svg",
  13456. extra: 1000 / 970,
  13457. bottom: 0.035
  13458. }
  13459. },
  13460. hand: {
  13461. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13462. name: "Hand",
  13463. image: {
  13464. source: "./media/characters/pia-jr/hand.svg"
  13465. }
  13466. },
  13467. paw: {
  13468. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13469. name: "Paw",
  13470. image: {
  13471. source: "./media/characters/pia-jr/paw.svg"
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Micro",
  13478. height: math.unit(1.2, "cm")
  13479. },
  13480. {
  13481. name: "Normal",
  13482. height: math.unit(2.2, "m"),
  13483. default: true
  13484. },
  13485. {
  13486. name: "Macro",
  13487. height: math.unit(180, "m")
  13488. },
  13489. {
  13490. name: "Megamacro",
  13491. height: math.unit(420, "km")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13497. {
  13498. front: {
  13499. height: math.unit(2, "m"),
  13500. weight: math.unit(115, "kg"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/pia-sr/front.svg",
  13504. extra: 760 / 730,
  13505. bottom: 0.015
  13506. }
  13507. },
  13508. back: {
  13509. height: math.unit(2, "m"),
  13510. weight: math.unit(115, "kg"),
  13511. name: "Back",
  13512. image: {
  13513. source: "./media/characters/pia-sr/back.svg",
  13514. extra: 760 / 730,
  13515. bottom: 0.01
  13516. }
  13517. },
  13518. hand: {
  13519. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13520. name: "Hand",
  13521. image: {
  13522. source: "./media/characters/pia-sr/hand.svg"
  13523. }
  13524. },
  13525. foot: {
  13526. height: math.unit(1.83, "feet"),
  13527. name: "Foot",
  13528. image: {
  13529. source: "./media/characters/pia-sr/foot.svg"
  13530. }
  13531. },
  13532. },
  13533. [
  13534. {
  13535. name: "Micro",
  13536. height: math.unit(88, "mm")
  13537. },
  13538. {
  13539. name: "Normal",
  13540. height: math.unit(2, "m"),
  13541. default: true
  13542. },
  13543. {
  13544. name: "Macro",
  13545. height: math.unit(200, "m")
  13546. },
  13547. {
  13548. name: "Megamacro",
  13549. height: math.unit(420, "km")
  13550. },
  13551. ]
  13552. ))
  13553. characterMakers.push(() => makeCharacter(
  13554. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13555. {
  13556. front: {
  13557. height: math.unit(8 + 2 / 12, "feet"),
  13558. weight: math.unit(300, "lb"),
  13559. name: "Front",
  13560. image: {
  13561. source: "./media/characters/kibibyte/front.svg",
  13562. extra: 2221 / 2098,
  13563. bottom: 0.04
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Normal",
  13570. height: math.unit(8 + 2 / 12, "feet"),
  13571. default: true
  13572. },
  13573. {
  13574. name: "Socialable Macro",
  13575. height: math.unit(50, "feet")
  13576. },
  13577. {
  13578. name: "Macro",
  13579. height: math.unit(300, "feet")
  13580. },
  13581. {
  13582. name: "Megamacro",
  13583. height: math.unit(500, "miles")
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13589. {
  13590. front: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(150, "lb"),
  13593. name: "Front",
  13594. image: {
  13595. source: "./media/characters/felix/front.svg",
  13596. extra: 762 / 722,
  13597. bottom: 0.02
  13598. }
  13599. },
  13600. frontClothed: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(150, "lb"),
  13603. name: "Front (Clothed)",
  13604. image: {
  13605. source: "./media/characters/felix/front-clothed.svg",
  13606. extra: 762 / 722,
  13607. bottom: 0.02
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Normal",
  13614. height: math.unit(6 + 8 / 12, "feet"),
  13615. default: true
  13616. },
  13617. {
  13618. name: "Macro",
  13619. height: math.unit(2600, "feet")
  13620. },
  13621. {
  13622. name: "Megamacro",
  13623. height: math.unit(450, "miles")
  13624. },
  13625. ]
  13626. ))
  13627. characterMakers.push(() => makeCharacter(
  13628. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13629. {
  13630. front: {
  13631. height: math.unit(6 + 1 / 12, "feet"),
  13632. weight: math.unit(250, "lb"),
  13633. name: "Front",
  13634. image: {
  13635. source: "./media/characters/tobo/front.svg",
  13636. extra: 608 / 586,
  13637. bottom: 0.023
  13638. }
  13639. },
  13640. back: {
  13641. height: math.unit(6 + 1 / 12, "feet"),
  13642. weight: math.unit(250, "lb"),
  13643. name: "Back",
  13644. image: {
  13645. source: "./media/characters/tobo/back.svg",
  13646. extra: 608 / 586
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Nano",
  13653. height: math.unit(2, "nm")
  13654. },
  13655. {
  13656. name: "Megamicro",
  13657. height: math.unit(0.1, "mm")
  13658. },
  13659. {
  13660. name: "Micro",
  13661. height: math.unit(1, "inch"),
  13662. default: true
  13663. },
  13664. {
  13665. name: "Human-sized",
  13666. height: math.unit(6 + 1 / 12, "feet")
  13667. },
  13668. {
  13669. name: "Macro",
  13670. height: math.unit(250, "feet")
  13671. },
  13672. {
  13673. name: "Megamacro",
  13674. height: math.unit(75, "miles")
  13675. },
  13676. {
  13677. name: "Texas-sized",
  13678. height: math.unit(750, "miles")
  13679. },
  13680. {
  13681. name: "Teramacro",
  13682. height: math.unit(50000, "miles")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(6, "feet"),
  13691. weight: math.unit(269, "lb"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/danny-kapowsky/front.svg",
  13695. extra: 766 / 736,
  13696. bottom: 0.044
  13697. }
  13698. },
  13699. back: {
  13700. height: math.unit(6, "feet"),
  13701. weight: math.unit(269, "lb"),
  13702. name: "Back",
  13703. image: {
  13704. source: "./media/characters/danny-kapowsky/back.svg",
  13705. extra: 797 / 760,
  13706. bottom: 0.025
  13707. }
  13708. },
  13709. },
  13710. [
  13711. {
  13712. name: "Macro",
  13713. height: math.unit(150, "feet"),
  13714. default: true
  13715. },
  13716. {
  13717. name: "Macro+",
  13718. height: math.unit(200, "feet")
  13719. },
  13720. {
  13721. name: "Macro++",
  13722. height: math.unit(300, "feet")
  13723. },
  13724. {
  13725. name: "Macro+++",
  13726. height: math.unit(400, "feet")
  13727. },
  13728. ]
  13729. ))
  13730. characterMakers.push(() => makeCharacter(
  13731. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13732. {
  13733. side: {
  13734. height: math.unit(6, "feet"),
  13735. weight: math.unit(170, "lb"),
  13736. name: "Side",
  13737. image: {
  13738. source: "./media/characters/finn/side.svg",
  13739. extra: 1953 / 1807,
  13740. bottom: 0.057
  13741. }
  13742. },
  13743. },
  13744. [
  13745. {
  13746. name: "Megamacro",
  13747. height: math.unit(14445, "feet"),
  13748. default: true
  13749. },
  13750. ]
  13751. ))
  13752. characterMakers.push(() => makeCharacter(
  13753. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13754. {
  13755. front: {
  13756. height: math.unit(5 + 6 / 12, "feet"),
  13757. weight: math.unit(125, "lb"),
  13758. name: "Front",
  13759. image: {
  13760. source: "./media/characters/roy/front.svg",
  13761. extra: 1,
  13762. bottom: 0.11
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Micro",
  13769. height: math.unit(3, "inches"),
  13770. default: true
  13771. },
  13772. {
  13773. name: "Normal",
  13774. height: math.unit(5 + 6 / 12, "feet")
  13775. },
  13776. {
  13777. name: "Lesser Macro",
  13778. height: math.unit(60, "feet")
  13779. },
  13780. {
  13781. name: "Greater Macro",
  13782. height: math.unit(120, "feet")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(6, "feet"),
  13791. weight: math.unit(100, "lb"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/aevsivs/front.svg",
  13795. extra: 1,
  13796. bottom: 0.03
  13797. }
  13798. },
  13799. back: {
  13800. height: math.unit(6, "feet"),
  13801. weight: math.unit(100, "lb"),
  13802. name: "Back",
  13803. image: {
  13804. source: "./media/characters/aevsivs/back.svg"
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Micro",
  13811. height: math.unit(2, "inches"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Normal",
  13816. height: math.unit(5, "feet")
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13822. {
  13823. front: {
  13824. height: math.unit(5 + 7 / 12, "feet"),
  13825. weight: math.unit(159, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/hildegard/front.svg",
  13829. extra: 289 / 269,
  13830. bottom: 7.63/297.8
  13831. }
  13832. },
  13833. back: {
  13834. height: math.unit(5 + 7 / 12, "feet"),
  13835. weight: math.unit(159, "lb"),
  13836. name: "Back",
  13837. image: {
  13838. source: "./media/characters/hildegard/back.svg",
  13839. extra: 280/260,
  13840. bottom: 2.3/282
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Normal",
  13847. height: math.unit(5 + 7 / 12, "feet"),
  13848. default: true
  13849. },
  13850. ]
  13851. ))
  13852. characterMakers.push(() => makeCharacter(
  13853. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13854. {
  13855. bernard: {
  13856. height: math.unit(2 + 7 / 12, "feet"),
  13857. weight: math.unit(66, "lb"),
  13858. name: "Bernard",
  13859. rename: true,
  13860. image: {
  13861. source: "./media/characters/bernard-wilder/bernard.svg",
  13862. extra: 192 / 128,
  13863. bottom: 0.05
  13864. }
  13865. },
  13866. wilder: {
  13867. height: math.unit(5 + 8 / 12, "feet"),
  13868. weight: math.unit(143, "lb"),
  13869. name: "Wilder",
  13870. rename: true,
  13871. image: {
  13872. source: "./media/characters/bernard-wilder/wilder.svg",
  13873. extra: 361 / 312,
  13874. bottom: 0.02
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(2 + 7 / 12, "feet"),
  13882. default: true
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13888. {
  13889. anthro: {
  13890. height: math.unit(6 + 1 / 12, "feet"),
  13891. weight: math.unit(155, "lb"),
  13892. name: "Anthro",
  13893. image: {
  13894. source: "./media/characters/hearth/anthro.svg",
  13895. extra: 260 / 250,
  13896. bottom: 0.02
  13897. }
  13898. },
  13899. feral: {
  13900. height: math.unit(3.78, "feet"),
  13901. weight: math.unit(35, "kg"),
  13902. name: "Feral",
  13903. image: {
  13904. source: "./media/characters/hearth/feral.svg",
  13905. extra: 153 / 135,
  13906. bottom: 0.03
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(6 + 1 / 12, "feet"),
  13914. default: true
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(6, "feet"),
  13923. weight: math.unit(182, "lb"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/ingrid/front.svg",
  13927. extra: 294 / 268,
  13928. bottom: 0.027
  13929. }
  13930. },
  13931. },
  13932. [
  13933. {
  13934. name: "Normal",
  13935. height: math.unit(6, "feet"),
  13936. default: true
  13937. },
  13938. ]
  13939. ))
  13940. characterMakers.push(() => makeCharacter(
  13941. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13942. {
  13943. eevee: {
  13944. height: math.unit(2 + 10 / 12, "feet"),
  13945. weight: math.unit(86, "lb"),
  13946. name: "Malgam",
  13947. image: {
  13948. source: "./media/characters/malgam/eevee.svg",
  13949. extra: 218 / 180,
  13950. bottom: 0.2
  13951. }
  13952. },
  13953. sylveon: {
  13954. height: math.unit(4, "feet"),
  13955. weight: math.unit(101, "lb"),
  13956. name: "Future Malgam",
  13957. rename: true,
  13958. image: {
  13959. source: "./media/characters/malgam/sylveon.svg",
  13960. extra: 371 / 325,
  13961. bottom: 0.015
  13962. }
  13963. },
  13964. gigantamax: {
  13965. height: math.unit(50, "feet"),
  13966. name: "Gigantamax Malgam",
  13967. rename: true,
  13968. image: {
  13969. source: "./media/characters/malgam/gigantamax.svg"
  13970. }
  13971. },
  13972. },
  13973. [
  13974. {
  13975. name: "Normal",
  13976. height: math.unit(2 + 10 / 12, "feet"),
  13977. default: true
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13983. {
  13984. front: {
  13985. height: math.unit(5 + 11 / 12, "feet"),
  13986. weight: math.unit(188, "lb"),
  13987. name: "Front",
  13988. image: {
  13989. source: "./media/characters/fleur/front.svg",
  13990. extra: 309 / 283,
  13991. bottom: 0.007
  13992. }
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Normal",
  13998. height: math.unit(5 + 11 / 12, "feet"),
  13999. default: true
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14005. {
  14006. front: {
  14007. height: math.unit(5 + 4 / 12, "feet"),
  14008. weight: math.unit(122, "lb"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/jude/front.svg",
  14012. extra: 288 / 273,
  14013. bottom: 0.03
  14014. }
  14015. },
  14016. },
  14017. [
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(5 + 4 / 12, "feet"),
  14021. default: true
  14022. },
  14023. ]
  14024. ))
  14025. characterMakers.push(() => makeCharacter(
  14026. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14027. {
  14028. front: {
  14029. height: math.unit(5 + 11 / 12, "feet"),
  14030. weight: math.unit(190, "lb"),
  14031. name: "Front",
  14032. image: {
  14033. source: "./media/characters/seara/front.svg",
  14034. extra: 1,
  14035. bottom: 0.05
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(5 + 11 / 12, "feet"),
  14043. default: true
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(16 + 5 / 12, "feet"),
  14052. weight: math.unit(524, "lb"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/caspian/front.svg",
  14056. extra: 1,
  14057. bottom: 0.04
  14058. }
  14059. },
  14060. },
  14061. [
  14062. {
  14063. name: "Normal",
  14064. height: math.unit(16 + 5 / 12, "feet"),
  14065. default: true
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14071. {
  14072. front: {
  14073. height: math.unit(5 + 7 / 12, "feet"),
  14074. weight: math.unit(170, "lb"),
  14075. name: "Front",
  14076. image: {
  14077. source: "./media/characters/mika/front.svg",
  14078. extra: 1,
  14079. bottom: 0.016
  14080. }
  14081. },
  14082. },
  14083. [
  14084. {
  14085. name: "Normal",
  14086. height: math.unit(5 + 7 / 12, "feet"),
  14087. default: true
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(6 + 2 / 12, "feet"),
  14096. weight: math.unit(268, "lb"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/sol/front.svg",
  14100. extra: 247 / 231,
  14101. bottom: 0.05
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(6 + 2 / 12, "feet"),
  14109. default: true
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14115. {
  14116. buizel: {
  14117. height: math.unit(2 + 5 / 12, "feet"),
  14118. weight: math.unit(87, "lb"),
  14119. name: "Buizel",
  14120. image: {
  14121. source: "./media/characters/umiko/buizel.svg",
  14122. extra: 172 / 157,
  14123. bottom: 0.01
  14124. }
  14125. },
  14126. floatzel: {
  14127. height: math.unit(5 + 9 / 12, "feet"),
  14128. weight: math.unit(250, "lb"),
  14129. name: "Floatzel",
  14130. image: {
  14131. source: "./media/characters/umiko/floatzel.svg",
  14132. extra: 262 / 248
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Normal",
  14139. height: math.unit(2 + 5 / 12, "feet"),
  14140. default: true
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(6 + 2 / 12, "feet"),
  14149. weight: math.unit(146, "lb"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/iliac/front.svg",
  14153. extra: 389 / 365,
  14154. bottom: 0.035
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Normal",
  14161. height: math.unit(6 + 2 / 12, "feet"),
  14162. default: true
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14168. {
  14169. front: {
  14170. height: math.unit(6, "feet"),
  14171. weight: math.unit(170, "lb"),
  14172. name: "Front",
  14173. image: {
  14174. source: "./media/characters/topaz/front.svg",
  14175. extra: 317 / 303,
  14176. bottom: 0.055
  14177. }
  14178. },
  14179. },
  14180. [
  14181. {
  14182. name: "Normal",
  14183. height: math.unit(6, "feet"),
  14184. default: true
  14185. },
  14186. ]
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14190. {
  14191. front: {
  14192. height: math.unit(5 + 11 / 12, "feet"),
  14193. weight: math.unit(144, "lb"),
  14194. name: "Front",
  14195. image: {
  14196. source: "./media/characters/gabriel/front.svg",
  14197. extra: 285 / 262,
  14198. bottom: 0.004
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Normal",
  14205. height: math.unit(5 + 11 / 12, "feet"),
  14206. default: true
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14212. {
  14213. side: {
  14214. height: math.unit(6 + 5 / 12, "feet"),
  14215. weight: math.unit(300, "lb"),
  14216. name: "Side",
  14217. image: {
  14218. source: "./media/characters/tempest-suicune/side.svg",
  14219. extra: 195 / 154,
  14220. bottom: 0.04
  14221. }
  14222. },
  14223. },
  14224. [
  14225. {
  14226. name: "Normal",
  14227. height: math.unit(6 + 5 / 12, "feet"),
  14228. default: true
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14234. {
  14235. front: {
  14236. height: math.unit(7 + 2 / 12, "feet"),
  14237. weight: math.unit(322, "lb"),
  14238. name: "Front",
  14239. image: {
  14240. source: "./media/characters/vulcan/front.svg",
  14241. extra: 154 / 147,
  14242. bottom: 0.04
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Normal",
  14249. height: math.unit(7 + 2 / 12, "feet"),
  14250. default: true
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14256. {
  14257. front: {
  14258. height: math.unit(5 + 10 / 12, "feet"),
  14259. weight: math.unit(264, "lb"),
  14260. name: "Front",
  14261. image: {
  14262. source: "./media/characters/gault/front.svg",
  14263. extra: 161 / 140,
  14264. bottom: 0.028
  14265. }
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "Normal",
  14271. height: math.unit(5 + 10 / 12, "feet"),
  14272. default: true
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/shard/front.svg",
  14285. extra: 273 / 238,
  14286. bottom: 0.02
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Normal",
  14293. height: math.unit(3 + 6 / 12, "feet"),
  14294. default: true
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14300. {
  14301. front: {
  14302. height: math.unit(5 + 11 / 12, "feet"),
  14303. weight: math.unit(146, "lb"),
  14304. name: "Front",
  14305. image: {
  14306. source: "./media/characters/ashe/front.svg",
  14307. extra: 400 / 373,
  14308. bottom: 0.01
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Normal",
  14315. height: math.unit(5 + 11 / 12, "feet"),
  14316. default: true
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14322. {
  14323. front: {
  14324. height: math.unit(5 + 5 / 12, "feet"),
  14325. weight: math.unit(135, "lb"),
  14326. name: "Front",
  14327. image: {
  14328. source: "./media/characters/beatrix/front.svg",
  14329. extra: 392 / 379,
  14330. bottom: 0.01
  14331. }
  14332. },
  14333. },
  14334. [
  14335. {
  14336. name: "Normal",
  14337. height: math.unit(6, "feet"),
  14338. default: true
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14344. {
  14345. front: {
  14346. height: math.unit(6, "feet"),
  14347. weight: math.unit(150, "lb"),
  14348. name: "Front",
  14349. image: {
  14350. source: "./media/characters/ignatius/front.svg",
  14351. extra: 245 / 222,
  14352. bottom: 0.01
  14353. }
  14354. },
  14355. },
  14356. [
  14357. {
  14358. name: "Normal",
  14359. height: math.unit(5 + 5 / 12, "feet"),
  14360. default: true
  14361. },
  14362. ]
  14363. ))
  14364. characterMakers.push(() => makeCharacter(
  14365. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14366. {
  14367. front: {
  14368. height: math.unit(6 + 2 / 12, "feet"),
  14369. weight: math.unit(138, "lb"),
  14370. name: "Front",
  14371. image: {
  14372. source: "./media/characters/mei-li/front.svg",
  14373. extra: 237 / 229,
  14374. bottom: 0.03
  14375. }
  14376. },
  14377. },
  14378. [
  14379. {
  14380. name: "Normal",
  14381. height: math.unit(6 + 2 / 12, "feet"),
  14382. default: true
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14388. {
  14389. front: {
  14390. height: math.unit(2 + 4 / 12, "feet"),
  14391. weight: math.unit(62, "lb"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/puru/front.svg",
  14395. extra: 206 / 149,
  14396. bottom: 0.06
  14397. }
  14398. },
  14399. },
  14400. [
  14401. {
  14402. name: "Normal",
  14403. height: math.unit(2 + 4 / 12, "feet"),
  14404. default: true
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14410. {
  14411. taur: {
  14412. height: math.unit(11, "feet"),
  14413. weight: math.unit(500, "lb"),
  14414. name: "Taur",
  14415. image: {
  14416. source: "./media/characters/kee/taur.svg",
  14417. extra: 1,
  14418. bottom: 0.04
  14419. }
  14420. },
  14421. },
  14422. [
  14423. {
  14424. name: "Normal",
  14425. height: math.unit(11, "feet"),
  14426. default: true
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14432. {
  14433. anthro: {
  14434. height: math.unit(7, "feet"),
  14435. weight: math.unit(190, "lb"),
  14436. name: "Anthro",
  14437. image: {
  14438. source: "./media/characters/cobalt-dracha/anthro.svg",
  14439. extra: 231 / 225,
  14440. bottom: 0.04
  14441. }
  14442. },
  14443. feral: {
  14444. height: math.unit(9 + 7 / 12, "feet"),
  14445. weight: math.unit(294, "lb"),
  14446. name: "Feral",
  14447. image: {
  14448. source: "./media/characters/cobalt-dracha/feral.svg",
  14449. extra: 692 / 633,
  14450. bottom: 0.05
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Normal",
  14457. height: math.unit(7, "feet"),
  14458. default: true
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14464. {
  14465. fallen: {
  14466. height: math.unit(11 + 8 / 12, "feet"),
  14467. weight: math.unit(485, "lb"),
  14468. name: "Java (Fallen)",
  14469. rename: true,
  14470. image: {
  14471. source: "./media/characters/java/fallen.svg",
  14472. extra: 226 / 208,
  14473. bottom: 0.005
  14474. }
  14475. },
  14476. godkin: {
  14477. height: math.unit(10 + 6 / 12, "feet"),
  14478. weight: math.unit(328, "lb"),
  14479. name: "Java (Godkin)",
  14480. rename: true,
  14481. image: {
  14482. source: "./media/characters/java/godkin.svg",
  14483. extra: 270 / 262,
  14484. bottom: 0.02
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Normal",
  14491. height: math.unit(11 + 8 / 12, "feet"),
  14492. default: true
  14493. },
  14494. ]
  14495. ))
  14496. characterMakers.push(() => makeCharacter(
  14497. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14498. {
  14499. front: {
  14500. height: math.unit(7 + 8 / 12, "feet"),
  14501. weight: math.unit(320, "lb"),
  14502. name: "Front",
  14503. image: {
  14504. source: "./media/characters/skoll/front.svg",
  14505. extra: 232 / 220,
  14506. bottom: 0.02
  14507. }
  14508. },
  14509. },
  14510. [
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(7 + 8 / 12, "feet"),
  14514. default: true
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14520. {
  14521. front: {
  14522. height: math.unit(5 + 9 / 12, "feet"),
  14523. weight: math.unit(170, "lb"),
  14524. name: "Front",
  14525. image: {
  14526. source: "./media/characters/purna/front.svg",
  14527. extra: 239 / 229,
  14528. bottom: 0.01
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Normal",
  14535. height: math.unit(5 + 9 / 12, "feet"),
  14536. default: true
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14542. {
  14543. front: {
  14544. height: math.unit(5 + 9 / 12, "feet"),
  14545. weight: math.unit(142, "lb"),
  14546. name: "Front",
  14547. image: {
  14548. source: "./media/characters/kuva/front.svg",
  14549. extra: 281 / 271,
  14550. bottom: 0.006
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Normal",
  14557. height: math.unit(5 + 9 / 12, "feet"),
  14558. default: true
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14564. {
  14565. anthro: {
  14566. height: math.unit(9 + 2 / 12, "feet"),
  14567. weight: math.unit(270, "lb"),
  14568. name: "Anthro",
  14569. image: {
  14570. source: "./media/characters/embra/anthro.svg",
  14571. extra: 200 / 187,
  14572. bottom: 0.02
  14573. }
  14574. },
  14575. feral: {
  14576. height: math.unit(18 + 8 / 12, "feet"),
  14577. weight: math.unit(576, "lb"),
  14578. name: "Feral",
  14579. image: {
  14580. source: "./media/characters/embra/feral.svg",
  14581. extra: 152 / 137,
  14582. bottom: 0.037
  14583. }
  14584. },
  14585. },
  14586. [
  14587. {
  14588. name: "Normal",
  14589. height: math.unit(9 + 2 / 12, "feet"),
  14590. default: true
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14596. {
  14597. anthro: {
  14598. height: math.unit(10 + 9 / 12, "feet"),
  14599. weight: math.unit(224, "lb"),
  14600. name: "Anthro",
  14601. image: {
  14602. source: "./media/characters/grottos/anthro.svg",
  14603. extra: 350 / 332,
  14604. bottom: 0.045
  14605. }
  14606. },
  14607. feral: {
  14608. height: math.unit(20 + 7 / 12, "feet"),
  14609. weight: math.unit(629, "lb"),
  14610. name: "Feral",
  14611. image: {
  14612. source: "./media/characters/grottos/feral.svg",
  14613. extra: 207 / 190,
  14614. bottom: 0.05
  14615. }
  14616. },
  14617. },
  14618. [
  14619. {
  14620. name: "Normal",
  14621. height: math.unit(10 + 9 / 12, "feet"),
  14622. default: true
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14628. {
  14629. anthro: {
  14630. height: math.unit(9 + 6 / 12, "feet"),
  14631. weight: math.unit(298, "lb"),
  14632. name: "Anthro",
  14633. image: {
  14634. source: "./media/characters/frifna/anthro.svg",
  14635. extra: 282 / 269,
  14636. bottom: 0.015
  14637. }
  14638. },
  14639. feral: {
  14640. height: math.unit(16 + 2 / 12, "feet"),
  14641. weight: math.unit(624, "lb"),
  14642. name: "Feral",
  14643. image: {
  14644. source: "./media/characters/frifna/feral.svg"
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(9 + 6 / 12, "feet"),
  14652. default: true
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6 + 2 / 12, "feet"),
  14661. weight: math.unit(168, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/elise/front.svg",
  14665. extra: 276 / 271
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(6 + 2 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(5 + 10 / 12, "feet"),
  14682. weight: math.unit(210, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/glade/front.svg",
  14686. extra: 258 / 247,
  14687. bottom: 0.008
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(5 + 10 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(5 + 10 / 12, "feet"),
  14704. weight: math.unit(129, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/rina/front.svg",
  14708. extra: 266 / 255,
  14709. bottom: 0.005
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(5 + 10 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(6 + 1 / 12, "feet"),
  14726. weight: math.unit(192, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/veronica/front.svg",
  14730. extra: 319 / 309,
  14731. bottom: 0.005
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(6 + 1 / 12, "feet"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(9 + 3 / 12, "feet"),
  14748. weight: math.unit(1100, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/braxton/front.svg",
  14752. extra: 1057 / 984,
  14753. bottom: 0.05
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(9 + 3 / 12, "feet")
  14761. },
  14762. {
  14763. name: "Giant",
  14764. height: math.unit(300, "feet"),
  14765. default: true
  14766. },
  14767. {
  14768. name: "Macro",
  14769. height: math.unit(700, "feet")
  14770. },
  14771. {
  14772. name: "Megamacro",
  14773. height: math.unit(6000, "feet")
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(6 + 7 / 12, "feet"),
  14782. weight: math.unit(150, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/blue-feyonics/front.svg",
  14786. extra: 1403 / 1306,
  14787. bottom: 0.047
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Normal",
  14794. height: math.unit(6 + 7 / 12, "feet"),
  14795. default: true
  14796. },
  14797. ]
  14798. ))
  14799. characterMakers.push(() => makeCharacter(
  14800. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14801. {
  14802. front: {
  14803. height: math.unit(1.8, "meters"),
  14804. weight: math.unit(60, "kg"),
  14805. name: "Front",
  14806. image: {
  14807. source: "./media/characters/maxwell/front.svg",
  14808. extra: 2060 / 1873
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Micro",
  14815. height: math.unit(1, "mm")
  14816. },
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(1.8, "meter"),
  14820. default: true
  14821. },
  14822. {
  14823. name: "Macro",
  14824. height: math.unit(30, "meters")
  14825. },
  14826. {
  14827. name: "Megamacro",
  14828. height: math.unit(10, "km")
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/jack/front.svg",
  14841. extra: 1754 / 1640,
  14842. bottom: 0.01
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(80000, "feet"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Max size",
  14854. height: math.unit(10, "lightyears")
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14860. {
  14861. upright: {
  14862. height: math.unit(7, "feet"),
  14863. weight: math.unit(170, "lb"),
  14864. name: "Upright",
  14865. image: {
  14866. source: "./media/characters/cafat/upright.svg",
  14867. bottom: 0.01
  14868. }
  14869. },
  14870. uprightFull: {
  14871. height: math.unit(7, "feet"),
  14872. weight: math.unit(170, "lb"),
  14873. name: "Upright (Full)",
  14874. image: {
  14875. source: "./media/characters/cafat/upright-full.svg",
  14876. bottom: 0.01
  14877. }
  14878. },
  14879. side: {
  14880. height: math.unit(5, "feet"),
  14881. weight: math.unit(150, "lb"),
  14882. name: "Side",
  14883. image: {
  14884. source: "./media/characters/cafat/side.svg"
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Small",
  14891. height: math.unit(7, "feet"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Large",
  14896. height: math.unit(15.5, "feet")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(6, "feet"),
  14905. weight: math.unit(150, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/verin-raharra/front.svg",
  14909. extra: 5019 / 4835,
  14910. bottom: 0.023
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(7 + 5 / 12, "feet"),
  14918. default: true
  14919. },
  14920. {
  14921. name: "Upsized",
  14922. height: math.unit(20, "feet")
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(7, "feet"),
  14931. weight: math.unit(230, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/nakata/front.svg",
  14935. extra: 1.005,
  14936. bottom: 0.01
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(7, "feet"),
  14944. default: true
  14945. },
  14946. {
  14947. name: "Big",
  14948. height: math.unit(14, "feet")
  14949. },
  14950. {
  14951. name: "Macro",
  14952. height: math.unit(400, "feet")
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14958. {
  14959. front: {
  14960. height: math.unit(4.91, "feet"),
  14961. weight: math.unit(100, "lb"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/lily/front.svg",
  14965. extra: 1585 / 1415,
  14966. bottom: 0.02
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(4.91, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14980. {
  14981. laying: {
  14982. height: math.unit(4 + 4 / 12, "feet"),
  14983. weight: math.unit(600, "lb"),
  14984. name: "Laying",
  14985. image: {
  14986. source: "./media/characters/sheila/laying.svg",
  14987. extra: 1333 / 1265,
  14988. bottom: 0.16
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(4 + 4 / 12, "feet"),
  14996. default: true
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(6, "feet"),
  15005. weight: math.unit(190, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/sax/front.svg",
  15009. extra: 1187 / 973,
  15010. bottom: 0.042
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Micro",
  15017. height: math.unit(4, "inches"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/pandora/front.svg",
  15031. extra: 2720 / 2556,
  15032. bottom: 0.015
  15033. }
  15034. },
  15035. back: {
  15036. height: math.unit(6, "feet"),
  15037. weight: math.unit(150, "lb"),
  15038. name: "Back",
  15039. image: {
  15040. source: "./media/characters/pandora/back.svg",
  15041. extra: 2720 / 2556,
  15042. bottom: 0.01
  15043. }
  15044. },
  15045. beans: {
  15046. height: math.unit(6 / 8, "feet"),
  15047. name: "Beans",
  15048. image: {
  15049. source: "./media/characters/pandora/beans.svg"
  15050. }
  15051. },
  15052. skirt: {
  15053. height: math.unit(6, "feet"),
  15054. weight: math.unit(150, "lb"),
  15055. name: "Skirt",
  15056. image: {
  15057. source: "./media/characters/pandora/skirt.svg",
  15058. extra: 1622 / 1525,
  15059. bottom: 0.015
  15060. }
  15061. },
  15062. hoodie: {
  15063. height: math.unit(6, "feet"),
  15064. weight: math.unit(150, "lb"),
  15065. name: "Hoodie",
  15066. image: {
  15067. source: "./media/characters/pandora/hoodie.svg",
  15068. extra: 1622 / 1525,
  15069. bottom: 0.015
  15070. }
  15071. },
  15072. casual: {
  15073. height: math.unit(6, "feet"),
  15074. weight: math.unit(150, "lb"),
  15075. name: "Casual",
  15076. image: {
  15077. source: "./media/characters/pandora/casual.svg",
  15078. extra: 1622 / 1525,
  15079. bottom: 0.015
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Normal",
  15086. height: math.unit(6, "feet")
  15087. },
  15088. {
  15089. name: "Big Steppy",
  15090. height: math.unit(1, "km"),
  15091. default: true
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15097. {
  15098. side: {
  15099. height: math.unit(10, "feet"),
  15100. weight: math.unit(800, "kg"),
  15101. name: "Side",
  15102. image: {
  15103. source: "./media/characters/venio-darcony/side.svg",
  15104. extra: 1373 / 1003,
  15105. bottom: 0.037
  15106. }
  15107. },
  15108. front: {
  15109. height: math.unit(19, "feet"),
  15110. weight: math.unit(800, "kg"),
  15111. name: "Front",
  15112. image: {
  15113. source: "./media/characters/venio-darcony/front.svg"
  15114. }
  15115. },
  15116. back: {
  15117. height: math.unit(19, "feet"),
  15118. weight: math.unit(800, "kg"),
  15119. name: "Back",
  15120. image: {
  15121. source: "./media/characters/venio-darcony/back.svg"
  15122. }
  15123. },
  15124. sideNsfw: {
  15125. height: math.unit(10, "feet"),
  15126. weight: math.unit(800, "kg"),
  15127. name: "Side (NSFW)",
  15128. image: {
  15129. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15130. extra: 1373 / 1003,
  15131. bottom: 0.037
  15132. }
  15133. },
  15134. frontNsfw: {
  15135. height: math.unit(19, "feet"),
  15136. weight: math.unit(800, "kg"),
  15137. name: "Front (NSFW)",
  15138. image: {
  15139. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15140. }
  15141. },
  15142. backNsfw: {
  15143. height: math.unit(19, "feet"),
  15144. weight: math.unit(800, "kg"),
  15145. name: "Back (NSFW)",
  15146. image: {
  15147. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15148. }
  15149. },
  15150. sideArmored: {
  15151. height: math.unit(10, "feet"),
  15152. weight: math.unit(800, "kg"),
  15153. name: "Side (Armored)",
  15154. image: {
  15155. source: "./media/characters/venio-darcony/side-armored.svg",
  15156. extra: 1373 / 1003,
  15157. bottom: 0.037
  15158. }
  15159. },
  15160. frontArmored: {
  15161. height: math.unit(19, "feet"),
  15162. weight: math.unit(900, "kg"),
  15163. name: "Front (Armored)",
  15164. image: {
  15165. source: "./media/characters/venio-darcony/front-armored.svg"
  15166. }
  15167. },
  15168. backArmored: {
  15169. height: math.unit(19, "feet"),
  15170. weight: math.unit(900, "kg"),
  15171. name: "Back (Armored)",
  15172. image: {
  15173. source: "./media/characters/venio-darcony/back-armored.svg"
  15174. }
  15175. },
  15176. sword: {
  15177. height: math.unit(10, "feet"),
  15178. weight: math.unit(50, "lb"),
  15179. name: "Sword",
  15180. image: {
  15181. source: "./media/characters/venio-darcony/sword.svg"
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(10, "feet")
  15189. },
  15190. {
  15191. name: "Macro",
  15192. height: math.unit(130, "feet"),
  15193. default: true
  15194. },
  15195. {
  15196. name: "Macro+",
  15197. height: math.unit(240, "feet")
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15203. {
  15204. front: {
  15205. height: math.unit(6, "feet"),
  15206. weight: math.unit(150, "lb"),
  15207. name: "Front",
  15208. image: {
  15209. source: "./media/characters/veski/front.svg",
  15210. extra: 1299 / 1225,
  15211. bottom: 0.04
  15212. }
  15213. },
  15214. back: {
  15215. height: math.unit(6, "feet"),
  15216. weight: math.unit(150, "lb"),
  15217. name: "Back",
  15218. image: {
  15219. source: "./media/characters/veski/back.svg",
  15220. extra: 1299 / 1225,
  15221. bottom: 0.008
  15222. }
  15223. },
  15224. maw: {
  15225. height: math.unit(1.5 * 1.21, "feet"),
  15226. name: "Maw",
  15227. image: {
  15228. source: "./media/characters/veski/maw.svg"
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Macro",
  15235. height: math.unit(2, "km"),
  15236. default: true
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(5 + 7 / 12, "feet"),
  15245. name: "Front",
  15246. image: {
  15247. source: "./media/characters/isabelle/front.svg",
  15248. extra: 2130 / 1976,
  15249. bottom: 0.05
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Supermicro",
  15256. height: math.unit(10, "micrometers")
  15257. },
  15258. {
  15259. name: "Micro",
  15260. height: math.unit(1, "inch")
  15261. },
  15262. {
  15263. name: "Tiny",
  15264. height: math.unit(5, "inches")
  15265. },
  15266. {
  15267. name: "Standard",
  15268. height: math.unit(5 + 7 / 12, "inches")
  15269. },
  15270. {
  15271. name: "Macro",
  15272. height: math.unit(80, "meters"),
  15273. default: true
  15274. },
  15275. {
  15276. name: "Megamacro",
  15277. height: math.unit(250, "meters")
  15278. },
  15279. {
  15280. name: "Gigamacro",
  15281. height: math.unit(5, "km")
  15282. },
  15283. {
  15284. name: "Cosmic",
  15285. height: math.unit(2.5e6, "miles")
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(6, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/hanzo/front.svg",
  15298. extra: 374 / 344,
  15299. bottom: 0.02
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(8, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15313. {
  15314. front: {
  15315. height: math.unit(7, "feet"),
  15316. weight: math.unit(130, "lb"),
  15317. name: "Front",
  15318. image: {
  15319. source: "./media/characters/anna/front.svg",
  15320. extra: 169 / 145,
  15321. bottom: 0.06
  15322. }
  15323. },
  15324. full: {
  15325. height: math.unit(4.96, "feet"),
  15326. weight: math.unit(220, "lb"),
  15327. name: "Full",
  15328. image: {
  15329. source: "./media/characters/anna/full.svg",
  15330. extra: 138 / 114,
  15331. bottom: 0.15
  15332. }
  15333. },
  15334. tongue: {
  15335. height: math.unit(2.53, "feet"),
  15336. name: "Tongue",
  15337. image: {
  15338. source: "./media/characters/anna/tongue.svg"
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Normal",
  15345. height: math.unit(7, "feet"),
  15346. default: true
  15347. },
  15348. ]
  15349. ))
  15350. characterMakers.push(() => makeCharacter(
  15351. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15352. {
  15353. front: {
  15354. height: math.unit(7, "feet"),
  15355. weight: math.unit(150, "lb"),
  15356. name: "Front",
  15357. image: {
  15358. source: "./media/characters/ian-corvid/front.svg",
  15359. extra: 150 / 142,
  15360. bottom: 0.02
  15361. }
  15362. },
  15363. back: {
  15364. height: math.unit(7, "feet"),
  15365. weight: math.unit(150, "lb"),
  15366. name: "Back",
  15367. image: {
  15368. source: "./media/characters/ian-corvid/back.svg",
  15369. extra: 150 / 143,
  15370. bottom: 0.01
  15371. }
  15372. },
  15373. stomping: {
  15374. height: math.unit(7, "feet"),
  15375. weight: math.unit(150, "lb"),
  15376. name: "Stomping",
  15377. image: {
  15378. source: "./media/characters/ian-corvid/stomping.svg",
  15379. extra: 76 / 72
  15380. }
  15381. },
  15382. sitting: {
  15383. height: math.unit(7 / 1.8, "feet"),
  15384. weight: math.unit(150, "lb"),
  15385. name: "Sitting",
  15386. image: {
  15387. source: "./media/characters/ian-corvid/sitting.svg",
  15388. extra: 1400 / 1269,
  15389. bottom: 0.15
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Tiny Microw",
  15396. height: math.unit(1, "inch")
  15397. },
  15398. {
  15399. name: "Microw",
  15400. height: math.unit(6, "inches")
  15401. },
  15402. {
  15403. name: "Crow",
  15404. height: math.unit(7 + 1 / 12, "feet"),
  15405. default: true
  15406. },
  15407. {
  15408. name: "Macrow",
  15409. height: math.unit(176, "feet")
  15410. },
  15411. ]
  15412. ))
  15413. characterMakers.push(() => makeCharacter(
  15414. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15415. {
  15416. front: {
  15417. height: math.unit(5 + 7 / 12, "feet"),
  15418. weight: math.unit(147, "lb"),
  15419. name: "Front",
  15420. image: {
  15421. source: "./media/characters/natalie-kellon/front.svg",
  15422. extra: 1214 / 1141,
  15423. bottom: 0.02
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Micro",
  15430. height: math.unit(1 / 16, "inch")
  15431. },
  15432. {
  15433. name: "Tiny",
  15434. height: math.unit(4, "inches")
  15435. },
  15436. {
  15437. name: "Normal",
  15438. height: math.unit(5 + 7 / 12, "feet"),
  15439. default: true
  15440. },
  15441. {
  15442. name: "Amazon",
  15443. height: math.unit(12, "feet")
  15444. },
  15445. {
  15446. name: "Giantess",
  15447. height: math.unit(160, "meters")
  15448. },
  15449. {
  15450. name: "Titaness",
  15451. height: math.unit(800, "meters")
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(6, "feet"),
  15460. weight: math.unit(150, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/alluria/front.svg",
  15464. extra: 806 / 738,
  15465. bottom: 0.01
  15466. }
  15467. },
  15468. side: {
  15469. height: math.unit(6, "feet"),
  15470. weight: math.unit(150, "lb"),
  15471. name: "Side",
  15472. image: {
  15473. source: "./media/characters/alluria/side.svg",
  15474. extra: 800 / 750,
  15475. }
  15476. },
  15477. back: {
  15478. height: math.unit(6, "feet"),
  15479. weight: math.unit(150, "lb"),
  15480. name: "Back",
  15481. image: {
  15482. source: "./media/characters/alluria/back.svg",
  15483. extra: 806 / 738,
  15484. }
  15485. },
  15486. frontMaid: {
  15487. height: math.unit(6, "feet"),
  15488. weight: math.unit(150, "lb"),
  15489. name: "Front (Maid)",
  15490. image: {
  15491. source: "./media/characters/alluria/front-maid.svg",
  15492. extra: 806 / 738,
  15493. bottom: 0.01
  15494. }
  15495. },
  15496. sideMaid: {
  15497. height: math.unit(6, "feet"),
  15498. weight: math.unit(150, "lb"),
  15499. name: "Side (Maid)",
  15500. image: {
  15501. source: "./media/characters/alluria/side-maid.svg",
  15502. extra: 800 / 750,
  15503. bottom: 0.005
  15504. }
  15505. },
  15506. backMaid: {
  15507. height: math.unit(6, "feet"),
  15508. weight: math.unit(150, "lb"),
  15509. name: "Back (Maid)",
  15510. image: {
  15511. source: "./media/characters/alluria/back-maid.svg",
  15512. extra: 806 / 738,
  15513. }
  15514. },
  15515. },
  15516. [
  15517. {
  15518. name: "Micro",
  15519. height: math.unit(6, "inches"),
  15520. default: true
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(6, "feet"),
  15529. weight: math.unit(150, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/kyle/front.svg",
  15533. extra: 1069 / 962,
  15534. bottom: 77.228 / 1727.45
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Macro",
  15541. height: math.unit(150, "feet"),
  15542. default: true
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(6, "feet"),
  15551. weight: math.unit(300, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/duncan/front.svg",
  15555. extra: 1650 / 1482,
  15556. bottom: 0.05
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Macro",
  15563. height: math.unit(100, "feet"),
  15564. default: true
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(5 + 4 / 12, "feet"),
  15573. weight: math.unit(220, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/memory/front.svg",
  15577. extra: 3641 / 3545,
  15578. bottom: 0.03
  15579. }
  15580. },
  15581. back: {
  15582. height: math.unit(5 + 4 / 12, "feet"),
  15583. weight: math.unit(220, "lb"),
  15584. name: "Back",
  15585. image: {
  15586. source: "./media/characters/memory/back.svg",
  15587. extra: 3641 / 3545,
  15588. bottom: 0.025
  15589. }
  15590. },
  15591. frontSkirt: {
  15592. height: math.unit(5 + 4 / 12, "feet"),
  15593. weight: math.unit(220, "lb"),
  15594. name: "Front (Skirt)",
  15595. image: {
  15596. source: "./media/characters/memory/front-skirt.svg",
  15597. extra: 3641 / 3545,
  15598. bottom: 0.03
  15599. }
  15600. },
  15601. frontDress: {
  15602. height: math.unit(5 + 4 / 12, "feet"),
  15603. weight: math.unit(220, "lb"),
  15604. name: "Front (Dress)",
  15605. image: {
  15606. source: "./media/characters/memory/front-dress.svg",
  15607. extra: 3641 / 3545,
  15608. bottom: 0.03
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Micro",
  15615. height: math.unit(6, "inches"),
  15616. default: true
  15617. },
  15618. {
  15619. name: "Normal",
  15620. height: math.unit(5 + 4 / 12, "feet")
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(4 + 11 / 12, "feet"),
  15629. weight: math.unit(100, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/luno/front.svg",
  15633. extra: 1535 / 1487,
  15634. bottom: 0.03
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Micro",
  15641. height: math.unit(3, "inches")
  15642. },
  15643. {
  15644. name: "Normal",
  15645. height: math.unit(4 + 11 / 12, "feet"),
  15646. default: true
  15647. },
  15648. {
  15649. name: "Macro",
  15650. height: math.unit(300, "feet")
  15651. },
  15652. {
  15653. name: "Megamacro",
  15654. height: math.unit(700, "miles")
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15660. {
  15661. front: {
  15662. height: math.unit(6 + 2 / 12, "feet"),
  15663. weight: math.unit(170, "lb"),
  15664. name: "Front",
  15665. image: {
  15666. source: "./media/characters/jamesy/front.svg",
  15667. extra: 440 / 382,
  15668. bottom: 0.005
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Micro",
  15675. height: math.unit(3, "inches")
  15676. },
  15677. {
  15678. name: "Normal",
  15679. height: math.unit(6 + 2 / 12, "feet"),
  15680. default: true
  15681. },
  15682. {
  15683. name: "Macro",
  15684. height: math.unit(300, "feet")
  15685. },
  15686. {
  15687. name: "Megamacro",
  15688. height: math.unit(700, "miles")
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(6, "feet"),
  15697. weight: math.unit(160, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/mark/front.svg",
  15701. extra: 3300 / 3100,
  15702. bottom: 136.42 / 3440.47
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Macro",
  15709. height: math.unit(120, "meters")
  15710. },
  15711. {
  15712. name: "Bigger Macro",
  15713. height: math.unit(350, "meters")
  15714. },
  15715. {
  15716. name: "Megamacro",
  15717. height: math.unit(8, "km"),
  15718. default: true
  15719. },
  15720. {
  15721. name: "Continental",
  15722. height: math.unit(4550, "km")
  15723. },
  15724. {
  15725. name: "Planetary",
  15726. height: math.unit(65000, "km")
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(6, "feet"),
  15735. weight: math.unit(400, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/mac/front.svg",
  15739. extra: 1048 / 987.7,
  15740. bottom: 60 / 1107.6,
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Macro",
  15747. height: math.unit(500, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(5 + 2 / 12, "feet"),
  15757. weight: math.unit(190, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/bari/front.svg",
  15761. extra: 3156 / 2880,
  15762. bottom: 0.03
  15763. }
  15764. },
  15765. back: {
  15766. height: math.unit(5 + 2 / 12, "feet"),
  15767. weight: math.unit(190, "lb"),
  15768. name: "Back",
  15769. image: {
  15770. source: "./media/characters/bari/back.svg",
  15771. extra: 3260 / 2834,
  15772. bottom: 0.025
  15773. }
  15774. },
  15775. frontPlush: {
  15776. height: math.unit(5 + 2 / 12, "feet"),
  15777. weight: math.unit(190, "lb"),
  15778. name: "Front (Plush)",
  15779. image: {
  15780. source: "./media/characters/bari/front-plush.svg",
  15781. extra: 1112 / 1061,
  15782. bottom: 0.002
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Micro",
  15789. height: math.unit(3, "inches")
  15790. },
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(5 + 2 / 12, "feet"),
  15794. default: true
  15795. },
  15796. {
  15797. name: "Macro",
  15798. height: math.unit(20, "feet")
  15799. },
  15800. ]
  15801. ))
  15802. characterMakers.push(() => makeCharacter(
  15803. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15804. {
  15805. front: {
  15806. height: math.unit(6 + 1 / 12, "feet"),
  15807. weight: math.unit(275, "lb"),
  15808. name: "Front",
  15809. image: {
  15810. source: "./media/characters/hunter-misha-raven/front.svg"
  15811. }
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Mortal",
  15817. height: math.unit(6 + 1 / 12, "feet")
  15818. },
  15819. {
  15820. name: "Divine",
  15821. height: math.unit(1.12134e34, "parsecs"),
  15822. default: true
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(6 + 3 / 12, "feet"),
  15831. weight: math.unit(220, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/max-calore/front.svg",
  15835. extra: 1700 / 1648,
  15836. bottom: 0.01
  15837. }
  15838. },
  15839. back: {
  15840. height: math.unit(6 + 3 / 12, "feet"),
  15841. weight: math.unit(220, "lb"),
  15842. name: "Back",
  15843. image: {
  15844. source: "./media/characters/max-calore/back.svg",
  15845. extra: 1700 / 1648,
  15846. bottom: 0.01
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Normal",
  15853. height: math.unit(6 + 3 / 12, "feet"),
  15854. default: true
  15855. },
  15856. ]
  15857. ))
  15858. characterMakers.push(() => makeCharacter(
  15859. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15860. {
  15861. side: {
  15862. height: math.unit(2 + 8 / 12, "feet"),
  15863. weight: math.unit(99, "lb"),
  15864. name: "Side",
  15865. image: {
  15866. source: "./media/characters/aspen/side.svg",
  15867. extra: 152 / 138,
  15868. bottom: 0.032
  15869. }
  15870. },
  15871. },
  15872. [
  15873. {
  15874. name: "Normal",
  15875. height: math.unit(2 + 8 / 12, "feet"),
  15876. default: true
  15877. },
  15878. ]
  15879. ))
  15880. characterMakers.push(() => makeCharacter(
  15881. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15882. {
  15883. side: {
  15884. height: math.unit(3 + 2 / 12, "feet"),
  15885. weight: math.unit(224, "lb"),
  15886. name: "Side",
  15887. image: {
  15888. source: "./media/characters/sheila-feral-wolf/side.svg",
  15889. extra: 179 / 166,
  15890. bottom: 0.03
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Normal",
  15897. height: math.unit(3 + 2 / 12, "feet"),
  15898. default: true
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15904. {
  15905. side: {
  15906. height: math.unit(1 + 9 / 12, "feet"),
  15907. weight: math.unit(38, "lb"),
  15908. name: "Side",
  15909. image: {
  15910. source: "./media/characters/michelle/side.svg",
  15911. extra: 147 / 136.7,
  15912. bottom: 0.03
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Normal",
  15919. height: math.unit(1 + 9 / 12, "feet"),
  15920. default: true
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(1 + 1 / 12, "feet"),
  15929. weight: math.unit(18, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/nino/front.svg"
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(1 + 1 / 12, "feet"),
  15940. default: true
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(1, "feet"),
  15949. weight: math.unit(16, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/viola/front.svg"
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Normal",
  15959. height: math.unit(1, "feet"),
  15960. default: true
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15966. {
  15967. front: {
  15968. height: math.unit(6 + 5 / 12, "feet"),
  15969. weight: math.unit(580, "lb"),
  15970. name: "Front",
  15971. image: {
  15972. source: "./media/characters/atlas/front.svg",
  15973. extra: 298.5 / 290,
  15974. bottom: 0.015
  15975. }
  15976. },
  15977. },
  15978. [
  15979. {
  15980. name: "Normal",
  15981. height: math.unit(6 + 5 / 12, "feet"),
  15982. default: true
  15983. },
  15984. ]
  15985. ))
  15986. characterMakers.push(() => makeCharacter(
  15987. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15988. {
  15989. side: {
  15990. height: math.unit(1 + 10 / 12, "feet"),
  15991. weight: math.unit(25, "lb"),
  15992. name: "Side",
  15993. image: {
  15994. source: "./media/characters/davy/side.svg",
  15995. extra: 200 / 170,
  15996. bottom: 0.01
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Normal",
  16003. height: math.unit(1 + 10 / 12, "feet"),
  16004. default: true
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16010. {
  16011. side: {
  16012. height: math.unit(4 + 8 / 12, "feet"),
  16013. weight: math.unit(166, "lb"),
  16014. name: "Side",
  16015. image: {
  16016. source: "./media/characters/fiona/side.svg",
  16017. extra: 232 / 220,
  16018. bottom: 0.03
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(4 + 8 / 12, "feet"),
  16026. default: true
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16032. {
  16033. front: {
  16034. height: math.unit(2, "feet"),
  16035. weight: math.unit(62, "lb"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/lyla/front.svg",
  16039. bottom: 0.1
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(2, "feet"),
  16047. default: true
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16053. {
  16054. side: {
  16055. height: math.unit(1.8, "feet"),
  16056. weight: math.unit(44, "lb"),
  16057. name: "Side",
  16058. image: {
  16059. source: "./media/characters/perseus/side.svg",
  16060. bottom: 0.21
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(1.8, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16074. {
  16075. side: {
  16076. height: math.unit(4 + 2 / 12, "feet"),
  16077. weight: math.unit(20, "lb"),
  16078. name: "Side",
  16079. image: {
  16080. source: "./media/characters/remus/side.svg"
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Normal",
  16087. height: math.unit(4 + 2 / 12, "feet"),
  16088. default: true
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16094. {
  16095. front: {
  16096. height: math.unit(4 + 11 / 12, "feet"),
  16097. weight: math.unit(114, "lb"),
  16098. name: "Front",
  16099. image: {
  16100. source: "./media/characters/raf/front.svg",
  16101. bottom: 0.01
  16102. }
  16103. },
  16104. side: {
  16105. height: math.unit(4 + 11 / 12, "feet"),
  16106. weight: math.unit(114, "lb"),
  16107. name: "Side",
  16108. image: {
  16109. source: "./media/characters/raf/side.svg",
  16110. bottom: 0.005
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Micro",
  16117. height: math.unit(2, "inches")
  16118. },
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(4 + 11 / 12, "feet"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Macro",
  16126. height: math.unit(70, "feet")
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(1.5, "meters"),
  16135. weight: math.unit(68, "kg"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/liam-einarr/front.svg",
  16139. extra: 2822 / 2666
  16140. }
  16141. },
  16142. back: {
  16143. height: math.unit(1.5, "meters"),
  16144. weight: math.unit(68, "kg"),
  16145. name: "Back",
  16146. image: {
  16147. source: "./media/characters/liam-einarr/back.svg",
  16148. extra: 2822 / 2666,
  16149. bottom: 0.015
  16150. }
  16151. },
  16152. },
  16153. [
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(1.5, "meters"),
  16157. default: true
  16158. },
  16159. {
  16160. name: "Macro",
  16161. height: math.unit(150, "meters")
  16162. },
  16163. {
  16164. name: "Megamacro",
  16165. height: math.unit(35, "km")
  16166. },
  16167. ]
  16168. ))
  16169. characterMakers.push(() => makeCharacter(
  16170. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16171. {
  16172. front: {
  16173. height: math.unit(6, "feet"),
  16174. weight: math.unit(75, "kg"),
  16175. name: "Front",
  16176. image: {
  16177. source: "./media/characters/linda/front.svg",
  16178. extra: 930 / 874,
  16179. bottom: 0.004
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Normal",
  16186. height: math.unit(6, "feet"),
  16187. default: true
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(6 + 8 / 12, "feet"),
  16196. weight: math.unit(220, "lb"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/caylex/front.svg",
  16200. extra: 821 / 772,
  16201. bottom: 0.07
  16202. }
  16203. },
  16204. back: {
  16205. height: math.unit(6 + 8 / 12, "feet"),
  16206. weight: math.unit(220, "lb"),
  16207. name: "Back",
  16208. image: {
  16209. source: "./media/characters/caylex/back.svg",
  16210. extra: 821 / 772,
  16211. bottom: 0.022
  16212. }
  16213. },
  16214. hand: {
  16215. height: math.unit(1.25, "feet"),
  16216. name: "Hand",
  16217. image: {
  16218. source: "./media/characters/caylex/hand.svg"
  16219. }
  16220. },
  16221. foot: {
  16222. height: math.unit(1.6, "feet"),
  16223. name: "Foot",
  16224. image: {
  16225. source: "./media/characters/caylex/foot.svg"
  16226. }
  16227. },
  16228. armored: {
  16229. height: math.unit(6 + 8 / 12, "feet"),
  16230. weight: math.unit(250, "lb"),
  16231. name: "Armored",
  16232. image: {
  16233. source: "./media/characters/caylex/armored.svg",
  16234. extra: 1420 / 1310,
  16235. bottom: 0.045
  16236. }
  16237. },
  16238. },
  16239. [
  16240. {
  16241. name: "Normal",
  16242. height: math.unit(6 + 8 / 12, "feet"),
  16243. default: true
  16244. },
  16245. {
  16246. name: "Normal+",
  16247. height: math.unit(12, "feet")
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16253. {
  16254. front: {
  16255. height: math.unit(7 + 6 / 12, "feet"),
  16256. weight: math.unit(288, "lb"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/alana/front.svg",
  16260. extra: 679 / 653,
  16261. bottom: 22.5 / 701
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(7 + 6 / 12, "feet")
  16269. },
  16270. {
  16271. name: "Large",
  16272. height: math.unit(50, "feet")
  16273. },
  16274. {
  16275. name: "Macro",
  16276. height: math.unit(100, "feet"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Macro+",
  16281. height: math.unit(200, "feet")
  16282. },
  16283. ]
  16284. ))
  16285. characterMakers.push(() => makeCharacter(
  16286. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16287. {
  16288. front: {
  16289. height: math.unit(6 + 1 / 12, "feet"),
  16290. weight: math.unit(210, "lb"),
  16291. name: "Front",
  16292. image: {
  16293. source: "./media/characters/hasani/front.svg",
  16294. extra: 244 / 232,
  16295. bottom: 0.01
  16296. }
  16297. },
  16298. back: {
  16299. height: math.unit(6 + 1 / 12, "feet"),
  16300. weight: math.unit(210, "lb"),
  16301. name: "Back",
  16302. image: {
  16303. source: "./media/characters/hasani/back.svg",
  16304. extra: 244 / 232,
  16305. bottom: 0.01
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Normal",
  16312. height: math.unit(6 + 1 / 12, "feet")
  16313. },
  16314. {
  16315. name: "Macro",
  16316. height: math.unit(175, "feet"),
  16317. default: true
  16318. },
  16319. ]
  16320. ))
  16321. characterMakers.push(() => makeCharacter(
  16322. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16323. {
  16324. front: {
  16325. height: math.unit(1.82, "meters"),
  16326. weight: math.unit(140, "lb"),
  16327. name: "Front",
  16328. image: {
  16329. source: "./media/characters/nita/front.svg",
  16330. extra: 2473 / 2363,
  16331. bottom: 0.01
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Normal",
  16338. height: math.unit(1.82, "m")
  16339. },
  16340. {
  16341. name: "Macro",
  16342. height: math.unit(300, "m")
  16343. },
  16344. {
  16345. name: "Mistake Canon",
  16346. height: math.unit(0.5, "miles"),
  16347. default: true
  16348. },
  16349. {
  16350. name: "Big Mistake",
  16351. height: math.unit(13, "miles")
  16352. },
  16353. {
  16354. name: "Playing God",
  16355. height: math.unit(2450, "miles")
  16356. },
  16357. ]
  16358. ))
  16359. characterMakers.push(() => makeCharacter(
  16360. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16361. {
  16362. front: {
  16363. height: math.unit(4, "feet"),
  16364. weight: math.unit(120, "lb"),
  16365. name: "Front",
  16366. image: {
  16367. source: "./media/characters/shiriko/front.svg",
  16368. extra: 195 / 188
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(4, "feet"),
  16376. default: true
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16382. {
  16383. front: {
  16384. height: math.unit(6, "feet"),
  16385. name: "front",
  16386. image: {
  16387. source: "./media/characters/deja/front.svg",
  16388. extra: 926 / 840,
  16389. bottom: 0.07
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Planck Length",
  16396. height: math.unit(1.6e-35, "meters")
  16397. },
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(30.48, "meters"),
  16401. default: true
  16402. },
  16403. {
  16404. name: "Universal",
  16405. height: math.unit(8.8e26, "meters")
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16411. {
  16412. side: {
  16413. height: math.unit(8, "feet"),
  16414. weight: math.unit(6300, "lb"),
  16415. name: "Side",
  16416. image: {
  16417. source: "./media/characters/anima/side.svg",
  16418. bottom: 0.035
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(8, "feet"),
  16426. default: true
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16432. {
  16433. front: {
  16434. height: math.unit(8, "feet"),
  16435. weight: math.unit(350, "lb"),
  16436. name: "Front",
  16437. image: {
  16438. source: "./media/characters/bianca/front.svg",
  16439. extra: 234 / 225,
  16440. bottom: 0.03
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Normal",
  16447. height: math.unit(8, "feet"),
  16448. default: true
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16454. {
  16455. front: {
  16456. height: math.unit(6, "feet"),
  16457. weight: math.unit(150, "lb"),
  16458. name: "Front",
  16459. image: {
  16460. source: "./media/characters/adinia/front.svg",
  16461. extra: 1845 / 1672,
  16462. bottom: 0.02
  16463. }
  16464. },
  16465. back: {
  16466. height: math.unit(6, "feet"),
  16467. weight: math.unit(150, "lb"),
  16468. name: "Back",
  16469. image: {
  16470. source: "./media/characters/adinia/back.svg",
  16471. extra: 1845 / 1672,
  16472. bottom: 0.002
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(11 + 5 / 12, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16486. {
  16487. front: {
  16488. height: math.unit(3, "meters"),
  16489. weight: math.unit(200, "kg"),
  16490. name: "Front",
  16491. image: {
  16492. source: "./media/characters/lykasa/front.svg",
  16493. extra: 1076 / 976,
  16494. bottom: 0.06
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(3, "meters")
  16502. },
  16503. {
  16504. name: "Kaiju",
  16505. height: math.unit(120, "meters"),
  16506. default: true
  16507. },
  16508. {
  16509. name: "Mega Kaiju",
  16510. height: math.unit(240, "km")
  16511. },
  16512. {
  16513. name: "Giga Kaiju",
  16514. height: math.unit(400, "megameters")
  16515. },
  16516. {
  16517. name: "Tera Kaiju",
  16518. height: math.unit(800, "gigameters")
  16519. },
  16520. {
  16521. name: "Kaiju Dragon Goddess",
  16522. height: math.unit(26, "zettaparsecs")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16528. {
  16529. side: {
  16530. height: math.unit(283 / 124 * 6, "feet"),
  16531. weight: math.unit(35000, "lb"),
  16532. name: "Side",
  16533. image: {
  16534. source: "./media/characters/malfaren/side.svg",
  16535. extra: 2500 / 1010,
  16536. bottom: 0.01
  16537. }
  16538. },
  16539. front: {
  16540. height: math.unit(22.36, "feet"),
  16541. weight: math.unit(35000, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/malfaren/front.svg",
  16545. extra: 1631 / 1476,
  16546. bottom: 0.01
  16547. }
  16548. },
  16549. maw: {
  16550. height: math.unit(6.9, "feet"),
  16551. name: "Maw",
  16552. image: {
  16553. source: "./media/characters/malfaren/maw.svg"
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Big",
  16560. height: math.unit(283 / 162 * 6, "feet"),
  16561. },
  16562. {
  16563. name: "Bigger",
  16564. height: math.unit(283 / 124 * 6, "feet")
  16565. },
  16566. {
  16567. name: "Massive",
  16568. height: math.unit(283 / 92 * 6, "feet"),
  16569. default: true
  16570. },
  16571. {
  16572. name: "👀💦",
  16573. height: math.unit(283 / 73 * 6, "feet"),
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(1.7, "m"),
  16582. weight: math.unit(70, "kg"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/kernel/front.svg",
  16586. extra: 222 / 210,
  16587. bottom: 0.007
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Nano",
  16594. height: math.unit(17, "micrometers")
  16595. },
  16596. {
  16597. name: "Micro",
  16598. height: math.unit(1.7, "mm")
  16599. },
  16600. {
  16601. name: "Small",
  16602. height: math.unit(1.7, "cm")
  16603. },
  16604. {
  16605. name: "Normal",
  16606. height: math.unit(1.7, "m"),
  16607. default: true
  16608. },
  16609. ]
  16610. ))
  16611. characterMakers.push(() => makeCharacter(
  16612. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16613. {
  16614. front: {
  16615. height: math.unit(1.75, "meters"),
  16616. weight: math.unit(65, "kg"),
  16617. name: "Front",
  16618. image: {
  16619. source: "./media/characters/jayne-folest/front.svg",
  16620. extra: 2115 / 2007,
  16621. bottom: 0.02
  16622. }
  16623. },
  16624. back: {
  16625. height: math.unit(1.75, "meters"),
  16626. weight: math.unit(65, "kg"),
  16627. name: "Back",
  16628. image: {
  16629. source: "./media/characters/jayne-folest/back.svg",
  16630. extra: 2115 / 2007,
  16631. bottom: 0.005
  16632. }
  16633. },
  16634. frontClothed: {
  16635. height: math.unit(1.75, "meters"),
  16636. weight: math.unit(65, "kg"),
  16637. name: "Front (Clothed)",
  16638. image: {
  16639. source: "./media/characters/jayne-folest/front-clothed.svg",
  16640. extra: 2115 / 2007,
  16641. bottom: 0.035
  16642. }
  16643. },
  16644. hand: {
  16645. height: math.unit(1 / 1.260, "feet"),
  16646. name: "Hand",
  16647. image: {
  16648. source: "./media/characters/jayne-folest/hand.svg"
  16649. }
  16650. },
  16651. foot: {
  16652. height: math.unit(1 / 0.918, "feet"),
  16653. name: "Foot",
  16654. image: {
  16655. source: "./media/characters/jayne-folest/foot.svg"
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Micro",
  16662. height: math.unit(4, "cm")
  16663. },
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(1.75, "meters")
  16667. },
  16668. {
  16669. name: "Macro",
  16670. height: math.unit(47.5, "meters"),
  16671. default: true
  16672. },
  16673. ]
  16674. ))
  16675. characterMakers.push(() => makeCharacter(
  16676. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16677. {
  16678. front: {
  16679. height: math.unit(180, "cm"),
  16680. weight: math.unit(70, "kg"),
  16681. name: "Front",
  16682. image: {
  16683. source: "./media/characters/algier/front.svg",
  16684. extra: 596 / 572,
  16685. bottom: 0.04
  16686. }
  16687. },
  16688. back: {
  16689. height: math.unit(180, "cm"),
  16690. weight: math.unit(70, "kg"),
  16691. name: "Back",
  16692. image: {
  16693. source: "./media/characters/algier/back.svg",
  16694. extra: 596 / 572,
  16695. bottom: 0.025
  16696. }
  16697. },
  16698. frontdressed: {
  16699. height: math.unit(180, "cm"),
  16700. weight: math.unit(150, "kg"),
  16701. name: "Front-dressed",
  16702. image: {
  16703. source: "./media/characters/algier/front-dressed.svg",
  16704. extra: 596 / 572,
  16705. bottom: 0.038
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Micro",
  16712. height: math.unit(5, "cm")
  16713. },
  16714. {
  16715. name: "Normal",
  16716. height: math.unit(180, "cm"),
  16717. default: true
  16718. },
  16719. {
  16720. name: "Macro",
  16721. height: math.unit(64, "m")
  16722. },
  16723. ]
  16724. ))
  16725. characterMakers.push(() => makeCharacter(
  16726. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16727. {
  16728. upright: {
  16729. height: math.unit(7, "feet"),
  16730. weight: math.unit(300, "lb"),
  16731. name: "Upright",
  16732. image: {
  16733. source: "./media/characters/pretzel/upright.svg",
  16734. extra: 534 / 522,
  16735. bottom: 0.065
  16736. }
  16737. },
  16738. sprawling: {
  16739. height: math.unit(3.75, "feet"),
  16740. weight: math.unit(300, "lb"),
  16741. name: "Sprawling",
  16742. image: {
  16743. source: "./media/characters/pretzel/sprawling.svg",
  16744. extra: 314 / 281,
  16745. bottom: 0.1
  16746. }
  16747. },
  16748. tongue: {
  16749. height: math.unit(2, "feet"),
  16750. name: "Tongue",
  16751. image: {
  16752. source: "./media/characters/pretzel/tongue.svg"
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(7, "feet"),
  16760. default: true
  16761. },
  16762. {
  16763. name: "Oversized",
  16764. height: math.unit(15, "feet")
  16765. },
  16766. {
  16767. name: "Huge",
  16768. height: math.unit(30, "feet")
  16769. },
  16770. {
  16771. name: "Macro",
  16772. height: math.unit(250, "feet")
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16778. {
  16779. sideFront: {
  16780. height: math.unit(5 + 2 / 12, "feet"),
  16781. weight: math.unit(120, "lb"),
  16782. name: "Front Side",
  16783. image: {
  16784. source: "./media/characters/roxi/side-front.svg",
  16785. extra: 2924 / 2717,
  16786. bottom: 0.08
  16787. }
  16788. },
  16789. sideBack: {
  16790. height: math.unit(5 + 2 / 12, "feet"),
  16791. weight: math.unit(120, "lb"),
  16792. name: "Back Side",
  16793. image: {
  16794. source: "./media/characters/roxi/side-back.svg",
  16795. extra: 2904 / 2693,
  16796. bottom: 0.06
  16797. }
  16798. },
  16799. front: {
  16800. height: math.unit(5 + 2 / 12, "feet"),
  16801. weight: math.unit(120, "lb"),
  16802. name: "Front",
  16803. image: {
  16804. source: "./media/characters/roxi/front.svg",
  16805. extra: 2028 / 1907,
  16806. bottom: 0.01
  16807. }
  16808. },
  16809. frontAlt: {
  16810. height: math.unit(5 + 2 / 12, "feet"),
  16811. weight: math.unit(120, "lb"),
  16812. name: "Front (Alt)",
  16813. image: {
  16814. source: "./media/characters/roxi/front-alt.svg",
  16815. extra: 1828 / 1798,
  16816. bottom: 0.01
  16817. }
  16818. },
  16819. sitting: {
  16820. height: math.unit(2.8, "feet"),
  16821. weight: math.unit(120, "lb"),
  16822. name: "Sitting",
  16823. image: {
  16824. source: "./media/characters/roxi/sitting.svg",
  16825. extra: 2660 / 2462,
  16826. bottom: 0.1
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Normal",
  16833. height: math.unit(5 + 2 / 12, "feet"),
  16834. default: true
  16835. },
  16836. ]
  16837. ))
  16838. characterMakers.push(() => makeCharacter(
  16839. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16840. {
  16841. side: {
  16842. height: math.unit(55, "feet"),
  16843. weight: math.unit(153, "tons"),
  16844. name: "Side",
  16845. image: {
  16846. source: "./media/characters/shadow/side.svg",
  16847. extra: 701 / 628,
  16848. bottom: 0.02
  16849. }
  16850. },
  16851. flying: {
  16852. height: math.unit(145, "feet"),
  16853. weight: math.unit(153, "tons"),
  16854. name: "Flying",
  16855. image: {
  16856. source: "./media/characters/shadow/flying.svg"
  16857. }
  16858. },
  16859. },
  16860. [
  16861. {
  16862. name: "Normal",
  16863. height: math.unit(55, "feet"),
  16864. default: true
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16870. {
  16871. front: {
  16872. height: math.unit(6, "feet"),
  16873. weight: math.unit(200, "lb"),
  16874. name: "Front",
  16875. image: {
  16876. source: "./media/characters/marcie/front.svg",
  16877. extra: 960 / 876,
  16878. bottom: 58 / 1017.87
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Macro",
  16885. height: math.unit(1, "mile"),
  16886. default: true
  16887. },
  16888. ]
  16889. ))
  16890. characterMakers.push(() => makeCharacter(
  16891. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16892. {
  16893. front: {
  16894. height: math.unit(7, "feet"),
  16895. weight: math.unit(200, "lb"),
  16896. name: "Front",
  16897. image: {
  16898. source: "./media/characters/kachina/front.svg",
  16899. extra: 1290.68 / 1119,
  16900. bottom: 36.5 / 1327.18
  16901. }
  16902. },
  16903. },
  16904. [
  16905. {
  16906. name: "Normal",
  16907. height: math.unit(7, "feet"),
  16908. default: true
  16909. },
  16910. ]
  16911. ))
  16912. characterMakers.push(() => makeCharacter(
  16913. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16914. {
  16915. looking: {
  16916. height: math.unit(2, "meters"),
  16917. weight: math.unit(300, "kg"),
  16918. name: "Looking",
  16919. image: {
  16920. source: "./media/characters/kash/looking.svg",
  16921. extra: 474 / 344,
  16922. bottom: 0.03
  16923. }
  16924. },
  16925. side: {
  16926. height: math.unit(2, "meters"),
  16927. weight: math.unit(300, "kg"),
  16928. name: "Side",
  16929. image: {
  16930. source: "./media/characters/kash/side.svg",
  16931. extra: 302 / 251,
  16932. bottom: 0.03
  16933. }
  16934. },
  16935. front: {
  16936. height: math.unit(2, "meters"),
  16937. weight: math.unit(300, "kg"),
  16938. name: "Front",
  16939. image: {
  16940. source: "./media/characters/kash/front.svg",
  16941. extra: 495 / 360,
  16942. bottom: 0.015
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(2, "meters"),
  16950. default: true
  16951. },
  16952. {
  16953. name: "Big",
  16954. height: math.unit(3, "meters")
  16955. },
  16956. {
  16957. name: "Large",
  16958. height: math.unit(5, "meters")
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16964. {
  16965. feeding: {
  16966. height: math.unit(6.7, "feet"),
  16967. weight: math.unit(350, "lb"),
  16968. name: "Feeding",
  16969. image: {
  16970. source: "./media/characters/lalim/feeding.svg",
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(6.7, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16984. {
  16985. front: {
  16986. height: math.unit(9.5, "feet"),
  16987. weight: math.unit(600, "lb"),
  16988. name: "Front",
  16989. image: {
  16990. source: "./media/characters/de'vout/front.svg",
  16991. extra: 1443 / 1328,
  16992. bottom: 0.025
  16993. }
  16994. },
  16995. back: {
  16996. height: math.unit(9.5, "feet"),
  16997. weight: math.unit(600, "lb"),
  16998. name: "Back",
  16999. image: {
  17000. source: "./media/characters/de'vout/back.svg",
  17001. extra: 1443 / 1328
  17002. }
  17003. },
  17004. frontDressed: {
  17005. height: math.unit(9.5, "feet"),
  17006. weight: math.unit(600, "lb"),
  17007. name: "Front (Dressed",
  17008. image: {
  17009. source: "./media/characters/de'vout/front-dressed.svg",
  17010. extra: 1443 / 1328,
  17011. bottom: 0.025
  17012. }
  17013. },
  17014. backDressed: {
  17015. height: math.unit(9.5, "feet"),
  17016. weight: math.unit(600, "lb"),
  17017. name: "Back (Dressed",
  17018. image: {
  17019. source: "./media/characters/de'vout/back-dressed.svg",
  17020. extra: 1443 / 1328
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(9.5, "feet"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(8, "feet"),
  17037. weight: math.unit(225, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/talana/front.svg",
  17041. extra: 1410 / 1300,
  17042. bottom: 0.015
  17043. }
  17044. },
  17045. frontDressed: {
  17046. height: math.unit(8, "feet"),
  17047. weight: math.unit(225, "lb"),
  17048. name: "Front (Dressed",
  17049. image: {
  17050. source: "./media/characters/talana/front-dressed.svg",
  17051. extra: 1410 / 1300,
  17052. bottom: 0.015
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(8, "feet"),
  17060. default: true
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17066. {
  17067. side: {
  17068. height: math.unit(7.2, "feet"),
  17069. weight: math.unit(150, "lb"),
  17070. name: "Side",
  17071. image: {
  17072. source: "./media/characters/xeauvok/side.svg",
  17073. extra: 1975 / 1523,
  17074. bottom: 0.07
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(7.2, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17088. {
  17089. side: {
  17090. height: math.unit(10, "feet"),
  17091. weight: math.unit(900, "kg"),
  17092. name: "Side",
  17093. image: {
  17094. source: "./media/characters/zara/side.svg",
  17095. extra: 504 / 498
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(10, "feet"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17109. {
  17110. side: {
  17111. height: math.unit(6, "feet"),
  17112. weight: math.unit(150, "lb"),
  17113. name: "Side",
  17114. image: {
  17115. source: "./media/characters/richard-dragon/side.svg",
  17116. extra: 845 / 340,
  17117. bottom: 0.017
  17118. }
  17119. },
  17120. maw: {
  17121. height: math.unit(2.97, "feet"),
  17122. name: "Maw",
  17123. image: {
  17124. source: "./media/characters/richard-dragon/maw.svg"
  17125. }
  17126. },
  17127. },
  17128. [
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17133. {
  17134. front: {
  17135. height: math.unit(4, "feet"),
  17136. weight: math.unit(100, "lb"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/richard-smeargle/front.svg",
  17140. extra: 2952 / 2820,
  17141. bottom: 0.028
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Normal",
  17148. height: math.unit(4, "feet"),
  17149. default: true
  17150. },
  17151. {
  17152. name: "Dynamax",
  17153. height: math.unit(20, "meters")
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(6, "feet"),
  17162. weight: math.unit(110, "lb"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/klay/front.svg",
  17166. extra: 962 / 883,
  17167. bottom: 0.04
  17168. }
  17169. },
  17170. back: {
  17171. height: math.unit(6, "feet"),
  17172. weight: math.unit(110, "lb"),
  17173. name: "Back",
  17174. image: {
  17175. source: "./media/characters/klay/back.svg",
  17176. extra: 962 / 883
  17177. }
  17178. },
  17179. beans: {
  17180. height: math.unit(1.15, "feet"),
  17181. name: "Beans",
  17182. image: {
  17183. source: "./media/characters/klay/beans.svg"
  17184. }
  17185. },
  17186. },
  17187. [
  17188. {
  17189. name: "Micro",
  17190. height: math.unit(6, "inches")
  17191. },
  17192. {
  17193. name: "Mini",
  17194. height: math.unit(3, "feet")
  17195. },
  17196. {
  17197. name: "Normal",
  17198. height: math.unit(6, "feet"),
  17199. default: true
  17200. },
  17201. {
  17202. name: "Big",
  17203. height: math.unit(25, "feet")
  17204. },
  17205. {
  17206. name: "Macro",
  17207. height: math.unit(100, "feet")
  17208. },
  17209. {
  17210. name: "Megamacro",
  17211. height: math.unit(400, "feet")
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17217. {
  17218. front: {
  17219. height: math.unit(6, "feet"),
  17220. weight: math.unit(160, "lb"),
  17221. name: "Front",
  17222. image: {
  17223. source: "./media/characters/marcus/front.svg",
  17224. extra: 734 / 676,
  17225. bottom: 0.03
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Little",
  17232. height: math.unit(6, "feet")
  17233. },
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(110, "feet"),
  17237. default: true
  17238. },
  17239. {
  17240. name: "Macro",
  17241. height: math.unit(250, "feet")
  17242. },
  17243. {
  17244. name: "Megamacro",
  17245. height: math.unit(1000, "feet")
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17251. {
  17252. front: {
  17253. height: math.unit(7, "feet"),
  17254. weight: math.unit(275, "lb"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/claude-delroute/front.svg",
  17258. extra: 230 / 214,
  17259. bottom: 0.007
  17260. }
  17261. },
  17262. side: {
  17263. height: math.unit(7, "feet"),
  17264. weight: math.unit(275, "lb"),
  17265. name: "Side",
  17266. image: {
  17267. source: "./media/characters/claude-delroute/side.svg",
  17268. extra: 222 / 214,
  17269. bottom: 0.01
  17270. }
  17271. },
  17272. back: {
  17273. height: math.unit(7, "feet"),
  17274. weight: math.unit(275, "lb"),
  17275. name: "Back",
  17276. image: {
  17277. source: "./media/characters/claude-delroute/back.svg",
  17278. extra: 230 / 214,
  17279. bottom: 0.015
  17280. }
  17281. },
  17282. maw: {
  17283. height: math.unit(0.6407, "meters"),
  17284. name: "Maw",
  17285. image: {
  17286. source: "./media/characters/claude-delroute/maw.svg"
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(7, "feet"),
  17294. default: true
  17295. },
  17296. {
  17297. name: "Lorge",
  17298. height: math.unit(20, "feet")
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17304. {
  17305. front: {
  17306. height: math.unit(8 + 4 / 12, "feet"),
  17307. weight: math.unit(600, "lb"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/dragonien/front.svg",
  17311. extra: 100 / 94,
  17312. bottom: 3.3 / 103.3445
  17313. }
  17314. },
  17315. back: {
  17316. height: math.unit(8 + 4 / 12, "feet"),
  17317. weight: math.unit(600, "lb"),
  17318. name: "Back",
  17319. image: {
  17320. source: "./media/characters/dragonien/back.svg",
  17321. extra: 776 / 746,
  17322. bottom: 6.4 / 782.0616
  17323. }
  17324. },
  17325. foot: {
  17326. height: math.unit(1.54, "feet"),
  17327. name: "Foot",
  17328. image: {
  17329. source: "./media/characters/dragonien/foot.svg",
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(8 + 4 / 12, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Macro",
  17341. height: math.unit(200, "feet")
  17342. },
  17343. {
  17344. name: "Megamacro",
  17345. height: math.unit(1, "mile")
  17346. },
  17347. {
  17348. name: "Gigamacro",
  17349. height: math.unit(1000, "miles")
  17350. },
  17351. ]
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17355. {
  17356. front: {
  17357. height: math.unit(5 + 2 / 12, "feet"),
  17358. weight: math.unit(110, "lb"),
  17359. name: "Front",
  17360. image: {
  17361. source: "./media/characters/desta/front.svg",
  17362. extra: 767/726,
  17363. bottom: 11.7/779
  17364. }
  17365. },
  17366. back: {
  17367. height: math.unit(5 + 2 / 12, "feet"),
  17368. weight: math.unit(110, "lb"),
  17369. name: "Back",
  17370. image: {
  17371. source: "./media/characters/desta/back.svg",
  17372. extra: 777/728,
  17373. bottom: 6/784
  17374. }
  17375. },
  17376. frontAlt: {
  17377. height: math.unit(5 + 2 / 12, "feet"),
  17378. weight: math.unit(110, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/desta/front-alt.svg",
  17382. extra: 1482 / 1417
  17383. }
  17384. },
  17385. side: {
  17386. height: math.unit(5 + 2 / 12, "feet"),
  17387. weight: math.unit(110, "lb"),
  17388. name: "Side",
  17389. image: {
  17390. source: "./media/characters/desta/side.svg",
  17391. extra: 2579 / 2491,
  17392. bottom: 0.053
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Micro",
  17399. height: math.unit(6, "inches")
  17400. },
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(5 + 2 / 12, "feet"),
  17404. default: true
  17405. },
  17406. {
  17407. name: "Macro",
  17408. height: math.unit(62, "feet")
  17409. },
  17410. {
  17411. name: "Megamacro",
  17412. height: math.unit(1800, "feet")
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(10, "feet"),
  17421. weight: math.unit(700, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/storm-alystar/front.svg",
  17425. extra: 2112 / 1898,
  17426. bottom: 0.034
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Micro",
  17433. height: math.unit(3.5, "inches")
  17434. },
  17435. {
  17436. name: "Normal",
  17437. height: math.unit(10, "feet"),
  17438. default: true
  17439. },
  17440. {
  17441. name: "Macro",
  17442. height: math.unit(400, "feet")
  17443. },
  17444. {
  17445. name: "Deific",
  17446. height: math.unit(60, "miles")
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(2.35, "meters"),
  17455. weight: math.unit(119, "kg"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/ilia/front.svg",
  17459. extra: 1285 / 1255,
  17460. bottom: 0.06
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(2.35, "meters")
  17468. },
  17469. {
  17470. name: "Macro",
  17471. height: math.unit(140, "meters"),
  17472. default: true
  17473. },
  17474. {
  17475. name: "Megamacro",
  17476. height: math.unit(100, "miles")
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17482. {
  17483. front: {
  17484. height: math.unit(6 + 5 / 12, "feet"),
  17485. weight: math.unit(190, "lb"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/kingdead/front.svg",
  17489. extra: 1228 / 1177
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Micro",
  17496. height: math.unit(7, "inches")
  17497. },
  17498. {
  17499. name: "Normal",
  17500. height: math.unit(6 + 5 / 12, "feet")
  17501. },
  17502. {
  17503. name: "Macro",
  17504. height: math.unit(150, "feet"),
  17505. default: true
  17506. },
  17507. {
  17508. name: "Megamacro",
  17509. height: math.unit(200, "miles")
  17510. },
  17511. ]
  17512. ))
  17513. characterMakers.push(() => makeCharacter(
  17514. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17515. {
  17516. front: {
  17517. height: math.unit(8, "feet"),
  17518. weight: math.unit(600, "lb"),
  17519. name: "Front",
  17520. image: {
  17521. source: "./media/characters/kyrehx/front.svg",
  17522. extra: 1195 / 1095,
  17523. bottom: 0.034
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Micro",
  17530. height: math.unit(2, "inches")
  17531. },
  17532. {
  17533. name: "Normal",
  17534. height: math.unit(8, "feet"),
  17535. default: true
  17536. },
  17537. {
  17538. name: "Macro",
  17539. height: math.unit(255, "feet")
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17545. {
  17546. front: {
  17547. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17548. weight: math.unit(184, "lb"),
  17549. name: "Front",
  17550. image: {
  17551. source: "./media/characters/xang/front.svg",
  17552. extra: 845 / 755
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Normal",
  17559. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17560. default: true
  17561. },
  17562. {
  17563. name: "Macro",
  17564. height: math.unit(0.935 * 146, "feet")
  17565. },
  17566. {
  17567. name: "Megamacro",
  17568. height: math.unit(0.935 * 3, "miles")
  17569. },
  17570. ]
  17571. ))
  17572. characterMakers.push(() => makeCharacter(
  17573. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17574. {
  17575. frontDressed: {
  17576. height: math.unit(5 + 7 / 12, "feet"),
  17577. weight: math.unit(140, "lb"),
  17578. name: "Front (Dressed)",
  17579. image: {
  17580. source: "./media/characters/doc-weardno/front-dressed.svg",
  17581. extra: 263 / 234
  17582. }
  17583. },
  17584. backDressed: {
  17585. height: math.unit(5 + 7 / 12, "feet"),
  17586. weight: math.unit(140, "lb"),
  17587. name: "Back (Dressed)",
  17588. image: {
  17589. source: "./media/characters/doc-weardno/back-dressed.svg",
  17590. extra: 266 / 238
  17591. }
  17592. },
  17593. front: {
  17594. height: math.unit(5 + 7 / 12, "feet"),
  17595. weight: math.unit(140, "lb"),
  17596. name: "Front",
  17597. image: {
  17598. source: "./media/characters/doc-weardno/front.svg",
  17599. extra: 254 / 233
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Micro",
  17606. height: math.unit(3, "inches")
  17607. },
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(5 + 7 / 12, "feet"),
  17611. default: true
  17612. },
  17613. {
  17614. name: "Macro",
  17615. height: math.unit(25, "feet")
  17616. },
  17617. {
  17618. name: "Megamacro",
  17619. height: math.unit(2, "miles")
  17620. },
  17621. ]
  17622. ))
  17623. characterMakers.push(() => makeCharacter(
  17624. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17625. {
  17626. front: {
  17627. height: math.unit(6 + 2 / 12, "feet"),
  17628. weight: math.unit(153, "lb"),
  17629. name: "Front",
  17630. image: {
  17631. source: "./media/characters/seth-whilst/front.svg",
  17632. bottom: 0.07
  17633. }
  17634. },
  17635. },
  17636. [
  17637. {
  17638. name: "Micro",
  17639. height: math.unit(5, "inches")
  17640. },
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(6 + 2 / 12, "feet"),
  17644. default: true
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17650. {
  17651. front: {
  17652. height: math.unit(3, "inches"),
  17653. weight: math.unit(8, "grams"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/pocket-jabari/front.svg",
  17657. extra: 1024 / 974,
  17658. bottom: 0.039
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Minimicro",
  17665. height: math.unit(8, "mm")
  17666. },
  17667. {
  17668. name: "Micro",
  17669. height: math.unit(3, "inches"),
  17670. default: true
  17671. },
  17672. {
  17673. name: "Normal",
  17674. height: math.unit(3, "feet")
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17680. {
  17681. front: {
  17682. height: math.unit(15, "feet"),
  17683. weight: math.unit(3280, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/sapphy/front.svg",
  17687. extra: 671 / 577,
  17688. bottom: 0.085
  17689. }
  17690. },
  17691. back: {
  17692. height: math.unit(15, "feet"),
  17693. weight: math.unit(3280, "lb"),
  17694. name: "Back",
  17695. image: {
  17696. source: "./media/characters/sapphy/back.svg",
  17697. extra: 631 / 607,
  17698. bottom: 0.045
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(15, "feet")
  17706. },
  17707. {
  17708. name: "Casual Macro",
  17709. height: math.unit(120, "feet")
  17710. },
  17711. {
  17712. name: "Macro",
  17713. height: math.unit(2150, "feet"),
  17714. default: true
  17715. },
  17716. {
  17717. name: "Megamacro",
  17718. height: math.unit(8, "miles")
  17719. },
  17720. {
  17721. name: "Galaxy Mom",
  17722. height: math.unit(6, "megalightyears")
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(6, "feet"),
  17731. weight: math.unit(170, "lb"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/kiro/front.svg",
  17735. extra: 1064 / 1012,
  17736. bottom: 0.052
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Micro",
  17743. height: math.unit(6, "inches")
  17744. },
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(6, "feet"),
  17748. default: true
  17749. },
  17750. {
  17751. name: "Macro",
  17752. height: math.unit(72, "feet")
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(5 + 9 / 12, "feet"),
  17761. weight: math.unit(175, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/irishfox/front.svg",
  17765. extra: 1912 / 1680,
  17766. bottom: 0.02
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Nano",
  17773. height: math.unit(1, "mm")
  17774. },
  17775. {
  17776. name: "Micro",
  17777. height: math.unit(2, "inches")
  17778. },
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(5 + 9 / 12, "feet"),
  17782. default: true
  17783. },
  17784. {
  17785. name: "Macro",
  17786. height: math.unit(45, "feet")
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(6 + 1 / 12, "feet"),
  17795. weight: math.unit(150, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/aronai-sieyes/front.svg",
  17799. extra: 1556 / 1480,
  17800. bottom: 0.015
  17801. }
  17802. },
  17803. side: {
  17804. height: math.unit(6 + 1 / 12, "feet"),
  17805. weight: math.unit(150, "lb"),
  17806. name: "Side",
  17807. image: {
  17808. source: "./media/characters/aronai-sieyes/side.svg",
  17809. extra: 1433 / 1390,
  17810. bottom: 0.0393
  17811. }
  17812. },
  17813. back: {
  17814. height: math.unit(6 + 1 / 12, "feet"),
  17815. weight: math.unit(150, "lb"),
  17816. name: "Back",
  17817. image: {
  17818. source: "./media/characters/aronai-sieyes/back.svg",
  17819. extra: 1544 / 1494,
  17820. bottom: 0.02
  17821. }
  17822. },
  17823. frontClothed: {
  17824. height: math.unit(6 + 1 / 12, "feet"),
  17825. weight: math.unit(150, "lb"),
  17826. name: "Front (Clothed)",
  17827. image: {
  17828. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17829. extra: 1582 / 1527
  17830. }
  17831. },
  17832. feral: {
  17833. height: math.unit(18, "feet"),
  17834. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17835. name: "Feral",
  17836. image: {
  17837. source: "./media/characters/aronai-sieyes/feral.svg",
  17838. extra: 1530 / 1240,
  17839. bottom: 0.035
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Micro",
  17846. height: math.unit(2, "inches")
  17847. },
  17848. {
  17849. name: "Normal",
  17850. height: math.unit(6 + 1 / 12, "feet"),
  17851. default: true
  17852. }
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(12, "feet"),
  17860. weight: math.unit(410, "kg"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/xuna/front.svg",
  17864. extra: 2184 / 1980
  17865. }
  17866. },
  17867. side: {
  17868. height: math.unit(12, "feet"),
  17869. weight: math.unit(410, "kg"),
  17870. name: "Side",
  17871. image: {
  17872. source: "./media/characters/xuna/side.svg",
  17873. extra: 2184 / 1980
  17874. }
  17875. },
  17876. back: {
  17877. height: math.unit(12, "feet"),
  17878. weight: math.unit(410, "kg"),
  17879. name: "Back",
  17880. image: {
  17881. source: "./media/characters/xuna/back.svg",
  17882. extra: 2184 / 1980
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Nano glow",
  17889. height: math.unit(10, "nm")
  17890. },
  17891. {
  17892. name: "Micro floof",
  17893. height: math.unit(0.3, "m")
  17894. },
  17895. {
  17896. name: "Huggable softy boi",
  17897. height: math.unit(3.6576, "m"),
  17898. default: true
  17899. },
  17900. {
  17901. name: "Admirable floof",
  17902. height: math.unit(80, "meters")
  17903. },
  17904. {
  17905. name: "Gentle macro",
  17906. height: math.unit(300, "meters")
  17907. },
  17908. {
  17909. name: "Very careful floof",
  17910. height: math.unit(3200, "meters")
  17911. },
  17912. {
  17913. name: "The mega floof",
  17914. height: math.unit(36000, "meters")
  17915. },
  17916. {
  17917. name: "Giga-fur-Wicker",
  17918. height: math.unit(4800000, "meters")
  17919. },
  17920. {
  17921. name: "Licky world",
  17922. height: math.unit(20000000, "meters")
  17923. },
  17924. {
  17925. name: "Floofy cyan sun",
  17926. height: math.unit(1500000000, "meters")
  17927. },
  17928. {
  17929. name: "Milky Wicker",
  17930. height: math.unit(1000000000000000000000, "meters")
  17931. },
  17932. {
  17933. name: "The observing Wicker",
  17934. height: math.unit(999999999999999999999999999, "meters")
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17940. {
  17941. front: {
  17942. height: math.unit(5 + 9 / 12, "feet"),
  17943. weight: math.unit(150, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/arokha-sieyes/front.svg",
  17947. extra: 1425 / 1284,
  17948. bottom: 0.05
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(5 + 9 / 12, "feet")
  17956. },
  17957. {
  17958. name: "Macro",
  17959. height: math.unit(30, "meters"),
  17960. default: true
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17966. {
  17967. front: {
  17968. height: math.unit(6, "feet"),
  17969. weight: math.unit(180, "lb"),
  17970. name: "Front",
  17971. image: {
  17972. source: "./media/characters/arokh-sieyes/front.svg",
  17973. extra: 1830 / 1769,
  17974. bottom: 0.01
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Normal",
  17981. height: math.unit(6, "feet")
  17982. },
  17983. {
  17984. name: "Macro",
  17985. height: math.unit(30, "meters"),
  17986. default: true
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17992. {
  17993. side: {
  17994. height: math.unit(13 + 1 / 12, "feet"),
  17995. weight: math.unit(8.5, "tonnes"),
  17996. name: "Side",
  17997. image: {
  17998. source: "./media/characters/goldeneye/side.svg",
  17999. extra: 1182 / 778,
  18000. bottom: 0.067
  18001. }
  18002. },
  18003. paw: {
  18004. height: math.unit(3.4, "feet"),
  18005. name: "Paw",
  18006. image: {
  18007. source: "./media/characters/goldeneye/paw.svg"
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Normal",
  18014. height: math.unit(13 + 1 / 12, "feet"),
  18015. default: true
  18016. },
  18017. ]
  18018. ))
  18019. characterMakers.push(() => makeCharacter(
  18020. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18021. {
  18022. front: {
  18023. height: math.unit(6 + 1 / 12, "feet"),
  18024. weight: math.unit(210, "lb"),
  18025. name: "Front",
  18026. image: {
  18027. source: "./media/characters/leonardo-lycheborne/front.svg",
  18028. extra: 390 / 365,
  18029. bottom: 0.032
  18030. }
  18031. },
  18032. side: {
  18033. height: math.unit(6 + 1 / 12, "feet"),
  18034. weight: math.unit(210, "lb"),
  18035. name: "Side",
  18036. image: {
  18037. source: "./media/characters/leonardo-lycheborne/side.svg",
  18038. extra: 390 / 365,
  18039. bottom: 0.005
  18040. }
  18041. },
  18042. back: {
  18043. height: math.unit(6 + 1 / 12, "feet"),
  18044. weight: math.unit(210, "lb"),
  18045. name: "Back",
  18046. image: {
  18047. source: "./media/characters/leonardo-lycheborne/back.svg",
  18048. extra: 392 / 366,
  18049. bottom: 0.01
  18050. }
  18051. },
  18052. hand: {
  18053. height: math.unit(1.08, "feet"),
  18054. name: "Hand",
  18055. image: {
  18056. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18057. }
  18058. },
  18059. foot: {
  18060. height: math.unit(1.32, "feet"),
  18061. name: "Foot",
  18062. image: {
  18063. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18064. }
  18065. },
  18066. were: {
  18067. height: math.unit(20, "feet"),
  18068. weight: math.unit(7800, "lb"),
  18069. name: "Were",
  18070. image: {
  18071. source: "./media/characters/leonardo-lycheborne/were.svg",
  18072. extra: 308 / 294,
  18073. bottom: 0.048
  18074. }
  18075. },
  18076. feral: {
  18077. height: math.unit(7.5, "feet"),
  18078. weight: math.unit(600, "lb"),
  18079. name: "Feral",
  18080. image: {
  18081. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18082. extra: 210 / 186,
  18083. bottom: 0.108
  18084. }
  18085. },
  18086. taur: {
  18087. height: math.unit(11, "feet"),
  18088. weight: math.unit(3300, "lb"),
  18089. name: "Taur",
  18090. image: {
  18091. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18092. extra: 320 / 303,
  18093. bottom: 0.025
  18094. }
  18095. },
  18096. barghest: {
  18097. height: math.unit(11, "feet"),
  18098. weight: math.unit(1300, "lb"),
  18099. name: "Barghest",
  18100. image: {
  18101. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18102. extra: 323 / 302,
  18103. bottom: 0.027
  18104. }
  18105. },
  18106. dick: {
  18107. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18108. name: "Dick",
  18109. image: {
  18110. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18111. }
  18112. },
  18113. dickWere: {
  18114. height: math.unit((20) / 3.8, "feet"),
  18115. name: "Dick (Were)",
  18116. image: {
  18117. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18118. }
  18119. },
  18120. },
  18121. [
  18122. {
  18123. name: "Normal",
  18124. height: math.unit(6 + 1 / 12, "feet"),
  18125. default: true
  18126. },
  18127. ]
  18128. ))
  18129. characterMakers.push(() => makeCharacter(
  18130. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18131. {
  18132. front: {
  18133. height: math.unit(10, "feet"),
  18134. weight: math.unit(350, "lb"),
  18135. name: "Front",
  18136. image: {
  18137. source: "./media/characters/jet/front.svg",
  18138. extra: 2050 / 1980,
  18139. bottom: 0.013
  18140. }
  18141. },
  18142. back: {
  18143. height: math.unit(10, "feet"),
  18144. weight: math.unit(350, "lb"),
  18145. name: "Back",
  18146. image: {
  18147. source: "./media/characters/jet/back.svg",
  18148. extra: 2050 / 1980,
  18149. bottom: 0.013
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Micro",
  18156. height: math.unit(6, "inches")
  18157. },
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(10, "feet"),
  18161. default: true
  18162. },
  18163. {
  18164. name: "Macro",
  18165. height: math.unit(100, "feet")
  18166. },
  18167. ]
  18168. ))
  18169. characterMakers.push(() => makeCharacter(
  18170. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18171. {
  18172. front: {
  18173. height: math.unit(15, "feet"),
  18174. weight: math.unit(2800, "lb"),
  18175. name: "Front",
  18176. image: {
  18177. source: "./media/characters/tanarath/front.svg",
  18178. extra: 2392 / 2220,
  18179. bottom: 0.03
  18180. }
  18181. },
  18182. back: {
  18183. height: math.unit(15, "feet"),
  18184. weight: math.unit(2800, "lb"),
  18185. name: "Back",
  18186. image: {
  18187. source: "./media/characters/tanarath/back.svg",
  18188. extra: 2392 / 2220,
  18189. bottom: 0.03
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(15, "feet"),
  18197. default: true
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(7 + 1 / 12, "feet"),
  18206. weight: math.unit(175, "lb"),
  18207. name: "Front",
  18208. image: {
  18209. source: "./media/characters/patty-cattybatty/front.svg",
  18210. extra: 908 / 874,
  18211. bottom: 0.025
  18212. }
  18213. },
  18214. },
  18215. [
  18216. {
  18217. name: "Micro",
  18218. height: math.unit(1, "inch")
  18219. },
  18220. {
  18221. name: "Normal",
  18222. height: math.unit(7 + 1 / 12, "feet")
  18223. },
  18224. {
  18225. name: "Mini Macro",
  18226. height: math.unit(155, "feet")
  18227. },
  18228. {
  18229. name: "Macro",
  18230. height: math.unit(1077, "feet")
  18231. },
  18232. {
  18233. name: "Mega Macro",
  18234. height: math.unit(47650, "feet"),
  18235. default: true
  18236. },
  18237. {
  18238. name: "Giga Macro",
  18239. height: math.unit(440, "miles")
  18240. },
  18241. {
  18242. name: "Tera Macro",
  18243. height: math.unit(8700, "miles")
  18244. },
  18245. {
  18246. name: "Planetary Macro",
  18247. height: math.unit(32700, "miles")
  18248. },
  18249. {
  18250. name: "Solar Macro",
  18251. height: math.unit(550000, "miles")
  18252. },
  18253. {
  18254. name: "Celestial Macro",
  18255. height: math.unit(2.5, "AU")
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(4 + 5 / 12, "feet"),
  18264. weight: math.unit(90, "lb"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/cappu/front.svg",
  18268. extra: 1247 / 1152,
  18269. bottom: 0.012
  18270. }
  18271. },
  18272. },
  18273. [
  18274. {
  18275. name: "Normal",
  18276. height: math.unit(4 + 5 / 12, "feet"),
  18277. default: true
  18278. },
  18279. ]
  18280. ))
  18281. characterMakers.push(() => makeCharacter(
  18282. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18283. {
  18284. frontDressed: {
  18285. height: math.unit(70, "cm"),
  18286. weight: math.unit(6, "kg"),
  18287. name: "Front (Dressed)",
  18288. image: {
  18289. source: "./media/characters/sebi/front-dressed.svg",
  18290. extra: 713.5 / 686.5,
  18291. bottom: 0.003
  18292. }
  18293. },
  18294. front: {
  18295. height: math.unit(70, "cm"),
  18296. weight: math.unit(5, "kg"),
  18297. name: "Front",
  18298. image: {
  18299. source: "./media/characters/sebi/front.svg",
  18300. extra: 713.5 / 686.5,
  18301. bottom: 0.003
  18302. }
  18303. }
  18304. },
  18305. [
  18306. {
  18307. name: "Normal",
  18308. height: math.unit(70, "cm"),
  18309. default: true
  18310. },
  18311. {
  18312. name: "Macro",
  18313. height: math.unit(8, "meters")
  18314. },
  18315. ]
  18316. ))
  18317. characterMakers.push(() => makeCharacter(
  18318. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18319. {
  18320. front: {
  18321. height: math.unit(6, "feet"),
  18322. weight: math.unit(150, "lb"),
  18323. name: "Front",
  18324. image: {
  18325. source: "./media/characters/typhek/front.svg",
  18326. extra: 1948 / 1929,
  18327. bottom: 0.025
  18328. }
  18329. },
  18330. side: {
  18331. height: math.unit(6, "feet"),
  18332. weight: math.unit(150, "lb"),
  18333. name: "Side",
  18334. image: {
  18335. source: "./media/characters/typhek/side.svg",
  18336. extra: 2034 / 2010,
  18337. bottom: 0.003
  18338. }
  18339. },
  18340. back: {
  18341. height: math.unit(6, "feet"),
  18342. weight: math.unit(150, "lb"),
  18343. name: "Back",
  18344. image: {
  18345. source: "./media/characters/typhek/back.svg",
  18346. extra: 2005 / 1978,
  18347. bottom: 0.004
  18348. }
  18349. },
  18350. palm: {
  18351. height: math.unit(1.2, "feet"),
  18352. name: "Palm",
  18353. image: {
  18354. source: "./media/characters/typhek/palm.svg"
  18355. }
  18356. },
  18357. fist: {
  18358. height: math.unit(1.1, "feet"),
  18359. name: "Fist",
  18360. image: {
  18361. source: "./media/characters/typhek/fist.svg"
  18362. }
  18363. },
  18364. foot: {
  18365. height: math.unit(1.57, "feet"),
  18366. name: "Foot",
  18367. image: {
  18368. source: "./media/characters/typhek/foot.svg"
  18369. }
  18370. },
  18371. sole: {
  18372. height: math.unit(2.05, "feet"),
  18373. name: "Sole",
  18374. image: {
  18375. source: "./media/characters/typhek/sole.svg"
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Macro",
  18382. height: math.unit(40, "stories"),
  18383. default: true
  18384. },
  18385. {
  18386. name: "Megamacro",
  18387. height: math.unit(1, "mile")
  18388. },
  18389. {
  18390. name: "Gigamacro",
  18391. height: math.unit(4000, "solarradii")
  18392. },
  18393. {
  18394. name: "Universal",
  18395. height: math.unit(1.1, "universes")
  18396. }
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18401. {
  18402. side: {
  18403. height: math.unit(5 + 7 / 12, "feet"),
  18404. weight: math.unit(150, "lb"),
  18405. name: "Side",
  18406. image: {
  18407. source: "./media/characters/kassy/side.svg",
  18408. extra: 1280 / 1225,
  18409. bottom: 0.002
  18410. }
  18411. },
  18412. front: {
  18413. height: math.unit(5 + 7 / 12, "feet"),
  18414. weight: math.unit(150, "lb"),
  18415. name: "Front",
  18416. image: {
  18417. source: "./media/characters/kassy/front.svg",
  18418. extra: 1280 / 1225,
  18419. bottom: 0.025
  18420. }
  18421. },
  18422. back: {
  18423. height: math.unit(5 + 7 / 12, "feet"),
  18424. weight: math.unit(150, "lb"),
  18425. name: "Back",
  18426. image: {
  18427. source: "./media/characters/kassy/back.svg",
  18428. extra: 1280 / 1225,
  18429. bottom: 0.002
  18430. }
  18431. },
  18432. foot: {
  18433. height: math.unit(1.266, "feet"),
  18434. name: "Foot",
  18435. image: {
  18436. source: "./media/characters/kassy/foot.svg"
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(5 + 7 / 12, "feet")
  18444. },
  18445. {
  18446. name: "Macro",
  18447. height: math.unit(137, "feet"),
  18448. default: true
  18449. },
  18450. {
  18451. name: "Megamacro",
  18452. height: math.unit(1, "mile")
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18458. {
  18459. front: {
  18460. height: math.unit(6 + 1 / 12, "feet"),
  18461. weight: math.unit(200, "lb"),
  18462. name: "Front",
  18463. image: {
  18464. source: "./media/characters/neil/front.svg",
  18465. extra: 1326 / 1250,
  18466. bottom: 0.023
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(6 + 1 / 12, "feet"),
  18474. default: true
  18475. },
  18476. {
  18477. name: "Macro",
  18478. height: math.unit(200, "feet")
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18484. {
  18485. front: {
  18486. height: math.unit(5 + 9 / 12, "feet"),
  18487. weight: math.unit(190, "lb"),
  18488. name: "Front",
  18489. image: {
  18490. source: "./media/characters/atticus/front.svg",
  18491. extra: 2934 / 2785,
  18492. bottom: 0.025
  18493. }
  18494. },
  18495. },
  18496. [
  18497. {
  18498. name: "Normal",
  18499. height: math.unit(5 + 9 / 12, "feet"),
  18500. default: true
  18501. },
  18502. {
  18503. name: "Macro",
  18504. height: math.unit(180, "feet")
  18505. },
  18506. ]
  18507. ))
  18508. characterMakers.push(() => makeCharacter(
  18509. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18510. {
  18511. side: {
  18512. height: math.unit(9, "feet"),
  18513. weight: math.unit(650, "lb"),
  18514. name: "Side",
  18515. image: {
  18516. source: "./media/characters/milo/side.svg",
  18517. extra: 2644 / 2310,
  18518. bottom: 0.032
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Normal",
  18525. height: math.unit(9, "feet"),
  18526. default: true
  18527. },
  18528. {
  18529. name: "Macro",
  18530. height: math.unit(300, "feet")
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18536. {
  18537. side: {
  18538. height: math.unit(8, "meters"),
  18539. weight: math.unit(90000, "kg"),
  18540. name: "Side",
  18541. image: {
  18542. source: "./media/characters/ijzer/side.svg",
  18543. extra: 2756 / 1600,
  18544. bottom: 0.01
  18545. }
  18546. },
  18547. },
  18548. [
  18549. {
  18550. name: "Small",
  18551. height: math.unit(3, "meters")
  18552. },
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(8, "meters"),
  18556. default: true
  18557. },
  18558. {
  18559. name: "Normal+",
  18560. height: math.unit(10, "meters")
  18561. },
  18562. {
  18563. name: "Bigger",
  18564. height: math.unit(24, "meters")
  18565. },
  18566. {
  18567. name: "Huge",
  18568. height: math.unit(80, "meters")
  18569. },
  18570. ]
  18571. ))
  18572. characterMakers.push(() => makeCharacter(
  18573. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18574. {
  18575. front: {
  18576. height: math.unit(6 + 2 / 12, "feet"),
  18577. weight: math.unit(153, "lb"),
  18578. name: "Front",
  18579. image: {
  18580. source: "./media/characters/luca-cervicum/front.svg",
  18581. extra: 370 / 327,
  18582. bottom: 0.015
  18583. }
  18584. },
  18585. back: {
  18586. height: math.unit(6 + 2 / 12, "feet"),
  18587. weight: math.unit(153, "lb"),
  18588. name: "Back",
  18589. image: {
  18590. source: "./media/characters/luca-cervicum/back.svg",
  18591. extra: 367 / 333,
  18592. bottom: 0.005
  18593. }
  18594. },
  18595. frontGear: {
  18596. height: math.unit(6 + 2 / 12, "feet"),
  18597. weight: math.unit(173, "lb"),
  18598. name: "Front (Gear)",
  18599. image: {
  18600. source: "./media/characters/luca-cervicum/front-gear.svg",
  18601. extra: 377 / 333,
  18602. bottom: 0.006
  18603. }
  18604. },
  18605. },
  18606. [
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(6 + 2 / 12, "feet"),
  18610. default: true
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18616. {
  18617. front: {
  18618. height: math.unit(6 + 1 / 12, "feet"),
  18619. weight: math.unit(304, "lb"),
  18620. name: "Front",
  18621. image: {
  18622. source: "./media/characters/oliver/front.svg",
  18623. extra: 157 / 143,
  18624. bottom: 0.08
  18625. }
  18626. },
  18627. },
  18628. [
  18629. {
  18630. name: "Normal",
  18631. height: math.unit(6 + 1 / 12, "feet"),
  18632. default: true
  18633. },
  18634. ]
  18635. ))
  18636. characterMakers.push(() => makeCharacter(
  18637. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18638. {
  18639. front: {
  18640. height: math.unit(5 + 7 / 12, "feet"),
  18641. weight: math.unit(140, "lb"),
  18642. name: "Front",
  18643. image: {
  18644. source: "./media/characters/shane/front.svg",
  18645. extra: 304 / 289,
  18646. bottom: 0.005
  18647. }
  18648. },
  18649. },
  18650. [
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(5 + 7 / 12, "feet"),
  18654. default: true
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(5 + 9 / 12, "feet"),
  18663. weight: math.unit(178, "lb"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/shin/front.svg",
  18667. extra: 159 / 151,
  18668. bottom: 0.015
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(5 + 9 / 12, "feet"),
  18676. default: true
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(5 + 10 / 12, "feet"),
  18685. weight: math.unit(168, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/xerxes/front.svg",
  18689. extra: 282 / 260,
  18690. bottom: 0.045
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(5 + 10 / 12, "feet"),
  18698. default: true
  18699. },
  18700. ]
  18701. ))
  18702. characterMakers.push(() => makeCharacter(
  18703. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18704. {
  18705. front: {
  18706. height: math.unit(6 + 7 / 12, "feet"),
  18707. weight: math.unit(208, "lb"),
  18708. name: "Front",
  18709. image: {
  18710. source: "./media/characters/chaska/front.svg",
  18711. extra: 332 / 319,
  18712. bottom: 0.015
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(6 + 7 / 12, "feet"),
  18720. default: true
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18726. {
  18727. front: {
  18728. height: math.unit(5 + 8 / 12, "feet"),
  18729. weight: math.unit(208, "lb"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/enuk/front.svg",
  18733. extra: 437 / 406,
  18734. bottom: 0.02
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Normal",
  18741. height: math.unit(5 + 8 / 12, "feet"),
  18742. default: true
  18743. },
  18744. ]
  18745. ))
  18746. characterMakers.push(() => makeCharacter(
  18747. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18748. {
  18749. front: {
  18750. height: math.unit(5 + 10 / 12, "feet"),
  18751. weight: math.unit(252, "lb"),
  18752. name: "Front",
  18753. image: {
  18754. source: "./media/characters/bruun/front.svg",
  18755. extra: 197 / 187,
  18756. bottom: 0.012
  18757. }
  18758. },
  18759. },
  18760. [
  18761. {
  18762. name: "Normal",
  18763. height: math.unit(5 + 10 / 12, "feet"),
  18764. default: true
  18765. },
  18766. ]
  18767. ))
  18768. characterMakers.push(() => makeCharacter(
  18769. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18770. {
  18771. front: {
  18772. height: math.unit(6 + 10 / 12, "feet"),
  18773. weight: math.unit(255, "lb"),
  18774. name: "Front",
  18775. image: {
  18776. source: "./media/characters/alexeev/front.svg",
  18777. extra: 213 / 200,
  18778. bottom: 0.05
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Normal",
  18785. height: math.unit(6 + 10 / 12, "feet"),
  18786. default: true
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18792. {
  18793. front: {
  18794. height: math.unit(2 + 8 / 12, "feet"),
  18795. weight: math.unit(22, "lb"),
  18796. name: "Front",
  18797. image: {
  18798. source: "./media/characters/evelyn/front.svg",
  18799. extra: 208 / 180
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(2 + 8 / 12, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(5 + 9 / 12, "feet"),
  18816. weight: math.unit(139, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/inca/front.svg",
  18820. extra: 294 / 291,
  18821. bottom: 0.03
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(5 + 9 / 12, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18835. {
  18836. front: {
  18837. height: math.unit(5 + 1 / 12, "feet"),
  18838. weight: math.unit(84, "lb"),
  18839. name: "Front",
  18840. image: {
  18841. source: "./media/characters/magdalene/front.svg",
  18842. extra: 293 / 273
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(5 + 1 / 12, "feet"),
  18850. default: true
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(6 + 3 / 12, "feet"),
  18859. weight: math.unit(185, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/mera/front.svg",
  18863. extra: 291 / 277,
  18864. bottom: 0.03
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(6 + 3 / 12, "feet"),
  18872. default: true
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(6 + 7 / 12, "feet"),
  18881. weight: math.unit(160, "lb"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/ceres/front.svg",
  18885. extra: 1023 / 950,
  18886. bottom: 0.027
  18887. }
  18888. },
  18889. back: {
  18890. height: math.unit(6 + 7 / 12, "feet"),
  18891. weight: math.unit(160, "lb"),
  18892. name: "Back",
  18893. image: {
  18894. source: "./media/characters/ceres/back.svg",
  18895. extra: 1023 / 950
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(6 + 7 / 12, "feet"),
  18903. default: true
  18904. },
  18905. ]
  18906. ))
  18907. characterMakers.push(() => makeCharacter(
  18908. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18909. {
  18910. front: {
  18911. height: math.unit(5 + 10 / 12, "feet"),
  18912. weight: math.unit(150, "lb"),
  18913. name: "Front",
  18914. image: {
  18915. source: "./media/characters/kris/front.svg",
  18916. extra: 885 / 803,
  18917. bottom: 0.03
  18918. }
  18919. },
  18920. },
  18921. [
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(5 + 10 / 12, "feet"),
  18925. default: true
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18931. {
  18932. front: {
  18933. height: math.unit(7, "feet"),
  18934. weight: math.unit(120, "kg"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/taluthus/front.svg",
  18938. extra: 903 / 833,
  18939. bottom: 0.015
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(7, "feet"),
  18947. default: true
  18948. },
  18949. {
  18950. name: "Macro",
  18951. height: math.unit(300, "feet")
  18952. },
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18957. {
  18958. front: {
  18959. height: math.unit(5 + 9 / 12, "feet"),
  18960. weight: math.unit(145, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/dawn/front.svg",
  18964. extra: 2094 / 2016,
  18965. bottom: 0.025
  18966. }
  18967. },
  18968. back: {
  18969. height: math.unit(5 + 9 / 12, "feet"),
  18970. weight: math.unit(160, "lb"),
  18971. name: "Back",
  18972. image: {
  18973. source: "./media/characters/dawn/back.svg",
  18974. extra: 2112 / 2080,
  18975. bottom: 0.005
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Normal",
  18982. height: math.unit(6 + 7 / 12, "feet"),
  18983. default: true
  18984. },
  18985. ]
  18986. ))
  18987. characterMakers.push(() => makeCharacter(
  18988. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18989. {
  18990. anthro: {
  18991. height: math.unit(8 + 3 / 12, "feet"),
  18992. weight: math.unit(450, "lb"),
  18993. name: "Anthro",
  18994. image: {
  18995. source: "./media/characters/arador/anthro.svg",
  18996. extra: 1835 / 1718,
  18997. bottom: 0.025
  18998. }
  18999. },
  19000. feral: {
  19001. height: math.unit(4, "feet"),
  19002. weight: math.unit(200, "lb"),
  19003. name: "Feral",
  19004. image: {
  19005. source: "./media/characters/arador/feral.svg",
  19006. extra: 1683 / 1514,
  19007. bottom: 0.07
  19008. }
  19009. },
  19010. },
  19011. [
  19012. {
  19013. name: "Normal",
  19014. height: math.unit(8 + 3 / 12, "feet")
  19015. },
  19016. {
  19017. name: "Macro",
  19018. height: math.unit(82.5, "feet"),
  19019. default: true
  19020. },
  19021. ]
  19022. ))
  19023. characterMakers.push(() => makeCharacter(
  19024. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19025. {
  19026. front: {
  19027. height: math.unit(5 + 10 / 12, "feet"),
  19028. weight: math.unit(125, "lb"),
  19029. name: "Front",
  19030. image: {
  19031. source: "./media/characters/dharsi/front.svg",
  19032. extra: 716 / 630,
  19033. bottom: 0.035
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Nano",
  19040. height: math.unit(100, "nm")
  19041. },
  19042. {
  19043. name: "Micro",
  19044. height: math.unit(2, "inches")
  19045. },
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(5 + 10 / 12, "feet"),
  19049. default: true
  19050. },
  19051. {
  19052. name: "Macro",
  19053. height: math.unit(1000, "feet")
  19054. },
  19055. {
  19056. name: "Megamacro",
  19057. height: math.unit(10, "miles")
  19058. },
  19059. {
  19060. name: "Gigamacro",
  19061. height: math.unit(3000, "miles")
  19062. },
  19063. {
  19064. name: "Teramacro",
  19065. height: math.unit(500000, "miles")
  19066. },
  19067. {
  19068. name: "Teramacro+",
  19069. height: math.unit(30, "galaxies")
  19070. },
  19071. ]
  19072. ))
  19073. characterMakers.push(() => makeCharacter(
  19074. { name: "Deathy", species: ["wolf"], 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/deathy/front.svg",
  19082. extra: 1552 / 1463,
  19083. bottom: 0.025
  19084. }
  19085. },
  19086. side: {
  19087. height: math.unit(6, "feet"),
  19088. weight: math.unit(150, "lb"),
  19089. name: "Side",
  19090. image: {
  19091. source: "./media/characters/deathy/side.svg",
  19092. extra: 1604 / 1455,
  19093. bottom: 0.025
  19094. }
  19095. },
  19096. back: {
  19097. height: math.unit(6, "feet"),
  19098. weight: math.unit(150, "lb"),
  19099. name: "Back",
  19100. image: {
  19101. source: "./media/characters/deathy/back.svg",
  19102. extra: 1580 / 1463,
  19103. bottom: 0.005
  19104. }
  19105. },
  19106. },
  19107. [
  19108. {
  19109. name: "Micro",
  19110. height: math.unit(5, "millimeters")
  19111. },
  19112. {
  19113. name: "Normal",
  19114. height: math.unit(6 + 5 / 12, "feet"),
  19115. default: true
  19116. },
  19117. ]
  19118. ))
  19119. characterMakers.push(() => makeCharacter(
  19120. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19121. {
  19122. front: {
  19123. height: math.unit(16, "feet"),
  19124. weight: math.unit(4000, "lb"),
  19125. name: "Front",
  19126. image: {
  19127. source: "./media/characters/juniper/front.svg",
  19128. bottom: 0.04
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(16, "feet"),
  19136. default: true
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(6, "feet"),
  19145. weight: math.unit(150, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/hipster/front.svg",
  19149. extra: 1312 / 1209,
  19150. bottom: 0.025
  19151. }
  19152. },
  19153. back: {
  19154. height: math.unit(6, "feet"),
  19155. weight: math.unit(150, "lb"),
  19156. name: "Back",
  19157. image: {
  19158. source: "./media/characters/hipster/back.svg",
  19159. extra: 1281 / 1196,
  19160. bottom: 0.01
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Micro",
  19167. height: math.unit(1, "mm")
  19168. },
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(4, "inches"),
  19172. default: true
  19173. },
  19174. {
  19175. name: "Macro",
  19176. height: math.unit(500, "feet")
  19177. },
  19178. {
  19179. name: "Megamacro",
  19180. height: math.unit(1000, "miles")
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(6, "feet"),
  19189. weight: math.unit(150, "lb"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/tendirmuldr/front.svg",
  19193. extra: 1878 / 1772,
  19194. bottom: 0.015
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Megamacro",
  19201. height: math.unit(1500, "miles"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19208. {
  19209. front: {
  19210. height: math.unit(14, "feet"),
  19211. weight: math.unit(12000, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/mort/front.svg",
  19215. extra: 365 / 318,
  19216. bottom: 0.01
  19217. }
  19218. },
  19219. side: {
  19220. height: math.unit(14, "feet"),
  19221. weight: math.unit(12000, "lb"),
  19222. name: "Side",
  19223. image: {
  19224. source: "./media/characters/mort/side.svg",
  19225. extra: 365 / 318,
  19226. bottom: 0.052
  19227. },
  19228. default: true
  19229. },
  19230. back: {
  19231. height: math.unit(14, "feet"),
  19232. weight: math.unit(12000, "lb"),
  19233. name: "Back",
  19234. image: {
  19235. source: "./media/characters/mort/back.svg",
  19236. extra: 371 / 332,
  19237. bottom: 0.18
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Normal",
  19244. height: math.unit(14, "feet"),
  19245. default: true
  19246. },
  19247. ]
  19248. ))
  19249. characterMakers.push(() => makeCharacter(
  19250. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19251. {
  19252. front: {
  19253. height: math.unit(8, "feet"),
  19254. weight: math.unit(1, "ton"),
  19255. name: "Front",
  19256. image: {
  19257. source: "./media/characters/lycoa/front.svg",
  19258. extra: 1875 / 1789,
  19259. bottom: 0.022
  19260. }
  19261. },
  19262. back: {
  19263. height: math.unit(8, "feet"),
  19264. weight: math.unit(1, "ton"),
  19265. name: "Back",
  19266. image: {
  19267. source: "./media/characters/lycoa/back.svg",
  19268. extra: 1835 / 1781,
  19269. bottom: 0.03
  19270. }
  19271. },
  19272. head: {
  19273. height: math.unit(2.1, "feet"),
  19274. name: "Head",
  19275. image: {
  19276. source: "./media/characters/lycoa/head.svg"
  19277. }
  19278. },
  19279. tailmaw: {
  19280. height: math.unit(1.9, "feet"),
  19281. name: "Tailmaw",
  19282. image: {
  19283. source: "./media/characters/lycoa/tailmaw.svg"
  19284. }
  19285. },
  19286. tentacles: {
  19287. height: math.unit(2.1, "feet"),
  19288. name: "Tentacles",
  19289. image: {
  19290. source: "./media/characters/lycoa/tentacles.svg"
  19291. }
  19292. },
  19293. dick: {
  19294. height: math.unit(1.73, "feet"),
  19295. name: "Dick",
  19296. image: {
  19297. source: "./media/characters/lycoa/dick.svg"
  19298. }
  19299. },
  19300. },
  19301. [
  19302. {
  19303. name: "Normal",
  19304. height: math.unit(8, "feet"),
  19305. default: true
  19306. },
  19307. {
  19308. name: "Macro",
  19309. height: math.unit(30, "feet")
  19310. },
  19311. ]
  19312. ))
  19313. characterMakers.push(() => makeCharacter(
  19314. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19315. {
  19316. front: {
  19317. height: math.unit(4 + 2 / 12, "feet"),
  19318. weight: math.unit(70, "lb"),
  19319. name: "Front",
  19320. image: {
  19321. source: "./media/characters/naldara/front.svg",
  19322. extra: 841 / 720,
  19323. bottom: 0.04
  19324. }
  19325. },
  19326. naga: {
  19327. height: math.unit(23, "feet"),
  19328. weight: math.unit(15000, "kg"),
  19329. name: "Naga",
  19330. image: {
  19331. source: "./media/characters/naldara/naga.svg",
  19332. extra: 3290/2959,
  19333. bottom: 124/3432
  19334. }
  19335. },
  19336. },
  19337. [
  19338. {
  19339. name: "Normal",
  19340. height: math.unit(4 + 2 / 12, "feet"),
  19341. default: true
  19342. },
  19343. ]
  19344. ))
  19345. characterMakers.push(() => makeCharacter(
  19346. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19347. {
  19348. front: {
  19349. height: math.unit(13 + 7 / 12, "feet"),
  19350. weight: math.unit(1500, "lb"),
  19351. name: "Front",
  19352. image: {
  19353. source: "./media/characters/briar/front.svg",
  19354. extra: 626 / 596,
  19355. bottom: 0.08
  19356. }
  19357. },
  19358. },
  19359. [
  19360. {
  19361. name: "Normal",
  19362. height: math.unit(13 + 7 / 12, "feet"),
  19363. default: true
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19369. {
  19370. side: {
  19371. height: math.unit(10, "feet"),
  19372. weight: math.unit(500, "lb"),
  19373. name: "Side",
  19374. image: {
  19375. source: "./media/characters/vanguard/side.svg",
  19376. extra: 502 / 425,
  19377. bottom: 0.087
  19378. }
  19379. },
  19380. },
  19381. [
  19382. {
  19383. name: "Normal",
  19384. height: math.unit(10, "feet"),
  19385. default: true
  19386. },
  19387. ]
  19388. ))
  19389. characterMakers.push(() => makeCharacter(
  19390. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19391. {
  19392. front: {
  19393. height: math.unit(7.5, "feet"),
  19394. weight: math.unit(2, "lb"),
  19395. name: "Front",
  19396. image: {
  19397. source: "./media/characters/artemis/front.svg",
  19398. extra: 1192 / 1075,
  19399. bottom: 0.07
  19400. }
  19401. },
  19402. frontNsfw: {
  19403. height: math.unit(7.5, "feet"),
  19404. weight: math.unit(2, "lb"),
  19405. name: "Front (NSFW)",
  19406. image: {
  19407. source: "./media/characters/artemis/front-nsfw.svg",
  19408. extra: 1192 / 1075,
  19409. bottom: 0.07
  19410. }
  19411. },
  19412. frontNsfwer: {
  19413. height: math.unit(7.5, "feet"),
  19414. weight: math.unit(2, "lb"),
  19415. name: "Front (NSFW-er)",
  19416. image: {
  19417. source: "./media/characters/artemis/front-nsfwer.svg",
  19418. extra: 1192 / 1075,
  19419. bottom: 0.07
  19420. }
  19421. },
  19422. side: {
  19423. height: math.unit(7.5, "feet"),
  19424. weight: math.unit(2, "lb"),
  19425. name: "Side",
  19426. image: {
  19427. source: "./media/characters/artemis/side.svg",
  19428. extra: 1192 / 1075,
  19429. bottom: 0.07
  19430. }
  19431. },
  19432. sideNsfw: {
  19433. height: math.unit(7.5, "feet"),
  19434. weight: math.unit(2, "lb"),
  19435. name: "Side (NSFW)",
  19436. image: {
  19437. source: "./media/characters/artemis/side-nsfw.svg",
  19438. extra: 1192 / 1075,
  19439. bottom: 0.07
  19440. }
  19441. },
  19442. sideNsfwer: {
  19443. height: math.unit(7.5, "feet"),
  19444. weight: math.unit(2, "lb"),
  19445. name: "Side (NSFW-er)",
  19446. image: {
  19447. source: "./media/characters/artemis/side-nsfwer.svg",
  19448. extra: 1192 / 1075,
  19449. bottom: 0.07
  19450. }
  19451. },
  19452. maw: {
  19453. height: math.unit(1.1, "feet"),
  19454. name: "Maw",
  19455. image: {
  19456. source: "./media/characters/artemis/maw.svg"
  19457. }
  19458. },
  19459. stomach: {
  19460. height: math.unit(0.95, "feet"),
  19461. name: "Stomach",
  19462. image: {
  19463. source: "./media/characters/artemis/stomach.svg"
  19464. }
  19465. },
  19466. dickCanine: {
  19467. height: math.unit(1, "feet"),
  19468. name: "Dick (Canine)",
  19469. image: {
  19470. source: "./media/characters/artemis/dick-canine.svg"
  19471. }
  19472. },
  19473. dickEquine: {
  19474. height: math.unit(0.85, "feet"),
  19475. name: "Dick (Equine)",
  19476. image: {
  19477. source: "./media/characters/artemis/dick-equine.svg"
  19478. }
  19479. },
  19480. dickExotic: {
  19481. height: math.unit(0.85, "feet"),
  19482. name: "Dick (Exotic)",
  19483. image: {
  19484. source: "./media/characters/artemis/dick-exotic.svg"
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(7.5, "feet"),
  19492. default: true
  19493. },
  19494. {
  19495. name: "Enlarged",
  19496. height: math.unit(12, "feet")
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(5 + 3 / 12, "feet"),
  19505. weight: math.unit(160, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/kira/front.svg",
  19509. extra: 906 / 786,
  19510. bottom: 0.01
  19511. }
  19512. },
  19513. back: {
  19514. height: math.unit(5 + 3 / 12, "feet"),
  19515. weight: math.unit(160, "lb"),
  19516. name: "Back",
  19517. image: {
  19518. source: "./media/characters/kira/back.svg",
  19519. extra: 882 / 757,
  19520. bottom: 0.005
  19521. }
  19522. },
  19523. frontDressed: {
  19524. height: math.unit(5 + 3 / 12, "feet"),
  19525. weight: math.unit(160, "lb"),
  19526. name: "Front (Dressed)",
  19527. image: {
  19528. source: "./media/characters/kira/front-dressed.svg",
  19529. extra: 906 / 786,
  19530. bottom: 0.01
  19531. }
  19532. },
  19533. beans: {
  19534. height: math.unit(0.92, "feet"),
  19535. name: "Beans",
  19536. image: {
  19537. source: "./media/characters/kira/beans.svg"
  19538. }
  19539. },
  19540. },
  19541. [
  19542. {
  19543. name: "Normal",
  19544. height: math.unit(5 + 3 / 12, "feet"),
  19545. default: true
  19546. },
  19547. ]
  19548. ))
  19549. characterMakers.push(() => makeCharacter(
  19550. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19551. {
  19552. front: {
  19553. height: math.unit(5 + 4 / 12, "feet"),
  19554. weight: math.unit(145, "lb"),
  19555. name: "Front",
  19556. image: {
  19557. source: "./media/characters/scramble/front.svg",
  19558. extra: 763 / 727,
  19559. bottom: 0.05
  19560. }
  19561. },
  19562. back: {
  19563. height: math.unit(5 + 4 / 12, "feet"),
  19564. weight: math.unit(145, "lb"),
  19565. name: "Back",
  19566. image: {
  19567. source: "./media/characters/scramble/back.svg",
  19568. extra: 826 / 737,
  19569. bottom: 0.002
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Normal",
  19576. height: math.unit(5 + 4 / 12, "feet"),
  19577. default: true
  19578. },
  19579. ]
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19583. {
  19584. side: {
  19585. height: math.unit(6 + 2 / 12, "feet"),
  19586. weight: math.unit(190, "lb"),
  19587. name: "Side",
  19588. image: {
  19589. source: "./media/characters/biscuit/side.svg",
  19590. extra: 858 / 791,
  19591. bottom: 0.044
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Normal",
  19598. height: math.unit(6 + 2 / 12, "feet"),
  19599. default: true
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(5 + 2 / 12, "feet"),
  19608. weight: math.unit(120, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/poffin/front.svg",
  19612. extra: 786 / 680,
  19613. bottom: 0.005
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(5 + 2 / 12, "feet"),
  19621. default: true
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(6 + 3 / 12, "feet"),
  19630. weight: math.unit(519, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/dhari/front.svg",
  19634. extra: 1048 / 946,
  19635. bottom: 0.015
  19636. }
  19637. },
  19638. back: {
  19639. height: math.unit(6 + 3 / 12, "feet"),
  19640. weight: math.unit(519, "lb"),
  19641. name: "Back",
  19642. image: {
  19643. source: "./media/characters/dhari/back.svg",
  19644. extra: 1048 / 931,
  19645. bottom: 0.005
  19646. }
  19647. },
  19648. frontDressed: {
  19649. height: math.unit(6 + 3 / 12, "feet"),
  19650. weight: math.unit(519, "lb"),
  19651. name: "Front (Dressed)",
  19652. image: {
  19653. source: "./media/characters/dhari/front-dressed.svg",
  19654. extra: 1713 / 1546,
  19655. bottom: 0.02
  19656. }
  19657. },
  19658. backDressed: {
  19659. height: math.unit(6 + 3 / 12, "feet"),
  19660. weight: math.unit(519, "lb"),
  19661. name: "Back (Dressed)",
  19662. image: {
  19663. source: "./media/characters/dhari/back-dressed.svg",
  19664. extra: 1699 / 1537,
  19665. bottom: 0.01
  19666. }
  19667. },
  19668. maw: {
  19669. height: math.unit(0.95, "feet"),
  19670. name: "Maw",
  19671. image: {
  19672. source: "./media/characters/dhari/maw.svg"
  19673. }
  19674. },
  19675. wereFront: {
  19676. height: math.unit(12 + 8 / 12, "feet"),
  19677. weight: math.unit(4000, "lb"),
  19678. name: "Front (Were)",
  19679. image: {
  19680. source: "./media/characters/dhari/were-front.svg",
  19681. extra: 1065 / 969,
  19682. bottom: 0.015
  19683. }
  19684. },
  19685. wereBack: {
  19686. height: math.unit(12 + 8 / 12, "feet"),
  19687. weight: math.unit(4000, "lb"),
  19688. name: "Back (Were)",
  19689. image: {
  19690. source: "./media/characters/dhari/were-back.svg",
  19691. extra: 1065 / 969,
  19692. bottom: 0.012
  19693. }
  19694. },
  19695. wereMaw: {
  19696. height: math.unit(0.625, "meters"),
  19697. name: "Maw (Were)",
  19698. image: {
  19699. source: "./media/characters/dhari/were-maw.svg"
  19700. }
  19701. },
  19702. },
  19703. [
  19704. {
  19705. name: "Normal",
  19706. height: math.unit(6 + 3 / 12, "feet"),
  19707. default: true
  19708. },
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19713. {
  19714. anthro: {
  19715. height: math.unit(5 + 7 / 12, "feet"),
  19716. weight: math.unit(175, "lb"),
  19717. name: "Anthro",
  19718. image: {
  19719. source: "./media/characters/rena-dyne/anthro.svg",
  19720. extra: 1849 / 1785,
  19721. bottom: 0.005
  19722. }
  19723. },
  19724. taur: {
  19725. height: math.unit(15 + 6 / 12, "feet"),
  19726. weight: math.unit(8000, "lb"),
  19727. name: "Taur",
  19728. image: {
  19729. source: "./media/characters/rena-dyne/taur.svg",
  19730. extra: 2315 / 2234,
  19731. bottom: 0.033
  19732. }
  19733. },
  19734. },
  19735. [
  19736. {
  19737. name: "Normal",
  19738. height: math.unit(5 + 7 / 12, "feet"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(8, "feet"),
  19748. weight: math.unit(600, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/weremeep/front.svg",
  19752. extra: 967 / 862,
  19753. bottom: 0.01
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(8, "feet"),
  19761. default: true
  19762. },
  19763. {
  19764. name: "Lorg",
  19765. height: math.unit(12, "feet")
  19766. },
  19767. {
  19768. name: "Oh Lawd She Comin'",
  19769. height: math.unit(20, "feet")
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19775. {
  19776. front: {
  19777. height: math.unit(4, "feet"),
  19778. weight: math.unit(90, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/reza/front.svg",
  19782. extra: 1183 / 1111,
  19783. bottom: 0.017
  19784. }
  19785. },
  19786. back: {
  19787. height: math.unit(4, "feet"),
  19788. weight: math.unit(90, "lb"),
  19789. name: "Back",
  19790. image: {
  19791. source: "./media/characters/reza/back.svg",
  19792. extra: 1183 / 1111,
  19793. bottom: 0.01
  19794. }
  19795. },
  19796. drake: {
  19797. height: math.unit(30, "feet"),
  19798. weight: math.unit(246960, "lb"),
  19799. name: "Drake",
  19800. image: {
  19801. source: "./media/characters/reza/drake.svg",
  19802. extra: 2350 / 2024,
  19803. bottom: 60.7 / 2403
  19804. }
  19805. },
  19806. },
  19807. [
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(4, "feet"),
  19811. default: true
  19812. },
  19813. ]
  19814. ))
  19815. characterMakers.push(() => makeCharacter(
  19816. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19817. {
  19818. side: {
  19819. height: math.unit(15, "feet"),
  19820. weight: math.unit(14, "tons"),
  19821. name: "Side",
  19822. image: {
  19823. source: "./media/characters/athea/side.svg",
  19824. extra: 960 / 540,
  19825. bottom: 0.003
  19826. }
  19827. },
  19828. sitting: {
  19829. height: math.unit(6 * 2.85, "feet"),
  19830. weight: math.unit(14, "tons"),
  19831. name: "Sitting",
  19832. image: {
  19833. source: "./media/characters/athea/sitting.svg",
  19834. extra: 621 / 581,
  19835. bottom: 0.075
  19836. }
  19837. },
  19838. maw: {
  19839. height: math.unit(7.59498031496063, "feet"),
  19840. name: "Maw",
  19841. image: {
  19842. source: "./media/characters/athea/maw.svg"
  19843. }
  19844. },
  19845. },
  19846. [
  19847. {
  19848. name: "Lap Cat",
  19849. height: math.unit(2.5, "feet")
  19850. },
  19851. {
  19852. name: "Minimacro",
  19853. height: math.unit(15, "feet"),
  19854. default: true
  19855. },
  19856. {
  19857. name: "Macro",
  19858. height: math.unit(120, "feet")
  19859. },
  19860. {
  19861. name: "Macro+",
  19862. height: math.unit(640, "feet")
  19863. },
  19864. {
  19865. name: "Colossus",
  19866. height: math.unit(2.2, "miles")
  19867. },
  19868. ]
  19869. ))
  19870. characterMakers.push(() => makeCharacter(
  19871. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19872. {
  19873. front: {
  19874. height: math.unit(8 + 8 / 12, "feet"),
  19875. weight: math.unit(130, "kg"),
  19876. name: "Front",
  19877. image: {
  19878. source: "./media/characters/seroko/front.svg",
  19879. extra: 1385 / 1280,
  19880. bottom: 0.025
  19881. }
  19882. },
  19883. back: {
  19884. height: math.unit(8 + 8 / 12, "feet"),
  19885. weight: math.unit(130, "kg"),
  19886. name: "Back",
  19887. image: {
  19888. source: "./media/characters/seroko/back.svg",
  19889. extra: 1369 / 1238,
  19890. bottom: 0.018
  19891. }
  19892. },
  19893. frontDressed: {
  19894. height: math.unit(8 + 8 / 12, "feet"),
  19895. weight: math.unit(130, "kg"),
  19896. name: "Front (Dressed)",
  19897. image: {
  19898. source: "./media/characters/seroko/front-dressed.svg",
  19899. extra: 1366 / 1275,
  19900. bottom: 0.03
  19901. }
  19902. },
  19903. },
  19904. [
  19905. {
  19906. name: "Normal",
  19907. height: math.unit(8 + 8 / 12, "feet"),
  19908. default: true
  19909. },
  19910. ]
  19911. ))
  19912. characterMakers.push(() => makeCharacter(
  19913. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19914. {
  19915. front: {
  19916. height: math.unit(5.5, "feet"),
  19917. weight: math.unit(160, "lb"),
  19918. name: "Front",
  19919. image: {
  19920. source: "./media/characters/quatzi/front.svg",
  19921. extra: 2346 / 2242,
  19922. bottom: 0.015
  19923. }
  19924. },
  19925. },
  19926. [
  19927. {
  19928. name: "Normal",
  19929. height: math.unit(5.5, "feet"),
  19930. default: true
  19931. },
  19932. {
  19933. name: "Big",
  19934. height: math.unit(7.7, "feet")
  19935. },
  19936. ]
  19937. ))
  19938. characterMakers.push(() => makeCharacter(
  19939. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19940. {
  19941. front: {
  19942. height: math.unit(5 + 11 / 12, "feet"),
  19943. weight: math.unit(180, "lb"),
  19944. name: "Front",
  19945. image: {
  19946. source: "./media/characters/sen/front.svg",
  19947. extra: 1321 / 1254,
  19948. bottom: 0.015
  19949. }
  19950. },
  19951. side: {
  19952. height: math.unit(5 + 11 / 12, "feet"),
  19953. weight: math.unit(180, "lb"),
  19954. name: "Side",
  19955. image: {
  19956. source: "./media/characters/sen/side.svg",
  19957. extra: 1321 / 1254,
  19958. bottom: 0.007
  19959. }
  19960. },
  19961. back: {
  19962. height: math.unit(5 + 11 / 12, "feet"),
  19963. weight: math.unit(180, "lb"),
  19964. name: "Back",
  19965. image: {
  19966. source: "./media/characters/sen/back.svg",
  19967. extra: 1321 / 1254
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Normal",
  19974. height: math.unit(5 + 11 / 12, "feet"),
  19975. default: true
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19981. {
  19982. front: {
  19983. height: math.unit(166.6, "cm"),
  19984. weight: math.unit(66.6, "kg"),
  19985. name: "Front",
  19986. image: {
  19987. source: "./media/characters/fruity/front.svg",
  19988. extra: 1510 / 1386,
  19989. bottom: 0.04
  19990. }
  19991. },
  19992. back: {
  19993. height: math.unit(166.6, "cm"),
  19994. weight: math.unit(66.6, "lb"),
  19995. name: "Back",
  19996. image: {
  19997. source: "./media/characters/fruity/back.svg",
  19998. extra: 1563 / 1435,
  19999. bottom: 0.005
  20000. }
  20001. },
  20002. },
  20003. [
  20004. {
  20005. name: "Normal",
  20006. height: math.unit(166.6, "cm"),
  20007. default: true
  20008. },
  20009. {
  20010. name: "Demonic",
  20011. height: math.unit(166.6, "feet")
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20017. {
  20018. side: {
  20019. height: math.unit(10, "feet"),
  20020. weight: math.unit(500, "lb"),
  20021. name: "Side",
  20022. image: {
  20023. source: "./media/characters/zost/side.svg",
  20024. extra: 966 / 880,
  20025. bottom: 0.075
  20026. }
  20027. },
  20028. mawFront: {
  20029. height: math.unit(1.08, "meters"),
  20030. name: "Maw (Front)",
  20031. image: {
  20032. source: "./media/characters/zost/maw-front.svg"
  20033. }
  20034. },
  20035. mawSide: {
  20036. height: math.unit(2.66, "feet"),
  20037. name: "Maw (Side)",
  20038. image: {
  20039. source: "./media/characters/zost/maw-side.svg"
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(10, "feet"),
  20047. default: true
  20048. },
  20049. ]
  20050. ))
  20051. characterMakers.push(() => makeCharacter(
  20052. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20053. {
  20054. front: {
  20055. height: math.unit(5 + 4 / 12, "feet"),
  20056. weight: math.unit(120, "lb"),
  20057. name: "Front",
  20058. image: {
  20059. source: "./media/characters/luci/front.svg",
  20060. extra: 1985 / 1884,
  20061. bottom: 0.04
  20062. }
  20063. },
  20064. back: {
  20065. height: math.unit(5 + 4 / 12, "feet"),
  20066. weight: math.unit(120, "lb"),
  20067. name: "Back",
  20068. image: {
  20069. source: "./media/characters/luci/back.svg",
  20070. extra: 1892 / 1791,
  20071. bottom: 0.002
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(5 + 4 / 12, "feet"),
  20079. default: true
  20080. },
  20081. ]
  20082. ))
  20083. characterMakers.push(() => makeCharacter(
  20084. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20085. {
  20086. front: {
  20087. height: math.unit(1500, "feet"),
  20088. weight: math.unit(3.8e6, "tons"),
  20089. name: "Front",
  20090. image: {
  20091. source: "./media/characters/2th/front.svg",
  20092. extra: 3489 / 3350,
  20093. bottom: 0.1
  20094. }
  20095. },
  20096. foot: {
  20097. height: math.unit(461, "feet"),
  20098. name: "Foot",
  20099. image: {
  20100. source: "./media/characters/2th/foot.svg"
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "\"Micro\"",
  20107. height: math.unit(15 + 7 / 12, "feet")
  20108. },
  20109. {
  20110. name: "Normal",
  20111. height: math.unit(1500, "feet"),
  20112. default: true
  20113. },
  20114. {
  20115. name: "Macro",
  20116. height: math.unit(5000, "feet")
  20117. },
  20118. {
  20119. name: "Megamacro",
  20120. height: math.unit(15, "miles")
  20121. },
  20122. {
  20123. name: "Gigamacro",
  20124. height: math.unit(4000, "miles")
  20125. },
  20126. {
  20127. name: "Galactic",
  20128. height: math.unit(50, "AU")
  20129. },
  20130. ]
  20131. ))
  20132. characterMakers.push(() => makeCharacter(
  20133. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20134. {
  20135. front: {
  20136. height: math.unit(5 + 6 / 12, "feet"),
  20137. weight: math.unit(220, "lb"),
  20138. name: "Front",
  20139. image: {
  20140. source: "./media/characters/amethyst/front.svg",
  20141. extra: 2078 / 2040,
  20142. bottom: 0.045
  20143. }
  20144. },
  20145. back: {
  20146. height: math.unit(5 + 6 / 12, "feet"),
  20147. weight: math.unit(220, "lb"),
  20148. name: "Back",
  20149. image: {
  20150. source: "./media/characters/amethyst/back.svg",
  20151. extra: 2021 / 1989,
  20152. bottom: 0.02
  20153. }
  20154. },
  20155. },
  20156. [
  20157. {
  20158. name: "Normal",
  20159. height: math.unit(5 + 6 / 12, "feet"),
  20160. default: true
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20166. {
  20167. front: {
  20168. height: math.unit(4 + 11 / 12, "feet"),
  20169. weight: math.unit(120, "lb"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/yumi-akiyama/front.svg",
  20173. extra: 1327 / 1235,
  20174. bottom: 0.02
  20175. }
  20176. },
  20177. back: {
  20178. height: math.unit(4 + 11 / 12, "feet"),
  20179. weight: math.unit(120, "lb"),
  20180. name: "Back",
  20181. image: {
  20182. source: "./media/characters/yumi-akiyama/back.svg",
  20183. extra: 1287 / 1245,
  20184. bottom: 0.002
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Galactic",
  20191. height: math.unit(50, "galaxies"),
  20192. default: true
  20193. },
  20194. {
  20195. name: "Universal",
  20196. height: math.unit(100, "universes")
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20202. {
  20203. front: {
  20204. height: math.unit(8, "feet"),
  20205. weight: math.unit(500, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/rifter-yrmori/front.svg",
  20209. extra: 1180 / 1125,
  20210. bottom: 0.02
  20211. }
  20212. },
  20213. back: {
  20214. height: math.unit(8, "feet"),
  20215. weight: math.unit(500, "lb"),
  20216. name: "Back",
  20217. image: {
  20218. source: "./media/characters/rifter-yrmori/back.svg",
  20219. extra: 1190 / 1145,
  20220. bottom: 0.001
  20221. }
  20222. },
  20223. wings: {
  20224. height: math.unit(7.75, "feet"),
  20225. weight: math.unit(500, "lb"),
  20226. name: "Wings",
  20227. image: {
  20228. source: "./media/characters/rifter-yrmori/wings.svg",
  20229. extra: 1357 / 1285
  20230. }
  20231. },
  20232. maw: {
  20233. height: math.unit(0.8, "feet"),
  20234. name: "Maw",
  20235. image: {
  20236. source: "./media/characters/rifter-yrmori/maw.svg"
  20237. }
  20238. },
  20239. mawfront: {
  20240. height: math.unit(1.45, "feet"),
  20241. name: "Maw (Front)",
  20242. image: {
  20243. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Normal",
  20250. height: math.unit(8, "feet"),
  20251. default: true
  20252. },
  20253. {
  20254. name: "Macro",
  20255. height: math.unit(42, "meters")
  20256. },
  20257. ]
  20258. ))
  20259. characterMakers.push(() => makeCharacter(
  20260. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20261. {
  20262. were: {
  20263. height: math.unit(25 + 6 / 12, "feet"),
  20264. weight: math.unit(10000, "lb"),
  20265. name: "Were",
  20266. image: {
  20267. source: "./media/characters/tahajin/were.svg",
  20268. extra: 801 / 770,
  20269. bottom: 0.042
  20270. }
  20271. },
  20272. aquatic: {
  20273. height: math.unit(6 + 4 / 12, "feet"),
  20274. weight: math.unit(160, "lb"),
  20275. name: "Aquatic",
  20276. image: {
  20277. source: "./media/characters/tahajin/aquatic.svg",
  20278. extra: 572 / 542,
  20279. bottom: 0.04
  20280. }
  20281. },
  20282. chow: {
  20283. height: math.unit(8 + 11 / 12, "feet"),
  20284. weight: math.unit(450, "lb"),
  20285. name: "Chow",
  20286. image: {
  20287. source: "./media/characters/tahajin/chow.svg",
  20288. extra: 660 / 640,
  20289. bottom: 0.015
  20290. }
  20291. },
  20292. demiNaga: {
  20293. height: math.unit(6 + 8 / 12, "feet"),
  20294. weight: math.unit(300, "lb"),
  20295. name: "Demi Naga",
  20296. image: {
  20297. source: "./media/characters/tahajin/demi-naga.svg",
  20298. extra: 643 / 615,
  20299. bottom: 0.1
  20300. }
  20301. },
  20302. data: {
  20303. height: math.unit(5, "inches"),
  20304. weight: math.unit(0.1, "lb"),
  20305. name: "Data",
  20306. image: {
  20307. source: "./media/characters/tahajin/data.svg"
  20308. }
  20309. },
  20310. fluu: {
  20311. height: math.unit(5 + 7 / 12, "feet"),
  20312. weight: math.unit(140, "lb"),
  20313. name: "Fluu",
  20314. image: {
  20315. source: "./media/characters/tahajin/fluu.svg",
  20316. extra: 628 / 592,
  20317. bottom: 0.02
  20318. }
  20319. },
  20320. starWarrior: {
  20321. height: math.unit(4 + 5 / 12, "feet"),
  20322. weight: math.unit(50, "lb"),
  20323. name: "Star Warrior",
  20324. image: {
  20325. source: "./media/characters/tahajin/star-warrior.svg"
  20326. }
  20327. },
  20328. },
  20329. [
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(25 + 6 / 12, "feet"),
  20333. default: true
  20334. },
  20335. ]
  20336. ))
  20337. characterMakers.push(() => makeCharacter(
  20338. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20339. {
  20340. front: {
  20341. height: math.unit(8, "feet"),
  20342. weight: math.unit(350, "lb"),
  20343. name: "Front",
  20344. image: {
  20345. source: "./media/characters/gabira/front.svg",
  20346. extra: 608 / 580,
  20347. bottom: 0.03
  20348. }
  20349. },
  20350. back: {
  20351. height: math.unit(8, "feet"),
  20352. weight: math.unit(350, "lb"),
  20353. name: "Back",
  20354. image: {
  20355. source: "./media/characters/gabira/back.svg",
  20356. extra: 608 / 580,
  20357. bottom: 0.03
  20358. }
  20359. },
  20360. },
  20361. [
  20362. {
  20363. name: "Normal",
  20364. height: math.unit(8, "feet"),
  20365. default: true
  20366. },
  20367. ]
  20368. ))
  20369. characterMakers.push(() => makeCharacter(
  20370. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20371. {
  20372. front: {
  20373. height: math.unit(5 + 3 / 12, "feet"),
  20374. weight: math.unit(137, "lb"),
  20375. name: "Front",
  20376. image: {
  20377. source: "./media/characters/sasha-katraine/front.svg",
  20378. bottom: 0.045
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Micro",
  20385. height: math.unit(5, "inches")
  20386. },
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(5 + 3 / 12, "feet"),
  20390. default: true
  20391. },
  20392. ]
  20393. ))
  20394. characterMakers.push(() => makeCharacter(
  20395. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20396. {
  20397. side: {
  20398. height: math.unit(4, "inches"),
  20399. weight: math.unit(200, "grams"),
  20400. name: "Side",
  20401. image: {
  20402. source: "./media/characters/der/side.svg",
  20403. extra: 719 / 400,
  20404. bottom: 30.6 / 749.9187
  20405. }
  20406. },
  20407. },
  20408. [
  20409. {
  20410. name: "Micro",
  20411. height: math.unit(4, "inches"),
  20412. default: true
  20413. },
  20414. ]
  20415. ))
  20416. characterMakers.push(() => makeCharacter(
  20417. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20418. {
  20419. side: {
  20420. height: math.unit(30, "meters"),
  20421. weight: math.unit(700, "tonnes"),
  20422. name: "Side",
  20423. image: {
  20424. source: "./media/characters/fixerdragon/side.svg",
  20425. extra: (1293.0514 - 116.03) / 1106.86,
  20426. bottom: 116.03 / 1293.0514
  20427. }
  20428. },
  20429. },
  20430. [
  20431. {
  20432. name: "Planck",
  20433. height: math.unit(1.6e-35, "meters")
  20434. },
  20435. {
  20436. name: "Micro",
  20437. height: math.unit(0.4, "meters")
  20438. },
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(30, "meters"),
  20442. default: true
  20443. },
  20444. {
  20445. name: "Megamacro",
  20446. height: math.unit(1.2, "megameters")
  20447. },
  20448. {
  20449. name: "Teramacro",
  20450. height: math.unit(130, "terameters")
  20451. },
  20452. {
  20453. name: "Yottamacro",
  20454. height: math.unit(6200, "yottameters")
  20455. },
  20456. ]
  20457. ));
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(8, "feet"),
  20463. weight: math.unit(250, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/kite/front.svg",
  20467. extra: 2796 / 2659,
  20468. bottom: 0.002
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Normal",
  20475. height: math.unit(8, "feet"),
  20476. default: true
  20477. },
  20478. {
  20479. name: "Macro",
  20480. height: math.unit(360, "feet")
  20481. },
  20482. {
  20483. name: "Megamacro",
  20484. height: math.unit(1500, "feet")
  20485. },
  20486. ]
  20487. ))
  20488. characterMakers.push(() => makeCharacter(
  20489. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20490. {
  20491. front: {
  20492. height: math.unit(5 + 10 / 12, "feet"),
  20493. weight: math.unit(150, "lb"),
  20494. name: "Front",
  20495. image: {
  20496. source: "./media/characters/poojawa-vynar/front.svg",
  20497. extra: (1506.1547 - 55) / 1356.6,
  20498. bottom: 55 / 1506.1547
  20499. }
  20500. },
  20501. frontTailless: {
  20502. height: math.unit(5 + 10 / 12, "feet"),
  20503. weight: math.unit(150, "lb"),
  20504. name: "Front (Tailless)",
  20505. image: {
  20506. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20507. extra: (1506.1547 - 55) / 1356.6,
  20508. bottom: 55 / 1506.1547
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(5 + 10 / 12, "feet"),
  20516. default: true
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20522. {
  20523. front: {
  20524. height: math.unit(293, "meters"),
  20525. weight: math.unit(70400, "tons"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/violette/front.svg",
  20529. extra: 1227 / 1180,
  20530. bottom: 0.005
  20531. }
  20532. },
  20533. back: {
  20534. height: math.unit(293, "meters"),
  20535. weight: math.unit(70400, "tons"),
  20536. name: "Back",
  20537. image: {
  20538. source: "./media/characters/violette/back.svg",
  20539. extra: 1227 / 1180,
  20540. bottom: 0.005
  20541. }
  20542. },
  20543. },
  20544. [
  20545. {
  20546. name: "Macro",
  20547. height: math.unit(293, "meters"),
  20548. default: true
  20549. },
  20550. ]
  20551. ))
  20552. characterMakers.push(() => makeCharacter(
  20553. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20554. {
  20555. front: {
  20556. height: math.unit(1050, "feet"),
  20557. weight: math.unit(200000, "tons"),
  20558. name: "Front",
  20559. image: {
  20560. source: "./media/characters/alessandra/front.svg",
  20561. extra: 960 / 912,
  20562. bottom: 0.06
  20563. }
  20564. },
  20565. },
  20566. [
  20567. {
  20568. name: "Macro",
  20569. height: math.unit(1050, "feet")
  20570. },
  20571. {
  20572. name: "Macro+",
  20573. height: math.unit(900, "meters"),
  20574. default: true
  20575. },
  20576. ]
  20577. ))
  20578. characterMakers.push(() => makeCharacter(
  20579. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20580. {
  20581. front: {
  20582. height: math.unit(5, "feet"),
  20583. weight: math.unit(187, "lb"),
  20584. name: "Front",
  20585. image: {
  20586. source: "./media/characters/person/front.svg",
  20587. extra: 3087 / 2945,
  20588. bottom: 91 / 3181
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Micro",
  20595. height: math.unit(3, "inches")
  20596. },
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(5, "feet"),
  20600. default: true
  20601. },
  20602. {
  20603. name: "Macro",
  20604. height: math.unit(90, "feet")
  20605. },
  20606. {
  20607. name: "Max Size",
  20608. height: math.unit(280, "feet")
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20614. {
  20615. front: {
  20616. height: math.unit(4.5, "meters"),
  20617. weight: math.unit(3200, "lb"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/ty/front.svg",
  20621. extra: 1038 / 960,
  20622. bottom: 31.156 / 1068
  20623. }
  20624. },
  20625. back: {
  20626. height: math.unit(4.5, "meters"),
  20627. weight: math.unit(3200, "lb"),
  20628. name: "Back",
  20629. image: {
  20630. source: "./media/characters/ty/back.svg",
  20631. extra: 1044 / 966,
  20632. bottom: 7.48 / 1049
  20633. }
  20634. },
  20635. },
  20636. [
  20637. {
  20638. name: "Normal",
  20639. height: math.unit(4.5, "meters"),
  20640. default: true
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20646. {
  20647. front: {
  20648. height: math.unit(5 + 4 / 12, "feet"),
  20649. weight: math.unit(115, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/rocky/front.svg",
  20653. extra: 1012 / 975,
  20654. bottom: 54 / 1066
  20655. }
  20656. },
  20657. },
  20658. [
  20659. {
  20660. name: "Normal",
  20661. height: math.unit(5 + 4 / 12, "feet"),
  20662. default: true
  20663. },
  20664. ]
  20665. ))
  20666. characterMakers.push(() => makeCharacter(
  20667. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20668. {
  20669. upright: {
  20670. height: math.unit(6, "meters"),
  20671. weight: math.unit(4000, "kg"),
  20672. name: "Upright",
  20673. image: {
  20674. source: "./media/characters/ruin/upright.svg",
  20675. extra: 668 / 661,
  20676. bottom: 42 / 799.8396
  20677. }
  20678. },
  20679. },
  20680. [
  20681. {
  20682. name: "Normal",
  20683. height: math.unit(6, "meters"),
  20684. default: true
  20685. },
  20686. ]
  20687. ))
  20688. characterMakers.push(() => makeCharacter(
  20689. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20690. {
  20691. front: {
  20692. height: math.unit(5, "feet"),
  20693. weight: math.unit(106, "lb"),
  20694. name: "Front",
  20695. image: {
  20696. source: "./media/characters/robin/front.svg",
  20697. extra: 862 / 799,
  20698. bottom: 42.4 / 914.8856
  20699. }
  20700. },
  20701. },
  20702. [
  20703. {
  20704. name: "Normal",
  20705. height: math.unit(5, "feet"),
  20706. default: true
  20707. },
  20708. ]
  20709. ))
  20710. characterMakers.push(() => makeCharacter(
  20711. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20712. {
  20713. side: {
  20714. height: math.unit(3, "feet"),
  20715. weight: math.unit(225, "lb"),
  20716. name: "Side",
  20717. image: {
  20718. source: "./media/characters/saian/side.svg",
  20719. extra: 566 / 356,
  20720. bottom: 79.7 / 643
  20721. }
  20722. },
  20723. maw: {
  20724. height: math.unit(2.85, "feet"),
  20725. name: "Maw",
  20726. image: {
  20727. source: "./media/characters/saian/maw.svg"
  20728. }
  20729. },
  20730. },
  20731. [
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(3, "feet"),
  20735. default: true
  20736. },
  20737. ]
  20738. ))
  20739. characterMakers.push(() => makeCharacter(
  20740. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20741. {
  20742. side: {
  20743. height: math.unit(8, "feet"),
  20744. weight: math.unit(300, "lb"),
  20745. name: "Side",
  20746. image: {
  20747. source: "./media/characters/equus-silvermane/side.svg",
  20748. extra: 2176 / 2050,
  20749. bottom: 65.7 / 2245
  20750. }
  20751. },
  20752. front: {
  20753. height: math.unit(8, "feet"),
  20754. weight: math.unit(300, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/equus-silvermane/front.svg",
  20758. extra: 4633 / 4400,
  20759. bottom: 71.3 / 4706.915
  20760. }
  20761. },
  20762. sideStepping: {
  20763. height: math.unit(8, "feet"),
  20764. weight: math.unit(300, "lb"),
  20765. name: "Side (Stepping)",
  20766. image: {
  20767. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20768. extra: 1968 / 1860,
  20769. bottom: 16.4 / 1989
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Normal",
  20776. height: math.unit(8, "feet")
  20777. },
  20778. {
  20779. name: "Minimacro",
  20780. height: math.unit(75, "feet"),
  20781. default: true
  20782. },
  20783. {
  20784. name: "Macro",
  20785. height: math.unit(150, "feet")
  20786. },
  20787. {
  20788. name: "Macro+",
  20789. height: math.unit(1000, "feet")
  20790. },
  20791. {
  20792. name: "Megamacro",
  20793. height: math.unit(1, "mile")
  20794. },
  20795. ]
  20796. ))
  20797. characterMakers.push(() => makeCharacter(
  20798. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20799. {
  20800. side: {
  20801. height: math.unit(20, "feet"),
  20802. weight: math.unit(30000, "kg"),
  20803. name: "Side",
  20804. image: {
  20805. source: "./media/characters/windar/side.svg",
  20806. extra: 1491 / 1248,
  20807. bottom: 82.56 / 1568
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "Normal",
  20814. height: math.unit(20, "feet"),
  20815. default: true
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20821. {
  20822. side: {
  20823. height: math.unit(15.66, "feet"),
  20824. weight: math.unit(150, "lb"),
  20825. name: "Side",
  20826. image: {
  20827. source: "./media/characters/melody/side.svg",
  20828. extra: 1097 / 944,
  20829. bottom: 11.8 / 1109
  20830. }
  20831. },
  20832. sideOutfit: {
  20833. height: math.unit(15.66, "feet"),
  20834. weight: math.unit(150, "lb"),
  20835. name: "Side (Outfit)",
  20836. image: {
  20837. source: "./media/characters/melody/side-outfit.svg",
  20838. extra: 1097 / 944,
  20839. bottom: 11.8 / 1109
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(15.66, "feet"),
  20847. default: true
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20853. {
  20854. front: {
  20855. height: math.unit(8, "feet"),
  20856. weight: math.unit(325, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/windera/front.svg",
  20860. extra: 3180 / 2845,
  20861. bottom: 178 / 3365
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(8, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20875. {
  20876. front: {
  20877. height: math.unit(28.75, "feet"),
  20878. weight: math.unit(2000, "kg"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/sonear/front.svg",
  20882. extra: 1041.1 / 964.9,
  20883. bottom: 53.7 / 1096.6
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(28.75, "feet"),
  20891. default: true
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20897. {
  20898. side: {
  20899. height: math.unit(25.5, "feet"),
  20900. weight: math.unit(23000, "kg"),
  20901. name: "Side",
  20902. image: {
  20903. source: "./media/characters/kanara/side.svg"
  20904. }
  20905. },
  20906. },
  20907. [
  20908. {
  20909. name: "Normal",
  20910. height: math.unit(25.5, "feet"),
  20911. default: true
  20912. },
  20913. ]
  20914. ))
  20915. characterMakers.push(() => makeCharacter(
  20916. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20917. {
  20918. side: {
  20919. height: math.unit(10, "feet"),
  20920. weight: math.unit(1000, "kg"),
  20921. name: "Side",
  20922. image: {
  20923. source: "./media/characters/ereus/side.svg",
  20924. extra: 1157 / 959,
  20925. bottom: 153 / 1312.5
  20926. }
  20927. },
  20928. },
  20929. [
  20930. {
  20931. name: "Normal",
  20932. height: math.unit(10, "feet"),
  20933. default: true
  20934. },
  20935. ]
  20936. ))
  20937. characterMakers.push(() => makeCharacter(
  20938. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20939. {
  20940. side: {
  20941. height: math.unit(4.5, "feet"),
  20942. weight: math.unit(500, "lb"),
  20943. name: "Side",
  20944. image: {
  20945. source: "./media/characters/e-ter/side.svg",
  20946. extra: 1550 / 1248,
  20947. bottom: 146 / 1694
  20948. }
  20949. },
  20950. },
  20951. [
  20952. {
  20953. name: "Normal",
  20954. height: math.unit(4.5, "feet"),
  20955. default: true
  20956. },
  20957. ]
  20958. ))
  20959. characterMakers.push(() => makeCharacter(
  20960. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20961. {
  20962. side: {
  20963. height: math.unit(9.7, "feet"),
  20964. weight: math.unit(4000, "kg"),
  20965. name: "Side",
  20966. image: {
  20967. source: "./media/characters/yamie/side.svg"
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(9.7, "feet"),
  20975. default: true
  20976. },
  20977. ]
  20978. ))
  20979. characterMakers.push(() => makeCharacter(
  20980. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20981. {
  20982. front: {
  20983. height: math.unit(50, "feet"),
  20984. weight: math.unit(50000, "kg"),
  20985. name: "Front",
  20986. image: {
  20987. source: "./media/characters/anders/front.svg",
  20988. extra: 570 / 539,
  20989. bottom: 14.7 / 586.7
  20990. }
  20991. },
  20992. },
  20993. [
  20994. {
  20995. name: "Large",
  20996. height: math.unit(50, "feet")
  20997. },
  20998. {
  20999. name: "Macro",
  21000. height: math.unit(2000, "feet"),
  21001. default: true
  21002. },
  21003. {
  21004. name: "Megamacro",
  21005. height: math.unit(12, "miles")
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21011. {
  21012. front: {
  21013. height: math.unit(7 + 2 / 12, "feet"),
  21014. weight: math.unit(300, "lb"),
  21015. name: "Front",
  21016. image: {
  21017. source: "./media/characters/reban/front.svg",
  21018. extra: 516 / 487,
  21019. bottom: 42.82 / 558.356
  21020. }
  21021. },
  21022. dick: {
  21023. height: math.unit(7 / 5, "feet"),
  21024. name: "Dick",
  21025. image: {
  21026. source: "./media/characters/reban/dick.svg"
  21027. }
  21028. },
  21029. },
  21030. [
  21031. {
  21032. name: "Natural Height",
  21033. height: math.unit(7 + 2 / 12, "feet")
  21034. },
  21035. {
  21036. name: "Macro",
  21037. height: math.unit(500, "feet"),
  21038. default: true
  21039. },
  21040. {
  21041. name: "Canon Height",
  21042. height: math.unit(50, "AU")
  21043. },
  21044. ]
  21045. ))
  21046. characterMakers.push(() => makeCharacter(
  21047. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21048. {
  21049. front: {
  21050. height: math.unit(6, "feet"),
  21051. weight: math.unit(150, "lb"),
  21052. name: "Front",
  21053. image: {
  21054. source: "./media/characters/terrance-keayes/front.svg",
  21055. extra: 1.005,
  21056. bottom: 151 / 1615
  21057. }
  21058. },
  21059. side: {
  21060. height: math.unit(6, "feet"),
  21061. weight: math.unit(150, "lb"),
  21062. name: "Side",
  21063. image: {
  21064. source: "./media/characters/terrance-keayes/side.svg",
  21065. extra: 1.005,
  21066. bottom: 129.4 / 1544
  21067. }
  21068. },
  21069. back: {
  21070. height: math.unit(6, "feet"),
  21071. weight: math.unit(150, "lb"),
  21072. name: "Back",
  21073. image: {
  21074. source: "./media/characters/terrance-keayes/back.svg",
  21075. extra: 1.005,
  21076. bottom: 58.4 / 1557.3
  21077. }
  21078. },
  21079. dick: {
  21080. height: math.unit(6 * 0.208, "feet"),
  21081. name: "Dick",
  21082. image: {
  21083. source: "./media/characters/terrance-keayes/dick.svg"
  21084. }
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "Canon Height",
  21090. height: math.unit(35, "miles"),
  21091. default: true
  21092. },
  21093. ]
  21094. ))
  21095. characterMakers.push(() => makeCharacter(
  21096. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21097. {
  21098. front: {
  21099. height: math.unit(6, "feet"),
  21100. weight: math.unit(150, "lb"),
  21101. name: "Front",
  21102. image: {
  21103. source: "./media/characters/ofelia/front.svg",
  21104. extra: 546 / 541,
  21105. bottom: 39 / 583
  21106. }
  21107. },
  21108. back: {
  21109. height: math.unit(6, "feet"),
  21110. weight: math.unit(150, "lb"),
  21111. name: "Back",
  21112. image: {
  21113. source: "./media/characters/ofelia/back.svg",
  21114. extra: 564 / 559.5,
  21115. bottom: 8.69 / 573.02
  21116. }
  21117. },
  21118. maw: {
  21119. height: math.unit(1, "feet"),
  21120. name: "Maw",
  21121. image: {
  21122. source: "./media/characters/ofelia/maw.svg"
  21123. }
  21124. },
  21125. foot: {
  21126. height: math.unit(1.949, "feet"),
  21127. name: "Foot",
  21128. image: {
  21129. source: "./media/characters/ofelia/foot.svg"
  21130. }
  21131. },
  21132. },
  21133. [
  21134. {
  21135. name: "Canon Height",
  21136. height: math.unit(2000, "miles"),
  21137. default: true
  21138. },
  21139. ]
  21140. ))
  21141. characterMakers.push(() => makeCharacter(
  21142. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21143. {
  21144. front: {
  21145. height: math.unit(6, "feet"),
  21146. weight: math.unit(150, "lb"),
  21147. name: "Front",
  21148. image: {
  21149. source: "./media/characters/samuel/front.svg",
  21150. extra: 265 / 258,
  21151. bottom: 2 / 266.1566
  21152. }
  21153. },
  21154. },
  21155. [
  21156. {
  21157. name: "Macro",
  21158. height: math.unit(100, "feet"),
  21159. default: true
  21160. },
  21161. {
  21162. name: "Full Size",
  21163. height: math.unit(1000, "miles")
  21164. },
  21165. ]
  21166. ))
  21167. characterMakers.push(() => makeCharacter(
  21168. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21169. {
  21170. front: {
  21171. height: math.unit(6, "feet"),
  21172. weight: math.unit(300, "lb"),
  21173. name: "Front",
  21174. image: {
  21175. source: "./media/characters/beishir-kiel/front.svg",
  21176. extra: 569 / 547,
  21177. bottom: 41.9 / 609
  21178. }
  21179. },
  21180. maw: {
  21181. height: math.unit(6 * 0.202, "feet"),
  21182. name: "Maw",
  21183. image: {
  21184. source: "./media/characters/beishir-kiel/maw.svg"
  21185. }
  21186. },
  21187. },
  21188. [
  21189. {
  21190. name: "Macro",
  21191. height: math.unit(300, "feet"),
  21192. default: true
  21193. },
  21194. ]
  21195. ))
  21196. characterMakers.push(() => makeCharacter(
  21197. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21198. {
  21199. front: {
  21200. height: math.unit(5 + 8 / 12, "feet"),
  21201. weight: math.unit(120, "lb"),
  21202. name: "Front",
  21203. image: {
  21204. source: "./media/characters/logan-grey/front.svg",
  21205. extra: 2539 / 2393,
  21206. bottom: 97.6 / 2636.37
  21207. }
  21208. },
  21209. frontAlt: {
  21210. height: math.unit(5 + 8 / 12, "feet"),
  21211. weight: math.unit(120, "lb"),
  21212. name: "Front (Alt)",
  21213. image: {
  21214. source: "./media/characters/logan-grey/front-alt.svg",
  21215. extra: 958 / 893,
  21216. bottom: 15 / 970.768
  21217. }
  21218. },
  21219. back: {
  21220. height: math.unit(5 + 8 / 12, "feet"),
  21221. weight: math.unit(120, "lb"),
  21222. name: "Back",
  21223. image: {
  21224. source: "./media/characters/logan-grey/back.svg",
  21225. extra: 958 / 893,
  21226. bottom: 2.1881 / 970.9788
  21227. }
  21228. },
  21229. dick: {
  21230. height: math.unit(1.437, "feet"),
  21231. name: "Dick",
  21232. image: {
  21233. source: "./media/characters/logan-grey/dick.svg"
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(5 + 8 / 12, "feet")
  21241. },
  21242. {
  21243. name: "The 500 Foot Femboy",
  21244. height: math.unit(500, "feet"),
  21245. default: true
  21246. },
  21247. {
  21248. name: "Megmacro",
  21249. height: math.unit(20, "miles")
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21255. {
  21256. front: {
  21257. height: math.unit(8 + 2 / 12, "feet"),
  21258. weight: math.unit(275, "lb"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/draganta/front.svg",
  21262. extra: 1177 / 1135,
  21263. bottom: 33.46 / 1212.1
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(8 + 6 / 12, "feet"),
  21271. default: true
  21272. },
  21273. {
  21274. name: "Macro",
  21275. height: math.unit(150, "feet")
  21276. },
  21277. {
  21278. name: "Megamacro",
  21279. height: math.unit(1000, "miles")
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21285. {
  21286. front: {
  21287. height: math.unit(1.72, "m"),
  21288. weight: math.unit(80, "lb"),
  21289. name: "Front",
  21290. image: {
  21291. source: "./media/characters/voski/front.svg",
  21292. extra: 2076.22 / 2022.4,
  21293. bottom: 102.7 / 2177.3866
  21294. }
  21295. },
  21296. frontNsfw: {
  21297. height: math.unit(1.72, "m"),
  21298. weight: math.unit(80, "lb"),
  21299. name: "Front (NSFW)",
  21300. image: {
  21301. source: "./media/characters/voski/front-nsfw.svg",
  21302. extra: 2076.22 / 2022.4,
  21303. bottom: 102.7 / 2177.3866
  21304. }
  21305. },
  21306. back: {
  21307. height: math.unit(1.72, "m"),
  21308. weight: math.unit(80, "lb"),
  21309. name: "Back",
  21310. image: {
  21311. source: "./media/characters/voski/back.svg",
  21312. extra: 2104 / 2051,
  21313. bottom: 10.45 / 2113.63
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(1.72, "m")
  21321. },
  21322. {
  21323. name: "Macro",
  21324. height: math.unit(55, "m"),
  21325. default: true
  21326. },
  21327. {
  21328. name: "Macro+",
  21329. height: math.unit(300, "m")
  21330. },
  21331. {
  21332. name: "Macro++",
  21333. height: math.unit(700, "m")
  21334. },
  21335. {
  21336. name: "Macro+++",
  21337. height: math.unit(4500, "m")
  21338. },
  21339. {
  21340. name: "Macro++++",
  21341. height: math.unit(45, "km")
  21342. },
  21343. {
  21344. name: "Macro+++++",
  21345. height: math.unit(1220, "km")
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21351. {
  21352. front: {
  21353. height: math.unit(2.3, "m"),
  21354. weight: math.unit(304, "kg"),
  21355. name: "Front",
  21356. image: {
  21357. source: "./media/characters/icowom-lee/front.svg",
  21358. extra: 985 / 955,
  21359. bottom: 25.4 / 1012
  21360. }
  21361. },
  21362. fronttentacles: {
  21363. height: math.unit(2.3, "m"),
  21364. weight: math.unit(304, "kg"),
  21365. name: "Front-tentacles",
  21366. image: {
  21367. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21368. extra: 985 / 955,
  21369. bottom: 25.4 / 1012
  21370. }
  21371. },
  21372. back: {
  21373. height: math.unit(2.3, "m"),
  21374. weight: math.unit(304, "kg"),
  21375. name: "Back",
  21376. image: {
  21377. source: "./media/characters/icowom-lee/back.svg",
  21378. extra: 975 / 954,
  21379. bottom: 9.5 / 985
  21380. }
  21381. },
  21382. backtentacles: {
  21383. height: math.unit(2.3, "m"),
  21384. weight: math.unit(304, "kg"),
  21385. name: "Back-tentacles",
  21386. image: {
  21387. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21388. extra: 975 / 954,
  21389. bottom: 9.5 / 985
  21390. }
  21391. },
  21392. frontDressed: {
  21393. height: math.unit(2.3, "m"),
  21394. weight: math.unit(304, "kg"),
  21395. name: "Front (Dressed)",
  21396. image: {
  21397. source: "./media/characters/icowom-lee/front-dressed.svg",
  21398. extra: 3076 / 2933,
  21399. bottom: 51.4 / 3125.1889
  21400. }
  21401. },
  21402. rump: {
  21403. height: math.unit(0.776, "meters"),
  21404. name: "Rump",
  21405. image: {
  21406. source: "./media/characters/icowom-lee/rump.svg"
  21407. }
  21408. },
  21409. genitals: {
  21410. height: math.unit(0.78, "meters"),
  21411. name: "Genitals",
  21412. image: {
  21413. source: "./media/characters/icowom-lee/genitals.svg"
  21414. }
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(2.3, "meters"),
  21421. default: true
  21422. },
  21423. {
  21424. name: "Macro",
  21425. height: math.unit(94, "meters"),
  21426. default: true
  21427. },
  21428. ]
  21429. ))
  21430. characterMakers.push(() => makeCharacter(
  21431. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21432. {
  21433. front: {
  21434. height: math.unit(22, "meters"),
  21435. weight: math.unit(21000, "kg"),
  21436. name: "Front",
  21437. image: {
  21438. source: "./media/characters/shock-diamond/front.svg",
  21439. extra: 2204 / 2053,
  21440. bottom: 65 / 2239.47
  21441. }
  21442. },
  21443. frontNude: {
  21444. height: math.unit(22, "meters"),
  21445. weight: math.unit(21000, "kg"),
  21446. name: "Front (Nude)",
  21447. image: {
  21448. source: "./media/characters/shock-diamond/front-nude.svg",
  21449. extra: 2514 / 2285,
  21450. bottom: 13 / 2527.56
  21451. }
  21452. },
  21453. },
  21454. [
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(3, "meters")
  21458. },
  21459. {
  21460. name: "Macro",
  21461. height: math.unit(22, "meters"),
  21462. default: true
  21463. },
  21464. ]
  21465. ))
  21466. characterMakers.push(() => makeCharacter(
  21467. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21468. {
  21469. front: {
  21470. height: math.unit(5 + 4 / 12, "feet"),
  21471. weight: math.unit(120, "lb"),
  21472. name: "Front",
  21473. image: {
  21474. source: "./media/characters/rory/front.svg",
  21475. extra: 589 / 556,
  21476. bottom: 45.7 / 635.76
  21477. }
  21478. },
  21479. frontNude: {
  21480. height: math.unit(5 + 4 / 12, "feet"),
  21481. weight: math.unit(120, "lb"),
  21482. name: "Front (Nude)",
  21483. image: {
  21484. source: "./media/characters/rory/front-nude.svg",
  21485. extra: 589 / 556,
  21486. bottom: 45.7 / 635.76
  21487. }
  21488. },
  21489. side: {
  21490. height: math.unit(5 + 4 / 12, "feet"),
  21491. weight: math.unit(120, "lb"),
  21492. name: "Side",
  21493. image: {
  21494. source: "./media/characters/rory/side.svg",
  21495. extra: 597 / 564,
  21496. bottom: 55 / 653
  21497. }
  21498. },
  21499. back: {
  21500. height: math.unit(5 + 4 / 12, "feet"),
  21501. weight: math.unit(120, "lb"),
  21502. name: "Back",
  21503. image: {
  21504. source: "./media/characters/rory/back.svg",
  21505. extra: 620 / 585,
  21506. bottom: 8.86 / 630.43
  21507. }
  21508. },
  21509. dick: {
  21510. height: math.unit(0.86, "feet"),
  21511. name: "Dick",
  21512. image: {
  21513. source: "./media/characters/rory/dick.svg"
  21514. }
  21515. },
  21516. },
  21517. [
  21518. {
  21519. name: "Normal",
  21520. height: math.unit(5 + 4 / 12, "feet"),
  21521. default: true
  21522. },
  21523. {
  21524. name: "Macro",
  21525. height: math.unit(100, "feet")
  21526. },
  21527. {
  21528. name: "Macro+",
  21529. height: math.unit(140, "feet")
  21530. },
  21531. {
  21532. name: "Macro++",
  21533. height: math.unit(300, "feet")
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21539. {
  21540. front: {
  21541. height: math.unit(5 + 9 / 12, "feet"),
  21542. weight: math.unit(190, "lb"),
  21543. name: "Front",
  21544. image: {
  21545. source: "./media/characters/sprisk/front.svg",
  21546. extra: 1225 / 1180,
  21547. bottom: 42.7 / 1266.4
  21548. }
  21549. },
  21550. frontNsfw: {
  21551. height: math.unit(5 + 9 / 12, "feet"),
  21552. weight: math.unit(190, "lb"),
  21553. name: "Front (NSFW)",
  21554. image: {
  21555. source: "./media/characters/sprisk/front-nsfw.svg",
  21556. extra: 1225 / 1180,
  21557. bottom: 42.7 / 1266.4
  21558. }
  21559. },
  21560. back: {
  21561. height: math.unit(5 + 9 / 12, "feet"),
  21562. weight: math.unit(190, "lb"),
  21563. name: "Back",
  21564. image: {
  21565. source: "./media/characters/sprisk/back.svg",
  21566. extra: 1247 / 1200,
  21567. bottom: 5.6 / 1253.04
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Tiny",
  21574. height: math.unit(2, "inches")
  21575. },
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(5 + 9 / 12, "feet"),
  21579. default: true
  21580. },
  21581. {
  21582. name: "Mini Macro",
  21583. height: math.unit(18, "feet")
  21584. },
  21585. {
  21586. name: "Macro",
  21587. height: math.unit(100, "feet")
  21588. },
  21589. {
  21590. name: "MACRO",
  21591. height: math.unit(50, "miles")
  21592. },
  21593. {
  21594. name: "M A C R O",
  21595. height: math.unit(300, "miles")
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21601. {
  21602. side: {
  21603. height: math.unit(15.6, "meters"),
  21604. weight: math.unit(700000, "kg"),
  21605. name: "Side",
  21606. image: {
  21607. source: "./media/characters/bunsen/side.svg",
  21608. extra: 1644 / 358
  21609. }
  21610. },
  21611. foot: {
  21612. height: math.unit(1.611 * 1644 / 358, "meter"),
  21613. name: "Foot",
  21614. image: {
  21615. source: "./media/characters/bunsen/foot.svg"
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Small",
  21622. height: math.unit(10, "feet")
  21623. },
  21624. {
  21625. name: "Normal",
  21626. height: math.unit(15.6, "meters"),
  21627. default: true
  21628. },
  21629. ]
  21630. ))
  21631. characterMakers.push(() => makeCharacter(
  21632. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21633. {
  21634. front: {
  21635. height: math.unit(4 + 11 / 12, "feet"),
  21636. weight: math.unit(140, "lb"),
  21637. name: "Front",
  21638. image: {
  21639. source: "./media/characters/sesh/front.svg",
  21640. extra: 3420 / 3231,
  21641. bottom: 72 / 3949.5
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Normal",
  21648. height: math.unit(4 + 11 / 12, "feet")
  21649. },
  21650. {
  21651. name: "Grown",
  21652. height: math.unit(15, "feet"),
  21653. default: true
  21654. },
  21655. {
  21656. name: "Macro",
  21657. height: math.unit(1500, "feet")
  21658. },
  21659. {
  21660. name: "Megamacro",
  21661. height: math.unit(30, "miles")
  21662. },
  21663. {
  21664. name: "Continental",
  21665. height: math.unit(3000, "miles")
  21666. },
  21667. {
  21668. name: "Gravity Mass",
  21669. height: math.unit(300000, "miles")
  21670. },
  21671. {
  21672. name: "Planet Buster",
  21673. height: math.unit(30000000, "miles")
  21674. },
  21675. {
  21676. name: "Big",
  21677. height: math.unit(3000000000, "miles")
  21678. },
  21679. ]
  21680. ))
  21681. characterMakers.push(() => makeCharacter(
  21682. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21683. {
  21684. front: {
  21685. height: math.unit(9, "feet"),
  21686. weight: math.unit(350, "lb"),
  21687. name: "Front",
  21688. image: {
  21689. source: "./media/characters/pepper/front.svg",
  21690. extra: 1448 / 1312,
  21691. bottom: 9.4 / 1457.88
  21692. }
  21693. },
  21694. back: {
  21695. height: math.unit(9, "feet"),
  21696. weight: math.unit(350, "lb"),
  21697. name: "Back",
  21698. image: {
  21699. source: "./media/characters/pepper/back.svg",
  21700. extra: 1423 / 1300,
  21701. bottom: 4.6 / 1429
  21702. }
  21703. },
  21704. maw: {
  21705. height: math.unit(0.932, "feet"),
  21706. name: "Maw",
  21707. image: {
  21708. source: "./media/characters/pepper/maw.svg"
  21709. }
  21710. },
  21711. },
  21712. [
  21713. {
  21714. name: "Normal",
  21715. height: math.unit(9, "feet"),
  21716. default: true
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21722. {
  21723. front: {
  21724. height: math.unit(6, "feet"),
  21725. weight: math.unit(150, "lb"),
  21726. name: "Front",
  21727. image: {
  21728. source: "./media/characters/maelstrom/front.svg",
  21729. extra: 2100 / 1883,
  21730. bottom: 94 / 2196.7
  21731. }
  21732. },
  21733. },
  21734. [
  21735. {
  21736. name: "Less Kaiju",
  21737. height: math.unit(200, "feet")
  21738. },
  21739. {
  21740. name: "Kaiju",
  21741. height: math.unit(400, "feet"),
  21742. default: true
  21743. },
  21744. {
  21745. name: "Kaiju-er",
  21746. height: math.unit(600, "feet")
  21747. },
  21748. ]
  21749. ))
  21750. characterMakers.push(() => makeCharacter(
  21751. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21752. {
  21753. front: {
  21754. height: math.unit(6 + 5 / 12, "feet"),
  21755. weight: math.unit(180, "lb"),
  21756. name: "Front",
  21757. image: {
  21758. source: "./media/characters/lexir/front.svg",
  21759. extra: 180 / 172,
  21760. bottom: 12 / 192
  21761. }
  21762. },
  21763. back: {
  21764. height: math.unit(6 + 5 / 12, "feet"),
  21765. weight: math.unit(180, "lb"),
  21766. name: "Back",
  21767. image: {
  21768. source: "./media/characters/lexir/back.svg",
  21769. extra: 183.84 / 175.5,
  21770. bottom: 3.1 / 187
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Very Smal",
  21777. height: math.unit(1, "nm")
  21778. },
  21779. {
  21780. name: "Normal",
  21781. height: math.unit(6 + 5 / 12, "feet"),
  21782. default: true
  21783. },
  21784. {
  21785. name: "Macro",
  21786. height: math.unit(1, "mile")
  21787. },
  21788. {
  21789. name: "Megamacro",
  21790. height: math.unit(50, "miles")
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(1.5, "meters"),
  21799. weight: math.unit(100, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/maksio/front.svg",
  21803. extra: 1549 / 1531,
  21804. bottom: 123.7 / 1674.5429
  21805. }
  21806. },
  21807. back: {
  21808. height: math.unit(1.5, "meters"),
  21809. weight: math.unit(100, "lb"),
  21810. name: "Back",
  21811. image: {
  21812. source: "./media/characters/maksio/back.svg",
  21813. extra: 1541 / 1509,
  21814. bottom: 97 / 1639
  21815. }
  21816. },
  21817. hand: {
  21818. height: math.unit(0.621, "feet"),
  21819. name: "Hand",
  21820. image: {
  21821. source: "./media/characters/maksio/hand.svg"
  21822. }
  21823. },
  21824. foot: {
  21825. height: math.unit(1.611, "feet"),
  21826. name: "Foot",
  21827. image: {
  21828. source: "./media/characters/maksio/foot.svg"
  21829. }
  21830. },
  21831. },
  21832. [
  21833. {
  21834. name: "Shrunken",
  21835. height: math.unit(10, "cm")
  21836. },
  21837. {
  21838. name: "Normal",
  21839. height: math.unit(150, "cm"),
  21840. default: true
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(100, "feet"),
  21849. name: "Front",
  21850. image: {
  21851. source: "./media/characters/erza-bear/front.svg",
  21852. extra: 2449 / 2390,
  21853. bottom: 46 / 2494
  21854. }
  21855. },
  21856. back: {
  21857. height: math.unit(100, "feet"),
  21858. name: "Back",
  21859. image: {
  21860. source: "./media/characters/erza-bear/back.svg",
  21861. extra: 2489 / 2430,
  21862. bottom: 85.4 / 2480
  21863. }
  21864. },
  21865. tail: {
  21866. height: math.unit(42, "feet"),
  21867. name: "Tail",
  21868. image: {
  21869. source: "./media/characters/erza-bear/tail.svg"
  21870. }
  21871. },
  21872. tongue: {
  21873. height: math.unit(8, "feet"),
  21874. name: "Tongue",
  21875. image: {
  21876. source: "./media/characters/erza-bear/tongue.svg"
  21877. }
  21878. },
  21879. dick: {
  21880. height: math.unit(10.5, "feet"),
  21881. name: "Dick",
  21882. image: {
  21883. source: "./media/characters/erza-bear/dick.svg"
  21884. }
  21885. },
  21886. dickVertical: {
  21887. height: math.unit(16.9, "feet"),
  21888. name: "Dick (Vertical)",
  21889. image: {
  21890. source: "./media/characters/erza-bear/dick-vertical.svg"
  21891. }
  21892. },
  21893. },
  21894. [
  21895. {
  21896. name: "Macro",
  21897. height: math.unit(100, "feet"),
  21898. default: true
  21899. },
  21900. ]
  21901. ))
  21902. characterMakers.push(() => makeCharacter(
  21903. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21904. {
  21905. front: {
  21906. height: math.unit(172, "cm"),
  21907. weight: math.unit(73, "kg"),
  21908. name: "Front",
  21909. image: {
  21910. source: "./media/characters/violet-flor/front.svg",
  21911. extra: 1530 / 1442,
  21912. bottom: 61.9 / 1588.8
  21913. }
  21914. },
  21915. back: {
  21916. height: math.unit(180, "cm"),
  21917. weight: math.unit(73, "kg"),
  21918. name: "Back",
  21919. image: {
  21920. source: "./media/characters/violet-flor/back.svg",
  21921. extra: 1692 / 1630,
  21922. bottom: 20 / 1712
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(172, "cm"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(6, "feet"),
  21939. weight: math.unit(220, "lb"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/lynn-rhea/front.svg",
  21943. extra: 310 / 273
  21944. }
  21945. },
  21946. back: {
  21947. height: math.unit(6, "feet"),
  21948. weight: math.unit(220, "lb"),
  21949. name: "Back",
  21950. image: {
  21951. source: "./media/characters/lynn-rhea/back.svg",
  21952. extra: 310 / 273
  21953. }
  21954. },
  21955. dicks: {
  21956. height: math.unit(0.9, "feet"),
  21957. name: "Dicks",
  21958. image: {
  21959. source: "./media/characters/lynn-rhea/dicks.svg"
  21960. }
  21961. },
  21962. slit: {
  21963. height: math.unit(0.4, "feet"),
  21964. name: "Slit",
  21965. image: {
  21966. source: "./media/characters/lynn-rhea/slit.svg"
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Micro",
  21973. height: math.unit(1, "inch")
  21974. },
  21975. {
  21976. name: "Macro",
  21977. height: math.unit(60, "feet"),
  21978. default: true
  21979. },
  21980. {
  21981. name: "Megamacro",
  21982. height: math.unit(2, "miles")
  21983. },
  21984. {
  21985. name: "Gigamacro",
  21986. height: math.unit(3, "earths")
  21987. },
  21988. {
  21989. name: "Galactic",
  21990. height: math.unit(0.8, "galaxies")
  21991. },
  21992. ]
  21993. ))
  21994. characterMakers.push(() => makeCharacter(
  21995. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21996. {
  21997. front: {
  21998. height: math.unit(1600, "feet"),
  21999. weight: math.unit(85758785169, "kg"),
  22000. name: "Front",
  22001. image: {
  22002. source: "./media/characters/valathos/front.svg",
  22003. extra: 1451 / 1339
  22004. }
  22005. },
  22006. },
  22007. [
  22008. {
  22009. name: "Macro",
  22010. height: math.unit(1600, "feet"),
  22011. default: true
  22012. },
  22013. ]
  22014. ))
  22015. characterMakers.push(() => makeCharacter(
  22016. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22017. {
  22018. front: {
  22019. height: math.unit(7 + 5 / 12, "feet"),
  22020. weight: math.unit(300, "lb"),
  22021. name: "Front",
  22022. image: {
  22023. source: "./media/characters/azula/front.svg",
  22024. extra: 3208 / 2880,
  22025. bottom: 80.2 / 3277
  22026. }
  22027. },
  22028. back: {
  22029. height: math.unit(7 + 5 / 12, "feet"),
  22030. weight: math.unit(300, "lb"),
  22031. name: "Back",
  22032. image: {
  22033. source: "./media/characters/azula/back.svg",
  22034. extra: 3169 / 2822,
  22035. bottom: 150.6 / 3321
  22036. }
  22037. },
  22038. },
  22039. [
  22040. {
  22041. name: "Normal",
  22042. height: math.unit(7 + 5 / 12, "feet"),
  22043. default: true
  22044. },
  22045. {
  22046. name: "Big",
  22047. height: math.unit(20, "feet")
  22048. },
  22049. ]
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22053. {
  22054. front: {
  22055. height: math.unit(5 + 1 / 12, "feet"),
  22056. weight: math.unit(110, "lb"),
  22057. name: "Front",
  22058. image: {
  22059. source: "./media/characters/rupert/front.svg",
  22060. extra: 1549 / 1495,
  22061. bottom: 54.2 / 1604.4
  22062. }
  22063. },
  22064. },
  22065. [
  22066. {
  22067. name: "Normal",
  22068. height: math.unit(5 + 1 / 12, "feet"),
  22069. default: true
  22070. },
  22071. ]
  22072. ))
  22073. characterMakers.push(() => makeCharacter(
  22074. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22075. {
  22076. front: {
  22077. height: math.unit(8 + 4 / 12, "feet"),
  22078. weight: math.unit(350, "lb"),
  22079. name: "Front",
  22080. image: {
  22081. source: "./media/characters/sheera-castellar/front.svg",
  22082. extra: 1957 / 1894,
  22083. bottom: 26.97 / 1975.017
  22084. }
  22085. },
  22086. side: {
  22087. height: math.unit(8 + 4 / 12, "feet"),
  22088. weight: math.unit(350, "lb"),
  22089. name: "Side",
  22090. image: {
  22091. source: "./media/characters/sheera-castellar/side.svg",
  22092. extra: 1957 / 1894
  22093. }
  22094. },
  22095. back: {
  22096. height: math.unit(8 + 4 / 12, "feet"),
  22097. weight: math.unit(350, "lb"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/sheera-castellar/back.svg",
  22101. extra: 1957 / 1894
  22102. }
  22103. },
  22104. angled: {
  22105. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22106. weight: math.unit(350, "lb"),
  22107. name: "Angled",
  22108. image: {
  22109. source: "./media/characters/sheera-castellar/angled.svg",
  22110. extra: 1807 / 1707,
  22111. bottom: 68 / 1875
  22112. }
  22113. },
  22114. genitals: {
  22115. height: math.unit(2.2, "feet"),
  22116. name: "Genitals",
  22117. image: {
  22118. source: "./media/characters/sheera-castellar/genitals.svg"
  22119. }
  22120. },
  22121. },
  22122. [
  22123. {
  22124. name: "Normal",
  22125. height: math.unit(8 + 4 / 12, "feet")
  22126. },
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(150, "feet"),
  22130. default: true
  22131. },
  22132. {
  22133. name: "Macro+",
  22134. height: math.unit(800, "feet")
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(6, "feet"),
  22143. weight: math.unit(150, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/jaipur/front.svg",
  22147. extra: 3860 / 3731,
  22148. bottom: 287 / 4140
  22149. }
  22150. },
  22151. back: {
  22152. height: math.unit(6, "feet"),
  22153. weight: math.unit(150, "lb"),
  22154. name: "Back",
  22155. image: {
  22156. source: "./media/characters/jaipur/back.svg",
  22157. extra: 4060 / 3930,
  22158. bottom: 151 / 4200
  22159. }
  22160. },
  22161. },
  22162. [
  22163. {
  22164. name: "Normal",
  22165. height: math.unit(1.85, "meters"),
  22166. default: true
  22167. },
  22168. {
  22169. name: "Macro",
  22170. height: math.unit(150, "meters")
  22171. },
  22172. {
  22173. name: "Macro+",
  22174. height: math.unit(0.5, "miles")
  22175. },
  22176. {
  22177. name: "Macro++",
  22178. height: math.unit(2.5, "miles")
  22179. },
  22180. {
  22181. name: "Macro+++",
  22182. height: math.unit(12, "miles")
  22183. },
  22184. {
  22185. name: "Macro++++",
  22186. height: math.unit(120, "miles")
  22187. },
  22188. {
  22189. name: "Macro+++++",
  22190. height: math.unit(1200, "miles")
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(6, "feet"),
  22199. weight: math.unit(150, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/sheila-wolf/front.svg",
  22203. extra: 1931 / 1808,
  22204. bottom: 29.5 / 1960
  22205. }
  22206. },
  22207. dick: {
  22208. height: math.unit(1.464, "feet"),
  22209. name: "Dick",
  22210. image: {
  22211. source: "./media/characters/sheila-wolf/dick.svg"
  22212. }
  22213. },
  22214. muzzle: {
  22215. height: math.unit(0.513, "feet"),
  22216. name: "Muzzle",
  22217. image: {
  22218. source: "./media/characters/sheila-wolf/muzzle.svg"
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Macro",
  22225. height: math.unit(70, "feet"),
  22226. default: true
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22232. {
  22233. front: {
  22234. height: math.unit(32, "meters"),
  22235. weight: math.unit(300000, "kg"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/almor/front.svg",
  22239. extra: 1408 / 1322,
  22240. bottom: 94.6 / 1506.5
  22241. }
  22242. },
  22243. },
  22244. [
  22245. {
  22246. name: "Macro",
  22247. height: math.unit(32, "meters"),
  22248. default: true
  22249. },
  22250. ]
  22251. ))
  22252. characterMakers.push(() => makeCharacter(
  22253. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22254. {
  22255. front: {
  22256. height: math.unit(7, "feet"),
  22257. weight: math.unit(200, "lb"),
  22258. name: "Front",
  22259. image: {
  22260. source: "./media/characters/silver/front.svg",
  22261. extra: 472.1 / 450.5,
  22262. bottom: 26.5 / 499.424
  22263. }
  22264. },
  22265. },
  22266. [
  22267. {
  22268. name: "Normal",
  22269. height: math.unit(7, "feet"),
  22270. default: true
  22271. },
  22272. {
  22273. name: "Macro",
  22274. height: math.unit(800, "feet")
  22275. },
  22276. {
  22277. name: "Megamacro",
  22278. height: math.unit(250, "miles")
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(6, "feet"),
  22287. weight: math.unit(150, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/pliskin/front.svg",
  22291. extra: 1469 / 1359,
  22292. bottom: 70 / 1540
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Micro",
  22299. height: math.unit(3, "inches")
  22300. },
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(5 + 11 / 12, "feet"),
  22304. default: true
  22305. },
  22306. {
  22307. name: "Macro",
  22308. height: math.unit(120, "feet")
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22314. {
  22315. front: {
  22316. height: math.unit(6, "feet"),
  22317. weight: math.unit(150, "lb"),
  22318. name: "Front",
  22319. image: {
  22320. source: "./media/characters/sammy/front.svg",
  22321. extra: 1193 / 1089,
  22322. bottom: 30.5 / 1226
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Macro",
  22329. height: math.unit(1700, "feet"),
  22330. default: true
  22331. },
  22332. {
  22333. name: "Examacro",
  22334. height: math.unit(2.5e9, "lightyears")
  22335. },
  22336. ]
  22337. ))
  22338. characterMakers.push(() => makeCharacter(
  22339. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22340. {
  22341. front: {
  22342. height: math.unit(21, "meters"),
  22343. weight: math.unit(12, "tonnes"),
  22344. name: "Front",
  22345. image: {
  22346. source: "./media/characters/kuru/front.svg",
  22347. extra: 4301 / 3785,
  22348. bottom: 371.3 / 4691
  22349. }
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Macro",
  22355. height: math.unit(21, "meters"),
  22356. default: true
  22357. },
  22358. ]
  22359. ))
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22362. {
  22363. front: {
  22364. height: math.unit(23, "meters"),
  22365. weight: math.unit(12.2, "tonnes"),
  22366. name: "Front",
  22367. image: {
  22368. source: "./media/characters/rakka/front.svg",
  22369. extra: 4670 / 4169,
  22370. bottom: 301 / 4968.7
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Macro",
  22377. height: math.unit(23, "meters"),
  22378. default: true
  22379. },
  22380. ]
  22381. ))
  22382. characterMakers.push(() => makeCharacter(
  22383. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22384. {
  22385. front: {
  22386. height: math.unit(6, "feet"),
  22387. weight: math.unit(150, "lb"),
  22388. name: "Front",
  22389. image: {
  22390. source: "./media/characters/rhys-feline/front.svg",
  22391. extra: 2488 / 2308,
  22392. bottom: 35.67 / 2519.19
  22393. }
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Really Small",
  22399. height: math.unit(1, "nm")
  22400. },
  22401. {
  22402. name: "Micro",
  22403. height: math.unit(4, "inches")
  22404. },
  22405. {
  22406. name: "Normal",
  22407. height: math.unit(4 + 10 / 12, "feet"),
  22408. default: true
  22409. },
  22410. {
  22411. name: "Macro",
  22412. height: math.unit(100, "feet")
  22413. },
  22414. {
  22415. name: "Megamacto",
  22416. height: math.unit(50, "miles")
  22417. },
  22418. ]
  22419. ))
  22420. characterMakers.push(() => makeCharacter(
  22421. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22422. {
  22423. side: {
  22424. height: math.unit(30, "feet"),
  22425. weight: math.unit(35000, "kg"),
  22426. name: "Side",
  22427. image: {
  22428. source: "./media/characters/alydar/side.svg",
  22429. extra: 234 / 222,
  22430. bottom: 6.5 / 241
  22431. }
  22432. },
  22433. front: {
  22434. height: math.unit(30, "feet"),
  22435. weight: math.unit(35000, "kg"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/alydar/front.svg",
  22439. extra: 223.37 / 210.2,
  22440. bottom: 22.3 / 246.76
  22441. }
  22442. },
  22443. top: {
  22444. height: math.unit(64.54, "feet"),
  22445. weight: math.unit(35000, "kg"),
  22446. name: "Top",
  22447. image: {
  22448. source: "./media/characters/alydar/top.svg"
  22449. }
  22450. },
  22451. anthro: {
  22452. height: math.unit(30, "feet"),
  22453. weight: math.unit(9000, "kg"),
  22454. name: "Anthro",
  22455. image: {
  22456. source: "./media/characters/alydar/anthro.svg",
  22457. extra: 432 / 421,
  22458. bottom: 7.18 / 440
  22459. }
  22460. },
  22461. maw: {
  22462. height: math.unit(11.693, "feet"),
  22463. name: "Maw",
  22464. image: {
  22465. source: "./media/characters/alydar/maw.svg"
  22466. }
  22467. },
  22468. head: {
  22469. height: math.unit(11.693, "feet"),
  22470. name: "Head",
  22471. image: {
  22472. source: "./media/characters/alydar/head.svg"
  22473. }
  22474. },
  22475. headAlt: {
  22476. height: math.unit(12.861, "feet"),
  22477. name: "Head (Alt)",
  22478. image: {
  22479. source: "./media/characters/alydar/head-alt.svg"
  22480. }
  22481. },
  22482. wing: {
  22483. height: math.unit(20.712, "feet"),
  22484. name: "Wing",
  22485. image: {
  22486. source: "./media/characters/alydar/wing.svg"
  22487. }
  22488. },
  22489. wingFeather: {
  22490. height: math.unit(9.662, "feet"),
  22491. name: "Wing Feather",
  22492. image: {
  22493. source: "./media/characters/alydar/wing-feather.svg"
  22494. }
  22495. },
  22496. countourFeather: {
  22497. height: math.unit(4.154, "feet"),
  22498. name: "Contour Feather",
  22499. image: {
  22500. source: "./media/characters/alydar/contour-feather.svg"
  22501. }
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Diplomatic",
  22507. height: math.unit(13, "feet"),
  22508. default: true
  22509. },
  22510. {
  22511. name: "Small",
  22512. height: math.unit(30, "feet")
  22513. },
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(95, "feet"),
  22517. default: true
  22518. },
  22519. {
  22520. name: "Large",
  22521. height: math.unit(285, "feet")
  22522. },
  22523. {
  22524. name: "Incomprehensible",
  22525. height: math.unit(450, "megameters")
  22526. },
  22527. ]
  22528. ))
  22529. characterMakers.push(() => makeCharacter(
  22530. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22531. {
  22532. side: {
  22533. height: math.unit(11, "feet"),
  22534. weight: math.unit(1750, "kg"),
  22535. name: "Side",
  22536. image: {
  22537. source: "./media/characters/selicia/side.svg",
  22538. extra: 440 / 396,
  22539. bottom: 24.8 / 465.979
  22540. }
  22541. },
  22542. maw: {
  22543. height: math.unit(4.665, "feet"),
  22544. name: "Maw",
  22545. image: {
  22546. source: "./media/characters/selicia/maw.svg"
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Normal",
  22553. height: math.unit(11, "feet"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22560. {
  22561. side: {
  22562. height: math.unit(2 + 6 / 12, "feet"),
  22563. weight: math.unit(30, "lb"),
  22564. name: "Side",
  22565. image: {
  22566. source: "./media/characters/layla/side.svg",
  22567. extra: 244 / 188,
  22568. bottom: 18.2 / 262.1
  22569. }
  22570. },
  22571. back: {
  22572. height: math.unit(2 + 6 / 12, "feet"),
  22573. weight: math.unit(30, "lb"),
  22574. name: "Back",
  22575. image: {
  22576. source: "./media/characters/layla/back.svg",
  22577. extra: 308 / 241.5,
  22578. bottom: 8.9 / 316.8
  22579. }
  22580. },
  22581. cumming: {
  22582. height: math.unit(2 + 6 / 12, "feet"),
  22583. weight: math.unit(30, "lb"),
  22584. name: "Cumming",
  22585. image: {
  22586. source: "./media/characters/layla/cumming.svg",
  22587. extra: 342 / 279,
  22588. bottom: 595 / 938
  22589. }
  22590. },
  22591. dickFlaccid: {
  22592. height: math.unit(2.595, "feet"),
  22593. name: "Flaccid Genitals",
  22594. image: {
  22595. source: "./media/characters/layla/dick-flaccid.svg"
  22596. }
  22597. },
  22598. dickErect: {
  22599. height: math.unit(2.359, "feet"),
  22600. name: "Erect Genitals",
  22601. image: {
  22602. source: "./media/characters/layla/dick-erect.svg"
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Micro",
  22609. height: math.unit(1, "inch")
  22610. },
  22611. {
  22612. name: "Small",
  22613. height: math.unit(1, "foot")
  22614. },
  22615. {
  22616. name: "Normal",
  22617. height: math.unit(2 + 6 / 12, "feet"),
  22618. default: true
  22619. },
  22620. {
  22621. name: "Macro",
  22622. height: math.unit(200, "feet")
  22623. },
  22624. {
  22625. name: "Megamacro",
  22626. height: math.unit(1000, "miles")
  22627. },
  22628. {
  22629. name: "Planetary",
  22630. height: math.unit(8000, "miles")
  22631. },
  22632. {
  22633. name: "True Layla",
  22634. height: math.unit(200000 * 7, "multiverses")
  22635. },
  22636. ]
  22637. ))
  22638. characterMakers.push(() => makeCharacter(
  22639. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22640. {
  22641. back: {
  22642. height: math.unit(10.5, "feet"),
  22643. weight: math.unit(800, "lb"),
  22644. name: "Back",
  22645. image: {
  22646. source: "./media/characters/knox/back.svg",
  22647. extra: 1486 / 1089,
  22648. bottom: 107 / 1601.4
  22649. }
  22650. },
  22651. side: {
  22652. height: math.unit(10.5, "feet"),
  22653. weight: math.unit(800, "lb"),
  22654. name: "Side",
  22655. image: {
  22656. source: "./media/characters/knox/side.svg",
  22657. extra: 244 / 218,
  22658. bottom: 14 / 260
  22659. }
  22660. },
  22661. },
  22662. [
  22663. {
  22664. name: "Compact",
  22665. height: math.unit(10.5, "feet"),
  22666. default: true
  22667. },
  22668. {
  22669. name: "Dynamax",
  22670. height: math.unit(210, "feet")
  22671. },
  22672. {
  22673. name: "Full Macro",
  22674. height: math.unit(850, "feet")
  22675. },
  22676. ]
  22677. ))
  22678. characterMakers.push(() => makeCharacter(
  22679. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22680. {
  22681. front: {
  22682. height: math.unit(6, "feet"),
  22683. weight: math.unit(152, "lb"),
  22684. name: "Front",
  22685. image: {
  22686. source: "./media/characters/shin-pikachu/front.svg",
  22687. extra: 1574 / 1480,
  22688. bottom: 53.3 / 1626
  22689. }
  22690. },
  22691. hand: {
  22692. height: math.unit(1.055, "feet"),
  22693. name: "Hand",
  22694. image: {
  22695. source: "./media/characters/shin-pikachu/hand.svg"
  22696. }
  22697. },
  22698. foot: {
  22699. height: math.unit(1.1, "feet"),
  22700. name: "Foot",
  22701. image: {
  22702. source: "./media/characters/shin-pikachu/foot.svg"
  22703. }
  22704. },
  22705. collar: {
  22706. height: math.unit(0.386, "feet"),
  22707. name: "Collar",
  22708. image: {
  22709. source: "./media/characters/shin-pikachu/collar.svg"
  22710. }
  22711. },
  22712. },
  22713. [
  22714. {
  22715. name: "Smallest",
  22716. height: math.unit(0.5, "inches")
  22717. },
  22718. {
  22719. name: "Micro",
  22720. height: math.unit(6, "inches")
  22721. },
  22722. {
  22723. name: "Normal",
  22724. height: math.unit(6, "feet"),
  22725. default: true
  22726. },
  22727. {
  22728. name: "Macro",
  22729. height: math.unit(150, "feet")
  22730. },
  22731. ]
  22732. ))
  22733. characterMakers.push(() => makeCharacter(
  22734. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22735. {
  22736. front: {
  22737. height: math.unit(28, "feet"),
  22738. weight: math.unit(10500, "lb"),
  22739. name: "Front",
  22740. image: {
  22741. source: "./media/characters/kayda/front.svg",
  22742. extra: 1536 / 1428,
  22743. bottom: 68.7 / 1603
  22744. }
  22745. },
  22746. back: {
  22747. height: math.unit(28, "feet"),
  22748. weight: math.unit(10500, "lb"),
  22749. name: "Back",
  22750. image: {
  22751. source: "./media/characters/kayda/back.svg",
  22752. extra: 1557 / 1464,
  22753. bottom: 39.5 / 1597.49
  22754. }
  22755. },
  22756. dick: {
  22757. height: math.unit(3.858, "feet"),
  22758. name: "Dick",
  22759. image: {
  22760. source: "./media/characters/kayda/dick.svg"
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Macro",
  22767. height: math.unit(28, "feet"),
  22768. default: true
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(10 + 11 / 12, "feet"),
  22777. weight: math.unit(1400, "lb"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/brian/front.svg",
  22781. extra: 737 / 692,
  22782. bottom: 55.4 / 785
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Normal",
  22789. height: math.unit(10 + 11 / 12, "feet"),
  22790. default: true
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(5 + 8 / 12, "feet"),
  22799. weight: math.unit(140, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/khemri/front.svg",
  22803. extra: 4780 / 4059,
  22804. bottom: 80.1 / 4859.25
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Micro",
  22811. height: math.unit(6, "inches")
  22812. },
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(5 + 8 / 12, "feet"),
  22816. default: true
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22822. {
  22823. front: {
  22824. height: math.unit(13, "feet"),
  22825. weight: math.unit(1700, "lb"),
  22826. name: "Front",
  22827. image: {
  22828. source: "./media/characters/felix-braveheart/front.svg",
  22829. extra: 1222 / 1157,
  22830. bottom: 53.2 / 1280
  22831. }
  22832. },
  22833. back: {
  22834. height: math.unit(13, "feet"),
  22835. weight: math.unit(1700, "lb"),
  22836. name: "Back",
  22837. image: {
  22838. source: "./media/characters/felix-braveheart/back.svg",
  22839. extra: 1277 / 1203,
  22840. bottom: 50.2 / 1327
  22841. }
  22842. },
  22843. feral: {
  22844. height: math.unit(6, "feet"),
  22845. weight: math.unit(400, "lb"),
  22846. name: "Feral",
  22847. image: {
  22848. source: "./media/characters/felix-braveheart/feral.svg",
  22849. extra: 682 / 625,
  22850. bottom: 6.9 / 688
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Normal",
  22857. height: math.unit(13, "feet"),
  22858. default: true
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22864. {
  22865. side: {
  22866. height: math.unit(5 + 11 / 12, "feet"),
  22867. weight: math.unit(1400, "lb"),
  22868. name: "Side",
  22869. image: {
  22870. source: "./media/characters/shadow-blade/side.svg",
  22871. extra: 1726 / 1267,
  22872. bottom: 58.4 / 1785
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Normal",
  22879. height: math.unit(5 + 11 / 12, "feet"),
  22880. default: true
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(1 + 6 / 12, "feet"),
  22889. weight: math.unit(25, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/karla-halldor/front.svg",
  22893. extra: 1459 / 1383,
  22894. bottom: 12 / 1472
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(1 + 6 / 12, "feet"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22908. {
  22909. front: {
  22910. height: math.unit(6 + 2 / 12, "feet"),
  22911. weight: math.unit(160, "lb"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/ariam/front.svg",
  22915. extra: 714 / 617,
  22916. bottom: 23.4 / 737,
  22917. }
  22918. },
  22919. squatting: {
  22920. height: math.unit(4.1, "feet"),
  22921. weight: math.unit(160, "lb"),
  22922. name: "Squatting",
  22923. image: {
  22924. source: "./media/characters/ariam/squatting.svg",
  22925. extra: 2617 / 2112,
  22926. bottom: 61.2 / 2681,
  22927. }
  22928. },
  22929. },
  22930. [
  22931. {
  22932. name: "Normal",
  22933. height: math.unit(6 + 2 / 12, "feet"),
  22934. default: true
  22935. },
  22936. {
  22937. name: "Normal+",
  22938. height: math.unit(4, "meters")
  22939. },
  22940. {
  22941. name: "Macro",
  22942. height: math.unit(50, "meters")
  22943. },
  22944. {
  22945. name: "Macro+",
  22946. height: math.unit(100, "meters")
  22947. },
  22948. {
  22949. name: "Megamacro",
  22950. height: math.unit(20, "km")
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22956. {
  22957. front: {
  22958. height: math.unit(1.67, "meters"),
  22959. weight: math.unit(140, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22963. extra: 438 / 410,
  22964. bottom: 0.75 / 439
  22965. }
  22966. },
  22967. },
  22968. [
  22969. {
  22970. name: "Shrunken",
  22971. height: math.unit(7.6, "cm")
  22972. },
  22973. {
  22974. name: "Human Scale",
  22975. height: math.unit(1.67, "meters")
  22976. },
  22977. {
  22978. name: "Wolxi Scale",
  22979. height: math.unit(36.7, "meters"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22986. {
  22987. front: {
  22988. height: math.unit(1.73, "meters"),
  22989. weight: math.unit(240, "lb"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/izue-two-mothers/front.svg",
  22993. extra: 469 / 437,
  22994. bottom: 1.24 / 470.6
  22995. }
  22996. },
  22997. },
  22998. [
  22999. {
  23000. name: "Shrunken",
  23001. height: math.unit(7.86, "cm")
  23002. },
  23003. {
  23004. name: "Human Scale",
  23005. height: math.unit(1.73, "meters")
  23006. },
  23007. {
  23008. name: "Wolxi Scale",
  23009. height: math.unit(38, "meters"),
  23010. default: true
  23011. },
  23012. ]
  23013. ))
  23014. characterMakers.push(() => makeCharacter(
  23015. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23016. {
  23017. front: {
  23018. height: math.unit(1.55, "meters"),
  23019. weight: math.unit(120, "lb"),
  23020. name: "Front",
  23021. image: {
  23022. source: "./media/characters/teeku-love-shack/front.svg",
  23023. extra: 387 / 362,
  23024. bottom: 1.51 / 388
  23025. }
  23026. },
  23027. },
  23028. [
  23029. {
  23030. name: "Shrunken",
  23031. height: math.unit(7, "cm")
  23032. },
  23033. {
  23034. name: "Human Scale",
  23035. height: math.unit(1.55, "meters")
  23036. },
  23037. {
  23038. name: "Wolxi Scale",
  23039. height: math.unit(34.1, "meters"),
  23040. default: true
  23041. },
  23042. ]
  23043. ))
  23044. characterMakers.push(() => makeCharacter(
  23045. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23046. {
  23047. front: {
  23048. height: math.unit(1.83, "meters"),
  23049. weight: math.unit(135, "lb"),
  23050. name: "Front",
  23051. image: {
  23052. source: "./media/characters/dejma-the-red/front.svg",
  23053. extra: 480 / 458,
  23054. bottom: 1.8 / 482
  23055. }
  23056. },
  23057. },
  23058. [
  23059. {
  23060. name: "Shrunken",
  23061. height: math.unit(8.3, "cm")
  23062. },
  23063. {
  23064. name: "Human Scale",
  23065. height: math.unit(1.83, "meters")
  23066. },
  23067. {
  23068. name: "Wolxi Scale",
  23069. height: math.unit(40, "meters"),
  23070. default: true
  23071. },
  23072. ]
  23073. ))
  23074. characterMakers.push(() => makeCharacter(
  23075. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23076. {
  23077. front: {
  23078. height: math.unit(1.78, "meters"),
  23079. weight: math.unit(65, "kg"),
  23080. name: "Front",
  23081. image: {
  23082. source: "./media/characters/aki/front.svg",
  23083. extra: 452 / 415
  23084. }
  23085. },
  23086. frontNsfw: {
  23087. height: math.unit(1.78, "meters"),
  23088. weight: math.unit(65, "kg"),
  23089. name: "Front (NSFW)",
  23090. image: {
  23091. source: "./media/characters/aki/front-nsfw.svg",
  23092. extra: 452 / 415
  23093. }
  23094. },
  23095. back: {
  23096. height: math.unit(1.78, "meters"),
  23097. weight: math.unit(65, "kg"),
  23098. name: "Back",
  23099. image: {
  23100. source: "./media/characters/aki/back.svg",
  23101. extra: 452 / 415
  23102. }
  23103. },
  23104. rump: {
  23105. height: math.unit(2.05, "feet"),
  23106. name: "Rump",
  23107. image: {
  23108. source: "./media/characters/aki/rump.svg"
  23109. }
  23110. },
  23111. dick: {
  23112. height: math.unit(0.95, "feet"),
  23113. name: "Dick",
  23114. image: {
  23115. source: "./media/characters/aki/dick.svg"
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Micro",
  23122. height: math.unit(15, "cm")
  23123. },
  23124. {
  23125. name: "Normal",
  23126. height: math.unit(178, "cm"),
  23127. default: true
  23128. },
  23129. {
  23130. name: "Macro",
  23131. height: math.unit(214, "m")
  23132. },
  23133. {
  23134. name: "Macro+",
  23135. height: math.unit(534, "m")
  23136. },
  23137. ]
  23138. ))
  23139. characterMakers.push(() => makeCharacter(
  23140. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23141. {
  23142. front: {
  23143. height: math.unit(5 + 5 / 12, "feet"),
  23144. weight: math.unit(120, "lb"),
  23145. name: "Front",
  23146. image: {
  23147. source: "./media/characters/ari/front.svg",
  23148. extra: 714.5 / 682,
  23149. bottom: 8 / 722.5
  23150. }
  23151. },
  23152. },
  23153. [
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(5 + 5 / 12, "feet")
  23157. },
  23158. {
  23159. name: "Macro",
  23160. height: math.unit(100, "feet"),
  23161. default: true
  23162. },
  23163. {
  23164. name: "Megamacro",
  23165. height: math.unit(100, "miles")
  23166. },
  23167. {
  23168. name: "Gigamacro",
  23169. height: math.unit(80000, "miles")
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23175. {
  23176. side: {
  23177. height: math.unit(9, "feet"),
  23178. weight: math.unit(400, "kg"),
  23179. name: "Side",
  23180. image: {
  23181. source: "./media/characters/bolt/side.svg",
  23182. extra: 1126 / 896,
  23183. bottom: 60 / 1187.3,
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Micro",
  23190. height: math.unit(5, "inches")
  23191. },
  23192. {
  23193. name: "Normal",
  23194. height: math.unit(9, "feet"),
  23195. default: true
  23196. },
  23197. {
  23198. name: "Macro",
  23199. height: math.unit(700, "feet")
  23200. },
  23201. {
  23202. name: "Max Size",
  23203. height: math.unit(1.52e22, "yottameters")
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(4.53, "meters"),
  23212. weight: math.unit(3, "tons"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/draekon-sylviar/front.svg",
  23216. extra: 1228 / 1068,
  23217. bottom: 41 / 1270
  23218. }
  23219. },
  23220. tail: {
  23221. height: math.unit(1.772, "meter"),
  23222. name: "Tail",
  23223. image: {
  23224. source: "./media/characters/draekon-sylviar/tail.svg"
  23225. }
  23226. },
  23227. head: {
  23228. height: math.unit(1.331, "meter"),
  23229. name: "Head",
  23230. image: {
  23231. source: "./media/characters/draekon-sylviar/head.svg"
  23232. }
  23233. },
  23234. hand: {
  23235. height: math.unit(0.564, "meter"),
  23236. name: "Hand",
  23237. image: {
  23238. source: "./media/characters/draekon-sylviar/hand.svg"
  23239. }
  23240. },
  23241. foot: {
  23242. height: math.unit(0.621, "meter"),
  23243. name: "Foot",
  23244. image: {
  23245. source: "./media/characters/draekon-sylviar/foot.svg",
  23246. bottom: 32 / 324
  23247. }
  23248. },
  23249. dick: {
  23250. height: math.unit(61, "cm"),
  23251. name: "Dick",
  23252. image: {
  23253. source: "./media/characters/draekon-sylviar/dick.svg"
  23254. }
  23255. },
  23256. dickseparated: {
  23257. height: math.unit(61, "cm"),
  23258. name: "Dick-separated",
  23259. image: {
  23260. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Small",
  23267. height: math.unit(4.53 / 2, "meters"),
  23268. default: true
  23269. },
  23270. {
  23271. name: "Normal",
  23272. height: math.unit(4.53, "meters"),
  23273. default: true
  23274. },
  23275. {
  23276. name: "Large",
  23277. height: math.unit(4.53 * 2, "meters"),
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23283. {
  23284. front: {
  23285. height: math.unit(6 + 2 / 12, "feet"),
  23286. weight: math.unit(180, "lb"),
  23287. name: "Front",
  23288. image: {
  23289. source: "./media/characters/brawler/front.svg",
  23290. extra: 3301 / 3027,
  23291. bottom: 138 / 3439
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Normal",
  23298. height: math.unit(6 + 2 / 12, "feet"),
  23299. default: true
  23300. },
  23301. ]
  23302. ))
  23303. characterMakers.push(() => makeCharacter(
  23304. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23305. {
  23306. front: {
  23307. height: math.unit(11, "feet"),
  23308. weight: math.unit(1000, "lb"),
  23309. name: "Front",
  23310. image: {
  23311. source: "./media/characters/alex/front.svg",
  23312. bottom: 44.5 / 620
  23313. }
  23314. },
  23315. },
  23316. [
  23317. {
  23318. name: "Micro",
  23319. height: math.unit(5, "inches")
  23320. },
  23321. {
  23322. name: "Normal",
  23323. height: math.unit(11, "feet"),
  23324. default: true
  23325. },
  23326. {
  23327. name: "Macro",
  23328. height: math.unit(9.5e9, "feet")
  23329. },
  23330. {
  23331. name: "Max Size",
  23332. height: math.unit(1.4e283, "yottameters")
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23338. {
  23339. female: {
  23340. height: math.unit(29.9, "m"),
  23341. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23342. name: "Female",
  23343. image: {
  23344. source: "./media/characters/zenari/female.svg",
  23345. extra: 3281.6 / 3217,
  23346. bottom: 72.2 / 3353
  23347. }
  23348. },
  23349. male: {
  23350. height: math.unit(27.7, "m"),
  23351. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23352. name: "Male",
  23353. image: {
  23354. source: "./media/characters/zenari/male.svg",
  23355. extra: 3008 / 2991,
  23356. bottom: 54.6 / 3069
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Macro",
  23363. height: math.unit(29.7, "meters"),
  23364. default: true
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23370. {
  23371. female: {
  23372. height: math.unit(23.8, "m"),
  23373. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23374. name: "Female",
  23375. image: {
  23376. source: "./media/characters/mactarian/female.svg",
  23377. extra: 2662 / 2569,
  23378. bottom: 73 / 2736
  23379. }
  23380. },
  23381. male: {
  23382. height: math.unit(23.8, "m"),
  23383. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23384. name: "Male",
  23385. image: {
  23386. source: "./media/characters/mactarian/male.svg",
  23387. extra: 2673 / 2600,
  23388. bottom: 76 / 2750
  23389. }
  23390. },
  23391. },
  23392. [
  23393. {
  23394. name: "Macro",
  23395. height: math.unit(23.8, "meters"),
  23396. default: true
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23402. {
  23403. female: {
  23404. height: math.unit(19.3, "m"),
  23405. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23406. name: "Female",
  23407. image: {
  23408. source: "./media/characters/umok/female.svg",
  23409. extra: 2186 / 2078,
  23410. bottom: 87 / 2277
  23411. }
  23412. },
  23413. male: {
  23414. height: math.unit(19.5, "m"),
  23415. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23416. name: "Male",
  23417. image: {
  23418. source: "./media/characters/umok/male.svg",
  23419. extra: 2233 / 2140,
  23420. bottom: 24.4 / 2258
  23421. }
  23422. },
  23423. },
  23424. [
  23425. {
  23426. name: "Macro",
  23427. height: math.unit(19.3, "meters"),
  23428. default: true
  23429. },
  23430. ]
  23431. ))
  23432. characterMakers.push(() => makeCharacter(
  23433. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23434. {
  23435. female: {
  23436. height: math.unit(26.15, "m"),
  23437. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23438. name: "Female",
  23439. image: {
  23440. source: "./media/characters/joraxian/female.svg",
  23441. extra: 2912 / 2824,
  23442. bottom: 36 / 2956
  23443. }
  23444. },
  23445. male: {
  23446. height: math.unit(25.4, "m"),
  23447. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23448. name: "Male",
  23449. image: {
  23450. source: "./media/characters/joraxian/male.svg",
  23451. extra: 2877 / 2721,
  23452. bottom: 82 / 2967
  23453. }
  23454. },
  23455. },
  23456. [
  23457. {
  23458. name: "Macro",
  23459. height: math.unit(26.15, "meters"),
  23460. default: true
  23461. },
  23462. ]
  23463. ))
  23464. characterMakers.push(() => makeCharacter(
  23465. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23466. {
  23467. female: {
  23468. height: math.unit(21.6, "m"),
  23469. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23470. name: "Female",
  23471. image: {
  23472. source: "./media/characters/sthara/female.svg",
  23473. extra: 2516 / 2347,
  23474. bottom: 21.5 / 2537
  23475. }
  23476. },
  23477. male: {
  23478. height: math.unit(24, "m"),
  23479. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23480. name: "Male",
  23481. image: {
  23482. source: "./media/characters/sthara/male.svg",
  23483. extra: 2732 / 2607,
  23484. bottom: 23 / 2732
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Macro",
  23491. height: math.unit(21.6, "meters"),
  23492. default: true
  23493. },
  23494. ]
  23495. ))
  23496. characterMakers.push(() => makeCharacter(
  23497. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23498. {
  23499. front: {
  23500. height: math.unit(6 + 4 / 12, "feet"),
  23501. weight: math.unit(175, "lb"),
  23502. name: "Front",
  23503. image: {
  23504. source: "./media/characters/luka-bryzant/front.svg",
  23505. extra: 311 / 289,
  23506. bottom: 4 / 315
  23507. }
  23508. },
  23509. back: {
  23510. height: math.unit(6 + 4 / 12, "feet"),
  23511. weight: math.unit(175, "lb"),
  23512. name: "Back",
  23513. image: {
  23514. source: "./media/characters/luka-bryzant/back.svg",
  23515. extra: 311 / 289,
  23516. bottom: 3.8 / 313.7
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Micro",
  23523. height: math.unit(10, "inches")
  23524. },
  23525. {
  23526. name: "Normal",
  23527. height: math.unit(6 + 4 / 12, "feet"),
  23528. default: true
  23529. },
  23530. {
  23531. name: "Large",
  23532. height: math.unit(12, "feet")
  23533. },
  23534. ]
  23535. ))
  23536. characterMakers.push(() => makeCharacter(
  23537. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23538. {
  23539. front: {
  23540. height: math.unit(5 + 7 / 12, "feet"),
  23541. weight: math.unit(185, "lb"),
  23542. name: "Front",
  23543. image: {
  23544. source: "./media/characters/aman-aquila/front.svg",
  23545. extra: 1013 / 976,
  23546. bottom: 45.6 / 1057
  23547. }
  23548. },
  23549. side: {
  23550. height: math.unit(5 + 7 / 12, "feet"),
  23551. weight: math.unit(185, "lb"),
  23552. name: "Side",
  23553. image: {
  23554. source: "./media/characters/aman-aquila/side.svg",
  23555. extra: 1054 / 1011,
  23556. bottom: 15 / 1070
  23557. }
  23558. },
  23559. back: {
  23560. height: math.unit(5 + 7 / 12, "feet"),
  23561. weight: math.unit(185, "lb"),
  23562. name: "Back",
  23563. image: {
  23564. source: "./media/characters/aman-aquila/back.svg",
  23565. extra: 1026 / 970,
  23566. bottom: 12 / 1039
  23567. }
  23568. },
  23569. head: {
  23570. height: math.unit(1.211, "feet"),
  23571. name: "Head",
  23572. image: {
  23573. source: "./media/characters/aman-aquila/head.svg",
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Minimicro",
  23580. height: math.unit(0.057, "inches")
  23581. },
  23582. {
  23583. name: "Micro",
  23584. height: math.unit(7, "inches")
  23585. },
  23586. {
  23587. name: "Mini",
  23588. height: math.unit(3 + 7 / 12, "feet")
  23589. },
  23590. {
  23591. name: "Normal",
  23592. height: math.unit(5 + 7 / 12, "feet"),
  23593. default: true
  23594. },
  23595. {
  23596. name: "Macro",
  23597. height: math.unit(157 + 7 / 12, "feet")
  23598. },
  23599. {
  23600. name: "Megamacro",
  23601. height: math.unit(1557 + 7 / 12, "feet")
  23602. },
  23603. {
  23604. name: "Gigamacro",
  23605. height: math.unit(15557 + 7 / 12, "feet")
  23606. },
  23607. ]
  23608. ))
  23609. characterMakers.push(() => makeCharacter(
  23610. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23611. {
  23612. front: {
  23613. height: math.unit(3 + 2 / 12, "inches"),
  23614. weight: math.unit(0.3, "ounces"),
  23615. name: "Front",
  23616. image: {
  23617. source: "./media/characters/hiphae/front.svg",
  23618. extra: 1931 / 1683,
  23619. bottom: 24 / 1955
  23620. }
  23621. },
  23622. },
  23623. [
  23624. {
  23625. name: "Normal",
  23626. height: math.unit(3 + 1 / 2, "inches"),
  23627. default: true
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(5 + 10 / 12, "feet"),
  23636. weight: math.unit(165, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/nicky/front.svg",
  23640. extra: 3144 / 2886,
  23641. bottom: 45.6 / 3192
  23642. }
  23643. },
  23644. back: {
  23645. height: math.unit(5 + 10 / 12, "feet"),
  23646. weight: math.unit(165, "lb"),
  23647. name: "Back",
  23648. image: {
  23649. source: "./media/characters/nicky/back.svg",
  23650. extra: 3055 / 2804,
  23651. bottom: 28.4 / 3087
  23652. }
  23653. },
  23654. frontclothed: {
  23655. height: math.unit(5 + 10 / 12, "feet"),
  23656. weight: math.unit(165, "lb"),
  23657. name: "Front-clothed",
  23658. image: {
  23659. source: "./media/characters/nicky/front-clothed.svg",
  23660. extra: 3184.9 / 2926.9,
  23661. bottom: 86.5 / 3239.9
  23662. }
  23663. },
  23664. foot: {
  23665. height: math.unit(1.16, "feet"),
  23666. name: "Foot",
  23667. image: {
  23668. source: "./media/characters/nicky/foot.svg"
  23669. }
  23670. },
  23671. feet: {
  23672. height: math.unit(1.34, "feet"),
  23673. name: "Feet",
  23674. image: {
  23675. source: "./media/characters/nicky/feet.svg"
  23676. }
  23677. },
  23678. maw: {
  23679. height: math.unit(0.9, "feet"),
  23680. name: "Maw",
  23681. image: {
  23682. source: "./media/characters/nicky/maw.svg"
  23683. }
  23684. },
  23685. },
  23686. [
  23687. {
  23688. name: "Normal",
  23689. height: math.unit(5 + 10 / 12, "feet"),
  23690. default: true
  23691. },
  23692. {
  23693. name: "Macro",
  23694. height: math.unit(60, "feet")
  23695. },
  23696. {
  23697. name: "Megamacro",
  23698. height: math.unit(1, "mile")
  23699. },
  23700. ]
  23701. ))
  23702. characterMakers.push(() => makeCharacter(
  23703. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23704. {
  23705. side: {
  23706. height: math.unit(10, "feet"),
  23707. weight: math.unit(600, "lb"),
  23708. name: "Side",
  23709. image: {
  23710. source: "./media/characters/blair/side.svg",
  23711. bottom: 16.6 / 475,
  23712. extra: 458 / 431
  23713. }
  23714. },
  23715. },
  23716. [
  23717. {
  23718. name: "Micro",
  23719. height: math.unit(8, "inches")
  23720. },
  23721. {
  23722. name: "Normal",
  23723. height: math.unit(10, "feet"),
  23724. default: true
  23725. },
  23726. {
  23727. name: "Macro",
  23728. height: math.unit(180, "feet")
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23734. {
  23735. front: {
  23736. height: math.unit(5 + 4 / 12, "feet"),
  23737. weight: math.unit(125, "lb"),
  23738. name: "Front",
  23739. image: {
  23740. source: "./media/characters/fisher/front.svg",
  23741. extra: 444 / 390,
  23742. bottom: 2 / 444.8
  23743. }
  23744. },
  23745. },
  23746. [
  23747. {
  23748. name: "Micro",
  23749. height: math.unit(4, "inches")
  23750. },
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(5 + 4 / 12, "feet"),
  23754. default: true
  23755. },
  23756. {
  23757. name: "Macro",
  23758. height: math.unit(100, "feet")
  23759. },
  23760. ]
  23761. ))
  23762. characterMakers.push(() => makeCharacter(
  23763. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23764. {
  23765. front: {
  23766. height: math.unit(6.71, "feet"),
  23767. weight: math.unit(200, "lb"),
  23768. capacity: math.unit(1000000, "people"),
  23769. name: "Front",
  23770. image: {
  23771. source: "./media/characters/gliss/front.svg",
  23772. extra: 2347 / 2231,
  23773. bottom: 113 / 2462
  23774. }
  23775. },
  23776. hammerspaceSize: {
  23777. height: math.unit(6.71 * 717, "feet"),
  23778. weight: math.unit(200, "lb"),
  23779. capacity: math.unit(1000000, "people"),
  23780. name: "Hammerspace Size",
  23781. image: {
  23782. source: "./media/characters/gliss/front.svg",
  23783. extra: 2347 / 2231,
  23784. bottom: 113 / 2462
  23785. }
  23786. },
  23787. },
  23788. [
  23789. {
  23790. name: "Normal",
  23791. height: math.unit(6.71, "feet"),
  23792. default: true
  23793. },
  23794. ]
  23795. ))
  23796. characterMakers.push(() => makeCharacter(
  23797. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23798. {
  23799. side: {
  23800. height: math.unit(1.44, "m"),
  23801. weight: math.unit(80, "kg"),
  23802. name: "Side",
  23803. image: {
  23804. source: "./media/characters/dune-anderson/side.svg",
  23805. bottom: 49 / 1426
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Wolf-sized",
  23812. height: math.unit(1.44, "meters")
  23813. },
  23814. {
  23815. name: "Normal",
  23816. height: math.unit(5.05, "meters"),
  23817. default: true
  23818. },
  23819. {
  23820. name: "Big",
  23821. height: math.unit(14.4, "meters")
  23822. },
  23823. {
  23824. name: "Huge",
  23825. height: math.unit(144, "meters")
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23831. {
  23832. front: {
  23833. height: math.unit(7, "feet"),
  23834. weight: math.unit(425, "lb"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/hind/front.svg",
  23838. extra: 2091 / 1860,
  23839. bottom: 129 / 2220
  23840. }
  23841. },
  23842. back: {
  23843. height: math.unit(7, "feet"),
  23844. weight: math.unit(425, "lb"),
  23845. name: "Back",
  23846. image: {
  23847. source: "./media/characters/hind/back.svg",
  23848. extra: 2091 / 1860,
  23849. bottom: 24.6 / 2309
  23850. }
  23851. },
  23852. tail: {
  23853. height: math.unit(2.8, "feet"),
  23854. name: "Tail",
  23855. image: {
  23856. source: "./media/characters/hind/tail.svg"
  23857. }
  23858. },
  23859. head: {
  23860. height: math.unit(2.55, "feet"),
  23861. name: "Head",
  23862. image: {
  23863. source: "./media/characters/hind/head.svg"
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "XS",
  23870. height: math.unit(0.7, "feet")
  23871. },
  23872. {
  23873. name: "Normal",
  23874. height: math.unit(7, "feet"),
  23875. default: true
  23876. },
  23877. {
  23878. name: "XL",
  23879. height: math.unit(70, "feet")
  23880. },
  23881. ]
  23882. ))
  23883. characterMakers.push(() => makeCharacter(
  23884. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23885. {
  23886. front: {
  23887. height: math.unit(6, "feet"),
  23888. weight: math.unit(150, "lb"),
  23889. name: "Front",
  23890. image: {
  23891. source: "./media/characters/dylan-skaven/front.svg",
  23892. extra: 2318 / 2063,
  23893. bottom: 93.4 / 2410
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Nano",
  23900. height: math.unit(1, "mm")
  23901. },
  23902. {
  23903. name: "Micro",
  23904. height: math.unit(1, "cm")
  23905. },
  23906. {
  23907. name: "Normal",
  23908. height: math.unit(2.1, "meters"),
  23909. default: true
  23910. },
  23911. ]
  23912. ))
  23913. characterMakers.push(() => makeCharacter(
  23914. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23915. {
  23916. front: {
  23917. height: math.unit(7 + 5 / 12, "feet"),
  23918. weight: math.unit(357, "lb"),
  23919. name: "Front",
  23920. image: {
  23921. source: "./media/characters/solex-draconov/front.svg",
  23922. extra: 1993 / 1865,
  23923. bottom: 117 / 2111
  23924. }
  23925. },
  23926. },
  23927. [
  23928. {
  23929. name: "Natural Height",
  23930. height: math.unit(7 + 5 / 12, "feet"),
  23931. default: true
  23932. },
  23933. {
  23934. name: "Macro",
  23935. height: math.unit(350, "feet")
  23936. },
  23937. {
  23938. name: "Macro+",
  23939. height: math.unit(1000, "feet")
  23940. },
  23941. {
  23942. name: "Megamacro",
  23943. height: math.unit(20, "km")
  23944. },
  23945. {
  23946. name: "Megamacro+",
  23947. height: math.unit(1000, "km")
  23948. },
  23949. {
  23950. name: "Gigamacro",
  23951. height: math.unit(2.5, "Gm")
  23952. },
  23953. {
  23954. name: "Teramacro",
  23955. height: math.unit(15, "Tm")
  23956. },
  23957. {
  23958. name: "Galactic",
  23959. height: math.unit(30, "Zm")
  23960. },
  23961. {
  23962. name: "Universal",
  23963. height: math.unit(21000, "Ym")
  23964. },
  23965. {
  23966. name: "Omniversal",
  23967. height: math.unit(9.861e50, "Ym")
  23968. },
  23969. {
  23970. name: "Existential",
  23971. height: math.unit(1e300, "meters")
  23972. },
  23973. ]
  23974. ))
  23975. characterMakers.push(() => makeCharacter(
  23976. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23977. {
  23978. side: {
  23979. height: math.unit(25, "feet"),
  23980. weight: math.unit(90000, "lb"),
  23981. name: "Side",
  23982. image: {
  23983. source: "./media/characters/mandarax/side.svg",
  23984. extra: 614 / 332,
  23985. bottom: 55 / 630
  23986. }
  23987. },
  23988. head: {
  23989. height: math.unit(11.4, "feet"),
  23990. name: "Head",
  23991. image: {
  23992. source: "./media/characters/mandarax/head.svg"
  23993. }
  23994. },
  23995. belly: {
  23996. height: math.unit(33, "feet"),
  23997. name: "Belly",
  23998. capacity: math.unit(500, "people"),
  23999. image: {
  24000. source: "./media/characters/mandarax/belly.svg"
  24001. }
  24002. },
  24003. dick: {
  24004. height: math.unit(8.46, "feet"),
  24005. name: "Dick",
  24006. image: {
  24007. source: "./media/characters/mandarax/dick.svg"
  24008. }
  24009. },
  24010. top: {
  24011. height: math.unit(28, "meters"),
  24012. name: "Top",
  24013. image: {
  24014. source: "./media/characters/mandarax/top.svg"
  24015. }
  24016. },
  24017. },
  24018. [
  24019. {
  24020. name: "Normal",
  24021. height: math.unit(25, "feet"),
  24022. default: true
  24023. },
  24024. ]
  24025. ))
  24026. characterMakers.push(() => makeCharacter(
  24027. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24028. {
  24029. front: {
  24030. height: math.unit(5, "feet"),
  24031. weight: math.unit(90, "lb"),
  24032. name: "Front",
  24033. image: {
  24034. source: "./media/characters/pixil/front.svg",
  24035. extra: 2000 / 1618,
  24036. bottom: 12.3 / 2011
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Normal",
  24043. height: math.unit(5, "feet"),
  24044. default: true
  24045. },
  24046. {
  24047. name: "Megamacro",
  24048. height: math.unit(10, "miles"),
  24049. },
  24050. ]
  24051. ))
  24052. characterMakers.push(() => makeCharacter(
  24053. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24054. {
  24055. front: {
  24056. height: math.unit(7 + 2 / 12, "feet"),
  24057. weight: math.unit(200, "lb"),
  24058. name: "Front",
  24059. image: {
  24060. source: "./media/characters/angel/front.svg",
  24061. extra: 1830 / 1737,
  24062. bottom: 22.6 / 1854,
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Normal",
  24069. height: math.unit(7 + 2 / 12, "feet"),
  24070. default: true
  24071. },
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(1000, "feet")
  24075. },
  24076. {
  24077. name: "Megamacro",
  24078. height: math.unit(2, "miles")
  24079. },
  24080. {
  24081. name: "Gigamacro",
  24082. height: math.unit(20, "earths")
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24088. {
  24089. front: {
  24090. height: math.unit(5, "feet"),
  24091. weight: math.unit(180, "lb"),
  24092. name: "Front",
  24093. image: {
  24094. source: "./media/characters/mekana/front.svg",
  24095. extra: 1671 / 1605,
  24096. bottom: 3.5 / 1691
  24097. }
  24098. },
  24099. side: {
  24100. height: math.unit(5, "feet"),
  24101. weight: math.unit(180, "lb"),
  24102. name: "Side",
  24103. image: {
  24104. source: "./media/characters/mekana/side.svg",
  24105. extra: 1671 / 1605,
  24106. bottom: 3.5 / 1691
  24107. }
  24108. },
  24109. back: {
  24110. height: math.unit(5, "feet"),
  24111. weight: math.unit(180, "lb"),
  24112. name: "Back",
  24113. image: {
  24114. source: "./media/characters/mekana/back.svg",
  24115. extra: 1671 / 1605,
  24116. bottom: 3.5 / 1691
  24117. }
  24118. },
  24119. },
  24120. [
  24121. {
  24122. name: "Normal",
  24123. height: math.unit(5, "feet"),
  24124. default: true
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24130. {
  24131. front: {
  24132. height: math.unit(4 + 6 / 12, "feet"),
  24133. weight: math.unit(80, "lb"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/pixie/front.svg",
  24137. extra: 1924 / 1825,
  24138. bottom: 22.4 / 1946
  24139. }
  24140. },
  24141. },
  24142. [
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(4 + 6 / 12, "feet"),
  24146. default: true
  24147. },
  24148. {
  24149. name: "Macro",
  24150. height: math.unit(40, "feet")
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24156. {
  24157. front: {
  24158. height: math.unit(2.1, "meters"),
  24159. weight: math.unit(200, "lb"),
  24160. name: "Front",
  24161. image: {
  24162. source: "./media/characters/the-lascivious/front.svg",
  24163. extra: 1 / 0.893,
  24164. bottom: 3.5 / 573.7
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Human Scale",
  24171. height: math.unit(2.1, "meters")
  24172. },
  24173. {
  24174. name: "Wolxi Scale",
  24175. height: math.unit(46.2, "m"),
  24176. default: true
  24177. },
  24178. {
  24179. name: "Boinker of Buildings",
  24180. height: math.unit(10, "km")
  24181. },
  24182. {
  24183. name: "Shagger of Skyscrapers",
  24184. height: math.unit(40, "km")
  24185. },
  24186. {
  24187. name: "Banger of Boroughs",
  24188. height: math.unit(4000, "km")
  24189. },
  24190. {
  24191. name: "Screwer of States",
  24192. height: math.unit(100000, "km")
  24193. },
  24194. {
  24195. name: "Pounder of Planets",
  24196. height: math.unit(2000000, "km")
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24202. {
  24203. front: {
  24204. height: math.unit(6, "feet"),
  24205. weight: math.unit(150, "lb"),
  24206. name: "Front",
  24207. image: {
  24208. source: "./media/characters/aj/front.svg",
  24209. extra: 2039 / 1562,
  24210. bottom: 40 / 2079
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Normal",
  24217. height: math.unit(11 + 6 / 12, "feet"),
  24218. default: true
  24219. },
  24220. {
  24221. name: "Megamacro",
  24222. height: math.unit(60, "megameters")
  24223. },
  24224. ]
  24225. ))
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24228. {
  24229. side: {
  24230. height: math.unit(31 + 8/12, "feet"),
  24231. weight: math.unit(75000, "kg"),
  24232. name: "Side",
  24233. image: {
  24234. source: "./media/characters/koros/side.svg",
  24235. extra: 1442/1297,
  24236. bottom: 122.7/1562
  24237. }
  24238. },
  24239. dicksKingsCrown: {
  24240. height: math.unit(6, "feet"),
  24241. name: "Dicks (King's Crown)",
  24242. image: {
  24243. source: "./media/characters/koros/dicks-kings-crown.svg"
  24244. }
  24245. },
  24246. dicksTailSet: {
  24247. height: math.unit(3, "feet"),
  24248. name: "Dicks (Tail Set)",
  24249. image: {
  24250. source: "./media/characters/koros/dicks-tail-set.svg"
  24251. }
  24252. },
  24253. dickCumming: {
  24254. height: math.unit(7.98, "feet"),
  24255. name: "Dick (Cumming)",
  24256. image: {
  24257. source: "./media/characters/koros/dick-cumming.svg"
  24258. }
  24259. },
  24260. dicksBack: {
  24261. height: math.unit(5.9, "feet"),
  24262. name: "Dicks (Back)",
  24263. image: {
  24264. source: "./media/characters/koros/dicks-back.svg"
  24265. }
  24266. },
  24267. dicksFront: {
  24268. height: math.unit(3.72, "feet"),
  24269. name: "Dicks (Front)",
  24270. image: {
  24271. source: "./media/characters/koros/dicks-front.svg"
  24272. }
  24273. },
  24274. dicksPeeking: {
  24275. height: math.unit(3.0, "feet"),
  24276. name: "Dicks (Peeking)",
  24277. image: {
  24278. source: "./media/characters/koros/dicks-peeking.svg"
  24279. }
  24280. },
  24281. eye: {
  24282. height: math.unit(1.7, "feet"),
  24283. name: "Eye",
  24284. image: {
  24285. source: "./media/characters/koros/eye.svg"
  24286. }
  24287. },
  24288. headFront: {
  24289. height: math.unit(11.69, "feet"),
  24290. name: "Head (Front)",
  24291. image: {
  24292. source: "./media/characters/koros/head-front.svg"
  24293. }
  24294. },
  24295. headSide: {
  24296. height: math.unit(14, "feet"),
  24297. name: "Head (Side)",
  24298. image: {
  24299. source: "./media/characters/koros/head-side.svg"
  24300. }
  24301. },
  24302. leg: {
  24303. height: math.unit(17, "feet"),
  24304. name: "Leg",
  24305. image: {
  24306. source: "./media/characters/koros/leg.svg"
  24307. }
  24308. },
  24309. mawSide: {
  24310. height: math.unit(12.8, "feet"),
  24311. name: "Maw (Side)",
  24312. image: {
  24313. source: "./media/characters/koros/maw-side.svg"
  24314. }
  24315. },
  24316. mawSpitting: {
  24317. height: math.unit(17, "feet"),
  24318. name: "Maw (Spitting)",
  24319. image: {
  24320. source: "./media/characters/koros/maw-spitting.svg"
  24321. }
  24322. },
  24323. slit: {
  24324. height: math.unit(2.8, "feet"),
  24325. name: "Slit",
  24326. image: {
  24327. source: "./media/characters/koros/slit.svg"
  24328. }
  24329. },
  24330. stomach: {
  24331. height: math.unit(6.8, "feet"),
  24332. capacity: math.unit(20, "people"),
  24333. name: "Stomach",
  24334. image: {
  24335. source: "./media/characters/koros/stomach.svg"
  24336. }
  24337. },
  24338. wingspanBottom: {
  24339. height: math.unit(114, "feet"),
  24340. name: "Wingspan (Bottom)",
  24341. image: {
  24342. source: "./media/characters/koros/wingspan-bottom.svg"
  24343. }
  24344. },
  24345. wingspanTop: {
  24346. height: math.unit(104, "feet"),
  24347. name: "Wingspan (Top)",
  24348. image: {
  24349. source: "./media/characters/koros/wingspan-top.svg"
  24350. }
  24351. },
  24352. },
  24353. [
  24354. {
  24355. name: "Normal",
  24356. height: math.unit(31 + 8/12, "feet"),
  24357. default: true
  24358. },
  24359. ]
  24360. ))
  24361. characterMakers.push(() => makeCharacter(
  24362. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24363. {
  24364. front: {
  24365. height: math.unit(18 + 5/12, "feet"),
  24366. weight: math.unit(3750, "kg"),
  24367. name: "Front",
  24368. image: {
  24369. source: "./media/characters/vexx/front.svg",
  24370. extra: 426/396,
  24371. bottom: 31.5/458
  24372. }
  24373. },
  24374. maw: {
  24375. height: math.unit(6, "feet"),
  24376. name: "Maw",
  24377. image: {
  24378. source: "./media/characters/vexx/maw.svg"
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Normal",
  24385. height: math.unit(18 + 5/12, "feet"),
  24386. default: true
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(17 + 6/12, "feet"),
  24395. weight: math.unit(150, "lb"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/baadra/front.svg",
  24399. extra: 3137/2890,
  24400. bottom: 168.4/3305
  24401. }
  24402. },
  24403. back: {
  24404. height: math.unit(17 + 6/12, "feet"),
  24405. weight: math.unit(150, "lb"),
  24406. name: "Back",
  24407. image: {
  24408. source: "./media/characters/baadra/back.svg",
  24409. extra: 3142/2890,
  24410. bottom: 220/3371
  24411. }
  24412. },
  24413. head: {
  24414. height: math.unit(5.45, "feet"),
  24415. name: "Head",
  24416. image: {
  24417. source: "./media/characters/baadra/head.svg"
  24418. }
  24419. },
  24420. headAngry: {
  24421. height: math.unit(4.95, "feet"),
  24422. name: "Head (Angry)",
  24423. image: {
  24424. source: "./media/characters/baadra/head-angry.svg"
  24425. }
  24426. },
  24427. headOpen: {
  24428. height: math.unit(6, "feet"),
  24429. name: "Head (Open)",
  24430. image: {
  24431. source: "./media/characters/baadra/head-open.svg"
  24432. }
  24433. },
  24434. },
  24435. [
  24436. {
  24437. name: "Normal",
  24438. height: math.unit(17 + 6/12, "feet"),
  24439. default: true
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24445. {
  24446. front: {
  24447. height: math.unit(7 + 3/12, "feet"),
  24448. weight: math.unit(180, "lb"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/juri/front.svg",
  24452. extra: 1401/1237,
  24453. bottom: 18.5/1418
  24454. }
  24455. },
  24456. side: {
  24457. height: math.unit(7 + 3/12, "feet"),
  24458. weight: math.unit(180, "lb"),
  24459. name: "Side",
  24460. image: {
  24461. source: "./media/characters/juri/side.svg",
  24462. extra: 1424/1242,
  24463. bottom: 18.5/1447
  24464. }
  24465. },
  24466. sitting: {
  24467. height: math.unit(6, "feet"),
  24468. weight: math.unit(180, "lb"),
  24469. name: "Sitting",
  24470. image: {
  24471. source: "./media/characters/juri/sitting.svg",
  24472. extra: 1270/1143,
  24473. bottom: 100/1343
  24474. }
  24475. },
  24476. back: {
  24477. height: math.unit(7 + 3/12, "feet"),
  24478. weight: math.unit(180, "lb"),
  24479. name: "Back",
  24480. image: {
  24481. source: "./media/characters/juri/back.svg",
  24482. extra: 1377/1240,
  24483. bottom: 23.7/1405
  24484. }
  24485. },
  24486. maw: {
  24487. height: math.unit(2.8, "feet"),
  24488. name: "Maw",
  24489. image: {
  24490. source: "./media/characters/juri/maw.svg"
  24491. }
  24492. },
  24493. stomach: {
  24494. height: math.unit(0.89, "feet"),
  24495. capacity: math.unit(4, "liters"),
  24496. name: "Stomach",
  24497. image: {
  24498. source: "./media/characters/juri/stomach.svg"
  24499. }
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Normal",
  24505. height: math.unit(7 + 3/12, "feet"),
  24506. default: true
  24507. },
  24508. ]
  24509. ))
  24510. characterMakers.push(() => makeCharacter(
  24511. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24512. {
  24513. fox: {
  24514. height: math.unit(5 + 6/12, "feet"),
  24515. weight: math.unit(140, "lb"),
  24516. name: "Fox",
  24517. image: {
  24518. source: "./media/characters/maxene-sita/fox.svg",
  24519. extra: 146/138,
  24520. bottom: 2.1/148.19
  24521. }
  24522. },
  24523. kitsune: {
  24524. height: math.unit(10, "feet"),
  24525. weight: math.unit(800, "lb"),
  24526. name: "Kitsune",
  24527. image: {
  24528. source: "./media/characters/maxene-sita/kitsune.svg",
  24529. extra: 185/176,
  24530. bottom: 4.7/189.9
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Normal",
  24537. height: math.unit(5 + 6/12, "feet"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24544. {
  24545. front: {
  24546. height: math.unit(3 + 4/12, "feet"),
  24547. weight: math.unit(70, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/maia/front.svg",
  24551. extra: 227/219.5,
  24552. bottom: 40 / 267
  24553. }
  24554. },
  24555. back: {
  24556. height: math.unit(3 + 4/12, "feet"),
  24557. weight: math.unit(70, "lb"),
  24558. name: "Back",
  24559. image: {
  24560. source: "./media/characters/maia/back.svg",
  24561. extra: 237/225
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Normal",
  24568. height: math.unit(3 + 4/12, "feet"),
  24569. default: true
  24570. },
  24571. ]
  24572. ))
  24573. characterMakers.push(() => makeCharacter(
  24574. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24575. {
  24576. front: {
  24577. height: math.unit(5 + 10/12, "feet"),
  24578. weight: math.unit(197, "lb"),
  24579. name: "Front",
  24580. image: {
  24581. source: "./media/characters/jabaro/front.svg",
  24582. extra: 225/216,
  24583. bottom: 5.06/230
  24584. }
  24585. },
  24586. back: {
  24587. height: math.unit(5 + 10/12, "feet"),
  24588. weight: math.unit(197, "lb"),
  24589. name: "Back",
  24590. image: {
  24591. source: "./media/characters/jabaro/back.svg",
  24592. extra: 225/219,
  24593. bottom: 1.9/227
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Normal",
  24600. height: math.unit(5 + 10/12, "feet"),
  24601. default: true
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24607. {
  24608. front: {
  24609. height: math.unit(5 + 8/12, "feet"),
  24610. weight: math.unit(139, "lb"),
  24611. name: "Front",
  24612. image: {
  24613. source: "./media/characters/risa/front.svg",
  24614. extra: 270/260,
  24615. bottom: 11.2/282
  24616. }
  24617. },
  24618. back: {
  24619. height: math.unit(5 + 8/12, "feet"),
  24620. weight: math.unit(139, "lb"),
  24621. name: "Back",
  24622. image: {
  24623. source: "./media/characters/risa/back.svg",
  24624. extra: 264/255,
  24625. bottom: 4/268
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Normal",
  24632. height: math.unit(5 + 8/12, "feet"),
  24633. default: true
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(2 + 11/12, "feet"),
  24642. weight: math.unit(30, "lb"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/weatley/front.svg",
  24646. bottom: 10.7/414,
  24647. extra: 403.5/362
  24648. }
  24649. },
  24650. back: {
  24651. height: math.unit(2 + 11/12, "feet"),
  24652. weight: math.unit(30, "lb"),
  24653. name: "Back",
  24654. image: {
  24655. source: "./media/characters/weatley/back.svg",
  24656. bottom: 10.7/414,
  24657. extra: 403.5/362
  24658. }
  24659. },
  24660. },
  24661. [
  24662. {
  24663. name: "Normal",
  24664. height: math.unit(2 + 11/12, "feet"),
  24665. default: true
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24671. {
  24672. front: {
  24673. height: math.unit(5 + 2/12, "feet"),
  24674. weight: math.unit(50, "kg"),
  24675. name: "Front",
  24676. image: {
  24677. source: "./media/characters/mercury-crescent/front.svg",
  24678. extra: 1088/1033,
  24679. bottom: 18.9/1109
  24680. }
  24681. },
  24682. },
  24683. [
  24684. {
  24685. name: "Normal",
  24686. height: math.unit(5 + 2/12, "feet"),
  24687. default: true
  24688. },
  24689. ]
  24690. ))
  24691. characterMakers.push(() => makeCharacter(
  24692. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24693. {
  24694. front: {
  24695. height: math.unit(2, "feet"),
  24696. weight: math.unit(15, "kg"),
  24697. name: "Front",
  24698. image: {
  24699. source: "./media/characters/diamond-jones/front.svg",
  24700. bottom: 16/568
  24701. }
  24702. },
  24703. },
  24704. [
  24705. {
  24706. name: "Normal",
  24707. height: math.unit(2, "feet"),
  24708. default: true
  24709. },
  24710. ]
  24711. ))
  24712. characterMakers.push(() => makeCharacter(
  24713. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24714. {
  24715. front: {
  24716. height: math.unit(3, "feet"),
  24717. weight: math.unit(30, "kg"),
  24718. name: "Front",
  24719. image: {
  24720. source: "./media/characters/sweet-bit/front.svg",
  24721. extra: 675/567,
  24722. bottom: 27.7/703
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Normal",
  24729. height: math.unit(3, "feet"),
  24730. default: true
  24731. },
  24732. ]
  24733. ))
  24734. characterMakers.push(() => makeCharacter(
  24735. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24736. {
  24737. side: {
  24738. height: math.unit(9.178, "feet"),
  24739. weight: math.unit(500, "lb"),
  24740. name: "Side",
  24741. image: {
  24742. source: "./media/characters/umbrazen/side.svg",
  24743. extra: 1730/1473,
  24744. bottom: 34.6/1765
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(9.178, "feet"),
  24752. default: true
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24758. {
  24759. front: {
  24760. height: math.unit(10, "feet"),
  24761. weight: math.unit(750, "lb"),
  24762. name: "Front",
  24763. image: {
  24764. source: "./media/characters/arlist/front.svg",
  24765. extra: 961/778,
  24766. bottom: 6.2/986
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Normal",
  24773. height: math.unit(10, "feet"),
  24774. default: true
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24780. {
  24781. front: {
  24782. height: math.unit(5 + 1/12, "feet"),
  24783. weight: math.unit(110, "lb"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/aradel/front.svg",
  24787. extra: 324/303,
  24788. bottom: 3.6/329.4
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Normal",
  24795. height: math.unit(5 + 1/12, "feet"),
  24796. default: true
  24797. },
  24798. ]
  24799. ))
  24800. characterMakers.push(() => makeCharacter(
  24801. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24802. {
  24803. front: {
  24804. height: math.unit(3 + 8/12, "feet"),
  24805. weight: math.unit(50, "lb"),
  24806. name: "Front",
  24807. image: {
  24808. source: "./media/characters/serryn/front.svg",
  24809. extra: 1792/1656,
  24810. bottom: 43.5/1840
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "Normal",
  24817. height: math.unit(3 + 8/12, "feet"),
  24818. default: true
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Xavier Thyme" },
  24824. {
  24825. front: {
  24826. height: math.unit(7 + 10/12, "feet"),
  24827. weight: math.unit(255, "lb"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/xavier-thyme/front.svg",
  24831. extra: 3733/3642,
  24832. bottom: 131/3869
  24833. }
  24834. },
  24835. frontRaven: {
  24836. height: math.unit(7 + 10/12, "feet"),
  24837. weight: math.unit(255, "lb"),
  24838. name: "Front (Raven)",
  24839. image: {
  24840. source: "./media/characters/xavier-thyme/front-raven.svg",
  24841. extra: 4385/3642,
  24842. bottom: 131/4517
  24843. }
  24844. },
  24845. },
  24846. [
  24847. {
  24848. name: "Normal",
  24849. height: math.unit(7 + 10/12, "feet"),
  24850. default: true
  24851. },
  24852. ]
  24853. ))
  24854. characterMakers.push(() => makeCharacter(
  24855. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24856. {
  24857. front: {
  24858. height: math.unit(1.6, "m"),
  24859. weight: math.unit(50, "kg"),
  24860. name: "Front",
  24861. image: {
  24862. source: "./media/characters/kiki/front.svg",
  24863. extra: 4682/3610,
  24864. bottom: 115/4777
  24865. }
  24866. },
  24867. },
  24868. [
  24869. {
  24870. name: "Normal",
  24871. height: math.unit(1.6, "meters"),
  24872. default: true
  24873. },
  24874. ]
  24875. ))
  24876. characterMakers.push(() => makeCharacter(
  24877. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24878. {
  24879. front: {
  24880. height: math.unit(50, "m"),
  24881. weight: math.unit(500, "tonnes"),
  24882. name: "Front",
  24883. image: {
  24884. source: "./media/characters/ryoko/front.svg",
  24885. extra: 4632/3926,
  24886. bottom: 193/4823
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(50, "meters"),
  24894. default: true
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24900. {
  24901. front: {
  24902. height: math.unit(30, "m"),
  24903. weight: math.unit(22, "tonnes"),
  24904. name: "Front",
  24905. image: {
  24906. source: "./media/characters/elio/front.svg",
  24907. extra: 4582/3720,
  24908. bottom: 236/4828
  24909. }
  24910. },
  24911. },
  24912. [
  24913. {
  24914. name: "Normal",
  24915. height: math.unit(30, "meters"),
  24916. default: true
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24922. {
  24923. front: {
  24924. height: math.unit(6 + 3/12, "feet"),
  24925. weight: math.unit(120, "lb"),
  24926. name: "Front",
  24927. image: {
  24928. source: "./media/characters/azura/front.svg",
  24929. extra: 1149/1135,
  24930. bottom: 45/1194
  24931. }
  24932. },
  24933. frontClothed: {
  24934. height: math.unit(6 + 3/12, "feet"),
  24935. weight: math.unit(120, "lb"),
  24936. name: "Front (Clothed)",
  24937. image: {
  24938. source: "./media/characters/azura/front-clothed.svg",
  24939. extra: 1149/1135,
  24940. bottom: 45/1194
  24941. }
  24942. },
  24943. },
  24944. [
  24945. {
  24946. name: "Normal",
  24947. height: math.unit(6 + 3/12, "feet"),
  24948. default: true
  24949. },
  24950. {
  24951. name: "Macro",
  24952. height: math.unit(20 + 6/12, "feet")
  24953. },
  24954. {
  24955. name: "Megamacro",
  24956. height: math.unit(12, "miles")
  24957. },
  24958. {
  24959. name: "Gigamacro",
  24960. height: math.unit(10000, "miles")
  24961. },
  24962. {
  24963. name: "Teramacro",
  24964. height: math.unit(900000, "miles")
  24965. },
  24966. ]
  24967. ))
  24968. characterMakers.push(() => makeCharacter(
  24969. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24970. {
  24971. front: {
  24972. height: math.unit(12, "feet"),
  24973. weight: math.unit(1, "ton"),
  24974. capacity: math.unit(660000, "gallons"),
  24975. name: "Front",
  24976. image: {
  24977. source: "./media/characters/zeus/front.svg",
  24978. extra: 5005/4717,
  24979. bottom: 363/5388
  24980. }
  24981. },
  24982. },
  24983. [
  24984. {
  24985. name: "Normal",
  24986. height: math.unit(12, "feet")
  24987. },
  24988. {
  24989. name: "Preferred Size",
  24990. height: math.unit(0.5, "miles"),
  24991. default: true
  24992. },
  24993. {
  24994. name: "Giga Horse",
  24995. height: math.unit(300, "miles")
  24996. },
  24997. {
  24998. name: "Riding Planets",
  24999. height: math.unit(30, "megameters")
  25000. },
  25001. {
  25002. name: "Cosmic Giant",
  25003. height: math.unit(3, "zettameters")
  25004. },
  25005. {
  25006. name: "Breeding God",
  25007. height: math.unit(9.92e22, "yottameters")
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25013. {
  25014. side: {
  25015. height: math.unit(9, "feet"),
  25016. weight: math.unit(1500, "kg"),
  25017. name: "Side",
  25018. image: {
  25019. source: "./media/characters/fang/side.svg",
  25020. extra: 924/866,
  25021. bottom: 47.5/972.3
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(9, "feet"),
  25029. default: true
  25030. },
  25031. {
  25032. name: "Macro",
  25033. height: math.unit(75 + 6/12, "feet")
  25034. },
  25035. {
  25036. name: "Teramacro",
  25037. height: math.unit(50000, "miles")
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(10, "feet"),
  25046. weight: math.unit(2, "tons"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/rekhit/front.svg",
  25050. extra: 2796/2590,
  25051. bottom: 225/3022
  25052. }
  25053. },
  25054. },
  25055. [
  25056. {
  25057. name: "Normal",
  25058. height: math.unit(10, "feet"),
  25059. default: true
  25060. },
  25061. {
  25062. name: "Macro",
  25063. height: math.unit(500, "feet")
  25064. },
  25065. ]
  25066. ))
  25067. characterMakers.push(() => makeCharacter(
  25068. { name: "Dahlia Verrick" },
  25069. {
  25070. front: {
  25071. height: math.unit(7 + 6.451/12, "feet"),
  25072. weight: math.unit(310, "lb"),
  25073. name: "Front",
  25074. image: {
  25075. source: "./media/characters/dahlia-verrick/front.svg",
  25076. extra: 1488/1365,
  25077. bottom: 6.2/1495
  25078. }
  25079. },
  25080. back: {
  25081. height: math.unit(7 + 6.451/12, "feet"),
  25082. weight: math.unit(310, "lb"),
  25083. name: "Back",
  25084. image: {
  25085. source: "./media/characters/dahlia-verrick/back.svg",
  25086. extra: 1472/1351,
  25087. bottom: 5.28/1477
  25088. }
  25089. },
  25090. frontBusiness: {
  25091. height: math.unit(7 + 6.451/12, "feet"),
  25092. weight: math.unit(200, "lb"),
  25093. name: "Front (Business)",
  25094. image: {
  25095. source: "./media/characters/dahlia-verrick/front-business.svg",
  25096. extra: 1478/1381,
  25097. bottom: 5.5/1484
  25098. }
  25099. },
  25100. frontCasual: {
  25101. height: math.unit(7 + 6.451/12, "feet"),
  25102. weight: math.unit(200, "lb"),
  25103. name: "Front (Casual)",
  25104. image: {
  25105. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25106. extra: 1478/1381,
  25107. bottom: 5.5/1484
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Travel-Sized",
  25114. height: math.unit(7.45, "inches")
  25115. },
  25116. {
  25117. name: "Normal",
  25118. height: math.unit(7 + 6.451/12, "feet"),
  25119. default: true
  25120. },
  25121. {
  25122. name: "Hitting the Town",
  25123. height: math.unit(37 + 8/12, "feet")
  25124. },
  25125. {
  25126. name: "Stomp in the Suburbs",
  25127. height: math.unit(964 + 9.728/12, "feet")
  25128. },
  25129. {
  25130. name: "Sit on the City",
  25131. height: math.unit(61747 + 10.592/12, "feet")
  25132. },
  25133. {
  25134. name: "Glomp the Globe",
  25135. height: math.unit(252919327 + 4.832/12, "feet")
  25136. },
  25137. ]
  25138. ))
  25139. characterMakers.push(() => makeCharacter(
  25140. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25141. {
  25142. front: {
  25143. height: math.unit(6 + 4/12, "feet"),
  25144. weight: math.unit(320, "lb"),
  25145. name: "Front",
  25146. image: {
  25147. source: "./media/characters/balina-mahigan/front.svg",
  25148. extra: 447/428,
  25149. bottom: 18/466
  25150. }
  25151. },
  25152. back: {
  25153. height: math.unit(6 + 4/12, "feet"),
  25154. weight: math.unit(320, "lb"),
  25155. name: "Back",
  25156. image: {
  25157. source: "./media/characters/balina-mahigan/back.svg",
  25158. extra: 445/428,
  25159. bottom: 4.07/448
  25160. }
  25161. },
  25162. arm: {
  25163. height: math.unit(1.88, "feet"),
  25164. name: "Arm",
  25165. image: {
  25166. source: "./media/characters/balina-mahigan/arm.svg"
  25167. }
  25168. },
  25169. backPort: {
  25170. height: math.unit(0.685, "feet"),
  25171. name: "Back Port",
  25172. image: {
  25173. source: "./media/characters/balina-mahigan/back-port.svg"
  25174. }
  25175. },
  25176. hoofpaw: {
  25177. height: math.unit(1.41, "feet"),
  25178. name: "Hoofpaw",
  25179. image: {
  25180. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25181. }
  25182. },
  25183. leftHandBack: {
  25184. height: math.unit(0.938, "feet"),
  25185. name: "Left Hand (Back)",
  25186. image: {
  25187. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25188. }
  25189. },
  25190. leftHandFront: {
  25191. height: math.unit(0.938, "feet"),
  25192. name: "Left Hand (Front)",
  25193. image: {
  25194. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25195. }
  25196. },
  25197. rightHandBack: {
  25198. height: math.unit(0.95, "feet"),
  25199. name: "Right Hand (Back)",
  25200. image: {
  25201. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25202. }
  25203. },
  25204. rightHandFront: {
  25205. height: math.unit(0.95, "feet"),
  25206. name: "Right Hand (Front)",
  25207. image: {
  25208. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25209. }
  25210. },
  25211. },
  25212. [
  25213. {
  25214. name: "Normal",
  25215. height: math.unit(6 + 4/12, "feet"),
  25216. default: true
  25217. },
  25218. ]
  25219. ))
  25220. characterMakers.push(() => makeCharacter(
  25221. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25222. {
  25223. front: {
  25224. height: math.unit(6, "feet"),
  25225. weight: math.unit(320, "lb"),
  25226. name: "Front",
  25227. image: {
  25228. source: "./media/characters/balina-mejeri/front.svg",
  25229. extra: 517/488,
  25230. bottom: 44.2/561
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Normal",
  25237. height: math.unit(6 + 4/12, "feet")
  25238. },
  25239. {
  25240. name: "Business",
  25241. height: math.unit(155, "feet"),
  25242. default: true
  25243. },
  25244. ]
  25245. ))
  25246. characterMakers.push(() => makeCharacter(
  25247. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25248. {
  25249. kneeling: {
  25250. height: math.unit(6 + 4/12, "feet"),
  25251. weight: math.unit(300*20, "lb"),
  25252. name: "Kneeling",
  25253. image: {
  25254. source: "./media/characters/balbarian/kneeling.svg",
  25255. extra: 922/862,
  25256. bottom: 42.4/965
  25257. }
  25258. },
  25259. },
  25260. [
  25261. {
  25262. name: "Normal",
  25263. height: math.unit(6 + 4/12, "feet")
  25264. },
  25265. {
  25266. name: "Treasured",
  25267. height: math.unit(18 + 9/12, "feet"),
  25268. default: true
  25269. },
  25270. {
  25271. name: "Macro",
  25272. height: math.unit(900, "feet")
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25278. {
  25279. front: {
  25280. height: math.unit(6 + 4/12, "feet"),
  25281. weight: math.unit(325, "lb"),
  25282. name: "Front",
  25283. image: {
  25284. source: "./media/characters/balina-amarini/front.svg",
  25285. extra: 415/403,
  25286. bottom: 19/433.4
  25287. }
  25288. },
  25289. back: {
  25290. height: math.unit(6 + 4/12, "feet"),
  25291. weight: math.unit(325, "lb"),
  25292. name: "Back",
  25293. image: {
  25294. source: "./media/characters/balina-amarini/back.svg",
  25295. extra: 415/403,
  25296. bottom: 13.5/432
  25297. }
  25298. },
  25299. overdrive: {
  25300. height: math.unit(6 + 4/12, "feet"),
  25301. weight: math.unit(400, "lb"),
  25302. name: "Overdrive",
  25303. image: {
  25304. source: "./media/characters/balina-amarini/overdrive.svg",
  25305. extra: 269/259,
  25306. bottom: 12/282
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Boom",
  25313. height: math.unit(9 + 10/12, "feet"),
  25314. default: true
  25315. },
  25316. {
  25317. name: "Macro",
  25318. height: math.unit(280, "feet")
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25324. {
  25325. goddess: {
  25326. height: math.unit(600, "feet"),
  25327. weight: math.unit(2000000, "tons"),
  25328. name: "Goddess",
  25329. image: {
  25330. source: "./media/characters/lady-kubwa/goddess.svg",
  25331. extra: 1240.5/1223,
  25332. bottom: 22/1263
  25333. }
  25334. },
  25335. goddesser: {
  25336. height: math.unit(900, "feet"),
  25337. weight: math.unit(20000000, "lb"),
  25338. name: "Goddess-er",
  25339. image: {
  25340. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25341. extra: 899/888,
  25342. bottom: 12.6/912
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Macro",
  25349. height: math.unit(600, "feet"),
  25350. default: true
  25351. },
  25352. {
  25353. name: "Megamacro",
  25354. height: math.unit(250, "miles")
  25355. },
  25356. ]
  25357. ))
  25358. characterMakers.push(() => makeCharacter(
  25359. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25360. {
  25361. front: {
  25362. height: math.unit(7 + 7/12, "feet"),
  25363. weight: math.unit(250, "lb"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/tala-grovehorn/front.svg",
  25367. extra: 2636/2525,
  25368. bottom: 147/2781
  25369. }
  25370. },
  25371. back: {
  25372. height: math.unit(7 + 7/12, "feet"),
  25373. weight: math.unit(250, "lb"),
  25374. name: "Back",
  25375. image: {
  25376. source: "./media/characters/tala-grovehorn/back.svg",
  25377. extra: 2635/2539,
  25378. bottom: 100/2732.8
  25379. }
  25380. },
  25381. mouth: {
  25382. height: math.unit(1.15, "feet"),
  25383. name: "Mouth",
  25384. image: {
  25385. source: "./media/characters/tala-grovehorn/mouth.svg"
  25386. }
  25387. },
  25388. dick: {
  25389. height: math.unit(2.36, "feet"),
  25390. name: "Dick",
  25391. image: {
  25392. source: "./media/characters/tala-grovehorn/dick.svg"
  25393. }
  25394. },
  25395. slit: {
  25396. height: math.unit(0.61, "feet"),
  25397. name: "Slit",
  25398. image: {
  25399. source: "./media/characters/tala-grovehorn/slit.svg"
  25400. }
  25401. },
  25402. },
  25403. [
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(7 + 7/12, "feet"),
  25411. weight: math.unit(225, "lb"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/epona/front.svg",
  25415. extra: 2445/2290,
  25416. bottom: 251/2696
  25417. }
  25418. },
  25419. back: {
  25420. height: math.unit(7 + 7/12, "feet"),
  25421. weight: math.unit(225, "lb"),
  25422. name: "Back",
  25423. image: {
  25424. source: "./media/characters/epona/back.svg",
  25425. extra: 2546/2408,
  25426. bottom: 44/2589
  25427. }
  25428. },
  25429. genitals: {
  25430. height: math.unit(1.5, "feet"),
  25431. name: "Genitals",
  25432. image: {
  25433. source: "./media/characters/epona/genitals.svg"
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Normal",
  25440. height: math.unit(7 + 7/12, "feet")
  25441. },
  25442. ]
  25443. ))
  25444. characterMakers.push(() => makeCharacter(
  25445. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25446. {
  25447. front: {
  25448. height: math.unit(7, "feet"),
  25449. weight: math.unit(518, "lb"),
  25450. name: "Front",
  25451. image: {
  25452. source: "./media/characters/avia-bloodbourn/front.svg",
  25453. extra: 1466/1350,
  25454. bottom: 65/1527
  25455. }
  25456. },
  25457. },
  25458. [
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(9.35, "feet"),
  25466. weight: math.unit(600, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/amera/front.svg",
  25470. extra: 891/818,
  25471. bottom: 30/922.7
  25472. }
  25473. },
  25474. back: {
  25475. height: math.unit(9.35, "feet"),
  25476. weight: math.unit(600, "lb"),
  25477. name: "Back",
  25478. image: {
  25479. source: "./media/characters/amera/back.svg",
  25480. extra: 876/824,
  25481. bottom: 6.8/884
  25482. }
  25483. },
  25484. dick: {
  25485. height: math.unit(2.14, "feet"),
  25486. name: "Dick",
  25487. image: {
  25488. source: "./media/characters/amera/dick.svg"
  25489. }
  25490. },
  25491. },
  25492. [
  25493. {
  25494. name: "Normal",
  25495. height: math.unit(9.35, "feet"),
  25496. default: true
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25502. {
  25503. kneeling: {
  25504. height: math.unit(3 + 4/12, "feet"),
  25505. weight: math.unit(90, "lb"),
  25506. name: "Kneeling",
  25507. image: {
  25508. source: "./media/characters/rosewen/kneeling.svg",
  25509. extra: 1835/1571,
  25510. bottom: 27.7/1862
  25511. }
  25512. },
  25513. },
  25514. [
  25515. {
  25516. name: "Normal",
  25517. height: math.unit(3 + 4/12, "feet"),
  25518. default: true
  25519. },
  25520. ]
  25521. ))
  25522. characterMakers.push(() => makeCharacter(
  25523. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25524. {
  25525. front: {
  25526. height: math.unit(5 + 10/12, "feet"),
  25527. weight: math.unit(200, "lb"),
  25528. name: "Front",
  25529. image: {
  25530. source: "./media/characters/sabah/front.svg",
  25531. extra: 849/763,
  25532. bottom: 33.9/881
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Normal",
  25539. height: math.unit(5 + 10/12, "feet"),
  25540. default: true
  25541. },
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25546. {
  25547. front: {
  25548. height: math.unit(3 + 5/12, "feet"),
  25549. weight: math.unit(40, "kg"),
  25550. name: "Front",
  25551. image: {
  25552. source: "./media/characters/purple-flame/front.svg",
  25553. extra: 1577/1412,
  25554. bottom: 97/1694
  25555. }
  25556. },
  25557. frontDressed: {
  25558. height: math.unit(3 + 5/12, "feet"),
  25559. weight: math.unit(40, "kg"),
  25560. name: "Front (Dressed)",
  25561. image: {
  25562. source: "./media/characters/purple-flame/front-dressed.svg",
  25563. extra: 1577/1412,
  25564. bottom: 97/1694
  25565. }
  25566. },
  25567. headphones: {
  25568. height: math.unit(0.85, "feet"),
  25569. name: "Headphones",
  25570. image: {
  25571. source: "./media/characters/purple-flame/headphones.svg"
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Really Small",
  25578. height: math.unit(5, "cm")
  25579. },
  25580. {
  25581. name: "Micro",
  25582. height: math.unit(1 + 5/12, "feet")
  25583. },
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(3 + 5/12, "feet"),
  25587. default: true
  25588. },
  25589. {
  25590. name: "Minimacro",
  25591. height: math.unit(125, "feet")
  25592. },
  25593. {
  25594. name: "Macro",
  25595. height: math.unit(0.5, "miles")
  25596. },
  25597. {
  25598. name: "Megamacro",
  25599. height: math.unit(50, "miles")
  25600. },
  25601. {
  25602. name: "Gigantic",
  25603. height: math.unit(750, "miles")
  25604. },
  25605. {
  25606. name: "Planetary",
  25607. height: math.unit(15000, "miles")
  25608. },
  25609. ]
  25610. ))
  25611. characterMakers.push(() => makeCharacter(
  25612. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25613. {
  25614. front: {
  25615. height: math.unit(14, "feet"),
  25616. weight: math.unit(959, "lb"),
  25617. name: "Front",
  25618. image: {
  25619. source: "./media/characters/arsenal/front.svg",
  25620. extra: 2357/2157,
  25621. bottom: 93/2458
  25622. }
  25623. },
  25624. },
  25625. [
  25626. {
  25627. name: "Normal",
  25628. height: math.unit(14, "feet"),
  25629. default: true
  25630. },
  25631. ]
  25632. ))
  25633. characterMakers.push(() => makeCharacter(
  25634. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25635. {
  25636. front: {
  25637. height: math.unit(6, "feet"),
  25638. weight: math.unit(150, "lb"),
  25639. name: "Front",
  25640. image: {
  25641. source: "./media/characters/adira/front.svg",
  25642. extra: 1078/1029,
  25643. bottom: 87/1166
  25644. }
  25645. },
  25646. },
  25647. [
  25648. {
  25649. name: "Micro",
  25650. height: math.unit(4, "inches"),
  25651. default: true
  25652. },
  25653. {
  25654. name: "Macro",
  25655. height: math.unit(50, "feet")
  25656. },
  25657. ]
  25658. ))
  25659. characterMakers.push(() => makeCharacter(
  25660. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25661. {
  25662. front: {
  25663. height: math.unit(16, "feet"),
  25664. weight: math.unit(1000, "lb"),
  25665. name: "Front",
  25666. image: {
  25667. source: "./media/characters/grim/front.svg",
  25668. extra: 622/614,
  25669. bottom: 18.1/642
  25670. }
  25671. },
  25672. back: {
  25673. height: math.unit(16, "feet"),
  25674. weight: math.unit(1000, "lb"),
  25675. name: "Back",
  25676. image: {
  25677. source: "./media/characters/grim/back.svg",
  25678. extra: 610.6/602,
  25679. bottom: 40.8/652
  25680. }
  25681. },
  25682. hunched: {
  25683. height: math.unit(9.75, "feet"),
  25684. weight: math.unit(1000, "lb"),
  25685. name: "Hunched",
  25686. image: {
  25687. source: "./media/characters/grim/hunched.svg",
  25688. extra: 304/297,
  25689. bottom: 35.4/394
  25690. }
  25691. },
  25692. },
  25693. [
  25694. {
  25695. name: "Normal",
  25696. height: math.unit(16, "feet"),
  25697. default: true
  25698. },
  25699. ]
  25700. ))
  25701. characterMakers.push(() => makeCharacter(
  25702. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25703. {
  25704. front: {
  25705. height: math.unit(2.3, "meters"),
  25706. weight: math.unit(300, "lb"),
  25707. name: "Front",
  25708. image: {
  25709. source: "./media/characters/sinja/front-sfw.svg",
  25710. extra: 1393/1294,
  25711. bottom: 70/1463
  25712. }
  25713. },
  25714. frontNsfw: {
  25715. height: math.unit(2.3, "meters"),
  25716. weight: math.unit(300, "lb"),
  25717. name: "Front (NSFW)",
  25718. image: {
  25719. source: "./media/characters/sinja/front-nsfw.svg",
  25720. extra: 1393/1294,
  25721. bottom: 70/1463
  25722. }
  25723. },
  25724. back: {
  25725. height: math.unit(2.3, "meters"),
  25726. weight: math.unit(300, "lb"),
  25727. name: "Back",
  25728. image: {
  25729. source: "./media/characters/sinja/back.svg",
  25730. extra: 1393/1294,
  25731. bottom: 70/1463
  25732. }
  25733. },
  25734. head: {
  25735. height: math.unit(1.771, "feet"),
  25736. name: "Head",
  25737. image: {
  25738. source: "./media/characters/sinja/head.svg"
  25739. }
  25740. },
  25741. slit: {
  25742. height: math.unit(0.8, "feet"),
  25743. name: "Slit",
  25744. image: {
  25745. source: "./media/characters/sinja/slit.svg"
  25746. }
  25747. },
  25748. },
  25749. [
  25750. {
  25751. name: "Normal",
  25752. height: math.unit(2.3, "meters")
  25753. },
  25754. {
  25755. name: "Macro",
  25756. height: math.unit(91, "meters"),
  25757. default: true
  25758. },
  25759. {
  25760. name: "Megamacro",
  25761. height: math.unit(91440, "meters")
  25762. },
  25763. {
  25764. name: "Gigamacro",
  25765. height: math.unit(60960000, "meters")
  25766. },
  25767. {
  25768. name: "Teramacro",
  25769. height: math.unit(9144000000, "meters")
  25770. },
  25771. ]
  25772. ))
  25773. characterMakers.push(() => makeCharacter(
  25774. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25775. {
  25776. front: {
  25777. height: math.unit(1.7, "meters"),
  25778. weight: math.unit(130, "lb"),
  25779. name: "Front",
  25780. image: {
  25781. source: "./media/characters/kyu/front.svg",
  25782. extra: 415/395,
  25783. bottom: 5/420
  25784. }
  25785. },
  25786. head: {
  25787. height: math.unit(1.75, "feet"),
  25788. name: "Head",
  25789. image: {
  25790. source: "./media/characters/kyu/head.svg"
  25791. }
  25792. },
  25793. foot: {
  25794. height: math.unit(0.81, "feet"),
  25795. name: "Foot",
  25796. image: {
  25797. source: "./media/characters/kyu/foot.svg"
  25798. }
  25799. },
  25800. },
  25801. [
  25802. {
  25803. name: "Normal",
  25804. height: math.unit(1.7, "meters")
  25805. },
  25806. {
  25807. name: "Macro",
  25808. height: math.unit(131, "feet"),
  25809. default: true
  25810. },
  25811. {
  25812. name: "Megamacro",
  25813. height: math.unit(91440, "meters")
  25814. },
  25815. {
  25816. name: "Gigamacro",
  25817. height: math.unit(60960000, "meters")
  25818. },
  25819. {
  25820. name: "Teramacro",
  25821. height: math.unit(9144000000, "meters")
  25822. },
  25823. ]
  25824. ))
  25825. //characters
  25826. function makeCharacters() {
  25827. const results = [];
  25828. characterMakers.forEach(character => {
  25829. results.push(character());
  25830. });
  25831. return results;
  25832. }